From b888048a90230d76c1ac869e2c9bbd0f6a378d84 Mon Sep 17 00:00:00 2001 From: AdiXgit <146085717+AdiXgit@users.noreply.github.com> Date: Mon, 27 Oct 2025 06:02:12 +0000 Subject: [PATCH 1/4] Fix static analysis issues: replace eval, remove mutable defaults, specific exceptions, logging --- bandit_report_after.txt | 22 ++++++ flake8_report_after.txt | 5 ++ inventory_system.py | 146 +++++++++++++++++++++++++++++----------- issues_table.md | 14 ++++ pylint_report_after.txt | 8 +++ 5 files changed, 154 insertions(+), 41 deletions(-) create mode 100644 bandit_report_after.txt create mode 100644 flake8_report_after.txt create mode 100644 issues_table.md create mode 100644 pylint_report_after.txt diff --git a/bandit_report_after.txt b/bandit_report_after.txt new file mode 100644 index 0000000..9be202a --- /dev/null +++ b/bandit_report_after.txt @@ -0,0 +1,22 @@ +Run started:2025-10-27 05:57:38.790037 + +Test results: + No issues identified. + +Code scanned: + Total lines of code: 83 + Total lines skipped (#nosec): 0 + Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0 + +Run metrics: + Total issues (by severity): + Undefined: 0 + Low: 0 + Medium: 0 + High: 0 + Total issues (by confidence): + Undefined: 0 + Low: 0 + Medium: 0 + High: 0 +Files skipped (0): diff --git a/flake8_report_after.txt b/flake8_report_after.txt new file mode 100644 index 0000000..bf6a57f --- /dev/null +++ b/flake8_report_after.txt @@ -0,0 +1,5 @@ +inventory_system.py:50:80: E501 line too long (85 > 79 characters) +inventory_system.py:61:80: E501 line too long (82 > 79 characters) +inventory_system.py:72:80: E501 line too long (82 > 79 characters) +inventory_system.py:98:80: E501 line too long (84 > 79 characters) +inventory_system.py:125:1: W391 blank line at end of file diff --git a/inventory_system.py b/inventory_system.py index 22b86de..06f0e7c 100644 --- a/inventory_system.py +++ b/inventory_system.py @@ -1,61 +1,125 @@ import json import logging +import ast # FIX 1: added for safe eval alternative from datetime import datetime -# Global variable +# Global variable for inventory data stock_data = {} -def addItem(item="default", qty=0, logs=[]): + +# FIX 2: Changed mutable default argument logs=[] → logs=None +def add_item(item="default", qty=0, logs=None): + """ + Add an item to inventory with specified quantity. + """ + if logs is None: # FIX 2 applied here + logs = [] + if not item: return + + # MINOR FIX: Added type validation (not part of main 4 fixes) + if not isinstance(qty, (int, float)): + logging.warning("Invalid quantity type for %s", item) + return + stock_data[item] = stock_data.get(item, 0) + qty - logs.append("%s: Added %d of %s" % (str(datetime.now()), qty, item)) + logs.append(f"{datetime.now()}: Added {qty} of {item}") + -def removeItem(item, qty): +def remove_item(item, qty): + """ + Remove quantity of an item safely. + """ try: stock_data[item] -= qty if stock_data[item] <= 0: del stock_data[item] - except: - pass -def getQty(item): - return stock_data[item] + # FIX 3: replaced bare except with specific exceptions + except ValueError: + print(f"Invalid quantity for {item}.") + except KeyError: + print(f"Item '{item}' not found in inventory.") + -def loadData(file="inventory.json"): - f = open(file, "r") +def get_qty(item): + """ + Get the current quantity of an item. + """ + # MINOR FIX: Safe access with .get() to avoid KeyError (not part of main 4 fixes) + return stock_data.get(item, 0) + + +# FIX 4: Used context manager for file handling in load_data +def load_data(file_name="inventory.json"): + """ + Load inventory data from a JSON file. + """ global stock_data - stock_data = json.loads(f.read()) - f.close() - -def saveData(file="inventory.json"): - f = open(file, "w") - f.write(json.dumps(stock_data)) - f.close() - -def printData(): - print("Items Report") - for i in stock_data: - print(i, "->", stock_data[i]) - -def checkLowItems(threshold=5): - result = [] - for i in stock_data: - if stock_data[i] < threshold: - result.append(i) + try: + with open(file_name, "r", encoding="utf-8") as file: # FIX 4 applied here + stock_data = json.load(file) + except FileNotFoundError: + stock_data = {} + + +# FIX 4 also applies to save_data (safe file handling) +def save_data(file_name="inventory.json"): + """ + Save inventory data to a JSON file. + """ + with open(file_name, "w", encoding="utf-8") as file: # FIX 4 applied here too + json.dump(stock_data, file, indent=4) + + +def print_data(): + """ + Print all items and their quantities. + """ + print("\nItems Report:") + for item, qty in stock_data.items(): + print(f"{item} -> {qty}") + + +def check_low_items(threshold=5): + """ + Return list of items below threshold quantity. + """ + result = [item for item, qty in stock_data.items() if qty < threshold] return result + def main(): - addItem("apple", 10) - addItem("banana", -2) - addItem(123, "ten") # invalid types, no check - removeItem("apple", 3) - removeItem("orange", 1) - print("Apple stock:", getQty("apple")) - print("Low items:", checkLowItems()) - saveData() - loadData() - printData() - eval("print('eval used')") # dangerous - -main() + """ + Main function for inventory operations. + """ + + # MINOR FIX: Improved function naming and readability (not part of main 4 fixes) + add_item("apple", 10) + add_item("banana", -2) + add_item("pear", 5) + + remove_item("apple", 3) + remove_item("orange", 1) + + print("Apple stock:", get_qty("apple")) + print("Low items:", check_low_items()) + + save_data() + load_data() + + print_data() + + # FIX 1: Removed dangerous eval(), replaced with safe ast.literal_eval + # eval("print('eval used')") # ❌ Removed insecure code + safe_code = "{'message': 'eval removed successfully'}" + result = ast.literal_eval(safe_code) # ✅ Safe evaluation + print(result["message"]) + + +# MINOR FIX: Added main guard (not part of main 4 fixes) +if __name__ == "__main__": + main() + + diff --git a/issues_table.md b/issues_table.md new file mode 100644 index 0000000..28ad495 --- /dev/null +++ b/issues_table.md @@ -0,0 +1,14 @@ +# Static Code Analysis — Issues and Fixes + +## Selected 4 Main Issues + +| # | Tool | Issue Type | Line(s) | Description | Fix Applied | +|---|------|-------------|----------|--------------|--------------| +| 1 | **Bandit** | **Security (High)** | 59 | Use of `eval()` on user input — dangerous, can execute arbitrary code. | Replaced `eval()` with `ast.literal_eval()` (or `json.loads()`), which safely parses input without executing code. | +| 2 | **Pylint** | **Bug (Medium)** | 8 | Mutable default argument `items=[]` can cause unexpected shared state between function calls. | Changed default argument to `None` and initialized list inside the function. | +| 3 | **Pylint** | **Security/Best Practice (High)** | 19 | Bare `except:` statement hides all exceptions, making debugging difficult and unsafe. | Replaced with `except ValueError:` and handled specific exceptions properly. | +| 4 | **Pylint** | **Best Practice (Medium)** | 26, 32 | File handling done without a context manager — file may stay open if an error occurs. | Used `with open(filename, "r", encoding="utf-8") as f:` for safe automatic closure. | + + +**Author:** *Aditya* +**Lab:** *Static Code Analysis – SE Lab 5* diff --git a/pylint_report_after.txt b/pylint_report_after.txt new file mode 100644 index 0000000..63a21c4 --- /dev/null +++ b/pylint_report_after.txt @@ -0,0 +1,8 @@ +************* Module inventory_system +inventory_system.py:125:0: C0305: Trailing newlines (trailing-newlines) +inventory_system.py:1:0: C0114: Missing module docstring (missing-module-docstring) +inventory_system.py:59:4: W0603: Using the global statement (global-statement) + +------------------------------------------------------------------ +Your code has been rated at 9.49/10 (previous run: 9.49/10, +0.00) + From 9f81bd74a67f761e29c40d060cefb564f75c1e1a Mon Sep 17 00:00:00 2001 From: AdiXgit <146085717+AdiXgit@users.noreply.github.com> Date: Mon, 27 Oct 2025 06:09:47 +0000 Subject: [PATCH 2/4] Added reflection.md summarizing main static analysis fixes and improvements --- reflections.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 reflections.md diff --git a/reflections.md b/reflections.md new file mode 100644 index 0000000..044be33 --- /dev/null +++ b/reflections.md @@ -0,0 +1,33 @@ +# Reflection — Static Code Analysis (Lab 5) + +## 1. Which issues were the easiest to fix, and which were the hardest? Why? +- The **simpler issues** involved minor coding practices like using context managers and avoiding mutable default arguments. These were quick to correct since the tools clearly indicated the cause and the fix required only small edits. +- The **most difficult fix** was the one involving `eval()`. Replacing it required finding a safe way to parse input (`ast.literal_eval`) while keeping the program’s behavior the same. It demanded more testing and reasoning compared to the style-related fixes. + +--- + +## 2. Did the static analysis tools report any false positives? If so, describe one example. +- Overall, the tools were accurate, but **Pylint’s warning about the `global` statement** was not truly problematic in this project. + Since the script is short and not part of a larger application, maintaining a single global dictionary for inventory was a practical and acceptable design choice, even though it’s discouraged in larger systems. + +--- + +## 3. How would you integrate static analysis tools into your actual software development workflow? +- I would include **Pylint**, **Flake8**, and **Bandit** as part of a **Continuous Integration (CI)** setup, for example through **GitHub Actions**. +- Every time code is pushed or a pull request is opened, these tools would automatically run, checking for both logical and security issues. +- Locally, I’d also use pre-commit hooks so that no code with lint or security errors can be committed, ensuring code quality right from the development stage. + +--- + +## 4. What tangible improvements did you observe in the code quality, readability, or potential robustness after applying the fixes? +- **Security improved** after removing `eval()`, closing off the chance of arbitrary code execution. +- **Code reliability increased** once the mutable default argument issue was fixed and exceptions were handled specifically. +- **File operations became safer** due to the use of context managers, which automatically handle opening and closing files. +- **Readability and organization** improved after renaming functions to `snake_case` and adding docstrings. +- The overall outcome is a cleaner, safer, and easier-to-maintain script, confirmed by the post-fix results: Bandit found no issues and Pylint gave a score of 9.49/10. + +--- + +**Author:** Aditya D Rao +**Branch:** `fix/static-analysis-Aditya-D-Rao` + From e85d3a19fad611762c97739d5794422d2a8923f7 Mon Sep 17 00:00:00 2001 From: AdiXgit <146085717+AdiXgit@users.noreply.github.com> Date: Mon, 27 Oct 2025 06:13:34 +0000 Subject: [PATCH 3/4] ADDED NAME AND SRN TO THE ISSUE TABLE --- .venv/bin/Activate.ps1 | 247 + .venv/bin/activate | 70 + .venv/bin/activate.csh | 27 + .venv/bin/activate.fish | 69 + .venv/bin/bandit | 7 + .venv/bin/bandit-baseline | 7 + .venv/bin/bandit-config-generator | 7 + .venv/bin/flake8 | 7 + .venv/bin/get_gprof | 75 + .venv/bin/get_objgraph | 54 + .venv/bin/isort | 7 + .venv/bin/isort-identify-imports | 7 + .venv/bin/markdown-it | 7 + .venv/bin/pip | 8 + .venv/bin/pip3 | 8 + .venv/bin/pip3.12 | 8 + .venv/bin/pycodestyle | 7 + .venv/bin/pyflakes | 7 + .venv/bin/pygmentize | 7 + .venv/bin/pylint | 7 + .venv/bin/pylint-config | 7 + .venv/bin/pyreverse | 7 + .venv/bin/python | 1 + .venv/bin/python3 | 1 + .venv/bin/python3.12 | 1 + .venv/bin/symilar | 7 + .venv/bin/undill | 22 + .../__pycache__/mccabe.cpython-312.pyc | Bin 0 -> 18424 bytes .../__pycache__/pycodestyle.cpython-312.pyc | Bin 0 -> 107360 bytes .../site-packages/_yaml/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 872 bytes .../astroid-4.0.1.dist-info/INSTALLER | 1 + .../astroid-4.0.1.dist-info/METADATA | 122 + .../astroid-4.0.1.dist-info/RECORD | 197 + .../astroid-4.0.1.dist-info/WHEEL | 5 + .../licenses/CONTRIBUTORS.txt | 226 + .../astroid-4.0.1.dist-info/licenses/LICENSE | 508 + .../astroid-4.0.1.dist-info/top_level.txt | 1 + .../site-packages/astroid/__init__.py | 242 + .../site-packages/astroid/__pkginfo__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7390 bytes .../__pycache__/__pkginfo__.cpython-312.pyc | Bin 0 -> 241 bytes .../astroid/__pycache__/_ast.cpython-312.pyc | Bin 0 -> 4915 bytes .../__pycache__/arguments.cpython-312.pyc | Bin 0 -> 12613 bytes .../astroid_manager.cpython-312.pyc | Bin 0 -> 666 bytes .../astroid/__pycache__/bases.cpython-312.pyc | Bin 0 -> 34770 bytes .../__pycache__/builder.cpython-312.pyc | Bin 0 -> 21910 bytes .../astroid/__pycache__/const.cpython-312.pyc | Bin 0 -> 1176 bytes .../__pycache__/constraint.cpython-312.pyc | Bin 0 -> 8237 bytes .../__pycache__/context.cpython-312.pyc | Bin 0 -> 7725 bytes .../__pycache__/decorators.cpython-312.pyc | Bin 0 -> 8897 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 17913 bytes .../filter_statements.cpython-312.pyc | Bin 0 -> 6665 bytes .../__pycache__/helpers.cpython-312.pyc | Bin 0 -> 14481 bytes .../__pycache__/inference_tip.cpython-312.pyc | Bin 0 -> 4838 bytes .../__pycache__/manager.cpython-312.pyc | Bin 0 -> 21704 bytes .../__pycache__/modutils.cpython-312.pyc | Bin 0 -> 29011 bytes .../__pycache__/objects.cpython-312.pyc | Bin 0 -> 15600 bytes .../__pycache__/protocols.cpython-312.pyc | Bin 0 -> 37045 bytes .../__pycache__/raw_building.cpython-312.pyc | Bin 0 -> 26786 bytes .../__pycache__/rebuilder.cpython-312.pyc | Bin 0 -> 90071 bytes .../__pycache__/test_utils.cpython-312.pyc | Bin 0 -> 4300 bytes .../__pycache__/transforms.cpython-312.pyc | Bin 0 -> 6769 bytes .../__pycache__/typing.cpython-312.pyc | Bin 0 -> 3359 bytes .../astroid/__pycache__/util.cpython-312.pyc | Bin 0 -> 7537 bytes .../python3.12/site-packages/astroid/_ast.py | 102 + .../site-packages/astroid/arguments.py | 309 + .../site-packages/astroid/astroid_manager.py | 20 + .../python3.12/site-packages/astroid/bases.py | 778 ++ .../site-packages/astroid/brain/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 198 bytes .../brain_argparse.cpython-312.pyc | Bin 0 -> 2514 bytes .../__pycache__/brain_attrs.cpython-312.pyc | Bin 0 -> 3744 bytes .../__pycache__/brain_boto3.cpython-312.pyc | Bin 0 -> 1436 bytes .../brain_builtin_inference.cpython-312.pyc | Bin 0 -> 46307 bytes .../brain_collections.cpython-312.pyc | Bin 0 -> 5121 bytes .../__pycache__/brain_crypt.cpython-312.pyc | Bin 0 -> 1179 bytes .../__pycache__/brain_ctypes.cpython-312.pyc | Bin 0 -> 2702 bytes .../__pycache__/brain_curses.cpython-312.pyc | Bin 0 -> 3800 bytes .../brain_dataclasses.cpython-312.pyc | Bin 0 -> 23794 bytes .../brain_datetime.cpython-312.pyc | Bin 0 -> 1097 bytes .../brain_dateutil.cpython-312.pyc | Bin 0 -> 1162 bytes .../brain_functools.cpython-312.pyc | Bin 0 -> 8381 bytes .../__pycache__/brain_gi.cpython-312.pyc | Bin 0 -> 7957 bytes .../__pycache__/brain_hashlib.cpython-312.pyc | Bin 0 -> 2871 bytes .../__pycache__/brain_http.cpython-312.pyc | Bin 0 -> 11890 bytes .../brain_hypothesis.cpython-312.pyc | Bin 0 -> 2466 bytes .../__pycache__/brain_io.cpython-312.pyc | Bin 0 -> 2037 bytes .../brain_mechanize.cpython-312.pyc | Bin 0 -> 3011 bytes .../brain_multiprocessing.cpython-312.pyc | Bin 0 -> 3475 bytes .../brain_namedtuple_enum.cpython-312.pyc | Bin 0 -> 27965 bytes ...rain_numpy_core_einsumfunc.cpython-312.pyc | Bin 0 -> 1105 bytes ...ain_numpy_core_fromnumeric.cpython-312.pyc | Bin 0 -> 1053 bytes ...n_numpy_core_function_base.cpython-312.pyc | Bin 0 -> 1602 bytes ...rain_numpy_core_multiarray.cpython-312.pyc | Bin 0 -> 4650 bytes .../brain_numpy_core_numeric.cpython-312.pyc | Bin 0 -> 2062 bytes ...in_numpy_core_numerictypes.cpython-312.pyc | Bin 0 -> 8592 bytes .../brain_numpy_core_umath.cpython-312.pyc | Bin 0 -> 4981 bytes .../brain_numpy_ma.cpython-312.pyc | Bin 0 -> 1213 bytes .../brain_numpy_ndarray.cpython-312.pyc | Bin 0 -> 9465 bytes .../brain_numpy_random_mtrand.cpython-312.pyc | Bin 0 -> 3708 bytes .../brain_numpy_utils.cpython-312.pyc | Bin 0 -> 4273 bytes .../__pycache__/brain_pathlib.cpython-312.pyc | Bin 0 -> 2652 bytes .../brain_pkg_resources.cpython-312.pyc | Bin 0 -> 2527 bytes .../__pycache__/brain_pytest.cpython-312.pyc | Bin 0 -> 2583 bytes .../__pycache__/brain_qt.cpython-312.pyc | Bin 0 -> 3889 bytes .../__pycache__/brain_random.cpython-312.pyc | Bin 0 -> 4274 bytes .../__pycache__/brain_re.cpython-312.pyc | Bin 0 -> 3968 bytes .../__pycache__/brain_regex.cpython-312.pyc | Bin 0 -> 4602 bytes .../brain_responses.cpython-312.pyc | Bin 0 -> 2203 bytes .../brain_scipy_signal.cpython-312.pyc | Bin 0 -> 2620 bytes .../__pycache__/brain_signal.cpython-312.pyc | Bin 0 -> 4454 bytes .../__pycache__/brain_six.cpython-312.pyc | Bin 0 -> 9516 bytes .../brain_sqlalchemy.cpython-312.pyc | Bin 0 -> 1330 bytes .../__pycache__/brain_ssl.cpython-312.pyc | Bin 0 -> 7195 bytes .../brain_statistics.cpython-312.pyc | Bin 0 -> 3278 bytes .../brain_subprocess.cpython-312.pyc | Bin 0 -> 3668 bytes .../brain_threading.cpython-312.pyc | Bin 0 -> 1190 bytes .../__pycache__/brain_type.cpython-312.pyc | Bin 0 -> 3133 bytes .../__pycache__/brain_typing.cpython-312.pyc | Bin 0 -> 20811 bytes .../brain_unittest.cpython-312.pyc | Bin 0 -> 1394 bytes .../__pycache__/brain_uuid.cpython-312.pyc | Bin 0 -> 1117 bytes .../brain/__pycache__/helpers.cpython-312.pyc | Bin 0 -> 6377 bytes .../astroid/brain/brain_argparse.py | 50 + .../astroid/brain/brain_attrs.py | 110 + .../astroid/brain/brain_boto3.py | 32 + .../astroid/brain/brain_builtin_inference.py | 1106 +++ .../astroid/brain/brain_collections.py | 138 + .../astroid/brain/brain_crypt.py | 27 + .../astroid/brain/brain_ctypes.py | 86 + .../astroid/brain/brain_curses.py | 185 + .../astroid/brain/brain_dataclasses.py | 635 ++ .../astroid/brain/brain_datetime.py | 20 + .../astroid/brain/brain_dateutil.py | 28 + .../astroid/brain/brain_functools.py | 174 + .../site-packages/astroid/brain/brain_gi.py | 252 + .../astroid/brain/brain_hashlib.py | 96 + .../site-packages/astroid/brain/brain_http.py | 227 + .../astroid/brain/brain_hypothesis.py | 56 + .../site-packages/astroid/brain/brain_io.py | 44 + .../astroid/brain/brain_mechanize.py | 125 + .../astroid/brain/brain_multiprocessing.py | 106 + .../astroid/brain/brain_namedtuple_enum.py | 681 ++ .../brain/brain_numpy_core_einsumfunc.py | 28 + .../brain/brain_numpy_core_fromnumeric.py | 24 + .../brain/brain_numpy_core_function_base.py | 35 + .../brain/brain_numpy_core_multiarray.py | 106 + .../astroid/brain/brain_numpy_core_numeric.py | 50 + .../brain/brain_numpy_core_numerictypes.py | 265 + .../astroid/brain/brain_numpy_core_umath.py | 154 + .../astroid/brain/brain_numpy_ma.py | 33 + .../astroid/brain/brain_numpy_ndarray.py | 163 + .../brain/brain_numpy_random_mtrand.py | 73 + .../astroid/brain/brain_numpy_utils.py | 94 + .../astroid/brain/brain_pathlib.py | 55 + .../astroid/brain/brain_pkg_resources.py | 72 + .../astroid/brain/brain_pytest.py | 85 + .../site-packages/astroid/brain/brain_qt.py | 89 + .../astroid/brain/brain_random.py | 94 + .../site-packages/astroid/brain/brain_re.py | 97 + .../astroid/brain/brain_regex.py | 95 + .../astroid/brain/brain_responses.py | 80 + .../astroid/brain/brain_scipy_signal.py | 90 + .../astroid/brain/brain_signal.py | 120 + .../site-packages/astroid/brain/brain_six.py | 244 + .../astroid/brain/brain_sqlalchemy.py | 41 + .../site-packages/astroid/brain/brain_ssl.py | 163 + .../astroid/brain/brain_statistics.py | 73 + .../astroid/brain/brain_subprocess.py | 100 + .../astroid/brain/brain_threading.py | 33 + .../site-packages/astroid/brain/brain_type.py | 70 + .../astroid/brain/brain_typing.py | 504 + .../astroid/brain/brain_unittest.py | 31 + .../site-packages/astroid/brain/brain_uuid.py | 18 + .../site-packages/astroid/brain/helpers.py | 146 + .../site-packages/astroid/builder.py | 505 + .../python3.12/site-packages/astroid/const.py | 26 + .../site-packages/astroid/constraint.py | 186 + .../site-packages/astroid/context.py | 204 + .../site-packages/astroid/decorators.py | 232 + .../site-packages/astroid/exceptions.py | 419 + .../astroid/filter_statements.py | 240 + .../site-packages/astroid/helpers.py | 335 + .../site-packages/astroid/inference_tip.py | 130 + .../astroid/interpreter/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 204 bytes .../__pycache__/dunder_lookup.cpython-312.pyc | Bin 0 -> 3603 bytes .../__pycache__/objectmodel.cpython-312.pyc | Bin 0 -> 50179 bytes .../astroid/interpreter/_import/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 212 bytes .../_import/__pycache__/spec.cpython-312.pyc | Bin 0 -> 20022 bytes .../_import/__pycache__/util.cpython-312.pyc | Bin 0 -> 3407 bytes .../astroid/interpreter/_import/spec.py | 496 + .../astroid/interpreter/_import/util.py | 112 + .../astroid/interpreter/dunder_lookup.py | 75 + .../astroid/interpreter/objectmodel.py | 1013 ++ .../site-packages/astroid/manager.py | 478 + .../site-packages/astroid/modutils.py | 703 ++ .../site-packages/astroid/nodes/__init__.py | 303 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4491 bytes .../__pycache__/_base_nodes.cpython-312.pyc | Bin 0 -> 29368 bytes .../__pycache__/as_string.cpython-312.pyc | Bin 0 -> 51606 bytes .../nodes/__pycache__/const.cpython-312.pyc | Bin 0 -> 654 bytes .../__pycache__/node_classes.cpython-312.pyc | Bin 0 -> 186483 bytes .../nodes/__pycache__/node_ng.cpython-312.pyc | Bin 0 -> 30050 bytes .../nodes/__pycache__/utils.cpython-312.pyc | Bin 0 -> 608 bytes .../astroid/nodes/_base_nodes.py | 672 ++ .../site-packages/astroid/nodes/as_string.py | 740 ++ .../site-packages/astroid/nodes/const.py | 27 + .../astroid/nodes/node_classes.py | 5701 +++++++++++ .../site-packages/astroid/nodes/node_ng.py | 771 ++ .../astroid/nodes/scoped_nodes/__init__.py | 47 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1144 bytes .../__pycache__/mixin.cpython-312.pyc | Bin 0 -> 8735 bytes .../__pycache__/scoped_nodes.cpython-312.pyc | Bin 0 -> 101296 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 1289 bytes .../astroid/nodes/scoped_nodes/mixin.py | 202 + .../nodes/scoped_nodes/scoped_nodes.py | 2898 ++++++ .../astroid/nodes/scoped_nodes/utils.py | 35 + .../site-packages/astroid/nodes/utils.py | 14 + .../site-packages/astroid/objects.py | 360 + .../site-packages/astroid/protocols.py | 958 ++ .../site-packages/astroid/raw_building.py | 735 ++ .../site-packages/astroid/rebuilder.py | 1996 ++++ .../site-packages/astroid/test_utils.py | 78 + .../site-packages/astroid/transforms.py | 163 + .../site-packages/astroid/typing.py | 98 + .../python3.12/site-packages/astroid/util.py | 159 + .../bandit-1.8.6.dist-info/INSTALLER | 1 + .../bandit-1.8.6.dist-info/LICENSE | 175 + .../bandit-1.8.6.dist-info/METADATA | 204 + .../bandit-1.8.6.dist-info/RECORD | 151 + .../bandit-1.8.6.dist-info/REQUESTED | 0 .../bandit-1.8.6.dist-info/WHEEL | 5 + .../bandit-1.8.6.dist-info/entry_points.txt | 64 + .../bandit-1.8.6.dist-info/pbr.json | 1 + .../bandit-1.8.6.dist-info/top_level.txt | 1 + .../site-packages/bandit/__init__.py | 20 + .../site-packages/bandit/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 786 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 766 bytes .../bandit/blacklists/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 202 bytes .../__pycache__/calls.cpython-312.pyc | Bin 0 -> 28065 bytes .../__pycache__/imports.cpython-312.pyc | Bin 0 -> 16973 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 520 bytes .../site-packages/bandit/blacklists/calls.py | 670 ++ .../bandit/blacklists/imports.py | 425 + .../site-packages/bandit/blacklists/utils.py | 17 + .../site-packages/bandit/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 195 bytes .../cli/__pycache__/baseline.cpython-312.pyc | Bin 0 -> 8066 bytes .../config_generator.cpython-312.pyc | Bin 0 -> 8433 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 23980 bytes .../site-packages/bandit/cli/baseline.py | 249 + .../bandit/cli/config_generator.py | 204 + .../site-packages/bandit/cli/main.py | 697 ++ .../site-packages/bandit/core/__init__.py | 15 + .../core/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 579 bytes .../__pycache__/blacklisting.cpython-312.pyc | Bin 0 -> 3285 bytes .../core/__pycache__/config.cpython-312.pyc | Bin 0 -> 11494 bytes .../__pycache__/constants.cpython-312.pyc | Bin 0 -> 796 bytes .../core/__pycache__/context.cpython-312.pyc | Bin 0 -> 14316 bytes .../__pycache__/docs_utils.cpython-312.pyc | Bin 0 -> 1808 bytes .../extension_loader.cpython-312.pyc | Bin 0 -> 5513 bytes .../core/__pycache__/issue.cpython-312.pyc | Bin 0 -> 10517 bytes .../core/__pycache__/manager.cpython-312.pyc | Bin 0 -> 19602 bytes .../core/__pycache__/meta_ast.cpython-312.pyc | Bin 0 -> 1917 bytes .../core/__pycache__/metrics.cpython-312.pyc | Bin 0 -> 5155 bytes .../__pycache__/node_visitor.cpython-312.pyc | Bin 0 -> 14672 bytes .../test_properties.cpython-312.pyc | Bin 0 -> 3232 bytes .../core/__pycache__/test_set.cpython-312.pyc | Bin 0 -> 5814 bytes .../core/__pycache__/tester.cpython-312.pyc | Bin 0 -> 6542 bytes .../core/__pycache__/utils.cpython-312.pyc | Bin 0 -> 15865 bytes .../site-packages/bandit/core/blacklisting.py | 70 + .../site-packages/bandit/core/config.py | 271 + .../site-packages/bandit/core/constants.py | 40 + .../site-packages/bandit/core/context.py | 324 + .../site-packages/bandit/core/docs_utils.py | 54 + .../bandit/core/extension_loader.py | 114 + .../site-packages/bandit/core/issue.py | 245 + .../site-packages/bandit/core/manager.py | 499 + .../site-packages/bandit/core/meta_ast.py | 44 + .../site-packages/bandit/core/metrics.py | 106 + .../site-packages/bandit/core/node_visitor.py | 297 + .../bandit/core/test_properties.py | 83 + .../site-packages/bandit/core/test_set.py | 114 + .../site-packages/bandit/core/tester.py | 166 + .../site-packages/bandit/core/utils.py | 378 + .../bandit/formatters/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 202 bytes .../__pycache__/csv.cpython-312.pyc | Bin 0 -> 2690 bytes .../__pycache__/custom.cpython-312.pyc | Bin 0 -> 8043 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 9631 bytes .../__pycache__/json.cpython-312.pyc | Bin 0 -> 5266 bytes .../__pycache__/sarif.cpython-312.pyc | Bin 0 -> 12198 bytes .../__pycache__/screen.cpython-312.pyc | Bin 0 -> 9620 bytes .../__pycache__/text.cpython-312.pyc | Bin 0 -> 8835 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 676 bytes .../__pycache__/xml.cpython-312.pyc | Bin 0 -> 3813 bytes .../__pycache__/yaml.cpython-312.pyc | Bin 0 -> 4120 bytes .../site-packages/bandit/formatters/csv.py | 82 + .../site-packages/bandit/formatters/custom.py | 161 + .../site-packages/bandit/formatters/html.py | 394 + .../site-packages/bandit/formatters/json.py | 153 + .../site-packages/bandit/formatters/sarif.py | 372 + .../site-packages/bandit/formatters/screen.py | 240 + .../site-packages/bandit/formatters/text.py | 198 + .../site-packages/bandit/formatters/utils.py | 14 + .../site-packages/bandit/formatters/xml.py | 97 + .../site-packages/bandit/formatters/yaml.py | 124 + .../site-packages/bandit/plugins/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 199 bytes .../__pycache__/app_debug.cpython-312.pyc | Bin 0 -> 2737 bytes .../__pycache__/asserts.cpython-312.pyc | Bin 0 -> 2933 bytes ...request_no_cert_validation.cpython-312.pyc | Bin 0 -> 3207 bytes .../django_sql_injection.cpython-312.pyc | Bin 0 -> 5671 bytes .../__pycache__/django_xss.cpython-312.pyc | Bin 0 -> 13346 bytes .../plugins/__pycache__/exec.cpython-312.pyc | Bin 0 -> 1933 bytes ...neral_bad_file_permissions.cpython-312.pyc | Bin 0 -> 3884 bytes ...eneral_bind_all_interfaces.cpython-312.pyc | Bin 0 -> 1992 bytes ...general_hardcoded_password.cpython-312.pyc | Bin 0 -> 10265 bytes .../general_hardcoded_tmp.cpython-312.pyc | Bin 0 -> 3014 bytes ...hashlib_insecure_functions.cpython-312.pyc | Bin 0 -> 5684 bytes ...uggingface_unsafe_download.cpython-312.pyc | Bin 0 -> 5666 bytes .../injection_paramiko.cpython-312.pyc | Bin 0 -> 2480 bytes .../injection_shell.cpython-312.pyc | Bin 0 -> 27504 bytes .../__pycache__/injection_sql.cpython-312.pyc | Bin 0 -> 5637 bytes .../injection_wildcard.cpython-312.pyc | Bin 0 -> 5288 bytes .../insecure_ssl_tls.cpython-312.pyc | Bin 0 -> 10800 bytes .../jinja2_templates.cpython-312.pyc | Bin 0 -> 5455 bytes ...ing_config_insecure_listen.cpython-312.pyc | Bin 0 -> 2473 bytes .../mako_templates.cpython-312.pyc | Bin 0 -> 2880 bytes .../markupsafe_markup_xss.cpython-312.pyc | Bin 0 -> 4342 bytes .../__pycache__/pytorch_load.cpython-312.pyc | Bin 0 -> 3135 bytes .../request_without_timeout.cpython-312.pyc | Bin 0 -> 3574 bytes .../snmp_security_check.cpython-312.pyc | Bin 0 -> 4350 bytes ...h_no_host_key_verification.cpython-312.pyc | Bin 0 -> 3384 bytes .../tarfile_unsafe_members.cpython-312.pyc | Bin 0 -> 5199 bytes .../__pycache__/trojansource.cpython-312.pyc | Bin 0 -> 3198 bytes .../try_except_continue.cpython-312.pyc | Bin 0 -> 3735 bytes .../try_except_pass.cpython-312.pyc | Bin 0 -> 3592 bytes .../weak_cryptographic_key.cpython-312.pyc | Bin 0 -> 6072 bytes .../__pycache__/yaml_load.cpython-312.pyc | Bin 0 -> 3011 bytes .../site-packages/bandit/plugins/app_debug.py | 63 + .../site-packages/bandit/plugins/asserts.py | 83 + .../crypto_request_no_cert_validation.py | 75 + .../bandit/plugins/django_sql_injection.py | 144 + .../bandit/plugins/django_xss.py | 276 + .../site-packages/bandit/plugins/exec.py | 55 + .../plugins/general_bad_file_permissions.py | 99 + .../plugins/general_bind_all_interfaces.py | 52 + .../plugins/general_hardcoded_password.py | 254 + .../bandit/plugins/general_hardcoded_tmp.py | 79 + .../plugins/hashlib_insecure_functions.py | 124 + .../plugins/huggingface_unsafe_download.py | 153 + .../bandit/plugins/injection_paramiko.py | 63 + .../bandit/plugins/injection_shell.py | 696 ++ .../bandit/plugins/injection_sql.py | 143 + .../bandit/plugins/injection_wildcard.py | 144 + .../bandit/plugins/insecure_ssl_tls.py | 285 + .../bandit/plugins/jinja2_templates.py | 134 + .../plugins/logging_config_insecure_listen.py | 58 + .../bandit/plugins/mako_templates.py | 69 + .../bandit/plugins/markupsafe_markup_xss.py | 118 + .../bandit/plugins/pytorch_load.py | 81 + .../bandit/plugins/request_without_timeout.py | 84 + .../bandit/plugins/snmp_security_check.py | 110 + .../plugins/ssh_no_host_key_verification.py | 76 + .../bandit/plugins/tarfile_unsafe_members.py | 121 + .../bandit/plugins/trojansource.py | 79 + .../bandit/plugins/try_except_continue.py | 108 + .../bandit/plugins/try_except_pass.py | 106 + .../bandit/plugins/weak_cryptographic_key.py | 165 + .../site-packages/bandit/plugins/yaml_load.py | 76 + .../dill-0.4.0.dist-info/INSTALLER | 1 + .../dill-0.4.0.dist-info/LICENSE | 35 + .../dill-0.4.0.dist-info/METADATA | 281 + .../site-packages/dill-0.4.0.dist-info/RECORD | 101 + .../site-packages/dill-0.4.0.dist-info/WHEEL | 5 + .../dill-0.4.0.dist-info/top_level.txt | 1 + .../python3.12/site-packages/dill/__diff.py | 234 + .../python3.12/site-packages/dill/__info__.py | 291 + .../python3.12/site-packages/dill/__init__.py | 119 + .../dill/__pycache__/__diff.cpython-312.pyc | Bin 0 -> 8990 bytes .../dill/__pycache__/__info__.cpython-312.pyc | Bin 0 -> 10706 bytes .../dill/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4722 bytes .../dill/__pycache__/_dill.cpython-312.pyc | Bin 0 -> 103697 bytes .../dill/__pycache__/_objects.cpython-312.pyc | Bin 0 -> 25867 bytes .../dill/__pycache__/_shims.cpython-312.pyc | Bin 0 -> 7688 bytes .../dill/__pycache__/detect.cpython-312.pyc | Bin 0 -> 13437 bytes .../dill/__pycache__/logger.cpython-312.pyc | Bin 0 -> 12635 bytes .../dill/__pycache__/objtypes.cpython-312.pyc | Bin 0 -> 663 bytes .../dill/__pycache__/pointers.cpython-312.pyc | Bin 0 -> 4968 bytes .../dill/__pycache__/session.cpython-312.pyc | Bin 0 -> 26363 bytes .../dill/__pycache__/settings.cpython-312.pyc | Bin 0 -> 391 bytes .../dill/__pycache__/source.cpython-312.pyc | Bin 0 -> 41169 bytes .../dill/__pycache__/temp.cpython-312.pyc | Bin 0 -> 9471 bytes .../python3.12/site-packages/dill/_dill.py | 2255 +++++ .../python3.12/site-packages/dill/_objects.py | 541 + .../python3.12/site-packages/dill/_shims.py | 193 + .../python3.12/site-packages/dill/detect.py | 287 + .../python3.12/site-packages/dill/logger.py | 285 + .../python3.12/site-packages/dill/objtypes.py | 24 + .../python3.12/site-packages/dill/pointers.py | 122 + .../python3.12/site-packages/dill/session.py | 612 ++ .../python3.12/site-packages/dill/settings.py | 25 + .../python3.12/site-packages/dill/source.py | 1023 ++ .../lib/python3.12/site-packages/dill/temp.py | 252 + .../site-packages/dill/tests/__init__.py | 22 + .../site-packages/dill/tests/__main__.py | 35 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 403 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1320 bytes .../__pycache__/test_abc.cpython-312.pyc | Bin 0 -> 7875 bytes .../__pycache__/test_check.cpython-312.pyc | Bin 0 -> 2136 bytes .../__pycache__/test_classdef.cpython-312.pyc | Bin 0 -> 19504 bytes .../test_dataclasses.cpython-312.pyc | Bin 0 -> 1583 bytes .../__pycache__/test_detect.cpython-312.pyc | Bin 0 -> 7616 bytes .../test_dictviews.cpython-312.pyc | Bin 0 -> 2166 bytes .../__pycache__/test_diff.cpython-312.pyc | Bin 0 -> 3453 bytes .../test_extendpickle.cpython-312.pyc | Bin 0 -> 2194 bytes .../__pycache__/test_fglobals.cpython-312.pyc | Bin 0 -> 2907 bytes .../__pycache__/test_file.cpython-312.pyc | Bin 0 -> 18992 bytes .../test_functions.cpython-312.pyc | Bin 0 -> 7087 bytes .../__pycache__/test_functors.cpython-312.pyc | Bin 0 -> 1470 bytes .../__pycache__/test_logger.cpython-312.pyc | Bin 0 -> 3675 bytes .../__pycache__/test_mixins.cpython-312.pyc | Bin 0 -> 6867 bytes .../__pycache__/test_module.cpython-312.pyc | Bin 0 -> 3192 bytes .../test_moduledict.cpython-312.pyc | Bin 0 -> 2122 bytes .../__pycache__/test_nested.cpython-312.pyc | Bin 0 -> 6305 bytes .../__pycache__/test_objects.cpython-312.pyc | Bin 0 -> 2695 bytes .../test_properties.cpython-312.pyc | Bin 0 -> 2443 bytes .../test_pycapsule.cpython-312.pyc | Bin 0 -> 2086 bytes .../test_recursive.cpython-312.pyc | Bin 0 -> 8817 bytes .../test_registered.cpython-312.pyc | Bin 0 -> 2578 bytes .../test_restricted.cpython-312.pyc | Bin 0 -> 1234 bytes .../__pycache__/test_selected.cpython-312.pyc | Bin 0 -> 5924 bytes .../__pycache__/test_session.cpython-312.pyc | Bin 0 -> 14407 bytes .../__pycache__/test_source.cpython-312.pyc | Bin 0 -> 10146 bytes .../__pycache__/test_sources.cpython-312.pyc | Bin 0 -> 17500 bytes .../__pycache__/test_temp.cpython-312.pyc | Bin 0 -> 4283 bytes .../__pycache__/test_threads.cpython-312.pyc | Bin 0 -> 2078 bytes .../__pycache__/test_weakref.cpython-312.pyc | Bin 0 -> 2813 bytes .../site-packages/dill/tests/test_abc.py | 169 + .../site-packages/dill/tests/test_check.py | 62 + .../site-packages/dill/tests/test_classdef.py | 340 + .../dill/tests/test_dataclasses.py | 35 + .../site-packages/dill/tests/test_detect.py | 160 + .../dill/tests/test_dictviews.py | 39 + .../site-packages/dill/tests/test_diff.py | 107 + .../dill/tests/test_extendpickle.py | 53 + .../site-packages/dill/tests/test_fglobals.py | 55 + .../site-packages/dill/tests/test_file.py | 500 + .../dill/tests/test_functions.py | 141 + .../site-packages/dill/tests/test_functors.py | 39 + .../site-packages/dill/tests/test_logger.py | 70 + .../site-packages/dill/tests/test_mixins.py | 121 + .../site-packages/dill/tests/test_module.py | 84 + .../dill/tests/test_moduledict.py | 54 + .../site-packages/dill/tests/test_nested.py | 135 + .../site-packages/dill/tests/test_objects.py | 63 + .../dill/tests/test_properties.py | 62 + .../dill/tests/test_pycapsule.py | 45 + .../dill/tests/test_recursive.py | 177 + .../dill/tests/test_registered.py | 64 + .../dill/tests/test_restricted.py | 27 + .../site-packages/dill/tests/test_selected.py | 126 + .../site-packages/dill/tests/test_session.py | 280 + .../site-packages/dill/tests/test_source.py | 173 + .../site-packages/dill/tests/test_sources.py | 190 + .../site-packages/dill/tests/test_temp.py | 103 + .../site-packages/dill/tests/test_threads.py | 46 + .../site-packages/dill/tests/test_weakref.py | 72 + .../flake8-7.3.0.dist-info/INSTALLER | 1 + .../flake8-7.3.0.dist-info/LICENSE | 22 + .../flake8-7.3.0.dist-info/METADATA | 119 + .../flake8-7.3.0.dist-info/RECORD | 75 + .../flake8-7.3.0.dist-info/REQUESTED | 0 .../flake8-7.3.0.dist-info/WHEEL | 6 + .../flake8-7.3.0.dist-info/entry_points.txt | 13 + .../flake8-7.3.0.dist-info/top_level.txt | 1 + .../site-packages/flake8/__init__.py | 70 + .../site-packages/flake8/__main__.py | 7 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 2760 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 442 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 763 bytes .../__pycache__/checker.cpython-312.pyc | Bin 0 -> 24917 bytes .../__pycache__/defaults.cpython-312.pyc | Bin 0 -> 1079 bytes .../discover_files.cpython-312.pyc | Bin 0 -> 3157 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 3759 bytes .../__pycache__/processor.cpython-312.pyc | Bin 0 -> 20242 bytes .../__pycache__/statistics.cpython-312.pyc | Bin 0 -> 6523 bytes .../__pycache__/style_guide.cpython-312.pyc | Bin 0 -> 17972 bytes .../flake8/__pycache__/utils.cpython-312.pyc | Bin 0 -> 12274 bytes .../__pycache__/violation.cpython-312.pyc | Bin 0 -> 2908 bytes .../site-packages/flake8/_compat.py | 18 + .../site-packages/flake8/api/__init__.py | 6 + .../api/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 465 bytes .../api/__pycache__/legacy.cpython-312.pyc | Bin 0 -> 9310 bytes .../site-packages/flake8/api/legacy.py | 216 + .../site-packages/flake8/checker.py | 616 ++ .../site-packages/flake8/defaults.py | 45 + .../site-packages/flake8/discover_files.py | 89 + .../site-packages/flake8/exceptions.py | 78 + .../flake8/formatting/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 324 bytes .../_windows_color.cpython-312.pyc | Bin 0 -> 1952 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 9542 bytes .../__pycache__/default.cpython-312.pyc | Bin 0 -> 4756 bytes .../flake8/formatting/_windows_color.py | 61 + .../site-packages/flake8/formatting/base.py | 202 + .../flake8/formatting/default.py | 109 + .../site-packages/flake8/main/__init__.py | 2 + .../main/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 319 bytes .../__pycache__/application.cpython-312.pyc | Bin 0 -> 10202 bytes .../main/__pycache__/cli.cpython-312.pyc | Bin 0 -> 1063 bytes .../main/__pycache__/debug.cpython-312.pyc | Bin 0 -> 1433 bytes .../main/__pycache__/options.cpython-312.pyc | Bin 0 -> 9900 bytes .../site-packages/flake8/main/application.py | 215 + .../site-packages/flake8/main/cli.py | 24 + .../site-packages/flake8/main/debug.py | 30 + .../site-packages/flake8/main/options.py | 396 + .../site-packages/flake8/options/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 727 bytes .../__pycache__/aggregator.cpython-312.pyc | Bin 0 -> 2126 bytes .../__pycache__/config.cpython-312.pyc | Bin 0 -> 5415 bytes .../__pycache__/manager.cpython-312.pyc | Bin 0 -> 14139 bytes .../__pycache__/parse_args.cpython-312.pyc | Bin 0 -> 2922 bytes .../flake8/options/aggregator.py | 56 + .../site-packages/flake8/options/config.py | 140 + .../site-packages/flake8/options/manager.py | 320 + .../flake8/options/parse_args.py | 70 + .../site-packages/flake8/plugins/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 316 bytes .../__pycache__/finder.cpython-312.pyc | Bin 0 -> 15575 bytes .../__pycache__/pycodestyle.cpython-312.pyc | Bin 0 -> 6522 bytes .../__pycache__/pyflakes.cpython-312.pyc | Bin 0 -> 5402 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 1743 bytes .../site-packages/flake8/plugins/finder.py | 365 + .../flake8/plugins/pycodestyle.py | 112 + .../site-packages/flake8/plugins/pyflakes.py | 114 + .../site-packages/flake8/plugins/reporter.py | 42 + .../site-packages/flake8/processor.py | 454 + .../site-packages/flake8/statistics.py | 131 + .../site-packages/flake8/style_guide.py | 425 + .../python3.12/site-packages/flake8/utils.py | 280 + .../site-packages/flake8/violation.py | 69 + .../isort-7.0.0.dist-info/INSTALLER | 1 + .../isort-7.0.0.dist-info/METADATA | 375 + .../isort-7.0.0.dist-info/RECORD | 101 + .../site-packages/isort-7.0.0.dist-info/WHEEL | 4 + .../isort-7.0.0.dist-info/entry_points.txt | 6 + .../isort-7.0.0.dist-info/licenses/LICENSE | 21 + .../site-packages/isort/__init__.py | 39 + .../site-packages/isort/__main__.py | 3 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 932 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 251 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 318 bytes .../isort/__pycache__/api.cpython-312.pyc | Bin 0 -> 26448 bytes .../__pycache__/comments.cpython-312.pyc | Bin 0 -> 1402 bytes .../isort/__pycache__/core.cpython-312.pyc | Bin 0 -> 16257 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 11817 bytes .../isort/__pycache__/files.cpython-312.pyc | Bin 0 -> 2308 bytes .../isort/__pycache__/format.cpython-312.pyc | Bin 0 -> 8691 bytes .../isort/__pycache__/hooks.cpython-312.pyc | Bin 0 -> 4143 bytes .../__pycache__/identify.cpython-312.pyc | Bin 0 -> 9173 bytes .../isort/__pycache__/io.cpython-312.pyc | Bin 0 -> 4173 bytes .../isort/__pycache__/literal.cpython-312.pyc | Bin 0 -> 6676 bytes .../isort/__pycache__/logo.cpython-312.pyc | Bin 0 -> 623 bytes .../isort/__pycache__/main.cpython-312.pyc | Bin 0 -> 45570 bytes .../isort/__pycache__/output.cpython-312.pyc | Bin 0 -> 26448 bytes .../isort/__pycache__/parse.cpython-312.pyc | Bin 0 -> 22823 bytes .../isort/__pycache__/place.cpython-312.pyc | Bin 0 -> 7478 bytes .../__pycache__/profiles.cpython-312.pyc | Bin 0 -> 1950 bytes .../__pycache__/sections.cpython-312.pyc | Bin 0 -> 554 bytes .../__pycache__/settings.cpython-312.pyc | Bin 0 -> 41864 bytes .../setuptools_commands.cpython-312.pyc | Bin 0 -> 3619 bytes .../isort/__pycache__/sorting.cpython-312.pyc | Bin 0 -> 6203 bytes .../isort/__pycache__/utils.cpython-312.pyc | Bin 0 -> 3871 bytes .../isort/__pycache__/wrap.cpython-312.pyc | Bin 0 -> 6435 bytes .../__pycache__/wrap_modes.cpython-312.pyc | Bin 0 -> 14071 bytes .../isort/_vendored/tomli/LICENSE | 21 + .../isort/_vendored/tomli/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 391 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 25959 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 4001 bytes .../isort/_vendored/tomli/_parser.py | 650 ++ .../isort/_vendored/tomli/_re.py | 100 + .../isort/_vendored/tomli/py.typed | 1 + .../site-packages/isort/_version.py | 3 + .../lib/python3.12/site-packages/isort/api.py | 660 ++ .../site-packages/isort/comments.py | 29 + .../python3.12/site-packages/isort/core.py | 513 + .../isort/deprecated/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 201 bytes .../__pycache__/finders.cpython-312.pyc | Bin 0 -> 22676 bytes .../site-packages/isort/deprecated/finders.py | 392 + .../site-packages/isort/exceptions.py | 197 + .../python3.12/site-packages/isort/files.py | 41 + .../python3.12/site-packages/isort/format.py | 157 + .../python3.12/site-packages/isort/hooks.py | 93 + .../site-packages/isort/identify.py | 208 + .../lib/python3.12/site-packages/isort/io.py | 73 + .../python3.12/site-packages/isort/literal.py | 115 + .../python3.12/site-packages/isort/logo.py | 19 + .../python3.12/site-packages/isort/main.py | 1308 +++ .../python3.12/site-packages/isort/output.py | 686 ++ .../python3.12/site-packages/isort/parse.py | 601 ++ .../python3.12/site-packages/isort/place.py | 146 + .../site-packages/isort/profiles.py | 96 + .../python3.12/site-packages/isort/py.typed | 0 .../site-packages/isort/sections.py | 8 + .../site-packages/isort/settings.py | 933 ++ .../isort/setuptools_commands.py | 63 + .../python3.12/site-packages/isort/sorting.py | 131 + .../site-packages/isort/stdlibs/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 527 bytes .../stdlibs/__pycache__/all.cpython-312.pyc | Bin 0 -> 314 bytes .../stdlibs/__pycache__/py2.cpython-312.pyc | Bin 0 -> 266 bytes .../stdlibs/__pycache__/py27.cpython-312.pyc | Bin 0 -> 2971 bytes .../stdlibs/__pycache__/py3.cpython-312.pyc | Bin 0 -> 718 bytes .../stdlibs/__pycache__/py310.cpython-312.pyc | Bin 0 -> 2322 bytes .../stdlibs/__pycache__/py311.cpython-312.pyc | Bin 0 -> 2323 bytes .../stdlibs/__pycache__/py312.cpython-312.pyc | Bin 0 -> 2280 bytes .../stdlibs/__pycache__/py313.cpython-312.pyc | Bin 0 -> 2127 bytes .../stdlibs/__pycache__/py314.cpython-312.pyc | Bin 0 -> 2142 bytes .../stdlibs/__pycache__/py36.cpython-312.pyc | Bin 0 -> 2239 bytes .../stdlibs/__pycache__/py37.cpython-312.pyc | Bin 0 -> 2257 bytes .../stdlibs/__pycache__/py38.cpython-312.pyc | Bin 0 -> 2330 bytes .../stdlibs/__pycache__/py39.cpython-312.pyc | Bin 0 -> 2333 bytes .../site-packages/isort/stdlibs/all.py | 3 + .../site-packages/isort/stdlibs/py2.py | 3 + .../site-packages/isort/stdlibs/py27.py | 301 + .../site-packages/isort/stdlibs/py3.py | 13 + .../site-packages/isort/stdlibs/py310.py | 232 + .../site-packages/isort/stdlibs/py311.py | 232 + .../site-packages/isort/stdlibs/py312.py | 227 + .../site-packages/isort/stdlibs/py313.py | 207 + .../site-packages/isort/stdlibs/py314.py | 208 + .../site-packages/isort/stdlibs/py36.py | 224 + .../site-packages/isort/stdlibs/py37.py | 225 + .../site-packages/isort/stdlibs/py38.py | 233 + .../site-packages/isort/stdlibs/py39.py | 234 + .../python3.12/site-packages/isort/utils.py | 74 + .../python3.12/site-packages/isort/wrap.py | 147 + .../site-packages/isort/wrap_modes.py | 375 + .../site-packages/markdown_it/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 331 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 244 bytes .../__pycache__/_punycode.cpython-312.pyc | Bin 0 -> 2629 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 17002 bytes .../__pycache__/parser_block.cpython-312.pyc | Bin 0 -> 4095 bytes .../__pycache__/parser_core.cpython-312.pyc | Bin 0 -> 1833 bytes .../__pycache__/parser_inline.cpython-312.pyc | Bin 0 -> 5345 bytes .../__pycache__/renderer.cpython-312.pyc | Bin 0 -> 11833 bytes .../__pycache__/ruler.cpython-312.pyc | Bin 0 -> 12165 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 7765 bytes .../__pycache__/tree.cpython-312.pyc | Bin 0 -> 15444 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 8515 bytes .../site-packages/markdown_it/_compat.py | 1 + .../site-packages/markdown_it/_punycode.py | 67 + .../site-packages/markdown_it/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 200 bytes .../cli/__pycache__/parse.cpython-312.pyc | Bin 0 -> 4452 bytes .../site-packages/markdown_it/cli/parse.py | 110 + .../markdown_it/common/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 203 bytes .../__pycache__/entities.cpython-312.pyc | Bin 0 -> 563 bytes .../__pycache__/html_blocks.cpython-312.pyc | Bin 0 -> 787 bytes .../__pycache__/html_re.cpython-312.pyc | Bin 0 -> 1343 bytes .../__pycache__/normalize_url.cpython-312.pyc | Bin 0 -> 3334 bytes .../common/__pycache__/utils.cpython-312.pyc | Bin 0 -> 8196 bytes .../markdown_it/common/entities.py | 5 + .../markdown_it/common/html_blocks.py | 69 + .../markdown_it/common/html_re.py | 39 + .../markdown_it/common/normalize_url.py | 81 + .../site-packages/markdown_it/common/utils.py | 313 + .../markdown_it/helpers/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 466 bytes .../parse_link_destination.cpython-312.pyc | Bin 0 -> 2123 bytes .../parse_link_label.cpython-312.pyc | Bin 0 -> 1436 bytes .../parse_link_title.cpython-312.pyc | Bin 0 -> 2409 bytes .../helpers/parse_link_destination.py | 83 + .../markdown_it/helpers/parse_link_label.py | 44 + .../markdown_it/helpers/parse_link_title.py | 75 + .../site-packages/markdown_it/main.py | 350 + .../site-packages/markdown_it/parser_block.py | 113 + .../site-packages/markdown_it/parser_core.py | 46 + .../markdown_it/parser_inline.py | 148 + .../site-packages/markdown_it/port.yaml | 48 + .../markdown_it/presets/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1619 bytes .../__pycache__/commonmark.cpython-312.pyc | Bin 0 -> 1164 bytes .../__pycache__/default.cpython-312.pyc | Bin 0 -> 680 bytes .../presets/__pycache__/zero.cpython-312.pyc | Bin 0 -> 941 bytes .../markdown_it/presets/commonmark.py | 75 + .../markdown_it/presets/default.py | 36 + .../site-packages/markdown_it/presets/zero.py | 44 + .../site-packages/markdown_it/py.typed | 1 + .../site-packages/markdown_it/renderer.py | 336 + .../site-packages/markdown_it/ruler.py | 275 + .../markdown_it/rules_block/__init__.py | 27 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 690 bytes .../__pycache__/blockquote.cpython-312.pyc | Bin 0 -> 6925 bytes .../__pycache__/code.cpython-312.pyc | Bin 0 -> 1389 bytes .../__pycache__/fence.cpython-312.pyc | Bin 0 -> 2535 bytes .../__pycache__/heading.cpython-312.pyc | Bin 0 -> 2632 bytes .../__pycache__/hr.cpython-312.pyc | Bin 0 -> 1764 bytes .../__pycache__/html_block.cpython-312.pyc | Bin 0 -> 3623 bytes .../__pycache__/lheading.cpython-312.pyc | Bin 0 -> 2945 bytes .../__pycache__/list.cpython-312.pyc | Bin 0 -> 8046 bytes .../__pycache__/paragraph.cpython-312.pyc | Bin 0 -> 2185 bytes .../__pycache__/reference.cpython-312.pyc | Bin 0 -> 6209 bytes .../__pycache__/state_block.cpython-312.pyc | Bin 0 -> 9210 bytes .../__pycache__/table.cpython-312.pyc | Bin 0 -> 7396 bytes .../markdown_it/rules_block/blockquote.py | 299 + .../markdown_it/rules_block/code.py | 36 + .../markdown_it/rules_block/fence.py | 101 + .../markdown_it/rules_block/heading.py | 69 + .../markdown_it/rules_block/hr.py | 56 + .../markdown_it/rules_block/html_block.py | 90 + .../markdown_it/rules_block/lheading.py | 86 + .../markdown_it/rules_block/list.py | 345 + .../markdown_it/rules_block/paragraph.py | 66 + .../markdown_it/rules_block/reference.py | 235 + .../markdown_it/rules_block/state_block.py | 261 + .../markdown_it/rules_block/table.py | 250 + .../markdown_it/rules_core/__init__.py | 19 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 554 bytes .../__pycache__/block.cpython-312.pyc | Bin 0 -> 986 bytes .../__pycache__/inline.cpython-312.pyc | Bin 0 -> 832 bytes .../__pycache__/linkify.cpython-312.pyc | Bin 0 -> 5320 bytes .../__pycache__/normalize.cpython-312.pyc | Bin 0 -> 814 bytes .../__pycache__/replacements.cpython-312.pyc | Bin 0 -> 4942 bytes .../__pycache__/smartquotes.cpython-312.pyc | Bin 0 -> 6185 bytes .../__pycache__/state_core.cpython-312.pyc | Bin 0 -> 1096 bytes .../__pycache__/text_join.cpython-312.pyc | Bin 0 -> 1476 bytes .../markdown_it/rules_core/block.py | 13 + .../markdown_it/rules_core/inline.py | 10 + .../markdown_it/rules_core/linkify.py | 149 + .../markdown_it/rules_core/normalize.py | 19 + .../markdown_it/rules_core/replacements.py | 127 + .../markdown_it/rules_core/smartquotes.py | 202 + .../markdown_it/rules_core/state_core.py | 25 + .../markdown_it/rules_core/text_join.py | 35 + .../markdown_it/rules_inline/__init__.py | 31 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 821 bytes .../__pycache__/autolink.cpython-312.pyc | Bin 0 -> 2781 bytes .../__pycache__/backticks.cpython-312.pyc | Bin 0 -> 2569 bytes .../__pycache__/balance_pairs.cpython-312.pyc | Bin 0 -> 3257 bytes .../__pycache__/emphasis.cpython-312.pyc | Bin 0 -> 3877 bytes .../__pycache__/entity.cpython-312.pyc | Bin 0 -> 2470 bytes .../__pycache__/escape.cpython-312.pyc | Bin 0 -> 1927 bytes .../fragments_join.cpython-312.pyc | Bin 0 -> 1952 bytes .../__pycache__/html_inline.cpython-312.pyc | Bin 0 -> 1993 bytes .../__pycache__/image.cpython-312.pyc | Bin 0 -> 4200 bytes .../__pycache__/link.cpython-312.pyc | Bin 0 -> 4038 bytes .../__pycache__/linkify.cpython-312.pyc | Bin 0 -> 2743 bytes .../__pycache__/newline.cpython-312.pyc | Bin 0 -> 1782 bytes .../__pycache__/state_inline.cpython-312.pyc | Bin 0 -> 5947 bytes .../__pycache__/strikethrough.cpython-312.pyc | Bin 0 -> 4217 bytes .../__pycache__/text.cpython-312.pyc | Bin 0 -> 1517 bytes .../markdown_it/rules_inline/autolink.py | 77 + .../markdown_it/rules_inline/backticks.py | 72 + .../markdown_it/rules_inline/balance_pairs.py | 138 + .../markdown_it/rules_inline/emphasis.py | 102 + .../markdown_it/rules_inline/entity.py | 53 + .../markdown_it/rules_inline/escape.py | 93 + .../rules_inline/fragments_join.py | 43 + .../markdown_it/rules_inline/html_inline.py | 43 + .../markdown_it/rules_inline/image.py | 148 + .../markdown_it/rules_inline/link.py | 149 + .../markdown_it/rules_inline/linkify.py | 62 + .../markdown_it/rules_inline/newline.py | 44 + .../markdown_it/rules_inline/state_inline.py | 165 + .../markdown_it/rules_inline/strikethrough.py | 127 + .../markdown_it/rules_inline/text.py | 62 + .../site-packages/markdown_it/token.py | 178 + .../site-packages/markdown_it/tree.py | 333 + .../site-packages/markdown_it/utils.py | 186 + .../markdown_it_py-4.0.0.dist-info/INSTALLER | 1 + .../markdown_it_py-4.0.0.dist-info/METADATA | 219 + .../markdown_it_py-4.0.0.dist-info/RECORD | 142 + .../markdown_it_py-4.0.0.dist-info/WHEEL | 4 + .../entry_points.txt | 3 + .../licenses/LICENSE | 21 + .../licenses/LICENSE.markdown-it | 22 + .../mccabe-0.7.0.dist-info/INSTALLER | 1 + .../mccabe-0.7.0.dist-info/LICENSE | 25 + .../mccabe-0.7.0.dist-info/METADATA | 199 + .../mccabe-0.7.0.dist-info/RECORD | 9 + .../mccabe-0.7.0.dist-info/WHEEL | 6 + .../mccabe-0.7.0.dist-info/entry_points.txt | 3 + .../mccabe-0.7.0.dist-info/top_level.txt | 1 + .venv/lib/python3.12/site-packages/mccabe.py | 346 + .../mdurl-0.1.2.dist-info/INSTALLER | 1 + .../mdurl-0.1.2.dist-info/LICENSE | 46 + .../mdurl-0.1.2.dist-info/METADATA | 32 + .../mdurl-0.1.2.dist-info/RECORD | 18 + .../site-packages/mdurl-0.1.2.dist-info/WHEEL | 4 + .../site-packages/mdurl/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 652 bytes .../mdurl/__pycache__/_decode.cpython-312.pyc | Bin 0 -> 3839 bytes .../mdurl/__pycache__/_encode.cpython-312.pyc | Bin 0 -> 2889 bytes .../mdurl/__pycache__/_format.cpython-312.pyc | Bin 0 -> 1220 bytes .../mdurl/__pycache__/_parse.cpython-312.pyc | Bin 0 -> 7267 bytes .../mdurl/__pycache__/_url.cpython-312.pyc | Bin 0 -> 675 bytes .../python3.12/site-packages/mdurl/_decode.py | 104 + .../python3.12/site-packages/mdurl/_encode.py | 85 + .../python3.12/site-packages/mdurl/_format.py | 27 + .../python3.12/site-packages/mdurl/_parse.py | 304 + .../python3.12/site-packages/mdurl/_url.py | 14 + .../python3.12/site-packages/mdurl/py.typed | 1 + .../pip-25.3.dist-info/INSTALLER | 1 + .../site-packages/pip-25.3.dist-info/METADATA | 111 + .../site-packages/pip-25.3.dist-info/RECORD | 872 ++ .../pip-25.3.dist-info/REQUESTED | 0 .../site-packages/pip-25.3.dist-info/WHEEL | 4 + .../pip-25.3.dist-info/entry_points.txt | 4 + .../pip-25.3.dist-info/licenses/AUTHORS.txt | 842 ++ .../pip-25.3.dist-info/licenses/LICENSE.txt | 20 + .../src/pip/_vendor/cachecontrol/LICENSE.txt | 13 + .../licenses/src/pip/_vendor/certifi/LICENSE | 20 + .../pip/_vendor/dependency_groups/LICENSE.txt | 9 + .../src/pip/_vendor/distlib/LICENSE.txt | 284 + .../licenses/src/pip/_vendor/distro/LICENSE | 202 + .../licenses/src/pip/_vendor/idna/LICENSE.md | 31 + .../licenses/src/pip/_vendor/msgpack/COPYING | 14 + .../src/pip/_vendor/packaging/LICENSE | 3 + .../src/pip/_vendor/packaging/LICENSE.APACHE | 177 + .../src/pip/_vendor/packaging/LICENSE.BSD | 23 + .../src/pip/_vendor/pkg_resources/LICENSE | 17 + .../src/pip/_vendor/platformdirs/LICENSE | 21 + .../licenses/src/pip/_vendor/pygments/LICENSE | 25 + .../src/pip/_vendor/pyproject_hooks/LICENSE | 21 + .../licenses/src/pip/_vendor/requests/LICENSE | 175 + .../src/pip/_vendor/resolvelib/LICENSE | 13 + .../licenses/src/pip/_vendor/rich/LICENSE | 19 + .../licenses/src/pip/_vendor/tomli/LICENSE | 21 + .../licenses/src/pip/_vendor/tomli_w/LICENSE | 21 + .../src/pip/_vendor/truststore/LICENSE | 21 + .../src/pip/_vendor/urllib3/LICENSE.txt | 21 + .../python3.12/site-packages/pip/__init__.py | 13 + .../python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 661 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 853 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2211 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 763 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 18233 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12373 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 18280 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 40598 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 646 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 4109 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10279 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 10702 bytes .../site-packages/pip/_internal/build_env.py | 417 + .../site-packages/pip/_internal/cache.py | 291 + .../pip/_internal/cli/__init__.py | 3 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 287 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 9137 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10598 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30355 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1826 bytes .../__pycache__/index_command.cpython-312.pyc | Bin 0 -> 7211 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2271 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4845 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 14851 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 6113 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 13861 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 11268 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 387 bytes .../pip/_internal/cli/autocompletion.py | 184 + .../pip/_internal/cli/base_command.py | 244 + .../pip/_internal/cli/cmdoptions.py | 1110 +++ .../pip/_internal/cli/command_context.py | 28 + .../pip/_internal/cli/index_command.py | 175 + .../site-packages/pip/_internal/cli/main.py | 80 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 298 + .../pip/_internal/cli/progress_bars.py | 151 + .../pip/_internal/cli/req_command.py | 371 + .../pip/_internal/cli/spinners.py | 235 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 139 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4129 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 10184 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2592 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5437 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13416 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10016 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7270 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4302 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 2960 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1650 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 7272 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 3957 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 29796 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 17036 bytes .../commands/__pycache__/lock.cpython-312.pyc | Bin 0 -> 7909 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7642 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 11215 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4710 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8363 bytes .../pip/_internal/commands/cache.py | 231 + .../pip/_internal/commands/check.py | 66 + .../pip/_internal/commands/completion.py | 135 + .../pip/_internal/commands/configuration.py | 288 + .../pip/_internal/commands/debug.py | 203 + .../pip/_internal/commands/download.py | 142 + .../pip/_internal/commands/freeze.py | 107 + .../pip/_internal/commands/hash.py | 58 + .../pip/_internal/commands/help.py | 40 + .../pip/_internal/commands/index.py | 159 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 803 ++ .../pip/_internal/commands/list.py | 400 + .../pip/_internal/commands/lock.py | 167 + .../pip/_internal/commands/search.py | 178 + .../pip/_internal/commands/show.py | 231 + .../pip/_internal/commands/uninstall.py | 113 + .../pip/_internal/commands/wheel.py | 176 + .../pip/_internal/configuration.py | 396 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 953 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2931 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1778 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8375 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2325 bytes .../pip/_internal/distributions/base.py | 55 + .../pip/_internal/distributions/installed.py | 33 + .../pip/_internal/distributions/sdist.py | 164 + .../pip/_internal/distributions/wheel.py | 44 + .../site-packages/pip/_internal/exceptions.py | 898 ++ .../pip/_internal/index/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 241 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21235 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 42132 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12335 bytes .../pip/_internal/index/collector.py | 489 + .../pip/_internal/index/package_finder.py | 1059 ++ .../pip/_internal/index/sources.py | 287 + .../pip/_internal/locations/__init__.py | 441 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 15329 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6778 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 7937 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3720 bytes .../pip/_internal/locations/_distutils.py | 173 + .../pip/_internal/locations/_sysconfig.py | 215 + .../pip/_internal/locations/base.py | 82 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 169 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6786 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2889 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 34473 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 15814 bytes .../pip/_internal/metadata/_json.py | 87 + .../pip/_internal/metadata/base.py | 685 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 370 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 4249 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 12829 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 8054 bytes .../_internal/metadata/importlib/_compat.py | 87 + .../_internal/metadata/importlib/_dists.py | 229 + .../pip/_internal/metadata/importlib/_envs.py | 143 + .../pip/_internal/metadata/pkg_resources.py | 298 + .../pip/_internal/models/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 275 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1616 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 10507 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4140 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1706 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2294 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26653 bytes .../models/__pycache__/pylock.cpython-312.pyc | Bin 0 -> 7869 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1035 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 4973 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1890 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 4867 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 4680 bytes .../pip/_internal/models/candidate.py | 25 + .../pip/_internal/models/direct_url.py | 227 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 57 + .../pip/_internal/models/link.py | 613 ++ .../pip/_internal/models/pylock.py | 188 + .../pip/_internal/models/scheme.py | 25 + .../pip/_internal/models/search_scope.py | 126 + .../pip/_internal/models/selection_prefs.py | 53 + .../pip/_internal/models/target_python.py | 122 + .../pip/_internal/models/wheel.py | 80 + .../pip/_internal/network/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 263 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 21476 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 8011 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 16089 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11623 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 19218 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2269 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2937 bytes .../pip/_internal/network/auth.py | 564 ++ .../pip/_internal/network/cache.py | 128 + .../pip/_internal/network/download.py | 342 + .../pip/_internal/network/lazy_wheel.py | 215 + .../pip/_internal/network/session.py | 528 + .../pip/_internal/network/utils.py | 98 + .../pip/_internal/network/xmlrpc.py | 61 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 209 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7218 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10257 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 26629 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 215 bytes .../__pycache__/build_tracker.cpython-312.pyc | Bin 0 -> 7633 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 1887 bytes .../metadata_editable.cpython-312.pyc | Bin 0 -> 1938 bytes .../build/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 1734 bytes .../wheel_editable.cpython-312.pyc | Bin 0 -> 2075 bytes .../operations/build/build_tracker.py | 140 + .../_internal/operations/build/metadata.py | 38 + .../operations/build/metadata_editable.py | 41 + .../pip/_internal/operations/build/wheel.py | 38 + .../operations/build/wheel_editable.py | 47 + .../pip/_internal/operations/check.py | 175 + .../pip/_internal/operations/freeze.py | 259 + .../_internal/operations/install/__init__.py | 1 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 275 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 34221 bytes .../pip/_internal/operations/install/wheel.py | 746 ++ .../pip/_internal/operations/prepare.py | 748 ++ .../site-packages/pip/_internal/pyproject.py | 123 + .../pip/_internal/req/__init__.py | 103 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4026 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21694 bytes .../req_dependency_group.cpython-312.pyc | Bin 0 -> 4027 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 23809 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 34591 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 5430 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 31762 bytes .../pip/_internal/req/constructors.py | 566 ++ .../pip/_internal/req/req_dependency_group.py | 75 + .../pip/_internal/req/req_file.py | 619 ++ .../pip/_internal/req/req_install.py | 828 ++ .../pip/_internal/req/req_set.py | 81 + .../pip/_internal/req/req_uninstall.py | 639 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 209 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1180 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 216 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22540 bytes .../_internal/resolution/legacy/resolver.py | 598 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 220 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 7994 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 29444 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 33840 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6757 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 11650 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 5817 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 14748 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12395 bytes .../_internal/resolution/resolvelib/base.py | 142 + .../resolution/resolvelib/candidates.py | 591 ++ .../resolution/resolvelib/factory.py | 845 ++ .../resolution/resolvelib/found_candidates.py | 166 + .../resolution/resolvelib/provider.py | 285 + .../resolution/resolvelib/reporter.py | 98 + .../resolution/resolvelib/requirements.py | 247 + .../resolution/resolvelib/resolver.py | 332 + .../pip/_internal/self_outdated_check.py | 262 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 204 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4544 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1875 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2464 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 3031 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 6650 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 688 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4217 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3538 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3173 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 4064 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7995 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1138 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2359 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7477 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13858 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 32709 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 1894 bytes .../utils/__pycache__/retry.cpython-312.pyc | Bin 0 -> 1981 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8533 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 11950 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 14351 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2085 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4403 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5871 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 85 + .../pip/_internal/utils/compatibility_tags.py | 201 + .../pip/_internal/utils/datetime.py | 10 + .../pip/_internal/utils/deprecation.py | 126 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 81 + .../pip/_internal/utils/entrypoints.py | 88 + .../pip/_internal/utils/filesystem.py | 164 + .../pip/_internal/utils/filetypes.py | 24 + .../pip/_internal/utils/glibc.py | 102 + .../pip/_internal/utils/hashes.py | 150 + .../pip/_internal/utils/logging.py | 364 + .../site-packages/pip/_internal/utils/misc.py | 765 ++ .../pip/_internal/utils/packaging.py | 44 + .../pip/_internal/utils/retry.py | 45 + .../pip/_internal/utils/subprocess.py | 248 + .../pip/_internal/utils/temp_dir.py | 294 + .../pip/_internal/utils/unpacking.py | 362 + .../site-packages/pip/_internal/utils/urls.py | 55 + .../pip/_internal/utils/virtualenv.py | 105 + .../pip/_internal/utils/wheel.py | 132 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 543 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5171 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19925 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7776 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12344 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 28750 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 130 + .../site-packages/pip/_internal/vcs/git.py | 571 ++ .../pip/_internal/vcs/mercurial.py | 186 + .../pip/_internal/vcs/subversion.py | 335 + .../pip/_internal/vcs/versioncontrol.py | 693 ++ .../pip/_internal/wheel_builder.py | 261 + .../site-packages/pip/_vendor/README.rst | 180 + .../site-packages/pip/_vendor/__init__.py | 117 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4606 bytes .../pip/_vendor/cachecontrol/LICENSE.txt | 13 + .../pip/_vendor/cachecontrol/__init__.py | 29 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 915 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2659 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6721 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3822 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16442 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4360 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6707 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 5278 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1687 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 168 + .../pip/_vendor/cachecontrol/cache.py | 75 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 448 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7065 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2751 bytes .../_vendor/cachecontrol/caches/file_cache.py | 145 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 511 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 157 + .../pip/_vendor/cachecontrol/py.typed | 0 .../pip/_vendor/cachecontrol/serialize.py | 146 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../site-packages/pip/_vendor/certifi/LICENSE | 20 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 331 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 658 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 2095 bytes .../pip/_vendor/certifi/cacert.pem | 4800 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 83 + .../pip/_vendor/certifi/py.typed | 0 .../pip/_vendor/dependency_groups/LICENSE.txt | 9 + .../pip/_vendor/dependency_groups/__init__.py | 13 + .../pip/_vendor/dependency_groups/__main__.py | 65 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 390 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 2712 bytes .../_implementation.cpython-312.pyc | Bin 0 -> 9664 bytes .../_lint_dependency_groups.cpython-312.pyc | Bin 0 -> 2877 bytes .../__pycache__/_pip_wrapper.cpython-312.pyc | Bin 0 -> 3444 bytes .../__pycache__/_toml_compat.cpython-312.pyc | Bin 0 -> 491 bytes .../dependency_groups/_implementation.py | 209 + .../_lint_dependency_groups.py | 59 + .../_vendor/dependency_groups/_pip_wrapper.py | 62 + .../_vendor/dependency_groups/_toml_compat.py | 9 + .../pip/_vendor/dependency_groups/py.typed | 0 .../pip/_vendor/distlib/LICENSE.txt | 284 + .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1282 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45610 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17338 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19793 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88247 bytes .../pip/_vendor/distlib/compat.py | 1137 +++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 447 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 108032 bytes .../site-packages/pip/_vendor/distlib/util.py | 1984 ++++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../site-packages/pip/_vendor/distro/LICENSE | 202 + .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 973 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 305 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53856 bytes .../pip/_vendor/distro/distro.py | 1403 +++ .../site-packages/pip/_vendor/distro/py.typed | 0 .../site-packages/pip/_vendor/idna/LICENSE.md | 31 + .../pip/_vendor/idna/__init__.py | 45 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 899 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 4999 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 903 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 16189 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99489 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2651 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 230 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158859 bytes .../site-packages/pip/_vendor/idna/codec.py | 122 + .../site-packages/pip/_vendor/idna/compat.py | 15 + .../site-packages/pip/_vendor/idna/core.py | 437 + .../pip/_vendor/idna/idnadata.py | 4243 ++++++++ .../pip/_vendor/idna/intranges.py | 57 + .../pip/_vendor/idna/package_data.py | 1 + .../site-packages/pip/_vendor/idna/py.typed | 0 .../pip/_vendor/idna/uts46data.py | 8681 +++++++++++++++++ .../site-packages/pip/_vendor/msgpack/COPYING | 14 + .../pip/_vendor/msgpack/__init__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1752 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2038 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8306 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 41518 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 170 + .../pip/_vendor/msgpack/fallback.py | 929 ++ .../pip/_vendor/packaging/LICENSE | 3 + .../pip/_vendor/packaging/LICENSE.APACHE | 177 + .../pip/_vendor/packaging/LICENSE.BSD | 23 + .../pip/_vendor/packaging/__init__.py | 15 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 571 bytes .../__pycache__/_elffile.cpython-312.pyc | Bin 0 -> 5036 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 9761 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 4579 bytes .../__pycache__/_parser.cpython-312.pyc | Bin 0 -> 14011 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3254 bytes .../__pycache__/_tokenizer.cpython-312.pyc | Bin 0 -> 7952 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 12763 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 27254 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 4423 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 39077 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 24829 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 6648 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 20491 bytes .../pip/_vendor/packaging/_elffile.py | 109 + .../pip/_vendor/packaging/_manylinux.py | 262 + .../pip/_vendor/packaging/_musllinux.py | 85 + .../pip/_vendor/packaging/_parser.py | 353 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/_tokenizer.py | 195 + .../_vendor/packaging/licenses/__init__.py | 145 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4142 bytes .../__pycache__/_spdx.cpython-312.pyc | Bin 0 -> 47377 bytes .../pip/_vendor/packaging/licenses/_spdx.py | 759 ++ .../pip/_vendor/packaging/markers.py | 362 + .../pip/_vendor/packaging/metadata.py | 862 ++ .../pip/_vendor/packaging/py.typed | 0 .../pip/_vendor/packaging/requirements.py | 91 + .../pip/_vendor/packaging/specifiers.py | 1019 ++ .../pip/_vendor/packaging/tags.py | 656 ++ .../pip/_vendor/packaging/utils.py | 163 + .../pip/_vendor/packaging/version.py | 582 ++ .../pip/_vendor/pkg_resources/LICENSE | 17 + .../pip/_vendor/pkg_resources/__init__.py | 3676 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 161526 bytes .../pip/_vendor/platformdirs/LICENSE | 21 + .../pip/_vendor/platformdirs/__init__.py | 631 ++ .../pip/_vendor/platformdirs/__main__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 19860 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1981 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 10708 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 13373 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 9016 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 14759 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 816 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13686 bytes .../pip/_vendor/platformdirs/android.py | 249 + .../pip/_vendor/platformdirs/api.py | 299 + .../pip/_vendor/platformdirs/macos.py | 146 + .../pip/_vendor/platformdirs/py.typed | 0 .../pip/_vendor/platformdirs/unix.py | 272 + .../pip/_vendor/platformdirs/version.py | 34 + .../pip/_vendor/platformdirs/windows.py | 272 + .../pip/_vendor/pygments/LICENSE | 25 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3502 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 748 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2647 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3240 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4734 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38450 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1583 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2642 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4095 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4770 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12155 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6729 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8208 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33025 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14097 bytes .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 70 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37993 bytes .../pip/_vendor/pygments/formatter.py | 129 + .../_vendor/pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6967 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4229 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/lexer.py | 963 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14749 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 69858 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42988 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 602 ++ .../pip/_vendor/pygments/lexers/python.py | 1201 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 72 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 247 + .../pip/_vendor/pygments/style.py | 203 + .../pip/_vendor/pygments/styles/__init__.py | 61 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 2685 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3662 bytes .../pip/_vendor/pygments/styles/_mapping.py | 54 + .../pip/_vendor/pygments/token.py | 214 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 324 + .../pip/_vendor/pyproject_hooks/LICENSE | 21 + .../pip/_vendor/pyproject_hooks/__init__.py | 31 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 761 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 18093 bytes .../pip/_vendor/pyproject_hooks/_impl.py | 410 + .../pyproject_hooks/_in_process/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1090 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 15372 bytes .../_in_process/_in_process.py | 389 + .../pip/_vendor/pyproject_hooks/py.typed | 0 .../pip/_vendor/requests/LICENSE | 175 + .../pip/_vendor/requests/__init__.py | 179 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5260 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 598 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2035 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 27886 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7218 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13937 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 692 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1999 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25290 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7612 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4242 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1066 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35587 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 1301 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27904 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6045 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5631 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36204 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 696 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 314 + .../pip/_vendor/requests/certs.py | 17 + .../pip/_vendor/requests/compat.py | 90 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 151 + .../pip/_vendor/requests/help.py | 127 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1039 ++ .../pip/_vendor/requests/packages.py | 25 + .../pip/_vendor/requests/sessions.py | 831 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1086 +++ .../pip/_vendor/resolvelib/LICENSE | 13 + .../pip/_vendor/resolvelib/__init__.py | 27 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 648 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 10137 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 3303 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 12464 bytes .../pip/_vendor/resolvelib/providers.py | 196 + .../pip/_vendor/resolvelib/py.typed | 0 .../pip/_vendor/resolvelib/reporters.py | 55 + .../_vendor/resolvelib/resolvers/__init__.py | 27 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 753 bytes .../__pycache__/abstract.cpython-312.pyc | Bin 0 -> 2459 bytes .../__pycache__/criterion.cpython-312.pyc | Bin 0 -> 3284 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 4094 bytes .../__pycache__/resolution.cpython-312.pyc | Bin 0 -> 25178 bytes .../_vendor/resolvelib/resolvers/abstract.py | 47 + .../_vendor/resolvelib/resolvers/criterion.py | 48 + .../resolvelib/resolvers/exceptions.py | 57 + .../resolvelib/resolvers/resolution.py | 627 ++ .../pip/_vendor/resolvelib/structs.py | 209 + .../site-packages/pip/_vendor/rich/LICENSE | 19 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 245 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7029 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 9564 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7886 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 205990 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1743 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2363 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 551 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 869 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12041 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4161 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1899 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3643 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5174 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 738 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6442 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13193 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 979 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 879 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 28816 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2504 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3587 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3350 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1622 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12293 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9135 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4286 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11725 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5592 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26522 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1715 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8601 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 115305 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2272 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9245 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10798 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10542 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1534 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4092 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1859 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3591 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3071 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9914 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6049 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5223 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20234 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 20143 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4764 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 14082 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9604 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6390 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 6957 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1834 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5328 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12743 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40633 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75134 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10403 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 16008 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1806 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 581 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6638 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6582 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3844 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2498 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28595 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 5939 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6082 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33445 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2153 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 41004 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43896 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3362 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 61257 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6346 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 328 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 36250 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11810 bytes .../pip/_vendor/rich/_cell_widths.py | 454 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 268 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 153 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 661 ++ .../pip/_vendor/rich/_windows.py | 71 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 93 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 306 + .../site-packages/pip/_vendor/rich/ansi.py | 241 + .../site-packages/pip/_vendor/rich/bar.py | 93 + .../site-packages/pip/_vendor/rich/box.py | 474 + .../site-packages/pip/_vendor/rich/cells.py | 174 + .../site-packages/pip/_vendor/rich/color.py | 621 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2680 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 219 + .../pip/_vendor/rich/default_styles.py | 193 + .../pip/_vendor/rich/diagnose.py | 39 + .../site-packages/pip/_vendor/rich/emoji.py | 91 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 88 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 139 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 442 + .../site-packages/pip/_vendor/rich/live.py | 400 + .../pip/_vendor/rich/live_render.py | 106 + .../site-packages/pip/_vendor/rich/logging.py | 297 + .../site-packages/pip/_vendor/rich/markup.py | 251 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 317 + .../site-packages/pip/_vendor/rich/pretty.py | 1016 ++ .../pip/_vendor/rich/progress.py | 1715 ++++ .../pip/_vendor/rich/progress_bar.py | 223 + .../site-packages/pip/_vendor/rich/prompt.py | 400 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/py.typed | 0 .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 752 ++ .../site-packages/pip/_vendor/rich/spinner.py | 132 + .../site-packages/pip/_vendor/rich/status.py | 131 + .../site-packages/pip/_vendor/rich/style.py | 792 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 985 ++ .../site-packages/pip/_vendor/rich/table.py | 1006 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1361 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 899 ++ .../site-packages/pip/_vendor/rich/tree.py | 257 + .../site-packages/pip/_vendor/tomli/LICENSE | 21 + .../pip/_vendor/tomli/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 352 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 29455 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 4090 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 380 bytes .../pip/_vendor/tomli/_parser.py | 777 ++ .../site-packages/pip/_vendor/tomli/_re.py | 115 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../site-packages/pip/_vendor/tomli/py.typed | 1 + .../site-packages/pip/_vendor/tomli_w/LICENSE | 21 + .../pip/_vendor/tomli_w/__init__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 341 bytes .../__pycache__/_writer.cpython-312.pyc | Bin 0 -> 10383 bytes .../pip/_vendor/tomli_w/_writer.py | 229 + .../pip/_vendor/tomli_w/py.typed | 1 + .../pip/_vendor/truststore/LICENSE | 21 + .../pip/_vendor/truststore/__init__.py | 36 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1466 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 17559 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 19006 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2280 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1113 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15789 bytes .../pip/_vendor/truststore/_api.py | 341 + .../pip/_vendor/truststore/_macos.py | 571 ++ .../pip/_vendor/truststore/_openssl.py | 68 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 567 ++ .../pip/_vendor/truststore/py.typed | 0 .../pip/_vendor/urllib3/LICENSE.txt | 21 + .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3419 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16502 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 232 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20421 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36557 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13507 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10427 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4032 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20486 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7308 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 33980 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1140 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 212 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1862 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11578 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5733 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24464 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35555 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7525 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 229 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17441 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14815 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 920 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 213 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41333 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 223 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1834 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7342 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 ++ .../pip/_vendor/urllib3/poolmanager.py | 540 + .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1160 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4770 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1566 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1366 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4197 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 3003 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21732 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15391 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5085 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10781 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11153 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15809 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4417 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 622 ++ .../pip/_vendor/urllib3/util/ssl_.py | 504 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 19 + .../lib/python3.12/site-packages/pip/py.typed | 4 + .../platformdirs-4.5.0.dist-info/INSTALLER | 1 + .../platformdirs-4.5.0.dist-info/METADATA | 350 + .../platformdirs-4.5.0.dist-info/RECORD | 22 + .../platformdirs-4.5.0.dist-info/WHEEL | 4 + .../licenses/LICENSE | 21 + .../site-packages/platformdirs/__init__.py | 631 ++ .../site-packages/platformdirs/__main__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 19800 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1957 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 10696 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 13361 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 9004 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 14747 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 804 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13674 bytes .../site-packages/platformdirs/android.py | 249 + .../site-packages/platformdirs/api.py | 299 + .../site-packages/platformdirs/macos.py | 146 + .../site-packages/platformdirs/py.typed | 0 .../site-packages/platformdirs/unix.py | 272 + .../site-packages/platformdirs/version.py | 34 + .../site-packages/platformdirs/windows.py | 272 + .../pycodestyle-2.14.0.dist-info/INSTALLER | 1 + .../pycodestyle-2.14.0.dist-info/LICENSE | 25 + .../pycodestyle-2.14.0.dist-info/METADATA | 130 + .../pycodestyle-2.14.0.dist-info/RECORD | 10 + .../pycodestyle-2.14.0.dist-info/WHEEL | 6 + .../entry_points.txt | 2 + .../top_level.txt | 1 + .../python3.12/site-packages/pycodestyle.py | 2700 +++++ .../pyflakes-3.4.0.dist-info/INSTALLER | 1 + .../pyflakes-3.4.0.dist-info/LICENSE | 21 + .../pyflakes-3.4.0.dist-info/METADATA | 109 + .../pyflakes-3.4.0.dist-info/RECORD | 50 + .../pyflakes-3.4.0.dist-info/WHEEL | 6 + .../pyflakes-3.4.0.dist-info/entry_points.txt | 2 + .../pyflakes-3.4.0.dist-info/top_level.txt | 1 + .../site-packages/pyflakes/__init__.py | 1 + .../site-packages/pyflakes/__main__.py | 5 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 219 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 328 bytes .../pyflakes/__pycache__/api.cpython-312.pyc | Bin 0 -> 7641 bytes .../__pycache__/checker.cpython-312.pyc | Bin 0 -> 105287 bytes .../__pycache__/messages.cpython-312.pyc | Bin 0 -> 18821 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 3977 bytes .../python3.12/site-packages/pyflakes/api.py | 185 + .../site-packages/pyflakes/checker.py | 2223 +++++ .../site-packages/pyflakes/messages.py | 362 + .../site-packages/pyflakes/reporter.py | 92 + .../pyflakes/scripts/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 201 bytes .../__pycache__/pyflakes.cpython-312.pyc | Bin 0 -> 433 bytes .../pyflakes/scripts/pyflakes.py | 7 + .../site-packages/pyflakes/test/__init__.py | 0 .../test/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 198 bytes .../test/__pycache__/harness.cpython-312.pyc | Bin 0 -> 2158 bytes .../test/__pycache__/test_api.cpython-312.pyc | Bin 0 -> 40353 bytes .../__pycache__/test_builtin.cpython-312.pyc | Bin 0 -> 1300 bytes .../test_code_segment.cpython-312.pyc | Bin 0 -> 6243 bytes .../__pycache__/test_dict.cpython-312.pyc | Bin 0 -> 8272 bytes .../__pycache__/test_doctests.cpython-312.pyc | Bin 0 -> 18446 bytes .../__pycache__/test_imports.cpython-312.pyc | Bin 0 -> 54608 bytes .../test_is_literal.cpython-312.pyc | Bin 0 -> 8178 bytes .../__pycache__/test_match.cpython-312.pyc | Bin 0 -> 3894 bytes .../__pycache__/test_other.cpython-312.pyc | Bin 0 -> 79002 bytes .../test_type_annotations.cpython-312.pyc | Bin 0 -> 31332 bytes .../test_undefined_names.cpython-312.pyc | Bin 0 -> 33765 bytes .../site-packages/pyflakes/test/harness.py | 34 + .../site-packages/pyflakes/test/test_api.py | 781 ++ .../pyflakes/test/test_builtin.py | 30 + .../pyflakes/test/test_code_segment.py | 129 + .../site-packages/pyflakes/test/test_dict.py | 193 + .../pyflakes/test/test_doctests.py | 444 + .../pyflakes/test/test_imports.py | 1211 +++ .../pyflakes/test/test_is_literal.py | 222 + .../site-packages/pyflakes/test/test_match.py | 94 + .../site-packages/pyflakes/test/test_other.py | 2150 ++++ .../pyflakes/test/test_type_annotations.py | 825 ++ .../pyflakes/test/test_undefined_names.py | 819 ++ .../pygments-2.19.2.dist-info/INSTALLER | 1 + .../pygments-2.19.2.dist-info/METADATA | 58 + .../pygments-2.19.2.dist-info/RECORD | 684 ++ .../pygments-2.19.2.dist-info/WHEEL | 4 + .../entry_points.txt | 2 + .../licenses/AUTHORS | 291 + .../licenses/LICENSE | 25 + .../site-packages/pygments/__init__.py | 82 + .../site-packages/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3466 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 785 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26550 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2635 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3228 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4698 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38733 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1571 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2630 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4083 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4758 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12113 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6705 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8196 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33013 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14085 bytes .../site-packages/pygments/cmdline.py | 668 ++ .../site-packages/pygments/console.py | 70 + .../site-packages/pygments/filter.py | 70 + .../pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37933 bytes .../site-packages/pygments/formatter.py | 129 + .../pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6919 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4217 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4210 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7310 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 41379 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 28691 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6031 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20125 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6853 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 2958 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 13790 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9117 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5783 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15123 bytes .../pygments/formatters/_mapping.py | 23 + .../pygments/formatters/bbcode.py | 108 + .../pygments/formatters/groff.py | 170 + .../site-packages/pygments/formatters/html.py | 995 ++ .../site-packages/pygments/formatters/img.py | 686 ++ .../site-packages/pygments/formatters/irc.py | 154 + .../pygments/formatters/latex.py | 518 + .../pygments/formatters/other.py | 160 + .../pygments/formatters/pangomarkup.py | 83 + .../site-packages/pygments/formatters/rtf.py | 349 + .../site-packages/pygments/formatters/svg.py | 185 + .../pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../site-packages/pygments/lexer.py | 961 ++ .../site-packages/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14689 bytes .../__pycache__/_ada_builtins.cpython-312.pyc | Bin 0 -> 1247 bytes .../__pycache__/_asy_builtins.cpython-312.pyc | Bin 0 -> 17640 bytes .../__pycache__/_cl_builtins.cpython-312.pyc | Bin 0 -> 11676 bytes .../_cocoa_builtins.cpython-312.pyc | Bin 0 -> 97580 bytes .../_csound_builtins.cpython-312.pyc | Bin 0 -> 16388 bytes .../__pycache__/_css_builtins.cpython-312.pyc | Bin 0 -> 9397 bytes .../_googlesql_builtins.cpython-312.pyc | Bin 0 -> 10835 bytes .../_julia_builtins.cpython-312.pyc | Bin 0 -> 8262 bytes .../_lasso_builtins.cpython-312.pyc | Bin 0 -> 76740 bytes .../_lilypond_builtins.cpython-312.pyc | Bin 0 -> 88418 bytes .../__pycache__/_lua_builtins.cpython-312.pyc | Bin 0 -> 8399 bytes .../_luau_builtins.cpython-312.pyc | Bin 0 -> 1061 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 66963 bytes .../__pycache__/_mql_builtins.cpython-312.pyc | Bin 0 -> 18021 bytes .../_mysql_builtins.cpython-312.pyc | Bin 0 -> 19567 bytes .../_openedge_builtins.cpython-312.pyc | Bin 0 -> 34103 bytes .../__pycache__/_php_builtins.cpython-312.pyc | Bin 0 -> 65536 bytes .../_postgres_builtins.cpython-312.pyc | Bin 0 -> 11308 bytes .../_qlik_builtins.cpython-312.pyc | Bin 0 -> 6388 bytes .../_scheme_builtins.cpython-312.pyc | Bin 0 -> 23185 bytes .../_scilab_builtins.cpython-312.pyc | Bin 0 -> 35232 bytes .../_sourcemod_builtins.cpython-312.pyc | Bin 0 -> 21850 bytes .../__pycache__/_sql_builtins.cpython-312.pyc | Bin 0 -> 5579 bytes .../_stan_builtins.cpython-312.pyc | Bin 0 -> 9964 bytes .../_stata_builtins.cpython-312.pyc | Bin 0 -> 21248 bytes .../_tsql_builtins.cpython-312.pyc | Bin 0 -> 8880 bytes .../__pycache__/_usd_builtins.cpython-312.pyc | Bin 0 -> 1410 bytes .../_vbscript_builtins.cpython-312.pyc | Bin 0 -> 2939 bytes .../__pycache__/_vim_builtins.cpython-312.pyc | Bin 0 -> 30742 bytes .../__pycache__/actionscript.cpython-312.pyc | Bin 0 -> 11127 bytes .../lexers/__pycache__/ada.cpython-312.pyc | Bin 0 -> 5523 bytes .../lexers/__pycache__/agile.cpython-312.pyc | Bin 0 -> 1318 bytes .../__pycache__/algebra.cpython-312.pyc | Bin 0 -> 11007 bytes .../__pycache__/ambient.cpython-312.pyc | Bin 0 -> 3135 bytes .../lexers/__pycache__/amdgpu.cpython-312.pyc | Bin 0 -> 2258 bytes .../lexers/__pycache__/ampl.cpython-312.pyc | Bin 0 -> 4106 bytes .../__pycache__/apdlexer.cpython-312.pyc | Bin 0 -> 19047 bytes .../lexers/__pycache__/apl.cpython-312.pyc | Bin 0 -> 2527 bytes .../__pycache__/archetype.cpython-312.pyc | Bin 0 -> 9199 bytes .../lexers/__pycache__/arrow.cpython-312.pyc | Bin 0 -> 3577 bytes .../lexers/__pycache__/arturo.cpython-312.pyc | Bin 0 -> 9754 bytes .../lexers/__pycache__/asc.cpython-312.pyc | Bin 0 -> 2057 bytes .../lexers/__pycache__/asm.cpython-312.pyc | Bin 0 -> 36021 bytes .../lexers/__pycache__/asn1.cpython-312.pyc | Bin 0 -> 4498 bytes .../__pycache__/automation.cpython-312.pyc | Bin 0 -> 18425 bytes .../lexers/__pycache__/bare.cpython-312.pyc | Bin 0 -> 2884 bytes .../lexers/__pycache__/basic.cpython-312.pyc | Bin 0 -> 26981 bytes .../lexers/__pycache__/bdd.cpython-312.pyc | Bin 0 -> 2093 bytes .../lexers/__pycache__/berry.cpython-312.pyc | Bin 0 -> 3567 bytes .../lexers/__pycache__/bibtex.cpython-312.pyc | Bin 0 -> 5233 bytes .../__pycache__/blueprint.cpython-312.pyc | Bin 0 -> 5321 bytes .../lexers/__pycache__/boa.cpython-312.pyc | Bin 0 -> 3543 bytes .../lexers/__pycache__/bqn.cpython-312.pyc | Bin 0 -> 2557 bytes .../__pycache__/business.cpython-312.pyc | Bin 0 -> 22074 bytes .../lexers/__pycache__/c_cpp.cpython-312.pyc | Bin 0 -> 16105 bytes .../lexers/__pycache__/c_like.cpython-312.pyc | Bin 0 -> 27577 bytes .../__pycache__/capnproto.cpython-312.pyc | Bin 0 -> 2416 bytes .../lexers/__pycache__/carbon.cpython-312.pyc | Bin 0 -> 3554 bytes .../lexers/__pycache__/cddl.cpython-312.pyc | Bin 0 -> 4246 bytes .../lexers/__pycache__/chapel.cpython-312.pyc | Bin 0 -> 4280 bytes .../lexers/__pycache__/clean.cpython-312.pyc | Bin 0 -> 6089 bytes .../lexers/__pycache__/codeql.cpython-312.pyc | Bin 0 -> 2762 bytes .../lexers/__pycache__/comal.cpython-312.pyc | Bin 0 -> 3236 bytes .../__pycache__/compiled.cpython-312.pyc | Bin 0 -> 2009 bytes .../__pycache__/configs.cpython-312.pyc | Bin 0 -> 44527 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 4259 bytes .../lexers/__pycache__/cplint.cpython-312.pyc | Bin 0 -> 1771 bytes .../__pycache__/crystal.cpython-312.pyc | Bin 0 -> 15193 bytes .../lexers/__pycache__/csound.cpython-312.pyc | Bin 0 -> 14130 bytes .../lexers/__pycache__/css.cpython-312.pyc | Bin 0 -> 22116 bytes .../lexers/__pycache__/d.cpython-312.pyc | Bin 0 -> 8345 bytes .../lexers/__pycache__/dalvik.cpython-312.pyc | Bin 0 -> 4555 bytes .../lexers/__pycache__/data.cpython-312.pyc | Bin 0 -> 21179 bytes .../lexers/__pycache__/dax.cpython-312.pyc | Bin 0 -> 6256 bytes .../__pycache__/devicetree.cpython-312.pyc | Bin 0 -> 4056 bytes .../lexers/__pycache__/diff.cpython-312.pyc | Bin 0 -> 5691 bytes .../lexers/__pycache__/dns.cpython-312.pyc | Bin 0 -> 3790 bytes .../lexers/__pycache__/dotnet.cpython-312.pyc | Bin 0 -> 35238 bytes .../lexers/__pycache__/dsls.cpython-312.pyc | Bin 0 -> 33801 bytes .../lexers/__pycache__/dylan.cpython-312.pyc | Bin 0 -> 9745 bytes .../lexers/__pycache__/ecl.cpython-312.pyc | Bin 0 -> 5599 bytes .../lexers/__pycache__/eiffel.cpython-312.pyc | Bin 0 -> 3006 bytes .../lexers/__pycache__/elm.cpython-312.pyc | Bin 0 -> 3250 bytes .../lexers/__pycache__/elpi.cpython-312.pyc | Bin 0 -> 7248 bytes .../lexers/__pycache__/email.cpython-312.pyc | Bin 0 -> 5996 bytes .../lexers/__pycache__/erlang.cpython-312.pyc | Bin 0 -> 20561 bytes .../__pycache__/esoteric.cpython-312.pyc | Bin 0 -> 9778 bytes .../lexers/__pycache__/ezhil.cpython-312.pyc | Bin 0 -> 3872 bytes .../lexers/__pycache__/factor.cpython-312.pyc | Bin 0 -> 16939 bytes .../lexers/__pycache__/fantom.cpython-312.pyc | Bin 0 -> 8008 bytes .../lexers/__pycache__/felix.cpython-312.pyc | Bin 0 -> 8263 bytes .../lexers/__pycache__/fift.cpython-312.pyc | Bin 0 -> 1975 bytes .../__pycache__/floscript.cpython-312.pyc | Bin 0 -> 2993 bytes .../lexers/__pycache__/forth.cpython-312.pyc | Bin 0 -> 5369 bytes .../__pycache__/fortran.cpython-312.pyc | Bin 0 -> 8730 bytes .../lexers/__pycache__/foxpro.cpython-312.pyc | Bin 0 -> 20823 bytes .../__pycache__/freefem.cpython-312.pyc | Bin 0 -> 12798 bytes .../lexers/__pycache__/func.cpython-312.pyc | Bin 0 -> 3349 bytes .../__pycache__/functional.cpython-312.pyc | Bin 0 -> 1059 bytes .../__pycache__/futhark.cpython-312.pyc | Bin 0 -> 4091 bytes .../__pycache__/gcodelexer.cpython-312.pyc | Bin 0 -> 1331 bytes .../__pycache__/gdscript.cpython-312.pyc | Bin 0 -> 7225 bytes .../lexers/__pycache__/gleam.cpython-312.pyc | Bin 0 -> 2723 bytes .../lexers/__pycache__/go.cpython-312.pyc | Bin 0 -> 3398 bytes .../grammar_notation.cpython-312.pyc | Bin 0 -> 7728 bytes .../lexers/__pycache__/graph.cpython-312.pyc | Bin 0 -> 3825 bytes .../__pycache__/graphics.cpython-312.pyc | Bin 0 -> 29714 bytes .../__pycache__/graphql.cpython-312.pyc | Bin 0 -> 4458 bytes .../__pycache__/graphviz.cpython-312.pyc | Bin 0 -> 2232 bytes .../lexers/__pycache__/gsql.cpython-312.pyc | Bin 0 -> 3792 bytes .../lexers/__pycache__/hare.cpython-312.pyc | Bin 0 -> 2965 bytes .../__pycache__/haskell.cpython-312.pyc | Bin 0 -> 30511 bytes .../lexers/__pycache__/haxe.cpython-312.pyc | Bin 0 -> 22295 bytes .../lexers/__pycache__/hdl.cpython-312.pyc | Bin 0 -> 17490 bytes .../__pycache__/hexdump.cpython-312.pyc | Bin 0 -> 3666 bytes .../lexers/__pycache__/html.cpython-312.pyc | Bin 0 -> 20744 bytes .../lexers/__pycache__/idl.cpython-312.pyc | Bin 0 -> 12484 bytes .../lexers/__pycache__/igor.cpython-312.pyc | Bin 0 -> 25709 bytes .../__pycache__/inferno.cpython-312.pyc | Bin 0 -> 3262 bytes .../__pycache__/installers.cpython-312.pyc | Bin 0 -> 13791 bytes .../__pycache__/int_fiction.cpython-312.pyc | Bin 0 -> 48114 bytes .../lexers/__pycache__/iolang.cpython-312.pyc | Bin 0 -> 2226 bytes .../lexers/__pycache__/j.cpython-312.pyc | Bin 0 -> 4318 bytes .../__pycache__/javascript.cpython-312.pyc | Bin 0 -> 57010 bytes .../__pycache__/jmespath.cpython-312.pyc | Bin 0 -> 2416 bytes .../lexers/__pycache__/jslt.cpython-312.pyc | Bin 0 -> 3774 bytes .../lexers/__pycache__/json5.cpython-312.pyc | Bin 0 -> 2896 bytes .../__pycache__/jsonnet.cpython-312.pyc | Bin 0 -> 4872 bytes .../lexers/__pycache__/jsx.cpython-312.pyc | Bin 0 -> 2928 bytes .../lexers/__pycache__/julia.cpython-312.pyc | Bin 0 -> 10950 bytes .../lexers/__pycache__/jvm.cpython-312.pyc | Bin 0 -> 63887 bytes .../lexers/__pycache__/kuin.cpython-312.pyc | Bin 0 -> 9896 bytes .../lexers/__pycache__/kusto.cpython-312.pyc | Bin 0 -> 2858 bytes .../lexers/__pycache__/ldap.cpython-312.pyc | Bin 0 -> 6442 bytes .../lexers/__pycache__/lean.cpython-312.pyc | Bin 0 -> 8007 bytes .../__pycache__/lilypond.cpython-312.pyc | Bin 0 -> 8388 bytes .../lexers/__pycache__/lisp.cpython-312.pyc | Bin 0 -> 121656 bytes .../__pycache__/macaulay2.cpython-312.pyc | Bin 0 -> 23171 bytes .../lexers/__pycache__/make.cpython-312.pyc | Bin 0 -> 6685 bytes .../lexers/__pycache__/maple.cpython-312.pyc | Bin 0 -> 4994 bytes .../lexers/__pycache__/markup.cpython-312.pyc | Bin 0 -> 60432 bytes .../lexers/__pycache__/math.cpython-312.pyc | Bin 0 -> 1055 bytes .../lexers/__pycache__/matlab.cpython-312.pyc | Bin 0 -> 55754 bytes .../lexers/__pycache__/maxima.cpython-312.pyc | Bin 0 -> 3203 bytes .../lexers/__pycache__/meson.cpython-312.pyc | Bin 0 -> 3536 bytes .../lexers/__pycache__/mime.cpython-312.pyc | Bin 0 -> 10149 bytes .../__pycache__/minecraft.cpython-312.pyc | Bin 0 -> 10711 bytes .../lexers/__pycache__/mips.cpython-312.pyc | Bin 0 -> 3450 bytes .../lexers/__pycache__/ml.cpython-312.pyc | Bin 0 -> 26181 bytes .../__pycache__/modeling.cpython-312.pyc | Bin 0 -> 12085 bytes .../__pycache__/modula2.cpython-312.pyc | Bin 0 -> 26515 bytes .../lexers/__pycache__/mojo.cpython-312.pyc | Bin 0 -> 14376 bytes .../lexers/__pycache__/monte.cpython-312.pyc | Bin 0 -> 5128 bytes .../lexers/__pycache__/mosel.cpython-312.pyc | Bin 0 -> 6977 bytes .../lexers/__pycache__/ncl.cpython-312.pyc | Bin 0 -> 45929 bytes .../lexers/__pycache__/nimrod.cpython-312.pyc | Bin 0 -> 6475 bytes .../lexers/__pycache__/nit.cpython-312.pyc | Bin 0 -> 2771 bytes .../lexers/__pycache__/nix.cpython-312.pyc | Bin 0 -> 5480 bytes .../__pycache__/numbair.cpython-312.pyc | Bin 0 -> 2146 bytes .../lexers/__pycache__/oberon.cpython-312.pyc | Bin 0 -> 3760 bytes .../__pycache__/objective.cpython-312.pyc | Bin 0 -> 19484 bytes .../lexers/__pycache__/ooc.cpython-312.pyc | Bin 0 -> 3131 bytes .../__pycache__/openscad.cpython-312.pyc | Bin 0 -> 3743 bytes .../lexers/__pycache__/other.cpython-312.pyc | Bin 0 -> 2465 bytes .../__pycache__/parasail.cpython-312.pyc | Bin 0 -> 2900 bytes .../__pycache__/parsers.cpython-312.pyc | Bin 0 -> 24415 bytes .../lexers/__pycache__/pascal.cpython-312.pyc | Bin 0 -> 23955 bytes .../lexers/__pycache__/pawn.cpython-312.pyc | Bin 0 -> 7878 bytes .../lexers/__pycache__/pddl.cpython-312.pyc | Bin 0 -> 2826 bytes .../lexers/__pycache__/perl.cpython-312.pyc | Bin 0 -> 39031 bytes .../lexers/__pycache__/phix.cpython-312.pyc | Bin 0 -> 18437 bytes .../lexers/__pycache__/php.cpython-312.pyc | Bin 0 -> 14336 bytes .../__pycache__/pointless.cpython-312.pyc | Bin 0 -> 2310 bytes .../lexers/__pycache__/pony.cpython-312.pyc | Bin 0 -> 3439 bytes .../lexers/__pycache__/praat.cpython-312.pyc | Bin 0 -> 10301 bytes .../__pycache__/procfile.cpython-312.pyc | Bin 0 -> 1644 bytes .../lexers/__pycache__/prolog.cpython-312.pyc | Bin 0 -> 10546 bytes .../lexers/__pycache__/promql.cpython-312.pyc | Bin 0 -> 3349 bytes .../lexers/__pycache__/prql.cpython-312.pyc | Bin 0 -> 8397 bytes .../lexers/__pycache__/ptx.cpython-312.pyc | Bin 0 -> 3785 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 42928 bytes .../lexers/__pycache__/q.cpython-312.pyc | Bin 0 -> 5859 bytes .../lexers/__pycache__/qlik.cpython-312.pyc | Bin 0 -> 3525 bytes .../lexers/__pycache__/qvt.cpython-312.pyc | Bin 0 -> 5393 bytes .../lexers/__pycache__/r.cpython-312.pyc | Bin 0 -> 6103 bytes .../lexers/__pycache__/rdf.cpython-312.pyc | Bin 0 -> 12273 bytes .../lexers/__pycache__/rebol.cpython-312.pyc | Bin 0 -> 19264 bytes .../lexers/__pycache__/rego.cpython-312.pyc | Bin 0 -> 1889 bytes .../__pycache__/resource.cpython-312.pyc | Bin 0 -> 3601 bytes .../lexers/__pycache__/ride.cpython-312.pyc | Bin 0 -> 4503 bytes .../lexers/__pycache__/rita.cpython-312.pyc | Bin 0 -> 1484 bytes .../lexers/__pycache__/rnc.cpython-312.pyc | Bin 0 -> 2026 bytes .../__pycache__/roboconf.cpython-312.pyc | Bin 0 -> 2377 bytes .../robotframework.cpython-312.pyc | Bin 0 -> 29620 bytes .../lexers/__pycache__/ruby.cpython-312.pyc | Bin 0 -> 22604 bytes .../lexers/__pycache__/rust.cpython-312.pyc | Bin 0 -> 7319 bytes .../lexers/__pycache__/sas.cpython-312.pyc | Bin 0 -> 7054 bytes .../lexers/__pycache__/savi.cpython-312.pyc | Bin 0 -> 3995 bytes .../lexers/__pycache__/scdoc.cpython-312.pyc | Bin 0 -> 2833 bytes .../__pycache__/scripting.cpython-312.pyc | Bin 0 -> 71848 bytes .../lexers/__pycache__/sgf.cpython-312.pyc | Bin 0 -> 2094 bytes .../lexers/__pycache__/shell.cpython-312.pyc | Bin 0 -> 37115 bytes .../lexers/__pycache__/sieve.cpython-312.pyc | Bin 0 -> 2764 bytes .../lexers/__pycache__/slash.cpython-312.pyc | Bin 0 -> 8407 bytes .../__pycache__/smalltalk.cpython-312.pyc | Bin 0 -> 6716 bytes .../lexers/__pycache__/smithy.cpython-312.pyc | Bin 0 -> 3141 bytes .../lexers/__pycache__/smv.cpython-312.pyc | Bin 0 -> 2823 bytes .../lexers/__pycache__/snobol.cpython-312.pyc | Bin 0 -> 2519 bytes .../__pycache__/solidity.cpython-312.pyc | Bin 0 -> 3422 bytes .../lexers/__pycache__/soong.cpython-312.pyc | Bin 0 -> 2287 bytes .../lexers/__pycache__/sophia.cpython-312.pyc | Bin 0 -> 3867 bytes .../__pycache__/special.cpython-312.pyc | Bin 0 -> 5444 bytes .../lexers/__pycache__/spice.cpython-312.pyc | Bin 0 -> 3192 bytes .../lexers/__pycache__/sql.cpython-312.pyc | Bin 0 -> 40711 bytes .../__pycache__/srcinfo.cpython-312.pyc | Bin 0 -> 2022 bytes .../lexers/__pycache__/stata.cpython-312.pyc | Bin 0 -> 5174 bytes .../__pycache__/supercollider.cpython-312.pyc | Bin 0 -> 3924 bytes .../__pycache__/tablegen.cpython-312.pyc | Bin 0 -> 3366 bytes .../lexers/__pycache__/tact.cpython-312.pyc | Bin 0 -> 9051 bytes .../lexers/__pycache__/tal.cpython-312.pyc | Bin 0 -> 2988 bytes .../lexers/__pycache__/tcl.cpython-312.pyc | Bin 0 -> 5162 bytes .../lexers/__pycache__/teal.cpython-312.pyc | Bin 0 -> 3571 bytes .../__pycache__/templates.cpython-312.pyc | Bin 0 -> 83668 bytes .../__pycache__/teraterm.cpython-312.pyc | Bin 0 -> 5579 bytes .../__pycache__/testing.cpython-312.pyc | Bin 0 -> 10087 bytes .../lexers/__pycache__/text.cpython-312.pyc | Bin 0 -> 1569 bytes .../__pycache__/textedit.cpython-312.pyc | Bin 0 -> 8531 bytes .../__pycache__/textfmts.cpython-312.pyc | Bin 0 -> 15614 bytes .../__pycache__/theorem.cpython-312.pyc | Bin 0 -> 14922 bytes .../__pycache__/thingsdb.cpython-312.pyc | Bin 0 -> 5633 bytes .../lexers/__pycache__/tlb.cpython-312.pyc | Bin 0 -> 1886 bytes .../lexers/__pycache__/tls.cpython-312.pyc | Bin 0 -> 1944 bytes .../lexers/__pycache__/tnt.cpython-312.pyc | Bin 0 -> 13607 bytes .../__pycache__/trafficscript.cpython-312.pyc | Bin 0 -> 1863 bytes .../__pycache__/typoscript.cpython-312.pyc | Bin 0 -> 7379 bytes .../lexers/__pycache__/typst.cpython-312.pyc | Bin 0 -> 6924 bytes .../lexers/__pycache__/ul4.cpython-312.pyc | Bin 0 -> 8160 bytes .../lexers/__pycache__/unicon.cpython-312.pyc | Bin 0 -> 12527 bytes .../lexers/__pycache__/urbi.cpython-312.pyc | Bin 0 -> 5929 bytes .../lexers/__pycache__/usd.cpython-312.pyc | Bin 0 -> 4041 bytes .../__pycache__/varnish.cpython-312.pyc | Bin 0 -> 6964 bytes .../__pycache__/verification.cpython-312.pyc | Bin 0 -> 4048 bytes .../__pycache__/verifpal.cpython-312.pyc | Bin 0 -> 2990 bytes .../lexers/__pycache__/vip.cpython-312.pyc | Bin 0 -> 5713 bytes .../lexers/__pycache__/vyper.cpython-312.pyc | Bin 0 -> 4943 bytes .../lexers/__pycache__/web.cpython-312.pyc | Bin 0 -> 1333 bytes .../__pycache__/webassembly.cpython-312.pyc | Bin 0 -> 5839 bytes .../lexers/__pycache__/webidl.cpython-312.pyc | Bin 0 -> 8123 bytes .../__pycache__/webmisc.cpython-312.pyc | Bin 0 -> 43560 bytes .../lexers/__pycache__/wgsl.cpython-312.pyc | Bin 0 -> 10869 bytes .../lexers/__pycache__/whiley.cpython-312.pyc | Bin 0 -> 3654 bytes .../lexers/__pycache__/wowtoc.cpython-312.pyc | Bin 0 -> 3259 bytes .../lexers/__pycache__/wren.cpython-312.pyc | Bin 0 -> 3124 bytes .../lexers/__pycache__/x10.cpython-312.pyc | Bin 0 -> 2415 bytes .../lexers/__pycache__/xorg.cpython-312.pyc | Bin 0 -> 1404 bytes .../lexers/__pycache__/yang.cpython-312.pyc | Bin 0 -> 4168 bytes .../lexers/__pycache__/yara.cpython-312.pyc | Bin 0 -> 2750 bytes .../lexers/__pycache__/zig.cpython-312.pyc | Bin 0 -> 3913 bytes .../pygments/lexers/_ada_builtins.py | 103 + .../pygments/lexers/_asy_builtins.py | 1644 ++++ .../pygments/lexers/_cl_builtins.py | 231 + .../pygments/lexers/_cocoa_builtins.py | 75 + .../pygments/lexers/_csound_builtins.py | 1780 ++++ .../pygments/lexers/_css_builtins.py | 558 ++ .../pygments/lexers/_googlesql_builtins.py | 918 ++ .../pygments/lexers/_julia_builtins.py | 411 + .../pygments/lexers/_lasso_builtins.py | 5326 ++++++++++ .../pygments/lexers/_lilypond_builtins.py | 4932 ++++++++++ .../pygments/lexers/_lua_builtins.py | 285 + .../pygments/lexers/_luau_builtins.py | 62 + .../site-packages/pygments/lexers/_mapping.py | 602 ++ .../pygments/lexers/_mql_builtins.py | 1171 +++ .../pygments/lexers/_mysql_builtins.py | 1335 +++ .../pygments/lexers/_openedge_builtins.py | 2600 +++++ .../pygments/lexers/_php_builtins.py | 3325 +++++++ .../pygments/lexers/_postgres_builtins.py | 739 ++ .../pygments/lexers/_qlik_builtins.py | 666 ++ .../pygments/lexers/_scheme_builtins.py | 1609 +++ .../pygments/lexers/_scilab_builtins.py | 3093 ++++++ .../pygments/lexers/_sourcemod_builtins.py | 1151 +++ .../pygments/lexers/_sql_builtins.py | 106 + .../pygments/lexers/_stan_builtins.py | 648 ++ .../pygments/lexers/_stata_builtins.py | 457 + .../pygments/lexers/_tsql_builtins.py | 1003 ++ .../pygments/lexers/_usd_builtins.py | 112 + .../pygments/lexers/_vbscript_builtins.py | 279 + .../pygments/lexers/_vim_builtins.py | 1938 ++++ .../pygments/lexers/actionscript.py | 243 + .../site-packages/pygments/lexers/ada.py | 144 + .../site-packages/pygments/lexers/agile.py | 25 + .../site-packages/pygments/lexers/algebra.py | 299 + .../site-packages/pygments/lexers/ambient.py | 75 + .../site-packages/pygments/lexers/amdgpu.py | 54 + .../site-packages/pygments/lexers/ampl.py | 87 + .../site-packages/pygments/lexers/apdlexer.py | 593 ++ .../site-packages/pygments/lexers/apl.py | 103 + .../pygments/lexers/archetype.py | 315 + .../site-packages/pygments/lexers/arrow.py | 116 + .../site-packages/pygments/lexers/arturo.py | 249 + .../site-packages/pygments/lexers/asc.py | 55 + .../site-packages/pygments/lexers/asm.py | 1051 ++ .../site-packages/pygments/lexers/asn1.py | 178 + .../pygments/lexers/automation.py | 379 + .../site-packages/pygments/lexers/bare.py | 101 + .../site-packages/pygments/lexers/basic.py | 656 ++ .../site-packages/pygments/lexers/bdd.py | 57 + .../site-packages/pygments/lexers/berry.py | 99 + .../site-packages/pygments/lexers/bibtex.py | 159 + .../pygments/lexers/blueprint.py | 173 + .../site-packages/pygments/lexers/boa.py | 97 + .../site-packages/pygments/lexers/bqn.py | 112 + .../site-packages/pygments/lexers/business.py | 625 ++ .../site-packages/pygments/lexers/c_cpp.py | 414 + .../site-packages/pygments/lexers/c_like.py | 738 ++ .../pygments/lexers/capnproto.py | 74 + .../site-packages/pygments/lexers/carbon.py | 95 + .../site-packages/pygments/lexers/cddl.py | 172 + .../site-packages/pygments/lexers/chapel.py | 139 + .../site-packages/pygments/lexers/clean.py | 180 + .../site-packages/pygments/lexers/codeql.py | 80 + .../site-packages/pygments/lexers/comal.py | 81 + .../site-packages/pygments/lexers/compiled.py | 35 + .../site-packages/pygments/lexers/configs.py | 1433 +++ .../site-packages/pygments/lexers/console.py | 114 + .../site-packages/pygments/lexers/cplint.py | 43 + .../site-packages/pygments/lexers/crystal.py | 364 + .../site-packages/pygments/lexers/csound.py | 466 + .../site-packages/pygments/lexers/css.py | 602 ++ .../site-packages/pygments/lexers/d.py | 259 + .../site-packages/pygments/lexers/dalvik.py | 126 + .../site-packages/pygments/lexers/data.py | 763 ++ .../site-packages/pygments/lexers/dax.py | 135 + .../pygments/lexers/devicetree.py | 108 + .../site-packages/pygments/lexers/diff.py | 169 + .../site-packages/pygments/lexers/dns.py | 109 + .../site-packages/pygments/lexers/dotnet.py | 873 ++ .../site-packages/pygments/lexers/dsls.py | 970 ++ .../site-packages/pygments/lexers/dylan.py | 279 + .../site-packages/pygments/lexers/ecl.py | 144 + .../site-packages/pygments/lexers/eiffel.py | 68 + .../site-packages/pygments/lexers/elm.py | 123 + .../site-packages/pygments/lexers/elpi.py | 175 + .../site-packages/pygments/lexers/email.py | 132 + .../site-packages/pygments/lexers/erlang.py | 526 + .../site-packages/pygments/lexers/esoteric.py | 300 + .../site-packages/pygments/lexers/ezhil.py | 76 + .../site-packages/pygments/lexers/factor.py | 363 + .../site-packages/pygments/lexers/fantom.py | 251 + .../site-packages/pygments/lexers/felix.py | 275 + .../site-packages/pygments/lexers/fift.py | 68 + .../pygments/lexers/floscript.py | 81 + .../site-packages/pygments/lexers/forth.py | 178 + .../site-packages/pygments/lexers/fortran.py | 212 + .../site-packages/pygments/lexers/foxpro.py | 427 + .../site-packages/pygments/lexers/freefem.py | 893 ++ .../site-packages/pygments/lexers/func.py | 110 + .../pygments/lexers/functional.py | 21 + .../site-packages/pygments/lexers/futhark.py | 105 + .../pygments/lexers/gcodelexer.py | 35 + .../site-packages/pygments/lexers/gdscript.py | 189 + .../site-packages/pygments/lexers/gleam.py | 74 + .../site-packages/pygments/lexers/go.py | 97 + .../pygments/lexers/grammar_notation.py | 262 + .../site-packages/pygments/lexers/graph.py | 108 + .../site-packages/pygments/lexers/graphics.py | 794 ++ .../site-packages/pygments/lexers/graphql.py | 176 + .../site-packages/pygments/lexers/graphviz.py | 58 + .../site-packages/pygments/lexers/gsql.py | 103 + .../site-packages/pygments/lexers/hare.py | 73 + .../site-packages/pygments/lexers/haskell.py | 866 ++ .../site-packages/pygments/lexers/haxe.py | 935 ++ .../site-packages/pygments/lexers/hdl.py | 466 + .../site-packages/pygments/lexers/hexdump.py | 102 + .../site-packages/pygments/lexers/html.py | 670 ++ .../site-packages/pygments/lexers/idl.py | 284 + .../site-packages/pygments/lexers/igor.py | 435 + .../site-packages/pygments/lexers/inferno.py | 95 + .../pygments/lexers/installers.py | 352 + .../pygments/lexers/int_fiction.py | 1370 +++ .../site-packages/pygments/lexers/iolang.py | 61 + .../site-packages/pygments/lexers/j.py | 151 + .../pygments/lexers/javascript.py | 1591 +++ .../site-packages/pygments/lexers/jmespath.py | 69 + .../site-packages/pygments/lexers/jslt.py | 94 + .../site-packages/pygments/lexers/json5.py | 83 + .../site-packages/pygments/lexers/jsonnet.py | 169 + .../site-packages/pygments/lexers/jsx.py | 100 + .../site-packages/pygments/lexers/julia.py | 294 + .../site-packages/pygments/lexers/jvm.py | 1802 ++++ .../site-packages/pygments/lexers/kuin.py | 332 + .../site-packages/pygments/lexers/kusto.py | 93 + .../site-packages/pygments/lexers/ldap.py | 155 + .../site-packages/pygments/lexers/lean.py | 241 + .../site-packages/pygments/lexers/lilypond.py | 225 + .../site-packages/pygments/lexers/lisp.py | 3146 ++++++ .../pygments/lexers/macaulay2.py | 1814 ++++ .../site-packages/pygments/lexers/make.py | 212 + .../site-packages/pygments/lexers/maple.py | 291 + .../site-packages/pygments/lexers/markup.py | 1654 ++++ .../site-packages/pygments/lexers/math.py | 21 + .../site-packages/pygments/lexers/matlab.py | 3307 +++++++ .../site-packages/pygments/lexers/maxima.py | 84 + .../site-packages/pygments/lexers/meson.py | 139 + .../site-packages/pygments/lexers/mime.py | 210 + .../pygments/lexers/minecraft.py | 391 + .../site-packages/pygments/lexers/mips.py | 130 + .../site-packages/pygments/lexers/ml.py | 958 ++ .../site-packages/pygments/lexers/modeling.py | 366 + .../site-packages/pygments/lexers/modula2.py | 1579 +++ .../site-packages/pygments/lexers/mojo.py | 707 ++ .../site-packages/pygments/lexers/monte.py | 203 + .../site-packages/pygments/lexers/mosel.py | 447 + .../site-packages/pygments/lexers/ncl.py | 894 ++ .../site-packages/pygments/lexers/nimrod.py | 199 + .../site-packages/pygments/lexers/nit.py | 63 + .../site-packages/pygments/lexers/nix.py | 144 + .../site-packages/pygments/lexers/numbair.py | 63 + .../site-packages/pygments/lexers/oberon.py | 120 + .../pygments/lexers/objective.py | 513 + .../site-packages/pygments/lexers/ooc.py | 84 + .../site-packages/pygments/lexers/openscad.py | 96 + .../site-packages/pygments/lexers/other.py | 41 + .../site-packages/pygments/lexers/parasail.py | 78 + .../site-packages/pygments/lexers/parsers.py | 798 ++ .../site-packages/pygments/lexers/pascal.py | 644 ++ .../site-packages/pygments/lexers/pawn.py | 202 + .../site-packages/pygments/lexers/pddl.py | 82 + .../site-packages/pygments/lexers/perl.py | 733 ++ .../site-packages/pygments/lexers/phix.py | 363 + .../site-packages/pygments/lexers/php.py | 334 + .../pygments/lexers/pointless.py | 70 + .../site-packages/pygments/lexers/pony.py | 93 + .../site-packages/pygments/lexers/praat.py | 303 + .../site-packages/pygments/lexers/procfile.py | 41 + .../site-packages/pygments/lexers/prolog.py | 318 + .../site-packages/pygments/lexers/promql.py | 176 + .../site-packages/pygments/lexers/prql.py | 251 + .../site-packages/pygments/lexers/ptx.py | 119 + .../site-packages/pygments/lexers/python.py | 1201 +++ .../site-packages/pygments/lexers/q.py | 187 + .../site-packages/pygments/lexers/qlik.py | 117 + .../site-packages/pygments/lexers/qvt.py | 153 + .../site-packages/pygments/lexers/r.py | 196 + .../site-packages/pygments/lexers/rdf.py | 468 + .../site-packages/pygments/lexers/rebol.py | 419 + .../site-packages/pygments/lexers/rego.py | 57 + .../site-packages/pygments/lexers/resource.py | 83 + .../site-packages/pygments/lexers/ride.py | 138 + .../site-packages/pygments/lexers/rita.py | 42 + .../site-packages/pygments/lexers/rnc.py | 66 + .../site-packages/pygments/lexers/roboconf.py | 81 + .../pygments/lexers/robotframework.py | 551 ++ .../site-packages/pygments/lexers/ruby.py | 518 + .../site-packages/pygments/lexers/rust.py | 222 + .../site-packages/pygments/lexers/sas.py | 227 + .../site-packages/pygments/lexers/savi.py | 171 + .../site-packages/pygments/lexers/scdoc.py | 85 + .../pygments/lexers/scripting.py | 1616 +++ .../site-packages/pygments/lexers/sgf.py | 59 + .../site-packages/pygments/lexers/shell.py | 902 ++ .../site-packages/pygments/lexers/sieve.py | 78 + .../site-packages/pygments/lexers/slash.py | 183 + .../pygments/lexers/smalltalk.py | 194 + .../site-packages/pygments/lexers/smithy.py | 77 + .../site-packages/pygments/lexers/smv.py | 78 + .../site-packages/pygments/lexers/snobol.py | 82 + .../site-packages/pygments/lexers/solidity.py | 87 + .../site-packages/pygments/lexers/soong.py | 78 + .../site-packages/pygments/lexers/sophia.py | 102 + .../site-packages/pygments/lexers/special.py | 122 + .../site-packages/pygments/lexers/spice.py | 70 + .../site-packages/pygments/lexers/sql.py | 1109 +++ .../site-packages/pygments/lexers/srcinfo.py | 62 + .../site-packages/pygments/lexers/stata.py | 170 + .../pygments/lexers/supercollider.py | 94 + .../site-packages/pygments/lexers/tablegen.py | 177 + .../site-packages/pygments/lexers/tact.py | 303 + .../site-packages/pygments/lexers/tal.py | 77 + .../site-packages/pygments/lexers/tcl.py | 148 + .../site-packages/pygments/lexers/teal.py | 88 + .../pygments/lexers/templates.py | 2355 +++++ .../site-packages/pygments/lexers/teraterm.py | 325 + .../site-packages/pygments/lexers/testing.py | 209 + .../site-packages/pygments/lexers/text.py | 27 + .../site-packages/pygments/lexers/textedit.py | 205 + .../site-packages/pygments/lexers/textfmts.py | 436 + .../site-packages/pygments/lexers/theorem.py | 410 + .../site-packages/pygments/lexers/thingsdb.py | 140 + .../site-packages/pygments/lexers/tlb.py | 59 + .../site-packages/pygments/lexers/tls.py | 54 + .../site-packages/pygments/lexers/tnt.py | 270 + .../pygments/lexers/trafficscript.py | 51 + .../pygments/lexers/typoscript.py | 216 + .../site-packages/pygments/lexers/typst.py | 160 + .../site-packages/pygments/lexers/ul4.py | 309 + .../site-packages/pygments/lexers/unicon.py | 413 + .../site-packages/pygments/lexers/urbi.py | 145 + .../site-packages/pygments/lexers/usd.py | 85 + .../site-packages/pygments/lexers/varnish.py | 189 + .../pygments/lexers/verification.py | 113 + .../site-packages/pygments/lexers/verifpal.py | 65 + .../site-packages/pygments/lexers/vip.py | 150 + .../site-packages/pygments/lexers/vyper.py | 140 + .../site-packages/pygments/lexers/web.py | 24 + .../pygments/lexers/webassembly.py | 119 + .../site-packages/pygments/lexers/webidl.py | 298 + .../site-packages/pygments/lexers/webmisc.py | 1006 ++ .../site-packages/pygments/lexers/wgsl.py | 406 + .../site-packages/pygments/lexers/whiley.py | 115 + .../site-packages/pygments/lexers/wowtoc.py | 120 + .../site-packages/pygments/lexers/wren.py | 98 + .../site-packages/pygments/lexers/x10.py | 66 + .../site-packages/pygments/lexers/xorg.py | 38 + .../site-packages/pygments/lexers/yang.py | 103 + .../site-packages/pygments/lexers/yara.py | 69 + .../site-packages/pygments/lexers/zig.py | 125 + .../site-packages/pygments/modeline.py | 43 + .../site-packages/pygments/plugin.py | 72 + .../site-packages/pygments/regexopt.py | 91 + .../site-packages/pygments/scanner.py | 104 + .../site-packages/pygments/sphinxext.py | 247 + .../site-packages/pygments/style.py | 203 + .../site-packages/pygments/styles/__init__.py | 61 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 2637 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3650 bytes .../styles/__pycache__/abap.cpython-312.pyc | Bin 0 -> 1085 bytes .../styles/__pycache__/algol.cpython-312.pyc | Bin 0 -> 2605 bytes .../__pycache__/algol_nu.cpython-312.pyc | Bin 0 -> 2620 bytes .../__pycache__/arduino.cpython-312.pyc | Bin 0 -> 4279 bytes .../styles/__pycache__/autumn.cpython-312.pyc | Bin 0 -> 2861 bytes .../__pycache__/borland.cpython-312.pyc | Bin 0 -> 2230 bytes .../styles/__pycache__/bw.cpython-312.pyc | Bin 0 -> 1907 bytes .../styles/__pycache__/coffee.cpython-312.pyc | Bin 0 -> 3451 bytes .../__pycache__/colorful.cpython-312.pyc | Bin 0 -> 3719 bytes .../__pycache__/default.cpython-312.pyc | Bin 0 -> 3221 bytes .../__pycache__/dracula.cpython-312.pyc | Bin 0 -> 3034 bytes .../styles/__pycache__/emacs.cpython-312.pyc | Bin 0 -> 3261 bytes .../__pycache__/friendly.cpython-312.pyc | Bin 0 -> 3357 bytes .../friendly_grayscale.cpython-312.pyc | Bin 0 -> 3567 bytes .../styles/__pycache__/fruity.cpython-312.pyc | Bin 0 -> 1936 bytes .../__pycache__/gh_dark.cpython-312.pyc | Bin 0 -> 4025 bytes .../__pycache__/gruvbox.cpython-312.pyc | Bin 0 -> 4373 bytes .../styles/__pycache__/igor.cpython-312.pyc | Bin 0 -> 1130 bytes .../styles/__pycache__/inkpot.cpython-312.pyc | Bin 0 -> 2992 bytes .../__pycache__/lightbulb.cpython-312.pyc | Bin 0 -> 4363 bytes .../__pycache__/lilypond.cpython-312.pyc | Bin 0 -> 3504 bytes .../__pycache__/lovelace.cpython-312.pyc | Bin 0 -> 4257 bytes .../styles/__pycache__/manni.cpython-312.pyc | Bin 0 -> 3492 bytes .../__pycache__/material.cpython-312.pyc | Bin 0 -> 4805 bytes .../__pycache__/monokai.cpython-312.pyc | Bin 0 -> 4786 bytes .../styles/__pycache__/murphy.cpython-312.pyc | Bin 0 -> 3677 bytes .../styles/__pycache__/native.cpython-312.pyc | Bin 0 -> 2954 bytes .../styles/__pycache__/nord.cpython-312.pyc | Bin 0 -> 5583 bytes .../__pycache__/onedark.cpython-312.pyc | Bin 0 -> 2260 bytes .../__pycache__/paraiso_dark.cpython-312.pyc | Bin 0 -> 5126 bytes .../__pycache__/paraiso_light.cpython-312.pyc | Bin 0 -> 5132 bytes .../styles/__pycache__/pastie.cpython-312.pyc | Bin 0 -> 3466 bytes .../__pycache__/perldoc.cpython-312.pyc | Bin 0 -> 3052 bytes .../__pycache__/rainbow_dash.cpython-312.pyc | Bin 0 -> 3698 bytes .../styles/__pycache__/rrt.cpython-312.pyc | Bin 0 -> 1460 bytes .../styles/__pycache__/sas.cpython-312.pyc | Bin 0 -> 1805 bytes .../__pycache__/solarized.cpython-312.pyc | Bin 0 -> 5757 bytes .../__pycache__/staroffice.cpython-312.pyc | Bin 0 -> 1108 bytes .../__pycache__/stata_dark.cpython-312.pyc | Bin 0 -> 1675 bytes .../__pycache__/stata_light.cpython-312.pyc | Bin 0 -> 1676 bytes .../styles/__pycache__/tango.cpython-312.pyc | Bin 0 -> 6129 bytes .../styles/__pycache__/trac.cpython-312.pyc | Bin 0 -> 2601 bytes .../styles/__pycache__/vim.cpython-312.pyc | Bin 0 -> 2484 bytes .../styles/__pycache__/vs.cpython-312.pyc | Bin 0 -> 1489 bytes .../styles/__pycache__/xcode.cpython-312.pyc | Bin 0 -> 1827 bytes .../__pycache__/zenburn.cpython-312.pyc | Bin 0 -> 3336 bytes .../site-packages/pygments/styles/_mapping.py | 54 + .../site-packages/pygments/styles/abap.py | 32 + .../site-packages/pygments/styles/algol.py | 65 + .../site-packages/pygments/styles/algol_nu.py | 65 + .../site-packages/pygments/styles/arduino.py | 100 + .../site-packages/pygments/styles/autumn.py | 67 + .../site-packages/pygments/styles/borland.py | 53 + .../site-packages/pygments/styles/bw.py | 52 + .../site-packages/pygments/styles/coffee.py | 80 + .../site-packages/pygments/styles/colorful.py | 83 + .../site-packages/pygments/styles/default.py | 76 + .../site-packages/pygments/styles/dracula.py | 90 + .../site-packages/pygments/styles/emacs.py | 75 + .../site-packages/pygments/styles/friendly.py | 76 + .../pygments/styles/friendly_grayscale.py | 80 + .../site-packages/pygments/styles/fruity.py | 47 + .../site-packages/pygments/styles/gh_dark.py | 113 + .../site-packages/pygments/styles/gruvbox.py | 118 + .../site-packages/pygments/styles/igor.py | 32 + .../site-packages/pygments/styles/inkpot.py | 72 + .../pygments/styles/lightbulb.py | 110 + .../site-packages/pygments/styles/lilypond.py | 62 + .../site-packages/pygments/styles/lovelace.py | 100 + .../site-packages/pygments/styles/manni.py | 79 + .../site-packages/pygments/styles/material.py | 124 + .../site-packages/pygments/styles/monokai.py | 112 + .../site-packages/pygments/styles/murphy.py | 82 + .../site-packages/pygments/styles/native.py | 70 + .../site-packages/pygments/styles/nord.py | 156 + .../site-packages/pygments/styles/onedark.py | 63 + .../pygments/styles/paraiso_dark.py | 124 + .../pygments/styles/paraiso_light.py | 124 + .../site-packages/pygments/styles/pastie.py | 78 + .../site-packages/pygments/styles/perldoc.py | 73 + .../pygments/styles/rainbow_dash.py | 95 + .../site-packages/pygments/styles/rrt.py | 40 + .../site-packages/pygments/styles/sas.py | 46 + .../pygments/styles/solarized.py | 144 + .../pygments/styles/staroffice.py | 31 + .../pygments/styles/stata_dark.py | 42 + .../pygments/styles/stata_light.py | 42 + .../site-packages/pygments/styles/tango.py | 143 + .../site-packages/pygments/styles/trac.py | 66 + .../site-packages/pygments/styles/vim.py | 67 + .../site-packages/pygments/styles/vs.py | 41 + .../site-packages/pygments/styles/xcode.py | 53 + .../site-packages/pygments/styles/zenburn.py | 83 + .../site-packages/pygments/token.py | 214 + .../site-packages/pygments/unistring.py | 153 + .../python3.12/site-packages/pygments/util.py | 324 + .../pylint-4.0.2.dist-info/INSTALLER | 1 + .../pylint-4.0.2.dist-info/METADATA | 277 + .../pylint-4.0.2.dist-info/RECORD | 371 + .../pylint-4.0.2.dist-info/REQUESTED | 0 .../pylint-4.0.2.dist-info/WHEEL | 5 + .../pylint-4.0.2.dist-info/entry_points.txt | 5 + .../licenses/CONTRIBUTORS.txt | 699 ++ .../pylint-4.0.2.dist-info/licenses/LICENSE | 340 + .../pylint-4.0.2.dist-info/top_level.txt | 1 + .../site-packages/pylint/__init__.py | 119 + .../site-packages/pylint/__main__.py | 10 + .../site-packages/pylint/__pkginfo__.py | 43 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5120 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 339 bytes .../__pycache__/__pkginfo__.cpython-312.pyc | Bin 0 -> 1644 bytes .../__pycache__/constants.cpython-312.pyc | Bin 0 -> 8800 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2987 bytes .../pylint/__pycache__/graph.cpython-312.pyc | Bin 0 -> 9043 bytes .../__pycache__/interfaces.cpython-312.pyc | Bin 0 -> 1362 bytes .../pylint/__pycache__/typing.cpython-312.pyc | Bin 0 -> 5084 bytes .../site-packages/pylint/checkers/__init__.py | 140 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3907 bytes .../__pycache__/async_checker.cpython-312.pyc | Bin 0 -> 4476 bytes .../bad_chained_comparison.cpython-312.pyc | Bin 0 -> 3221 bytes .../__pycache__/base_checker.cpython-312.pyc | Bin 0 -> 12235 bytes .../clear_lru_cache.cpython-312.pyc | Bin 0 -> 1137 bytes .../dataclass_checker.cpython-312.pyc | Bin 0 -> 5728 bytes .../__pycache__/deprecated.cpython-312.pyc | Bin 0 -> 14066 bytes .../design_analysis.cpython-312.pyc | Bin 0 -> 25513 bytes .../dunder_methods.cpython-312.pyc | Bin 0 -> 5164 bytes .../ellipsis_checker.cpython-312.pyc | Bin 0 -> 2620 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 29398 bytes .../__pycache__/format.cpython-312.pyc | Bin 0 -> 26147 bytes .../__pycache__/imports.cpython-312.pyc | Bin 0 -> 49454 bytes .../lambda_expressions.cpython-312.pyc | Bin 0 -> 3923 bytes .../__pycache__/logging.cpython-312.pyc | Bin 0 -> 19142 bytes .../match_statements_checker.cpython-312.pyc | Bin 0 -> 9882 bytes .../__pycache__/method_args.cpython-312.pyc | Bin 0 -> 6049 bytes .../checkers/__pycache__/misc.cpython-312.pyc | Bin 0 -> 9068 bytes ...modified_iterating_checker.cpython-312.pyc | Bin 0 -> 10680 bytes .../nested_min_max.cpython-312.pyc | Bin 0 -> 7023 bytes .../__pycache__/newstyle.cpython-312.pyc | Bin 0 -> 4271 bytes .../non_ascii_names.cpython-312.pyc | Bin 0 -> 8046 bytes .../__pycache__/raw_metrics.cpython-312.pyc | Bin 0 -> 5007 bytes .../__pycache__/spelling.cpython-312.pyc | Bin 0 -> 18350 bytes .../__pycache__/stdlib.cpython-312.pyc | Bin 0 -> 35656 bytes .../__pycache__/strings.cpython-312.pyc | Bin 0 -> 40958 bytes .../__pycache__/symilar.cpython-312.pyc | Bin 0 -> 41362 bytes .../threading_checker.cpython-312.pyc | Bin 0 -> 2562 bytes .../__pycache__/typecheck.cpython-312.pyc | Bin 0 -> 92046 bytes .../__pycache__/unicode.cpython-312.pyc | Bin 0 -> 17733 bytes .../unsupported_version.cpython-312.pyc | Bin 0 -> 8386 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 97931 bytes .../__pycache__/variables.cpython-312.pyc | Bin 0 -> 147805 bytes .../pylint/checkers/async_checker.py | 97 + .../pylint/checkers/bad_chained_comparison.py | 60 + .../pylint/checkers/base/__init__.py | 50 + .../base/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1891 bytes .../__pycache__/basic_checker.cpython-312.pyc | Bin 0 -> 42666 bytes .../basic_error_checker.cpython-312.pyc | Bin 0 -> 28441 bytes .../comparison_checker.cpython-312.pyc | Bin 0 -> 15512 bytes .../docstring_checker.cpython-312.pyc | Bin 0 -> 8323 bytes .../function_checker.cpython-312.pyc | Bin 0 -> 6654 bytes .../__pycache__/pass_checker.cpython-312.pyc | Bin 0 -> 1577 bytes .../pylint/checkers/base/basic_checker.py | 962 ++ .../checkers/base/basic_error_checker.py | 647 ++ .../checkers/base/comparison_checker.py | 352 + .../pylint/checkers/base/docstring_checker.py | 203 + .../pylint/checkers/base/function_checker.py | 149 + .../checkers/base/name_checker/__init__.py | 25 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 620 bytes .../__pycache__/checker.cpython-312.pyc | Bin 0 -> 34652 bytes .../__pycache__/naming_style.cpython-312.pyc | Bin 0 -> 6204 bytes .../checkers/base/name_checker/checker.py | 791 ++ .../base/name_checker/naming_style.py | 187 + .../pylint/checkers/base/pass_checker.py | 29 + .../pylint/checkers/base_checker.py | 248 + .../pylint/checkers/classes/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 827 bytes .../__pycache__/class_checker.cpython-312.pyc | Bin 0 -> 96966 bytes .../special_methods_checker.cpython-312.pyc | Bin 0 -> 16064 bytes .../pylint/checkers/classes/class_checker.py | 2408 +++++ .../classes/special_methods_checker.py | 403 + .../pylint/checkers/clear_lru_cache.py | 37 + .../pylint/checkers/dataclass_checker.py | 129 + .../pylint/checkers/deprecated.py | 294 + .../pylint/checkers/design_analysis.py | 705 ++ .../pylint/checkers/dunder_methods.py | 102 + .../pylint/checkers/ellipsis_checker.py | 58 + .../pylint/checkers/exceptions.py | 658 ++ .../site-packages/pylint/checkers/format.py | 733 ++ .../site-packages/pylint/checkers/imports.py | 1274 +++ .../pylint/checkers/lambda_expressions.py | 94 + .../site-packages/pylint/checkers/logging.py | 417 + .../checkers/match_statements_checker.py | 230 + .../pylint/checkers/method_args.py | 129 + .../site-packages/pylint/checkers/misc.py | 192 + .../checkers/modified_iterating_checker.py | 198 + .../pylint/checkers/nested_min_max.py | 176 + .../site-packages/pylint/checkers/newstyle.py | 113 + .../pylint/checkers/non_ascii_names.py | 174 + .../pylint/checkers/raw_metrics.py | 109 + .../pylint/checkers/refactoring/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1292 bytes ...mplicit_booleaness_checker.cpython-312.pyc | Bin 0 -> 17324 bytes .../__pycache__/not_checker.cpython-312.pyc | Bin 0 -> 3358 bytes .../recommendation_checker.cpython-312.pyc | Bin 0 -> 20364 bytes .../refactoring_checker.cpython-312.pyc | Bin 0 -> 109305 bytes .../implicit_booleaness_checker.py | 420 + .../checkers/refactoring/not_checker.py | 84 + .../refactoring/recommendation_checker.py | 452 + .../refactoring/refactoring_checker.py | 2454 +++++ .../site-packages/pylint/checkers/spelling.py | 473 + .../site-packages/pylint/checkers/stdlib.py | 1003 ++ .../site-packages/pylint/checkers/strings.py | 1101 +++ .../site-packages/pylint/checkers/symilar.py | 932 ++ .../pylint/checkers/threading_checker.py | 59 + .../pylint/checkers/typecheck.py | 2355 +++++ .../site-packages/pylint/checkers/unicode.py | 537 + .../pylint/checkers/unsupported_version.py | 196 + .../site-packages/pylint/checkers/utils.py | 2314 +++++ .../pylint/checkers/variables.py | 3535 +++++++ .../site-packages/pylint/config/__init__.py | 9 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 367 bytes .../__pycache__/argument.cpython-312.pyc | Bin 0 -> 15636 bytes .../arguments_manager.cpython-312.pyc | Bin 0 -> 17216 bytes .../arguments_provider.cpython-312.pyc | Bin 0 -> 3176 bytes .../callback_actions.cpython-312.pyc | Bin 0 -> 18035 bytes .../config_file_parser.cpython-312.pyc | Bin 0 -> 5975 bytes .../config_initialization.cpython-312.pyc | Bin 0 -> 7241 bytes .../deprecation_actions.cpython-312.pyc | Bin 0 -> 3778 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 1405 bytes .../find_default_config_files.cpython-312.pyc | Bin 0 -> 7022 bytes .../help_formatter.cpython-312.pyc | Bin 0 -> 3071 bytes .../config/__pycache__/utils.cpython-312.pyc | Bin 0 -> 9282 bytes .../config/_breaking_changes/__init__.py | 178 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6589 bytes .../pylint/config/_pylint_config/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 540 bytes .../generate_command.cpython-312.pyc | Bin 0 -> 2292 bytes .../__pycache__/help_message.cpython-312.pyc | Bin 0 -> 2606 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 1067 bytes .../__pycache__/setup.cpython-312.pyc | Bin 0 -> 2067 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 4657 bytes .../config/_pylint_config/generate_command.py | 49 + .../config/_pylint_config/help_message.py | 59 + .../pylint/config/_pylint_config/main.py | 25 + .../pylint/config/_pylint_config/setup.py | 49 + .../pylint/config/_pylint_config/utils.py | 110 + .../site-packages/pylint/config/argument.py | 503 + .../pylint/config/arguments_manager.py | 402 + .../pylint/config/arguments_provider.py | 65 + .../pylint/config/callback_actions.py | 468 + .../pylint/config/config_file_parser.py | 129 + .../pylint/config/config_initialization.py | 206 + .../pylint/config/deprecation_actions.py | 108 + .../site-packages/pylint/config/exceptions.py | 25 + .../config/find_default_config_files.py | 150 + .../pylint/config/help_formatter.py | 64 + .../site-packages/pylint/config/utils.py | 259 + .../site-packages/pylint/constants.py | 279 + .../site-packages/pylint/exceptions.py | 53 + .../pylint/extensions/__init__.py | 20 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 701 bytes .../_check_docs_utils.cpython-312.pyc | Bin 0 -> 38616 bytes .../__pycache__/bad_builtin.cpython-312.pyc | Bin 0 -> 2610 bytes .../broad_try_clause.cpython-312.pyc | Bin 0 -> 2954 bytes .../__pycache__/check_elif.cpython-312.pyc | Bin 0 -> 3328 bytes .../__pycache__/code_style.cpython-312.pyc | Bin 0 -> 16823 bytes .../comparison_placement.cpython-312.pyc | Bin 0 -> 3095 bytes .../confusing_elif.cpython-312.pyc | Bin 0 -> 2857 bytes ...oring_into_while_condition.cpython-312.pyc | Bin 0 -> 4321 bytes ...onsider_ternary_expression.cpython-312.pyc | Bin 0 -> 2309 bytes .../dict_init_mutate.cpython-312.pyc | Bin 0 -> 2402 bytes .../__pycache__/docparams.cpython-312.pyc | Bin 0 -> 25807 bytes .../__pycache__/docstyle.cpython-312.pyc | Bin 0 -> 3546 bytes .../__pycache__/dunder.cpython-312.pyc | Bin 0 -> 2989 bytes .../__pycache__/empty_comment.cpython-312.pyc | Bin 0 -> 2759 bytes .../eq_without_hash.cpython-312.pyc | Bin 0 -> 2324 bytes .../__pycache__/for_any_all.cpython-312.pyc | Bin 0 -> 6565 bytes .../__pycache__/magic_value.cpython-312.pyc | Bin 0 -> 5688 bytes .../__pycache__/mccabe.cpython-312.pyc | Bin 0 -> 11498 bytes .../__pycache__/no_self_use.cpython-312.pyc | Bin 0 -> 4933 bytes .../overlapping_exceptions.cpython-312.pyc | Bin 0 -> 3881 bytes .../private_import.cpython-312.pyc | Bin 0 -> 11509 bytes .../redefined_loop_name.cpython-312.pyc | Bin 0 -> 4181 bytes .../redefined_variable_type.cpython-312.pyc | Bin 0 -> 4650 bytes .../set_membership.cpython-312.pyc | Bin 0 -> 2725 bytes .../__pycache__/typing.cpython-312.pyc | Bin 0 -> 24787 bytes .../__pycache__/while_used.cpython-312.pyc | Bin 0 -> 1501 bytes .../pylint/extensions/_check_docs_utils.py | 941 ++ .../pylint/extensions/bad_builtin.py | 65 + .../pylint/extensions/broad_try_clause.py | 73 + .../pylint/extensions/check_elif.py | 64 + .../pylint/extensions/code_style.py | 361 + .../pylint/extensions/comparison_placement.py | 69 + .../pylint/extensions/confusing_elif.py | 55 + ...nsider_refactoring_into_while_condition.py | 93 + .../extensions/consider_ternary_expression.py | 52 + .../pylint/extensions/dict_init_mutate.py | 54 + .../pylint/extensions/docparams.py | 697 ++ .../pylint/extensions/docstyle.py | 89 + .../site-packages/pylint/extensions/dunder.py | 76 + .../pylint/extensions/empty_comment.py | 63 + .../pylint/extensions/eq_without_hash.py | 39 + .../pylint/extensions/for_any_all.py | 163 + .../pylint/extensions/magic_value.py | 119 + .../site-packages/pylint/extensions/mccabe.py | 226 + .../pylint/extensions/no_self_use.py | 111 + .../extensions/overlapping_exceptions.py | 88 + .../pylint/extensions/private_import.py | 266 + .../pylint/extensions/redefined_loop_name.py | 88 + .../extensions/redefined_variable_type.py | 108 + .../pylint/extensions/set_membership.py | 52 + .../site-packages/pylint/extensions/typing.py | 558 ++ .../pylint/extensions/while_used.py | 37 + .../python3.12/site-packages/pylint/graph.py | 211 + .../site-packages/pylint/interfaces.py | 38 + .../site-packages/pylint/lint/__init__.py | 48 + .../lint/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1339 bytes .../__pycache__/base_options.cpython-312.pyc | Bin 0 -> 13299 bytes .../lint/__pycache__/caching.cpython-312.pyc | Bin 0 -> 3418 bytes .../expand_modules.cpython-312.pyc | Bin 0 -> 7387 bytes .../message_state_handler.cpython-312.pyc | Bin 0 -> 19348 bytes .../lint/__pycache__/parallel.cpython-312.pyc | Bin 0 -> 6554 bytes .../lint/__pycache__/pylinter.cpython-312.pyc | Bin 0 -> 59438 bytes .../report_functions.cpython-312.pyc | Bin 0 -> 4106 bytes .../lint/__pycache__/run.cpython-312.pyc | Bin 0 -> 11194 bytes .../lint/__pycache__/utils.cpython-312.pyc | Bin 0 -> 4691 bytes .../site-packages/pylint/lint/base_options.py | 595 ++ .../site-packages/pylint/lint/caching.py | 71 + .../pylint/lint/expand_modules.py | 185 + .../pylint/lint/message_state_handler.py | 444 + .../site-packages/pylint/lint/parallel.py | 173 + .../site-packages/pylint/lint/pylinter.py | 1357 +++ .../pylint/lint/report_functions.py | 85 + .../site-packages/pylint/lint/run.py | 270 + .../site-packages/pylint/lint/utils.py | 135 + .../site-packages/pylint/message/__init__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 600 bytes .../_deleted_message_ids.cpython-312.pyc | Bin 0 -> 9317 bytes .../__pycache__/message.cpython-312.pyc | Bin 0 -> 3022 bytes .../message_definition.cpython-312.pyc | Bin 0 -> 6852 bytes .../message_definition_store.cpython-312.pyc | Bin 0 -> 6704 bytes .../message_id_store.cpython-312.pyc | Bin 0 -> 7619 bytes .../pylint/message/_deleted_message_ids.py | 179 + .../site-packages/pylint/message/message.py | 75 + .../pylint/message/message_definition.py | 131 + .../message/message_definition_store.py | 118 + .../pylint/message/message_id_store.py | 160 + .../python3.12/site-packages/pylint/py.typed | 0 .../pylint/pyreverse/__init__.py | 7 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 269 bytes .../__pycache__/diadefslib.cpython-312.pyc | Bin 0 -> 15773 bytes .../__pycache__/diagrams.cpython-312.pyc | Bin 0 -> 18070 bytes .../__pycache__/dot_printer.cpython-312.pyc | Bin 0 -> 8967 bytes .../__pycache__/inspector.cpython-312.pyc | Bin 0 -> 25739 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 9609 bytes .../mermaidjs_printer.cpython-312.pyc | Bin 0 -> 6509 bytes .../plantuml_printer.cpython-312.pyc | Bin 0 -> 5237 bytes .../__pycache__/printer.cpython-312.pyc | Bin 0 -> 6046 bytes .../printer_factory.cpython-312.pyc | Bin 0 -> 967 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 11901 bytes .../__pycache__/writer.cpython-312.pyc | Bin 0 -> 11955 bytes .../pylint/pyreverse/diadefslib.py | 295 + .../pylint/pyreverse/diagrams.py | 368 + .../pylint/pyreverse/dot_printer.py | 190 + .../pylint/pyreverse/inspector.py | 569 ++ .../site-packages/pylint/pyreverse/main.py | 367 + .../pylint/pyreverse/mermaidjs_printer.py | 131 + .../pylint/pyreverse/plantuml_printer.py | 100 + .../site-packages/pylint/pyreverse/printer.py | 133 + .../pylint/pyreverse/printer_factory.py | 22 + .../site-packages/pylint/pyreverse/utils.py | 269 + .../site-packages/pylint/pyreverse/writer.py | 214 + .../pylint/reporters/__init__.py | 34 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1207 bytes .../__pycache__/base_reporter.cpython-312.pyc | Bin 0 -> 4687 bytes .../collecting_reporter.cpython-312.pyc | Bin 0 -> 1276 bytes .../__pycache__/json_reporter.cpython-312.pyc | Bin 0 -> 7636 bytes .../multi_reporter.cpython-312.pyc | Bin 0 -> 5364 bytes .../progress_reporters.cpython-312.pyc | Bin 0 -> 2177 bytes .../reports_handler_mix_in.cpython-312.pyc | Bin 0 -> 4274 bytes .../__pycache__/text.cpython-312.pyc | Bin 0 -> 13784 bytes .../pylint/reporters/base_reporter.py | 89 + .../pylint/reporters/collecting_reporter.py | 28 + .../pylint/reporters/json_reporter.py | 201 + .../pylint/reporters/multi_reporter.py | 111 + .../pylint/reporters/progress_reporters.py | 31 + .../reporters/reports_handler_mix_in.py | 83 + .../site-packages/pylint/reporters/text.py | 298 + .../pylint/reporters/ureports/__init__.py | 7 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 305 bytes .../__pycache__/base_writer.cpython-312.pyc | Bin 0 -> 4610 bytes .../__pycache__/nodes.cpython-312.pyc | Bin 0 -> 8324 bytes .../__pycache__/text_writer.cpython-312.pyc | Bin 0 -> 6249 bytes .../pylint/reporters/ureports/base_writer.py | 107 + .../pylint/reporters/ureports/nodes.py | 194 + .../pylint/reporters/ureports/text_writer.py | 108 + .../pylint/testutils/__init__.py | 35 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1245 bytes .../__pycache__/_run.cpython-312.pyc | Bin 0 -> 2117 bytes .../checker_test_case.cpython-312.pyc | Bin 0 -> 5239 bytes .../configuration_test.cpython-312.pyc | Bin 0 -> 5949 bytes .../__pycache__/constants.cpython-312.pyc | Bin 0 -> 1047 bytes .../__pycache__/decorator.cpython-312.pyc | Bin 0 -> 1721 bytes .../__pycache__/get_test_info.cpython-312.pyc | Bin 0 -> 2461 bytes .../global_test_linter.cpython-312.pyc | Bin 0 -> 841 bytes .../lint_module_test.cpython-312.pyc | Bin 0 -> 19752 bytes .../__pycache__/output_line.cpython-312.pyc | Bin 0 -> 5245 bytes .../__pycache__/pyreverse.cpython-312.pyc | Bin 0 -> 4864 bytes .../reporter_for_tests.cpython-312.pyc | Bin 0 -> 4028 bytes .../__pycache__/tokenize_str.cpython-312.pyc | Bin 0 -> 663 bytes .../unittest_linter.cpython-312.pyc | Bin 0 -> 2851 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 4744 bytes .../pylint/testutils/_primer/__init__.py | 10 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 368 bytes .../package_to_lint.cpython-312.pyc | Bin 0 -> 6678 bytes .../__pycache__/primer.cpython-312.pyc | Bin 0 -> 5548 bytes .../primer_command.cpython-312.pyc | Bin 0 -> 1642 bytes .../primer_compare_command.cpython-312.pyc | Bin 0 -> 7746 bytes .../primer_prepare_command.cpython-312.pyc | Bin 0 -> 3231 bytes .../primer_run_command.cpython-312.pyc | Bin 0 -> 6259 bytes .../testutils/_primer/package_to_lint.py | 137 + .../pylint/testutils/_primer/primer.py | 129 + .../testutils/_primer/primer_command.py | 39 + .../_primer/primer_compare_command.py | 174 + .../_primer/primer_prepare_command.py | 48 + .../testutils/_primer/primer_run_command.py | 109 + .../site-packages/pylint/testutils/_run.py | 41 + .../pylint/testutils/checker_test_case.py | 85 + .../pylint/testutils/configuration_test.py | 148 + .../pylint/testutils/constants.py | 31 + .../pylint/testutils/decorator.py | 37 + .../pylint/testutils/functional/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 676 bytes .../find_functional_tests.cpython-312.pyc | Bin 0 -> 6301 bytes .../lint_module_output_update.cpython-312.pyc | Bin 0 -> 2242 bytes .../__pycache__/test_file.cpython-312.pyc | Bin 0 -> 7258 bytes .../functional/find_functional_tests.py | 144 + .../functional/lint_module_output_update.py | 43 + .../pylint/testutils/functional/test_file.py | 129 + .../pylint/testutils/get_test_info.py | 50 + .../pylint/testutils/global_test_linter.py | 20 + .../pylint/testutils/lint_module_test.py | 342 + .../pylint/testutils/output_line.py | 121 + .../pylint/testutils/pyreverse.py | 131 + .../pylint/testutils/reporter_for_tests.py | 79 + .../pylint/testutils/testing_pylintrc | 13 + .../pylint/testutils/tokenize_str.py | 13 + .../pylint/testutils/unittest_linter.py | 84 + .../site-packages/pylint/testutils/utils.py | 107 + .../python3.12/site-packages/pylint/typing.py | 138 + .../site-packages/pylint/utils/__init__.py | 49 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1094 bytes .../__pycache__/ast_walker.cpython-312.pyc | Bin 0 -> 4603 bytes .../utils/__pycache__/docs.cpython-312.pyc | Bin 0 -> 4060 bytes .../__pycache__/file_state.cpython-312.pyc | Bin 0 -> 8514 bytes .../__pycache__/linterstats.cpython-312.pyc | Bin 0 -> 17576 bytes .../__pycache__/pragma_parser.cpython-312.pyc | Bin 0 -> 5170 bytes .../utils/__pycache__/utils.cpython-312.pyc | Bin 0 -> 15545 bytes .../site-packages/pylint/utils/ast_walker.py | 102 + .../site-packages/pylint/utils/docs.py | 96 + .../site-packages/pylint/utils/file_state.py | 254 + .../site-packages/pylint/utils/linterstats.py | 408 + .../pylint/utils/pragma_parser.py | 135 + .../site-packages/pylint/utils/utils.py | 335 + .../pyyaml-6.0.3.dist-info/INSTALLER | 1 + .../pyyaml-6.0.3.dist-info/METADATA | 59 + .../pyyaml-6.0.3.dist-info/RECORD | 43 + .../pyyaml-6.0.3.dist-info/WHEEL | 7 + .../pyyaml-6.0.3.dist-info/licenses/LICENSE | 20 + .../pyyaml-6.0.3.dist-info/top_level.txt | 2 + .../rich-14.2.0.dist-info/INSTALLER | 1 + .../rich-14.2.0.dist-info/LICENSE | 19 + .../rich-14.2.0.dist-info/METADATA | 473 + .../rich-14.2.0.dist-info/RECORD | 162 + .../site-packages/rich-14.2.0.dist-info/WHEEL | 4 + .../python3.12/site-packages/rich/__init__.py | 177 + .../python3.12/site-packages/rich/__main__.py | 245 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6993 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 9408 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7874 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 205978 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1731 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2351 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 515 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 857 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12029 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4137 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1887 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3631 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5162 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 726 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6430 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13181 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 967 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 867 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 28768 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2468 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3551 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3338 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1598 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12245 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9123 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4274 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11677 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5580 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26510 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1703 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8589 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 115233 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2260 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9233 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10774 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10494 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1474 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4056 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1847 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3579 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3059 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9902 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6025 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5199 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20174 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 20131 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4752 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 14058 bytes .../rich/__pycache__/markdown.cpython-312.pyc | Bin 0 -> 35923 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9568 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6378 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 6933 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1822 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5244 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12731 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40597 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 75122 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10391 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 15984 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1782 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 569 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6614 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6558 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3820 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2474 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28547 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 5927 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6070 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33433 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2117 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 40884 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43860 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3350 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 61233 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6334 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 316 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 36189 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11738 bytes .../site-packages/rich/_cell_widths.py | 454 + .../site-packages/rich/_emoji_codes.py | 3610 +++++++ .../site-packages/rich/_emoji_replace.py | 32 + .../site-packages/rich/_export_format.py | 76 + .../site-packages/rich/_extension.py | 10 + .../python3.12/site-packages/rich/_fileno.py | 24 + .../python3.12/site-packages/rich/_inspect.py | 268 + .../site-packages/rich/_log_render.py | 94 + .../python3.12/site-packages/rich/_loop.py | 43 + .../site-packages/rich/_null_file.py | 69 + .../site-packages/rich/_palettes.py | 309 + .../python3.12/site-packages/rich/_pick.py | 17 + .../python3.12/site-packages/rich/_ratio.py | 153 + .../site-packages/rich/_spinners.py | 482 + .../python3.12/site-packages/rich/_stack.py | 16 + .../python3.12/site-packages/rich/_timer.py | 19 + .../site-packages/rich/_win32_console.py | 661 ++ .../python3.12/site-packages/rich/_windows.py | 71 + .../site-packages/rich/_windows_renderer.py | 56 + .../python3.12/site-packages/rich/_wrap.py | 93 + .../lib/python3.12/site-packages/rich/abc.py | 33 + .../python3.12/site-packages/rich/align.py | 306 + .../lib/python3.12/site-packages/rich/ansi.py | 241 + .../lib/python3.12/site-packages/rich/bar.py | 93 + .../lib/python3.12/site-packages/rich/box.py | 474 + .../python3.12/site-packages/rich/cells.py | 174 + .../python3.12/site-packages/rich/color.py | 621 ++ .../site-packages/rich/color_triplet.py | 38 + .../python3.12/site-packages/rich/columns.py | 187 + .../python3.12/site-packages/rich/console.py | 2680 +++++ .../site-packages/rich/constrain.py | 37 + .../site-packages/rich/containers.py | 167 + .../python3.12/site-packages/rich/control.py | 219 + .../site-packages/rich/default_styles.py | 193 + .../python3.12/site-packages/rich/diagnose.py | 39 + .../python3.12/site-packages/rich/emoji.py | 91 + .../python3.12/site-packages/rich/errors.py | 34 + .../site-packages/rich/file_proxy.py | 57 + .../python3.12/site-packages/rich/filesize.py | 88 + .../site-packages/rich/highlighter.py | 232 + .../lib/python3.12/site-packages/rich/json.py | 139 + .../python3.12/site-packages/rich/jupyter.py | 101 + .../python3.12/site-packages/rich/layout.py | 442 + .../lib/python3.12/site-packages/rich/live.py | 400 + .../site-packages/rich/live_render.py | 106 + .../python3.12/site-packages/rich/logging.py | 297 + .../python3.12/site-packages/rich/markdown.py | 779 ++ .../python3.12/site-packages/rich/markup.py | 251 + .../python3.12/site-packages/rich/measure.py | 151 + .../python3.12/site-packages/rich/padding.py | 141 + .../python3.12/site-packages/rich/pager.py | 34 + .../python3.12/site-packages/rich/palette.py | 100 + .../python3.12/site-packages/rich/panel.py | 317 + .../python3.12/site-packages/rich/pretty.py | 1016 ++ .../python3.12/site-packages/rich/progress.py | 1715 ++++ .../site-packages/rich/progress_bar.py | 223 + .../python3.12/site-packages/rich/prompt.py | 400 + .../python3.12/site-packages/rich/protocol.py | 42 + .../python3.12/site-packages/rich/py.typed | 0 .../python3.12/site-packages/rich/region.py | 10 + .../lib/python3.12/site-packages/rich/repr.py | 149 + .../lib/python3.12/site-packages/rich/rule.py | 130 + .../python3.12/site-packages/rich/scope.py | 86 + .../python3.12/site-packages/rich/screen.py | 54 + .../python3.12/site-packages/rich/segment.py | 752 ++ .../python3.12/site-packages/rich/spinner.py | 132 + .../python3.12/site-packages/rich/status.py | 131 + .../python3.12/site-packages/rich/style.py | 792 ++ .../python3.12/site-packages/rich/styled.py | 42 + .../python3.12/site-packages/rich/syntax.py | 985 ++ .../python3.12/site-packages/rich/table.py | 1006 ++ .../site-packages/rich/terminal_theme.py | 153 + .../lib/python3.12/site-packages/rich/text.py | 1361 +++ .../python3.12/site-packages/rich/theme.py | 115 + .../python3.12/site-packages/rich/themes.py | 5 + .../site-packages/rich/traceback.py | 899 ++ .../lib/python3.12/site-packages/rich/tree.py | 257 + .../stevedore-5.5.0.dist-info/AUTHORS | 75 + .../stevedore-5.5.0.dist-info/INSTALLER | 1 + .../stevedore-5.5.0.dist-info/LICENSE | 202 + .../stevedore-5.5.0.dist-info/METADATA | 51 + .../stevedore-5.5.0.dist-info/RECORD | 79 + .../stevedore-5.5.0.dist-info/WHEEL | 5 + .../entry_points.txt | 10 + .../stevedore-5.5.0.dist-info/pbr.json | 1 + .../stevedore-5.5.0.dist-info/top_level.txt | 1 + .../site-packages/stevedore/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 715 bytes .../__pycache__/_cache.cpython-312.pyc | Bin 0 -> 8986 bytes .../__pycache__/dispatch.cpython-312.pyc | Bin 0 -> 10045 bytes .../__pycache__/driver.cpython-312.pyc | Bin 0 -> 6486 bytes .../__pycache__/enabled.cpython-312.pyc | Bin 0 -> 3289 bytes .../__pycache__/exception.cpython-312.pyc | Bin 0 -> 879 bytes .../__pycache__/extension.cpython-312.pyc | Bin 0 -> 15167 bytes .../__pycache__/hook.cpython-312.pyc | Bin 0 -> 3386 bytes .../__pycache__/named.cpython-312.pyc | Bin 0 -> 6907 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 5392 bytes .../site-packages/stevedore/_cache.py | 206 + .../site-packages/stevedore/dispatch.py | 229 + .../site-packages/stevedore/driver.py | 148 + .../site-packages/stevedore/enabled.py | 84 + .../stevedore/example/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 202 bytes .../example/__pycache__/base.cpython-312.pyc | Bin 0 -> 1126 bytes .../load_as_driver.cpython-312.pyc | Bin 0 -> 1613 bytes .../load_as_extension.cpython-312.pyc | Bin 0 -> 1841 bytes .../example/__pycache__/setup.cpython-312.pyc | Bin 0 -> 1200 bytes .../__pycache__/simple.cpython-312.pyc | Bin 0 -> 1072 bytes .../site-packages/stevedore/example/base.py | 33 + .../stevedore/example/load_as_driver.py | 49 + .../stevedore/example/load_as_extension.py | 51 + .../site-packages/stevedore/example/setup.py | 58 + .../site-packages/stevedore/example/simple.py | 32 + .../stevedore/example2/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 203 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 1496 bytes .../__pycache__/setup.cpython-312.pyc | Bin 0 -> 1160 bytes .../stevedore/example2/fields.py | 50 + .../site-packages/stevedore/example2/setup.py | 57 + .../site-packages/stevedore/exception.py | 23 + .../site-packages/stevedore/extension.py | 344 + .../site-packages/stevedore/hook.py | 89 + .../site-packages/stevedore/named.py | 159 + .../site-packages/stevedore/sphinxext.py | 120 + .../site-packages/stevedore/tests/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 200 bytes .../extension_unimportable.cpython-312.pyc | Bin 0 -> 214 bytes .../tests/__pycache__/manager.cpython-312.pyc | Bin 0 -> 2379 bytes .../__pycache__/test_cache.cpython-312.pyc | Bin 0 -> 3172 bytes .../__pycache__/test_callback.cpython-312.pyc | Bin 0 -> 2833 bytes .../__pycache__/test_dispatch.cpython-312.pyc | Bin 0 -> 5108 bytes .../__pycache__/test_driver.cpython-312.pyc | Bin 0 -> 4493 bytes .../__pycache__/test_enabled.cpython-312.pyc | Bin 0 -> 1985 bytes .../test_example_fields.cpython-312.pyc | Bin 0 -> 1646 bytes .../test_example_simple.cpython-312.pyc | Bin 0 -> 1096 bytes .../test_extension.cpython-312.pyc | Bin 0 -> 17210 bytes .../__pycache__/test_hook.cpython-312.pyc | Bin 0 -> 1971 bytes .../__pycache__/test_named.cpython-312.pyc | Bin 0 -> 2959 bytes .../test_sphinxext.cpython-312.pyc | Bin 0 -> 4194 bytes .../test_test_manager.cpython-312.pyc | Bin 0 -> 15445 bytes .../tests/__pycache__/utils.cpython-312.pyc | Bin 0 -> 425 bytes .../stevedore/tests/extension_unimportable.py | 0 .../site-packages/stevedore/tests/manager.py | 67 + .../stevedore/tests/test_cache.py | 64 + .../stevedore/tests/test_callback.py | 56 + .../stevedore/tests/test_dispatch.py | 103 + .../stevedore/tests/test_driver.py | 91 + .../stevedore/tests/test_enabled.py | 42 + .../stevedore/tests/test_example_fields.py | 41 + .../stevedore/tests/test_example_simple.py | 29 + .../stevedore/tests/test_extension.py | 279 + .../stevedore/tests/test_hook.py | 55 + .../stevedore/tests/test_named.py | 93 + .../stevedore/tests/test_sphinxext.py | 117 + .../stevedore/tests/test_test_manager.py | 222 + .../site-packages/stevedore/tests/utils.py | 17 + .../tomlkit-0.13.3.dist-info/INSTALLER | 1 + .../tomlkit-0.13.3.dist-info/LICENSE | 20 + .../tomlkit-0.13.3.dist-info/METADATA | 76 + .../tomlkit-0.13.3.dist-info/RECORD | 32 + .../tomlkit-0.13.3.dist-info/WHEEL | 4 + .../site-packages/tomlkit/__init__.py | 59 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1224 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 1067 bytes .../__pycache__/_types.cpython-312.pyc | Bin 0 -> 3479 bytes .../__pycache__/_utils.cpython-312.pyc | Bin 0 -> 6705 bytes .../tomlkit/__pycache__/api.cpython-312.pyc | Bin 0 -> 11156 bytes .../__pycache__/container.cpython-312.pyc | Bin 0 -> 41521 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 10275 bytes .../tomlkit/__pycache__/items.cpython-312.pyc | Bin 0 -> 91547 bytes .../__pycache__/parser.cpython-312.pyc | Bin 0 -> 42510 bytes .../__pycache__/source.cpython-312.pyc | Bin 0 -> 8651 bytes .../__pycache__/toml_char.cpython-312.pyc | Bin 0 -> 2476 bytes .../__pycache__/toml_document.cpython-312.pyc | Bin 0 -> 475 bytes .../__pycache__/toml_file.cpython-312.pyc | Bin 0 -> 2593 bytes .../site-packages/tomlkit/_compat.py | 22 + .../site-packages/tomlkit/_types.py | 82 + .../site-packages/tomlkit/_utils.py | 158 + .../python3.12/site-packages/tomlkit/api.py | 312 + .../site-packages/tomlkit/container.py | 946 ++ .../site-packages/tomlkit/exceptions.py | 234 + .../python3.12/site-packages/tomlkit/items.py | 2013 ++++ .../site-packages/tomlkit/parser.py | 1140 +++ .../python3.12/site-packages/tomlkit/py.typed | 0 .../site-packages/tomlkit/source.py | 180 + .../site-packages/tomlkit/toml_char.py | 52 + .../site-packages/tomlkit/toml_document.py | 7 + .../site-packages/tomlkit/toml_file.py | 59 + .../python3.12/site-packages/yaml/__init__.py | 390 + .../yaml/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 15626 bytes .../yaml/__pycache__/composer.cpython-312.pyc | Bin 0 -> 6535 bytes .../__pycache__/constructor.cpython-312.pyc | Bin 0 -> 34928 bytes .../yaml/__pycache__/cyaml.cpython-312.pyc | Bin 0 -> 4636 bytes .../yaml/__pycache__/dumper.cpython-312.pyc | Bin 0 -> 2472 bytes .../yaml/__pycache__/emitter.cpython-312.pyc | Bin 0 -> 50176 bytes .../yaml/__pycache__/error.cpython-312.pyc | Bin 0 -> 4278 bytes .../yaml/__pycache__/events.cpython-312.pyc | Bin 0 -> 4720 bytes .../yaml/__pycache__/loader.cpython-312.pyc | Bin 0 -> 3534 bytes .../yaml/__pycache__/nodes.cpython-312.pyc | Bin 0 -> 2219 bytes .../yaml/__pycache__/parser.cpython-312.pyc | Bin 0 -> 24720 bytes .../yaml/__pycache__/reader.cpython-312.pyc | Bin 0 -> 8854 bytes .../__pycache__/representer.cpython-312.pyc | Bin 0 -> 16927 bytes .../yaml/__pycache__/resolver.cpython-312.pyc | Bin 0 -> 9071 bytes .../yaml/__pycache__/scanner.cpython-312.pyc | Bin 0 -> 49862 bytes .../__pycache__/serializer.cpython-312.pyc | Bin 0 -> 6209 bytes .../yaml/__pycache__/tokens.cpython-312.pyc | Bin 0 -> 5789 bytes .../_yaml.cpython-312-x86_64-linux-gnu.so | Bin 0 -> 2679264 bytes .../python3.12/site-packages/yaml/composer.py | 139 + .../site-packages/yaml/constructor.py | 748 ++ .../python3.12/site-packages/yaml/cyaml.py | 101 + .../python3.12/site-packages/yaml/dumper.py | 62 + .../python3.12/site-packages/yaml/emitter.py | 1137 +++ .../python3.12/site-packages/yaml/error.py | 75 + .../python3.12/site-packages/yaml/events.py | 86 + .../python3.12/site-packages/yaml/loader.py | 63 + .../python3.12/site-packages/yaml/nodes.py | 49 + .../python3.12/site-packages/yaml/parser.py | 589 ++ .../python3.12/site-packages/yaml/reader.py | 185 + .../site-packages/yaml/representer.py | 389 + .../python3.12/site-packages/yaml/resolver.py | 227 + .../python3.12/site-packages/yaml/scanner.py | 1435 +++ .../site-packages/yaml/serializer.py | 111 + .../python3.12/site-packages/yaml/tokens.py | 104 + .venv/lib64 | 1 + .venv/pyvenv.cfg | 5 + .venv/share/man/man1/bandit.1 | 243 + bandit_report.txt | 6 + flake8_report.txt | 11 + issues_table.md | 2 +- pylint_report.txt | 31 + 3132 files changed, 441300 insertions(+), 1 deletion(-) create mode 100644 .venv/bin/Activate.ps1 create mode 100644 .venv/bin/activate create mode 100644 .venv/bin/activate.csh create mode 100644 .venv/bin/activate.fish create mode 100755 .venv/bin/bandit create mode 100755 .venv/bin/bandit-baseline create mode 100755 .venv/bin/bandit-config-generator create mode 100755 .venv/bin/flake8 create mode 100755 .venv/bin/get_gprof create mode 100755 .venv/bin/get_objgraph create mode 100755 .venv/bin/isort create mode 100755 .venv/bin/isort-identify-imports create mode 100755 .venv/bin/markdown-it create mode 100755 .venv/bin/pip create mode 100755 .venv/bin/pip3 create mode 100755 .venv/bin/pip3.12 create mode 100755 .venv/bin/pycodestyle create mode 100755 .venv/bin/pyflakes create mode 100755 .venv/bin/pygmentize create mode 100755 .venv/bin/pylint create mode 100755 .venv/bin/pylint-config create mode 100755 .venv/bin/pyreverse create mode 120000 .venv/bin/python create mode 120000 .venv/bin/python3 create mode 120000 .venv/bin/python3.12 create mode 100755 .venv/bin/symilar create mode 100755 .venv/bin/undill create mode 100644 .venv/lib/python3.12/site-packages/__pycache__/mccabe.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/__pycache__/pycodestyle.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/_yaml/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/CONTRIBUTORS.txt create mode 100644 .venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/astroid/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pkginfo__.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/__pkginfo__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/_ast.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/arguments.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/astroid_manager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/bases.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/builder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/const.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/constraint.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/context.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/decorators.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/filter_statements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/helpers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/inference_tip.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/manager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/modutils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/objects.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/protocols.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/raw_building.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/rebuilder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/test_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/transforms.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/typing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/_ast.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/arguments.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/astroid_manager.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/bases.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_argparse.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_attrs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_boto3.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_builtin_inference.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_collections.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_crypt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_ctypes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_curses.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_dataclasses.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_datetime.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_dateutil.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_functools.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_gi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_hashlib.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_http.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_hypothesis.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_io.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_mechanize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_multiprocessing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_namedtuple_enum.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_einsumfunc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_fromnumeric.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_function_base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_multiarray.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_numeric.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_numerictypes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_umath.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_ma.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_ndarray.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_random_mtrand.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_pathlib.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_pkg_resources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_pytest.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_qt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_random.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_re.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_regex.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_responses.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_scipy_signal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_signal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_six.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_sqlalchemy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_ssl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_statistics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_subprocess.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_threading.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_type.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_typing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_unittest.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_uuid.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/__pycache__/helpers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_argparse.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_attrs.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_boto3.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_builtin_inference.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_collections.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_crypt.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_ctypes.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_curses.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_dataclasses.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_datetime.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_dateutil.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_functools.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_gi.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_hashlib.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_http.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_hypothesis.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_io.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_mechanize.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_multiprocessing.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_namedtuple_enum.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_einsumfunc.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_fromnumeric.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_function_base.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_multiarray.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numeric.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numerictypes.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_umath.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ma.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ndarray.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_random_mtrand.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_utils.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_pathlib.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_pkg_resources.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_pytest.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_qt.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_random.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_re.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_regex.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_responses.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_scipy_signal.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_signal.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_six.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_sqlalchemy.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_ssl.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_statistics.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_subprocess.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_threading.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_type.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_typing.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_unittest.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/brain_uuid.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/brain/helpers.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/builder.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/const.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/constraint.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/context.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/decorators.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/filter_statements.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/helpers.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/inference_tip.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/__pycache__/dunder_lookup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/__pycache__/objectmodel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/_import/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/_import/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/_import/__pycache__/spec.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/_import/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/_import/spec.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/_import/util.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/dunder_lookup.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/interpreter/objectmodel.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/manager.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/modutils.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/_base_nodes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/as_string.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/const.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/node_classes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/node_ng.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/_base_nodes.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/as_string.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/const.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/node_classes.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/node_ng.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/mixin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/scoped_nodes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/mixin.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/scoped_nodes.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/utils.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/nodes/utils.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/objects.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/protocols.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/raw_building.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/rebuilder.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/test_utils.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/transforms.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/typing.py create mode 100644 .venv/lib/python3.12/site-packages/astroid/util.py create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/REQUESTED create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/pbr.json create mode 100644 .venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/bandit/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/__pycache__/calls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/__pycache__/imports.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/calls.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/imports.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/blacklists/utils.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/__pycache__/baseline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/__pycache__/config_generator.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/baseline.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/config_generator.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/cli/main.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/blacklisting.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/config.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/constants.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/context.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/docs_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/extension_loader.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/issue.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/manager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/meta_ast.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/metrics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/node_visitor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/test_properties.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/test_set.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/tester.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/blacklisting.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/config.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/constants.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/context.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/docs_utils.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/extension_loader.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/issue.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/manager.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/meta_ast.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/metrics.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/node_visitor.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/test_properties.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/test_set.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/tester.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/core/utils.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/csv.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/custom.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/html.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/sarif.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/screen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/xml.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/yaml.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/csv.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/custom.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/html.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/json.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/sarif.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/screen.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/text.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/utils.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/xml.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/formatters/yaml.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/app_debug.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/asserts.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/crypto_request_no_cert_validation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/django_sql_injection.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/django_xss.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/exec.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_bad_file_permissions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_bind_all_interfaces.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_hardcoded_password.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_hardcoded_tmp.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/hashlib_insecure_functions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/huggingface_unsafe_download.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_paramiko.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_shell.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_sql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_wildcard.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/insecure_ssl_tls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/jinja2_templates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/logging_config_insecure_listen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/mako_templates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/markupsafe_markup_xss.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/pytorch_load.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/request_without_timeout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/snmp_security_check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/ssh_no_host_key_verification.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/tarfile_unsafe_members.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/trojansource.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/try_except_continue.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/try_except_pass.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/weak_cryptographic_key.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/yaml_load.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/app_debug.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/asserts.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/crypto_request_no_cert_validation.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/django_sql_injection.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/django_xss.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/exec.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/general_bad_file_permissions.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/general_bind_all_interfaces.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_password.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_tmp.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/hashlib_insecure_functions.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/huggingface_unsafe_download.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/injection_paramiko.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/injection_shell.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/injection_sql.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/injection_wildcard.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/insecure_ssl_tls.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/jinja2_templates.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/logging_config_insecure_listen.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/mako_templates.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/markupsafe_markup_xss.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/pytorch_load.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/request_without_timeout.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/snmp_security_check.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/ssh_no_host_key_verification.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/tarfile_unsafe_members.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/trojansource.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/try_except_continue.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/try_except_pass.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/weak_cryptographic_key.py create mode 100644 .venv/lib/python3.12/site-packages/bandit/plugins/yaml_load.py create mode 100644 .venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/dill/__diff.py create mode 100644 .venv/lib/python3.12/site-packages/dill/__info__.py create mode 100644 .venv/lib/python3.12/site-packages/dill/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/__diff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/__info__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/_dill.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/_objects.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/_shims.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/detect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/logger.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/objtypes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/pointers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/session.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/settings.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/source.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/__pycache__/temp.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/_dill.py create mode 100644 .venv/lib/python3.12/site-packages/dill/_objects.py create mode 100644 .venv/lib/python3.12/site-packages/dill/_shims.py create mode 100644 .venv/lib/python3.12/site-packages/dill/detect.py create mode 100644 .venv/lib/python3.12/site-packages/dill/logger.py create mode 100644 .venv/lib/python3.12/site-packages/dill/objtypes.py create mode 100644 .venv/lib/python3.12/site-packages/dill/pointers.py create mode 100644 .venv/lib/python3.12/site-packages/dill/session.py create mode 100644 .venv/lib/python3.12/site-packages/dill/settings.py create mode 100644 .venv/lib/python3.12/site-packages/dill/source.py create mode 100644 .venv/lib/python3.12/site-packages/dill/temp.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_classdef.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_dataclasses.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_detect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_dictviews.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_diff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_extendpickle.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_fglobals.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_functions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_functors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_logger.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_mixins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_module.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_moduledict.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_nested.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_objects.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_properties.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_pycapsule.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_recursive.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_registered.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_restricted.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_selected.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_session.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_source.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_sources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_temp.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_threads.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_weakref.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_abc.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_check.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_classdef.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_dataclasses.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_detect.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_dictviews.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_diff.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_extendpickle.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_fglobals.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_file.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_functions.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_functors.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_logger.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_mixins.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_module.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_moduledict.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_nested.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_objects.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_properties.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_pycapsule.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_recursive.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_registered.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_restricted.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_selected.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_session.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_source.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_sources.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_temp.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_threads.py create mode 100644 .venv/lib/python3.12/site-packages/dill/tests/test_weakref.py create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/REQUESTED create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/flake8/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/defaults.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/discover_files.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/processor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/statistics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/style_guide.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/__pycache__/violation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/api/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/api/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/api/__pycache__/legacy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/api/legacy.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/checker.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/defaults.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/discover_files.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/_windows_color.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/default.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/_windows_color.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/base.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/formatting/default.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/__pycache__/application.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/__pycache__/cli.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/__pycache__/debug.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/__pycache__/options.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/application.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/cli.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/debug.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/main/options.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/__pycache__/aggregator.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/__pycache__/config.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/__pycache__/manager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/__pycache__/parse_args.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/aggregator.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/config.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/manager.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/options/parse_args.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/finder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/pycodestyle.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/pyflakes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/finder.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/pycodestyle.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/pyflakes.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/plugins/reporter.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/processor.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/statistics.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/style_guide.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/utils.py create mode 100644 .venv/lib/python3.12/site-packages/flake8/violation.py create mode 100644 .venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/isort/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/isort/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/_version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/comments.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/files.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/hooks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/identify.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/io.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/literal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/logo.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/output.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/parse.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/place.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/profiles.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/sections.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/settings.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/setuptools_commands.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/sorting.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/wrap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/__pycache__/wrap_modes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/_parser.py create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/_re.py create mode 100644 .venv/lib/python3.12/site-packages/isort/_vendored/tomli/py.typed create mode 100644 .venv/lib/python3.12/site-packages/isort/_version.py create mode 100644 .venv/lib/python3.12/site-packages/isort/api.py create mode 100644 .venv/lib/python3.12/site-packages/isort/comments.py create mode 100644 .venv/lib/python3.12/site-packages/isort/core.py create mode 100644 .venv/lib/python3.12/site-packages/isort/deprecated/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/isort/deprecated/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/deprecated/__pycache__/finders.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/deprecated/finders.py create mode 100644 .venv/lib/python3.12/site-packages/isort/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/isort/files.py create mode 100644 .venv/lib/python3.12/site-packages/isort/format.py create mode 100644 .venv/lib/python3.12/site-packages/isort/hooks.py create mode 100644 .venv/lib/python3.12/site-packages/isort/identify.py create mode 100644 .venv/lib/python3.12/site-packages/isort/io.py create mode 100644 .venv/lib/python3.12/site-packages/isort/literal.py create mode 100644 .venv/lib/python3.12/site-packages/isort/logo.py create mode 100644 .venv/lib/python3.12/site-packages/isort/main.py create mode 100644 .venv/lib/python3.12/site-packages/isort/output.py create mode 100644 .venv/lib/python3.12/site-packages/isort/parse.py create mode 100644 .venv/lib/python3.12/site-packages/isort/place.py create mode 100644 .venv/lib/python3.12/site-packages/isort/profiles.py create mode 100644 .venv/lib/python3.12/site-packages/isort/py.typed create mode 100644 .venv/lib/python3.12/site-packages/isort/sections.py create mode 100644 .venv/lib/python3.12/site-packages/isort/settings.py create mode 100644 .venv/lib/python3.12/site-packages/isort/setuptools_commands.py create mode 100644 .venv/lib/python3.12/site-packages/isort/sorting.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/all.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py2.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py27.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py3.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py310.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py311.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py312.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py313.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py314.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py36.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py37.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py38.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py39.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/all.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py2.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py27.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py3.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py310.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py311.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py312.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py313.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py314.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py36.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py37.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py38.py create mode 100644 .venv/lib/python3.12/site-packages/isort/stdlibs/py39.py create mode 100644 .venv/lib/python3.12/site-packages/isort/utils.py create mode 100644 .venv/lib/python3.12/site-packages/isort/wrap.py create mode 100644 .venv/lib/python3.12/site-packages/isort/wrap_modes.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/_punycode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/renderer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/ruler.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/token.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/tree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/_punycode.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/parse.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/cli/parse.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/entities.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_re.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/entities.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/html_re.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/common/utils.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_destination.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/main.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/parser_block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/parser_core.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/parser_inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/port.yaml create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/commonmark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/default.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/zero.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/commonmark.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/default.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/presets/zero.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/py.typed create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/renderer.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/ruler.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/code.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/heading.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/html_block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/lheading.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/list.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/table.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/blockquote.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/block.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/linkify.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/normalize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/replacements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/state_core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/emphasis.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/entity.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/fragments_join.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/image.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/linkify.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/state_inline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/token.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/tree.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it/utils.py create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it create mode 100644 .venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/mccabe.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_decode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_encode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_parse.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/__pycache__/_url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_decode.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_encode.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_format.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_parse.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/_url.py create mode 100644 .venv/lib/python3.12/site-packages/mdurl/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/REQUESTED create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/AUTHORS.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/certifi/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distro/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/msgpack/COPYING create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pygments/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/requests/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/rich/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/truststore/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100755 .venv/lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/lock.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/pylock.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/pylock.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/retry.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/README.rst create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/distro/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 .venv/lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 .venv/lib/python3.12/site-packages/pip/py.typed create mode 100644 .venv/lib/python3.12/site-packages/platformdirs-4.5.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/platformdirs-4.5.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/platformdirs-4.5.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/platformdirs-4.5.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/platformdirs-4.5.0.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/android.py create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/api.py create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/macos.py create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/py.typed create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/unix.py create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/version.py create mode 100644 .venv/lib/python3.12/site-packages/platformdirs/windows.py create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle-2.14.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle-2.14.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle-2.14.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle-2.14.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle-2.14.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle-2.14.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle-2.14.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/pycodestyle.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes-3.4.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pyflakes-3.4.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pyflakes-3.4.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pyflakes-3.4.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pyflakes-3.4.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pyflakes-3.4.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pyflakes-3.4.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__pycache__/checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__pycache__/messages.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/__pycache__/reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/api.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/checker.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/messages.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/scripts/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/scripts/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/scripts/__pycache__/pyflakes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/scripts/pyflakes.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/harness.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_builtin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_code_segment.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_dict.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_doctests.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_imports.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_is_literal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_match.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_other.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_type_annotations.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/__pycache__/test_undefined_names.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/harness.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_api.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_builtin.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_code_segment.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_dict.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_doctests.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_imports.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_is_literal.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_match.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_other.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_type_annotations.py create mode 100644 .venv/lib/python3.12/site-packages/pyflakes/test/test_undefined_names.py create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.19.2.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.19.2.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.19.2.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.19.2.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.19.2.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.19.2.dist-info/licenses/AUTHORS create mode 100644 .venv/lib/python3.12/site-packages/pygments-2.19.2.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pygments/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/token.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/__pycache__/util.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/cmdline.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/console.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/filter.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/filters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatter.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/bbcode.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/groff.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/html.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/img.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/irc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/latex.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/other.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/pangomarkup.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/rtf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/svg.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/terminal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/formatters/terminal256.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexer.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_ada_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_asy_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_cl_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_cocoa_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_csound_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_css_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_googlesql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_julia_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_lasso_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_lilypond_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_lua_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_luau_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_mql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_mysql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_openedge_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_php_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_postgres_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_qlik_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_scheme_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_scilab_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_sourcemod_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_sql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_stan_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_stata_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_tsql_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_usd_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_vbscript_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/_vim_builtins.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/actionscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ada.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/agile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/algebra.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ambient.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/amdgpu.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ampl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/apdlexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/apl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/archetype.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/arrow.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/arturo.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/asc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/asm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/asn1.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/automation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bare.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/basic.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bdd.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/berry.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bibtex.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/blueprint.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/boa.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/bqn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/business.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/c_cpp.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/c_like.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/capnproto.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/carbon.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/cddl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/chapel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/clean.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/codeql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/comal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/compiled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/configs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/cplint.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/crystal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/csound.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/css.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/d.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dalvik.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/data.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dax.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/devicetree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/diff.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dns.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dotnet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dsls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/dylan.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ecl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/eiffel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/elm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/elpi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/email.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/erlang.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/esoteric.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ezhil.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/factor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/fantom.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/felix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/fift.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/floscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/forth.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/fortran.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/foxpro.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/freefem.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/func.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/functional.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/futhark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/gcodelexer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/gdscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/gleam.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/go.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/grammar_notation.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graph.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graphics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graphql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/graphviz.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/gsql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/hare.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/haskell.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/haxe.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/hdl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/hexdump.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/html.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/idl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/igor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/inferno.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/installers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/int_fiction.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/iolang.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/j.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/javascript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jmespath.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jslt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/json5.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jsonnet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jsx.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/julia.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/jvm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/kuin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/kusto.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ldap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/lean.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/lilypond.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/lisp.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/macaulay2.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/make.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/maple.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/markup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/math.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/matlab.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/maxima.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/meson.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mime.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/minecraft.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mips.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ml.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/modeling.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/modula2.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mojo.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/monte.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/mosel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ncl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/nimrod.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/nit.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/nix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/numbair.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/oberon.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/objective.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ooc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/openscad.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/other.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/parasail.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/parsers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pascal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pawn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pddl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/perl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/phix.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/php.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pointless.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/pony.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/praat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/procfile.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/prolog.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/promql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/prql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ptx.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/q.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/qlik.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/qvt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/r.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rdf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rebol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rego.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/resource.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ride.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rita.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rnc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/roboconf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/robotframework.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ruby.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/rust.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sas.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/savi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/scdoc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/scripting.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sgf.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/shell.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sieve.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/slash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/smalltalk.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/smithy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/smv.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/snobol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/solidity.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/soong.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sophia.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/special.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/spice.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/sql.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/srcinfo.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/stata.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/supercollider.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tablegen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tact.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tcl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/teal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/templates.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/teraterm.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/testing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/textedit.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/textfmts.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/theorem.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/thingsdb.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tlb.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tls.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/tnt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/trafficscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/typoscript.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/typst.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/ul4.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/unicon.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/urbi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/usd.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/varnish.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/verification.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/verifpal.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/vip.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/vyper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/web.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/webassembly.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/webidl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/webmisc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/wgsl.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/whiley.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/wowtoc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/wren.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/x10.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/xorg.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/yang.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/yara.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/__pycache__/zig.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_ada_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_asy_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_cl_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_cocoa_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_csound_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_css_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_googlesql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_julia_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_lasso_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_lilypond_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_lua_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_luau_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_mql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_mysql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_openedge_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_php_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_postgres_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_qlik_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_scheme_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_scilab_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_sourcemod_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_sql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_stan_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_stata_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_tsql_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_usd_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_vbscript_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/_vim_builtins.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/actionscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ada.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/agile.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/algebra.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ambient.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/amdgpu.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ampl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/apdlexer.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/apl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/archetype.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/arrow.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/arturo.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/asc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/asm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/asn1.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/automation.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bare.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/basic.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bdd.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/berry.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bibtex.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/blueprint.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/boa.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/bqn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/business.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/c_cpp.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/c_like.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/capnproto.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/carbon.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/cddl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/chapel.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/clean.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/codeql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/comal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/compiled.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/configs.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/console.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/cplint.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/crystal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/csound.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/css.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/d.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dalvik.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/data.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dax.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/devicetree.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/diff.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dns.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dotnet.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dsls.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/dylan.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ecl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/eiffel.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/elm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/elpi.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/email.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/erlang.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/esoteric.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ezhil.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/factor.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/fantom.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/felix.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/fift.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/floscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/forth.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/fortran.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/foxpro.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/freefem.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/func.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/functional.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/futhark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/gcodelexer.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/gdscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/gleam.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/go.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/grammar_notation.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graph.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graphics.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graphql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/graphviz.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/gsql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/hare.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/haskell.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/haxe.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/hdl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/hexdump.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/html.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/idl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/igor.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/inferno.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/installers.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/int_fiction.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/iolang.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/j.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/javascript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jmespath.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jslt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/json5.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jsonnet.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jsx.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/julia.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/jvm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/kuin.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/kusto.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ldap.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/lean.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/lilypond.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/lisp.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/macaulay2.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/make.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/maple.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/markup.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/math.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/matlab.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/maxima.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/meson.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mime.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/minecraft.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mips.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ml.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/modeling.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/modula2.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mojo.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/monte.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/mosel.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ncl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/nimrod.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/nit.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/nix.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/numbair.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/oberon.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/objective.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ooc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/openscad.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/other.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/parasail.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/parsers.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pascal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pawn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pddl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/perl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/phix.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/php.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pointless.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/pony.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/praat.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/procfile.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/prolog.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/promql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/prql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ptx.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/python.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/q.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/qlik.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/qvt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/r.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rdf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rebol.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rego.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/resource.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ride.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rita.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rnc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/roboconf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/robotframework.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ruby.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/rust.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sas.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/savi.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/scdoc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/scripting.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sgf.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/shell.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sieve.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/slash.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/smalltalk.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/smithy.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/smv.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/snobol.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/solidity.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/soong.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sophia.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/special.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/spice.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/sql.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/srcinfo.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/stata.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/supercollider.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tablegen.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tact.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tcl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/teal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/templates.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/teraterm.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/testing.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/text.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/textedit.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/textfmts.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/theorem.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/thingsdb.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tlb.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tls.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/tnt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/trafficscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/typoscript.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/typst.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/ul4.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/unicon.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/urbi.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/usd.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/varnish.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/verification.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/verifpal.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/vip.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/vyper.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/web.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/webassembly.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/webidl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/webmisc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/wgsl.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/whiley.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/wowtoc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/wren.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/x10.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/xorg.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/yang.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/yara.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/lexers/zig.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/modeline.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/plugin.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/regexopt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/scanner.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/sphinxext.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/style.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/abap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/algol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/algol_nu.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/arduino.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/autumn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/borland.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/bw.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/coffee.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/colorful.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/default.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/dracula.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/emacs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/friendly.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/friendly_grayscale.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/fruity.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/gh_dark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/gruvbox.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/igor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/inkpot.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/lightbulb.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/lilypond.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/lovelace.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/manni.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/material.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/monokai.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/murphy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/native.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/nord.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/onedark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/paraiso_dark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/paraiso_light.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/pastie.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/perldoc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/rainbow_dash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/rrt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/sas.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/solarized.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/staroffice.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/stata_dark.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/stata_light.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/tango.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/trac.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/vim.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/vs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/xcode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/__pycache__/zenburn.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/_mapping.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/abap.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/algol.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/algol_nu.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/arduino.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/autumn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/borland.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/bw.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/coffee.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/colorful.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/default.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/dracula.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/emacs.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/friendly.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/friendly_grayscale.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/fruity.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/gh_dark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/gruvbox.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/igor.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/inkpot.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/lightbulb.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/lilypond.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/lovelace.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/manni.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/material.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/monokai.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/murphy.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/native.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/nord.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/onedark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/paraiso_dark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/paraiso_light.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/pastie.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/perldoc.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/rainbow_dash.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/rrt.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/sas.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/solarized.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/staroffice.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/stata_dark.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/stata_light.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/tango.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/trac.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/vim.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/vs.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/xcode.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/styles/zenburn.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/token.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/unistring.py create mode 100644 .venv/lib/python3.12/site-packages/pygments/util.py create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/REQUESTED create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/licenses/CONTRIBUTORS.txt create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pylint-4.0.2.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/pylint/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pkginfo__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/__pkginfo__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/constants.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/graph.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/interfaces.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/__pycache__/typing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/async_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/bad_chained_comparison.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/base_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/clear_lru_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/dataclass_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/deprecated.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/design_analysis.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/dunder_methods.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/ellipsis_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/imports.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/lambda_expressions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/match_statements_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/method_args.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/misc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/modified_iterating_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/nested_min_max.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/newstyle.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/non_ascii_names.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/raw_metrics.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/spelling.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/stdlib.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/strings.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/symilar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/threading_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/typecheck.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/unicode.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/unsupported_version.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/__pycache__/variables.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/async_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/bad_chained_comparison.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__pycache__/basic_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__pycache__/basic_error_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__pycache__/comparison_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__pycache__/docstring_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__pycache__/function_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/__pycache__/pass_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/basic_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/basic_error_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/comparison_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/docstring_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/function_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/name_checker/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/name_checker/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/name_checker/__pycache__/checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/name_checker/__pycache__/naming_style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/name_checker/checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/name_checker/naming_style.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base/pass_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/base_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/classes/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/classes/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/classes/__pycache__/class_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/classes/__pycache__/special_methods_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/classes/class_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/classes/special_methods_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/clear_lru_cache.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/dataclass_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/deprecated.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/design_analysis.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/dunder_methods.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/ellipsis_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/format.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/imports.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/lambda_expressions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/logging.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/match_statements_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/method_args.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/misc.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/modified_iterating_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/nested_min_max.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/newstyle.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/non_ascii_names.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/raw_metrics.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/__pycache__/implicit_booleaness_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/__pycache__/not_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/__pycache__/recommendation_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/__pycache__/refactoring_checker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/implicit_booleaness_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/not_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/recommendation_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/refactoring/refactoring_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/spelling.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/stdlib.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/strings.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/symilar.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/threading_checker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/typecheck.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/unicode.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/unsupported_version.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/checkers/variables.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/argument.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/arguments_manager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/arguments_provider.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/callback_actions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/config_file_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/config_initialization.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/deprecation_actions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/find_default_config_files.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/help_formatter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_breaking_changes/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_breaking_changes/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/__pycache__/generate_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/__pycache__/help_message.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/__pycache__/setup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/generate_command.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/help_message.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/main.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/setup.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/_pylint_config/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/argument.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/arguments_manager.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/arguments_provider.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/callback_actions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/config_file_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/config_initialization.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/deprecation_actions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/find_default_config_files.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/help_formatter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/config/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/constants.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/_check_docs_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/bad_builtin.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/broad_try_clause.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/check_elif.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/code_style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/comparison_placement.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/confusing_elif.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/consider_refactoring_into_while_condition.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/consider_ternary_expression.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/dict_init_mutate.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/docparams.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/docstyle.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/dunder.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/empty_comment.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/eq_without_hash.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/for_any_all.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/magic_value.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/mccabe.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/no_self_use.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/overlapping_exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/private_import.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/redefined_loop_name.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/redefined_variable_type.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/set_membership.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/typing.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/__pycache__/while_used.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/_check_docs_utils.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/bad_builtin.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/broad_try_clause.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/check_elif.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/code_style.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/comparison_placement.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/confusing_elif.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/consider_refactoring_into_while_condition.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/consider_ternary_expression.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/dict_init_mutate.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/docparams.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/docstyle.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/dunder.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/empty_comment.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/eq_without_hash.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/for_any_all.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/magic_value.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/mccabe.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/no_self_use.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/overlapping_exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/private_import.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/redefined_loop_name.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/redefined_variable_type.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/set_membership.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/typing.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/extensions/while_used.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/graph.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/interfaces.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/base_options.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/caching.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/expand_modules.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/message_state_handler.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/parallel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/pylinter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/report_functions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/run.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/base_options.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/caching.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/expand_modules.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/message_state_handler.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/parallel.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/pylinter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/report_functions.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/run.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/lint/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/__pycache__/_deleted_message_ids.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/__pycache__/message.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/__pycache__/message_definition.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/__pycache__/message_definition_store.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/__pycache__/message_id_store.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/_deleted_message_ids.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/message.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/message_definition.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/message_definition_store.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/message/message_id_store.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/py.typed create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/diadefslib.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/diagrams.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/dot_printer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/inspector.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/main.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/mermaidjs_printer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/plantuml_printer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/printer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/printer_factory.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/__pycache__/writer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/diadefslib.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/diagrams.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/dot_printer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/inspector.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/main.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/mermaidjs_printer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/plantuml_printer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/printer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/printer_factory.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/pyreverse/writer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/base_reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/collecting_reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/json_reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/multi_reporter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/progress_reporters.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/reports_handler_mix_in.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/base_reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/collecting_reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/json_reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/multi_reporter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/progress_reporters.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/reports_handler_mix_in.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/text.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/__pycache__/base_writer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/__pycache__/nodes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/__pycache__/text_writer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/base_writer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/nodes.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/reporters/ureports/text_writer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/_run.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/checker_test_case.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/configuration_test.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/constants.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/decorator.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/get_test_info.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/global_test_linter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/lint_module_test.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/output_line.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/pyreverse.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/reporter_for_tests.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/tokenize_str.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/unittest_linter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__pycache__/package_to_lint.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__pycache__/primer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__pycache__/primer_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__pycache__/primer_compare_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__pycache__/primer_prepare_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/__pycache__/primer_run_command.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/package_to_lint.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/primer.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/primer_command.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/primer_compare_command.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/primer_prepare_command.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_primer/primer_run_command.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/_run.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/checker_test_case.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/configuration_test.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/constants.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/decorator.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/__pycache__/find_functional_tests.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/__pycache__/lint_module_output_update.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/__pycache__/test_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/find_functional_tests.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/lint_module_output_update.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/functional/test_file.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/get_test_info.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/global_test_linter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/lint_module_test.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/output_line.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/pyreverse.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/reporter_for_tests.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/testing_pylintrc create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/tokenize_str.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/unittest_linter.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/testutils/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/typing.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__pycache__/ast_walker.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__pycache__/docs.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__pycache__/file_state.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__pycache__/linterstats.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__pycache__/pragma_parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/ast_walker.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/docs.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/file_state.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/linterstats.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/pragma_parser.py create mode 100644 .venv/lib/python3.12/site-packages/pylint/utils/utils.py create mode 100644 .venv/lib/python3.12/site-packages/pyyaml-6.0.3.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/pyyaml-6.0.3.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/pyyaml-6.0.3.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/pyyaml-6.0.3.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/pyyaml-6.0.3.dist-info/licenses/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/pyyaml-6.0.3.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/rich-14.2.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/rich-14.2.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/rich-14.2.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/rich-14.2.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/rich-14.2.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/rich/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/rich/__main__.py create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/abc.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/align.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/box.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/cells.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/color.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/columns.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/console.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/containers.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/control.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/errors.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/json.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/layout.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/live.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/logging.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/markdown.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/markup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/measure.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/padding.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/pager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/palette.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/panel.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/progress.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/region.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/repr.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/rule.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/scope.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/screen.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/segment.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/status.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/style.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/styled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/table.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/text.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/theme.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/themes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/__pycache__/tree.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/rich/_cell_widths.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_emoji_codes.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_emoji_replace.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_export_format.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_extension.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_fileno.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_inspect.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_log_render.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_loop.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_null_file.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_palettes.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_pick.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_ratio.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_spinners.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_stack.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_timer.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_win32_console.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_windows.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_windows_renderer.py create mode 100644 .venv/lib/python3.12/site-packages/rich/_wrap.py create mode 100644 .venv/lib/python3.12/site-packages/rich/abc.py create mode 100644 .venv/lib/python3.12/site-packages/rich/align.py create mode 100644 .venv/lib/python3.12/site-packages/rich/ansi.py create mode 100644 .venv/lib/python3.12/site-packages/rich/bar.py create mode 100644 .venv/lib/python3.12/site-packages/rich/box.py create mode 100644 .venv/lib/python3.12/site-packages/rich/cells.py create mode 100644 .venv/lib/python3.12/site-packages/rich/color.py create mode 100644 .venv/lib/python3.12/site-packages/rich/color_triplet.py create mode 100644 .venv/lib/python3.12/site-packages/rich/columns.py create mode 100644 .venv/lib/python3.12/site-packages/rich/console.py create mode 100644 .venv/lib/python3.12/site-packages/rich/constrain.py create mode 100644 .venv/lib/python3.12/site-packages/rich/containers.py create mode 100644 .venv/lib/python3.12/site-packages/rich/control.py create mode 100644 .venv/lib/python3.12/site-packages/rich/default_styles.py create mode 100644 .venv/lib/python3.12/site-packages/rich/diagnose.py create mode 100644 .venv/lib/python3.12/site-packages/rich/emoji.py create mode 100644 .venv/lib/python3.12/site-packages/rich/errors.py create mode 100644 .venv/lib/python3.12/site-packages/rich/file_proxy.py create mode 100644 .venv/lib/python3.12/site-packages/rich/filesize.py create mode 100644 .venv/lib/python3.12/site-packages/rich/highlighter.py create mode 100644 .venv/lib/python3.12/site-packages/rich/json.py create mode 100644 .venv/lib/python3.12/site-packages/rich/jupyter.py create mode 100644 .venv/lib/python3.12/site-packages/rich/layout.py create mode 100644 .venv/lib/python3.12/site-packages/rich/live.py create mode 100644 .venv/lib/python3.12/site-packages/rich/live_render.py create mode 100644 .venv/lib/python3.12/site-packages/rich/logging.py create mode 100644 .venv/lib/python3.12/site-packages/rich/markdown.py create mode 100644 .venv/lib/python3.12/site-packages/rich/markup.py create mode 100644 .venv/lib/python3.12/site-packages/rich/measure.py create mode 100644 .venv/lib/python3.12/site-packages/rich/padding.py create mode 100644 .venv/lib/python3.12/site-packages/rich/pager.py create mode 100644 .venv/lib/python3.12/site-packages/rich/palette.py create mode 100644 .venv/lib/python3.12/site-packages/rich/panel.py create mode 100644 .venv/lib/python3.12/site-packages/rich/pretty.py create mode 100644 .venv/lib/python3.12/site-packages/rich/progress.py create mode 100644 .venv/lib/python3.12/site-packages/rich/progress_bar.py create mode 100644 .venv/lib/python3.12/site-packages/rich/prompt.py create mode 100644 .venv/lib/python3.12/site-packages/rich/protocol.py create mode 100644 .venv/lib/python3.12/site-packages/rich/py.typed create mode 100644 .venv/lib/python3.12/site-packages/rich/region.py create mode 100644 .venv/lib/python3.12/site-packages/rich/repr.py create mode 100644 .venv/lib/python3.12/site-packages/rich/rule.py create mode 100644 .venv/lib/python3.12/site-packages/rich/scope.py create mode 100644 .venv/lib/python3.12/site-packages/rich/screen.py create mode 100644 .venv/lib/python3.12/site-packages/rich/segment.py create mode 100644 .venv/lib/python3.12/site-packages/rich/spinner.py create mode 100644 .venv/lib/python3.12/site-packages/rich/status.py create mode 100644 .venv/lib/python3.12/site-packages/rich/style.py create mode 100644 .venv/lib/python3.12/site-packages/rich/styled.py create mode 100644 .venv/lib/python3.12/site-packages/rich/syntax.py create mode 100644 .venv/lib/python3.12/site-packages/rich/table.py create mode 100644 .venv/lib/python3.12/site-packages/rich/terminal_theme.py create mode 100644 .venv/lib/python3.12/site-packages/rich/text.py create mode 100644 .venv/lib/python3.12/site-packages/rich/theme.py create mode 100644 .venv/lib/python3.12/site-packages/rich/themes.py create mode 100644 .venv/lib/python3.12/site-packages/rich/traceback.py create mode 100644 .venv/lib/python3.12/site-packages/rich/tree.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/AUTHORS create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/entry_points.txt create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/pbr.json create mode 100644 .venv/lib/python3.12/site-packages/stevedore-5.5.0.dist-info/top_level.txt create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/dispatch.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/driver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/enabled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/exception.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/hook.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/named.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/__pycache__/sphinxext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/_cache.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/dispatch.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/driver.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/enabled.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/__pycache__/base.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/__pycache__/load_as_driver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/__pycache__/load_as_extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/__pycache__/setup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/__pycache__/simple.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/base.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/load_as_driver.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/load_as_extension.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/setup.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example/simple.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example2/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example2/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example2/__pycache__/fields.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example2/__pycache__/setup.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example2/fields.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/example2/setup.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/exception.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/extension.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/hook.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/named.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/sphinxext.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/extension_unimportable.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/manager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_cache.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_callback.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_dispatch.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_driver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_enabled.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_example_fields.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_example_simple.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_extension.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_hook.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_named.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_sphinxext.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/test_test_manager.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/__pycache__/utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/extension_unimportable.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/manager.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_cache.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_callback.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_dispatch.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_driver.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_enabled.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_example_fields.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_example_simple.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_extension.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_hook.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_named.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_sphinxext.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/test_test_manager.py create mode 100644 .venv/lib/python3.12/site-packages/stevedore/tests/utils.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit-0.13.3.dist-info/INSTALLER create mode 100644 .venv/lib/python3.12/site-packages/tomlkit-0.13.3.dist-info/LICENSE create mode 100644 .venv/lib/python3.12/site-packages/tomlkit-0.13.3.dist-info/METADATA create mode 100644 .venv/lib/python3.12/site-packages/tomlkit-0.13.3.dist-info/RECORD create mode 100644 .venv/lib/python3.12/site-packages/tomlkit-0.13.3.dist-info/WHEEL create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/_compat.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/_types.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/_utils.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/api.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/container.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/exceptions.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/items.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/source.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/toml_char.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/toml_document.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/__pycache__/toml_file.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/_compat.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/_types.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/_utils.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/api.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/container.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/exceptions.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/items.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/parser.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/py.typed create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/source.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/toml_char.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/toml_document.py create mode 100644 .venv/lib/python3.12/site-packages/tomlkit/toml_file.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/__init__.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/error.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/events.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.pyc create mode 100644 .venv/lib/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.pyc create mode 100755 .venv/lib/python3.12/site-packages/yaml/_yaml.cpython-312-x86_64-linux-gnu.so create mode 100644 .venv/lib/python3.12/site-packages/yaml/composer.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/constructor.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/cyaml.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/dumper.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/emitter.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/error.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/events.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/loader.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/nodes.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/parser.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/reader.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/representer.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/resolver.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/scanner.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/serializer.py create mode 100644 .venv/lib/python3.12/site-packages/yaml/tokens.py create mode 120000 .venv/lib64 create mode 100644 .venv/pyvenv.cfg create mode 100644 .venv/share/man/man1/bandit.1 create mode 100644 bandit_report.txt create mode 100644 flake8_report.txt create mode 100644 pylint_report.txt diff --git a/.venv/bin/Activate.ps1 b/.venv/bin/Activate.ps1 new file mode 100644 index 0000000..b49d77b --- /dev/null +++ b/.venv/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/.venv/bin/activate b/.venv/bin/activate new file mode 100644 index 0000000..7f3ab95 --- /dev/null +++ b/.venv/bin/activate @@ -0,0 +1,70 @@ +# This file must be used with "source bin/activate" *from bash* +# You cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # Call hash to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + hash -r 2> /dev/null + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +# on Windows, a path can contain colons and backslashes and has to be converted: +if [ "$OSTYPE" = "cygwin" ] || [ "$OSTYPE" = "msys" ] ; then + # transform D:\path\to\venv to /d/path/to/venv on MSYS + # and to /cygdrive/d/path/to/venv on Cygwin + export VIRTUAL_ENV=$(cygpath "/workspaces/SE-LAB5-Static-Code_Analysis/.venv") +else + # use the path as-is + export VIRTUAL_ENV="/workspaces/SE-LAB5-Static-Code_Analysis/.venv" +fi + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1="(.venv) ${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT="(.venv) " + export VIRTUAL_ENV_PROMPT +fi + +# Call hash to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +hash -r 2> /dev/null diff --git a/.venv/bin/activate.csh b/.venv/bin/activate.csh new file mode 100644 index 0000000..ee88ff6 --- /dev/null +++ b/.venv/bin/activate.csh @@ -0,0 +1,27 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. + +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/workspaces/SE-LAB5-Static-Code_Analysis/.venv" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(.venv) $prompt" + setenv VIRTUAL_ENV_PROMPT "(.venv) " +endif + +alias pydoc python -m pydoc + +rehash diff --git a/.venv/bin/activate.fish b/.venv/bin/activate.fish new file mode 100644 index 0000000..6fd0ec0 --- /dev/null +++ b/.venv/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/). You cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/workspaces/SE-LAB5-Static-Code_Analysis/.venv" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) "(.venv) " (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT "(.venv) " +end diff --git a/.venv/bin/bandit b/.venv/bin/bandit new file mode 100755 index 0000000..3f6a860 --- /dev/null +++ b/.venv/bin/bandit @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from bandit.cli.main import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/bandit-baseline b/.venv/bin/bandit-baseline new file mode 100755 index 0000000..2ff55fc --- /dev/null +++ b/.venv/bin/bandit-baseline @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from bandit.cli.baseline import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/bandit-config-generator b/.venv/bin/bandit-config-generator new file mode 100755 index 0000000..77679fb --- /dev/null +++ b/.venv/bin/bandit-config-generator @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from bandit.cli.config_generator import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/flake8 b/.venv/bin/flake8 new file mode 100755 index 0000000..910222f --- /dev/null +++ b/.venv/bin/flake8 @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from flake8.main.cli import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/get_gprof b/.venv/bin/get_gprof new file mode 100755 index 0000000..4e0eca0 --- /dev/null +++ b/.venv/bin/get_gprof @@ -0,0 +1,75 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +''' +build profile graph for the given instance + +running: + $ get_gprof + +executes: + gprof2dot -f pstats .prof | dot -Tpng -o .call.png + +where: + are arguments for gprof2dot, such as "-n 5 -e 5" + is code to create the instance to profile + is the class of the instance (i.e. type(instance)) + +For example: + $ get_gprof -n 5 -e 1 "import numpy; numpy.array([1,2])" + +will create 'ndarray.call.png' with the profile graph for numpy.array([1,2]), +where '-n 5' eliminates nodes below 5% threshold, similarly '-e 1' eliminates +edges below 1% threshold +''' + +if __name__ == "__main__": + import sys + if len(sys.argv) < 2: + print ("Please provide an object instance (e.g. 'import math; math.pi')") + sys.exit() + # grab args for gprof2dot + args = sys.argv[1:-1] + args = ' '.join(args) + # last arg builds the object + obj = sys.argv[-1] + obj = obj.split(';') + # multi-line prep for generating an instance + for line in obj[:-1]: + exec(line) + # one-line generation of an instance + try: + obj = eval(obj[-1]) + except Exception: + print ("Error processing object instance") + sys.exit() + + # get object 'name' + objtype = type(obj) + name = getattr(objtype, '__name__', getattr(objtype, '__class__', objtype)) + + # profile dumping an object + import dill + import os + import cProfile + #name = os.path.splitext(os.path.basename(__file__))[0] + cProfile.run("dill.dumps(obj)", filename="%s.prof" % name) + msg = "gprof2dot -f pstats %s %s.prof | dot -Tpng -o %s.call.png" % (args, name, name) + try: + res = os.system(msg) + except Exception: + print ("Please verify install of 'gprof2dot' to view profile graphs") + if res: + print ("Please verify install of 'gprof2dot' to view profile graphs") + + # get stats + f_prof = "%s.prof" % name + import pstats + stats = pstats.Stats(f_prof, stream=sys.stdout) + stats.strip_dirs().sort_stats('cumtime') + stats.print_stats(20) #XXX: save to file instead of print top 20? + os.remove(f_prof) diff --git a/.venv/bin/get_objgraph b/.venv/bin/get_objgraph new file mode 100755 index 0000000..ca7ddc7 --- /dev/null +++ b/.venv/bin/get_objgraph @@ -0,0 +1,54 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +display the reference paths for objects in ``dill.types`` or a .pkl file + +Notes: + the generated image is useful in showing the pointer references in + objects that are or can be pickled. Any object in ``dill.objects`` + listed in ``dill.load_types(picklable=True, unpicklable=True)`` works. + +Examples:: + + $ get_objgraph ArrayType + Image generated as ArrayType.png +""" + +import dill as pickle +#pickle.debug.trace(True) +#import pickle + +# get all objects for testing +from dill import load_types +load_types(pickleable=True,unpickleable=True) +from dill import objects + +if __name__ == "__main__": + import sys + if len(sys.argv) != 2: + print ("Please provide exactly one file or type name (e.g. 'IntType')") + msg = "\n" + for objtype in list(objects.keys())[:40]: + msg += objtype + ', ' + print (msg + "...") + else: + objtype = str(sys.argv[-1]) + try: + obj = objects[objtype] + except KeyError: + obj = pickle.load(open(objtype,'rb')) + import os + objtype = os.path.splitext(objtype)[0] + try: + import objgraph + objgraph.show_refs(obj, filename=objtype+'.png') + except ImportError: + print ("Please install 'objgraph' to view object graphs") + + +# EOF diff --git a/.venv/bin/isort b/.venv/bin/isort new file mode 100755 index 0000000..6991918 --- /dev/null +++ b/.venv/bin/isort @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from isort.main import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/isort-identify-imports b/.venv/bin/isort-identify-imports new file mode 100755 index 0000000..e637c8c --- /dev/null +++ b/.venv/bin/isort-identify-imports @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from isort.main import identify_imports_main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(identify_imports_main()) diff --git a/.venv/bin/markdown-it b/.venv/bin/markdown-it new file mode 100755 index 0000000..8f8c75a --- /dev/null +++ b/.venv/bin/markdown-it @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from markdown_it.cli.parse import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/pip b/.venv/bin/pip new file mode 100755 index 0000000..b931b17 --- /dev/null +++ b/.venv/bin/pip @@ -0,0 +1,8 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3 b/.venv/bin/pip3 new file mode 100755 index 0000000..b931b17 --- /dev/null +++ b/.venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pip3.12 b/.venv/bin/pip3.12 new file mode 100755 index 0000000..b931b17 --- /dev/null +++ b/.venv/bin/pip3.12 @@ -0,0 +1,8 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/.venv/bin/pycodestyle b/.venv/bin/pycodestyle new file mode 100755 index 0000000..5d761e0 --- /dev/null +++ b/.venv/bin/pycodestyle @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from pycodestyle import _main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(_main()) diff --git a/.venv/bin/pyflakes b/.venv/bin/pyflakes new file mode 100755 index 0000000..8736027 --- /dev/null +++ b/.venv/bin/pyflakes @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from pyflakes.api import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/pygmentize b/.venv/bin/pygmentize new file mode 100755 index 0000000..5aa2172 --- /dev/null +++ b/.venv/bin/pygmentize @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from pygments.cmdline import main +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(main()) diff --git a/.venv/bin/pylint b/.venv/bin/pylint new file mode 100755 index 0000000..d107e66 --- /dev/null +++ b/.venv/bin/pylint @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from pylint import run_pylint +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(run_pylint()) diff --git a/.venv/bin/pylint-config b/.venv/bin/pylint-config new file mode 100755 index 0000000..e9354ab --- /dev/null +++ b/.venv/bin/pylint-config @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from pylint import _run_pylint_config +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(_run_pylint_config()) diff --git a/.venv/bin/pyreverse b/.venv/bin/pyreverse new file mode 100755 index 0000000..3862eb9 --- /dev/null +++ b/.venv/bin/pyreverse @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from pylint import run_pyreverse +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(run_pyreverse()) diff --git a/.venv/bin/python b/.venv/bin/python new file mode 120000 index 0000000..7ae5fe3 --- /dev/null +++ b/.venv/bin/python @@ -0,0 +1 @@ +/home/codespace/.python/current/bin/python \ No newline at end of file diff --git a/.venv/bin/python3 b/.venv/bin/python3 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/.venv/bin/python3 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/.venv/bin/python3.12 b/.venv/bin/python3.12 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/.venv/bin/python3.12 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/.venv/bin/symilar b/.venv/bin/symilar new file mode 100755 index 0000000..0da8cbd --- /dev/null +++ b/.venv/bin/symilar @@ -0,0 +1,7 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +import sys +from pylint import run_symilar +if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(run_symilar()) diff --git a/.venv/bin/undill b/.venv/bin/undill new file mode 100755 index 0000000..4954dc6 --- /dev/null +++ b/.venv/bin/undill @@ -0,0 +1,22 @@ +#!/workspaces/SE-LAB5-Static-Code_Analysis/.venv/bin/python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +unpickle the contents of a pickled object file + +Examples:: + + $ undill hello.pkl + ['hello', 'world'] +""" + +if __name__ == '__main__': + import sys + import dill + for file in sys.argv[1:]: + print (dill.load(open(file,'rb'))) + diff --git a/.venv/lib/python3.12/site-packages/__pycache__/mccabe.cpython-312.pyc b/.venv/lib/python3.12/site-packages/__pycache__/mccabe.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27fb9c44319cad586e3c5f4b737cfed0c03e5810 GIT binary patch literal 18424 zcmcJ1dvFv-nrBsaRd@A6YCT$S9xaf721^2rc^iWzu(3gS7Cdvv<7qctCDfwTt*L4O zYNQ#>9C6clU=ZisMeNv%=CNm3vtfJo_Kff5Vs325-XC`tp|-@TU8B7tZhaBwxQjRp zY}m{FvG@D3x~d z(&~b`HFBd|bC&O`m7C;R{Q718S+1{6ZkFqCSFbe4^(WSFoLX<=lzK%NTyHKx{#S00 z?akaf2MS~y~!A~SM6A;tKQtkyEd+0zjgiNUBjcvfkZq+-6IS0?*qx980+rf{v&|{ z(TEb)luq|&G?yT+SDuO{2SQphoMZ#)MUh8V`okl!q#TVTaa$ElDrzV)5RJ*9INqWK zZMr?IB~>Dll(@cgOXvCs^=78rLUH%7t{@(T>*GN{Hkk*(*s%D5Y)3B20&<5eB6p5D zf==DN=kSqlMzv@%p{7>9ps4)`bw~?@1F|xl9O&qes#-E|DjYizNc0Di14;nZJ0s@H z=;b#25k1`tAS0?B<3hMHQk3qj+N0ccz84b_Xhymt6bWPDuk*T~DY1Tyss$dr*mWwQ zp3sKF5k>1dytm`Po~NJaIEt!kuPe6JD)VA)DZ`{>HR$-j%J#&jrst znnr}CXeL^JC;sj|hwL(!v?e#kzm>c0;a;xexN*A;lOHT>o9koDew-h({ha?Z$4@}m z=NklWlv7D81a0i|>XIDA0)Q%mf?A1k)q_kI!s>BN7a2`x0!oO0RUbWa=7=X%Q!u$) z*-}){AZjqTg}U}>dA4rdU553vUH!QoPt7+-FZ<91A*Mp=>uY4J+ZnB82uabZlDcxuc(D3w&f?YNkvbzlj7d(G?o zugs5$Dcs^IEn7)4Wfr}o{Mg3qJJAN8O&H_zpXe~YORp}TBqj+;#)xw!^xzoJ6WrQs@9`c(2@U|s-K#PC#Vx$7*di0x{LMLiykxw z9@5v%eP6W}_eF$j5=bi^XeW^63Af6Bx$;tFTFm-tFP=Gf=HmCyeSd0X*4LgEvL0W0 zXSQ+a)ygZC>HQ0}%~PAM?!2<|TEjcrGQpiU<=@2KkImLTpYF-Fwu3O9Kll8UnDH+A z#8*4nGvfY3KQhtW=j4E>@hYn3QLv6;ns%q!nzTdOMVDUCAb{xhqLx>pj09t~6Rvg9!etWUhHmSX){GAOecHNK=doL5D8A0NvRO zu^TD;-qZ`-=Xxm-2lVwVsc17GxHg={H;~b&2u$Rn1%E~j4-Z64Oin#o3nsJ99!2(J z(0+LVNBSm2tyxOCtSe><(49#|s7JD&C6jfWIVu5i1;*4Jv1nY0C$N@@*vL>^6;K&$ z71ffuXdp$gfV+rR)UA|lL#EMmz-OjjVVqWD&DLVI-BfoivbyX-ZlD!7V#d-m#*-KuENqvnGG;Ruh3Aeh*4jo2+gvD{O2nr- z!o$N#T+Rs@-4@?~zl}vAMt4RM@wgI68e)chYG8a;^bGpYh$u04$$Qa#&ON#DT;;s9 zG$SpYIyNV@-fn7vq-W)?RvObTlszPKX*&0op|p^#WD6kjG#!&PQPoTUjy1qJJP=hO z-Q^yeatDynFD%l-qvREO2Mv51?;YpIZDTgvgW1OIg%EboqD^y5pv~OnPhpD!nLWCO z{S6`i+0Jhexbr)N0+1{hJcYazdsA+0w;?_cpj119jET>5Y))zc=)e5jrRNA2 zHv|4aoC5q@I0zByYQEjF{Oa~A+vi)>Wm?wFwshR(Y_1;u9AMI9JHQm$RP^wZ!a`Nu z^pQ7T`q@i=^71=9?>+zS^M7%0rvB+$Ro#HpsBp(lt?oNGS7kb4a!XmV`L`HZA=#8C zl}8as4|kD|*p36jzYLW!&L=G;mbXzZ+0Od})EKvja@uPk|*9~RIagph*pl6ivL zhtUtu`Z@&_n0hAgdrERdjWcucV5A!g5O%m}BL`q$vM21L8&)`dF-qU;*t>3{+qez{ zJ|hl+zO-v2Lpjbq8IFx8nr@FNaTCz-aorUk844*f3_jzMNx>3i=gyBH<!{z(6c;_ADVc5%sFw^OXWSK|hb6Eq>XxQ_TZR;M*n_&LjSMTQ z`VG`&7$|21GN|le90H49RWv0D-vGnRq%JiYRbav}3YZRGUVafRg--OKtwHuB6MA!% zZPRi_+B7F^&XP7eU&;I((C>!EyWo9TuhBc1UJKx&)X&4bK9)GM6tXU|Il$@)M`NY< zR{a(_N-bGr?GV)oAhA@HXLsToh1mFq@(1xIt@Rc$7

pmr8dJLVvZjIK_%%2ua;+vV&_jG07iX+|0M};Cz3Borf%Z7Bsoi1l5Mj6 zhVWKy=HnvzD>JUaI7!Rno~>OWw;-^zU% z^k;pe{M`SsSGD}wp_Girl7!Nd61sg96%vX^D>4d8QjyRETy(X|+wm{ZuBwMo6~=S| z#`JZbnbW~a^+gmidx;r6I@EqFl<4n=09B7t{Yt|)AYSbSZ>!|7QeUPg!m)%rYM7e4 zsgTsD`c2A6P8Ip?m{GM3rMfhXjz~!8j$?^rGBH%@y3?zeOKRUpJd%ti;yp?~yzHiR zS)}kfODldCFVJcsyWno}_%7~xbys%z%B$b|qwifyzCHS&?^#%0Wse& z!GaPU#E7PwyvRgai|L@ES{Kl%wjCLC5d4?q42Jj8d$ID>%Bi-i!7IV($d#^)6ueN0 z(s`*lBax$c+m&r|QhT@=v1U#g<>=N4X?@B$o2V2vgG3LrE%U&6XD~ zQ0KYPKr|P-pKYcSOE8!{h?g)~pzg+%xzfbVs*J2?ebr+qNwqJ+u*IU}HEIk4o0b)> z_t95Jv)-D8+Lo!F*LJ0)9Iz@}&gp?UsVnOzzY5HUhMb$MDDFaQ#fX}aDS?`Dq&tC# za88Y*R%wD7hpkVZN~V~t)z8<sDfF z`5Cnxj*`VkfjbuBOs!jF5zAHnDRoM|J}f1~*N$^LW<1NXb@hh4d+E|kkV~+)HfMaT zh-wg#wqztM^ew5iykH;$_};%j#?ZY52gmq4zAp!KOqx<_Ky{W8jc#%&PrT8xGGJI{0NDcBR|AK&4o6d=*|O)#4u>@xA&Z8}g43JHh?GTy+nfBN)0OXj@0vOAvo&Gz@V7ox#; z+h!WKWV~A~B=``jE$-!(cb6fx3dxkF#YlYCWseoe-_UTs{gZNJ|hVy$6P~gj1$Lg-HG^(;~3+DK>RwiCOR=!<9WM~W;BEKyJ zo8D|U?4~vucZ>;GTL{B(XL+$u*1zB!bC^9K)DpnTI0{A9sDQ}0nA*)ai}5cRj*Lke z$0{*Rc_qNOi1th^%E8QjRY?@8uOOp+0+un#i~#jX6zh(JN_Lk*Kx&s;e(=Uw-3!`oI@1K7{>iKn*6nyn8|yryf?mc=$1 z_a*my)rw5jis_BhCvR1CBHUBab=xpv@3=Ux|6#miNe&~X`E~J5d9``NmRD}D5AD4v z?-6x$@97A(;t>$%*++)O!o)oZV_h16a)>FaRt7OtGDKkYu&5bRTISLc&4@|60a2Gp|$5Z(*Ay zt(=fIVVJYW;ID^4mH{8B)uL*Strpc-!1T2B$jZP+(;z{#xWtCOCABlE!pEc_Pq3*p z97IcRY=>Z~nz;n}QKr|iH}BC#1`1Mb(LtR1ya252>M16Lh1VrCWoH*n4T(dPQ#QTSSS)LLtn9St4Xp?KZ>;Gg>Gk z9??!B`|>RJIksy^_a#BByX(zu+z8y28pWnNo4BPNGeXl{K|nmq>ku37Ryo8K_p1bP zFHdz>LJD+jo)MmyIEZZW*{KxmcUpN*@`z8}ZT5@H?>=S|pF*XoWfRZd73|`wJ8rIi z`Pp8!&dh|0U<_6=Y4zR;7**%~{PAF=s-Hd>aMq-H}+QwQK48{Ies@17GjIFA=(7kQ_ zhExmX@NovB8f{iKTLjjCmOuM@r1IObuz7%xJ4L3f>6+FiudYCu>F%IwUFru3Jmgbi z#FwfsnuQfdA`PI?4ge5+;pQuIQSpSc3<-`I66Bm9Pdss(kz_#@Wyk9xwjSibJekO{ zQ|3(hH!dVe(y}xrB&kQ1Ouek`F24~$mhzYby9)V1x7jlPJ7(+W5w5fUlK%-0BZ4ny zE|kLsvMb;BC~Xq`3cW)NxqDMp9UVjA(;fL(vpR|4Aohnn*Gj6zB#?ZFJUIX>U;u7E zT{xnSD1hq3*4Ws>e8`BVjSgcc9rmmb>(vZ~g!o!(#{P7Leruq@{qtA9j~2!{kk-5!Z)y2CIibfG^MKCU}X zoMM}jJ^5E^C3}o?Prf@X)l^JY1&{s@UZRn}0l*-)&h3V#Z2eNi*t7l(+1AycdmJ_H zwBvpy*RX7=e`eL@o5F1UlW7n6Fi!k()0}6`ZEp>Es%IM3GF-4Uz0ZUc8E?mQ|Hs}A z_~Yiitr>6Yymw8;yJjZ1?Ur}@ZEtDKS#QU~ik}FTX*JTlMcXsVI*v_J0Vk4VWXa@2 zn@avIoxVuH*#WrO{+NoLxzA?Acys%^D~zw4dt{PKPQ-K;J;Y87POC#t6Wpgu1Je!j zty?m!TV|JTP1|ot&Bny6A)y+%wN~Qq-cL~aJXm%y(_iLKfXme)7p^G)7u&J~)NS!D z-jPdio8{yMME$I-fBnKA@|Piz&JR;G`p@h*$YL{Gu|co; zCunAP1L<2aQEnLZ&(ZB6WV$DWjRXlbl!V_^Wf3X{6Sq-?%g9XM?NTZ@N-cyW?VJ*D zNp^v;=hUu_#8cJ9T#6zGQ56m1f0E-6PT6_SvW#chboIxc73AiwSu5o%y=8nYy*Jb&ruP(9Odb@cHL`%QL>^v%c2pp82*d znYJynzAagbQmxK3tiJZd+dHrCyjeHDZGUFl{@HEM&#XO=X*e(`Wb0cl$1cUD_r7`H zX9wPC`?YZM$iH)AuhneT)1Sj?=;r@UqYw7OJsY}3{N=qn4f*3mk6LZOp@ z&=8iibw78hi|lldN?t-^`Kwr67Kow!`UzS61wDI{G9tUuT{{=3jIvMhrx75c-P&DQ zPwhlcwz6sB87$ny-fT_R#Piv@hKb(00uMOk;2hPT+p5IQdv;vip{qM>tc(}8<;v*F zA&K3*0deRZMSy@fiV3U#jL&u%hr$ZB_#r$Z|Nq?HL=s5jc6dfaILT?|EQLt*vy`kh zudvnC^52$=rJEdSSmNJC-{X#P=eRWP8WRT_%wF=pvJ)N$$Cy;Qy_ziXBw_w#9CNGCdxKK+Izf95~yJde+R#VG47OvW>a}da-2M zS4J0DMQpId(G=w38`kW2?kG3vu#UD#y}Cf#n?9q-r>b6z(=I1KL}PDMAZ6Q*{gZAZ zfa7V`C{(@y!E!C=qb;vP!-V-sBI^||jCSt}9qK)BG=w8Vy2sc{wU;CaHr$PBx}=q0`JNgNMV2&;Kd4$MGg0VvTSc2_+*LqNx^#Y8X!zXifD4RIDc9bPE>~+#T$S zt6uQc!*~DBrcd6`=DT)hx^~a{_N0Y7UaqogVqbRUV`mS}34w*xo8CEcbL;Htp83_! zW>!BtyPCFtio5xYv@-3ObW90TN>-|5Cpw1UkF3AxpINmlQ@`t$^b{NgsEEy+k|(|S zpP!iwf9!0?`l=QLSGw(D@LX_m->kc3PFS+wsZ5{z@s1gx{>%F~{ z;K#jF8{qIr^9z!PHWNc`ek?Wq>huTIGfmxdQqL#8D)>Oe>IWL>l^-s7x|#c+d5@!e zrTxPdJo2K51c7D7@SAW^gib8=g6*ADgC#H+Y=j%U3AgElQ)-2=YZC?sPWk1rD*3R& z0psKfj6M2{IKd}|;J%jG>Idz*CwH)A7#kbZe~%jKuaOnUFY4&)@L*BqB7s`*=PTLrO5oO~y z7zb2}uPQJ!IN5R?K4I*_CU8`eOjeKBWSn(`$znm7!<=mU3S(%-^57UI8;eY17=?g_ zh^BAI(ikUO8;xijj}|@U4H#3vvEAObaeL`li{2)E-*&@k(!$r9`6xu@20*J*n9osw zNSc*#8n?9k{4TRRX+f~Of=OB+s^1R5yA^`Ba9tc2XKuZ}&Nw5squ8umI-p6)eq2NSeH0_PTVfjCQ-l8F;aJepE;pR6QtQUOlgTyu#k&>;}rgFxqr zkzppa)qle}d@&v+$;*m>_=sI~zF++>>^D>l_SBD1%Cfb@fsM$3?VJ_AZ=bIUWU2yl z&fxUsTh8D@MfK#Gsh-)2);k>US~C5OY_0$D=1ZGj+xi7|D=xtqBiEAKF5mAzK3}^s zQ@e7`_1JX(E!SgNY2_W8!xdPluA3Z~7G|s4(Y#_Wf312Uux386H51r+v-&s9?>El| zdM;H=Hco9ocX)mug1QDT?7p^UuHtd_%6Gn7=9PD9Id{hwB3{nwJov&*t&Mm5-%qPr zUVrJvV>7-jgf|19(ipBa%~ex>6#?|u(0KXerIW9nrgsLupu+o_<0)Sw_H1w#?MAl1TN_A=jIoK@M@tn1J-B9W zyns{68C|B_Vy2n}W-zNumD&ESOc&xU^>@WYD zKTc*!qhy8obj&VS5@a&v6`+&PdWLAP@l^KZB}6$h%iIcy6T)QqvSiKIG3F=-Gsncj zFb@p1Mzdx9R~;^ZlvU;!F;B-JIZjH_;PR3J+?t~R_}vL$2xvPPc(|6jY|J^h^5Jr` zb@^5&z73}3&v&40`{He3Q0@Y7&O_ts{5(d#-b{MfOuqhzTl1sA*jGI~_D8RVsR1yv zePk*JYkJjRp_7!YLr#eu9XN-m+v(h7b7CYpJdzBA18f)i$!IEoVjL2PDY~0E-$F@p zui140|G`31okAz-9~wOkQBOnBID<2(rMQX?jSLmyB09%nyny+0AZ! zX)EeI;v5jdlE<1Xko6aby+KdDP_>@X*e?mfhub}!IL2UUFoHFdY)-XTAmA+Y~7 zbxAy@{sm=ZSgJ%ks!kc9@B-HWLu2G0Fiw}O!xaLJe~lj<>L#qJ|B9aZDf=~LD=1q^ z8A-f{gN8V(9>%KtcRbudN~15QG&~by3%;6*r_Y_9;-_rsv9z$@sh#%(GM>P!X9Wyi zLHg059~_$OnOc2K%r-r7Gj_+$iGIjj@c@6j;GrkmwDsmlcFEE^B71HVm&3P@ZLWtd z9h&Z$^#^}&aN?Qt5dw<-$?&CyAMYZpSTnh4%0Csp(lEX1#>)A%J2Go`%zAd>NoCt? zTju@kAN$+0{-$|< zTgKlu>tA(kb*_K^j%-!kW$z{LA5>DbaygC-8Hc-WKjiVSxi*(LJiayGzB$vrdDgdi zp{j0DxjcAjaJqed#m3Bvjk7B@-Ku)xa}kXg>ZSizfEFDG#EHy-F$k8D`xs~fko;5J z89U0FRAMGNY2H7A6IeKDuG;D0f2E87hx#!+hqpEs1EgTyVS$PnHIdNQJ^P1-6Kay- z2i*fF?+ImV=SUK#H*U~lN8;EZS{f(OgVgj1$`}nY!|(&T{Y%O|qKxRoaJ&%7m3T-V zNIMOKV3+#8@D!B9X+*CuuXz4*o4^Zy>*n}Xf5Z8H$GLyU`Thq7Kq2rOegF5MC+~Ckx!=5m4^BGnbNIQxtJ}sepX$5M(eM2O!dkwY zpWJt!qu+add==ktZ#ZzvSME7Jl=cot)rJr#`kfeIiKd+KY|n8Yf#PSEQHR y66!&@Li3k*4!b$27B(Zl@xKWhGQtKL_QnV7c=GG+r`_BK?uw_I?H@Gp$p0U&8E)nP literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/__pycache__/pycodestyle.cpython-312.pyc b/.venv/lib/python3.12/site-packages/__pycache__/pycodestyle.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f59a9aa9b8623413d051b4510979a249614a804 GIT binary patch literal 107360 zcmeFadvqIDdM5~g0Es7`;QLi1MUmi}6!juSNfb%FMcI;u}?|!fQ-M_Zk%o-e>Y5#cTzx|$8^S5-P z97g%#vl)v<^R`CR3~5BIsGHUfY1yxCNXLHDhSJ!ten`)L4MPU@n?97zelvzL*spQO z$bL;jCiZI{GP7UHkOjYK)7I?3<+Ycm?zr5r5mae^M|U%f}t9*P%ILQ zk+MrH8LCBnc28==((h;$EJM`(yIqE>PjOu8vsgB%^&>%nb=CRN=Y||ImU0!A205)l zmDcELy!yNvAHPQVl`5!aIj5jXYoRo;N-1}!mG038zPcS7QpdKZPU_-$+g z_Iya4*q*Aw*6Hfp0o&E>`G9SDd#VcCezZmPceFzX@O~LrrR}g{P5eE&c7)j#hw0uC zrZx_9Xh)dcahRSRVd~;Ahj)ajkHZ|<5ylaRIl3cELmZ}eN0`Pq%&{F|n#AU-DaNKN zUI%}AqK^;t?TDu(URM8(Fs*TzfgNGm;xNZ|glUh%oY)bjBMx(NN0>cvm{U8#bYA`a z6g@9xn~8hBt`Yb3Yu=YLDA>3D4xQPtwEYU~(Agbf4#Z*3?J##7yfy*~UW*a-t?hLm z8btaZrbs`J^iYcQr`+jc*G=uvApXt|J+(ub-SINNlLE)n!2R76=@*dxKcq;%D3|#( z%DgaiaY{q~#6#ao8@eR+d|fm2jQEOp`0LuCueiP<9{GB_#fP57{ZZBZbGYwS-9L}} zW2*Zh-1n*OhsAziA3^GXD)ln%kE`xq!2Jo;{V48Fs_wsv`%|iWC+<(H?#FO{Ms+`q z`?IQh5%=d*_b%KIs_rLne_nMziTkHi_g8TLwCa8e_ZL+6S8;z)b$<=_msI!D=zF`x zXOw=%?!Kbj`77e8 zJ37q?jd&eY#I2M&^t&w0gS44=+BaC*i%64P-%xnMp+%PJMXFDgdW)sbBK3yrRvh*< zmiiJ>Z^p5{E@rv%Cv@T*YIR%mqdvc9(wH>jtK!Q@`Dfy9ivj$;AB^+omn~!@WVb<%M zbO}zkC^&`bDX&lPObDJC-;~GgZ4!LaoZ!1M5@vV-GjoL7>zkW)wam;3%~#Ck zOMnn&B+sPeyv{I9`MiSUnv`5#FYpLHfD7K)DW3}^+;9n3T#~EHe8uOR@piSgPEPr* z%#O8;d#<+v_lr(CDv`6+PdO#8OLFKwCL!cwlCNUMQMAC!)U?Z=-qF(D+0y2(Yw_N2H}!qxVpGeQ zUutT(GTGFE#%dZJMGFzW(b1+BpXa83_dt6`dlOE3=(MkCpo5({n+Eo`bv8Y_w`~ud zI%9^Hrrdiv{Fz@H!Iz7-aV+b({u85p=Le6UIx%|k{J81(a{9PWv!$(Th2=+OC1 zUYBonre%C$(w~8nTc+GoAD^dJpuzbujbVo_X7YJvMyFjjT+^}i>n`+4@#B;9SdWvx zv9^B3>AT|acGcEPo|haVe#br2_!a0vbUD1Z@VRdK9A1CzHeg{`fw~+ALy;MxYr;7@ z?Te+)%;Ed_rZgzbkrp!?cTRgesclO68PL!4i%-(jRMIc&y$1SR3%`4jqz8SaPkS*q_$W(Bs$9 zUu%y)traI-BmSE4SJm@ad+4$DuwPe;yBF}c8-IbG$GRT;9>U*YWI2S3w8Mu1+Y?K} zP>kuO-1zgxbRG$KP|vQOS!zDP^ijy6k6FYibV;8_nsRw#h6!{U?_=AvXL4%XIn8_Z zk6^J38X^=L}QAh_|8sNS7c4Mtlzck@}G_YU9Aj7;AC- zQe!)g5Y%u_)#V-sgRgIQ1nLN#Ay`-RJmfvz6@$ZsA2 zmAO79I_dRZIC@lQ9uXUnp$R{ZBf>~yJzY=&yFk*>qb&`){Pq{>oggaXs1JH|0Dsg# zwcAnyjRAl3 znx7rT>5N7TjZQ#wxj>_t*9Np#)sT2jhX_rKGUxq)_HC_JbGt~7dFzkTFgv9^)(ZYK z6gddGmm#@kra^r%R&_0HF|F526hjam54FDJk*+by>}|a`(0sP{*xu%gM7hVC`#=sx zd)>}y^ki>q%MF+NM(gy{7$yjs>h`p>ceHvz)|)}ruVE7Ns%H*RxW}eLlP>ior1mrk7@>^(br{=(>)f#;t+f1y97cLN-K*f=rk9w+7^W=f#oJzCn2 zO2x89CtbeL#53s`q|)nqpTlWE^P6-{cHu^r5XllkMeA7&8(DiJS$j9K4n?vKt!Ewn zdqbM_m^PYSyqQ(>#@B9rEmXWwbu?0SbS>-XqYRC$;Elo82S3#i%p*;j;h6Swe&eMP zyxP=TsUKH!%g{P#*jGJ}ks4K=3G3|y% z+7r+&)cB|@c3d?nSBc+%Ce;^(W)j~@G$?Y#yjG_P=mHuAdq5jVdtdHhT2Q2m>VBD` z7bI#a)vN1%mBz%DLn%|#i|HjA=!K1wI@ZH1ybhu<09|u(=?;^>?1F0&ys}FYoPyi+ zk^p85EVyUvDmqxpxOz0ubsqjc`(2!fp8Dc72xzJ8&~i0f(*hdSs_gky`f^*2fR4A> zWPAidT0om2HH{>NNwnC6ZadaPz%vK3Fep*?h!L}vG0N(W{tuSRRXEHRq zBHp*|d1TaBa~972CPQP+d86`HWibD~sq&$vB)Iq8!*>p^TN+k6R(ivhmeqat_Juo+ ztyzw791|he%BB0(4t$`6v(hMPnnXvaCo(#+hzraPIP)WAAC33Tt8x0Fz=LAM?E;`g z8A^H}u1)XPT+Y^LM$k>?)8_R7eL#B+bk(c9Z6&HOp(E;k5lsGEnnUk|LZoH8X zIU%smdZ~uIN(==!fN3N`#-iFid&T8ONjE&0yCC4>Rppm~NO_$^dnVID>~TquWr=Lj zD>6g`+zg?giKR`#luwxQdNB{i#c9Dg=9%?zg@W&j6VIooU6aJtP-{berqnHR7f^;6`ZYmt%Cvuu56zTmII8_O^DlPJmk1=LAQ<-a%A8HZ>K!${?tq z_0(Yhz~CjBE*O|JA2UpnIwEFrxo5AtBgAq*NYsVYIKHk+FRDe^d)^1B%^!XQW4E74ws${=bc@%p8do?&-p-(vvNQm zAIM~M`+sd9!|)r>VmiwMa~2=cC_p}7a+T{KVsg5unbSKA{#Vbt*#rvh5zU=YIq~Lb zrZL2Nf!8N_+>^=uK=9CDrv{Wqcf3cCKq>bJbo5!t&3eJJ?FZXghmjwTfboq#WL@O3 z*5t1su++Uo?iA7#-bEq|pLopcnWjNEi|7BIV2e?H9+caI7y`eqKoX%9MMMx7^hx7n$8IqQ{FYP4+{}Ya5=qG0E89< zZA>LoA_PRDH&;9;!wvG|k-sb9o08P}zoZ_7&UYO;iV=4W?>8OPZ{$QlmAa=(U`&B< z+~cX|Y@b8!b}|KWq9Pzd9Sn~@&1|#!(*%>nU-T?+La(~5mC%cbDf8C=V2`ST2~w5N zVGh2hi=|5#8B;T{G^i@&9vCySq#2i()D82L(nb>)q?b|F$M}<3vPTt~{OS#ReZ*eB zQnGIETsRlaD%;4aiDcD;PON7&Eu4&I*n`Hk4B>$#?_plS(#^Me!qtbud56N*Lz{Ws zk4ze474MUJ)yz?q zjk!sl-We@pkLqQ0w1Cgq;owu;W1Y>ceCCR0QH=UCV`e2h;0Z{dCk^1`K#`DHaC-=RLS1Dxcwu?&t;0mW^7_J7qF>fl>M+&3!>HLqx@H}wALZ>t#1u8cyg}6=65?Ze zART0@A7pC*9cUg5qn34_+<+k^D;g(wl6Ec)Fe&D)c!?RR5;NkRkK@+`bl!rL&-JW) zM<7EqFu^XJ-B+n#12n5Jrvkdkv(5)mC{^6P}ppy(e_!WWWYP+8q8l z%+BASDbG$_2Wtnejdffv5k#kO-Fb8B`s{V;bNdfMhJ`X@95hr#p}~a_C+78m=>xcX z4oa{aQ{y1fPB22mEfGgZAk$O;XI2liC2+A3#X4rUFawUYi373;0+XlbB~}%64zOg- zYbXHKo$o{@&+AaN3nMYi{6t@Ae@CJ*(I{kBi?hS>)OEqd zj8~kS76$gVwR3XA85>b# z#CsF)(i~1PGYnv`m2owucV>FZ2l4s@J;_3cVk86BA2OfCOxN)lh#hcAuMmLV?Rn7| z(^En$U4}^?zcTB-=Jk>SkWnI>IQx_*_fIuS=?#G85-s{GT!0ppX{^N?mdc2wa@|t3 z(Ereuy<~s=`Gw=r4BJxHT1Mr2`b|qguxiax8q$9+>u%Pn{=Tp`YR!d+oLlgA$#ThC zWsB*QtKjwFVDFl({H{ZN7uvm&1NE?Xt-9l3HZ&D)nZDH*N)JhQ&F`F#WH+vOKGa59 zde^dhfih~zSvtRFsfpTa9%;0@8>20qtDbQ4@lVpUyH7w-r?sD?vkhlZz+I1uHIC+R zM&W6!lZNPr|0XT|Z|?YTqQnjaG%N@S?_%K6sps zNj4HC0hPSuNRO3VywrQ)(#2;_T{<~>>HJfpX9vDAaF&amOw@?kV8Vc83hfiwwD}-3 zu(@3N25?~Xk>)FA<xo#+EZc`p3%p*Q}mSXtXMyDX3 zA}breQV{S5XyE-njH-yKC_GSs3#%H<%?lwaC=B^CndaQ3 z`r>a0@lO{pCY0|IYAt54GKf>sNq>a5Fw?#Fe+py-7`gHOsSo6bA1OLT!tuHL0G? zTYOM1@*`y(ZC6QUzvWQMRLBzQZN+!A@D@Q?&ucYqtzHwbN=Oqe0rNXr(fV!ZI+SmK zRNK}3EogBYFe^9{u&jTO=xs%=%z!BX0Vny3Qa@mQ0j}-fJa@%&RDkpn5547p8@Eh) z8P4n{;baEf9Orp-nu{*7V!?F>ULDQMt3yz9=*$;~%fVo|NI6bkLtGT{z2xE2jhQBO zA|VP}d5*b+5R(?q0Yx0RH*lmJ8Dlx+VxbF#9!MblCm2B{mBca1{LjEmNG&Q+ia5wQ zQlZXz!I0KNwj-Wvdd@-olvjBjrpY7bjG>cU(|AWQ{%T$@g~t+3LJCF?m|OxIbNOC! zLFbBMVFkzah&T?G6A(u04s$t zf)VU*RRLl=lkkUO3Nl4c@p3Y8YJxhE1l>0OF6vnc1TW945G0^>1F9ndRV%A2IR#X} zP%E8ZPc7(A=RMVb3iqo;@`E>U^Nkj3)j5ZjpBSXSK4 zkQW@Ya%V&NF4O6To&r5zaYf{xRwBOFOZH*vvWbIB4VP0+MN+hp!;q0#z?-ef3Nv=SVp7$hz^!LsQL$$q_L* zR+{dc_QOZSRuXJlv97xA4d1t(idu^xp<2r~t+@{@g;Bc@I=g0Xi`pG4_&xB@UbA6$ zMC^`mL)U$K_hwb|Qf9QcVk!Mmx~9B3)VP`zsXh{}hS3-A?JI`*yl)*Xj}nGdV>Zd7$gs=Dv>|K*vVocZ%}>s66+5AaCzTG`RPdc z>1ffe&j7L;qHyVM0@%HYW*J?xHAQpt!udVX?8;CXko0O>KhbClS^<~W3OHLU+A_2G zQLQHb5U%nM(y9HE7LBFwL3SB6&iOTKW7OKTVcj3G?hhY0ecyTpO^p1xdpBjI2U{YC6n^d{`S#Ug2M2a*KRT3&^Uo}MasIisw-!H1 zE>m$C;5qab#c6I{o8bCW@nQ)B3iw>uYv!RlOr@JtcusP+NyVwgpX-r7&bOoP@)3V- zAT1~p+AYen#IFJ+*#ZVGJd04htGUhF7a?QNGw|qyMbyjY_)$m%2H5;`V!B%^X3VEU ziIDz|2J(jSEJdvv3LqW^oGa6zq&LGYYN|1c~6G zv>bzG^qLD^?I6B%P0TFOj^v#2S%frnPH=3l>r?P;_PCoUAG=E8%$U{Tiu3w#`{gF# zW!EGe+J%mJdCKh|Hikh6UkpMJ!jrMYkqFxg0>_iODnh(2NgzVX>L!7xAOyS-=OQ}V z!0k*;2sg=W5AK9{VhcB$gt=~Z29Gu;GzmAq2wF&h?*J{NMo!QSIp-o1+>ufuu}qj$ zWuA$pGVXzK8~&03d=yomlc(jnT5sKBZPVkl`OA)&9xxs3yvJ`>!^)ilkaggBm|H>( zU^~??e43A!FVr2a8*~_Br324hy3ji~aQ>N#qtBi^b!p(@Q@wqP$C448iU`%a#7xo> z&EPR;hoGV**Cl+{aaT-G8Io(B^rW|z zW*ADw2Emnq{J}_hEKi+WRhyp}lWHU5p91a!no0ix7i=bd)S|H#K~0;}w2`wnlCu|c zPEPly8k6Dhq5&$PH(tK=^6T?l_v63ie?5T9?EJSa%a*rn0Dy~w?$&_~OKHSXdf!sM znF~eFvLjr6@LqqU{Af7$=(_c2)RwbUOUbuJLuu=_nrKCJ$aUxX^6}Mz#r`OA^auBa zt5ERjSMIfki+jSkJ?qwVb^=pI9MhZd^fI!Ez~ukolW4qbmb&JegIl?%s2uokC+82QvS4cuWBR+B^N<5Lgcym7J3kN#(caralB6P@g^@AF~*uyL) z&<@CcFk66_A;(_;NC-SY!3lLNLHE7tX# zy`O3NWZtsDo5`?=p}z0dVT{+e8c^ZC7)GaG;hpwFxv~Xl zXBdve38Qz*b&og;I>1v>=9rqON5PIRl*Y};jKT~`NAP{vGPamuZpt++KGr(?x-PT7 z7W82+JRV_HhjltJY?H}|!yHTVlVcIwQ5Zdl>1mBo%;@u6bGfJdw4AQ@+(0Zt9_2C9 zlvlY-=l1QG`66@*X9q5wAG`?LF>w{Kbe0{il zh@AWg7o42rY6?q&yU9$uk{fDRFK8x$(yzT`Ueqs&kBk~y&KoChoeb*VHQzC>TdSkl z_P0&Trf)s>?&Uj|*RvZQViiVqRV2GAwCj6~cN>41-9ixHH@@4omfal9FMfM?c{p@( zEx&2i{^QaQNH|M1#MpuGrGxNA*J-%c!(Itj782p463pCiJP9xZk(i!X_YsKCv}8I;HZNdqPDA3B zLyWt;%o_tn$&NDgWZRUoSQ$pS3{x^LSZ|HqJO)cVM<#>S$*|^RSYWLP=;XLLI?;-E zvCYHy0rL>*0@GO<3{Hdvae?qwnQ9?*E{py#E+O0b5gLf}>9XF)i+(HAW8L!s!Rws! z3Y`vRf`wnA48%l2to(&jwLHSfqeF5rUuO@zvWfTQ9xrpASwZx;>)>M|yBA)^T4!N) z2C@tujXT}UZEwmw>tcKc6!tJi2nU)OKfc{_mH93+NY1K2NZRh(%sH0!c5p1Rx3iK0 zu0s%NC=1-4RcN54gCC9SI*GpY>y@?P33YdSJGh)wU}_K|U@0)w2q&kwzLx>3%9UNQ zN$JiVAP3sp!86IpBsnBKf^J#$s7CdWTgs`|`;EX+D+;wxD6YNL6>dDT&>zi^o%}Mhmh4fhZAp7;AZl&>QO)YL^^Ri^>#;|M zv|{ronzURq7NKRCu>{Rz2F1;<-LN-D?9D6V>-LU?a}VG*S{8O3UMoHvB}~Db;L~^V z!@{9(QBNeNC!E={ZtQsgMQ0$~(zjOGmjrYmTy!v!b1%i441U7Sz4h*T)Gr4Ym4N!g>&21t!)tCaLUja^FQ|z zF@5!z>6k@39_OHt1hp2Yt8OUKWF;OrIi~93E8Ms--w4GRsO#2rqD=wjm!*8ymiPZKVKFogWQ>vK5q%+ zTQxVek`cHH6Ke=>XbE~rE1eD$&*#PKT&AkCHBkEH>#34QOO@IOm{K#46|m6iIFwF( zfgPz?J1b^D)WVKh_aNnyP%h}2AlGj=Z{hvk(@uL-?Ixu6S>%TZF8LyIL~7qe%z z(hQ#F#B)u(B6w{9vs9|I1{RALs5i@eemR_6(%?=}EaobCcpK1Hai3;5HIhkPB74#k zum_3~63GN{~ttZdH8>tLe8MsIyjTRch#M*!qrQb|C)6 zSnc3k!p823Y8(^?tWda@D0$z}d^_%GhrabzQVol?*5He3=tE2L!&jzUUD2bZZHbmo zuA_S>VDaX{K_(mHq!f@=_7)|)Uy5l&KiKy>9?13P12zw^Ie;x={b48QRzPssuOUzx zP_P+FG*>H?dL@1p-5K~)d1PL#N<3Ar0v2VwGTQTnqaW1hY1E<|@AQp;6>kC=8??J1 z6>c%UP6oJhQbNReaIMBy6R%UYQm25GwMR}MJ5_G=`rj}8j_9>FbvNa8+f@7Uv~gWh zzxvB9{YooV#QT+2tW8_+KD ztTbPZ7J33S+NVyz5r{|01dWAuVZH`+s$n#?n#L_CD(XOK^j^1fVR~}J^X4jTi@ac# z=63~l1*&O0A(sigcvp|+wheAv=rg>ZiiY3O^}wwQcZKX*TO}jw%`!cuGE{Z5U@f^` zi4KJ_D1JsQXhkj6kClOI)fWIx8jN50IiH{DP4N6b;O)&)TVl3+MKxQ3Y6FV(%8FN% zQVQhK*fVe|y90Jm)vEbA(9Y`ly1;I+CQzrQopV^JGiPA3+Ae2Dnnu%y1(^_+WEqUy z#ne)nERUrCl9%8(rxDbFJN$!>cX973ui(NmSIBp?kd|WMOwXB#E#}Ko`4ZVWlmn)F zY8>kg$Yo2o>VfA6)FV$a12Qb6;pMhKX5QmSoiNt9CwYEyXpk$;7U-sikZqD!kV-yq z@YP{HbcuDqSi&$pDlr**XNOV>;Y2tr$i^&B zM`sg%f`U|agKP_7Tdvxe;?AU!emi98R0i2n)BW49tKZ|m)~Bj!ALIo)VH)Q3N>%ut zq?TYc7dkq5J8{`K6N8aSzsycKD23^stPRImU>Lvt@ZrM(6IlKFmX;PolQja7Ld>P$7KU=FD*AMIr+3v4O(JskI{e|!+ z1Eol&l%x~MjDJG}9=am*t@-6{(97w$5KGl9Hl~_ zAGGK|@mu9zDPLNrD$xwdRvN`J1_z!c_ci8>CjAxCW4iNC#f)$m!vZyz7)wKZ9chiF z51x%>^qoI<4y*NJ>D-+yW;-tXwJ|rgnC+7KR{DVQrGv7PihGW3(hwGcTE{&J^)`h; zbkuXT&0pgw)7ZqU^esl^F~c=E_vzv5ls^O28pD#~n28bJQG~XO8QeHyK_>60qx9CX zH1+@?1+hBHf`~&?;wYg-_!Z`F;*FW%i7YF0VkYX-gbG34I8>&LYaF+5LcwBBTFJ>1 zV>UjBlv_J{#mGHhNvxsNA_?Mx{bA zJ=G_cNoNc?rAPyd(J1`^;n3n6p<*~;)@)zY= zEE}{B?WDze8af^BThOJ+DO`GS*#zsqHTd*$)&gASY)k1&(y}?&zHAFRBiTa4DufP3 ztW66853t03HmH5g59hr{R!v^zMs8gsw{9hEJ-2D$%w}%h!uf^1#oFku*456nUHg~1 zms_Hl#lh~CoI6Ltwnk``4B7B(%gSE72!rGB!f|9-%3GRUE?qdyFAWQ)Hf=eJ#}@`R z^9vUSqq#*0>Ea0XE(3qmUW7H)r9xO=vrX{CR?qJ8yjq~hq}=_T*2^LX)!`X3zlvm zBjx+n%1_?w{BZBRp2c&3F0TzezcL%C-Me14?^BK5RH_o_ZPz%HZZjT_~yk#YpYS#^G3#0q456I;nA2(48fDp)amr+hPyTKqup20TFK z*YcXs-tY#jX(QLec5*#z|5Z-KT_1ATg=k4-xN0z5GPrIZjOG*u4R4l*_G0nhft88X zXWqNMR?{8L6IS$*yrxZ#lVBXM((Y7I2)nEn3oLE?1Hy#L^AGY3*>=h1x2}ZKf9XNvtuoL=$W;=hN!)K!@etG z-xa!W-(HVkZ3tqOEo@}hMY2If?q@dv$&&XiOYlV`zh#N$l?0t{9{Tt8;#jE=s$J3k z^ZJ$Jt9!qH4!*9X-TxIm{F0x^p#bcf_0FL0(a`^T5(zXx~ch-JXcO z{UNHJ7aCisUN42EH7%!tFqQ|$-+DP(R1x&PV+p+&DXM?R@}Q{vQ3f9W#;CCuF5P&m z8!udS*Rht@7=e#2*7`kt>t^t4k*wy;#@40G;B4sWJ2xZQ_3}VKI7aPz$0I^V*jV=O zES1sb{rA$|8zssEI({Q$iWEB5tqqT!)e{l?WJr&A1mBzwU0N?}Sed>z9BDbZR(Mh= zq#&fdQydzO6t{&l+ZWRip&**qcB_9guMzHGnK|LSo)0mo`@@<2>&E^^Hcinf?ZV5S zdv{}=dbNN5g}vIJcb%@s&%doHq4VK(oWpHLaE`S1>hY7>J%r4x$%X``8iy0eynfy= zuTPj^MO{MOlJE;wIgr3!~mOwFK&&oC+Z&IHm$1F3esnN$nW5cdM+N~Cm#^MDV^6n>;q zoMROsT7(X74e+v6gx-8r9uj1>9I8C1IedzZY865t176ccIMtZv4Y%KdBZrBp6U@$U zqM#@Eh{>Yr6Cl8!&FJYOH{>W8K8h8LC|7lys=Hp zSoQBV-f3L3)<&(_h=q6->zJ3G!=jL=jUF}MXL zDUOshuJlGqT2|}UN)G-y?)T!rL<=mwf2fd6PQ<=@(OMlKXIV4idl8vu>;!w-z^s3I({UAn*M+87W;=!B51N(EJy~3 z6VzeB9Ua>pShqlN2M)N=LW7m?fsNyU8*RsSH(Krls{oM~Z07l=2Gkz# zkQQcyFTd{ypU5?rHFL6*h9}BRTaeW$QT*hb)GZ zU(Vb0P&oI{y7kab-mWLZxhL1GCsTR5s{CYAdApLI?7H;?d8D1xelC$~ergt`3=9Ql zVMHyWbOMeaseCHonU3hQ#M(R=PW4o;;7k0%a*#eru{Ow`KzI3H%j^zkcF04*sLBt9 zWb47$odWW{0Nauq$VjzhDqvC=5m;OP4jAL?56itnu0${fFJ{Xzr?u{y6weK+=XrRZ!`jz?@^Vo}t=oj)A4q>k_ie<*v=4u6bH{IYj}Plry-XDwf#;8L& zQv**Y8K;y120f0=-Hu!(tn?7Rk51Z#aljux4gGJo>DER*tfSo-c|V~ z>NbbiM8h9wBeF@q`QJHGcs%>8gO@3evXq&Ql8Ct2@7x!|w zDk$lR-$2~s!)t>#unu3-t$CGyHVs6+sPXoQ7yv{8w`T^337NifVZ z2huF`P9qjGg$R}LK&GNV7}z^OLWpLWUy+eIl}I4mkruoAa7D6g=p_>>Y;JIHpLCN+ zRH*MkXf@~TB;CMHqkhuZ(DINT&u(G~s< z<8KOv60(ue?-Z7XazE2JhGQNCdv#KFSYF96%%GJBAI-u5HtwNflGcZk{Kl4tstmGE zTzY_Yr_AETSUI_A#Hoo1*oN`aSXYUyVSE%xl|reIX_t&U+`ud#YCGgax!n?<1EB0H z$`Y*_GbPb72#TH^N1en#PJw}(0$a#~E_2hacXmvUmeQCUyaUTWu>`b1=)m$>b%rZ* zGag@u{O~5Q%>js8>^a79Jgax&!I%S2aMg?}_9FZ_7DMoL5)l4+>SzI2U6as2q3iL} za19YTC%tNT=k&}K=Wti^6qj^4l3^^|9aAUN?`cZPG`y#Y@!2u5A_I2+h(k8C^YU^S7aeJC51|bp^jRTpl zhwGemO?6{+{PhPqC{6iLs#P)!^ku+y0d}4PA0IpnZW^00)j!q_Ki0k+(@w;+*yD+B zs}s{sv&Yg;8O-I!+IhZKH;jA!ERJcLnh) zrpBdRi3bO;fflU-^2mVu{n=wvzL#LaWg4F=QxiUa=@Y8rH^u3v1k#SRAoRYZcyZ)z z)u8+xJ^#;i`akLPUvP?96f5e$V1LY_*ih-lcJa)qrx03%SzRy2%!viYFy=*JzGxGu)Bo*C@D@VqL)D6dJp$Td0G%UKi4N6zz4DVwk; zc^%ma!)(m#cEK#j<^m~)-i<;-l3%PQmZ{7fOyL7lDH$IBd2;n|M`XVnew_8n?+&q~pyFRE^ElCGafqoJMe~c4X{9Mv%atjwulSu@ti(r{7 ztqkic7fvl19~M-+eQo&~tS~)yd&2qcWGJ-5KuAWu8(KqQl94ZJ$>%nUHOsCQ`)Xyx zaWrZz+^|+etQA4uFJYFk6@IH{%~qdC_5RXYvvcZ!cYE#-JT};PZmqc|IoktUQ8cR< zi=~F|46kJo%xI*!Kbl=iW}RPVS4DG5zxDE3PQ#N@Htm%m-SYX6cg+rqNyT^TX`R)Y zy%{>BVBec(HaW8U*;Si(wepB%_XDe)E}3OU^_E3t!HY0GeI?YlqP=^3<>|Yp!$qx& zr=nR!-!(_F8dl~$Opml4-^?ov?s>C2)V(6Dc*8Y&?xn5HuGJhuVVn8I!HaJWhlW>k zSM$QPd+*iU^WH02tL^)e&z@i16{+1vz%Ufn^nSSO!=iB2>2S&EHT&sbS@L0SKzQsd zVKc8hbSaYOSZ%oX^q(|GOJUf%(-SSFs3@h!nf>p$cC)v}06I3d?2wrBsJ6`($iz04|kjMeHG)oR&{juJc^ zu{l<*gj`iq292S*4EUMfn zYK{~&uT0%9IDKw0OOK*Gpjh9RfVD|>sAb_MUnc0;qtC!^MjnykYS~0 zO=#aNs0a(E!Ud<+vQI_JtC!448qL>?pIlF)Q77v(&zjF#lXaSKS?5bd{s9-Vg$K*` zRm?xlSzC^TU8i4jc?9;HFNpUdvhC1Gse&b}wEStyp@{2X>Pulwp@qdyfZ_{Q)V7n` zeaHpj?Vp(I1+f0<%*vAC|G^XWjcmdsKS40MG*{6j0-?xE;wg`?z0pQej3g*Vw-Xth~f*qZ*ma-m+s#L{Gu)S%-C&Ti|pWNd7c>^7t9V*2k zMepDfdnKN1*FJL1AwkiuAZ3Y(Zj?vTpgFKtwUnN#53ivpdF3mgShUxrA0cgvHnA|l zWGHLrS(8aUm_hzC%^(3};xmYyN6xT0Hf$XcTgPhWx($912E%FXB6bSPc{^h{<1G`M zOXNTq?Qid2-v8FYh@}iJAmQSc)tny}eo*+s;(P5Mltq-V7l@z{F7CSb^j|*vlV|_@ z`43$hoEud!vLB)tVE?474wL}J8!_RYPBiF z@8L(P^*V{*Kkwts>6p*($ye~Mj+-{WWL_9N=S^4zixo{6a8X&02o2)AZJsm{mW0-C zr}gt#n_iB!FIaa46C(m6F>MB|$-?SZS<9klPxb66NzU{X>sjTe>M|&#z?Or_+PC1> zP2rPrF%-!#w&h6pxkE4K0W9e{@*u6}06xXKAB8Lc`Z+-JP_583Vcm=lJDYJWR2o9A zrn^u2@|407yDrI^D3+7>mX^>mUQZQ%-X+xa)Ili#?{8RbKB(xnauAxwT zzloWIPc{??%!@5ah^Baeq=1-q-K?io$IvZYcTV=SwX`|7_cs?%`DQ8b(ZzPJ^-_-v z*+Z~uIdzOHA|NFr*iw?1oOn{TJ~_PQ3Duh9IkY%rSZE&*+NmR{!igA|so-RB zaxZ9k>IMM9L=y~j5MXi>06=a8TqT+TpqL3#3d1v zBCxAC#fnss8BYuh4qSko#e+DJo2>LPotR;qNpvK~F^hSU++<K`($71l?=I#-4(4z3p+Bu~YY>h!{JMLQ&b2YD619nP-aWKIB2YtcF~ ztI+T0Z`^@Z_+Rmf5(Y&!H9wH2X6_Z0PGKuloOGOJKqrPsl{FFsO$FgXvmrPFVNy5YkgMs$;AE35z=Hm9Z z0ja%BOYJPgn82hXzZn*u_v2oB`(NOhi7_o?nz1Tu$?ZSGVoUAqe~C0(JniR6t)7Zm zp)$0$qk;5!-R*yun4D+-3qDaiLim)Mt)L%txUVh@fb%NqQTZAK3?OcumcghG5U+h}BGH9OQF0(JAhh(n9Z-s@E%l z+>-mev$emi%8S82UgpsWBI{?0SYj@*AU<))BZguS2mxz&# zF-b-sp{}Nmtw>^lPn6G%IFO8!_&?~a-olA(a_wW${iSbHVhad4V>BGLgff<}oMccx=Tqb<;~;3P~zgu5T??u?Disot#^` zfNGtFMbb-*73T$7G}#51{AmKuHI!~wrEU~EBE^n1iv!A|kb^t?2S>Tz_A-uL0L51$UVpIB=j{KcNd z(-jAS!h42UkAK`QdaF@Of)_yBOTr zaLL(q``K82S<;FIsD%%_+kK~d-3CQr$*q&0)S^8;_mZ*U)ng@nyR;vbo9J9;qx0TO zoPVaL^q*B4a8B*kN1MzfRA7i1g?8V1B-X%7yLX5x6^}{@{Q*>2Yy!>_vF9(Ts7jy& zhj)Q$I_7JK<<-L(P635JH4Wk^he~71U={k$<_<*&>HOinUj}d$ikjU#~%VpHXn`Z=@^C=hv}67HO!ktqyHu1J(xT zG=BYB`mOYo{W#%Wk+TCt+}lekf_{b?X3HU_gK3nRT6nq`xu%FVaq-1j*e6GOypzS44sp(!&3e3Ni>7R)2p z!P4dqJSZaT({VPF__D;-dThzNGTX{A6ep)WV-V9B2SYIF`Q`2P96(Fq)0r7euXWa z$X^cWk~RK}mX#zugUAHaZTva&M1p8U@t_oZ%qtSRsAUW?)+?r;eP-+!B3`e zwe&}*z$Nte+kN|BD`T zxMf?;ZxaoB8n_oU6pvbaYyZ*&DcNCo)CP4+2NwGuAh{pQ$W8=(%jZ?;5b)Qsx`KAB z(JT!0-KkhBJ_s>g``-T5@%Ijgja_ViF)&|;ft<(i?4hfpbn2xOt=N`m3=T>#Cu{r$ z_Vr@fw0e8gjW>{A=D5tFg6l(4qa?&@&J8FnE{p=`Czpqv1 zcoxq}drOy!J|;|DoT}X}gqWxy`XHSFlJ~T17Qy_n7k4q;wU_u;;?u_hn?9ric;s*U zl3(T!X`XJ*NQZw&Uxa+|{((&^Yt}=d3yYWD7`-(bys%-zir+(@e?~9#+ocuSSSD+% z_~^t2e5_v5e`K|iTwKRy?SBTlzsteVV`-o~N^taV5}b`0tz6iF zs^*p1`b6Err#X+!&SmHY zN*{wM6>ravM4y5|6duDRnr7}rg~v;8tkp}j4|w6}D(GxS(W z2g?+;!x%>lB*tk%)kD9C>!fjG;g9>jCFWu*cf%sM5=|gJ>w+Goi))0uRY=vud~mHyN%L)$jmspzzUl|OFgO$?su1l) zDV;}}4L;Bo6_|XfD8HZ@dxEbwsm4U8f#9LcEjzWiw}})@D}^me!TBV+lcX0j`RI2K zC48?_Zh04vj0HX@OU_f8@C5#XJn3k`Y(;$)z!%@CUnniDa5b<_rug=-_5ELNExv8) z-j(yd+#`8z)@xc2iI(>ts4NpP>kzdO5$EDH+W}wdS~0xZ+s$*fIomjT;y5_emly?g z*qwifA<_rq5cAPwWQXh6>bEM&9L(pFY31Vqk6>6Ihb#f@yeM;E&t3t^7rY*FIfI@a zA$|}r#d8h&=E3wud>O4SoM=T{lUB&v0A+DJoPzf{kP2fSk-HggEga6SY@2k^18xqC z6U9YgTCQdYHq3mdDDc335k2gk_9B20+tvjRuS_RFJ2msIh)MeJR&fbTb`mBWPG;1J zw*mAe*t5&YwoXT_RW7~>5L%JR%7a(2NNPszLP+~ma$nhQP^wBNe`hg*3Q6^4#~L7#9)Xm0}utYjj#JDig%@=q_) zHSL7~4OJqZW83R3&3Nz)|6$2aLw+8=Azm`$_(CL*iLmd1_- zr9GMZDq2wPKsT{tkNk|Q0+~6FL_B}`%k#sR>mA%Dl{uPLgN!ieQ>lusm^0>20m^(c z5jmKZ=?49;wgnL_kAJ zh!Dr#nDuP$xnupZdks{Eh)p(rg?rfCq=sYKN$V83{Ua#S#1!0*6Nb_%m7(+$*tx+= zqe!_lK!Jj|#nfR+Xft9a7B7dnev+q7%*@sVvu$tq7C7m0r2u$+OmvQdh5d5?dTF|* z?#K?#-{nC#Wu%&Oh>TQA#MgX8T-`lfa1F>I?$g6}7AM~w3R#o=#;IGUmd0NnTo{Pv zq?q3(}+9+y_6g95&uU4%-vtHD_ zcO&OXvCa z;9*Y3M$Umq&VhUO`#FbM?2|h zlEkQzn^YP_cYvGHUv7!+0LPs#VGD(26YQ-?4#22m%p^idOJ=y`KpljTx`@~iXGoIa zXh9HMmgKx?EbsY%C6zr@j4O|xYzviY6?}>Ck-+!_CY3YJ@1uR_5ZOM^v=9`bBdKNN z+EJU$r@7;A3Q<7aI;m`yaH4?C@&{mQ%}_Vc-qj`+tW|&ePmzWNet7!lEVU3Kg8ueT zA+V;&3aw-Kh>C;b*65H>F7e%e<*-@&jcW z!08$8}wrp8WC&!)qH_I{a^7~Kf@QR;%X+iR<#}4%6YCr1E z#QA4tBhLQJddKkPm*<#&qZQ0@jY2! z6ffmctUh_8(30}?nxo398)+V(ozw?f0lA>rH0FNu3axXA7^^V%n<}D4>yi!oHhgL@ zSkoUFH746P&xMUuhz@2*XPVF?g`^Qk*gX1kTqyJCJZ*YIvjkK61ZcCZ^YR>OfSQLz zNeX;HKmz6o1Xo{}8{u5*#crl-L2*G+J}_-t4>niAKYw0(yBjX95c{Dj!sdK|jEM}c z&cM72jLan(d#A$fH63%z)A2bb!~eslq^TQVb`xH!pq)e#Kt;t_8dPc@(MwF8c8+65 zWAO8k(8*ll#X==eVA17sPQkt*QxQgcy2x9v>#JjMjl8DBrrGk1zDhI4c3@_0+4?=d z%H{Rrmj)ke&5yM%8~tWnMRnyR*zp&-}md+^vd>?aW-8t6TS;bMCok z`ObH~<^P@haL1qR`(WQ<^KLN5)4SlX6B=8nS%0GmTKUlVxj`5OWFyL**|Qd;B)mPe z4~Bq+Wgs4vjSKGbScz|XFF|osD30!|g@wG>rka0Q2mT9MmIsjFmAJcU z7(yuVum`ui)`N%8u}NoGbB}?~c@-yQ7*Qpl0M`0mkv&XA zNe?Ax@il#Vf|b4|tvLKZYW_UIRFJ{6cv;gqy>U0)KPMhMcUb>`%%)i5h!Z}zt}dyt zb212a(}X@37Y84jD#Zjyey5x$SW90gxKhzg#y#A3-NJK?X+H>o#(BWNhv&X-UjGg) zC10k~7wPmRI?ZE*2aINT3BUFcWK5by-e+ij_bc=JlX_Fm>iODe_J;eWRQopbRO+3k zwtH4{+RCXS1P3Z^p7+GkvS$v5dv3eS!_K+xTkh6BI2q5WxSdnCP`@!&zxH3O=G=DP z9Cj{bbw=Ht_q|3nj$kf$Fs@tBE8FZ!(~A?GK$DL^4;JE`r#FgM$LN5Bvytg=Kfq5VI43fnul zmJ_!S5QI}u7PU!Q)Fx3VRZ;@#0C6<6a&O2#WV+TDtl=8))=nnkOsJEFk@OYJQav1> zbdIL{6rEJIQhFp+AOV704f-P%{$fEE3>g;bb(B0#RACTV#j4+I%F2Tec6O^w8XWfG zPo)eCzBTiQm)u<+XB2(Rv|-LU-@TNxA(mCLP}Z}M)wAdZ9&gdK^Ij&3QdV#x2?>ON z)W6KUYSE$D^60aiM)i@T-VkfMp=d_ceuCkL7d&ix@Y%_SUj^U2I8-$Nzg zu9fb(3ERu=PlxtWE|tn-q0A$kQ8nDH$rRxKcqgqmXH41=dqx#%U3^m|Y?%WGLD)!7 zCQw{R8bKirh6l$8(nX#$Bsi}e3RIE}HvW>Jy;5dQw5*su33-QyP7V6{NQy3(G9ZkY zV55ylkYZ}_OiM0V(TQOO`q*h@XiNudBfnS7IVhRnUPDutWdHOsVR_xtP8gi>Q#frI zJmH#wu^~4sCKt#9<%paI4=5~k(i4tPP23P?;#{PU1OCY%uu@>64!9n|kpa0uIp^4$ zjpJLAyA?ELr=h+PPjofrVw#$KgU!dAMUF85$50t?hC>^WFEEJD5PABt6P+Br1QZGe zDbP)j+b=af7sQ`+7ABN|L9$k1jgoJai(yYYA(PVIffp9>cqay4BJBwI+i^kltX4!p zx(#Sq?oEH0$3Q-xM;-Trx*4|Pb&4`RTG!Dvy zAS{4T3>|gSLAq_DE`%)-WQ(w!q#oq+YN>#-6XaDegT9|~*FZfx;_s*ndWiwkja>@O zpbFdIew+_)*_s^Pf^LlLjfsu2VK8Tr;|9v)6`iIw~v~>x2n6}=lHaXld9{ELP{c>h&B(rtC zF`BvczR6>6hb3oD;icWPyTj(U`WAEA!h_dNT|G5l@tqNXhyu_Wco?D1x6*-xo>4nx zyOZv_-gfoL`KND8M5=d0(sxc-W3HS~TEtZW1p@&$7XrAspd$PS?-}qMbu;Qu;{~m;Kk~d?x5{HpVrRLat9>Kw- zH83$SBF?Hg1e>_f2unKrDv_5%OOi>nP2uk*h}%;M;zWw#r9ZG8mG2uo4nYE@gVvk6 zQANZ{me^L(kR2MSWPx%LVN?m!Ii^jRBooQOWJMC_-w|oVSAUQu(z7(eaTV|#((gAg zw;c=^lBqpGKz&xd_d8#Uz{NxkLij01Z-= zM`Bf^SPc<^M2rOK5|aHX&EKbxl;`g!MJ7+xvb!PTZkTI~y4xu}hFdpTXclI?xp8{q z%!{vY2_1k8HkOsUkl($K)g5(rBlg5Xz6>02*JW~e6kf>PnV!fCsT1f&c=K;LfdGaf zbx)cDosZyOv`IwP+=Yk@Z!nR*hxgI}pLnZ=0stQa^8|ryxWrTaS;^tIs?*Iff&X|b zWefiGKGB)%+O177mD_k>DDZ->#fLvMXyr??S)mXv^$ifL@$l*v3V%@m)F^~Hq#C6p za|zIRD+ORE5h&eQg3C3=I2BNjhYd7>@myK^3EDT|G1h-h+bWm9%KL?5>HpYr?}(_ZlAXvj^a$ z%c_Fb*I${ku_fy?3UFH7cJ+-1w|YD6{(KOc3k*3-Y&PcM{i zT1ej%b!-A(LBx#|0$*xfli0heuKy0+A$phOJ&o5J@!xSx*umM=CU$nOfkuh25Uht9;8<4T;u{tcuXUnsn>*+kaP z=X8|iCWuzUvQzyT{8b+Lt!b0#{>({_9`y)$vmQ#5os=dM3qzJaXEHM(rw1F?^z#n3 z5fC!8+<~8B6!fvVBaK+v-jVSTs3O<^U)?aUC+qg%L_Ge^I&$n)w>@NCsEE~eV&=h2 z4m1@8PmMxOqc4ai0*n^5aE!chV#|NLl9!GVgnxuj1DSadxQO3J?0mD2r#vjL&Jgk` z_D)nwt`=YHsY9`BIGHe~_kg!r#ifdQ43kIF!0YZ1)@R#lzR}Z85KO~r7V&$ZE{nLc zQ)J;hPs@8h1hNwz&PUj!70hCQ+7i}_VtXe`jL{@RBS(kF*)){BJo2me=~E?q^|1bl z=waVZu7xO4>1Vm>;wBq*(ih9TPSRa!H+``*vegFCl})WTOs&TO1M6EAfF4oYbHm)z zoPaGch~FBPZCJ#NVFNTy%6KNeZxO}dlV zKx{X(M`R2O*q&iBaplkI>t$0FY$beHi{j>eaq~{*1BG?K29Rp098Van=7463A~n$y zNcaGD7Pkxpqz+uhQ$%+Vu#A{%L0d=T=7ue_@s&#G#AUJl>vj4`Sg6uAoXBDn=xk`7 zq2uGD^dY;7IEiL!)4QnOg41FZsKR9AJd6c zyKy_0BernlP)F=+(jmCp9JPJ=b%w9Mk2m~=IGby@5b|z#y^_E?mPscBG~6A_tGTc* zwss>t#}R^NHHV;C5k4{hPzah;kc``7O>5?Rt{+a+hUXP6IEtq1GuAt(>ygtT+?|{LP)h(y3iaoC0mlH{TeDG(L8-H`2HZA=|*% zMKU%~jlGE42Efay9=I4oOazfr>LNmqDKDV_dR;gDkE4CBy^9%pKXzsC4!HwZmigNjvbHU{foMr_b68<8U`7+m8-=dMu4eO5l_f&g zlSy$E{yhkT9g;T+7VJ>X$4!3Aw_!R8tUZ{UAWDY$FuVep5mZ!$F#7y-(;&?RNb@;5 zK@l_B0CYodPC8)7g0NpkJ7YXycJ_N1addpTzmbv(nt;!$AxT;I7|T$uxQ5?=nGV=a zVh6EfNAwGh6@XA^s2@$4q{FXzWP@pTA+E;rm}>!Cr82AQg4quHWlaL|Q`&>@Xema1 zM}7zNATGuCinJhzMB<)IV^$Ids*^6h=NT!SM2RO!;G1+LmEfe97wpgGK{;T|>H3(( zkN1oEylwJ3zokkW9`$Yf9e9(nJ~>%KM3>k=3r zY4G?UDNd!j=bO)r9IqDq*)!`_0ii{Cmhh;rAzylxsOn2}`uC`+^c=3@=7G5Rh*Zj# zBXP4NmGR|Ear3IUxixNH9XGFuo7>{%wQ=*hxVb%UJ{LFl#m(b!^Hajy@;xe$OU3My zqifTfg5^{ltow%F>Z^O6Yti5p7IgnedH)YO{dYPs8XHZ_xSd=?rFgmmuDy3>clVy2 zc)EhGEq+Vv4`FAY14Je!@C9ilRjiRt|BQkf(zTU}OpKj?)6be!t5zWzFTbu|^f~YzM4wAP zLj}Kp&2ZopE`)L*U2L)Mr(}ClF7&`UKO+mMEDbFWOa+9>QX_{r%M5ptO=bO+mdh>g zZvL=op>RjUwd0OE=goc7`$F9d73;#)*H&Cz0U+wi>j$Hi>lRAdmrFKBN;XGJwl29J zBiv|_dCP}e77BMoT)Sf4tWbS;_2oudDe9Xd88tJ`(9T$1(WRl;p|I_((HUzjuQ2q) z*G|N8uoTVipn#Uep|079IeR3(DOTPv*ZtnE>$~R1Zai_*8g1;3ly`@0K<^HBEEYG# zDp$@Oz1niQ>rQ3Oob5g5b?1EBjm#Te(fY?Cm5<$QjZ}7ry6ym4W(^{+wTJe_%C_7X zyV>=@#Enxw%Umegeb;U+FG3v6!lJtlQ*rr~hRY4%?zt*Bh1W%kR?l?ZEi@rs=M!(8 zxLZQeO2xNr{Lr;f*d29s19tAsJ=1%>+IO!N%_tj}b{F)dn}1SVO6QIooD%>sNFd4! z%i~yX6baN9Nved!1=0##TuNoKle!m@hsTno7LzHT4(X~bE+sQ0I))jf49Womzq0oDMn!j?(f z7aa)CqApZeK7Tdo{50p-^DZ6as!RDUv}_z-142XKwD3#dn3|IuW=NK=`K zrWz;Zx*4`TW9rf~=~2o*pFZh1N$X|Oq4usfp*;+~nA@&SSGHFvTbKzzT9dASD%_)$ zG_$ay@_hy4;*ZR8tu+*vG(zu&EsqG;Cr~zo((B6@JVN8$ zgR9_5N~C@tUNkDITwmk&ZSmox$-x>L(&JX>?xiNI1#$cM2xKJM@(5%FzhC+Xlo@w% zK#2qUcK7t{m(J1>H%u@63Y}0zxNV7Of+=NL4X%%;{@iN3}(sp|F8+7_AJxHUMz`qAJ z*aW|vxJ2TYSS7RMzSdW137_;fEsB4pEQ)s_cg|Z#Exk%W4gmFpVNzz!Tlm9pqZR`z zWW=*x6)9cygZdw~yx+3Wx-DATwdm@Kx%1xao9+v>-E#X7&DmaorKDx;15=URm#}ja zK^4j`moK{NuOGtNp)IxRmsf6#tlYRzxM|U~Ng(Kl5B*?cq-F~?S6953z0rb(8T;*) z^*3^(El}!bW^Rn+ten{qIt^@4cnzKl*CRgt+`wXf%Y63__r1UGX7^It&UiuDZFpFe zMoU{}dSj(4MD3%ctMMzp;=2czYt|x2{9^vv+a=}Ul(%=!wJw%4#(cH!X3sr6zwP>= z@0CY<>p$GG=-U}9slJVMaNS!khw+ZOxgGN_Uf=WKnj7PP(y`ds^Ler(NHwBhBRY1? zin-RS2j?9Tm}oaIRPPL>#meiU{YNl_JC*fw%?lM9?%6FXJMNk+4f_wHm-`#Gc|XoAzT-Z-qbGS&Zvv@tanIbJk}~XU$bQ@N`Yx zsbPyAvsRm=cC$$*k;fMEU8_>||CibvwLEK3qi5ARoi&NNHQ0i=PmpOKA% zf3UePm^uuTg^{M#26Nnjjl?L4e*x9<=lI&VjqujuX)r?avv@7;+A}(OYWxg~N`OU9-clN zS|9aPW1yr}%$Z}^IhQuhZhUL=FJV$#@k_c%J}njh=P%s(?-YM`c)_&>Or5>r7Z7sP zho4>Yv~b4xR)dTP{GL|v8!&?Qir)kX;pa=an@yK8TCLa8Hk;nJcclK2b+hS@@$XM7 zwmGaHm1T5x*gtA^(shS@n=S35tyWzB$Y#U&D6*>u>8N-BPU7OyXAD10CSZg=X2eqY z&F@;2L1M(ZDT5VGM%G}F+RfN9j6>NWjh==W9lhENFzMqXa2G&NrwGaljj&~CH10Wo zb#LdsXUI7b+a)Vd`r>xZ6HhrZPO;A7HW~vGSyi&fkgWUVG{B`E>*tqA{|(Ro7wS}! zQ(iFr!sS_Z6-Qjf?{r<+d3on@Nn@m>asJ?vYs<2$E8^;kx_TCDJzU_B2{SC1Sp~&? z{nm~b2PV%9o>|}U{E>u-PEt*7=bv#qPnwL-ku(&<^O#+j#zBs`#Y2b+1=ED&XdJ~~*q8Ux0lr(QsFf!|f z4^hzK^oVf4M8Bj6oz~Ea+#Df-K1bKQ=6_4vxQIXT6aaO=GLT*I6ZE^%*C;)m{+2rV z0xmFfohJCvlex-EQCAt`BF(f#QuA+nvu4^}pLl0YXza?%mtTJSe6+YJ;%!=RG{rpW z7kVKGyl+aeXHD4%+Y92zSZ;CX#o6b=t+V~%7bCg#)4e3P-2d8humYGFnBG0z3tNDg zEAztMyI$nGn{IMvUD*4u|C%}(e;3sw?>(bIqClM~o$I%V4$}_`-7|DOI-3C2Y=H0~ zO)J7(DBX!JPGQ|GrGTgqDPS=+$uLSZ7^vh)mm6bs&Y~Kan_yOi1r0gsJr>;de ze;)@6teLzsDKoiKn*cAF z9Ui}094TswxSHl|^ZQ{x=#02J7Hk5MEkQ6#J6WFWD=>C1nTFuA!FqS{!8hzvWx`@| z{*UM{ga|<(RtQu%^sDf=CvYkY_m%x(Hb3M3r{b za>e^i2kq=984uk^>^tTXC1acbC~A_i(G`NPywz;FIIPx~?F+D%AIBYsA0y5Pe2PNi zDy0Z;EC{k~Xb%^`P+<&{)q#t0Ll!{Uwnj*_aFqnjR6Cz04IHp__8WmF+zA%oV(9`il4-VnKb(1DXI z!Z95NOPYwB1`B*tz_0oc$f$g|>Som<{Q<^KAJ$zfnU7fnFrWE&0#`&A)D2?<0YD3ce0R4Iq*)N&kY9 zq<^6@dChU27#}$$3X*9lR;iK%m;HLtx2O%|{uoltSnj?Ft` znaP}5KQj&(liP(=0={~#I$GEQ76LY6ejZN<$ z5$ZcV;i_<8?y0LUM@!b+a<|c1Ryor;bug40^^~blm6x{6ZV6Y)3r&Hf_PrGNH4jqg-YUgYbN8?yy7L7h7# z0J3lTan^=zZ^}a+HB5%P(WKZDVB=P0EN2ent+J@M*6m)If#QDCCztc}NhEbfDfe z$&wDugj~rF@;wehYGEGziN|T!`sAQ(O$vN7p^?DE8SER4d&O8qC1%P)FoC1PShST? zG%EzybUCVlFg8xjW>va}TP)CF04M1ao^?3IQ&9}PM*3H}^-q+HxIq{fkZNOmQ2I5c zvU5#%vL@SoVkZHFx}o48BE_J#k`1GvoTlGbP|O9>J+OtDF>mHn+U?ZLnVNTUmQu@L z@j2zjBmvrz?2OPA&G6mFAglu$2;_+1bnx{_;t11cs;4*J&d#OCYL~XoZvF1+YwcIt zuWh=zX+GtKEn2lXn!N?S2@Ver>jRgb1LK$-&8@lRsJ)wp;)p5Dys$@bhctYZL*)*! zP?^3$0~*AexJ6s@dMx)N?&CFD&2_gvjku6Ix&cl4KOvqmosI^OHTE1SVR5J&FWJZ@fOO!^h~bW1-2_ zuTaxqMwRg_uT5E4n>55&iCPGJBICuT${!`&#sH9c#S2Vs1!!!A@-2c|8>~|6X%x^Z zC8NZqZ<{-Q@$AgGa6aKrrEe3f)bHdKn&Gr_3~#}!>1EQd=#+zu{Mr{}A)oYsZquoi z3a0h?S7LnS#JqV^>9<|!(e!OM3YOBhMP1t#Y}-Vyt3(Oui3HI%KA?soA_lU9_s|Az z5{Mn(q|n=wfGIu4Isrh2dQ9Lbj#`)l%0pvWux@^#(+^NJvit*sPTMYlQbrSYkYbI~ z?ir?L1kHn6nq-#DmjX)Mb01qQB|a482y1ZOW1~T+rjkToeg;zB=kfOq?4(;=YR;tbFcoKyX&I6M3foYQ~{Z#v}kJ8^dTT{t6>AI=`X2j_HuhCdx; zcrlnVgjG^z%Fbqp9fjAWv~`+`TiWZ7l<5dkV4Ie6sq=4ONSJ+$KwMjvXpD>FH)#RGDty`A?ZL0_1#Eeu$MpzY7;(a|A^nJ z<_*`F=khbKD*b9LQ5Mmeqys5bcHy(%h7`V}0`L=MfIN!>G{@AhG8IGgOl^fp^Mz~x z5$m3VKJiB5IHgmWj*(tSB5b^atxZfn)}XvcnT#h_DtENMn&D1Dsl}6)3t5n)Hz_GK z>+ytiB1m$)|=QZ8y;d91GKM8I?!Sz$}POdAjL`AaV8zerH)Aw zZ1xko$HxS85@XHEFK8J$pk-)PexF>eTxoxm5#cxaQ;LL696k~-e`?dxC|59%0toio zrf<<`ROv$ED16p*@!wQkgGZ41Ug>XXouWD)VA0fXEFHcE%isSqZv6fK^KW>RiPD7H zlNN+=-hsULqd)o4pEda6&izE;wvWT?GMPUZ0wO_(j+;dD0X~0%IanG3kr}P>n zzE7tIbRteB?iIx6cCvU}Xk1DA5l`K>pS2~@f1zIvSZ2e}=h$f6(ce#slm7m= zbyV_`IF=O01S)2VyTuRD2&{btvg!-Ud&O(AsaY#=il>}{viW#GlufQ@aVy>ewT|Rp zWdNos9YaCE40&a0?niZo#`^pB(PB%hF0jR1SyNkY=lQ~U(Y*TQyj79BRny!5CchLM z1~8eXY!}mGzPe>!d&Jj1Wm|HT#>#7#%hyKA*V3<&SaIbt_O!)K^s9iMt&5be6VJ+O zmdn~AWo`7Um{T@Kikn5s)oT_UYv{5lbYQ8pg;1U7RV7u+C95JOtLRB#QkML(ORvtp zie&Csfe(K?cgia$T}jN9z2GWF-l^`3gb(%2;&A0u_Zz!n9t3-QtzUj{yRbf5xMI0* zZKQDRygypFQ6$NlI(*k+_xNs?)`rhTOIOX42G)SH#=VIxSgFhGj=IB z8w^*>o)13}$*+rM*JHB+QNt?{Zw>AJ*L`hEth)Z%uB*G|Uc9;&u&)RY8&8}@~YEi<;Sr^iamXKcUgyqk)wzhTAfPpUGux0`<2-f7y=Vg1<# zGtLS76I#5Px7>uG`&oK1l_asimc^z7;iED*aK%#@3Y04!%3=YNmTrvtD&tgwV?D2n z{evAo>O==LIFu8p8$!GfRtP#9?DtJZqFSU9F$s{G77bbUhX@5wB&)0l7tALRPsbzb z#N~jj+VCcoCDC$zPiC-4!Q7A*Eah3r{-mVB6>0(O9kE#-@ ziUp(w+?VS*C^Z|F^9qrZ-$hm^2#ZRuG+u6eyO~0;A+W`?cdB4!4K{RBfj7@hpL>0C zs1?$;SZ=|kgR=)i1GCRf^^#g?-Rm!ho`Ad#G2YDKics-v%AMTesb1h5E;|Y%j>1qa zz$P2QPtSE;efHa5n6E%g*l_)F<(f$4nuUtC`EB!oAD(;v+)eZQFVCM|DC&+Cl`R*w zMT*+~#coMk_bFSX7%EM>$CLP*eBdrVJ^5fWXxRJVsob6V6viddup%YnIkVAwpueEK zsij{n2&EWIj0?Ho3n4ZuGHC)ZS#Krcvzq#8YVyHqNPDn;J0X84>O@8vQk>tgg{4ph zLK)o5up9Drl|H(`F1?CB(gixbLZ{PoqS%EPh%eAJ33>J6?zlrSD$v#&<<9FgKu#b7 ztv6nwK@N>Am$yX9TNYg{vFuz~RurmUE?N=6|K63@^iuB^EIJCX-*uGU!uq1*U2s*+ z+2)>{8<=zaU{|DmORT&q+XB2y1m?WxkjS^QcyX*gcYg@b1?hKal$+iTe&mC7G0A^=Co{5coK^ej%rODh;QPy*V>O3tr!X!}sg^R#R>d zFinx;-({EE5)^ZEliTKTTwFrTs7Z=HRcSn!jbsCp<{{ORUe8jJr$59jYaa*MAY=BU z2uQ}p3yj|aQGBPl4S{hZx1w|$J<2<&77N3 zv|`s3(C*6M$n0(sLrhO0)FJk-+>E>z#FaSEnEJHxT}Z8tLcfN_CxmWj^9+US*paEg zlO(n=60DPUPZ0@1H)+3MzSulz=S7$H0me(8$!LLtBL%{;Xp0p*e-(`@1XGZ#9isgy z(KK|mN~bOk+Gts`2OD`pz=l&{-o@M?F&pNIG;mg?JVcGK%F(tL;6AOZT7?%~sxTYO zLt{y6=(LJXypl0RB02sK@rl9S&o}gR_do)JMmT< z&gzDomP6stpgY-`P?A%5r}mdia*ttY6vw2R`@CahA9Aar9i5*O(XGx&hoJ^X~w%&ZzceTfNG6m9Tcd%mH_z!U)l0vRD`8S~5La+W`YXEepDE>^)73xF>7VHIk9?vB|B+5) zoGjg>(*!+Wu8CD~#Bqp?eFoF5c&c2(xI-~TXESN`J$k7h%5nJ$-bC@#(@;XdfHTP* zN%}Dr%8GUuhc6IOUlg|_lp*~ERRw_|O#u>5DnwBEE7a|oN2tw&7(T$}-N8bI9zOKw zdqfh+Qx+sKD`zSdY}=FrQC6l>V)cy+j>ahmPM}`LW2@KwaOL|eADD{M>LTvusa+vk zXfV8gt~%x|eCN4{w?39p@NsrgtfVwF9_k1+&ZN?VgUh8&k+t&z;FcgiZSoVld- z`Mx(&wsppZfX(k54OhQCG`BKRwlYQ6YKX82$Osa1b-0b|IB;xCx*%{0Cg}cb2dMCV8 z0d3Q`>V_RIva#~Y@PW(0%eGi7B< z%JZqZASqx`CL#9JQ3th#pt%NnaoknuhgSY6;x#gjpXr$$q)$or#pm zNW}qmisA(3YdMuGr45zu;I=MMo@#%=HiBR=+vqq?hFQk-5k9-=T74kX;FTev{9>(K zYw0WdvxvsikOdKu(ocVC4X2kT_USua2Gx z04cGtob|i~JJPgZhq?|@z!eTvhtR*>LXe8(X16ysULgu2qSGx$8yoe zt3%;qa|7R8w@|ck${Q)#7^|pgh4hx@S^Cu!pM%*S=e`l)nnr4-Kn+kg~jLTV&O? zSV7%f-UF+-we_CK+^`yuax;6vRd>oN!WEZ~g^$i5rp??-S4VHSBemTNr9JSGQa4$( zXtDC z9>$4kr5%8BPy8kcyi`P|+w{Z=5-z+nNh*R+5ig)TX(ydnplCfh9AL;Cyp{}1;Omn@ zlo{rIs$7KSk%rMC(gfXt>Qoats<%ENGWMVFCUWnxrmec2T@+eYzWFQgUc!fPY;8@v@Y}XUI1A|6r_Z0;Xzo+UJ8CK_-@Xe|GksfPu|G8S@A(pq`CW6Ll59!1h^z< z=p5l75AGjI}s zL$-?O+}N9^qbBN1QSK}60f(a25;e-y>Ze?R%BUP1W}WqSEtkynSCo&i8joYvreM~p zbV#FVMm*6mi#mT*{zrKi%uM7IKQd|zrPZm?MGbD)$;$9I+8s0dfC}|}n zxF?y~YV%)K)x{lL63P`ppR`;~6rH5GdkVLL`CWnr zG$+-?gkcr<&!`1E9zZMe<`%Lqgea3#|Dl0!W_TyI(&_J~N2<5{ByGu!&=1AS*()R2 zi2wH9-s_m-9aE0G7H3*RtfY+MGQkKx#RFI8Sat!7?$;wC>&9@-az$&TqIEI5_2V4u z_i4S}u~^cM2|b7v`Na3ipoRvHIV7SDk&K49n)%YDjIF?<0s@w=COmM}G3&YKL8-s` zB;Ax*LLvfk;$HB!(u{84>SBjn`*U|aP3MOHE3gh<^rgq$nu79+mp)1e&<7^AAf1GQk>pUy26Eq^KWc3v*?~)A_cbcS>WtC9R8LilIfKZ)s zZUQc4Mzla%yFOQW>JE3prjwGYayDr*-a5%;!vmP;HRY@Bt0jVR5X0>6t3RU2I z#^0yTa-+G;-<%FQX*QCP!lbwM5v``~kEw(}_9IdiDb2v|S<)nq#;v4$4WL~f)msVg zl{{!G1BnG}4_ZD~jVQkXO-Ft&@*8l1VqB5@#K^Eweo7(v^yY~P=7(c7N}K4FM_4m9 zV$C3zJfprhGzWxSMwMWLmqW2i`w_1NwRffRChaeBKn@JGxB8Zgn;|`hs!B7boUl#U z;99u>*7cBrN~32G`hsHqk>-%dxoSc?jjMo!;wz~2t607J4lptAZOD;+ zf|>|~sd>68Cd&NZ>8gaTTy!GosF z=$c5g^emnDRX?VCl#(5EbX!U3X`~63C z@zvtFC$5&UiZbTOdh^iqp?5Yfdg_y({lZfeTD#;Stc#3X^3Vu9x#%rtDqI!Gs0#1B zm9hE`(PaMBLq<)vGFlLC`jT_j`Ob+eqnAe)Gn(eBZ`Ax*;|GnA)!1!`N2h>TsK5TC zl02V!$OvkQUXVus;dtLW&n-d*Tu`!Hup&~hV%83f#Y;uAMen@4n7KlC`%XdW71w1K zH2djTRkHFgHOw|(RcV|eR4ABd^~K7oX?s?3ySzI5)La*WY7+-p3!$%C`))SLdill^ z*I$iPZ@pO^sqS6MpxCL)8NS5~U$_&XRzJ@m><>>ZF|4p5d!z4er`eRb;$a&C7dj2= zf$70tU_SmfvQx|@gBfg0F|aSQ==i`iypIp#)XF@=tWnnkq*Ql2N^T6f4BS_FIqkm2 zH9>}|GvH>Kllpeq&|0NXNJ*{12OBA?Z{%O9hKFTU>MA6cqSit`*Zn|dL=B14PCAqt zvc~cW&?Z`!RC8M`@ky1QY4@NM$84bkl!#nq;U3I#L?L6Y70>i%_&1Og_Y6|Al3QNC zK}l&dDt_@AQsqxM*`UuUuGM_0lwOvMLOCzz=ez12J9WebYck~-8%xuU0J80sO36Sr zOsENBI5}awi}P5clICQya;5!6E-sI1!Ff{NwtP#~p`tbHy8NrOe99GnV=ngQ2=TRp)#ce?XUPQtV6m{X*9b0=FNoMxb3rQ ziZlmUj%+YOrDo)A*WRsM;jRJi;P+79Dc?aW>8H05o+}0F{+`^R`ypQ{?FzkVdayz< z*pN3su+tz(hp-Q$&61)wC4H!{N~CRHF!i~Y&v(3h{xC18LECV1O(19)ZWi9je@kh9 zpH4kEHIxdOaT;6RP?^F#jK#zgl z`ts?y1MeNWeh9k8jZ2Pww~NaFxDmV@e0!^qHnJ7mA}pSP(gE-)vUyVkk;UaA$%c*v zM+XakL)}Xy>teo2`cWENwVM7mvA_~0#VxBA9BgY{5Nca0ZWOxQ+`{GDhDdHhG#47& z!n7u!`r<_h*|F>{i@3`|<4f)uti0hT!Y_t`z#}I0E}8Es;$Qv#uLhyN>j4_IaxuFp zR#YX7`!rXs#g&_GRNfebO7+Ce7e6=^E!s8Pb*IP|UJIe^ddRdlMv9tey8hRUTm>r2 z{MO6g?s~UC2x@Pvy_xyJ`e;Mnt{Rf&cQ3sU1lZ&CN*nkH^*{{ zU~9U2wig2P&{JPKtp1MY79-T~ck@Zpn*gh&vLQx>jM-72V;ZM5gi-|XXO#NPb8pz-b+G~?YiMpb!jBkx+vq3?wV zj8x03ucj}#Tlg-uFDZr5nh3crqOC_6VTGBI23sGF>lUG=X~+<^z0Usr)1&@z4B`H` zyTAX%@quCCY#{k*upXlmix64*z~)q}Y+=rpwKY5)c;4|;A~sYSpcCnP_|3vw)I;~^ zw1?z?dr|P0O&{BO?li87)vkD8ZL$~L|AN_NUw6OAVb8grW3^Y@cUtYc&G(&7d&~WT zYJ2|uJ?08~;r(8-)81viU*NSj+^=l2SA8;UUTJR@Z=&*#qGU)^p>p3x7TM>&D-7_T}?Vq&H;5 zofLEBN%qbNR(6dJ4}%0SHI%6XLkfa83R2nJdsL|$)sR>`EB-zB5GSyQhMQn4V=_Ym z6{_LJ4k@S;HO}F0-qjtzy4S1;PAki0LUj)X=Cu%8D!u;0+4_@ z&p}#AE)o_n_vaT{I6U1X>VfMNP^ z-OQUuo!2by9)lUW@8{INLmy9^5sdGFg1h1JhPO9P*w3>And86_F+AP57wMGhd-^B8d&Y2`Yez*$JQ* z9uSy^k$kuwz2O#Lr%nc>B@T+a=O!*_`k{Wf5(hgqs+~D$mHBc?gBrZfJ#xrX zryi!0y7y7ilg*0iU~Xe+hU{Seh}3o^wN75A%G>n$CsGPxNoVLbaa)Q}x(ocY5`u#f{#XF#$NX`^JL{Y2;cYyXiV>8O6r>7&0^PS~+B0)J>L?3WL>yK4 z3oC!Rw~$vGb=1APW^Vj@9TCUcB}d)E@80=-pmYAJp&^F13RAD?{0=c?*VrZ|W-y1>7XgEXp z3oUx-2vVv$Nv$q&TUfMZang?ck^MISpCWHfD29AIkr3GE=u!Av65=mlBVq6FL=#HwkCv&)OKm}?B<9I)`%Hz?w#Hn zs*Zv?C1AKEcln)4$i&25@T{@Q+VG2EDGc{V^&UqbQA?l#mkGF`EIhVc*S=WS&K4z? znr54bwSCB^hh4lD;o|iKj9PBN>r?aJ(T{z)=DAPH!lULs`pX<#r^8-k?tFp z4U3}MK3olf4x#Akn;$9Ym{yl7DRbIt#28Gn&`AcRsfBu11Em3D_Z5`EGXnZdlJ~@| z-~xdnCLu`CIl=Hyt$e-rPGqjn#1Wt?U|D6CuT~AJ990XGIg(GeD&RxtgY{!iIhs*UW~#@PaV-N}~b5 zRY+JE)w}aliyD;pYj7{#ENn`t7BEo8#{Ls4{XnebjO}KEwcT!hc$g3)&LjPgaiJd~ z#?)M)fn;qf`?IY_2LcGk2&YQ}ePC+^14=z9tZ~h616Xm=0?8rSQ|gB?YDI@gN3rB# z&D#O!K3HC=zHwxUXdQ531Z{^0BKXuXiothO%sH9SXSiYnD<@PX=41t6Cdr<}c#xr$ zNU9=kY_6+Q@s|iCUhp*uliEqC=}>a?7-e}V)ia5y6cX`Jx}LVggmMk|8#rn@76gQS zIr%%UTO2ko@F_H>r86PzXpq*&)?M5aBi@n$tpN2?bN#yyCsF z`yOl(47Op&EG9S!6ZI4Pw=o3NkU+II!$c)YmUKwFaNl5}qy0OG(rb>d%>GgBk`6)B zjY|)@NREMLkIZ+>N-7PlmKQgXsU8%&_F#eNTUDyy6FnMe4!U0M*wo&<`q+8j%jbh$ z*Z_}?0I5rsDFjPvn%e!a!|?&!8u60op^pM6@Cw+_hy4w6R4fVRZRZdT1LDLKs?L)O zzcIPQ-13S(R;v;$(oL?UXMaxJKaR{G@D9(^>E-mwNILvd2+fW{3#4}~Il9@V79hy^ z#mo6CBl#-{prLWb3gg&?ytQQ5b{<#~`y=@jBWKU`J(2wNH>&ivNu;^*p4F1S@?T7r z%*K0GWGBZ{F`)V&AE3>bECiHjB1(Qf;jZ*5T^*yVc{-h?pR|?ZEezw1NW|AjU!fDv zk&AToRXQaJ{f^N+I*rp;ccC~E`ZeCkExOQm-T9mS5{ov`O1bXS&BIY-QghzINFqW`hLVa_YX*Z`Li39 z&!(WP+Q%8oD2++94Nd(GVnF3;5^FbUdIK95jX=ZpPbDXYF2`o0N&jhh_FyUv$b?QL zsgfzARJF!x6-nZx=0^(Eo+u%Ox(h@K+Jz?_C_~j%L)5t&k71!}4~&DB@RW&rp6q#i z-;)RWd-pxLxATDXcSs>IDfv@0THMxu?DQBz_zVt=#Z#d-0!AP_6aptk&-M$fH;6*@ zztZ>z!QaQ7;sIS>m)Cj{a{>mbpQCm5_sh$Y%>L384(2Czzbf{O(O@Lr{Z|)Ew;i78 z)Ciyw@|PSHw{t3F+t}mRMy`$s`DV0sQ>?a$e#4MH7Z5!c)9wIL=at!4a0#KPUQ!w> zs#q>s87Tq?!y8_~p&ClsNDxY+h_(E<7KdgRHw|gP8{lWjrh#pYWwcF38!V;Gu0LU{3E*%DXQX2vZ%ylm2HqGb!u;dR)SZ(HmljO1+uBLUd%#zTt zuz#+5K65?`p>76$c>4X*3mM(mcX@iD8C0P`l$8drG!enzekBIsQKE&rB;o-b}Or1)`eQw<2xT_L2?KOx=fFE#e6MxCf#PW_kk>5g2mEdVPrD3?= zQMdDfGzKCug=b^aaKIy-PZ=SzQG=9l;^gQE#CDxe(S4y|Xi-HsqLhz?Mr{+#9o>j{ zLjY-q`ANzo#G^`3Q5bOGty)>AVS)H6{aGr*Of1pf1G5|ZNdwnMrEZC3j+H2785vui ztWch6f0c4L+^3BVLMpYV$`xi{nzF-DmTy|r1xzrrEXu}5h_Vu8Ry=RP$1wEzFHxxU zQ<}DaNLM8JV-^vJtowP}*(XswgEpFx4Ou*;p?@JDI_8!y(G+J|OR59uZ8}X*A+ONs z9G(0qog^ejq;JvFx9A>uwP8Cu<{up&i`$P4j|Wb$Anjoqp;jwyMJO-He5GuLGVNoWt|i-Z%y$gp+s__TNjjm8ah`*|O6=G1)v` zfKS6>(CdS9TP(ZmyV>Cb*A87h^qum>>{YSi(%J4iP`q_q?g*cn@4Px1DPA|zO+Ik` zOQ&W}y>)siqZ+@ye&o`z*<+!n!d-JYbI0dink$Xwwcn_UKe*+ zEEKphae3nHmm_&AmNHg;l40^>P{@vDcL}U5eh&DVCVbc3X0DQ6*a(TU5kpHngkb)e zrW4;E_sIOl(ZS*2{(kHwcs)gfnjRCX{(^T^r26X7~l{P(F>bmRVA zx=AM&y*!s*PUF7o6Pv}p>X+EdZoP}(WLw3Mr*y_ceg`rpZu$Hcn4?g178^`X?D%WP zUl>yQQ}9=ToQ5$dekFiTW6$f6vhbo{(@tP_4gnkx=+OX|?s>dvJ&g1M*cu)k6cWc{ z&=V`_s02wrQCV8+A7CLO4##37+xMF_#$C51!>h&dh+N<{mDDicH7*%OI%*m?^&7t3 zj&LjTyTBt+jrkyGu}RB!&0i((A**EZn?^E?foc3Hx)KQa7Co4J_)~Rh9J(kyK)eFn zfE~~{GAF`D!fBZAG^zNQOpzKU(~P#IhK>?ybRih8rc92Y2<(E{gy;r+yWKiu-Q{JrnMGe%g|46-Y9WYXyBRSeTjB8|6 z;@AqMj=)kT{OL3ehyjGt$kaNmUv)=B3Npw@I{a!BUX(_3mXAlIb?a)S_UR+is4&1(E8pq2tVSagd(?D6$pP zQvf)ycB1|(h4Shv{cluC zdUsE6=TmzQ^zYo>x9`awIR@^wp1!Ufdpn=p-M_o%+5OT9su`_?aVP8V$X7BT<6*n(!E6m5 zTjd0bX%+ewJ_n3$Y1NfOmk-T(Kg^GoGO$At0_-uWuzPMWn%g$z1Z41~ld~torStY^ z-nuDQEHj_{YC=20{%GdPsT9~!g$^v_H-?{%-FVl{%C2^`gIV<>Q%P zO=T3kJxlIZfDeT@YJ6$KTwMfFYi(b5-a*{>(b-W*n*hpGMnb1M-aM$w$@i$K?Y+al zfB0L$pQKN1hduKz3d=%gue@^kmBsQk^I6ftwy9KrLuce)O8;7Vxb9l>x10ZPIkmsWzCVYX8KhOtA=YWS6k*=qLtg|MmfMAua#ddpD&A6JSNhYRuBT! z+|$ugR0gos!jJ(Hw_A=P<_7wVxy>*J$|Vzlhk}kGoGs=i?j#>Z?3i&%l{Ofb(~l7* z4&&TLJS_?1g5^5qf;6yVw5$9@Gt_4^dZj<16Csf+iWIsLz(12>rTGzl1oL!bSvPwg zqv5LK zy!1Nd07D~q-Y;R65XXCgL}|)X-CxGW(C3t&88r!G2&oIdRtPgV25f~!TGLPiDAr&b zjSzh55^f}bF*Mp$y_KX#`RA%BpdzK<2iaQflq=2W2_8AUjP;?R!3K$irpKRk|TsqxI+gA+$ap&8jp zM#R$i8CjM=3NOXVkzb*ePO_3DD@QDM?1E1shCssD)!px5QjEsH*mY%0!Ka{r92?;s zk(qm`WVU2EvpSMl4JS81hIF#CfVr8N*|vrnjj#t>Ucb+clqFI2xCRQun{ z7)bz32D+;iqBWq-z&rx&q64(Q-ln6*8lo%S14jJ3b4=R|0F72xHhBRX^)WW5N-C@xRaiCb z8m_L9Kjg`BQ5XFg*i0&JpsudFfY0ngDnJ0segviE@m`SeKx@5xy`efml#@I z;7cApGFqa>7FKO`vYa^VYsFS7wfv>sdy(_?5gF(-Sh=Y#6VuV5LJD2bd0=Q zqyU@fV^6|g!4fjVkf+j5@$MkBVoGqFW_6*XSXluNY6D`CRd}g+wizK2vuePjgLG`3 z-V9~03)o~ipcj`m&2C!Gu8m~ZE@!tyvReSmnw58{akgnVg+m&TnMi zUtOhcBi?BK)%>~qXazu3JZT$%{sNe$>X02!bR>=*4j+i*H7sSUARX!9C}6H%jJWIZ z_ck2$a^7wvm;3se6siNQXnAuvx3ZgQP1`-YJDhSWr;dE<>pw{`l~#q$6{!LENJB%rHWz*$NK>0rrEpES+vz}mJHr(@~f`SLs zk71$_^!out*ZXZ&GQug<**F+*d`3bfjUFOufD7;C1FMwb`ewx1Ycmb>)B-RImC6~? zQOIAD52%^d2#_%0`t|hvwG;5YGvbt(Ze`E zl#UGg6mCstM_Q{7oR+4BN7#yS*BFEQdZ`Go=3ZAbr zbGMvb70Ip&?}#D*u;aF?FjODzzP9J;p5^NGk?QqJt__$jAG+II>`e-&#m2Z1XLnr2J@42tLm+Lo0>NiEbn-?6LKV>h3IAuxZ<$^!0Kt=aTj zm1Zz=mD1dZ*a435jymLMd&~L-HbB;mQ{leo*9}wP&Zq-a$d(evC!4J+KA~EfT4YdJ zkJ~#i92ji&`FilD(T7>0mMY$9T&j}>I30;KZdA0x2c&V`OkkMS1gSrD<{JEa@EA_I zV6tFpKHI)uw&2fCu;7n9YpkXg>~3Y%wUVnPbN=OuHL%mK*!pYf2;SZcmVAO<7<{8m(x4 zukkuWWt$@_Hp7^tVk^x0%eLOhE&!B_z$(AyzUp4~t%>;7L^Im3Gt1mSi{QT5eag&l zk5soubJj0ptf#G7$HUW?1~D&V{}V1qVM@UqGy^?hg=@sTDU%V*-)69|_)d-`V&f|S zooL%NHZr70$o7Z*Nx*peAQmv%yjhJ{c`SG-$JC$-U`e-vCDoQg)s`F6&l3Do@&h2I zj>hs)7PD&pH%9^LbR3+YZszq4!3u)XA0Hk)g1-~Kmk_Fey6N3^W z_oBdKV7E}b99>79H$?h{Ye7IL$dnX}2O<0hP7EQ=FQnaL17JiIWvy>)FffL2-D3Lr ze8$si7rIF|tsttWX$9()3F>92V89Qv{@d^gNYA0`mZktrtY2iaB|c=A?e7tbNH_RP8}z zz?4KlJ_H;{xm^Nqsz}M|<&yQ0lJ(J&4%k$uZJypU)ibje;DW#xeF~Nr-mGZW?we07 zW$nJ@-3`#GOP*OzXq=?UKpplklx@6~u?ZpX(l&nr{Hwf~W3Rum;3(zUC{)_kJ{e!Z z{b&U;2|1;|q!aD+nT3~l+d;i2(N`s#QIiUn^|%G}T`l-7(kr*$w^iATAM7$)?Ntw) z8TPyf)hYHq^ZkrG`-TUrJoYX3%Ut%32SqM9&@-2iAZVs0Wug(nS?^3RiG91@tdp)F z)|KD-ZCGOJ00<0ygviJW%G6Z9;4>RJ^plHE@b#KKS$au zf3`ozpZjj!_hg>rku}Ko7ig%V{=#>QJ~KzLzrbJOFZ~=T%lzejpTFXBq^#tWRT_pP zNyR=#zG}2b&AYXV4D69#S%-A>pCerZ(yjO$=~g0LD19l-TSFCB3CbB?kf|v2}u@k{`x&fm* zx<;Fk?@3 zU^WAm{#?#6;_0OjwNVupA(#-Y5cW$O0C&Op@o~RET8M_gT1fwuo3^P**|YwNdhI#+ z7k?P4fcBAPVi13U+aXScx56}t0$`&?PoEwD&w}BEkp)i>EVqNwNWfPw2g>X4)yP*3 z*R6;ogphzxiALcf5%&UOn4vN8bx6}nyHMdU4%sWF4vHn9vZkga(jom5_04~v@wtXd!Q-LR ze7NCL<{1%?>V_`C(leE=h);X5mj@`;b2NrlOJ}o!TmCo6eh94 z7?#N*wm9@MWe7=RF&hvPcr?Mt(6J%39~A)+!_mQ^m+%Xf-hZHbXJ62J0ECMwzE6a1 z4`L!{-jW5U2L}S<*pA5tK9n$UW)M1FheZ3@c)Dy+B(H68=YZcYTLHzrim6V|!LB_| zb@xdBktn5iZ|A}OJv;k)`uFtoZ9lLh?%LVc-P3oVfB()yJ@E`JfB$i5bo>lP+8r8X ze?uoS#gR_oy@^6SVdW#1U+EswTqS1wA}-)|;wcP`%{>$IZN&aQee;Fh`!;K7ulYjn zlC2O(xpvpGEjMC=Rd;CjeCCbzSTSJ<*z+If>Drk9W=6 zZag0=?o%H>u6sN*=ee;XR{WUyaGUPoskx31U%hKFm+Ugj&n@=dW*EGvbsL`Bbu;Cz z#ZuBLC$QRA>+61UuKvchSn>Z`+LZvsb>8>)*oD2=6WCprYdHigmn;F6IAw&mgoG3< zTecNjLPC;}IP3>V7D3KBM-5IoT4L8g<5sxS8LwJROxl@-PTksRnn@;|rn@}iU9Cxn zoK2dfT|iUEp6T)Xe{bL01?|K$?HlIL_rCl4-uL$X?|-|}eMds~tdP2|T(53|>2hwf zGD=J0AY=aFaE@HYr?$q|KH@({?GajmZ45MK6WfjYvFwMHp%2E}4f)e)(sDZ$+Qm0K zVD~Jiu8czoiTd6bO=W%WTv)(f?w?$_0Hq$P)5a^64)X~;`NsSmE4AzSp5N6`sehV^ z+v8h&WXBfMF7RbIKv4RN`rWpUbZHZc|>sTzGQw76N)DG6RQZJD7};H zO2*j%$4Ft%3Xdn$RnT;~HJ8+-aJ;pQE(^6_E+?@Y5^M><$@qA?T`C3YWPxbnwdGMj zJQ4e)8Hy_L^(C9LqQ(+m$0xK%CXQ8D>hkz6@UK`AYZu0Gu)fQR_bsPptP-PrLec7c zkP9c|&01N=)?~Yt7|KmGYu&j^qkBGK4P;TU>zcL7b0=P5Z1((@&%sve=qL1+ggi=c zOhutiKWPQfx8AveYJITH$9Sa=&Ie9fbQe;FDCl?@*o8W1C6_-~3%L~!=0blEavhXa zJy`Z?%9lL|sHjJesw>1?+I3x4c7pMQ4L8%V>V3N^;dX~2!M|XJ2)1{HWC**iL4=`| zg_szzZdWmGVMt<5c(?V_#+}cag?CDFLIw@Y+ORUAZF*9d$wsW8;lXhcy3i=kO!*J& zl`iaF^3}jis9YD}diB#Ldfi$0T_g1NGcZyU>tF{+9O&I7_7 zPsan>>)^b{I`A26T0h~k4Cf}@aAK1~DSQ&tCU9A>$MwX@?LlmYScycDgPs89cR@lX zW6q=*sS1uh!#){-4z!jvFCrR;x-E*Cu2d1m3rv})O%N>TZ4z!o8CA7o{Mhg(P+Pc; z=zy#p)fINm(_Q}J-WsXp-sf(R6l$DQEj(;pAOqMehQ}^|vf9zVf)`6nfeD2ezCo1v zzztr{zNWN6$EkbmC*ez}=XBOgdrjSw8%lkRTO59CGXp z+Iv0{zKAc>lq<=TY9tB<&d0MZ3=i#mhO}XQ;G7Zn>Y+3A?`hD5jJre!Yw#kxM3L}m zu*Uru&i9#w^YL_zK+z+Gd`xXB&kgG6>gd>YoJ&UixXbp8m$_pCW2SvHrE|kojk^T^ z5=cfg6DJMnpJU#_zY-u;9V9#_(50s^k}mCuM2$qu{R7t%PXQz;Y|Ge&<7N^L2Ze~? zu}3@l&$gfF>+I>0v}4nT#)*ZK5LokPG;LCIpbsG z{(^=`!wUgAmC;`3$G~(O7!}ksJq^fPk`TcbnKdR6k?<{Q%*eOjQXMUxDLXt79eeUj z|5puR-Ebr$;c3ZBi11?q4?#%80H3Lfkx2%2B%;DPA|{BUN0p z#$`vCOp7ELRRWaEVk3rx!z`FF(2wc(ejRN|aBSyHu8`3aGdOV{7hquoo%??_|vOvj{RYS?be}J4nh4hV5_)$CTKgjmfk>`!_f78t#?i9 zhJUHm%ftTBc( z*+EVALh0?w#mY5JX*j>+_SMC!uo?;L%pqM)P?xjNxuz>den6YEuC+)WV9`a-k2S7v zQ(LI%c(CdC`}V%&0pIiU*AT4x`PMfGCF!&{tHcW|aXY_^eS^@Z9cm1r*UcZRCkg7`DH zv8}0JQN^}~f{tU$W8y*vmqGb8NT`?l+jD^S<<-3-xl9Of{N6U_7c zNq!^GP440S8U71m-u{`sFoKo01|9ony2EBiAg3~DuEgUY!}CCC!%D5_JVdc?vIBXI zK`XT2@I20O!@|YcOrg~Zm!4eBs9Ddg^mi;bh`BAk zj&+#k^e*KuXZ;}kK(rXEjFxlR1yWc3vX#n!(<3@NXN@xsUlAUlx9_8^101Hzw3fe9 zSaqygy+bV=2U-#+&M<-Ev}#-*_YkH~mL&c_`R*%j7BJqA8ZleS#9AyAqAHo18(a-S z@R(HLPL<5}#h>G?rVH)T{wVdXM#gBE8hH|xIXKnTLTOibSDzpt1cM0S${`xPN!U^{ znr0{F4AtO4!*tqNtu!_;X7x)NSdONVuBLQN^FqV4X8ZswP>GAT>l(Mm)q~-Fo||yW z6_U_`>cOW&3S#cJeLf|?|%*a7S}Et&U;cV7u@lwH~}P7(?zp^ZXa?`V^RGD>Kp zID<<5WQ3jx(j{isj@2u4l5+aB6ADcPyguokOlt& z&l$Xgv}w&HnBsUWQ}3UYOebXvZwP6|2{FDn#L&%aLj$A$LtkmaPj?{P$d|G8lW0VE zC__#!y3d`HuncBwdF~tuejxFJ6iMRmgLTY0pTK7uLbmZqNT3GB_4Hl5Gz_-+L2`gB zA^SH7wH<;pMg>QLYtJ!K|BP{jF;xtj@Xe0lxnO)tbBGuv{3k|VOqHDiu8hW4fSo9d z9srA(;m=ZBbJRF9^>Q4k1AiUUz`!p+i+V_+N3a`|2V`UNxta@?E=#$DO_0zGb0S#) z7EYZ1OJl=8)`?9|O~_;kQRJ`)+A?JwP~>ZiNk1gq2x1%IVxxO1rON#=4@bfg1Bi?Z z!Vp6h8Jaegoq)|JOaOG0@JnD1eLK*4V%agY{wX9Bx4gywH>5tUa}-1A_w3X-NHun(CFTozmu%5Viu;o`FUD$ZSW z`}!iY?1Wxl0qOM>G)X!~pYv4mQyG%Ln~85^5|UxpOq}e=WjyQcDMsle9CoK&u!NsqrK!Ym-JhW0IDI$hg<_Ya74;43 zi$E3a<2-74xlL##+SaW(ujazC%wUcA@P2B|P!1KRkfkhWDZ66^v)hz;>&%zVER@{# zEP9qYLnRHtl7=6+8lmuHB%Zyse4A5STW34duK7nA z>tYGviOsJxzac%}^~wfFR0^8VacLvKPvh>imx7 zQqk1l?Ls7;RY%v-<+n!O99e!oSb7k5?>xmu`>CVS-xaEA4pudbjuw`+Zr_8dV{eYZ zJ5XN=<6txvqxr+`LJ^jKqzTM+a7MLguQHNxN6KE4@ z;jwE_eOGa@$CRuUL{YB69x;E#5WkmG@*`$e#!18$h~StMMU~qD!AnWXbfJf*km6hrT7wCr5j^O}OSK3F6}95Gg_Tu}>M^4CXRTP5KycIG;8SHqzt>T&EH0 zmH4^+Slc{2FmirypmoY|b_Dv#318Y+!8LkSOqhw6d#C-~?!WGS?^A!%>y=`5odTtxT#j)}99?>bn ze#uQRMXC^p#TEAe2Q`IA>UCiV_~R<(B;;bVAeMLIA8Ad2>w5O`4abZ#_Q+O?+bh6-;+o?pFYtM>MWP1zw+ zVbE0Q?bsc2}Q z8y=V-wG@dLsYlF2d|3$96+Wg)gp)D;-^I~uP~Tt<@ug$Nu&{rpI)6x0{XR|qKj`*# z0>=O_X<=;Y;wbQT;d?ZPw5!({4{|@%-A7h^}zoS$of!|QQcPUjx;7PiDjKF0A&l8v= z@EHQ1BXEnr0)g8E{))ig68JuW2mvx36|x982{aIBA<#phpTOe;h6oUoN0=foP2eVh zFA|s~@FfDT5g>F__$q-vCh%tjzDr<@K$rl-ir=Kv2!SurT)sl!S9HtJ<&S8e8CuOu z^R7~Xf%2HwAm-O+j&5HiaF+m6px>kv!`m5-%uojUwU9LRKTW-yrGbdR#?Pk|7qL}1 zfGQ~C#{Uu@YP^&@zj-i|S8rEvyy*ij;{y&*CqpFkA8>{bI5Yl!$mRTyEBGNt!LoJm zG|BMg1FPDids@q!W5K!9=${a+b!*!CA2|z`%0or9!6GpB>b%`+>Z}cu-D}veHF?cp zYl9blAap#KqxzSpUz+w^U)AIz4CnmiIiQxrSqyj@MSIh%VMEHCAD$Zyr)SL^zST3^ z6R?+w>E)~Gz5c^*cijO3+#0NEUHOby)f-OF-cD6H^fLyyh_F?7O+eYbL!zSHy1%ssPo zeQ79|wO2GewA>gpw0O1mY&omB2SnRJulb%Od)0MFv^?TPw7fkbXJyb?xmtBhbRG|I zS@-M(u*)d)Y;!6{MS#oL1X1Gf-4Kn1=v|-Tdt&~~+!@-c{lTLBfy`P_U+2|?O=2Ee zUOgx#pD;f)Hx(#q5FL#HE;F37XJJ42Bn_1Ii8&_%oHLwPw$M)=qypuAVjgl_;gXuA z!xSGqthR>K&Y;@4ka63&=-lMAMVct5ZRgYOQ*xWrx(K9dw^jN*I8TL9J7;l8+Z}Kn z70tbvlf2d?qnK5LGq<5i3#l@Kstg=;Rem@#H=4(bniHCt(F{xH97vhY^;Oii(Drdasn{I&|o zC`(35S+15pBIi;POQgD)Jf0h?id3w_A=8Sz0W8LeU+l=AyxRgsF~7oB=Nq2fE_ z9#}dGwJ|Cv;T^HsNJabP;gor2V&1Xg22+%}l#KSJvL4L*QMqSIMoU<37q3*NWb~A@ zIuD-{8xE=H6Vh-Nz9p84RBY>Ol~o`W#b=Zz+rlHHEK*TQMIVv6EaP)ynMiFu#dB6y zz*QkyD(?)fXvLbgpry@g+)7L1)3$65z7R2YsVf&90I4rZMjKgffigX$qDQ1r3za8= zRJ2>lw8d9V$!G;@Z{zi`PLYb`8I{!`6+0N`cx50;MmuRHn<)pCT%@8eNF!D8?pU8l zZ9U6t`NA!G3g5}&hgxfY>4q=k^Dp|Y_|B7?w?JY2vha;mse w?fPx>`A_kjHUs!GzLYlm=b>ha)W_pQaecG3t?uy(?)?hQv+Kb1s>JK5dZ)H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/_yaml/__init__.py b/.venv/lib/python3.12/site-packages/_yaml/__init__.py new file mode 100644 index 0000000..7baa8c4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/_yaml/__init__.py @@ -0,0 +1,33 @@ +# This is a stub package designed to roughly emulate the _yaml +# extension module, which previously existed as a standalone module +# and has been moved into the `yaml` package namespace. +# It does not perfectly mimic its old counterpart, but should get +# close enough for anyone who's relying on it even when they shouldn't. +import yaml + +# in some circumstances, the yaml module we imoprted may be from a different version, so we need +# to tread carefully when poking at it here (it may not have the attributes we expect) +if not getattr(yaml, '__with_libyaml__', False): + from sys import version_info + + exc = ModuleNotFoundError if version_info >= (3, 6) else ImportError + raise exc("No module named '_yaml'") +else: + from yaml._yaml import * + import warnings + warnings.warn( + 'The _yaml extension module is now located at yaml._yaml' + ' and its location is subject to change. To use the' + ' LibYAML-based parser and emitter, import from `yaml`:' + ' `from yaml import CLoader as Loader, CDumper as Dumper`.', + DeprecationWarning + ) + del warnings + # Don't `del yaml` here because yaml is actually an existing + # namespace member of _yaml. + +__name__ = '_yaml' +# If the module is top-level (i.e. not a part of any specific package) +# then the attribute should be set to ''. +# https://docs.python.org/3.8/library/types.html +__package__ = '' diff --git a/.venv/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..480acbd9bc27089e6b5d343d8afb30dd2b02312a GIT binary patch literal 872 zcmYjP&ubGw6rS1LB%5E>w$vgjOiyW~$)ZIB5uv6n3P~?5h^aE!WT(ltyE|cK(lkA_ zUi9eAe?cjNNB;*e^~b@E2!dXEi_}vuI+L~N9A@74-uJ!t=FPmz=QBX9dGmK?HvzzR z4bGOrqjmCJ9WQ_fJQ#pFFaUuBc!p;lm@$D*tC$rSp;bU_dW{bOyx zlo48^sK*Hss!Y{yK3u3(OHG%nbX}Km!jR5GLSG2N=8zwDDHCXe(GWFsvBoXb7$FVL z!j&p@JuT%Zw&qY}u@`n@S8O%PGBIjYf?{4;S}s#f_J+#vu zhz^bB%h#?u+!v(uHz{{UmvpdtcVA#!?ha1v+wpVXVHZ_3{Rg?PwxJ0jJjnr=`)LDv z?3p;6D!iQflybgW=-W)`&4mv$H{WNjyj|a`9A)x{=L#P)vxnB~59{(5Yx1)-zIX3w nZND}&%=980+8}-DS2meQ4$pz~xPrOKJzE`P=3.10.0 +Description-Content-Type: text/x-rst +License-File: LICENSE +License-File: CONTRIBUTORS.txt +Requires-Dist: typing-extensions>=4; python_version < "3.11" +Dynamic: license-file + +Astroid +======= + +.. image:: https://codecov.io/gh/pylint-dev/astroid/branch/main/graph/badge.svg?token=Buxy4WptLb + :target: https://codecov.io/gh/pylint-dev/astroid + :alt: Coverage badge from codecov + +.. image:: https://readthedocs.org/projects/astroid/badge/?version=latest + :target: http://astroid.readthedocs.io/en/latest/?badge=latest + :alt: Documentation Status + +.. image:: https://img.shields.io/badge/code%20style-black-000000.svg + :target: https://github.com/ambv/black + +.. image:: https://results.pre-commit.ci/badge/github/pylint-dev/astroid/main.svg + :target: https://results.pre-commit.ci/latest/github/pylint-dev/astroid/main + :alt: pre-commit.ci status + +.. |tidelift_logo| image:: https://raw.githubusercontent.com/pylint-dev/astroid/main/doc/media/Tidelift_Logos_RGB_Tidelift_Shorthand_On-White.png + :width: 200 + :alt: Tidelift + +.. list-table:: + :widths: 10 100 + + * - |tidelift_logo| + - Professional support for astroid is available as part of the + `Tidelift Subscription`_. Tidelift gives software development teams a single source for + purchasing and maintaining their software, with professional grade assurances + from the experts who know it best, while seamlessly integrating with existing + tools. + +.. _Tidelift Subscription: https://tidelift.com/subscription/pkg/pypi-astroid?utm_source=pypi-astroid&utm_medium=referral&utm_campaign=readme + + + +What's this? +------------ + +The aim of this module is to provide a common base representation of +python source code. It is currently the library powering pylint's capabilities. + +It provides a compatible representation which comes from the `_ast` +module. It rebuilds the tree generated by the builtin _ast module by +recursively walking down the AST and building an extended ast. The new +node classes have additional methods and attributes for different +usages. They include some support for static inference and local name +scopes. Furthermore, astroid can also build partial trees by inspecting living +objects. + + +Installation +------------ + +Extract the tarball, jump into the created directory and run:: + + pip install . + + +If you want to do an editable installation, you can run:: + + pip install -e . + + +If you have any questions, please mail the code-quality@python.org +mailing list for support. See +http://mail.python.org/mailman/listinfo/code-quality for subscription +information and archives. + +Documentation +------------- +http://astroid.readthedocs.io/en/latest/ + + +Python Versions +--------------- + +astroid 2.0 is currently available for Python 3 only. If you want Python 2 +support, use an older version of astroid (though note that these versions +are no longer supported). + +Test +---- + +Tests are in the 'test' subdirectory. To launch the whole tests suite, you can use +either `tox` or `pytest`:: + + tox + pytest diff --git a/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/RECORD b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/RECORD new file mode 100644 index 0000000..71aca46 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/RECORD @@ -0,0 +1,197 @@ +astroid-4.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +astroid-4.0.1.dist-info/METADATA,sha256=t5l4BBYEvCkAIxwDl8MTQ3R_PjMEhAg_68OqSba803I,4382 +astroid-4.0.1.dist-info/RECORD,, +astroid-4.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91 +astroid-4.0.1.dist-info/licenses/CONTRIBUTORS.txt,sha256=U_gusPL9QaemZkihIZjkwcXEbGP8bS7CseOPVOoAw4c,9339 +astroid-4.0.1.dist-info/licenses/LICENSE,sha256=_qFr2p5zTeoNnI2fW5CYeO9BcWJjVDKWCf_889tCyyQ,26516 +astroid-4.0.1.dist-info/top_level.txt,sha256=HsdW4O2x7ZXRj6k-agi3RaQybGLobI3VSE-jt4vQUXM,8 +astroid/__init__.py,sha256=FA-4lFE-nkNgJ9nLhh6BDYb2_rIgpFxaS0UX_LFUqC4,7718 +astroid/__pkginfo__.py,sha256=3A7tcVJN_hgkGvKs4KCIm18OzsbFKZtgnjbaVIFfVxk,283 +astroid/__pycache__/__init__.cpython-312.pyc,, +astroid/__pycache__/__pkginfo__.cpython-312.pyc,, +astroid/__pycache__/_ast.cpython-312.pyc,, +astroid/__pycache__/arguments.cpython-312.pyc,, +astroid/__pycache__/astroid_manager.cpython-312.pyc,, +astroid/__pycache__/bases.cpython-312.pyc,, +astroid/__pycache__/builder.cpython-312.pyc,, +astroid/__pycache__/const.cpython-312.pyc,, +astroid/__pycache__/constraint.cpython-312.pyc,, +astroid/__pycache__/context.cpython-312.pyc,, +astroid/__pycache__/decorators.cpython-312.pyc,, +astroid/__pycache__/exceptions.cpython-312.pyc,, +astroid/__pycache__/filter_statements.cpython-312.pyc,, +astroid/__pycache__/helpers.cpython-312.pyc,, +astroid/__pycache__/inference_tip.cpython-312.pyc,, +astroid/__pycache__/manager.cpython-312.pyc,, +astroid/__pycache__/modutils.cpython-312.pyc,, +astroid/__pycache__/objects.cpython-312.pyc,, +astroid/__pycache__/protocols.cpython-312.pyc,, +astroid/__pycache__/raw_building.cpython-312.pyc,, +astroid/__pycache__/rebuilder.cpython-312.pyc,, +astroid/__pycache__/test_utils.cpython-312.pyc,, +astroid/__pycache__/transforms.cpython-312.pyc,, +astroid/__pycache__/typing.cpython-312.pyc,, +astroid/__pycache__/util.cpython-312.pyc,, +astroid/_ast.py,sha256=LLKPdNWj6Qk4u3yj9wid9zIOsKf_YV4Yfr8L4EA285U,3003 +astroid/arguments.py,sha256=UwoLKjjgYrmtTHWRTEXuqz4g4elodx_DJIR5vBkCfzo,13094 +astroid/astroid_manager.py,sha256=uGIFUKDTjCdy757OF60r3apRqVybugBZh1rudtOSGMA,729 +astroid/bases.py,sha256=IJyVeO6ssO3QmBZ_2C4_yJO2YvxhtolJPlNisqM2k6A,28007 +astroid/brain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +astroid/brain/__pycache__/__init__.cpython-312.pyc,, +astroid/brain/__pycache__/brain_argparse.cpython-312.pyc,, +astroid/brain/__pycache__/brain_attrs.cpython-312.pyc,, +astroid/brain/__pycache__/brain_boto3.cpython-312.pyc,, +astroid/brain/__pycache__/brain_builtin_inference.cpython-312.pyc,, +astroid/brain/__pycache__/brain_collections.cpython-312.pyc,, +astroid/brain/__pycache__/brain_crypt.cpython-312.pyc,, +astroid/brain/__pycache__/brain_ctypes.cpython-312.pyc,, +astroid/brain/__pycache__/brain_curses.cpython-312.pyc,, +astroid/brain/__pycache__/brain_dataclasses.cpython-312.pyc,, +astroid/brain/__pycache__/brain_datetime.cpython-312.pyc,, +astroid/brain/__pycache__/brain_dateutil.cpython-312.pyc,, +astroid/brain/__pycache__/brain_functools.cpython-312.pyc,, +astroid/brain/__pycache__/brain_gi.cpython-312.pyc,, +astroid/brain/__pycache__/brain_hashlib.cpython-312.pyc,, +astroid/brain/__pycache__/brain_http.cpython-312.pyc,, +astroid/brain/__pycache__/brain_hypothesis.cpython-312.pyc,, +astroid/brain/__pycache__/brain_io.cpython-312.pyc,, +astroid/brain/__pycache__/brain_mechanize.cpython-312.pyc,, +astroid/brain/__pycache__/brain_multiprocessing.cpython-312.pyc,, +astroid/brain/__pycache__/brain_namedtuple_enum.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_core_einsumfunc.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_core_fromnumeric.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_core_function_base.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_core_multiarray.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_core_numeric.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_core_numerictypes.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_core_umath.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_ma.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_ndarray.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_random_mtrand.cpython-312.pyc,, +astroid/brain/__pycache__/brain_numpy_utils.cpython-312.pyc,, +astroid/brain/__pycache__/brain_pathlib.cpython-312.pyc,, +astroid/brain/__pycache__/brain_pkg_resources.cpython-312.pyc,, +astroid/brain/__pycache__/brain_pytest.cpython-312.pyc,, +astroid/brain/__pycache__/brain_qt.cpython-312.pyc,, +astroid/brain/__pycache__/brain_random.cpython-312.pyc,, +astroid/brain/__pycache__/brain_re.cpython-312.pyc,, +astroid/brain/__pycache__/brain_regex.cpython-312.pyc,, +astroid/brain/__pycache__/brain_responses.cpython-312.pyc,, +astroid/brain/__pycache__/brain_scipy_signal.cpython-312.pyc,, +astroid/brain/__pycache__/brain_signal.cpython-312.pyc,, +astroid/brain/__pycache__/brain_six.cpython-312.pyc,, +astroid/brain/__pycache__/brain_sqlalchemy.cpython-312.pyc,, +astroid/brain/__pycache__/brain_ssl.cpython-312.pyc,, +astroid/brain/__pycache__/brain_statistics.cpython-312.pyc,, +astroid/brain/__pycache__/brain_subprocess.cpython-312.pyc,, +astroid/brain/__pycache__/brain_threading.cpython-312.pyc,, +astroid/brain/__pycache__/brain_type.cpython-312.pyc,, +astroid/brain/__pycache__/brain_typing.cpython-312.pyc,, +astroid/brain/__pycache__/brain_unittest.cpython-312.pyc,, +astroid/brain/__pycache__/brain_uuid.cpython-312.pyc,, +astroid/brain/__pycache__/helpers.cpython-312.pyc,, +astroid/brain/brain_argparse.py,sha256=SxYW42PcxTv0YM4VGAS_K8iYnYDxZ5LQZeptooyIMo0,1725 +astroid/brain/brain_attrs.py,sha256=y6xnsBRIhXiJucZPjtBsGM-hNVMMOttBnxIHNE65YRU,3567 +astroid/brain/brain_boto3.py,sha256=efZTk72fPOe6wnEVCH9bIBFWxcQDlS5xrzuNakpR06Y,1112 +astroid/brain/brain_builtin_inference.py,sha256=WApCZIQF5FkFOO83PRdGt2I3vNCMEg8h5gGPwC3E6-U,37758 +astroid/brain/brain_collections.py,sha256=VetyHBQO9nWQmaDeujEOfZ92JANUpgIAWLH5-jT6uZ4,4787 +astroid/brain/brain_crypt.py,sha256=UKa9GpbK7b_N2fAx4-KNqr4Pvsg3EI1Mu1T3uuV3CcE,957 +astroid/brain/brain_ctypes.py,sha256=ZlOQHSIyvslgdYC_a0hOop3_I5uBh3afbQ8ZuaZxke0,2762 +astroid/brain/brain_curses.py,sha256=Ne_30je70tZpUyobl3b0Y5ATZhxolYCxfP-oLB4eciM,3571 +astroid/brain/brain_dataclasses.py,sha256=gzBGXp0cDeq-LV1spl-2kZtfKDltJdGni0c5SQg6suE,22119 +astroid/brain/brain_datetime.py,sha256=q9kjCi-Fz5S-u4Hyv88mJvCgXYvk2X8eEUTaw637lK4,813 +astroid/brain/brain_dateutil.py,sha256=y_GyQYVf_UR6zTOcgmVm3uQhkxVCVVzRD0Ow4Gg1jFI,861 +astroid/brain/brain_functools.py,sha256=I8nxIKGTcQKq5ZeGAiFbm3ErlZfLnpdUYy31pLXxwxc,6401 +astroid/brain/brain_gi.py,sha256=krGyADdWRjm7w-ZVTHbx77hylNgs8ziwZ1--RU6QhxM,7662 +astroid/brain/brain_hashlib.py,sha256=c76QAbD-LYkKMVrdAe6nRboJdG3l1LkK0UAZOlxfSFM,2799 +astroid/brain/brain_http.py,sha256=r7VgXSz-sKyE-WeKaz60oJnxqbCEzjfWWxwMcZY_Fzo,11413 +astroid/brain/brain_hypothesis.py,sha256=8fwM59eqVgKEL3Dkz2Uva62v0-AZhBPyFxXyOs65E0g,1885 +astroid/brain/brain_io.py,sha256=YV_hxg1EGjV3Wprvp5M_YF8pWoC2MK1oyyH3io6hZpk,1589 +astroid/brain/brain_mechanize.py,sha256=-80L1FfddRUM-qENpAZ5sro9P9Kgz2uchwjjM5ErJJk,2740 +astroid/brain/brain_multiprocessing.py,sha256=ATm2DwP-SXt4LH6hhwN-7ova5Bt483efnuKzKkulmfQ,3260 +astroid/brain/brain_namedtuple_enum.py,sha256=KDWuKv3mAHE1IYXu7CMCb9bMM7vmQnxY8ON96jgUuVk,24278 +astroid/brain/brain_numpy_core_einsumfunc.py,sha256=YfPheziU5UKb80hXS0VZcWVHmw_lQ1t0-Q-w13dwQyM,885 +astroid/brain/brain_numpy_core_fromnumeric.py,sha256=Aum9F0w1An28elWtvBcTHzohV0YCkIOqg8nIqkm179c,834 +astroid/brain/brain_numpy_core_function_base.py,sha256=qSusSR1lilumpc6T8mrELunZS3zgUuuouh-qzNBiBcc,1356 +astroid/brain/brain_numpy_core_multiarray.py,sha256=s9adpaJ8SAk3WTgSEuNgCUwx8HOGt_vyZdXl3QJ1OmE,4408 +astroid/brain/brain_numpy_core_numeric.py,sha256=B95vP691ynDRXFqhg_VI1TKyWkxGbdCZji3M8qsyTmc,1692 +astroid/brain/brain_numpy_core_numerictypes.py,sha256=Bgc4_qguu3ypTIr74STkeUu79OhtLwrD0jVUFSBZ1wA,8648 +astroid/brain/brain_numpy_core_umath.py,sha256=M2_oE2HGcD5DEcU3W2_CvENjxjuOxfLPvnSgFjtmpU4,4981 +astroid/brain/brain_numpy_ma.py,sha256=3UnzHTkN8H6yxI8km6bBZoWyV80U3vLIzfFyD8gEOLo,990 +astroid/brain/brain_numpy_ndarray.py,sha256=qoNm2LSOkaerQus6wOj9Lxbjgh7SAg4bEbfPQbZKO6c,9034 +astroid/brain/brain_numpy_random_mtrand.py,sha256=d3g_v9X1e4Wr8I9EE8g7E0d-hqGQk_gYvByj4-1HC5w,3538 +astroid/brain/brain_numpy_utils.py,sha256=03ztDMdAFnQLFmTOiEeABcSBv_gL46Mpi9rO2rbw0M0,2893 +astroid/brain/brain_pathlib.py,sha256=jX_TTTpf4wp1lePKTSGFFjbQVSa13fXafAfdIqow9JM,1728 +astroid/brain/brain_pkg_resources.py,sha256=rfjLwAejZVqM_s721UdAPbuEMyM0fx3sb1yYkPDeDqE,2302 +astroid/brain/brain_pytest.py,sha256=tqisdV1Cw2vdYdjTNnF_jBMO2jO7lw86Fjh6XpZoJ1g,2312 +astroid/brain/brain_qt.py,sha256=yNle65lxFYmRJksiaqksF_FINvae732yvcOl6PVdIvM,2874 +astroid/brain/brain_random.py,sha256=VMVXkVHEhdQ8S5VaW-tHS3hQYmQj4XI66Y9tV1qDjTE,3110 +astroid/brain/brain_re.py,sha256=-Dh05FNgXrWxOS-mrajf7LFUgozA7qFQzfjs8SwNoxU,2999 +astroid/brain/brain_regex.py,sha256=GI-TCq6gGAE9OYwyl2Bi9auJINJn0uF8ADBYekyKZyU,3466 +astroid/brain/brain_responses.py,sha256=vC9JUtdjtN2W5ux8_6G7QG_nhbZOBV3lMpy1fG56nzc,1962 +astroid/brain/brain_scipy_signal.py,sha256=HPGStodLs9L9APFnc77RZBf-PIlaKm-COdyTSk2KVnM,2370 +astroid/brain/brain_signal.py,sha256=Qt8cFsEwYmwaI_PU5aBBfYV4TLkF0lBPdME-oeGWMYk,3932 +astroid/brain/brain_six.py,sha256=ps49tRfn6NRtTpjmcBOfrF8shznz0T1SB7Pn1teWTIs,7772 +astroid/brain/brain_sqlalchemy.py,sha256=8JlRq_TCEheDtbc2BIupibHRtEZ4WasqLEPkkZ5sziY,1103 +astroid/brain/brain_ssl.py,sha256=MOU0L1wh-ysKzACAKVTnpCca6awwwsF09OcJi5-NKfk,6712 +astroid/brain/brain_statistics.py,sha256=howkDIgRSFh6Zy20ZS2OCN4HQxfEStiIwsICMOZ5bi4,2786 +astroid/brain/brain_subprocess.py,sha256=dj-Y3S_QbWaIsDA6j8a74xEwPd5Fe5J1uj1YDFDrcrQ,2962 +astroid/brain/brain_threading.py,sha256=3XS9DNglTezqvBUlWTKbhjWLgkjXmQR9w-p5sNPJLO4,964 +astroid/brain/brain_type.py,sha256=sThdsmoQwUxIe04m5Wb6WnouGk1ZmZWtBo6AfXqWLsA,2497 +astroid/brain/brain_typing.py,sha256=b5Lvle7K9vhxzvFqH3BOwB8aYLPjiex-6FQCdupDvZk,17237 +astroid/brain/brain_unittest.py,sha256=ejWKg85j26dfKWHwycKztGs4_RSPTtqs9mTF3XKfsyA,1178 +astroid/brain/brain_uuid.py,sha256=K1so-CZChY4lqI-qWQbdrrJu_z0gJPPG4h4J3Iz9FoU,678 +astroid/brain/helpers.py,sha256=VIf9Yy6SVaXBQ0Lh1oLEa0szhJRXuyTR4qANXhAeJBs,4743 +astroid/builder.py,sha256=pk_U8QDLwQmwZMnDRK7Z8EnJjeCLHV_7msGIf1AgVGE,19169 +astroid/const.py,sha256=dcdtuOYk6xd_5K9kLZcijEp93kXYzpb_GrmHBGccs4Q,694 +astroid/constraint.py,sha256=BzI-DMG1Vp3eapvmVjahYEL9VYSRoluGkTscokNUipc,6483 +astroid/context.py,sha256=xseGQ6wscT5eOPiLl7nd6nS7Mfwi3KrQGSScPlBU6h4,6293 +astroid/decorators.py,sha256=aUEm2t4UM31X8vpGi5BJb3jOcK44LtZQRUl9H1Dlqh4,8531 +astroid/exceptions.py,sha256=9OrH8LliIRyv85CQEmm0br0R0XWuRJ74tmIDAv2QR_s,12935 +astroid/filter_statements.py,sha256=CJRqKTLsspIfHlLjHQsEpfLjscjPoOtLWdLuVhb7OoM,9451 +astroid/helpers.py,sha256=7r3xj2r2DriL9J8IbuIlmim-T7aC1Jog7GbJ8R6TM7U,11819 +astroid/inference_tip.py,sha256=5Dsfn-9qie1Wuzc2XaWzhlPQQxD3fGt64RR3nyptvHc,4586 +astroid/interpreter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +astroid/interpreter/__pycache__/__init__.cpython-312.pyc,, +astroid/interpreter/__pycache__/dunder_lookup.cpython-312.pyc,, +astroid/interpreter/__pycache__/objectmodel.cpython-312.pyc,, +astroid/interpreter/_import/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +astroid/interpreter/_import/__pycache__/__init__.cpython-312.pyc,, +astroid/interpreter/_import/__pycache__/spec.cpython-312.pyc,, +astroid/interpreter/_import/__pycache__/util.cpython-312.pyc,, +astroid/interpreter/_import/spec.py,sha256=uVQdyJ7OTJzTM50EVmyXmN2bMUR_D-EXI36CC-NTPBU,17613 +astroid/interpreter/_import/util.py,sha256=sOWF-BC5JKuopbYAHJ71_tYniiNqZMq-7qs5QI3wb_U,4732 +astroid/interpreter/dunder_lookup.py,sha256=miAYo7UTVOhfMYpo44qdV3WJEk1P__JVTGWGPtT1wnk,2487 +astroid/interpreter/objectmodel.py,sha256=gP8LsWsw3uzXWh4QhecNom27Q8N7MKN4ipGMg_abSuo,34180 +astroid/manager.py,sha256=adI6Dc8b0HqScUoGet-FzV90CHguHpJ-s2Ne-fwgdOM,18331 +astroid/modutils.py,sha256=KAyhpORelvLrHnAVoiX5HDhDnMCuAHhoqaox2E6rSdw,23458 +astroid/nodes/__init__.py,sha256=X6V4GWkgUL8AuqfzK_Ns7jpCM_RK14UMyY8KMhEqZ8o,4862 +astroid/nodes/__pycache__/__init__.cpython-312.pyc,, +astroid/nodes/__pycache__/_base_nodes.cpython-312.pyc,, +astroid/nodes/__pycache__/as_string.cpython-312.pyc,, +astroid/nodes/__pycache__/const.cpython-312.pyc,, +astroid/nodes/__pycache__/node_classes.cpython-312.pyc,, +astroid/nodes/__pycache__/node_ng.cpython-312.pyc,, +astroid/nodes/__pycache__/utils.cpython-312.pyc,, +astroid/nodes/_base_nodes.py,sha256=IY3vZ4vEvsAepGTvrPf7zm11BPTlRQUndzyT9CmEsZ8,23927 +astroid/nodes/as_string.py,sha256=ap_dHTQTE9xyxb6GndRrd4TS4xdfhDadCW0NcGmktqQ,29106 +astroid/nodes/const.py,sha256=aD7rKF5kPM2UFJAR5pzZDAM-Zm7p9LG57E-9FjB1gTc,807 +astroid/nodes/node_classes.py,sha256=G4zKRdUNdp-u-wJWPdE72J5mBN5_bXkqKo6g5txIDwo,177422 +astroid/nodes/node_ng.py,sha256=SzcLmkZiuv2Pk4q6iPSfokPRdGaM9VqPLQqrJCaCKOE,26435 +astroid/nodes/scoped_nodes/__init__.py,sha256=YXf0Sc8m3HlzbG9IGtX2aHTSGbG4nHfxl9_kY_QLs1g,1271 +astroid/nodes/scoped_nodes/__pycache__/__init__.cpython-312.pyc,, +astroid/nodes/scoped_nodes/__pycache__/mixin.cpython-312.pyc,, +astroid/nodes/scoped_nodes/__pycache__/scoped_nodes.cpython-312.pyc,, +astroid/nodes/scoped_nodes/__pycache__/utils.cpython-312.pyc,, +astroid/nodes/scoped_nodes/mixin.py,sha256=kDdvUEZRSPmQ88sLD2edjalmU88-UZbUIaBERzCy2Ew,7151 +astroid/nodes/scoped_nodes/scoped_nodes.py,sha256=0nw5Rfr6liWKy9nQKIh9GR1_8TbNdRnqxjplh1nJ0Os,100638 +astroid/nodes/scoped_nodes/utils.py,sha256=rBKL_c6byvOWq7yzRSMNWsZQIe5smST8Dnpz40Nni7Q,1181 +astroid/nodes/utils.py,sha256=5strAqVk0zh9cOD4nH8EZiIsaDn5-gLIT2U1hAoY9wU,433 +astroid/objects.py,sha256=qEuJQ7WfBxxs2p1vpNGqJ2aunfXl5kUwVgZhdNu-n7c,12676 +astroid/protocols.py,sha256=tMR8XAboNiDOqlbdfoxjU66TNl0AD3OJ0Yll2zqCnsg,32562 +astroid/raw_building.py,sha256=hohV5ukMBC2xYJ9ehc6_QV3sop3i0YRkUY-hb6ckumg,25307 +astroid/rebuilder.py,sha256=Jv3xq3M2jdrJS1Y9n0wvYJbHB2ly9-UbXE2pelBbQsw,71520 +astroid/test_utils.py,sha256=gyLSvyMM7QfsfqZhmVW6nM1whn1ArMWTsiHi8_Jy060,2474 +astroid/transforms.py,sha256=AARfSAiYVQ6Ale33UOEkn0n-QjAgJ9xI3HZenReFisA,5946 +astroid/typing.py,sha256=fYk-NAnlC7_prv9jvfnXcL32278yJ65x-qimK32tW_o,2807 +astroid/util.py,sha256=H0hAr2TTxsK97137v9gp59-JmuCMWABmmI_0UOOM9N0,4846 diff --git a/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/WHEEL new file mode 100644 index 0000000..e7fa31b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (80.9.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/CONTRIBUTORS.txt b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/CONTRIBUTORS.txt new file mode 100644 index 0000000..65c6499 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/CONTRIBUTORS.txt @@ -0,0 +1,226 @@ +# This file is autocompleted by 'contributors-txt', +# using the configuration in 'script/.contributors_aliases.json'. +# Do not add new persons manually and only add information without +# using '-' as the line first character. +# Please verify that your change are stable if you modify manually. + +Ex-maintainers +-------------- +- Claudiu Popa +- Sylvain Thénault +- Torsten Marek + + +Maintainers +----------- +- Pierre Sassoulas +- Jacob Walls +- Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> +- Marc Mueller <30130371+cdce8p@users.noreply.github.com> +- Hippo91 +- Bryce Guinta +- Ceridwen +- Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com> +- Łukasz Rogalski +- Florian Bruhin +- Ashley Whetter +- Dimitri Prybysh +- Areveny + + +Contributors +------------ +- Emile Anclin +- Nick Drozd +- correctmost <134317971+correctmost@users.noreply.github.com> +- Andrew Haigh +- Julien Cristau +- Artem Yurchenko <44875844+temyurchenko@users.noreply.github.com> +- David Liu +- Alexandre Fayolle +- Eevee (Alex Munroe) +- David Gilman +- Tushar Sadhwani +- Matus Valo +- Julien Jehannet +- Hugo van Kemenade +- Calen Pennington +- Antonio +- Akhil Kamat +- Zen Lee <53538590+zenlyj@users.noreply.github.com> +- Tim Martin +- Phil Schaf +- Alex Hall +- Raphael Gaschignard +- Radosław Ganczarek +- Paligot Gérard +- Ioana Tagirta +- Eric Vergnaud +- Derek Gustafson +- David Shea +- Daniel Harding +- Christian Clauss +- Ville Skyttä +- Synrom <30272537+Synrom@users.noreply.github.com> +- Rene Zhang +- Philip Lorenz +- Nicolas Chauvat +- Michael K +- Mario Corchero +- Marien Zwart +- Laura Médioni +- James Addison <55152140+jayaddison@users.noreply.github.com> +- FELD Boris +- Enji Cooper +- Dani Alcala <112832187+clavedeluna@users.noreply.github.com> +- Adrien Di Mascio +- tristanlatr <19967168+tristanlatr@users.noreply.github.com> +- grayjk +- emile@crater.logilab.fr +- doranid +- brendanator +- Tomas Gavenciak +- Tim Paine +- Thomas Hisch +- Stefan Scherfke +- Sergei Lebedev <185856+superbobry@users.noreply.github.com> +- Saugat Pachhai (सौगात) +- Robert Hofer <1058012+hofrob@users.noreply.github.com> +- Ram Rachum +- Pierre-Yves David +- Peter Pentchev +- Peter Kolbus +- Omer Katz +- Moises Lopez +- Mitch Harding +- Michal Vasilek +- Keichi Takahashi +- Kavins Singh +- Karthikeyan Singaravelan +- Joshua Cannon +- John Vandenberg +- Jacob Bogdanov +- Google, Inc. +- Emmanuel Ferdman +- David Euresti +- David Douard +- David Cain +- Anthony Truchet +- Anthony Sottile +- Alexander Shadchin +- wgehalo +- tejaschauhan36912 <59693377+tejaschauhan36912@users.noreply.github.com> +- rr- +- raylu +- plucury +- pavan-msys <149513767+pavan-msys@users.noreply.github.com> +- ostr00000 +- noah-weingarden <33741795+noah-weingarden@users.noreply.github.com> +- nathannaveen <42319948+nathannaveen@users.noreply.github.com> +- mathieui +- markmcclain +- ioanatia +- alm +- adam-grant-hendry <59346180+adam-grant-hendry@users.noreply.github.com> +- aatle <168398276+aatle@users.noreply.github.com> +- Zbigniew Jędrzejewski-Szmek +- Zac Hatfield-Dodds +- Vilnis Termanis +- Valentin Valls +- Uilian Ries +- Tomas Novak +- Thirumal Venkat +- SupImDos <62866982+SupImDos@users.noreply.github.com> +- Stéphane Brunner +- Stanislav Levin +- Simon Hewitt +- Serhiy Storchaka +- Roy Wright +- Robin Jarry +- René Fritze <47802+renefritze@users.noreply.github.com> +- Redoubts +- Philipp Hörist +- Peter de Blanc +- Peter Talley +- Ovidiu Sabou +- Oleh Prypin +- Nicolas Noirbent +- Neil Girdhar +- Miro Hrončok +- Michał Masłowski +- Mateusz Bysiek +- Matej Aleksandrov +- Marcelo Trylesinski +- Leandro T. C. Melo +- Konrad Weihmann +- Kian Meng, Ang +- Kai Mueller <15907922+kasium@users.noreply.github.com> +- Jörg Thalheim +- Jérome Perrin +- JulianJvn <128477611+JulianJvn@users.noreply.github.com> +- Josef Kemetmüller +- Jonathan Striebel +- John Belmonte +- Jeff Widman +- Jeff Quast +- Jarrad Hope +- Jared Garst +- Jamie Scott +- Jakub Wilk +- Iva Miholic +- Ionel Maries Cristian +- HoverHell +- Hashem Nasarat +- HQupgradeHQ <18361586+HQupgradeHQ@users.noreply.github.com> +- Gwyn Ciesla +- Grygorii Iermolenko +- Gregory P. Smith +- Giuseppe Scrivano +- Frédéric Chapoton +- Francis Charette Migneault +- Felix Mölder +- Federico Bond +- DudeNr33 <3929834+DudeNr33@users.noreply.github.com> +- Dmitry Shachnev +- Denis Laxalde +- Deepyaman Datta +- David Poirier +- Dave Hirschfeld +- Dave Baum +- Daniel Martin +- Daniel Colascione +- Damien Baty +- Craig Franklin +- Colin Kennedy +- Cole Robinson +- Christoph Reiter +- Chris Philip +- Charlie Ringström <34444482+Chasarr@users.noreply.github.com> +- BioGeek +- Bianca Power <30207144+biancapower@users.noreply.github.com> +- Benjamin Elven <25181435+S3ntinelX@users.noreply.github.com> +- Ben Elliston +- Becker Awqatty +- Batuhan Taskaya +- BasPH +- Azeem Bande-Ali +- Avram Lubkin +- Aru Sahni +- Artsiom Kaval +- Anubhav <35621759+anubh-v@users.noreply.github.com> +- Antoine Boellinger +- Alphadelta14 +- Alexander Scheel +- Alexander Presnyakov +- Ahmed Azzaoui + +Co-Author +--------- +The following persons were credited manually but did not commit themselves +under this name, or we did not manage to find their commits in the history. + +- François Mockers +- platings +- carl +- alain lefroy +- Mark Gius diff --git a/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/LICENSE b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/LICENSE new file mode 100644 index 0000000..182e0fb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/licenses/LICENSE @@ -0,0 +1,508 @@ + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations +below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it +becomes a de-facto standard. To achieve this, non-free programs must +be allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control +compilation and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at least + three years, to give the same user the materials specified in + Subsection 6a, above, for a charge no more than the cost of + performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply, and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License +may add an explicit geographical distribution limitation excluding those +countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms +of the ordinary General Public License). + + To apply these terms, attach the following notices to the library. +It is safest to attach them to the start of each source file to most +effectively convey the exclusion of warranty; and each file should +have at least the "copyright" line and a pointer to where the full +notice is found. + + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or +your school, if any, to sign a "copyright disclaimer" for the library, +if necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James + Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/top_level.txt new file mode 100644 index 0000000..450d4fe --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid-4.0.1.dist-info/top_level.txt @@ -0,0 +1 @@ +astroid diff --git a/.venv/lib/python3.12/site-packages/astroid/__init__.py b/.venv/lib/python3.12/site-packages/astroid/__init__.py new file mode 100644 index 0000000..abb45cf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/__init__.py @@ -0,0 +1,242 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Python Abstract Syntax Tree New Generation. + +The aim of this module is to provide a common base representation of +python source code for projects such as pychecker, pyreverse, +pylint... Well, actually the development of this library is essentially +governed by pylint's needs. + +It mimics the class defined in the python's _ast module with some +additional methods and attributes. New nodes instances are not fully +compatible with python's _ast. + +Instance attributes are added by a +builder object, which can either generate extended ast (let's call +them astroid ;) by visiting an existent ast tree or by inspecting living +object. + +Main modules are: + +* nodes and scoped_nodes for more information about methods and + attributes added to different node classes + +* the manager contains a high level object to get astroid trees from + source files and living objects. It maintains a cache of previously + constructed tree for quick access + +* builder contains the class responsible to build astroid trees +""" + +# isort: off +# We have an isort: off on 'astroid.nodes' because of a circular import. +from astroid.nodes import node_classes, scoped_nodes + +# isort: on + +from astroid import raw_building +from astroid.__pkginfo__ import __version__, version +from astroid.bases import BaseInstance, BoundMethod, Instance, UnboundMethod +from astroid.brain.helpers import register_module_extender +from astroid.builder import extract_node, parse +from astroid.const import Context +from astroid.exceptions import ( + AstroidBuildingError, + AstroidError, + AstroidImportError, + AstroidIndexError, + AstroidSyntaxError, + AstroidTypeError, + AstroidValueError, + AttributeInferenceError, + DuplicateBasesError, + InconsistentMroError, + InferenceError, + InferenceOverwriteError, + MroError, + NameInferenceError, + NoDefault, + NotFoundError, + ParentMissingError, + ResolveError, + StatementMissing, + SuperArgumentTypeError, + SuperError, + TooManyLevelsError, + UnresolvableName, + UseInferenceDefault, +) +from astroid.inference_tip import _inference_tip_cached, inference_tip +from astroid.objects import ExceptionInstance + +# isort: off +# It's impossible to import from astroid.nodes with a wildcard, because +# there is a cyclic import that prevent creating an __all__ in astroid/nodes +# and we need astroid/scoped_nodes and astroid/node_classes to work. So +# importing with a wildcard would clash with astroid/nodes/scoped_nodes +# and astroid/nodes/node_classes. +from astroid.astroid_manager import MANAGER +from astroid.nodes import ( + CONST_CLS, + AnnAssign as _DEPRECATED_AnnAssign, + Arguments as _DEPRECATED_Arguments, + Assert as _DEPRECATED_Assert, + Assign as _DEPRECATED_Assign, + AssignAttr as _DEPRECATED_AssignAttr, + AssignName as _DEPRECATED_AssignName, + AsyncFor as _DEPRECATED_AsyncFor, + AsyncFunctionDef as _DEPRECATED_AsyncFunctionDef, + AsyncWith as _DEPRECATED_AsyncWith, + Attribute as _DEPRECATED_Attribute, + AugAssign as _DEPRECATED_AugAssign, + Await as _DEPRECATED_Await, + BinOp as _DEPRECATED_BinOp, + BoolOp as _DEPRECATED_BoolOp, + Break as _DEPRECATED_Break, + Call as _DEPRECATED_Call, + ClassDef as _DEPRECATED_ClassDef, + Compare as _DEPRECATED_Compare, + Comprehension as _DEPRECATED_Comprehension, + ComprehensionScope as _DEPRECATED_ComprehensionScope, + Const as _DEPRECATED_Const, + Continue as _DEPRECATED_Continue, + Decorators as _DEPRECATED_Decorators, + DelAttr as _DEPRECATED_DelAttr, + Delete as _DEPRECATED_Delete, + DelName as _DEPRECATED_DelName, + Dict as _DEPRECATED_Dict, + DictComp as _DEPRECATED_DictComp, + DictUnpack as _DEPRECATED_DictUnpack, + EmptyNode as _DEPRECATED_EmptyNode, + EvaluatedObject as _DEPRECATED_EvaluatedObject, + ExceptHandler as _DEPRECATED_ExceptHandler, + Expr as _DEPRECATED_Expr, + For as _DEPRECATED_For, + FormattedValue as _DEPRECATED_FormattedValue, + FunctionDef as _DEPRECATED_FunctionDef, + GeneratorExp as _DEPRECATED_GeneratorExp, + Global as _DEPRECATED_Global, + If as _DEPRECATED_If, + IfExp as _DEPRECATED_IfExp, + Import as _DEPRECATED_Import, + ImportFrom as _DEPRECATED_ImportFrom, + Interpolation as _DEPRECATED_Interpolation, + JoinedStr as _DEPRECATED_JoinedStr, + Keyword as _DEPRECATED_Keyword, + Lambda as _DEPRECATED_Lambda, + List as _DEPRECATED_List, + ListComp as _DEPRECATED_ListComp, + Match as _DEPRECATED_Match, + MatchAs as _DEPRECATED_MatchAs, + MatchCase as _DEPRECATED_MatchCase, + MatchClass as _DEPRECATED_MatchClass, + MatchMapping as _DEPRECATED_MatchMapping, + MatchOr as _DEPRECATED_MatchOr, + MatchSequence as _DEPRECATED_MatchSequence, + MatchSingleton as _DEPRECATED_MatchSingleton, + MatchStar as _DEPRECATED_MatchStar, + MatchValue as _DEPRECATED_MatchValue, + Module as _DEPRECATED_Module, + Name as _DEPRECATED_Name, + NamedExpr as _DEPRECATED_NamedExpr, + NodeNG as _DEPRECATED_NodeNG, + Nonlocal as _DEPRECATED_Nonlocal, + ParamSpec as _DEPRECATED_ParamSpec, + Pass as _DEPRECATED_Pass, + Raise as _DEPRECATED_Raise, + Return as _DEPRECATED_Return, + Set as _DEPRECATED_Set, + SetComp as _DEPRECATED_SetComp, + Slice as _DEPRECATED_Slice, + Starred as _DEPRECATED_Starred, + Subscript as _DEPRECATED_Subscript, + TemplateStr as _DEPRECATED_TemplateStr, + Try as _DEPRECATED_Try, + TryStar as _DEPRECATED_TryStar, + Tuple as _DEPRECATED_Tuple, + TypeAlias as _DEPRECATED_TypeAlias, + TypeVar as _DEPRECATED_TypeVar, + TypeVarTuple as _DEPRECATED_TypeVarTuple, + UnaryOp as _DEPRECATED_UnaryOp, + Unknown as _DEPRECATED_Unknown, + While as _DEPRECATED_While, + With as _DEPRECATED_With, + Yield as _DEPRECATED_Yield, + YieldFrom as _DEPRECATED_YieldFrom, + are_exclusive, + builtin_lookup, + unpack_infer, + function_to_method, +) + +# isort: on + +from astroid.util import Uninferable + +__all__ = [ + "CONST_CLS", + "MANAGER", + "AstroidBuildingError", + "AstroidError", + "AstroidImportError", + "AstroidIndexError", + "AstroidSyntaxError", + "AstroidTypeError", + "AstroidValueError", + "AttributeInferenceError", + "BaseInstance", + "BoundMethod", + "Context", + "DuplicateBasesError", + "ExceptionInstance", + "InconsistentMroError", + "InferenceError", + "InferenceOverwriteError", + "Instance", + "MroError", + "NameInferenceError", + "NoDefault", + "NotFoundError", + "ParentMissingError", + "ResolveError", + "StatementMissing", + "SuperArgumentTypeError", + "SuperError", + "TooManyLevelsError", + "UnboundMethod", + "Uninferable", + "UnresolvableName", + "UseInferenceDefault", + "__version__", + "_inference_tip_cached", + "are_exclusive", + "builtin_lookup", + "extract_node", + "function_to_method", + "inference_tip", + "node_classes", + "parse", + "raw_building", + "register_module_extender", + "scoped_nodes", + "unpack_infer", + "version", +] + + +def __getattr__(name: str): + if (val := globals().get(f"_DEPRECATED_{name}")) is None: + msg = f"module '{__name__}' has no attribute '{name}" + raise AttributeError(msg) + + # pylint: disable-next=import-outside-toplevel + import warnings + + msg = ( + f"importing '{name}' from 'astroid' is deprecated and will be removed in v5, " + "import it from 'astroid.nodes' instead" + ) + warnings.warn(msg, DeprecationWarning, stacklevel=2) + return val diff --git a/.venv/lib/python3.12/site-packages/astroid/__pkginfo__.py b/.venv/lib/python3.12/site-packages/astroid/__pkginfo__.py new file mode 100644 index 0000000..465f2f8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/__pkginfo__.py @@ -0,0 +1,6 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +__version__ = "4.0.1" +version = __version__ diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a10ac72ff7435453ff9f5e0ee0909bb70243f66 GIT binary patch literal 7390 zcmc&XYj_;hb+g)C?P~S3{E%%7jCl!xEa4X+U`SRE8-XM{mTZShl4Z1WR~l>1%yMQ{ z@;Wv#gapzwiQ6WDme5D~A|Vgjrg`-Jex(n$(3ajpNkVDMKesL)-yAt~6fw zzVui3$JsmQ+Aqj=hg-!v;5PA2xLw=<2gIFlmv|SvTNGhT zjKhSOgoEM`+%2Zy9&s;Biy4>|hvA5L4;&S9FfWe5ad86PEA9g!?uYk@_rnK72_6s@ zEQm7LLPA9>!jf>{q*w-50C>WOs(27k1Q3cEtcX=OCF*cmd=Sovv+$7k5S$Ya!z1Fu z@Tm9*d{jIJkBg7N4~dV%4~tL0C&j1Wy!a9LQSoE&Y4I8Otat*R6h96>A)bQIiKpQw z#ZSRci=Tndi=Ty`6F(2XAbt^^5nq5Wif7?V;>++A@l|+E{1W`K_!an?_*MA2_y&Aa zd<%X}{5t%G_)YjN@!Rk_;&J(6rT8njApRQu zMm!HMh`)uu6Mqjcihlql{t;dhFT+2HSKvG1JMdlcUHG2(9=s}E)%Naj{~2BruceGd z!|wfjO8kr6C;zq5W^Z^jBmS-4KeW+$Eo~S_>fw^_nZ<=5M5`Q{b9FDYPMPy4r8z5C z%|p_YXoZgNjT8#=OVYF)F#U=dE;)e-zFl*rNvqH|tLU#dHf=D=J^=AtumWkKtfCAg zF=ZZfvQUj~4E!3FCGDjn6(9NdNm&j9GpLo9Oe-*}_41M|FH0PzCCU|vfgGmOuH%Ix zBO~Ss>AJ%v$y~Esw@v~{)23anUj@3ZDWmHwpoMi7QU)xD!`lmsJ~8y9Z7$S_J@Xt4 zOixNXAU&r-6C7~Lq!)25yH*eo?~23w9Zw@8E$B?i3TSs^h*c+CG6NrE!Ln_K6}DUx zBw5%FOv|%PD-6+DsD&~Z(bn}y`+!&mq2-lnWuY`ZKQt>fmXYjOC9^G%i8bfMoh)X2 zZXH|Afi8~}vkD6}$F(Jz{sJ3!*j!z5$hu|AGbPDNgvH3e(v+t{>G3(%=SEkuJ<4RN z0&N3EqVL$|9Ybue6(=C=yhYN9&N%^{4E4E?!-kwmdq}A&UCFy#XNCR>kqjjFj73I_ zOr}-7y->J`)Mit#k%F>cm3ApYaA<%}W^p`PLKH>Tf?p$}uNk&rCTyVfr;xOrN<|_I z$IK!}%7AZUzk=mii)4bbPti%@Qsgc3OUqk$ogbs2Hr2&uDCu~Xf$Cas=%JMALTk08kCV4(cW0@@ zNk>s!Dydw&9LlJ!F-q)4?5WN%zvkI9+7~L{M0X$a$Vm+Xao>t^ks}35k>^Wsz#+>; zYpy=p=PFyZDAnmmZk#+rq@k^9Q!xs_F^*>vZxYc*)fHo-um1RJ3aUPa5pF{RN1=Tx zxh<-65w0)ZHeavGXTZ>Tx#YXl{c{;4hF=69Gt?D{uE0k=RAY!m-%45$)$uWa| zgzdTP=s@%PFd29ioiOH^ZyxENwSdf>xUpl_pO6)+=7y?!)(;P|rK1b_k5CQq!WkzB z*35KN2EMxzbMBj?S}eIn#+%fZxms0X5f^KWU9&+!<72+_zCUAm^=VFySjE0$9t9t9 zwx~q0lxpKKj*M8;SVHpe=91GumO`gm(urWJ?gW+`zG3oISys7jHsXk*V5T@*JT!T9 zNT`nS!?SbqrSa)G)lu}kBI&s3(K41iQ0;`080vo}6{0QdxW-z`nJ)%)uY8a~h&<1$ znn$I|_ef-7$CwjT9%_g(tWj-j-cRc4%Orpk}= zo59>DhN+07RNcHlxg;qjd{6Z!KIgdPsVv2N5Yk}^d&jFuRhW=vpI%=d1C^VQuGXWS z7BZ9?p_R!@IAuD;keSjcS{?JMR(V-ViiYm=U=^;R+mbU8fSDowa(-pS_KGFfze#rF~ELXKnRaADWqES%-szUUCkcy@1 zo}x^~s_*Iot~&1V`7xa%x8&}X^;I8j)jmxx#XxoF z#W-b}qL+kl+SaN|uV<`kmEu0$eHc}@M$gFyYm#1A)f0Wv7P29^A!0@uLGhtUk;3gW z`axG2ZQu@uwl+^Yn{xJ$%Fp_q>(l$FIw;{Rn4`B&WsZ>3RraXmkZkQoWmrQ`rRQX* zas(n}=BQAR@AyWPw(6LxEd*tBs-fzfmry19NVZCP9_uPcK#P{0rvf8Y2d8Gybu5Yo zULGf@yW&N(BX`WBUWcNQ7R#Q$>Z$CBC3>DzM#ppZK1aHAss4-nLZL~Oxa`&fXNAne z<)31&&SNeDL!&rMPYvG8ppU@@2K@{+ zGT6jmGlMM*1{mZSbTH^;u$94047M@Y&fp3LJZ#|(23InmiOayN8JG-qGPs7pwG6If za6N-g1|MZ`1A{>Z?F?>Y@CbtsGw5dU5e7pH(hPbSWEpfZ$S`=6L5_gRcoY}q6fGM+ z-pU6reT~2qM%bi18}B&D)XRQ$>WuM}@pRj>@$OTpv#E0fc3a5T>EBa^oz{CYXWK%) zTK~>8Pdt*cGq&Mo&Zg}w@3Y&VPM>W%lRnA1U-moG7P2n-XXn0@e>RpVWt>UP8ABbj zs;e|HdF1HicyWGmqI5bR_qKzlHw~Ig)R%kyTCZgeA`iN!J01PzQd*gVrym&94U#!% zMQ`>X_ue+o0sKT#gGoK!s^hxm0*?nkjkxZrSN0E^5gXH?4w$M&lfwx2EdlYN@+d9) zb-t4#uMmV(<8-?=lvBAyU5NsfriM-BOC|OWbuK;4A|AbD`Be)kViyCI;g#y2h()8a zd?F$ZW$-b&LZzuKo@0UiYVl4+$VP!BnH@R!NIJSQmWoqb@ca4*% zr6M){b$a_pM^>b_GDuBh@;$UZez7 zU@VpJvvloie1AybobgicmXFszb@pRtpFH!-#51>ExN^_)y?Za@_dcG!kUQ{V-`3A< zeX?-jnp>X>pQ~Kxx%2V#OFcWDoO`}!=Y{;vOYKH>)5Uh9bIW=A{PBxMYR7H@9lI~4 zjcop6-pF=8HuLbz`D(3#G$t2Q?{&=BW%BTLeyP9@OU zsCt{UXvm2&m{WF5K5oH6T~}0pV>^|*sL2R^;1Z>4(q-l7|6Ylj^=D13L|^SwPU!CNjq9eYyBDS=PjFCw(tXox3*G(VZ&iI72qAn2cXg$DfAs%3S-}(!Ll@9OxbohrP*5IyP1B~+tPKfiACO&&{#L0IL7#-L~%EY<4j68e62mj2_`1Qjr&!c zWJCxqor5oa0QyPh#M)p(e(+b_eyTC0smc*8(q!@Agi4^y|Ur><|t z@hFoMrjELEoMS@I`g2nioM&Vr1a$w7$6B~VjXWM_Lc+*v9X_65V!}*`mLK2C^n??d zGXUPlv_$a4Ljek=Bs7Yq1iYUK39IwKfbU~;B19T<1iqh133YYDj~`%s;&P2I23TTB zLS#+h(E}e~TEZ3)jpshJn3!;rCdR`FE-<0qZrX-B04>raZw3(g=pNQU=XHfEn zR+06%QDIuE$a>T!B35k@Xu?!z%Y{DDyu!h)jfu7zlXgv{)bI2W9 z()`W&4r@$HWcIp&4_BC)kd1~vTy4229trUjQxeMS2@vayPXs`7XvEX4+@dKGKgg6s zz^)%F@l4CXc+SMLZ$Z(6CqBfKgn)Vy#Sbw);Y|Hfa07Q<*mp7^(el(yXQYPTY`Z_jC;tE88xOS^sq6nEb4zF2x!lD{syo$tzWkpC{b}R;FRjyX#sB~S literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/__pkginfo__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/__pkginfo__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9f649470178dccc61f40627746d3050cd796e0e GIT binary patch literal 241 zcmX@j%ge<81SZV?Go%?A7#@Q-FaYF(!Dk*IHJu@aA&McDA&Rk*QIn~P)kM!g&(Kek z=@xf( z&iN^+@s4?kIhDnk#rk?>sd;7kIhjfN1(hWk`FX~AhDQ3unI);ZK+V~S=|KI7#U(}g znJN15@derGnR#jX@$q^EmA^P_a`RJ4b5iY!*nw7p99=93Bt9@RGBSSPV&E5R;J(2n L+Q?qS3KRtZM|(n% literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/_ast.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/_ast.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0c487968b414c4ea83ab474087c8aa6a23dd421 GIT binary patch literal 4915 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/astroid_manager.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/astroid_manager.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09850080e59e510768c9aa7a2742b3815211f451 GIT binary patch literal 666 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 We(TJm%N%aY_0{y?*Bowa{QrMO60RZu literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/builder.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/builder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3f91e512e41b90bcdb7c9f8a33eb1e9cd3d1310 GIT binary patch literal 21910 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%0D^Fi{Ep6O3>s)r%FwWnQ@i#0uue)wmE%_f` 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/const.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/const.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3500efe3f2941235cd936ef229aae8d9dc94446 GIT binary patch literal 1176 zcmb7By-(Xv5Py#C#BrYa5-m{`s8ELzRUv}Vt*QheYM~G!LR-Z`vP|BiI3IRun-6cP z#84)N4lrh|*sJ~zUFs>(>w?rNTPv7Y+GmFlM3td$xclAx?svL-_f3*SK;InuXXi@* zfS+E_ef%}JC@}z>00a3AhUf~)@QjsEQ7cQ0P*E1+JWy= z!}}eAeb}JShA2DKo2iRX$nPAc>}WUF^QHSe+(k(674Sb4VP7EyzzcxHLx3U}lw#d} zJ%7e_usj$5c9rS1e^ATtQa0mR5G3dkH{W!~Z9JPD-@-NpxY+Y^{U&v+wb z<3S=Qimq0%q7YG0ss`Gvco-_m`(3qi&2TG*iU^;#4HFY~5m!Eg3n~X!o5_8{EL%0T zh^=HklUSKwc$&!Ds;w0hX#-(pURNuQrCG`8J*@8~E814F=C6^Oo|#QrnvD}wTvp#v zy=vK}p`m2a&@Fqq=9u1p_{KZ1HB8MRXhmRsu?3}irX@x`q)qS6eocIYa9H2164r7o z0{5_KX@;(7`nEyDTp=|xqvTdz=R0_|gLyBX>ZDS)=(!FSY8BPqHq0vF-!5h8AqKQ+ zt%9pq_ckEgLQ8oiSI8Aen1bcP#>=%V;WBg-e=ZU!>=t_9jIl*%?PDAfn)>mqNu?)jph=74VfOswqHKlP^8gGob z(o|h+-HnAvQ;51k^mOEO^1Bdggk0fqo&Troj_h2B9K$1cN~<5%`EyZfiZNG=HN{C+ zoNT;t#V7Sp3l28ngbOE{@R182H4a>utcNdyECWBHW9>-01Qh;;AUg5szy+iJW`6+{ Ckp|lU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/constraint.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/constraint.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b4ae7d092980928ee425bf33f546857530048bd8 GIT binary patch literal 8237 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 ZHM21=ZQ5fzA9{tQ%VNWt2<1#H{|CYZeV_mU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/context.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15ad6ccb49b51fcd68d1708054f5c5674f08fe92 GIT binary patch literal 7725 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

-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 T0yWbDb+YmS5_d(AU<>tMwRw&i literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/exceptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..13ce99cdf7d803552e4d2b50a06230469bca2cd7 GIT binary patch literal 17913 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 W!6mJ0xqWC!YgumD_Hv^b_x}T(8kcMU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/filter_statements.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/filter_statements.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fdd77cd4fadcc3c0841c1679a1854dd8a9f9aaa6 GIT binary patch literal 6665 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 E0Q4^N+W-In literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/helpers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/helpers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dab737cc3b5017d8923c5875b84dc8c4cb211e0e GIT binary patch literal 14481 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/inference_tip.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/inference_tip.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e11a782e92ff33a8d22c6c909a0d1f20e7781a9 GIT binary patch literal 4838 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 QmRgd3w8{8`Mjqk+0ZHwO^#A|> literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/objects.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/objects.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77d63fdeb1186e12a4f20433dc1b77f6500a7e5f GIT binary patch literal 15600 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 NOM$_s95QTc{tg$Bk0Ag6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/protocols.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/protocols.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da89322d26f3a749783e2ae995e264fa465e83dc GIT binary patch literal 37045 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 A#Q*>R literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/test_utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/test_utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c261c701c61ce8751f76ed975bf114ee4eac2ffa GIT binary patch literal 4300 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/transforms.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/transforms.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a9349c72ae6769954d8b304cb8eac04269509e5d GIT binary patch literal 6769 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/typing.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/typing.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c50ff0b3686e83013d05cb3529a703c2864dafb GIT binary patch literal 3359 zcma)8-EZ4Q5?@lJM15Jd?D$J|O4~_brnVfncZd6E+S;y@3tH=nvs2(`xCAY(Z6f^8 zEh#$^?ja8;(8qgA{)Hg@PwvHrdw@!yK!AHF?oCEi1n^65W+^FlE*Bha4QFR(W_R{C zGs}PE^BDrquM)o;yaMiDIOsj8m=RunEfDgASi}+>;tIMTATK(io6r-kq)U99aAY^B zC*72uaur>1(|X#?=ovSwXWg8h69`Q*73?Ii%j=VI4-ipvIR$r}2u*!MXNHpATJDoxNS7>(eFzDFmmE3~wqq!OJ($)3oy zRKAB%*uxl2Q-w~W^tsesV}{R;!|Vi~ow_tT+nCf!|3+0!h_a^V`Joxwz87d>q^y~a zW9~XMO5dd(WoGCzEfwXr{_^FzvG&LHwa@QW?na3fuMwrVf?bW2FPR_uRo{uyTa6mE zKC`P~ltT6^lST4<4}8N)%Du4bPmbhWGoV3~p%1IH#@CKy&$mz%GSdt8eC7s`R1a+j zEC=s-dz4YHO4ocZqz^-oNkNTPt8u(B?ZP9xyaD4Ugc4n_h%VlTG}056NF^)r5zJT; za58d@Bt%y1`(9_vXE5@c`X)q8RnxL;+?(mBeI=EmmTH3uJ?C?MZ z<60al*sA>q%Utn1$HOdFAXqp^2}kE+efQn?)W4|}-=k5g8pm6CCP#{4c&1AYBgzsxgP`J7?=wQf4ynUrBzeig(8!?=K}VLT%*@sQ4UmX3V(AgGyD8Z2$DFMhGI`s>9_ zgulAD23s*!AlgP?2TSEc>K!gQ_U=-x5gz#7hvnrDmI6DZi(ve~+y{Fz2$^qNOJSpC zd;8^DgN?!(oJ;}}TmkY8ITJ-$X)7c-2p|1u!7Z`Qu zq3MMekyjxHR8zg|L#;Yy5R{u^7I@hP_X}!__y&h;C(3t^&8V8y1KQl+dSSih&{!Kx zy72ETsF>vC*m4tCnCRzIQ0^{#&#n0^ZaJlcezs|F~iQ?fk&V&GO=hBu^UQR5Pr8y;<^QI;W@xlR_ic-!dY?J!^^ zyl$D7VE_mO4uJ>|Wc#&s$NMi70F~D$Fg&CfhXnf_@(4pTz-z$Rt9!gl28blyfCvN+ zzd3SYi9QZr!*mY^g_M_hKow0WYsnafWwc)b(!AEqlI?fY#}30L-h5XHb-O6LjgH@F z7oVUE$qxL2n?N`up9*V2J0;1>F9x)>3~vBs;x?B6D4B&$8e}mPXk5|e@G{=3Lz=*4 z%Ls2X-rwU+uPX)8uN=98(dU)Bd4Q@|Jk}2hX~6h zD)K&Z$E-qgZp4i(O2E|;<+(d(8gP3;-{7gw5Bo9z=gLR%C(Ore1N;f_3(kSG6M`W8 zoFT&8Ph{zps0iXK0_2R75h4x!D9!&Qt^QM5{ZYCF|D9w~xc+paL*UgZ=7fc(T8F@^ zt&-vK1;bkMoVo`mdDN#sZo#=+eI=o@j{tvDf#1p@`&tffr0l$mxu1$WCJ zkq5r@Po%5uAw^ct5}6_KQNA;o6z0D@c$zv^S5L;*aHsQ~qAV=`eg5g)<7>FBp9u_k GR{aM`VV4*H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/__pycache__/util.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edda556c7afe9c53edbf2aaffab242a9fb1efe0f GIT binary patch literal 7537 zcmb7JTWl0rdOp?F)pxs1w=ZA@Tn2M#gWE7L3^O6jn(Gq4Oa{=1UZGaIt86!PcXdvc zf$p&r?+R(nYF1;ED9kDo4Ll8KX0@w4O8T$D@xjK8F0lu{rQC7P`x{@aI0~{LCgF(>HzY-YS#OB6?Db9z$Qi#sJ$=hiw;Q ztr&~z?Vro;4jp2&4WpYHMmx0*EpgYM>B2XO@8&SmI>XHSr*&!Vca_YRsxP(qE7~X} z+0k6NY*;y~V3f__l;3W-a_!yI*^}Qsee(Rd;j^|pRIb{}nL;^Nw1XE4md(nFcB7P!kYk!mm%v*TCG z1-fExq^O_3&1#=suITwfuBeJ(y18nM+|cvZe)aZvAwRAbOqJ`_1TX6vM)Yz6;ApN; zG}DoYigINffcRh1b7f1l40S|TCrqr#nQBfo3+1t*ZW-mYdezi1W^tpSr6;UHG2L(@ zT9?b`brV}zX|Zo!YD5OwptQ8&7r3ZODc`UiZP?%mdm`C>Q!kF1v`+ozJA=0ke$%Yv zu<79C(*qZVPP{R2ndq7yI0=$uhd{xqSuh9FxAgL@!D3-#uu`?gjq;)N!Pf^(P<8-| zZ|26Z-o5sqxOSy#hq76&S9msC+uU#mLTlQa*@9b`Bwo{ODgN3D8Z7Tpl-i6QB3|^* zXgpw(k|y2U%NUPZ^>=H&&)xR-q)F)ppf?sx_8|BkK)BM}2-N`5X$8EQ8)2`t_MOBX zJQ=%8_wkGS{9&uuWtLKgZGRd3T~nzBUjV6^YK|KdMNNfh5rgD&#iFj+zHHVG5ZxW)I-aASzA$n5VY5BgQ+}>u2U~_(i+)t!(sgHhRS4d>2(j zY&(jbjB-uq2IdG24lRlG9GRetaHD@viB!EB>I;zLJno z1tg^dqsgt)=U4oaGAK|aHsHjyybVtNHO)f?}?&0G`Q8UH17LLXh%9^lCbdXLq-i7n7<5(?t z4153&=7dpBJjM@DMY8OmOlYLT)TQbO{)A-SWiNbwCFH=+%sOPc!XvHF%z9+P6JYQJ z6nFuw?m-3M3o!TsLB|)U22vq=GZ22Yoa5D(uzvIvST{WKz)K*LKf!?qqYO&mjL{MOz zdagfgH>gABJAF7lKlk>+Yd0p_W|2+G5pmO*6&$MqucXoBT~t{=hw7*lrCF=Sa{ zFIS6+iAD`(C$kMuS!b)-{#QTpW#}_F%Ov)jX1@*Xd`_xv$9#OpTxf^$(mELcLT?cy z{1Y_D5H;1ylBbuad={XcGU>DGnDE>PE>+p2&(q#A{}w>)2sC&ZmK_eKP#>O!lW}!0 zz{m|DZnSTmys<_k)OP*9UVi}_n0=@~=0xXWqJKWo|M<{CVsIw-EZQ+U_Q_v7jSem) zyMU0H)|Y8s$Ak)|eZbb7GT@{UV>p0{R(G9vS96GFd@?1KPXU??^M=xVj|RN2i4p>W zI=)*beXlsD4Kq!gK2Kpxfv2bBN%=-}!$r`=U1Ci}>!&*0t^%aiJCf5>SB6!hqdE#b zIYH_|{b1^C{H1~rh@44onVhYi#>`;Z%v#qL-9f2qD#EtfZ%m}B7Vnq{i1g!Zl{U=`dWo7Gfgaum3wC`Mz(ORa~i-@9h zt+vLLgW^77X&$TU#pQ8ng}mZs21g@ROd8J77*)m%97#i3{WM!{EyrhCD@~YiH3Qt1?AFUj0EBbW3wxfKk#>8_Esx#WoZ` zhBgeL+YHi6ra+>7!?lAGWpkoZF}MX^t5K-;nkhjtAU3%Doo6{r4R(q#5LV5otLCemu8> z?*4XI^l^e|w-!veijIepHAY1o3s=PRHCyYG`EfmelM`zg`14W+t(!hF?itf(m)bfW z#P7$a&n(Kr(WR`h^R(E&#EergIEaR6NNvTKAJS&>elqj); zUZzx|<_2NomQ^v|9vnpIYNnk$TiW1bgNG>b#$h-HJvyextx|EPd&Gb{I^gUp02T4iv`92G_qLpOr%R5~9g$7U=_ijYbkLqY0S> zU-|&t9D%JyefUlI*qDyIS%n|3?G+4`^$?SFpwq{S2C_Ql@pK*XyEw+Yi0a?i@2A-d zro;owA=Z*y4YF|ZX>!-YTaR;(stcimFPJafw-igv9=vz%3X|SO|#Vqi^adD3$BJ( zSI=VS?)lE$t6}t4m=X&tGcdcutGbqym1qxv#bxOly1!Sy|N!4^$xZEYfMp;PgS{j6c zb~4@&$WdBKsS;D z>QJ=E=kQwqzlT4wiV7^0V4=ip-zV{>!M!4xxs1F?J7T;C{rCGHzCYW)kQhLW*VaD! z{$IAtD9eF>((x=5n|c4k7J&bLHOyMJesXax+W&$ful37#653X2|8L^VZg1#WbTc(O zmg4O{h|zq*M0GMev`_x|_6XJe5^4xO6c7^8lnmuN z&;*)Hd}{l}k3s2SU}5;II;o1Eh|=$J<4zU5hSVbclpyd_>pJHpwcMYL07!&(Qiz@P zS?32NcQVyY3B=I}{Ca}~A}7V|RqzB1uvg6ro!|!UilgNOHuthjoBLq&$LXdlda``57 z%t?kG=YI|m5>)d(Do{p}{xim;oxfr6U$ZwB*c-oP1OFno{o3F6EB}FC`P07(Y?B7R zW>kGkVx7AdI(AP-XRa==-McdT5nVW2HMH mbyF2s-p=;!UsgJ$j-|+vWf|Y+Eq$Vo;4kpnY7iqrb^RXzJmQ=H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/_ast.py b/.venv/lib/python3.12/site-packages/astroid/_ast.py new file mode 100644 index 0000000..e3ad97d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/_ast.py @@ -0,0 +1,102 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +import ast +from typing import NamedTuple + +from astroid.const import Context + + +class FunctionType(NamedTuple): + argtypes: list[ast.expr] + returns: ast.expr + + +class ParserModule(NamedTuple): + unary_op_classes: dict[type[ast.unaryop], str] + cmp_op_classes: dict[type[ast.cmpop], str] + bool_op_classes: dict[type[ast.boolop], str] + bin_op_classes: dict[type[ast.operator], str] + context_classes: dict[type[ast.expr_context], Context] + + def parse( + self, string: str, type_comments: bool = True, filename: str | None = None + ) -> ast.Module: + if filename: + return ast.parse(string, filename=filename, type_comments=type_comments) + return ast.parse(string, type_comments=type_comments) + + +def parse_function_type_comment(type_comment: str) -> FunctionType | None: + """Given a correct type comment, obtain a FunctionType object.""" + func_type = ast.parse(type_comment, "", "func_type") + return FunctionType(argtypes=func_type.argtypes, returns=func_type.returns) + + +def get_parser_module(type_comments: bool = True) -> ParserModule: + unary_op_classes = _unary_operators_from_module() + cmp_op_classes = _compare_operators_from_module() + bool_op_classes = _bool_operators_from_module() + bin_op_classes = _binary_operators_from_module() + context_classes = _contexts_from_module() + + return ParserModule( + unary_op_classes, + cmp_op_classes, + bool_op_classes, + bin_op_classes, + context_classes, + ) + + +def _unary_operators_from_module() -> dict[type[ast.unaryop], str]: + return {ast.UAdd: "+", ast.USub: "-", ast.Not: "not", ast.Invert: "~"} + + +def _binary_operators_from_module() -> dict[type[ast.operator], str]: + return { + ast.Add: "+", + ast.BitAnd: "&", + ast.BitOr: "|", + ast.BitXor: "^", + ast.Div: "/", + ast.FloorDiv: "//", + ast.MatMult: "@", + ast.Mod: "%", + ast.Mult: "*", + ast.Pow: "**", + ast.Sub: "-", + ast.LShift: "<<", + ast.RShift: ">>", + } + + +def _bool_operators_from_module() -> dict[type[ast.boolop], str]: + return {ast.And: "and", ast.Or: "or"} + + +def _compare_operators_from_module() -> dict[type[ast.cmpop], str]: + return { + ast.Eq: "==", + ast.Gt: ">", + ast.GtE: ">=", + ast.In: "in", + ast.Is: "is", + ast.IsNot: "is not", + ast.Lt: "<", + ast.LtE: "<=", + ast.NotEq: "!=", + ast.NotIn: "not in", + } + + +def _contexts_from_module() -> dict[type[ast.expr_context], Context]: + return { + ast.Load: Context.Load, + ast.Store: Context.Store, + ast.Del: Context.Del, + ast.Param: Context.Store, + } diff --git a/.venv/lib/python3.12/site-packages/astroid/arguments.py b/.venv/lib/python3.12/site-packages/astroid/arguments.py new file mode 100644 index 0000000..3781889 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/arguments.py @@ -0,0 +1,309 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from astroid import nodes +from astroid.bases import Instance +from astroid.context import CallContext, InferenceContext +from astroid.exceptions import InferenceError, NoDefault +from astroid.typing import InferenceResult +from astroid.util import Uninferable, UninferableBase, safe_infer + + +class CallSite: + """Class for understanding arguments passed into a call site. + + It needs a call context, which contains the arguments and the + keyword arguments that were passed into a given call site. + In order to infer what an argument represents, call :meth:`infer_argument` + with the corresponding function node and the argument name. + + :param callcontext: + An instance of :class:`astroid.context.CallContext`, that holds + the arguments for the call site. + :param argument_context_map: + Additional contexts per node, passed in from :attr:`astroid.context.Context.extra_context` + :param context: + An instance of :class:`astroid.context.Context`. + """ + + def __init__( + self, + callcontext: CallContext, + argument_context_map=None, + context: InferenceContext | None = None, + ): + if argument_context_map is None: + argument_context_map = {} + self.argument_context_map = argument_context_map + args = callcontext.args + keywords = callcontext.keywords + self.duplicated_keywords: set[str] = set() + self._unpacked_args = self._unpack_args(args, context=context) + self._unpacked_kwargs = self._unpack_keywords(keywords, context=context) + + self.positional_arguments = [ + arg for arg in self._unpacked_args if not isinstance(arg, UninferableBase) + ] + self.keyword_arguments = { + key: value + for key, value in self._unpacked_kwargs.items() + if not isinstance(value, UninferableBase) + } + + @classmethod + def from_call(cls, call_node: nodes.Call, context: InferenceContext | None = None): + """Get a CallSite object from the given Call node. + + context will be used to force a single inference path. + """ + + # Determine the callcontext from the given `context` object if any. + context = context or InferenceContext() + callcontext = CallContext(call_node.args, call_node.keywords) + return cls(callcontext, context=context) + + def has_invalid_arguments(self) -> bool: + """Check if in the current CallSite were passed *invalid* arguments. + + This can mean multiple things. For instance, if an unpacking + of an invalid object was passed, then this method will return True. + Other cases can be when the arguments can't be inferred by astroid, + for example, by passing objects which aren't known statically. + """ + return len(self.positional_arguments) != len(self._unpacked_args) + + def has_invalid_keywords(self) -> bool: + """Check if in the current CallSite were passed *invalid* keyword arguments. + + For instance, unpacking a dictionary with integer keys is invalid + (**{1:2}), because the keys must be strings, which will make this + method to return True. Other cases where this might return True if + objects which can't be inferred were passed. + """ + return len(self.keyword_arguments) != len(self._unpacked_kwargs) + + def _unpack_keywords( + self, + keywords: list[tuple[str | None, nodes.NodeNG]], + context: InferenceContext | None = None, + ) -> dict[str | None, InferenceResult]: + values: dict[str | None, InferenceResult] = {} + context = context or InferenceContext() + context.extra_context = self.argument_context_map + for name, value in keywords: + if name is None: + # Then it's an unpacking operation (**) + inferred = safe_infer(value, context=context) + if not isinstance(inferred, nodes.Dict): + # Not something we can work with. + values[name] = Uninferable + continue + + for dict_key, dict_value in inferred.items: + dict_key = safe_infer(dict_key, context=context) + if not isinstance(dict_key, nodes.Const): + values[name] = Uninferable + continue + if not isinstance(dict_key.value, str): + values[name] = Uninferable + continue + if dict_key.value in values: + # The name is already in the dictionary + values[dict_key.value] = Uninferable + self.duplicated_keywords.add(dict_key.value) + continue + values[dict_key.value] = dict_value + else: + values[name] = value + return values + + def _unpack_args(self, args, context: InferenceContext | None = None): + values = [] + context = context or InferenceContext() + context.extra_context = self.argument_context_map + for arg in args: + if isinstance(arg, nodes.Starred): + inferred = safe_infer(arg.value, context=context) + if isinstance(inferred, UninferableBase): + values.append(Uninferable) + continue + if not hasattr(inferred, "elts"): + values.append(Uninferable) + continue + values.extend(inferred.elts) + else: + values.append(arg) + return values + + def infer_argument( + self, funcnode: InferenceResult, name: str, context: InferenceContext + ): # noqa: C901 + """Infer a function argument value according to the call context.""" + # pylint: disable = too-many-branches + + if not isinstance(funcnode, (nodes.FunctionDef, nodes.Lambda)): + raise InferenceError( + f"Can not infer function argument value for non-function node {funcnode!r}.", + call_site=self, + func=funcnode, + arg=name, + context=context, + ) + + if name in self.duplicated_keywords: + raise InferenceError( + "The arguments passed to {func!r} have duplicate keywords.", + call_site=self, + func=funcnode, + arg=name, + context=context, + ) + + # Look into the keywords first, maybe it's already there. + try: + return self.keyword_arguments[name].infer(context) + except KeyError: + pass + + # Too many arguments given and no variable arguments. + if len(self.positional_arguments) > len(funcnode.args.args): + if not funcnode.args.vararg and not funcnode.args.posonlyargs: + raise InferenceError( + "Too many positional arguments " + "passed to {func!r} that does " + "not have *args.", + call_site=self, + func=funcnode, + arg=name, + context=context, + ) + + positional = self.positional_arguments[: len(funcnode.args.args)] + vararg = self.positional_arguments[len(funcnode.args.args) :] + + # preserving previous behavior, when vararg and kwarg were not included in find_argname results + if name in [funcnode.args.vararg, funcnode.args.kwarg]: + argindex = None + else: + argindex = funcnode.args.find_argname(name)[0] + + kwonlyargs = {arg.name for arg in funcnode.args.kwonlyargs} + kwargs = { + key: value + for key, value in self.keyword_arguments.items() + if key not in kwonlyargs + } + # If there are too few positionals compared to + # what the function expects to receive, check to see + # if the missing positional arguments were passed + # as keyword arguments and if so, place them into the + # positional args list. + if len(positional) < len(funcnode.args.args): + for func_arg in funcnode.args.args: + if func_arg.name in kwargs: + arg = kwargs.pop(func_arg.name) + positional.append(arg) + + if argindex is not None: + boundnode = context.boundnode + # 2. first argument of instance/class method + if argindex == 0 and funcnode.type in {"method", "classmethod"}: + # context.boundnode is None when an instance method is called with + # the class, e.g. MyClass.method(obj, ...). In this case, self + # is the first argument. + if boundnode is None and funcnode.type == "method" and positional: + return positional[0].infer(context=context) + if boundnode is None: + # XXX can do better ? + boundnode = funcnode.parent.frame() + + if isinstance(boundnode, nodes.ClassDef): + # Verify that we're accessing a method + # of the metaclass through a class, as in + # `cls.metaclass_method`. In this case, the + # first argument is always the class. + method_scope = funcnode.parent.scope() + if method_scope is boundnode.metaclass(context=context): + return iter((boundnode,)) + + if funcnode.type == "method": + if not isinstance(boundnode, Instance): + boundnode = boundnode.instantiate_class() + return iter((boundnode,)) + if funcnode.type == "classmethod": + return iter((boundnode,)) + # if we have a method, extract one position + # from the index, so we'll take in account + # the extra parameter represented by `self` or `cls` + if funcnode.type in {"method", "classmethod"} and boundnode: + argindex -= 1 + # 2. search arg index + try: + return self.positional_arguments[argindex].infer(context) + except IndexError: + pass + + if funcnode.args.kwarg == name: + # It wants all the keywords that were passed into + # the call site. + if self.has_invalid_keywords(): + raise InferenceError( + "Inference failed to find values for all keyword arguments " + "to {func!r}: {unpacked_kwargs!r} doesn't correspond to " + "{keyword_arguments!r}.", + keyword_arguments=self.keyword_arguments, + unpacked_kwargs=self._unpacked_kwargs, + call_site=self, + func=funcnode, + arg=name, + context=context, + ) + kwarg = nodes.Dict( + lineno=funcnode.args.lineno, + col_offset=funcnode.args.col_offset, + parent=funcnode.args, + end_lineno=funcnode.args.end_lineno, + end_col_offset=funcnode.args.end_col_offset, + ) + kwarg.postinit( + [(nodes.const_factory(key), value) for key, value in kwargs.items()] + ) + return iter((kwarg,)) + if funcnode.args.vararg == name: + # It wants all the args that were passed into + # the call site. + if self.has_invalid_arguments(): + raise InferenceError( + "Inference failed to find values for all positional " + "arguments to {func!r}: {unpacked_args!r} doesn't " + "correspond to {positional_arguments!r}.", + positional_arguments=self.positional_arguments, + unpacked_args=self._unpacked_args, + call_site=self, + func=funcnode, + arg=name, + context=context, + ) + args = nodes.Tuple( + lineno=funcnode.args.lineno, + col_offset=funcnode.args.col_offset, + parent=funcnode.args, + ) + args.postinit(vararg) + return iter((args,)) + + # Check if it's a default parameter. + try: + return funcnode.args.default_value(name).infer(context) + except NoDefault: + pass + raise InferenceError( + "No value found for argument {arg} to {func!r}", + call_site=self, + func=funcnode, + arg=name, + context=context, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/astroid_manager.py b/.venv/lib/python3.12/site-packages/astroid/astroid_manager.py new file mode 100644 index 0000000..3031057 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/astroid_manager.py @@ -0,0 +1,20 @@ +""" +This file contain the global astroid MANAGER. + +It prevents a circular import that happened +when the only possibility to import it was from astroid.__init__.py. + +This AstroidManager is a singleton/borg so it's possible to instantiate an +AstroidManager() directly. +""" + +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid.brain.helpers import register_all_brains +from astroid.manager import AstroidManager + +MANAGER = AstroidManager() +# Register all brains after instantiating the singleton Manager +register_all_brains(MANAGER) diff --git a/.venv/lib/python3.12/site-packages/astroid/bases.py b/.venv/lib/python3.12/site-packages/astroid/bases.py new file mode 100644 index 0000000..a029da6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/bases.py @@ -0,0 +1,778 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""This module contains base classes and functions for the nodes and some +inference utils. +""" +from __future__ import annotations + +import collections +import collections.abc +from collections.abc import Iterable, Iterator +from typing import TYPE_CHECKING, Any, Literal + +from astroid import decorators, nodes +from astroid.const import PY311_PLUS +from astroid.context import ( + CallContext, + InferenceContext, + bind_context_to_node, + copy_context, +) +from astroid.exceptions import ( + AstroidTypeError, + AttributeInferenceError, + InferenceError, + NameInferenceError, +) +from astroid.interpreter import objectmodel +from astroid.typing import ( + InferenceErrorInfo, + InferenceResult, + SuccessfulInferenceResult, +) +from astroid.util import Uninferable, UninferableBase, safe_infer + +if TYPE_CHECKING: + from astroid.constraint import Constraint + + +PROPERTIES = {"builtins.property", "abc.abstractproperty", "functools.cached_property"} +# enum.property was added in Python 3.11 +if PY311_PLUS: + PROPERTIES.add("enum.property") + +# List of possible property names. We use this list in order +# to see if a method is a property or not. This should be +# pretty reliable and fast, the alternative being to check each +# decorator to see if its a real property-like descriptor, which +# can be too complicated. +# Also, these aren't qualified, because each project can +# define them, we shouldn't expect to know every possible +# property-like decorator! +POSSIBLE_PROPERTIES = { + "cached_property", + "cachedproperty", + "lazyproperty", + "lazy_property", + "reify", + "lazyattribute", + "lazy_attribute", + "LazyProperty", + "lazy", + "cache_readonly", + "DynamicClassAttribute", +} + + +def _is_property( + meth: nodes.FunctionDef | UnboundMethod, context: InferenceContext | None = None +) -> bool: + decoratornames = meth.decoratornames(context=context) + if PROPERTIES.intersection(decoratornames): + return True + stripped = { + name.split(".")[-1] + for name in decoratornames + if not isinstance(name, UninferableBase) + } + if any(name in stripped for name in POSSIBLE_PROPERTIES): + return True + + if not meth.decorators: + return False + # Lookup for subclasses of *property* + for decorator in meth.decorators.nodes or (): + inferred = safe_infer(decorator, context=context) + if inferred is None or isinstance(inferred, UninferableBase): + continue + if isinstance(inferred, nodes.ClassDef): + # Check for a class which inherits from a standard property type + if any(inferred.is_subtype_of(pclass) for pclass in PROPERTIES): + return True + for base_class in inferred.bases: + # Check for a class which inherits from functools.cached_property + # and includes a subscripted type annotation + if isinstance(base_class, nodes.Subscript): + value = safe_infer(base_class.value, context=context) + if not isinstance(value, nodes.ClassDef): + continue + if value.name != "cached_property": + continue + module, _ = value.lookup(value.name) + if isinstance(module, nodes.Module) and module.name == "functools": + return True + continue + + return False + + +class Proxy: + """A simple proxy object. + + Note: + + Subclasses of this object will need a custom __getattr__ + if new instance attributes are created. See the Const class + """ + + _proxied: nodes.ClassDef | nodes.FunctionDef | nodes.Lambda | UnboundMethod + + def __init__( + self, + proxied: ( + nodes.ClassDef | nodes.FunctionDef | nodes.Lambda | UnboundMethod | None + ) = None, + ) -> None: + if proxied is None: + # This is a hack to allow calling this __init__ during bootstrapping of + # builtin classes and their docstrings. + # For Const, Generator, and UnionType nodes the _proxied attribute + # is set during bootstrapping + # as we first need to build the ClassDef that they can proxy. + # Thus, if proxied is None self should be a Const or Generator + # as that is the only way _proxied will be correctly set as a ClassDef. + assert isinstance(self, (nodes.Const, Generator, UnionType)) + else: + self._proxied = proxied + + def __getattr__(self, name: str) -> Any: + if name == "_proxied": + return self.__class__._proxied + if name in self.__dict__: + return self.__dict__[name] + return getattr(self._proxied, name) + + def infer( # type: ignore[return] + self, context: InferenceContext | None = None, **kwargs: Any + ) -> collections.abc.Generator[InferenceResult, None, InferenceErrorInfo | None]: + yield self + + +def _infer_stmts( + stmts: Iterable[InferenceResult], + context: InferenceContext | None, + frame: nodes.NodeNG | BaseInstance | None = None, +) -> collections.abc.Generator[InferenceResult]: + """Return an iterator on statements inferred by each statement in *stmts*.""" + inferred = False + constraint_failed = False + if context is not None: + name = context.lookupname + context = context.clone() + if name is not None: + constraints = context.constraints.get(name, {}) + else: + constraints = {} + else: + name = None + constraints = {} + context = InferenceContext() + + for stmt in stmts: + if isinstance(stmt, UninferableBase): + yield stmt + inferred = True + continue + context.lookupname = stmt._infer_name(frame, name) + try: + stmt_constraints: set[Constraint] = set() + for constraint_stmt, potential_constraints in constraints.items(): + if not constraint_stmt.parent_of(stmt): + stmt_constraints.update(potential_constraints) + for inf in stmt.infer(context=context): + if all(constraint.satisfied_by(inf) for constraint in stmt_constraints): + yield inf + inferred = True + else: + constraint_failed = True + except NameInferenceError: + continue + except InferenceError: + yield Uninferable + inferred = True + + if not inferred and constraint_failed: + yield Uninferable + elif not inferred: + raise InferenceError( + "Inference failed for all members of {stmts!r}.", + stmts=stmts, + frame=frame, + context=context, + ) + + +def _infer_method_result_truth( + instance: Instance, method_name: str, context: InferenceContext +) -> bool | UninferableBase: + # Get the method from the instance and try to infer + # its return's truth value. + meth = next(instance.igetattr(method_name, context=context), None) + if meth and hasattr(meth, "infer_call_result"): + if not meth.callable(): + return Uninferable + try: + context.callcontext = CallContext(args=[], callee=meth) + for value in meth.infer_call_result(instance, context=context): + if isinstance(value, UninferableBase): + return value + try: + inferred = next(value.infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context) from e + return inferred.bool_value() + except InferenceError: + pass + return Uninferable + + +class BaseInstance(Proxy): + """An instance base class, which provides lookup methods for potential + instances. + """ + + _proxied: nodes.ClassDef + + special_attributes: objectmodel.ObjectModel + + def display_type(self) -> str: + return "Instance of" + + def getattr( + self, + name: str, + context: InferenceContext | None = None, + lookupclass: bool = True, + ) -> list[InferenceResult]: + try: + values = self._proxied.instance_attr(name, context) + except AttributeInferenceError as exc: + if self.special_attributes and name in self.special_attributes: + return [self.special_attributes.lookup(name)] + + if lookupclass: + # Class attributes not available through the instance + # unless they are explicitly defined. + return self._proxied.getattr(name, context, class_context=False) + + raise AttributeInferenceError( + target=self, attribute=name, context=context + ) from exc + # since we've no context information, return matching class members as + # well + if lookupclass: + try: + return values + self._proxied.getattr( + name, context, class_context=False + ) + except AttributeInferenceError: + pass + return values + + def igetattr( + self, name: str, context: InferenceContext | None = None + ) -> Iterator[InferenceResult]: + """Inferred getattr.""" + if not context: + context = InferenceContext() + try: + context.lookupname = name + # XXX frame should be self._proxied, or not ? + get_attr = self.getattr(name, context, lookupclass=False) + yield from _infer_stmts( + self._wrap_attr(get_attr, context), context, frame=self + ) + except AttributeInferenceError: + try: + # fallback to class.igetattr since it has some logic to handle + # descriptors + # But only if the _proxied is the Class. + if self._proxied.__class__.__name__ != "ClassDef": + raise + attrs = self._proxied.igetattr(name, context, class_context=False) + yield from self._wrap_attr(attrs, context) + except AttributeInferenceError as error: + raise InferenceError(**vars(error)) from error + + def _wrap_attr( + self, attrs: Iterable[InferenceResult], context: InferenceContext | None = None + ) -> Iterator[InferenceResult]: + """Wrap bound methods of attrs in a InstanceMethod proxies.""" + for attr in attrs: + if isinstance(attr, UnboundMethod): + if _is_property(attr): + yield from attr.infer_call_result(self, context) + else: + yield BoundMethod(attr, self) + elif isinstance(attr, nodes.Lambda): + if attr.args.arguments and attr.args.arguments[0].name == "self": + yield BoundMethod(attr, self) + continue + yield attr + else: + yield attr + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + """Infer what a class instance is returning when called.""" + context = bind_context_to_node(context, self) + inferred = False + + # If the call is an attribute on the instance, we infer the attribute itself + if isinstance(caller, nodes.Call) and isinstance(caller.func, nodes.Attribute): + for res in self.igetattr(caller.func.attrname, context): + inferred = True + yield res + + # Otherwise we infer the call to the __call__ dunder normally + for node in self._proxied.igetattr("__call__", context): + if isinstance(node, UninferableBase) or not node.callable(): + continue + if isinstance(node, BaseInstance) and node._proxied is self._proxied: + inferred = True + yield node + # Prevent recursion. + continue + for res in node.infer_call_result(caller, context): + inferred = True + yield res + if not inferred: + raise InferenceError(node=self, caller=caller, context=context) + + +class Instance(BaseInstance): + """A special node representing a class instance.""" + + special_attributes = objectmodel.InstanceModel() + + def __init__(self, proxied: nodes.ClassDef | None) -> None: + super().__init__(proxied) + + @decorators.yes_if_nothing_inferred + def infer_binary_op( + self, + opnode: nodes.AugAssign | nodes.BinOp, + operator: str, + other: InferenceResult, + context: InferenceContext, + method: SuccessfulInferenceResult, + ) -> Generator[InferenceResult]: + return method.infer_call_result(self, context) + + def __repr__(self) -> str: + return "".format( + self._proxied.root().name, self._proxied.name, id(self) + ) + + def __str__(self) -> str: + return f"Instance of {self._proxied.root().name}.{self._proxied.name}" + + def callable(self) -> bool: + try: + self._proxied.getattr("__call__", class_context=False) + return True + except AttributeInferenceError: + return False + + def pytype(self) -> str: + return self._proxied.qname() + + def display_type(self) -> str: + return "Instance of" + + def bool_value( + self, context: InferenceContext | None = None + ) -> bool | UninferableBase: + """Infer the truth value for an Instance. + + The truth value of an instance is determined by these conditions: + + * if it implements __bool__ on Python 3 or __nonzero__ + on Python 2, then its bool value will be determined by + calling this special method and checking its result. + * when this method is not defined, __len__() is called, if it + is defined, and the object is considered true if its result is + nonzero. If a class defines neither __len__() nor __bool__(), + all its instances are considered true. + """ + context = context or InferenceContext() + context.boundnode = self + + try: + result = _infer_method_result_truth(self, "__bool__", context) + except (InferenceError, AttributeInferenceError): + # Fallback to __len__. + try: + result = _infer_method_result_truth(self, "__len__", context) + except (AttributeInferenceError, InferenceError): + return True + return result + + def getitem( + self, index: nodes.Const, context: InferenceContext | None = None + ) -> InferenceResult | None: + new_context = bind_context_to_node(context, self) + if not context: + context = new_context + method = next(self.igetattr("__getitem__", context=context), None) + # Create a new CallContext for providing index as an argument. + new_context.callcontext = CallContext(args=[index], callee=method) + if not isinstance(method, BoundMethod): + raise InferenceError( + "Could not find __getitem__ for {node!r}.", node=self, context=context + ) + if len(method.args.arguments) != 2: # (self, index) + raise AstroidTypeError( + "__getitem__ for {node!r} does not have correct signature", + node=self, + context=context, + ) + return next(method.infer_call_result(self, new_context), None) + + +class UnboundMethod(Proxy): + """A special node representing a method not bound to an instance.""" + + _proxied: nodes.FunctionDef | UnboundMethod + + special_attributes: ( + objectmodel.BoundMethodModel | objectmodel.UnboundMethodModel + ) = objectmodel.UnboundMethodModel() + + def __repr__(self) -> str: + assert self._proxied.parent, "Expected a parent node" + frame = self._proxied.parent.frame() + return "<{} {} of {} at 0x{}".format( + self.__class__.__name__, self._proxied.name, frame.qname(), id(self) + ) + + def implicit_parameters(self) -> Literal[0, 1]: + return 0 + + def is_bound(self) -> bool: + return False + + def getattr(self, name: str, context: InferenceContext | None = None): + if name in self.special_attributes: + return [self.special_attributes.lookup(name)] + return self._proxied.getattr(name, context) + + def igetattr( + self, name: str, context: InferenceContext | None = None + ) -> Iterator[InferenceResult]: + if name in self.special_attributes: + return iter((self.special_attributes.lookup(name),)) + return self._proxied.igetattr(name, context) + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + """ + The boundnode of the regular context with a function called + on ``object.__new__`` will be of type ``object``, + which is incorrect for the argument in general. + If no context is given the ``object.__new__`` call argument will + be correctly inferred except when inside a call that requires + the additional context (such as a classmethod) of the boundnode + to determine which class the method was called from + """ + + # If we're unbound method __new__ of a builtin, the result is an + # instance of the class given as first argument. + if self._proxied.name == "__new__": + assert self._proxied.parent, "Expected a parent node" + qname = self._proxied.parent.frame().qname() + # Avoid checking builtins.type: _infer_type_new_call() does more validation + if qname.startswith("builtins.") and qname != "builtins.type": + return self._infer_builtin_new(caller, context or InferenceContext()) + return self._proxied.infer_call_result(caller, context) + + def _infer_builtin_new( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext, + ) -> collections.abc.Generator[nodes.Const | Instance | UninferableBase]: + if not isinstance(caller, nodes.Call): + return + if not caller.args: + return + # Attempt to create a constant + if len(caller.args) > 1: + value = None + if isinstance(caller.args[1], nodes.Const): + value = caller.args[1].value + else: + inferred_arg = next(caller.args[1].infer(), None) + if isinstance(inferred_arg, nodes.Const): + value = inferred_arg.value + if value is not None: + const = nodes.const_factory(value) + assert not isinstance(const, nodes.EmptyNode) + yield const + return + + node_context = context.extra_context.get(caller.args[0]) + for inferred in caller.args[0].infer(context=node_context): + if isinstance(inferred, UninferableBase): + yield inferred + if isinstance(inferred, nodes.ClassDef): + yield Instance(inferred) + raise InferenceError + + def bool_value(self, context: InferenceContext | None = None) -> Literal[True]: + return True + + +class BoundMethod(UnboundMethod): + """A special node representing a method bound to an instance.""" + + special_attributes = objectmodel.BoundMethodModel() + + def __init__( + self, + proxy: nodes.FunctionDef | nodes.Lambda | UnboundMethod, + bound: SuccessfulInferenceResult, + ) -> None: + super().__init__(proxy) + self.bound = bound + + def implicit_parameters(self) -> Literal[0, 1]: + if self.name == "__new__": + # __new__ acts as a classmethod but the class argument is not implicit. + return 0 + return 1 + + def is_bound(self) -> Literal[True]: + return True + + def _infer_type_new_call( + self, caller: nodes.Call, context: InferenceContext + ) -> nodes.ClassDef | None: # noqa: C901 + """Try to infer what type.__new__(mcs, name, bases, attrs) returns. + + In order for such call to be valid, the metaclass needs to be + a subtype of ``type``, the name needs to be a string, the bases + needs to be a tuple of classes + """ + # pylint: disable=import-outside-toplevel; circular import + from astroid.nodes import Pass + + # Verify the metaclass + try: + mcs = next(caller.args[0].infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context) from e + if not isinstance(mcs, nodes.ClassDef): + # Not a valid first argument. + return None + if not mcs.is_subtype_of("builtins.type"): + # Not a valid metaclass. + return None + + # Verify the name + try: + name = next(caller.args[1].infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context) from e + if not isinstance(name, nodes.Const): + # Not a valid name, needs to be a const. + return None + if not isinstance(name.value, str): + # Needs to be a string. + return None + + # Verify the bases + try: + bases = next(caller.args[2].infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context) from e + if not isinstance(bases, nodes.Tuple): + # Needs to be a tuple. + return None + try: + inferred_bases = [next(elt.infer(context=context)) for elt in bases.elts] + except StopIteration as e: + raise InferenceError(context=context) from e + if any(not isinstance(base, nodes.ClassDef) for base in inferred_bases): + # All the bases needs to be Classes + return None + + # Verify the attributes. + try: + attrs = next(caller.args[3].infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context) from e + if not isinstance(attrs, nodes.Dict): + # Needs to be a dictionary. + return None + cls_locals: dict[str, list[InferenceResult]] = collections.defaultdict(list) + for key, value in attrs.items: + try: + key = next(key.infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context) from e + try: + value = next(value.infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context) from e + # Ignore non string keys + if isinstance(key, nodes.Const) and isinstance(key.value, str): + cls_locals[key.value].append(value) + + # Build the class from now. + cls = mcs.__class__( + name=name.value, + lineno=caller.lineno or 0, + col_offset=caller.col_offset or 0, + parent=caller, + end_lineno=caller.end_lineno, + end_col_offset=caller.end_col_offset, + ) + empty = Pass( + parent=cls, + lineno=caller.lineno, + col_offset=caller.col_offset, + end_lineno=caller.end_lineno, + end_col_offset=caller.end_col_offset, + ) + cls.postinit( + bases=bases.elts, + body=[empty], + decorators=None, + newstyle=True, + metaclass=mcs, + keywords=[], + ) + cls.locals = cls_locals + return cls + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + context = bind_context_to_node(context, self.bound) + if ( + isinstance(self.bound, nodes.ClassDef) + and self.bound.name == "type" + and self.name == "__new__" + and isinstance(caller, nodes.Call) + and len(caller.args) == 4 + ): + # Check if we have a ``type.__new__(mcs, name, bases, attrs)`` call. + new_cls = self._infer_type_new_call(caller, context) + if new_cls: + return iter((new_cls,)) + + return super().infer_call_result(caller, context) + + def bool_value(self, context: InferenceContext | None = None) -> Literal[True]: + return True + + +class Generator(BaseInstance): + """A special node representing a generator. + + Proxied class is set once for all in raw_building. + """ + + # We defer initialization of special_attributes to the __init__ method since the constructor + # of GeneratorModel requires the raw_building to be complete + # TODO: This should probably be refactored. + special_attributes: objectmodel.GeneratorBaseModel + + def __init__( + self, + parent: nodes.FunctionDef, + generator_initial_context: InferenceContext | None = None, + ) -> None: + super().__init__() + self.parent = parent + self._call_context = copy_context(generator_initial_context) + + # See comment above: this is a deferred initialization. + Generator.special_attributes = objectmodel.GeneratorModel() + + def infer_yield_types(self) -> Iterator[InferenceResult]: + yield from self.parent.infer_yield_result(self._call_context) + + def callable(self) -> Literal[False]: + return False + + def pytype(self) -> str: + return "builtins.generator" + + def display_type(self) -> str: + return "Generator" + + def bool_value(self, context: InferenceContext | None = None) -> Literal[True]: + return True + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return f"Generator({self._proxied.name})" + + +class AsyncGenerator(Generator): + """Special node representing an async generator.""" + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + AsyncGenerator.special_attributes = objectmodel.AsyncGeneratorModel() + + def pytype(self) -> Literal["builtins.async_generator"]: + return "builtins.async_generator" + + def display_type(self) -> str: + return "AsyncGenerator" + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return f"AsyncGenerator({self._proxied.name})" + + +class UnionType(BaseInstance): + """Special node representing new style typing unions. + + Proxied class is set once for all in raw_building. + """ + + def __init__( + self, + left: UnionType | nodes.ClassDef | nodes.Const, + right: UnionType | nodes.ClassDef | nodes.Const, + parent: nodes.NodeNG | None = None, + ) -> None: + super().__init__() + self.parent = parent + self.left = left + self.right = right + + def callable(self) -> Literal[False]: + return False + + def bool_value(self, context: InferenceContext | None = None) -> Literal[True]: + return True + + def pytype(self) -> Literal["types.UnionType"]: + return "types.UnionType" + + def display_type(self) -> str: + return "UnionType" + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return f"UnionType({self._proxied.name})" diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__init__.py b/.venv/lib/python3.12/site-packages/astroid/brain/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfab801f8c3b29f87931760629bec43c222008b4 GIT binary patch literal 198 zcmX@j%ge<81SZV?GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!O4TpVFUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;uEG{X^&rH!zDoV`E(~pnO%*!l^kJl@x{Ka9Do1apelWJGQ3bd6G Rh>JmtkIamWj77{q766b_G(!LY literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_argparse.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_argparse.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..663146270ceab4a7d74aec4f564f2e544215c085 GIT binary patch literal 2514 zcmZuzUu)Y|6u+`%Tb5(XPTZzVX^5AE)=3@HG%Ey3OPX}FV@bx+Jp#O`o&b$`|GWLWpOC+C;gZ*3nEe7Un?xouqmm+%VHo5+s;B79c#CX?wbx$N zSM+E6HqWYoBA4N8-lqnOe1^AqzZxobWIBKk$sICx&zA|yVL5n@%|zsg%)=~{14-du zJUGc%AxYD8Q!?|qW+XjUP@)S-yO7VO}s>P3sj;#Zv%)KPH1WgRX3=$^5{WAy-!DaJlv@dn%+5X|G)lq*0e|&!!z< zTo*dqQkR2o;x6BwL3+Hsa=91Yt)>SnUh||YJ=(7=Kn-b%d^<+S3VX<-9!GO{bUk13 zRlF6S*z&Ey!b)&0E4~G$;w|*K>-Jn>FTvu+i!3qwT`5=&x_o&LHOu^CmqoTJ@r_s8cWq;>FwzGT4;2e z9o+|SNVZu=$P-K{yC>}dvq_*zQTh?BFecbIRAEf~#-^jXkK3K-mldXf9q%KOnZ>h& zEHm^9Lk{m+X!Vr#2Zv5NqG!1$!CogB=!{40a8yr|J$QpTQuacXQrsBQyO|81B{_@D zEooVc&l_&0J5>~%fMm_jFG0Fvqq10KxkN1%D;qK$#-xXy1_eC>gMmG|uaAC$md8X@ z*B1?_Ys~Xjj-^01fVQ__SS5{+us*&vzB;uNh&>qi+4op@B)kfoeccgVpI)1Oc&plR z_AT**Q#;X~hhvY&AB{g%el7e`s724e^@8|yG`<j z@o#t&-01&dFI@?=i zdw00-I={yMH2pMPi;un@{|?c3cyhqLJovKoNhd)0HaA zS*2wEA+dY5b<9J2>uT9LW9$I&~=D literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_attrs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_attrs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6bd3d8cc2af3f3558db21a8125ed66bafa91db8 GIT binary patch literal 3744 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 yF};H#TX(_zuEmY zpU)tW57d9Rztj-=OFCl#KbBz~)Gb6&4N*)L4|kNBf~Bo`YDcSSv8{Qjj$YHjPSw&> zXF5$Yy{S>-JFRAn{1f1x06#-BOrvR<1wRLVwwJZ?dmoiW$OD&}+dPmXF{wSBwA zI7Eyk&lX~tHTT|3s&OWQE_awHHf+J37Ehv)CM!icXJME74wmPPL?5-n*PJK`3jQgtS;_hao3qRxq#mt|=XBE>4h12@LaM9Eh^V@-2l+Fp=&B zj_nCc<+^k=N5aoFyS_87Eo2_lda_;mI^b=wW5eZ@s+Gc8dGW(S70!2^!V+vFW#9IC z!WE_BF7tOwp4%wx^uq1Hzf^qh{gQA)R)EcIU`CYeg#1#2+peF?Bq3<07o8Ic<%B1k z6CgRcDt;20kwaX7sgDMlnlt*#j}0_!9%#Rvd8@y6|Bd3oOn>?N)o)jC=I?1U_p?*| z)gfe~XXupl#B^Q+;}(!|Z9=BZP2_N-!wH$~Sp@Xm!RwY1rLF@rEIPlqv9&>}mCY|! zmMY{*d1-57^DFY%=jFAPD=U>{vR=Mgv2c99LY`srJj~JSL~<;MBsqajo`cP&A@3Xv zA&ou)BtOmlF!$s9(JKr0vI}>$1wJJ!r8~)UUw;N*3YKDki(vd8z^A~%@%N8H`4VC| zl>0$2>LLCD7?u{D=B(w4knv-r$fIIr;*J69ix4=D)fjK$XJO@4xhio1BrW^9HUljE zVVpWT{mxNg{U23H=`k)V7o`cIfkQ|%HF___M%VS=Cy_kfNpy4pTw;h`9_PwWSrmm6 z>@XVtAq0;*Jp);ByOGui0xxblZtM<<503eHV$62}+V$81e+}{_aiR*-K*bpUok4gJ zKSZ++(1i!6^yk}achUKQZs1b~pAHbHpU)1Z8oY$@$G0H_>X+%ER0BiB`b~d;K;52x IELD8ye`1nrcmMzZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_builtin_inference.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_builtin_inference.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3080a36af299c2acab8102878032ffea7ef82e6 GIT binary patch literal 46307 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 IYXT%f)dI|cv`3| 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_collections.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_collections.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd7cf1ff4da573374db59c02570994f00d06d0ab GIT binary patch literal 5121 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 S7%v^UJp{*>sXyY7asLA()gzh! literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_ctypes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_ctypes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73214920d72ca65f1b23e6d97bd7fa1f54b36bea GIT binary patch literal 2702 zcmb_e&2Jk;6rb_hUVEL;52bBV2|8^-jv=wtrc|h3s7*kvl(vHO6alOC?l|6Ly<^Rc z6C4~V2M!=rA_zn)A*6Bw)PI4$04_xosag>U2{>>wq+EJ|H?zBTAmYYao_+J1H}8Ai z?6;$%7J}!D@mKR3png`9^vNc~P8*0j$U}?B!(Jx9ix}QUkZBo<23A-$$hLBeIZfw+ ze9K%kHJuL%t>R)4XpOE#`FsTD7ceq3}IQWRw1LX-Y$@PSAmcz!8G@f_Svyhtwm!-ejpw zv&3Z{K(Rn#$MUPzt!76MCsFS)D#EfPDT4TeW^uQMggTQ7!}v1Q6q#F8M-IZpYTx^leE)k8;J-cDSHG zJe9=cx)VA}lt+0^Wrv6EFs2Bplp65gxeWs(4sReYvxGNr56z)Bk0bO3tZrmBjE!s$ zFXP=?W7;!%nNN|I?HMrUdRZ9rpPBa)PK<7!%p$2Y=*Kgcb16N1_i)Oez86rX;Cu~2 zECSD~5D4nH%`|VErs>fso+50Oa)_Qs$~ui@;)FokYSk{2IPOA=(i?s0vk)pm$-bFv z^&tc4ZpcszBsh}sE@6;+zUB)$$g%5$A(N1(24qv06XTq^kZRDUOV5|py~0y-Kzc}B zDue^l>(q5RAX|&k#W%DNjDUIt?UZoZ4jkB{`55K zwkqbxfVz%wJx1K7!=s!o@(8uwvu6^%03a|8w!Rdzm0~u)0yvB@b~MIDVk|Z=v1JMN zTQR3n^2=qtvTi0?*XRBZjqArIV~hSv?Yb4~RTe$LmP)GAZbQ@N zsv}0(W#)&KT(r-%buetnw8@bnxT{K4HJ4~4xi{ijQ8zesD+wh-NhVMH+8X04qOICR zZQ+&a`O8;coL-QQ^xf%MV6`tp>*xw!)T*mAT&)Fuz1HqRQwV3Or%u;|FX=RFUV$q^ z)RJqhR_Ac?<1xMW+TG}B8gl4531Sc0vbIj}3t*EvePR`cP1GMddL+MjvwzMk7Wzi9 zl;51~A4XH>|3HPD^Syo)^N~5a+3cgtzQaEqKC$&yAK_=m zAB`X1dIzYJ#eOk2I`XGs7OlPk5+0ACkpo*}cP2iZxI6RFGvAlUgDlwr%_uUVo2whp z-F<(li0PZ}DiC*&9IVNV+N2&2-%n_9P%3`?^x%e+`E+(ax!W-6!mnc7hz_*7?XC?C zRKP6*HQQj2K9wm^$wp?=5srj|VTi8a>a$6Qse<_>poKDm@bfT6h4hN&b1+>{tH)s2 zL_d}eemwJF{Dp_5sb31@-jOdSAD(&bhr;Xq92%MC7lEfT8ksgURM)ooEX*S_$swJ8zqO9P0k4Px0{{R3 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_curses.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_curses.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f09da000eaa1d717b8b257e695da1bf3888e56da GIT binary patch literal 3800 zcmZu!%WvaE7`OB6YhMzG72;4XNJVP1Pa#l28atE5>eypEcDv0b%GTaCyLnXObfFRl z4*UV!c9D?a$ZG!q{s*pbiP#e-Zj}m`y}&n4TF;DQDb9Sq`R1GNIiBygYu8o`cpjAh zJHEJP7=H=k@~O-R7cmT87_kwX17m1*OjC?YgVM0vDQDyIpfap>s@b?Qs156#I*hA{ z`Sj+cu>Ai?DXx82=`6?fq#jq}r6-km8R(U>rHz%p1>1%>t&YZVlEUCNPmcQOB;noR zI6fUD-Q?>@GKv%a3YboMJWYVhPfsCSg`X^kh7Q$9M(_cV+$5aM@n8(uGr ziFr90o3H0%W^9za-jAz>v9b;i>LL=_Z4@vZu7AFMcMe*_@pfgJlBPs99ao|pZ_i;e z9U|h`65!FmMMMJpfQHzXHw^F|1|1|G79y`nBbh1knm7Q>WVSX9oDTJ1OKB~^EqNWG z`_g3K?6l?CkowXrs1Z80B2Bm_#E;}PC=3I~ib5>gy@1cAga%jAckw~jbv%W(0*rD` z3yvn;S6QN5KQXTuCjiwTfwZZc`$zy5vUiz}Y!z+YQB-M-6tbCnRETg?vY7`sn^j3H z#a~R@1S8cCnC7k%9GI%|SxZrdsjEF7?Wnf+1q2evQe@Z#0O<(!Lagq@0xXw?P_>Bo zf#c=rA$W*t4Z5png6=D%bx$E}mD$#qb)7A|qb^6Djn(aKLZ#Zu0zzFE>PuZn{R0(% z+zeGWV{Hw7o3jzh87Aa;I zL&dZbWm-WqOyo0I_>}44WreaV1e_Hj&I%!Cg#(Fc2LvmeYHU$jutHw2LSnE*iNF?S z0-$=~LcMF*0Z1|Eta#|MpcwOF&{@PFan-_O@L^LkauHX7$%Vw$Q`y|tIR|; z>sl7et04mjwexz+5Q>6a!3<%RwurI(Y@KoFVnduOl5s?Y$af6T#oo0FTQyM-$e(Lq zYvP?i6V`N)OC>Lg4R-LCk^J2TsI6WW03k@6@cF?Z7LwwYq$rCJn+Bfrb;y7+B+|U3m%8&*c2eZ^X zfV|K-bQw&S0Re$H4jkv%03vP)Ulf`dHI`%5g!-8qBo1C(dW z3=-L>V=jEa;1YV}z8NQ+B^t8dcBC)rjOzds`GzX4<-7_v_gBV+xWB*cH@+J4XX#1r zFi9H>ZxUoZ++>s9q<^?+LkrPGqu$^w?Wc{c=gH`KW6*!xI60dfk4N{n?%r#p{YkP3 zi=RQ;kT!a=E~4?6_xhvRyL)&FEk?R^ayGp+A9p9bH%gz3`H(}yWI(rIr0>D&TjS5w zo9CsY((>9xxnEkVog4j9wZ;X*v_71*Cf?yy-vO|&BvwUxPI>o^&lBs|Two8GvZJM9mk5#u$n;tHJ`%IgBHxmnYe zshFw3MYoylnJM{pX?xbzeZhqbh4$$-yw1y}Y5u!nnD4(aK6_()_{RA7y!NzY)?PmR eY5Rxm3qy?0q2V-b^ZU`cA^v}P=b!99lm0(pR8MUH literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_dataclasses.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_dataclasses.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..224e7b538540f1768b210749c2e839c14bbc1870 GIT binary patch literal 23794 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 aZ(u{yvjS^`=bEGYSgyTk-1-siIxVR< z^uQ0`R*;b3Sk#}wrKlhzi<~%di`&)Fgy{ z^GPz&F&K3L93cx?*g-CCVa##LNx4!>5?FH5Zl;wHIPJ)8wv`n)<0x*fl>;mjyfdCG zeC69IEBiLxDp(51S+bRDr>#89i~U@s@Q0UGaG3FYi!cDUDcQDJK&bBeR?i_ic^weX zA{25r7Fj@j+gj?`P87+nznYz%(bpTB&1?Bp!!x!C4P{D#9`(#CDhToOf(B^x6wDC{ zaFPsoRE(3v$GM$M9JuBzd=h7ysFFHpZghxh8374wm#7hQb>Cp>a?LPJ;t&csOSL_9 zy&rUZPo1q#&)ip;ul5*GgAU27Fyb8Zd(H|pA&dD#*O^J9v3%>jURfsF<& zUp4FvT-qSH$mk?)Bu0IBDyg+lN%(5t3bV0Bly4s1if479SiM7>E}=|p8;)J(qFXFF z8J3c$>3g6yXL(f_D-*R_UKRg^pf4!W0u&1#;s6)Qlj!~}&`C(}ld%ObLkVO2H;?et q06iX{>HysZJCr5-62D*h)cDXCA&!T|6n=rC$bNc;#GP8Kd4Oq!U@(wWkw`_aq{V2KA0 zUOedyOia9L_*1-S(3ouCL_Bz_sV6S_X4-Alm-c<`ym{~a-h3<+atP?A{=4}^N9ar% z38e-~uMNrpBB+K4CYq0H7^LoNfnL+G^rie%kglbbp7xC(Q_Cpb@Xa7w%YvSv`u1d! zcqAJdF<+!=d6K1Bk|A0nMRH(|bu=r#KeNmQi#$?lMp28G8WAfISI`~d`SuT)W8K1W zI*bVApiD8k<#9oo6GUXkrw)B8Xh({JtLOXcJI)o=O5&-uj@bNp5DWwEQJ3T96? zvbmmaju~BKrVUnrBXK6^<6j?Q3*I5_vtay<`!m>ep@CD;(O?TO>L|pDNrARPhglkv zFGv+>VKxprm)Dfo1>mun>?@l9b4EtxC(uRe^5Nr8v$wz8dGs|^Rdrg0IO8}Zsyhyo z?={X0rp06p@x_5bEK5>h`!ejP-Y4p*->q`tQSTtf`lyDppmoF-Wf}P&J>M zcl&SaKAVPsY=%Do*3~h_KXV9QIYY(oX!;Z_ouV@Qx<(cohpX?ZZ>l{6YIh3bHT*j4 NA}QZb{!&t1@CVWw90ULW literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_functools.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_functools.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1dd8911cb5a0d4f7c162face51fbfd5a92212613 GIT binary patch literal 8381 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_hashlib.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_hashlib.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffd4c1209a00f286dbcab32b3687fbff065fbac8 GIT binary patch literal 2871 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 C5qMYt literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_io.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_io.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88e54c212ccb303b5c0b48f8564e15149ca28684 GIT binary patch literal 2037 zcmb_cO-vg{6rTO@ve+1#0BMs}up~`e(_jk{4ycF-0#V#FL<*ruzO2@sv01Qp(aZvM zWU8$csn_(B9&-$$hg7Q6R;tuXZ|%V@NLZ^xs?<|&G|)>f?VH^-xU_07ebT;p^XARl z@BPgW@pu#gU6uY=9#;_hg>PCUhr;0pAUr}Cto;>p|>aBe6S%FOFD z?eMmjG#rPT`E|G!l+RNGR|Ud&xEzY6y(F1Uo364o1Js#?xsms$XU0bs9K$gSBiF&Z zK5ZH0Dl=Io4N-4o%4R;ZR&|zb>q>fbEW@D2BXD^Y`haC10^U&>zoP;U5vJFwUcX)< z7NKSV_PWzbC+!Cy3HaDGU@kg}qMpIsq_&?NZzRW`lHKH_n{B?LJ?{PVqq^MJObqTP zMjMII-NY65X7k+8XHj?dlUpC(dMN)S_aA}_R5?R`{(8FEBW`t-TD z6ZX>rN=fsclJ`4!TcjKsO#(}aK2*v*ZVR*<7RLXi(LUhb`IC@z2iltlxfwJ#eGLrG zbNgOkeu!N|kNck7{5HK8%hu&AJq!B(1GYqsP0G8z1y%)_`oC_2+S>*-h?8JC0G1cv zV?DrJ^emhg>q2DJx39Kk6%0knY@ps@3hI$m>6omsqbWA5(U z?CJcyR42IqZ-WoU9l7Y~>{r<@vfsa2znXQ?-)nsg zlV9=k2J2}$fw>B13y59>ix4X90QodZdI^;O2Jjs?4*`CC^}C60CVq@J-dzjk{R`@Vv7zU@mIPv3+@1Dg5b$k_Hd%6di#h9uT_?>_8F(;kPIfCZ40==jg)EU9Z;%()C!zRh!8{ tH{R^*ag}DzklX!2QH6^y&PIgygcnIcxOSi_g7VNhK(IXNJK~EU(x2O7%X9z$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_mechanize.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_mechanize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..631e244815badb402b53b54f3f795bdd3990403e GIT binary patch literal 3011 zcmb_e&2Jk;6yNn{Vka#K5KwVgMJlR|JK6T2U;(RM_={zgM#a7YM1y+j7tuoR@ za1WlFE;jEwIa>On&|0NsDAOWc=@jTHjw_>;TICNTR&&QiE+{A@UXjp^lm;2Zf({u3 zaIAq-kT`c~M`6BIgd_qziIflAwo@hx5%H$DAsU|I^#p+;_A)oz#YFzmsX7 z&K(p}#+i<~C+Y0IQ_Jm zPQ&9QhE%`^CDwX-fj!gF2C2)$r=|{t;D~6ayCVsd4mjNZ_HM5$|Ra?nIm>cG;+zP}=y; zMjEp=F?4|yU~@KhyCtZB;2G->>j*E=c`TDV zGxgTF6!y4GC+c-`%`UxA@QMsVA^OoYg2^DjX9Y`tng5M;k8p~Ql7tROyz-MgJvjVeivuR*U{L)sP+t(_F+P;tg*=bZ>hjgFVA`Jj?87dMNPWON(-u;fE0%VWPe#o2cAJ2&8KngSZ~j!h zImz|i)xv2$cGpT1#Dv9?G~(lOoFK2ga0aW8ZO&^U*Xu}}g}&7!-=<)PCnkT zyGP43=+p)BpacdgKa~Xvv=4bm;J=Wk_OUNE4kK;V~TX73{>N(FKN zXJ_YQcV>5HcKG)~AxGeQJ^9VbS3`vS3n$?x2gvRUAb%hRF(ivLrA0|XJYgl8$;G6= zla}0678QZZR;rm^ObcAGGR^E_R^TZs*UT^G0Z)HI7Ke-sz=DybStDoU8?rIE^?PSrg2@j^<|2b{FSy{cTLB>OdIvUMKPoRCgHc+lh9ump#K@tg8;u1 zrzRq*lqD`|imxjf$uYoIm4FZ%9t3!#nb@Z%e{a2HH_=Tt5|_zG9};p$>PoBP9%EYp zx?0#j$606rXwDGwVFI+}J4#nxEgqCLl+aEl-5c#HMhfk_qqs*y*{#5E#}lI=cc_}ZTi>DRkPW0n5!;y?0RtZLdl>FHJDG9 zF9;H@#i-k6c3gV0ESR@{_y6~*JGKi!7;XjOq=Pk=eCo71t8*Gm!mW|7&Zzq(gPoQ@ z9C$IUfZ?UVXw>v%l<_2u;YpYC43Eu|ZLq;pObmRMMoMA9by`;;Q*?}SFJ(D(-QpnP z(kAzE+|`-O*GzZC%b9R!Fo%3$Sx{vd#O0Ki@>2}fb`0vJ14kJY2;wDg(2l3v)U7t< zXaF9csy<`2HHY2cEgf#6wlG(@c5(K6Wx)j#>Xl2digwY~tqwPNt$LH%H*1!;RBLr0 zx9xM)S6{1fFs=g1Hy}xQP4{!Qw#0PP_MtX-)2)s-K1kGDrrW&XuqHbJreXN=e*?Hn zo)${|gq+RnCR0aJcdzUXlcA#_VJLO?a{q{|j65xkY`DFv_ka83`1GUW)0@Yuo2A-% z`f2g`jmy1}``4ZfpLsNVW^;IQvshl2`x#Oi>z&>x?vR|KuFG5FFZ_Axk5f;^ryh+@ zZH`xVNH(i}`quiTjbmHI((gb1^y6Oraq)*+&yD_bc&zu*{WsU=o)*V?6Q7@WT&(P+ z$k^$>%zg3t=IARM%GUUc>sL0;efEq0J`Zd3ldyh&gbbDLUjKUUBq^Nu)Afh>vpYmm zMz)H_J}dN-fIZ`wmAxO&o+p1jfAmr|`L~P&a9@SP>&4&hD1gH&+yW^l=JhnxE)ldr z8tIJbojAc=VN^FDI;}z;+?aWXwP|d5j9nD3YN0sf zV2BC}Q35|-N-PB;VvP8>`!aRK#siB7l_jRVPm2dyfsq5sF|9-Q)HFt0Ebw?hH`w^) z2|hW&rqu~netBXNJ@c)sYMKqFu4&T){)cnnpiogv}wS#^yZSGi+H;rU|i}JrtWt_XLYvBFQ^Fp0K*`}AQR75km8u{ zrf!+HDVv#hYzQ=@ppKXhWP~UsxD0+`sg<^CIBWJ{c^e5cY~#Kpy8sCr2jHDL@a%+L zN9_H15hTySj}HTY_b2~cKT*N=r#6)8lbVuZFW_3~K-Ek6=`df9x=vu@)}mg&2}rzN zccB+|gMJHoI+TG=igl+Tk#NHfJ|@v2<>dVB(ZNz3df*iYIOQb6RT%ms9@VnMRKPjf zsrmQAr>?8ubHR1KM%o~1}^fNXEG&~OeQvmQ7OVa;x wL^`ugE^L#Rwn=51oZTj`?W9ggrJZZiD^jZ8kYwpyX~XUl9KRUe6QfxCTVOYq8~^|S literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_namedtuple_enum.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_namedtuple_enum.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..60572342884c70404a96a60d0d19ba9739a19e3f GIT binary patch literal 27965 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_einsumfunc.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_einsumfunc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ef151a337dc204f32c3b37294abd4eec735d98e GIT binary patch literal 1105 zcmZuw%We}f6!knZnNIqmw4$I&3>(ymnoN0Z0!1naBqZ8RcR^@0iJi=lc|^9SZ7LQl z_yBhOg;rhgA#7N%KqIzk^Ie=(`w9 zOfSGF0C0#fY9g#)HBw@=sVV|%krwMsU1B{d#YWSRxD=IRvuOf0i27z>lJK(csJQ%I zZ(7(SCN}U?N5>Y7D}yPga=@)k#%UU2J4n+WvpXrZlPvBJ>g|-0Itde&#hol^+i{As zh%~H#^FC|1Za3sX)`DfRD>oFr6{RgV_QRwYi!|6V}PT|#q%5}whdeR)%aKvvmC%K#1$S0+KMoD_Hm zIqLR7XxU(xbnG#=)oR)&)K4&5v(t=kY^MnU)aPLw9*~Xae#Bs0t@ieO+GS2dZWk%W zBnr(E>{IFwR$r~J+3T+zxrmm4!!a5OCg=O^UP^nc@3#qacb?T=Za#TX+u=SB+qI`4 zhPRpc(SU`_t?!a#*NwuK+aK^CP43n2+;v&VNewplKmg|Y^{ zp5Od$#N%*h29F-o8Q?b$jV*$EhrU(jhpIMZjMXFfHyV zv>)9D_qXnEp>(+llhRJa8ZZS7?IVjL}fTsdADA%MdLO))+sLj>K?;xEz3VY4^g#!mUlDHI*ne!O9nw1DIJlKAa;^DZ(`{2#A`F| zY&~ndXs+LHY^7f6w;NBfHf}TWf{gpzv3FUt>jeI`lVoW(j_%sG?>O8~Spz@rVLiCx zjl1A%gXc$M?aDs5q7Ux5KG;c?k177+a#Qdkjx7vf1{qG{;)|%>k#Dv6p{h+8Bdt8G z4@tSKLk%5yB^>u-vwd1@JQlAM%^2N4b-odAaSl@z52YN77!-wMvMrbXKRA{OVz?zG zOMzL$T-;`YAebAI@qu|XmxT8sD&$-ld@Eht;ldBt^U+;-i(QdA8D zk$kDJY*|CQ%YuXfmv`rLr@p=);Any_zBoNCssI&ns&B|amwY8B5Pz+#mt=fmJQ@%B z6S#~H@f7|L)lgFuPUX?_h!cLYury-feRQ&u5yacx3KE96r14=Q3z1iC!d{ zqdexMGIt@-!t7C!a+b59Bnl#5HO>|Oo&Ckheeea?fATcH#N-@+{i5EB4bGWX2&__| z{j_5WDdVhO$ZVlNhq>m%-0J^mI9L3~UYMh~uKi}Q_a8sZVWEF+PsGfZ1Y%%GTUISu zB5>E|6-XRLTtsKka8-gO@?tm6D{I(?YjZtQvoE#&Hm1Nx2|nFJGY#x zedqnH>;2oe``3s_SyCAhd;k%JEK$cWrj|rR>Zyp^eEfOmQ%uHb#n8@nf9=NR)hlb; z%w_&??HyiG&L(n$nEJHSz6a60PT&tZQOx!*y3}6Z=un@*HQs4s-g~s;W)q?_Ag+%x znzyi+5zbRHq8-JFUPMj|?##==s}DH&3jC_pPSuqob!DnIzFqugajG}J_fL(BN5;jI z)!xb5A08Wbj`h1!{rsuEe55Z=>l@R0^TcSK8tX^K`mu58xPJMpq*SVpG_6!V<4S?m zNHoXs@X&FHc+Eu1-OZByN-nii=QEl+KVg1A(`07pZWdRcnnl?gEf!~a=@U_+WJwSa z<4=IRD6lA)$NHPuoP3L{a8bMmeV3D&B1zK2Dv(}(0M7jmmj9L&Nq(dQsrwsvZB~}f iw`OWamRb*M+Dq~;z?faorSf-Z1~~ii!k>brhW-Ue=&WV{ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_multiarray.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_multiarray.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f8baec1c301543253950a0179e4ed658105d140 GIT binary patch literal 4650 zcmb_gO>7&-6`m!zBt=mY^+#KhWpCovB;A!L*-oL_VPiQ~(4e;5+HTq~O&3efP+Dn! zh?%7=vM!KAFFCb9Q{>WX02?~A#~yp{C58mpSlB>;poiYJm4gDgv~Om2NlKA_6l4It zo%d$nn{VEG^LB=R9~#OaXcyxDTVEPQ=nKw7O%6MI8400J5k^&nB^)!Qsszut8METm zxWr`%GhxY9*-BQER;rq^($%z(%jSTUse(GZlQajdY&9$TDRamgt`3WS+8nWR)g1H( zNPOeFOnP{z_CUG zp92&V?O5r2r@YKu>KIsAcbrY8G#skfEvwm{uRD~?TP@QybV~KMVmY{FlKFq})vT5z zPqrOQSSjJ1(Os7swU$dXTepa2azmPFYy!_MX%?|+gnE;P-5@lSb#=U4znB~FP6rAv zv<3i%@&Y^Gq+Fl>Sq z!&Z7;oNu;;3Jk)4O=wY9m0Ibd5OP}qnlJ=57OpRTu%IdnAC@v*)jQa6kEF>>^F{|? zArH_VU(Q!s<+~2uWKF$JSozk<+_mK^Z_M3tb=RoRy$!+DmTlc^GlP}q?-2V=*)(e9 zX4_qN?DO-B=gQ1*$s8zef*)B~57MYyqq<=SGz>LQByFDyyi-A992n7Ds@n`Q(4u32 zFAqO90pug}WH9H)QUlq&_&_%4qX9Wdb1>k^!ap6x-5I#bscn$Dt18%SH%VpHv5BhG zoo2goo3^0qP{@x;;l~A4VXd08S$Rh{8OUvH8Fpo%FA&08A~g;Vh8Kqzbe8$dQ82)K z%N27T#ZHD;O}8!fOXpYIT#x4=?qA5)(DOyT%3MXBK&6s5Sab`O-pB+mBJ!#3k#6F>yBxFNmlvbLnt7^ zSY0;{L`~T3bHs~^i#HU4bQ%pt+|KSK&j>(!AzZN|d+Yr+ zfT!!at<|CabS`tu5m#(b$I?{Ab)W*ks9~>F3QTX1=cESTOJ0)K3fBpeH|Q5JgS=w2 zzRwJN=Qbf!e7QW^MS1D-bYJ!0EB3~?%UlDrbf!V21TdYu9PQWTd>g7t%Qk{i0t*1O z4j8EvY~8rSJ>0jP2*=@b2Ve37pAm1sU|JCD&aXL!E?az+gbQlw^HT08I8r9rVh(jX zS2>E1DQ=Q>RDz`r)ca%j7Ah1)$S72i!2#9JEw{Jo$KiHu0|FI>%V zSx_4yj$7%glkh@Vd1}Vma}wTQ?vQ-3Xz%c?gN>G$vQiqF&Izuf5<-J3w!@jlhUW$8}o+ z*?uG4LmPt!UINz5MzW3JsMmYCaLWmrJ0A5m_<`v_bNNY1v>vMM5PgK;B^LNWShRam zSF^k7mtvoew0qB2#(pBw`Nr5!Mivgk-WKQh$sipMTzN`4ng(5Q81)9=bJ8I;d>Xy{ z^_AN{x^eZEcKe2QWkq{;^_`WQH&?ED30}IqvF^2`cbw&}@&=ZpdlKcL28;Zz;5a7p zQgB^?dzMLg{?G&;O{~IIi1I9=DIld7EpTzxB5(l5;%>wk47IJ>kndvRy{(nr_+kr;fGIQcMf z@=1E=cOxH79(lqSUHI2^m6{W&E z1r_c)6>{_9h7r*4hS72jlL@y44(xi(o7}IoPRu5uOoY`N>5jDw6Rri6|9#NY*mrRZ zBG%Oiiv{J|(@S0#H)D||^ejk30O$zs@mq=r&sXU;gInqk=_Qcyea{@Aeq55Ie`k>N z{V!1NpJ?j8FjBmp#VWX(W%p=&0(? zaP}mU$9)u^Ec&N7dj`o9K1$?^eu1+K;mb4rB4;lkc?fhzX8boeyM*K^U}seS2b_Hq z$vI%hRKLR6%My}@fzPS_vcv^fL2wKNQ#1aG5UheA#BxIjegOiQUdqq-?+d{%CBDdn hlrIArR{uk|^mCN=Z7C-ue{cH;9``4n@rMY={{bcq7JC2y literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_numeric.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_numeric.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d6f91aac7fb6ac8884826e8003ad7182569a3101 GIT binary patch literal 2062 zcmcIl&2Jk;6rbI-*K5ZgNoY({s;~&Cv&gZVrd$dErD;$RBt=d5&?2e)J>txeQVAH`18^TX$V86h$ev_MFe{$yE2biGS;|ZKX*2DsrYiWf zm+>`I6Ik`Ke$LDZobkr|yqOnR^9p{^ECSAAWqW35^ki$goB}R7 zSx0WBoFd34yRuQ*tu9eULf6r^!mvg4W=Qm)ES`(>Q2gi@9wO6q8%8+JSus)T;!u4hb43&LgA%!@t3K815q` z4Hq40FTv}`kk{-lfy?PYFYAumglpn}>CH~iU~U*t-N8*az>e+)JTg2SwRTtRcl~xq zSR5}QfUWv2CSe?bS-Yw`tlP$mYhi$^dPu;n#mak?s!ltbVQX=NbU;kE>|~2^O^^LZ zQV=*cA$E6m_HtFfY#1XGpzVLQ(Cm1g$RhWl=>oH3d;GHhxj#JaBm=2=fCfB4PdoL` zL(-ycyMbwaeP!%k{L_V#E$8ya=C+!_CgYNBQs->Wz)} zWi^{0C|X|aBQ33xA}mBHo|)Ybco}dsD^mN+pe8g&W7UfaVNr`XKhBqKD0DFnAIxs+?r7r%el^#yK zdRSS0tjKA#uc37QC^fU6n(1kUZ%f~ldfL=I_o!UiFINs{7Z2b5@SyzBf%b7vn>f;@ z_qFL>{z@-Dby%(*mFM@%^9SXHgZ$M&TFK^~WHL$N8qY-;%W}eoWsx$!P$qdeM8x66 zgsX{X6pzU>>M+-%!p}GoQ)jnsVXut|6~T^5qqUCfK`SJ@-lEZoGd(^I_~=AZ|AhZ* zBXw2$jYRSYZ|)*$gx9Bdh9agz1CN=lKKPw$@|e8Ab|Y~C_UCkQlZ*clne4hRPN{VlKNfHM=hwPh&sN3wcddg!sY{TI5(q5npKUV7NWLa0wY_2$6oWiQ+JI5X1dV{B>w&rpw#kMI3R zKJq>KpSN!}EO;JQzU}|xfo1&%e`HTJEnF!md|`RkvE`M#a!?A($K?{1D?uf!9#?g_ z8mxr1X~%^iBCDD$X52@w&JLg7xT#0$bmkBU)EP!$X2 zPHeC&1gipnS0BL(z$*R8QY9$r=S}(*D}S`S^7(Dcf?DL(56~*-PQKYyM(Jid)2Baq!)qY?f^?4k4c8A&| z9bsTrK8%d*GpPu3sojZ{&A7733GoBc31~7O`013AAK0J8O8Km36J~2ewFF8$TXI|V ziLy~F2@GM-W7%%t8_VTkB&d|8YH;>y3D&qrlqn#Hwy9{? zCIt7)xn&$0GNT7HW%WsqGh(`U^z1Vg4F)d3YC3vd-*~BOcW$Tx`pzX-VG}mw?orkC zX<$0g=$H*9qnloWRZ>#}GyiWW+}ufql$gR68avZuGcwc_wboSjp_ z4Y`+C{*f|WN>OY&%7UCw({+!VwxLymM$~vIf!FSnbZ?t%P(@oeaKov@R1Y3A(?usK z5pEy1WNO}Isbvj|Zy9g23@S@tvc#c7{voE+7;LGGaZ3(yhJ$Fn=Set*kTYt!izqTM zok)u7V~(N5io*tFE;@kV&R8-YfSKv;pagM^^$>)~$oy<}LWH5xCq6wjU_Jl+_>BIM zjweG3Va_DPNrFgSXZ=x`o5#nmvz9V#aEQ-I$L7cRO4EtrJh&O*BXxKP+s>Wp<- znAuP%EQ#8UoZ=^tjNHuZ%i)%I&?#A4MD)OcZfy-tv6N#*{q&N*)>B%ujtUdA_+{~sgL_D}f*~Hhp zN~!6)Pxfv`0bQ*}14RI`87yX8_>`wy=yfNr}WSG+O3{}EC6dv)xrqt>&lDePN@`O02ciJKB zB-k77blQw$XF;fP(R< z%k8629{%e2#~(gCQm|3E4}T77IL{$RKa{@QZl6$gvK{!H?Pv%gGJDkC-P@KB4LyX$ z1GxT`+i)L*SJK-ZL420H9XN?ZLkBOVu{gezZb!q>gMvCoA1vTTI~41nE8P5Pu~S)tN!4t)gOOdzjtX>-(P=gRd22TW$j(VT7M5|<zsNoj6q{=|l&ztmix?~Nl zX8Gm$53~{Ux9$KvO4JrKO9FBLRsy+LgW{;3U9XGpz)$$+088G3!fWf_)gOLczx%KE zw!Uh;_+JHd7H}zUHSdg89mnIYd}!4j+3TkVDZUjl8F*8EFL>!*$Srv5DXUxA;B`@oFg%AdjO zvQjFQ-rliF2N%};3+s~$>*k4MT3GSj JclgmA{2!6?6RH3J literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_umath.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_core_umath.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2eeff032e055dbd89cf98e8954dce952a52616df GIT binary patch literal 4981 zcmcf_O>Y}Tbk=qpCrz8SP>CWAi>lH%a_rcR+a_v&v}!M;L82{4L1;DEowcXlon2;j z<2W=@4_vr$E8O4&sQeQy96&-AIdS4gM%gv9wP&7B117UmSSf%Gm0E%t*o8f%mw3|HDTvB^TBw+ znzRd>1sLZ^=E2!`!NaGSF(yCFZB82nQZVwyl$kT8;r&Ess(4~|eoc7Xp@!OYoR&~c zhpWuD-A-9|I4S!!_L{2g7`{cyzsn_yN_T=e1`#lLg_8yq9^qPup^+VrFoST3-s3)ubu2u}8mpHCwu#oF%(zri9S+j2UU~=PeBU{bCW3`QA{FCHglpl|{N^M*(ONp%xoF-RKmI6G<(=25Q$>yAbcw81d= zn8XWz{*Ki_K0 z82XPbK0?o}z~BFv&rnvr%g7pU%=NSM$a-O#>e#ZPG%cw+CG``>^)#vBir71XEYos) zSdC~6hs3(qcEBdjFH{u_Q~Q^exuD*3nD8+3M38{86x7OBtJiAR*_f&ix&aw#d`IMJ!g9Z)10g|cJ~2WAPBe@2(=Yk65Ru(GQN%gK64S5Dl~EK!R=i5g(3TXeSLx zcihgfw+5Fn=r(NqlGy+p0y-H^z#{`;G`PHJIoQ)&r%h5+0VIcO<0LU{ypt@4X%ANS zAu&>QfD#A=HbuaOo??M!#~rK&gRGkbZ$qt0v$3Vy$%ookuGTa`aUQU_1*vq1ci%$z^=1ecM zr%V<8+|8n?+0XL7oT~$9YW4tSrlt?}vTK={d=ITh%cyntSbw4}N^(+D|L@e$L(Jr(m);)18bu6y3?lid^#Vo{QefflbRzV!4Ei zfN^)W5A!M19v;R(e>PH{=jA&2J3$XA5H=9#I}~sZWPMh+4pkQp0&nv3fGmwA-hx{% zt0>AJXOU9fN9Xs^%07C1AIHV%6hAwT^U?H!ijN{O7>24wO(F^`QHxZdNJwp$A|VAK>*~8SZtQb(=cG6S zsRMriTgwC^RsR$wBv>rUf*9C>(y0r)J11#(PP%vR-skTv`Z!s_)K@0-m1@ zo#fsc^&-jBJTXb3VUQx+C*p!V(Yv)OA|86gYKCD;SdEZdtP`|jE5KF|l8#R+zhx*} zOR_8^Q~)!_>5eBN%AM50p|2v!2<1m$)W%#;Fq#?$-oOm+P@b5aMjg)Fb6f~P6Vx8e z0ds&NZKNdH@sQs_w%&VFv|v4D4a%*kNi7%qz7;mCF6Lg?5h>ydAZ~P+8+joUm7;Q~ z0U8`w5_nBfD+(=7#<{3=Ll!{^wNyiy3mH<8vg&@_K; z3*bjQiD1#fix8z9uRP-&YS)yxtRij0I1Hdx?wE5NFMyA{ue^9^rv+R{;IS_DJtA%X zE3N{Og-#!#f$aBLtGXBRmS|&_it5%{d42Wa{qk0XBhM{Ag3dXs4EwS0M77eTtXuWH z?P@!YnjyPexwBLiUPQ~_+=9<6syH2|>Ndw7OR1v<$_a3#9VfG+ixY9o1k78&Cjo`r z;wq4RbUKAfm->3HkRN0UC9{tTS(8tID#-=uFm1ZyNdd8}MNZOS9>~QhdJWGe(m|-! zv9y7up%`XrvzJ#$p#QeciI=FJyd+mw+bu(X{g!DTFPif$XF2#*M@0A9uel zJ^p5_DS&n<$vF-QUB^js!%lFSHn}pqRa9RpP3pHP7bx0teNMe z)Z9>SQejnixcsH4(l4u>E;Wd!oH#eI(CMmrvEHqW=Sb21H)~ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_ndarray.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_ndarray.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..517ef2f4ce254e0265ece005d55abee2c274fa2c GIT binary patch literal 9465 zcmcHY~=bxBbotq;pileBIDcO%25WKfdjwilyp>$+*+wlNCGCk5$txH}}r+?`#| z%u=G@1U}>tpL~qbL+^q6PkKq<01XK16!g%W1G|@8(l@g+yA&ykU+w~2&d$f1_dRds z%|BOG7A<&wKKFg|50@?x4pPEo;$+M=`^&W<9Lk!>-u4p_*i~ zhwHZE5K4sOtaI$wD>iSU2v=-RGNfAfLnJD8Ev^Io)jJ`DmatyuSX8f7QYaEq`hau@ zu-J5Fo*vjUtL!T$+q!F46X9)X;jMpgtzuvMaN`(g)wPB=hTal|!A4gi%ZE05NTA`3 za_rF7x{n$s0={JLHpAHW>>9R_CIUJOA~3TFSv=iB0j45IMLT|{}>II z>_5js5ZbU2wG$d#>ISTsXM4zYI(sN$N$2xz0x zXaeg4;x( z(d8O*bOr^`7R=wTf746fJ#4#EjRkaiFbW&HYySX53{hs=>B z*x~yr2c}R5<&8CfjHGK@eaZ^mLgtb7K+h8~?;G5}vtZc3(g6l3h+|@osai6n8|V;* zBcJ!it;07oGSEV_^Z$U#8UZ>O4!B1>MxY0P2z@<(BE&$=;B-TSYl&vXR=nKYsn{*p zDOSsHs=-3o55nHR4Ey(KJN3TxR?Xh zsoKH5IF>`%lumbJS1^^0YPEs`V@!^F*#4zWYQrLodN>Q|W=);`Jq0)N_ z;skimdvODagkKX3i;NK`8e6_K0WaZ1fQ6nWy~nj=o8U}d-NSNRe@a z>FJs>;vG0{H)1!=M4wk?NS<;WCh3x^w&uW9#2P#sIBdC=BVf5ddC&lv zuV)bnFfyDPq2I6!Ot*}lx=2k8mEwKrgq3(T$Dqp5;@%zK$Z1FqF$)!pOh)TFmE%F& z>scWOq&U8RnVM6PFqYUOVYA9)6pv8nC^m`-!9cQ7DMN%6>*RH6fK-Os*x2yoRtd2- zMh1oC1Ex+X8k-JS%VcUotBg)lOoNU*2kuck4T<5p+r(}XS!75JG9!#>>S3@8$L2nl zUV37=aEzGSlz|gA@Y)dFK=Pzo_HkW?Q>rn^yJQ%R5I6XtUMC2m*2x?|aljJ}P$x&r zl!xZeJ_FaL0}$ksh6zg`5bzWlqM31ftc2-GqLkh+8(&KOM|<{w5u4^@n(Za_Um=o4-nOxEv%5Bp|;*aUVG z6W|3YV1t%1orKlBVcE%=l%X+-TMSVS#~)^*t5UdQk8UHT>FJT*Nipusn%yRNUr*Hw zUuB73Eqx)=4;MPpcsZUzCX^ znV+9yGEdGH;MJX1X@`xuZb7E=*^;a)>Vz|wX?6hjU9`O)vKEg(nub8bS6-rL`m?Q_>)Rasv%mo2k6Kj|24cGS}*b+=T=J(-+T4(oKt>qs*DLz}WAO7y^rPaqb9^H7-`1HoJr7K?)uDk>gmYd!(fDd^i zLES>Iq41f!O#uJ>kC$t$TNd0S$lqaSp%K_xg1DSf6u?~w2DcL|E`i!?72e$o4y2n} z-0?{Z_Yw0ZwEsB$U~icM0%~_ zULmRJeT$;`5+zf5s-XyVwMEuGl~RW%XLYR4b9Xitx^FPt04IW(0~bFimyU-?@ZB>v zfph|Se9R<3B_JjVliC&}S3P>!Q8IwokD=4w;m0q*3#czF{i|^C%fiLyrIp94k5-?T z-umk8jc28+&r9$8w^*28Q2bzTOVD|xq=!GeZLXN;YbW*tbpc|dprmlPsxGr^r5JV> z607JIYGLR@uL}T-osqAfz^hwOhWbXg=r~^JI!<@daq2N7v*E;;NtSerT5}WHf2zN> zlpZHduBN?W;)8u9MwixVi)2zT-M36%rTg+ijl4XgIGe%ITul&{#-RAE z`1!e&a7k+3ccouK{2KfCSF8-5Qpo%oyk5-Za=C98t=#63wf1l8!jbjvk+ptgRgSFf aBkSs`h4=Eg^2@u0T<*%N(tIxA`~LtEo(z@% literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_random_mtrand.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_random_mtrand.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3bf9913dbd70f1730d71671db3fc8d476a8bb57e GIT binary patch literal 3708 zcmbtX&2Jk;6yLQS$NA_7w1^^sv|QSC<=72vI79>~pmL(Ulv6IN@y@e%$b2j_vrZi4 zz=1!2Td#0}s(%U>gg79Jhyy2XL4ivz@MhO>oC=(Evy#VeKHi((do%B2ezzsbIF>#V0@zkTlEr zr0Y=m{Pk0TXaBtlUHq!HvrHS%pmn;`tI=ibuMC%(D+g=a#%jfAkSMilf}YZW%tShD zYa*!q@bVSqLgR@xajJ5k4Hq3 zKIlBssDUTKk=HC$K*G(;c|cmi3+pX`a}p4nuMgN-Tb@uK?$&^Z&>~m`(PtuiG}b2Xqo5&54noB z?&XG<+a}2{1$_ol_LZWoKz5014G}4KN|(E_oaFc5GH|$ZPKvg=gi0twDlPDe2q1E7 z7}ghLuFHZ_3}}YVRQ}jR#_hD%4hT1;t(P+oh-P@~(UbzMAXbCYQY7?=Wdn%1(?H6z zD;cAIX~LuP@j>Fmt4Mj-=jN1?ALAwN0tR-l>Rh~t>~D5A+<6Tv`k765Thm@wjzNT6CSgR*RfCM6jOw- z@_P?Cpygg6xflQ%x~4?>Gn4S12l?5Gm?Z1?3U?ukq>}sC zJO#)=Nx=-J6p^)pU6Q8dE1x~WX`aszu1oTzQSSlkW}MFvZw^@6E4f@RVDbCRJ8>oO zi$P~k>0OgzDQG%R9(Y7RfXqf4=2OtL>&bpm+XcHyxx7Xk6 z7-nG&nRl`BHXTwF`<<>POcrgFN26#QABu9noeoFu{Kt6Y9s|Z5m&W&t=YHlUHeY(b zu3SH^++S*(R5w=Z$KJ+5U9aH8Xi*e3|KoU4(BrVvFE93QBQagp z`QFf#{s%XTz*#^Yzf77H?Ve6Ko~Ey_B5mAOfnLRS)Hr>g=MvG%(X@_F;#<x@DXnat-q(0Pd;)GMhY+`d<^?m=(RnLEL+k#ZZ?f+WzdbzhkUZ9Y)vtdok3IbR{^noqFPHr<+f16r literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_numpy_utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..65522f67deba0f702e3db02890493be489020c5f GIT binary patch literal 4273 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_pkg_resources.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ccd1990d858e5db8646cdec264f96628abe9b725 GIT binary patch literal 2527 zcmcgu&2Jnv6!+|RCQU!2R;^GD!-dX--C32-He!*&=Y*=OoHW& z`oEKZI)wb88jI2>g?WI&eG-ts2uWlN4MWMbuol&abuHJ!M${ZOwcH3>QG3`%xyg(> z7Z=73|D#&a`nEA#3EHe3G=t8l5v*X_oOT@ZPo?GGv%{%z%w7U|(b$n7vU75sRg8Hcbml;lN7w#vU+{WZ*O5ewn}?kH?;1(tYw|voM^+ zp74RE(k|6R*D5-^m`3cGef*!D!W~!aA$FL0X~J<0_85{Z?OMv$U^|JQ+2K7&X;a=+G&Urh8wT(8P@Okjz!ydYtxEve9ayzw=@5ldbpO?CnS@x!-#qQ>V8T z({L)d=)3zY-tUKex1UbsB#B>lZ@ktQ7|DAJ^L<)m&;Bk@9v8KDG_$4C{OXY&59x{p zE!_Y_>p+=Iy9R&f9*Kd9hoqNoVC(P*~2& zU*Tgz*058TM@k2aL8dB4=W9p6I5kjD6^+C(;5^DgIkDgz)_G^~gn&!f{8)`%zzU%@ z)_?f?LGtU{+rKqF)hM0Syj`*Z%4L3~Y`K~ncf!Jyfza;q3)NW0LrhhG4+nDCTdo({ zs<(Apzg{#%4FlA(OZ(IyA9vm<-Z$^URUA<0#U@s>x?vc9o5XnOfNUO+mk-FstaZz1 gJ-G7I`j6{#g5vBhs(faA7te_L|9tr`{nxht1C)0wPyhe` literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_pytest.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_pytest.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..696964a93123afe395ab64d0fd2711f1d83e0cfb GIT binary patch literal 2583 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_re.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_re.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b922576ea78287c22ccc9ab88560e14f54e40590 GIT binary patch literal 3968 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 F{{o=7J*xl! literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_responses.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_responses.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7fef71a2df1df1c5209a622ed6b039ce594d970 GIT binary patch literal 2203 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 M{l}SC>aDK+U-zS$e*gdg literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_six.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_six.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c400f90db43d45d2383329f42d15aff5945a0e0 GIT binary patch literal 9516 zcmb_CYiu0HdAoOeZ}KP}j}-OvDk4Rl9!EKnt%#N=(WGV55-BI7>zGKeKHlz;d)(VS z%`QbAdu-W6g{f44B)bV|#DQ(VK;$Y#T%bUOqD7M`{|Xd5lLhH50~lxxH2-KxX;k$` z`+c*Id+1!GZ3ej6nQy-N=Jn0@n)`>w#xMivg!jKDzqOZP{sk*e;_SkMzlOpRBQj%* z$ci3?&3VQ=ES9~BH^+@}w9F~KoPW$u%RVKL3yuY8*{_6h;jwToG8V}-j5SbLKxxcH z$D&XUjx~v)v29}bDl^tBHD_2cBE>QuvEiz3tVL`bi;GccX%(9wZ-ch&(6;R=H`XpT z17wE{i2-D%*aDDUVqA)f5wSJHiERMgU1&{gpWD-?8$^>uep1t>bUvdIUYBS2oF+~y zQu0^0&ID`vMM;!Y14=$s6D1uA?L?Z8bweV8g)2z2hNOxTfwrhk^!aI7L5SCkS3+cU z;sru9Vs7s<3?h$D8`7Yfk%*+GC95G?U9TWHlu}a@5}9j;Ste7WDC8s~l~z)^J{LpK zjBHGnVQJPrDExTf=Y`*cuRylM6q#&gE5I<_u|CWQEPEK&3)>^-p};A!D(TpRf1K%_ z(a4mZPo*Wjd*p?q7yF)n=IDr#GUW8pe%K$OPfaNWUDmskS0wdHw<3>s=L^Q9rXEi| z{nc(=Hl(A_c?wpdcc-ia=pH92S+#NjSCTK7&7zb^O)G|wCz2?qQ?T1jFoEsx)1#0r zFdLDk8$H*0{^axuxBUS?7}HNAW16UGT&a_gUFpi7hr*l8o9vsOC1%mH$SyJ&ugG2v z&U-~qz1{FIMX$3XckJDQo$;p5L#0m?b-oLxmXT+>cthijNr@i^u25AtVP4Ddx}->H zLlSwqcf73fT?Vj8S27&tAq{3|cWY%`ysYziqFs@J*N&9w&d7?wYpPNJ(mWhEP_u`k zL@A+}NnoA|S_iQyK`D-sX(?G}BvmuYqfsKV!PBwqJ;zaCI9y5P8dESERa1{jxx7)Z z*JVtm3|`a#Zcs{TO@*^JcwJK@m^W<1%p@E+mSwKDa!i5w zbMFkB@C=UvQ-}4uA{%rg6C7y-WHaRQn(4RB*5vTebetQ%u&_Xo^USE#CW!*=J@=F# z!{t|v4A{(}zu-NX^rL`lSDHCctZ;vFDun6+Zo4jDy!>Mhsq% zwQza_B!D_Gc!@uQ^`uh`XJiGA5ujEfoFQ6{hjS)|rYSmaldu{yuq9GhR`b&abf8}g zUoW_rvI>3Ga4wYx6v)FQrA|mtreB*pofpUxhdhxKEhUDnk1dL!i;~KXiz!=-_wZKp zK}%96EK-?iHC;7RkTKI~$)47vBF#EuT%OhpxO+OUBUGSOdpeqfQ{ENag|w#N&6nXK zI0&!m5*d)w#t|M%7vX+bC97k2wtBI1GHwFo_Bge>3N3=7!S?8eb5`S^Yz$e|ojTmY zj69J~5g4uv%NIazIaNWN&gBY%F-auYL;Juc4I`gSgEo|MEr5hA#dI(T{wmOF<@ zBc~+cR>+1d*+@A>Z~$dWfMre8A_O?q^S0)s$k4Mq6s?wNz^q}VSAZj(DO=U>^C?|= zX>|0J5v%nK-~ZxZRec0ju2iGY0qy?wzU1ZfltS4c{R%BQLtmbjrh&Ju8$+Z#0rqsN zx|W`jjA}wP`#mG86-P3gQ%F8tu@Va)RFkl=((aDfSQfw;e3~dQl_b%|HKV+}7F4K! zI`~p9B`e9CoRg9{(7H18q1#R20>T9sUZ)SJ1-BW`prTu4Q=OhDUu$|Gs1D{hoMjCr zf*eeH#dNWVX0MgjYj7mAz$$QP-N7-Ys4%LjCPg`=XcO4UMi4AWEgr}`uvcnv%g|bU zJxx$xh|WGZ)GOgn^r1{!Jqp;GU^*c)*PoXGmTkr4p;}ATFs7<7jHy}-RPIJfHRyGA zCh7ufu|-v^qzBbn3=owXNrUwb9A1f934gLrE~ly0YX=DlGO7%(?Ni?U%2AA|GW>}i znk8+VMP{I0i<6Ud9jw@Kt!iV-PzT>)#Ohj-NFX}EPAW614XMTZZ7=ZuoBh*Z0JzBy zC2BR_hQbnK*ya`k?ww;~WhThACed>Ty$?uE&w0iOSrCRXB2KB+*3P0y zR+Gvm-aNROMOFZN#Y#mMY;$gS?o=49Yw8s7L)sNdKd6moK^-T0Xv6Q%(@zdtK*?Gd z2@0Fzu;=3t`X97C5hS=o(+`eeE@e<#$_xsFL$6%=#^?ya1rl_V%?6!XNdjtN(d5)r zPD*%8E)Cw0>9_0-9k+nDt+N&w0?ZYdf?$B^*O5L!BQXa*eF(AzW;4>f<>5lX2VQ@J z|2GXxpz)6~*I)b7Z!TY1Z9K5*@7ii)e4&R?Cc69G;nm$oRvVA5H};eod+wfCZ9KPd zej~PL;r!JL8|6W0 zd4K&AEBe3V5xw*NKk(16Gt8{_bp~9eK&lN6^gQSe_gdISttP&8sQ! zza{kgj7eD!G>APuuS?UScGS8a=p?2m!E{y)2n2w70Z$V>YE^fDNT%P=?^) zmIVgkv5Ln__CaQP6-hPy3QCc@82~F%f#8Z6n1JXG#E3``al*0=8w1KWEfKuFrhkwc zon{=SETH@4#G-H;AXEjp4ifAD;x-^18fy}?4B3yM2%Q~u6KBnk+ipfITUJ1b>6K>F zW=NkNx3)vanc$gXvRz>e*9f@R0tV5@*8l_kZruxPv%qZaX5zb+r%Ek}Pg;g9$yI_-)!7fEzkbuYpaa|t~~oR(DJWs zJC+Z;cle#dt8E7sBO5^e!t%wHcw#+%tQ0@?am#A_nf3UYQvA%_^v{m3#$Q|vZF#(* zK6Ya#|6cN)T3J%Ee>w9>|SZuy#-xk3qy|{HZj|}(24J3H)98G z&#c8x-W^$KIQO4h;J^2=k9Bm;|GqWee~h_zEHn`D-aFMe;P?K*?}KucOh(N~W%3FX zXoL>FwMl0SAbqp7V5nzp9b4H1!I5(yk18Z_ku_YrtSe8;eH?kDv)A_)*({!SP0G6Z zy4>JMb;FgzQwMHIgzkqEjv=NuXkK{czt+4xMsf zMP0y)piY?0BZJ=*`UVDsp%+H``Y-m4jG$Jjv%-mIzjt<{DgIgOjwRuiu-(b#dR8MnpSEn@3PFdhFw@Zdq~gUbr-%HH za6Nu!hx}*%_d^aQ-SeN8nZ=P_Car2#2p2K({7 z0ZYEisAEVkB?Pn6&2ahg0iu*=p@E#kj1CZTCro3NI5$g$>~d{js!OW2gIt9EAHh%m zTgX74z_r?T18-?CT60UA>fX{V&KqjoY}vjXdN2A;biMsZsr|@mdvdjk8JmZTzdf3V|KlNebN>dWmLhGjuaa0AZk9E8Y zKlkqMk9qFJn)*9@_x7`p*Vh3tkZP4)7sz~9ZUY%RIoHp&#@T|WKAz~MY+kJgT^sOUO>cL zt*cLOePA-BQ^OMPCAoyzKEw_pkXny^u&F`RfK5u@Gb|%A+UFRN);neJf>f|d;Xx2R zvsO8VO8d3J(U&T;wvWmJlf&7VUa%!CiQt%;XuRrZ{-8{-g~FjqO%895@Q`L1xv0jg z7fZekU4H>T{d35`a}Ib5z#4w( z!|Y1rX^Lgwfl;3o)T&i@!?sVC9v89h~F z|L-Zf65McQbeUoS-qnXqFI?`q19lu#hgTu%Ujj)hw0XP?0K7zm;QDFU%-rSvAH(wc z1>1>rT~agVVz|d{NyHbC2;LCt4$yO_0wuwc6hN&%Jy?cH(4j#x(DFI9PC^C}hugjU z+WXSl(Q|8DA5=DiO)Jf()}9-F==J#gaI1X{>s(if>-tG_jXSx)Mb^2!C2sF#u<=Ip zT68nGe=~UEVSoeFFh#9u?AQ!`_1D-)87#5K3*hr+&1e!Dl{@-#vCX({ZgL3Us`bs^a3rz(Cuh*ISqeO3y{2y zNEnlYQ-qiWzByYFjt(qgSODZdybW91Og9|mwzc87pC2)Ffpn`M2TxlOhhB0Sno#HI zHy{J)$Fg698MfndX4mJ;j$bl8zhn;m#>26mFBr&v4NZqXi+8Os%^R(W6()Ay&$8_x zn>(NVf@x$s@9uwqpDq4u1Gf;oKi~N-Mz)@fvj^^S d4;c8|PX^d+Tk$5=e^cFJ;B!0v5I=On{|zQ5r>Ot{ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_sqlalchemy.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_sqlalchemy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..306fd70a12e668cd9dc68ef1348a6cef8cd29b90 GIT binary patch literal 1330 zcmZ`(y>AmS6u0wnNz)H1R7zVhgr#aCl8CQ?ic}O-rnX3=5>l4a_0HFr_G!0^4 z;16JHnOLd%r?4=s+c*%NF>q(aK()F~~Q_S!(^$h4~f}hXEHAXf!;TUgH z^$90KGEUmbx+!M@>|8fn$o)`x1stZi?+^*ff*^ZT21J;i@3a{)$w5H4L&Py8wJaeC zB+abLK={gzASa)<&v2s-#A)@!Jc*tWidmCJ*;!uRs> z1+$plAYQlZ3$HARl+@>W>a~0ke+y9V`WN6S7Mq`IonHIoyhi+i&I7qEv5~jqG861XufR^ISg(! zi{|$-D5Ly-1egxJC!3znYUcZJ^z+wh;sk-IG6s%!(@G6CR z-zzGr6u_LicJ%Di^4jMIPrsyU8gF4T%*6L0RP*pkY?bxxlpBP#h>*Hpcxf1GQwFbG z80y5(8&57W%4=-tKZ3@naR~J*(>*oHv+VuopRp$9A)w&Pd$9D97~@|#gqKdy>M6Q@ jii$mB2^&Wn?>FCV_7SMPRg8D=Ti!!z|1kGc@4ECK)uT*{ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_ssl.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_ssl.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9452210bbb3d391e9efb4474b4c4d05d4c32862d GIT binary patch literal 7195 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 T#`y4|*Ad|F)AP^pj|t{~T+|)y literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_statistics.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_statistics.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6260f01ce04e0930a4a650e18e1d75b824550c7f GIT binary patch literal 3278 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_type.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_type.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..113d67fcce6999abe74800afceceeb9a28b86d26 GIT binary patch literal 3133 zcmb7G&2JmW72hS76t&d1oumnZbo^1 z%*=|WAR}s!Lw&M?7LW@RD2fC~1NG261+a{pl(Qo0_N9G*9<3f!@i~GCIoH zAlor&hLVjS*U8uNO3no%okFdk9uhM}lH!tTv|PLNMN$s7-)8?u~wA)F!(z z9$lpz4SQf8GD*5j2)`asA{h~WryKN%<9S53d@)!?{80EF7(j4G1*tQyf1EJcqP*t| zYC1unrUdD+DDa3A2nJ!S!h&5N7P%TG->xI5+FuzfyE>)eFb)&q=y8af06Opbp?uFW zuSCAb$U9C*-hyZ&fPyoKo5E(WliSAFTTbZVDR568_kvwQNqLu37^`MW%C4xE%S~Ul zqPpd>PB{Uz><-@bfYr;V&(Krn<}0U9dZ*90b=N!LxM%0)=4oXf)aT~unbY%?`q@UM z{40gNC_8nC({ZKc9$J_?J2wl%ylGy?FzVcaNE$2%SWl>kgwvrUU`^izKqLX15Kapy z;t3G;F6A93q@jc~;1QmeN<<0g6=4!0AjCpa$bXL#7dW-+71GT@@HoIlrGPa6JQ3A} z%l)o|I6P|hTE5##(;Z^0sKzjHAIrSNkcCrBzNfB+4cI$$=|u)vzac@l?`=Vc>PxiYL;YAoLkpcGJEU>qC|W3tmIQ^_q{b(!6#vLVOO6@p58vDY0FwaQ_8M= zZ4!8{bKn6Z4Zj(2N>~J(!MrW)%}s=bFsM-{VFagvBSAaNFQfq7Rl5#%Ix4HxB)8z) zZBe(KOe;Deq*Z7qsySH-acc>5OIH#jD5!{sRm?Uv0mVbKQcTzzTGBS27m{)o8@T10 zrCeq?v`}RWJXc-DvaI)h7?V|HD+kpd#pL9&fCj>$W{_Kn4~|Zf zIuUy-fFn3@p&t1G+|FX{9c8ZWTorLuePg|OwDG?!{Fobv-F6%;RAPJ)`AA=B*`p7RbFA8X!dmpQVkKhF6JkBXNN;y7-suxjZ;^FMX zlWxbO$^QhwU4bhw2*NQ-@q}7Cq&fd7C@uI2ABGL>$&B{G%bV9ezV^F?hx?D--+%Nk z`R)DX-z;uiyQ4oId-2ZNraFVC=5MRp#UuBOBYYq1_Fw%N39R~Y3xwwt zh#Z#G3KrD&9*GF4M;20PYfv;&{cl9=)}Xj_t*?EqFO~A~45v*WE?92E%@YdvyVgk( zU|=`q=u5$*ngQkxE^@q21o|GpT1b8HpMmls{KNqmHnc}Z@uBhBedD#qh4I_wE%Wz_ zpIY1d=N_C|{3e^pf%Jhg3(FvKH+zL=bMGQAqG06Zuf#kQe# zKv|Bdif2+=dc&n%b&V^A#xJB3if9-n-o^^Wc<5??U=l0#*aTq2?sH9HqS*Rv;e1Ec zz|Z+fm_oe82^gMabzT3LIi(xl9M<$hUu!S#XvcQ6<2%~P9j&~hz5XeJ6&nbD6v Kdp)ZsD1QeEIbS~j literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_typing.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_typing.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd5a2bc3235ea66e9276f082c1d74f98e3361d41 GIT binary patch literal 20811 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 a;rYN;yJmyu!`1+O;L$mHBkdv_`Tqbdn5EhP literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_unittest.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/brain_unittest.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c20fc1e72719bd7d4ea38e16ce89e435b564ad7 GIT binary patch literal 1394 zcmaJ>Pj4JG6!*-|&TckIqavt^1jrynJBXbrr65sNNTKQ>5-p%asjMOG zqw^yFDM09NYb*t9CyN}qM~I>kq8{}Nuk=U0XZ23eDT7hq^q}aL;V5)^x9FAqQ6Kb> z`43)ean5vOpZ2~FMg!VseHzl0aX<%Pug+GY)uZ<|wNa8&oJ+Z{@mMNc32qG22A7gn z1&jZ&SdmwEg``Y_a#^tn*M_OIS&_2u3=@>8C$MNrlxDE#LJNGC2r^-+4iz(%64@DI zr~`)m7nh-Vgp9YGq~6n3-$s#7egk8GLAC@oIeW!$O0s=G|HzGQX;~1%=%${DjLRJe z;Wp6>X9dw3bNI@sRImUSF~f&BYw&k>({#cNF-E27?k+Bw$tA^d z{9o@)^cFcIMFF^n+~f}P$~j!FV4^Wmld5FG#CRvK^#4(JSO71ic|~3WFK!*q@KstV zE+*|9HoRm}>^AM>ux(t4%y20nks0KcG$&#A;s#{7u?_4T((O52)r{fXn5n**Bom0V z+KV$;CevBLg&9(I(5ea7x?(!HaqY8fkz;f8x$DMCmN+IhJ!xh$(K~nHN-~_o7pTr+u zPc%1d*p`e=NK^R9o+4Z{ZMrP|csi@!K8Mzpt0J`ygx28Km!Nrwo?Sv~7w5je(qD9f zwQ!DtZm3pas_vD|4Y-$`mNyLBuw3bX0Lt0YKZd(*d>C}{)UE;X&$ZNQwPJTfan6b!!GlMQ2d^ex#E@tpn(Bp%zS(UF7=6jSd2iqEeDCf1L?VuWE~~#w z&lQBeN~J?uTWH+{VHHu7M-)@V!4)O1U@5DPTG8?v$eN`r1erR);Y}k{pVw$~SCOwx6Uw6C$arh=?5%|hw{p4OTbKhfSUL^&K zXL8f2TN5`%Q#nC|T}VyBTg(ZUICXCGOnT9B7c-7Mm#Nl8$#XBIFI>!UTUaRwF2n12 zhJ*lS<`}WvkejudP1Du7-)~llD3k)-EI5R7)(aiTLGfW=4fJj3%=*aM$TRX%+Zh`D zFnFag^=Rhd%u3{=HqZhO93PxNG zdt3?kAT}vspR(oyoK#~&2h3|sGj5dLf9>=f8# zbNo86riwBC5l7hAMT5KOd{bBO)u+?z*|lsFfw&=B@@mFatgpCD1lPv#pYjSC`~zPy B_vQcq literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/helpers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/brain/__pycache__/helpers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0b027c6f7b1f4e251aef8698b8e7bc316bd01d4 GIT binary patch literal 6377 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 CCY%%i literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_argparse.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_argparse.py new file mode 100644 index 0000000..6bde22f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_argparse.py @@ -0,0 +1,50 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from astroid import arguments, nodes +from astroid.context import InferenceContext +from astroid.exceptions import UseInferenceDefault +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + + +def infer_namespace(node, context: InferenceContext | None = None): + callsite = arguments.CallSite.from_call(node, context=context) + if not callsite.keyword_arguments: + # Cannot make sense of it. + raise UseInferenceDefault() + + class_node = nodes.ClassDef( + "Namespace", + lineno=node.lineno, + col_offset=node.col_offset, + parent=nodes.SYNTHETIC_ROOT, # this class is not real + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + for attr in set(callsite.keyword_arguments): + fake_node = nodes.EmptyNode() + fake_node.parent = class_node + fake_node.attrname = attr + class_node.instance_attrs[attr] = [fake_node] + return iter((class_node.instantiate_class(),)) + + +def _looks_like_namespace(node) -> bool: + func = node.func + if isinstance(func, nodes.Attribute): + return ( + func.attrname == "Namespace" + and isinstance(func.expr, nodes.Name) + and func.expr.name == "argparse" + ) + return False + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Call, inference_tip(infer_namespace), _looks_like_namespace + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_attrs.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_attrs.py new file mode 100644 index 0000000..b619bb3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_attrs.py @@ -0,0 +1,110 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Astroid hook for the attrs library + +Without this hook pylint reports unsupported-assignment-operation +for attrs classes +""" +from astroid import nodes +from astroid.brain.helpers import is_class_var +from astroid.manager import AstroidManager +from astroid.util import safe_infer + +ATTRIB_NAMES = frozenset( + ( + "attr.Factory", + "attr.ib", + "attrib", + "attr.attrib", + "attr.field", + "attrs.field", + "field", + ) +) +NEW_ATTRS_NAMES = frozenset( + ( + "attrs.define", + "attrs.mutable", + "attrs.frozen", + ) +) +ATTRS_NAMES = frozenset( + ( + "attr.s", + "attrs", + "attr.attrs", + "attr.attributes", + "attr.define", + "attr.mutable", + "attr.frozen", + *NEW_ATTRS_NAMES, + ) +) + + +def is_decorated_with_attrs(node, decorator_names=ATTRS_NAMES) -> bool: + """Return whether a decorated node has an attr decorator applied.""" + if not node.decorators: + return False + for decorator_attribute in node.decorators.nodes: + if isinstance(decorator_attribute, nodes.Call): # decorator with arguments + decorator_attribute = decorator_attribute.func + if decorator_attribute.as_string() in decorator_names: + return True + + inferred = safe_infer(decorator_attribute) + if inferred and inferred.root().name == "attr._next_gen": + return True + return False + + +def attr_attributes_transform(node: nodes.ClassDef) -> None: + """Given that the ClassNode has an attr decorator, + rewrite class attributes as instance attributes + """ + # Astroid can't infer this attribute properly + # Prevents https://github.com/pylint-dev/pylint/issues/1884 + node.locals["__attrs_attrs__"] = [nodes.Unknown(parent=node)] + + use_bare_annotations = is_decorated_with_attrs(node, NEW_ATTRS_NAMES) + for cdef_body_node in node.body: + if not isinstance(cdef_body_node, (nodes.Assign, nodes.AnnAssign)): + continue + if isinstance(cdef_body_node.value, nodes.Call): + if cdef_body_node.value.func.as_string() not in ATTRIB_NAMES: + continue + elif not use_bare_annotations: + continue + + # Skip attributes that are explicitly annotated as class variables + if isinstance(cdef_body_node, nodes.AnnAssign) and is_class_var( + cdef_body_node.annotation + ): + continue + + targets = ( + cdef_body_node.targets + if hasattr(cdef_body_node, "targets") + else [cdef_body_node.target] + ) + for target in targets: + rhs_node = nodes.Unknown( + lineno=cdef_body_node.lineno, + col_offset=cdef_body_node.col_offset, + parent=cdef_body_node, + ) + if isinstance(target, nodes.AssignName): + # Could be a subscript if the code analysed is + # i = Optional[str] = "" + # See https://github.com/pylint-dev/pylint/issues/4439 + node.locals[target.name] = [rhs_node] + node.instance_attrs[target.name] = [rhs_node] + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.ClassDef, attr_attributes_transform, is_decorated_with_attrs + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_boto3.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_boto3.py new file mode 100644 index 0000000..3a95feb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_boto3.py @@ -0,0 +1,32 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for understanding ``boto3.ServiceRequest()``.""" + +from astroid.builder import extract_node +from astroid.manager import AstroidManager +from astroid.nodes.scoped_nodes import ClassDef + +BOTO_SERVICE_FACTORY_QUALIFIED_NAME = "boto3.resources.base.ServiceResource" + + +def service_request_transform(node: ClassDef) -> ClassDef: + """Transform ServiceResource to look like dynamic classes.""" + code = """ + def __getattr__(self, attr): + return 0 + """ + func_getattr = extract_node(code) + node.locals["__getattr__"] = [func_getattr] + return node + + +def _looks_like_boto3_service_request(node: ClassDef) -> bool: + return node.qname() == BOTO_SERVICE_FACTORY_QUALIFIED_NAME + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + ClassDef, service_request_transform, _looks_like_boto3_service_request + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_builtin_inference.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_builtin_inference.py new file mode 100644 index 0000000..e21d361 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_builtin_inference.py @@ -0,0 +1,1106 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for various builtins.""" + +from __future__ import annotations + +import itertools +from collections.abc import Callable, Iterable, Iterator +from functools import partial +from typing import TYPE_CHECKING, Any, NoReturn, cast + +from astroid import arguments, helpers, nodes, objects, util +from astroid.builder import AstroidBuilder +from astroid.context import InferenceContext +from astroid.exceptions import ( + AstroidTypeError, + AttributeInferenceError, + InferenceError, + MroError, + UseInferenceDefault, +) +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager +from astroid.nodes import scoped_nodes +from astroid.typing import ( + ConstFactoryResult, + InferenceResult, + SuccessfulInferenceResult, +) + +if TYPE_CHECKING: + from astroid.bases import Instance + +ContainerObjects = ( + objects.FrozenSet | objects.DictItems | objects.DictKeys | objects.DictValues +) + +BuiltContainers = type[tuple] | type[list] | type[set] | type[frozenset] + +CopyResult = nodes.Dict | nodes.List | nodes.Set | objects.FrozenSet + +OBJECT_DUNDER_NEW = "object.__new__" + +STR_CLASS = """ +class whatever(object): + def join(self, iterable): + return {rvalue} + def replace(self, old, new, count=None): + return {rvalue} + def format(self, *args, **kwargs): + return {rvalue} + def encode(self, encoding='ascii', errors=None): + return b'' + def decode(self, encoding='ascii', errors=None): + return u'' + def capitalize(self): + return {rvalue} + def title(self): + return {rvalue} + def lower(self): + return {rvalue} + def upper(self): + return {rvalue} + def swapcase(self): + return {rvalue} + def index(self, sub, start=None, end=None): + return 0 + def find(self, sub, start=None, end=None): + return 0 + def count(self, sub, start=None, end=None): + return 0 + def strip(self, chars=None): + return {rvalue} + def lstrip(self, chars=None): + return {rvalue} + def rstrip(self, chars=None): + return {rvalue} + def rjust(self, width, fillchar=None): + return {rvalue} + def center(self, width, fillchar=None): + return {rvalue} + def ljust(self, width, fillchar=None): + return {rvalue} +""" + + +BYTES_CLASS = """ +class whatever(object): + def join(self, iterable): + return {rvalue} + def replace(self, old, new, count=None): + return {rvalue} + def decode(self, encoding='ascii', errors=None): + return u'' + def capitalize(self): + return {rvalue} + def title(self): + return {rvalue} + def lower(self): + return {rvalue} + def upper(self): + return {rvalue} + def swapcase(self): + return {rvalue} + def index(self, sub, start=None, end=None): + return 0 + def find(self, sub, start=None, end=None): + return 0 + def count(self, sub, start=None, end=None): + return 0 + def strip(self, chars=None): + return {rvalue} + def lstrip(self, chars=None): + return {rvalue} + def rstrip(self, chars=None): + return {rvalue} + def rjust(self, width, fillchar=None): + return {rvalue} + def center(self, width, fillchar=None): + return {rvalue} + def ljust(self, width, fillchar=None): + return {rvalue} +""" + + +def _use_default() -> NoReturn: # pragma: no cover + raise UseInferenceDefault() + + +def _extend_string_class(class_node, code, rvalue): + """Function to extend builtin str/unicode class.""" + code = code.format(rvalue=rvalue) + fake = AstroidBuilder(AstroidManager()).string_build(code)["whatever"] + for method in fake.mymethods(): + method.parent = class_node + method.lineno = None + method.col_offset = None + if "__class__" in method.locals: + method.locals["__class__"] = [class_node] + class_node.locals[method.name] = [method] + method.parent = class_node + + +def _extend_builtins(class_transforms): + builtin_ast = AstroidManager().builtins_module + for class_name, transform in class_transforms.items(): + transform(builtin_ast[class_name]) + + +def on_bootstrap(): + """Called by astroid_bootstrapping().""" + _extend_builtins( + { + "bytes": partial(_extend_string_class, code=BYTES_CLASS, rvalue="b''"), + "str": partial(_extend_string_class, code=STR_CLASS, rvalue="''"), + } + ) + + +def _builtin_filter_predicate(node, builtin_name) -> bool: + # pylint: disable = too-many-boolean-expressions + if ( + builtin_name == "type" + and node.root().name == "re" + and isinstance(node.func, nodes.Name) + and node.func.name == "type" + and isinstance(node.parent, nodes.Assign) + and len(node.parent.targets) == 1 + and isinstance(node.parent.targets[0], nodes.AssignName) + and node.parent.targets[0].name in {"Pattern", "Match"} + ): + # Handle re.Pattern and re.Match in brain_re + # Match these patterns from stdlib/re.py + # ```py + # Pattern = type(...) + # Match = type(...) + # ``` + return False + if isinstance(node.func, nodes.Name): + return node.func.name == builtin_name + if isinstance(node.func, nodes.Attribute): + return ( + node.func.attrname == "fromkeys" + and isinstance(node.func.expr, nodes.Name) + and node.func.expr.name == "dict" + ) + return False + + +def register_builtin_transform( + manager: AstroidManager, transform, builtin_name +) -> None: + """Register a new transform function for the given *builtin_name*. + + The transform function must accept two parameters, a node and + an optional context. + """ + + def _transform_wrapper( + node: nodes.Call, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator: + result = transform(node, context=context) + if result: + if not result.parent: + # Let the transformation function determine + # the parent for its result. Otherwise, + # we set it to be the node we transformed from. + result.parent = node + + if result.lineno is None: + result.lineno = node.lineno + # Can be a 'Module' see https://github.com/pylint-dev/pylint/issues/4671 + # We don't have a regression test on this one: tread carefully + if hasattr(result, "col_offset") and result.col_offset is None: + result.col_offset = node.col_offset + return iter([result]) + + manager.register_transform( + nodes.Call, + inference_tip(_transform_wrapper), + partial(_builtin_filter_predicate, builtin_name=builtin_name), + ) + + +def _container_generic_inference( + node: nodes.Call, + context: InferenceContext | None, + node_type: type[nodes.BaseContainer], + transform: Callable[[SuccessfulInferenceResult], nodes.BaseContainer | None], +) -> nodes.BaseContainer: + args = node.args + if not args: + return node_type( + lineno=node.lineno, + col_offset=node.col_offset, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + if len(node.args) > 1: + raise UseInferenceDefault() + + (arg,) = args + transformed = transform(arg) + if not transformed: + try: + inferred = next(arg.infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + if isinstance(inferred, util.UninferableBase): + raise UseInferenceDefault + transformed = transform(inferred) + if not transformed or isinstance(transformed, util.UninferableBase): + raise UseInferenceDefault + return transformed + + +def _container_generic_transform( + arg: SuccessfulInferenceResult, + context: InferenceContext | None, + klass: type[nodes.BaseContainer], + iterables: tuple[type[nodes.BaseContainer] | type[ContainerObjects], ...], + build_elts: BuiltContainers, +) -> nodes.BaseContainer | None: + elts: Iterable | str | bytes + + if isinstance(arg, klass): + return arg + if isinstance(arg, iterables): + arg = cast((nodes.BaseContainer | ContainerObjects), arg) + if all(isinstance(elt, nodes.Const) for elt in arg.elts): + elts = [cast(nodes.Const, elt).value for elt in arg.elts] + else: + # TODO: Does not handle deduplication for sets. + elts = [] + for element in arg.elts: + if not element: + continue + inferred = util.safe_infer(element, context=context) + if inferred: + evaluated_object = nodes.EvaluatedObject( + original=element, value=inferred + ) + elts.append(evaluated_object) + elif isinstance(arg, nodes.Dict): + # Dicts need to have consts as strings already. + elts = [ + item[0].value if isinstance(item[0], nodes.Const) else _use_default() + for item in arg.items + ] + elif isinstance(arg, nodes.Const) and isinstance(arg.value, (str, bytes)): + elts = arg.value + else: + return None + return klass.from_elements(elts=build_elts(elts)) + + +def _infer_builtin_container( + node: nodes.Call, + context: InferenceContext | None, + klass: type[nodes.BaseContainer], + iterables: tuple[type[nodes.NodeNG] | type[ContainerObjects], ...], + build_elts: BuiltContainers, +) -> nodes.BaseContainer: + transform_func = partial( + _container_generic_transform, + context=context, + klass=klass, + iterables=iterables, + build_elts=build_elts, + ) + + return _container_generic_inference(node, context, klass, transform_func) + + +# pylint: disable=invalid-name +infer_tuple = partial( + _infer_builtin_container, + klass=nodes.Tuple, + iterables=( + nodes.List, + nodes.Set, + objects.FrozenSet, + objects.DictItems, + objects.DictKeys, + objects.DictValues, + ), + build_elts=tuple, +) + +infer_list = partial( + _infer_builtin_container, + klass=nodes.List, + iterables=( + nodes.Tuple, + nodes.Set, + objects.FrozenSet, + objects.DictItems, + objects.DictKeys, + objects.DictValues, + ), + build_elts=list, +) + +infer_set = partial( + _infer_builtin_container, + klass=nodes.Set, + iterables=(nodes.List, nodes.Tuple, objects.FrozenSet, objects.DictKeys), + build_elts=set, +) + +infer_frozenset = partial( + _infer_builtin_container, + klass=objects.FrozenSet, + iterables=(nodes.List, nodes.Tuple, nodes.Set, objects.FrozenSet, objects.DictKeys), + build_elts=frozenset, +) + + +def _get_elts(arg, context): + def is_iterable(n) -> bool: + return isinstance(n, (nodes.List, nodes.Tuple, nodes.Set)) + + try: + inferred = next(arg.infer(context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + if isinstance(inferred, nodes.Dict): + items = inferred.items + elif is_iterable(inferred): + items = [] + for elt in inferred.elts: + # If an item is not a pair of two items, + # then fallback to the default inference. + # Also, take in consideration only hashable items, + # tuples and consts. We are choosing Names as well. + if not is_iterable(elt): + raise UseInferenceDefault() + if len(elt.elts) != 2: + raise UseInferenceDefault() + if not isinstance(elt.elts[0], (nodes.Tuple, nodes.Const, nodes.Name)): + raise UseInferenceDefault() + items.append(tuple(elt.elts)) + else: + raise UseInferenceDefault() + return items + + +def infer_dict(node: nodes.Call, context: InferenceContext | None = None) -> nodes.Dict: + """Try to infer a dict call to a Dict node. + + The function treats the following cases: + + * dict() + * dict(mapping) + * dict(iterable) + * dict(iterable, **kwargs) + * dict(mapping, **kwargs) + * dict(**kwargs) + + If a case can't be inferred, we'll fallback to default inference. + """ + call = arguments.CallSite.from_call(node, context=context) + if call.has_invalid_arguments() or call.has_invalid_keywords(): + raise UseInferenceDefault + + args = call.positional_arguments + kwargs = list(call.keyword_arguments.items()) + + items: list[tuple[InferenceResult, InferenceResult]] + if not args and not kwargs: + # dict() + return nodes.Dict( + lineno=node.lineno, + col_offset=node.col_offset, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + if kwargs and not args: + # dict(a=1, b=2, c=4) + items = [(nodes.Const(key), value) for key, value in kwargs] + elif len(args) == 1 and kwargs: + # dict(some_iterable, b=2, c=4) + elts = _get_elts(args[0], context) + keys = [(nodes.Const(key), value) for key, value in kwargs] + items = elts + keys + elif len(args) == 1: + items = _get_elts(args[0], context) + else: + raise UseInferenceDefault() + value = nodes.Dict( + col_offset=node.col_offset, + lineno=node.lineno, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + value.postinit(items) + return value + + +def infer_super( + node: nodes.Call, context: InferenceContext | None = None +) -> objects.Super: + """Understand super calls. + + There are some restrictions for what can be understood: + + * unbounded super (one argument form) is not understood. + + * if the super call is not inside a function (classmethod or method), + then the default inference will be used. + + * if the super arguments can't be inferred, the default inference + will be used. + """ + if len(node.args) == 1: + # Ignore unbounded super. + raise UseInferenceDefault + + scope = node.scope() + if not isinstance(scope, nodes.FunctionDef): + # Ignore non-method uses of super. + raise UseInferenceDefault + if scope.type not in ("classmethod", "method"): + # Not interested in staticmethods. + raise UseInferenceDefault + + cls = scoped_nodes.get_wrapping_class(scope) + assert cls is not None + if not node.args: + mro_pointer = cls + # In we are in a classmethod, the interpreter will fill + # automatically the class as the second argument, not an instance. + if scope.type == "classmethod": + mro_type = cls + else: + mro_type = cls.instantiate_class() + else: + try: + mro_pointer = next(node.args[0].infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + try: + mro_type = next(node.args[1].infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + + if isinstance(mro_pointer, util.UninferableBase) or isinstance( + mro_type, util.UninferableBase + ): + # No way we could understand this. + raise UseInferenceDefault + + super_obj = objects.Super( + mro_pointer=mro_pointer, + mro_type=mro_type, + self_class=cls, + scope=scope, + call=node, + ) + super_obj.parent = node + return super_obj + + +def _infer_getattr_args(node, context): + if len(node.args) not in (2, 3): + # Not a valid getattr call. + raise UseInferenceDefault + + try: + obj = next(node.args[0].infer(context=context)) + attr = next(node.args[1].infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + + if isinstance(obj, util.UninferableBase) or isinstance(attr, util.UninferableBase): + # If one of the arguments is something we can't infer, + # then also make the result of the getattr call something + # which is unknown. + return util.Uninferable, util.Uninferable + + is_string = isinstance(attr, nodes.Const) and isinstance(attr.value, str) + if not is_string: + raise UseInferenceDefault + + return obj, attr.value + + +def infer_getattr(node, context: InferenceContext | None = None): + """Understand getattr calls. + + If one of the arguments is an Uninferable object, then the + result will be an Uninferable object. Otherwise, the normal attribute + lookup will be done. + """ + obj, attr = _infer_getattr_args(node, context) + if ( + isinstance(obj, util.UninferableBase) + or isinstance(attr, util.UninferableBase) + or not hasattr(obj, "igetattr") + ): + return util.Uninferable + + try: + return next(obj.igetattr(attr, context=context)) + except (StopIteration, InferenceError, AttributeInferenceError): + if len(node.args) == 3: + # Try to infer the default and return it instead. + try: + return next(node.args[2].infer(context=context)) + except (StopIteration, InferenceError) as exc: + raise UseInferenceDefault from exc + + raise UseInferenceDefault + + +def infer_hasattr(node, context: InferenceContext | None = None): + """Understand hasattr calls. + + This always guarantees three possible outcomes for calling + hasattr: Const(False) when we are sure that the object + doesn't have the intended attribute, Const(True) when + we know that the object has the attribute and Uninferable + when we are unsure of the outcome of the function call. + """ + try: + obj, attr = _infer_getattr_args(node, context) + if ( + isinstance(obj, util.UninferableBase) + or isinstance(attr, util.UninferableBase) + or not hasattr(obj, "getattr") + ): + return util.Uninferable + obj.getattr(attr, context=context) + except UseInferenceDefault: + # Can't infer something from this function call. + return util.Uninferable + except AttributeInferenceError: + # Doesn't have it. + return nodes.Const(False) + return nodes.Const(True) + + +def infer_callable(node, context: InferenceContext | None = None): + """Understand callable calls. + + This follows Python's semantics, where an object + is callable if it provides an attribute __call__, + even though that attribute is something which can't be + called. + """ + if len(node.args) != 1: + # Invalid callable call. + raise UseInferenceDefault + + argument = node.args[0] + try: + inferred = next(argument.infer(context=context)) + except (InferenceError, StopIteration): + return util.Uninferable + if isinstance(inferred, util.UninferableBase): + return util.Uninferable + return nodes.Const(inferred.callable()) + + +def infer_property( + node: nodes.Call, context: InferenceContext | None = None +) -> objects.Property: + """Understand `property` class. + + This only infers the output of `property` + call, not the arguments themselves. + """ + if len(node.args) < 1: + # Invalid property call. + raise UseInferenceDefault + + getter = node.args[0] + try: + inferred = next(getter.infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + + if not isinstance(inferred, (nodes.FunctionDef, nodes.Lambda)): + raise UseInferenceDefault + + prop_func = objects.Property( + function=inferred, + name="", + lineno=node.lineno, + col_offset=node.col_offset, + # ↓ semantically, the definition of the class of property isn't within + # node.frame. It's somewhere in the builtins module, but we are special + # casing it for each "property()" call, so we are making up the + # definition on the spot, ad-hoc. + parent=scoped_nodes.SYNTHETIC_ROOT, + ) + prop_func.postinit( + body=[], + args=inferred.args, + doc_node=getattr(inferred, "doc_node", None), + ) + return prop_func + + +def infer_bool(node, context: InferenceContext | None = None): + """Understand bool calls.""" + if len(node.args) > 1: + # Invalid bool call. + raise UseInferenceDefault + + if not node.args: + return nodes.Const(False) + + argument = node.args[0] + try: + inferred = next(argument.infer(context=context)) + except (InferenceError, StopIteration): + return util.Uninferable + if isinstance(inferred, util.UninferableBase): + return util.Uninferable + + bool_value = inferred.bool_value(context=context) + if isinstance(bool_value, util.UninferableBase): + return util.Uninferable + return nodes.Const(bool_value) + + +def infer_type(node, context: InferenceContext | None = None): + """Understand the one-argument form of *type*.""" + if len(node.args) != 1: + raise UseInferenceDefault + + return helpers.object_type(node.args[0], context) + + +def infer_slice(node, context: InferenceContext | None = None): + """Understand `slice` calls.""" + args = node.args + if not 0 < len(args) <= 3: + raise UseInferenceDefault + + infer_func = partial(util.safe_infer, context=context) + args = [infer_func(arg) for arg in args] + for arg in args: + if not arg or isinstance(arg, util.UninferableBase): + raise UseInferenceDefault + if not isinstance(arg, nodes.Const): + raise UseInferenceDefault + if not isinstance(arg.value, (type(None), int)): + raise UseInferenceDefault + + if len(args) < 3: + # Make sure we have 3 arguments. + args.extend([None] * (3 - len(args))) + + slice_node = nodes.Slice( + lineno=node.lineno, + col_offset=node.col_offset, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + slice_node.postinit(*args) + return slice_node + + +def _infer_object__new__decorator( + node: nodes.ClassDef, context: InferenceContext | None = None, **kwargs: Any +) -> Iterator[Instance]: + # Instantiate class immediately + # since that's what @object.__new__ does + return iter((node.instantiate_class(),)) + + +def _infer_object__new__decorator_check(node) -> bool: + """Predicate before inference_tip. + + Check if the given ClassDef has an @object.__new__ decorator + """ + if not node.decorators: + return False + + for decorator in node.decorators.nodes: + if isinstance(decorator, nodes.Attribute): + if decorator.as_string() == OBJECT_DUNDER_NEW: + return True + return False + + +def infer_issubclass(callnode, context: InferenceContext | None = None): + """Infer issubclass() calls. + + :param nodes.Call callnode: an `issubclass` call + :param InferenceContext context: the context for the inference + :rtype nodes.Const: Boolean Const value of the `issubclass` call + :raises UseInferenceDefault: If the node cannot be inferred + """ + call = arguments.CallSite.from_call(callnode, context=context) + if call.keyword_arguments: + # issubclass doesn't support keyword arguments + raise UseInferenceDefault("TypeError: issubclass() takes no keyword arguments") + if len(call.positional_arguments) != 2: + raise UseInferenceDefault( + f"Expected two arguments, got {len(call.positional_arguments)}" + ) + # The left hand argument is the obj to be checked + obj_node, class_or_tuple_node = call.positional_arguments + + try: + obj_type = next(obj_node.infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + if not isinstance(obj_type, nodes.ClassDef): + raise UseInferenceDefault( + f"TypeError: arg 1 must be class, not {type(obj_type)!r}" + ) + + # The right hand argument is the class(es) that the given + # object is to be checked against. + try: + class_container = _class_or_tuple_to_container( + class_or_tuple_node, context=context + ) + except InferenceError as exc: + raise UseInferenceDefault from exc + try: + issubclass_bool = helpers.object_issubclass(obj_type, class_container, context) + except AstroidTypeError as exc: + raise UseInferenceDefault("TypeError: " + str(exc)) from exc + except MroError as exc: + raise UseInferenceDefault from exc + return nodes.Const(issubclass_bool) + + +def infer_isinstance( + callnode: nodes.Call, context: InferenceContext | None = None +) -> nodes.Const: + """Infer isinstance calls. + + :param nodes.Call callnode: an isinstance call + :raises UseInferenceDefault: If the node cannot be inferred + """ + call = arguments.CallSite.from_call(callnode, context=context) + if call.keyword_arguments: + # isinstance doesn't support keyword arguments + raise UseInferenceDefault("TypeError: isinstance() takes no keyword arguments") + if len(call.positional_arguments) != 2: + raise UseInferenceDefault( + f"Expected two arguments, got {len(call.positional_arguments)}" + ) + # The left hand argument is the obj to be checked + obj_node, class_or_tuple_node = call.positional_arguments + # The right hand argument is the class(es) that the given + # obj is to be check is an instance of + try: + class_container = _class_or_tuple_to_container( + class_or_tuple_node, context=context + ) + except InferenceError as exc: + raise UseInferenceDefault from exc + try: + isinstance_bool = helpers.object_isinstance(obj_node, class_container, context) + except AstroidTypeError as exc: + raise UseInferenceDefault("TypeError: " + str(exc)) from exc + except MroError as exc: + raise UseInferenceDefault from exc + if isinstance(isinstance_bool, util.UninferableBase): + raise UseInferenceDefault + return nodes.Const(isinstance_bool) + + +def _class_or_tuple_to_container( + node: InferenceResult, context: InferenceContext | None = None +) -> list[InferenceResult]: + # Move inferences results into container + # to simplify later logic + # raises InferenceError if any of the inferences fall through + try: + node_infer = next(node.infer(context=context)) + except StopIteration as e: + raise InferenceError(node=node, context=context) from e + # arg2 MUST be a type or a TUPLE of types + # for isinstance + if isinstance(node_infer, nodes.Tuple): + try: + class_container = [ + next(node.infer(context=context)) for node in node_infer.elts + ] + except StopIteration as e: + raise InferenceError(node=node, context=context) from e + else: + class_container = [node_infer] + return class_container + + +def infer_len(node, context: InferenceContext | None = None) -> nodes.Const: + """Infer length calls. + + :param nodes.Call node: len call to infer + :param context.InferenceContext: node context + :rtype nodes.Const: a Const node with the inferred length, if possible + """ + call = arguments.CallSite.from_call(node, context=context) + if call.keyword_arguments: + raise UseInferenceDefault("TypeError: len() must take no keyword arguments") + if len(call.positional_arguments) != 1: + raise UseInferenceDefault( + "TypeError: len() must take exactly one argument " + "({len}) given".format(len=len(call.positional_arguments)) + ) + [argument_node] = call.positional_arguments + + try: + return nodes.Const(helpers.object_len(argument_node, context=context)) + except (AstroidTypeError, InferenceError) as exc: + raise UseInferenceDefault(str(exc)) from exc + + +def infer_str(node, context: InferenceContext | None = None) -> nodes.Const: + """Infer str() calls. + + :param nodes.Call node: str() call to infer + :param context.InferenceContext: node context + :rtype nodes.Const: a Const containing an empty string + """ + call = arguments.CallSite.from_call(node, context=context) + if call.keyword_arguments: + raise UseInferenceDefault("TypeError: str() must take no keyword arguments") + try: + return nodes.Const("") + except (AstroidTypeError, InferenceError) as exc: + raise UseInferenceDefault(str(exc)) from exc + + +def infer_int(node, context: InferenceContext | None = None): + """Infer int() calls. + + :param nodes.Call node: int() call to infer + :param context.InferenceContext: node context + :rtype nodes.Const: a Const containing the integer value of the int() call + """ + call = arguments.CallSite.from_call(node, context=context) + if call.keyword_arguments: + raise UseInferenceDefault("TypeError: int() must take no keyword arguments") + + if call.positional_arguments: + try: + first_value = next(call.positional_arguments[0].infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault(str(exc)) from exc + + if isinstance(first_value, util.UninferableBase): + raise UseInferenceDefault + + if isinstance(first_value, nodes.Const) and isinstance( + first_value.value, (int, str) + ): + try: + actual_value = int(first_value.value) + except ValueError: + return nodes.Const(0) + return nodes.Const(actual_value) + + return nodes.Const(0) + + +def infer_dict_fromkeys(node, context: InferenceContext | None = None): + """Infer dict.fromkeys. + + :param nodes.Call node: dict.fromkeys() call to infer + :param context.InferenceContext context: node context + :rtype nodes.Dict: + a Dictionary containing the values that astroid was able to infer. + In case the inference failed for any reason, an empty dictionary + will be inferred instead. + """ + + def _build_dict_with_elements(elements: list) -> nodes.Dict: + new_node = nodes.Dict( + col_offset=node.col_offset, + lineno=node.lineno, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + new_node.postinit(elements) + return new_node + + call = arguments.CallSite.from_call(node, context=context) + if call.keyword_arguments: + raise UseInferenceDefault("TypeError: int() must take no keyword arguments") + if len(call.positional_arguments) not in {1, 2}: + raise UseInferenceDefault( + "TypeError: Needs between 1 and 2 positional arguments" + ) + + default = nodes.Const(None) + values = call.positional_arguments[0] + try: + inferred_values = next(values.infer(context=context)) + except (InferenceError, StopIteration): + return _build_dict_with_elements([]) + if inferred_values is util.Uninferable: + return _build_dict_with_elements([]) + + # Limit to a couple of potential values, as this can become pretty complicated + accepted_iterable_elements = (nodes.Const,) + if isinstance(inferred_values, (nodes.List, nodes.Set, nodes.Tuple)): + elements = inferred_values.elts + for element in elements: + if not isinstance(element, accepted_iterable_elements): + # Fallback to an empty dict + return _build_dict_with_elements([]) + + elements_with_value = [(element, default) for element in elements] + return _build_dict_with_elements(elements_with_value) + if isinstance(inferred_values, nodes.Const) and isinstance( + inferred_values.value, (str, bytes) + ): + elements_with_value = [ + (nodes.Const(element), default) for element in inferred_values.value + ] + return _build_dict_with_elements(elements_with_value) + if isinstance(inferred_values, nodes.Dict): + keys = inferred_values.itered() + for key in keys: + if not isinstance(key, accepted_iterable_elements): + # Fallback to an empty dict + return _build_dict_with_elements([]) + + elements_with_value = [(element, default) for element in keys] + return _build_dict_with_elements(elements_with_value) + + # Fallback to an empty dictionary + return _build_dict_with_elements([]) + + +def _infer_copy_method( + node: nodes.Call, context: InferenceContext | None = None, **kwargs: Any +) -> Iterator[CopyResult]: + assert isinstance(node.func, nodes.Attribute) + inferred_orig, inferred_copy = itertools.tee(node.func.expr.infer(context=context)) + if all( + isinstance( + inferred_node, (nodes.Dict, nodes.List, nodes.Set, objects.FrozenSet) + ) + for inferred_node in inferred_orig + ): + return cast(Iterator[CopyResult], inferred_copy) + + raise UseInferenceDefault + + +def _is_str_format_call(node: nodes.Call) -> bool: + """Catch calls to str.format().""" + if not (isinstance(node.func, nodes.Attribute) and node.func.attrname == "format"): + return False + + if isinstance(node.func.expr, nodes.Name): + value = util.safe_infer(node.func.expr) + else: + value = node.func.expr + + return isinstance(value, nodes.Const) and isinstance(value.value, str) + + +def _infer_str_format_call( + node: nodes.Call, context: InferenceContext | None = None, **kwargs: Any +) -> Iterator[ConstFactoryResult | util.UninferableBase]: + """Return a Const node based on the template and passed arguments.""" + call = arguments.CallSite.from_call(node, context=context) + assert isinstance(node.func, (nodes.Attribute, nodes.AssignAttr, nodes.DelAttr)) + + value: nodes.Const + if isinstance(node.func.expr, nodes.Name): + if not ( + (inferred := util.safe_infer(node.func.expr)) + and isinstance(inferred, nodes.Const) + ): + return iter([util.Uninferable]) + value = inferred + elif isinstance(node.func.expr, nodes.Const): + value = node.func.expr + else: # pragma: no cover + return iter([util.Uninferable]) + + format_template = value.value + + # Get the positional arguments passed + inferred_positional: list[nodes.Const] = [] + for i in call.positional_arguments: + one_inferred = util.safe_infer(i, context) + if not isinstance(one_inferred, nodes.Const): + return iter([util.Uninferable]) + inferred_positional.append(one_inferred) + + pos_values: list[str] = [i.value for i in inferred_positional] + + # Get the keyword arguments passed + inferred_keyword: dict[str, nodes.Const] = {} + for k, v in call.keyword_arguments.items(): + one_inferred = util.safe_infer(v, context) + if not isinstance(one_inferred, nodes.Const): + return iter([util.Uninferable]) + inferred_keyword[k] = one_inferred + + keyword_values: dict[str, str] = {k: v.value for k, v in inferred_keyword.items()} + + try: + formatted_string = format_template.format(*pos_values, **keyword_values) + except (AttributeError, IndexError, KeyError, TypeError, ValueError): + # AttributeError: named field in format string was not found in the arguments + # IndexError: there are too few arguments to interpolate + # TypeError: Unsupported format string + # ValueError: Unknown format code + return iter([util.Uninferable]) + + return iter([nodes.const_factory(formatted_string)]) + + +def register(manager: AstroidManager) -> None: + # Builtins inference + register_builtin_transform(manager, infer_bool, "bool") + register_builtin_transform(manager, infer_super, "super") + register_builtin_transform(manager, infer_callable, "callable") + register_builtin_transform(manager, infer_property, "property") + register_builtin_transform(manager, infer_getattr, "getattr") + register_builtin_transform(manager, infer_hasattr, "hasattr") + register_builtin_transform(manager, infer_tuple, "tuple") + register_builtin_transform(manager, infer_set, "set") + register_builtin_transform(manager, infer_list, "list") + register_builtin_transform(manager, infer_dict, "dict") + register_builtin_transform(manager, infer_frozenset, "frozenset") + register_builtin_transform(manager, infer_type, "type") + register_builtin_transform(manager, infer_slice, "slice") + register_builtin_transform(manager, infer_isinstance, "isinstance") + register_builtin_transform(manager, infer_issubclass, "issubclass") + register_builtin_transform(manager, infer_len, "len") + register_builtin_transform(manager, infer_str, "str") + register_builtin_transform(manager, infer_int, "int") + register_builtin_transform(manager, infer_dict_fromkeys, "dict.fromkeys") + + # Infer object.__new__ calls + manager.register_transform( + nodes.ClassDef, + inference_tip(_infer_object__new__decorator), + _infer_object__new__decorator_check, + ) + + manager.register_transform( + nodes.Call, + inference_tip(_infer_copy_method), + lambda node: isinstance(node.func, nodes.Attribute) + and node.func.attrname == "copy", + ) + + manager.register_transform( + nodes.Call, + inference_tip(_infer_str_format_call), + _is_str_format_call, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_collections.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_collections.py new file mode 100644 index 0000000..94944e6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_collections.py @@ -0,0 +1,138 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from typing import TYPE_CHECKING + +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder, extract_node, parse +from astroid.const import PY313_PLUS +from astroid.context import InferenceContext +from astroid.exceptions import AttributeInferenceError +from astroid.manager import AstroidManager +from astroid.nodes.scoped_nodes import ClassDef + +if TYPE_CHECKING: + from astroid import nodes + + +def _collections_transform(): + return parse( + """ + class defaultdict(dict): + default_factory = None + def __missing__(self, key): pass + def __getitem__(self, key): return default_factory + + """ + + _deque_mock() + + _ordered_dict_mock() + ) + + +def _collections_abc_313_transform() -> nodes.Module: + """See https://github.com/python/cpython/pull/124735""" + return AstroidBuilder(AstroidManager()).string_build( + "from _collections_abc import *" + ) + + +def _deque_mock(): + base_deque_class = """ + class deque(object): + maxlen = 0 + def __init__(self, iterable=None, maxlen=None): + self.iterable = iterable or [] + def append(self, x): pass + def appendleft(self, x): pass + def clear(self): pass + def count(self, x): return 0 + def extend(self, iterable): pass + def extendleft(self, iterable): pass + def pop(self): return self.iterable[0] + def popleft(self): return self.iterable[0] + def remove(self, value): pass + def reverse(self): return reversed(self.iterable) + def rotate(self, n=1): return self + def __iter__(self): return self + def __reversed__(self): return self.iterable[::-1] + def __getitem__(self, index): return self.iterable[index] + def __setitem__(self, index, value): pass + def __delitem__(self, index): pass + def __bool__(self): return bool(self.iterable) + def __nonzero__(self): return bool(self.iterable) + def __contains__(self, o): return o in self.iterable + def __len__(self): return len(self.iterable) + def __copy__(self): return deque(self.iterable) + def copy(self): return deque(self.iterable) + def index(self, x, start=0, end=0): return 0 + def insert(self, i, x): pass + def __add__(self, other): pass + def __iadd__(self, other): pass + def __mul__(self, other): pass + def __imul__(self, other): pass + def __rmul__(self, other): pass + @classmethod + def __class_getitem__(self, item): return cls""" + return base_deque_class + + +def _ordered_dict_mock(): + base_ordered_dict_class = """ + class OrderedDict(dict): + def __reversed__(self): return self[::-1] + def move_to_end(self, key, last=False): pass + @classmethod + def __class_getitem__(cls, item): return cls""" + return base_ordered_dict_class + + +def _looks_like_subscriptable(node: ClassDef) -> bool: + """ + Returns True if the node corresponds to a ClassDef of the Collections.abc module + that supports subscripting. + + :param node: ClassDef node + """ + if node.qname().startswith("_collections") or node.qname().startswith( + "collections" + ): + try: + node.getattr("__class_getitem__") + return True + except AttributeInferenceError: + pass + return False + + +CLASS_GET_ITEM_TEMPLATE = """ +@classmethod +def __class_getitem__(cls, item): + return cls +""" + + +def easy_class_getitem_inference(node, context: InferenceContext | None = None): + # Here __class_getitem__ exists but is quite a mess to infer thus + # put an easy inference tip + func_to_add = extract_node(CLASS_GET_ITEM_TEMPLATE) + node.locals["__class_getitem__"] = [func_to_add] + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "collections", _collections_transform) + + # Starting with Python39 some objects of the collection module are subscriptable + # thanks to the __class_getitem__ method but the way it is implemented in + # _collection_abc makes it difficult to infer. (We would have to handle AssignName inference in the + # getitem method of the ClassDef class) Instead we put here a mock of the __class_getitem__ method + manager.register_transform( + ClassDef, easy_class_getitem_inference, _looks_like_subscriptable + ) + + if PY313_PLUS: + register_module_extender( + manager, "collections.abc", _collections_abc_313_transform + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_crypt.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_crypt.py new file mode 100644 index 0000000..71f9dfc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_crypt.py @@ -0,0 +1,27 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def _re_transform() -> nodes.Module: + return parse( + """ + from collections import namedtuple + _Method = namedtuple('_Method', 'name ident salt_chars total_size') + + METHOD_SHA512 = _Method('SHA512', '6', 16, 106) + METHOD_SHA256 = _Method('SHA256', '5', 16, 63) + METHOD_BLOWFISH = _Method('BLOWFISH', 2, 'b', 22) + METHOD_MD5 = _Method('MD5', '1', 8, 34) + METHOD_CRYPT = _Method('CRYPT', None, 2, 13) + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "crypt", _re_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_ctypes.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_ctypes.py new file mode 100644 index 0000000..8ae10bc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_ctypes.py @@ -0,0 +1,86 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Astroid hooks for ctypes module. + +Inside the ctypes module, the value class is defined inside +the C coded module _ctypes. +Thus astroid doesn't know that the value member is a builtin type +among float, int, bytes or str. +""" +import sys + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def enrich_ctypes_redefined_types() -> nodes.Module: + """ + For each ctypes redefined types, overload 'value' and '_type_' members + definition. + + Overloading 'value' is mandatory otherwise astroid cannot infer the correct type for it. + Overloading '_type_' is necessary because the class definition made here replaces the original + one, in which '_type_' member is defined. Luckily those original class definitions are very short + and contain only the '_type_' member definition. + """ + c_class_to_type = ( + ("c_byte", "int", "b"), + ("c_char", "bytes", "c"), + ("c_double", "float", "d"), + ("c_float", "float", "f"), + ("c_int", "int", "i"), + ("c_int16", "int", "h"), + ("c_int32", "int", "i"), + ("c_int64", "int", "l"), + ("c_int8", "int", "b"), + ("c_long", "int", "l"), + ("c_longdouble", "float", "g"), + ("c_longlong", "int", "l"), + ("c_short", "int", "h"), + ("c_size_t", "int", "L"), + ("c_ssize_t", "int", "l"), + ("c_ubyte", "int", "B"), + ("c_uint", "int", "I"), + ("c_uint16", "int", "H"), + ("c_uint32", "int", "I"), + ("c_uint64", "int", "L"), + ("c_uint8", "int", "B"), + ("c_ulong", "int", "L"), + ("c_ulonglong", "int", "L"), + ("c_ushort", "int", "H"), + ("c_wchar", "str", "u"), + ) + + src = [ + """ +from _ctypes import _SimpleCData + +class c_bool(_SimpleCData): + def __init__(self, value): + self.value = True + self._type_ = '?' + """ + ] + + for c_type, builtin_type, type_code in c_class_to_type: + src.append( + f""" +class {c_type}(_SimpleCData): + def __init__(self, value): + self.value = {builtin_type}(value) + self._type_ = '{type_code}' + """ + ) + + return parse("\n".join(src)) + + +def register(manager: AstroidManager) -> None: + if not hasattr(sys, "pypy_version_info"): + # No need of this module in pypy where everything is written in python + register_module_extender(manager, "ctypes", enrich_ctypes_redefined_types) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_curses.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_curses.py new file mode 100644 index 0000000..5824fd7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_curses.py @@ -0,0 +1,185 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def _curses_transform() -> nodes.Module: + return parse( + """ + A_ALTCHARSET = 1 + A_BLINK = 1 + A_BOLD = 1 + A_DIM = 1 + A_INVIS = 1 + A_ITALIC = 1 + A_NORMAL = 1 + A_PROTECT = 1 + A_REVERSE = 1 + A_STANDOUT = 1 + A_UNDERLINE = 1 + A_HORIZONTAL = 1 + A_LEFT = 1 + A_LOW = 1 + A_RIGHT = 1 + A_TOP = 1 + A_VERTICAL = 1 + A_CHARTEXT = 1 + A_ATTRIBUTES = 1 + A_CHARTEXT = 1 + A_COLOR = 1 + KEY_MIN = 1 + KEY_BREAK = 1 + KEY_DOWN = 1 + KEY_UP = 1 + KEY_LEFT = 1 + KEY_RIGHT = 1 + KEY_HOME = 1 + KEY_BACKSPACE = 1 + KEY_F0 = 1 + KEY_Fn = 1 + KEY_DL = 1 + KEY_IL = 1 + KEY_DC = 1 + KEY_IC = 1 + KEY_EIC = 1 + KEY_CLEAR = 1 + KEY_EOS = 1 + KEY_EOL = 1 + KEY_SF = 1 + KEY_SR = 1 + KEY_NPAGE = 1 + KEY_PPAGE = 1 + KEY_STAB = 1 + KEY_CTAB = 1 + KEY_CATAB = 1 + KEY_ENTER = 1 + KEY_SRESET = 1 + KEY_RESET = 1 + KEY_PRINT = 1 + KEY_LL = 1 + KEY_A1 = 1 + KEY_A3 = 1 + KEY_B2 = 1 + KEY_C1 = 1 + KEY_C3 = 1 + KEY_BTAB = 1 + KEY_BEG = 1 + KEY_CANCEL = 1 + KEY_CLOSE = 1 + KEY_COMMAND = 1 + KEY_COPY = 1 + KEY_CREATE = 1 + KEY_END = 1 + KEY_EXIT = 1 + KEY_FIND = 1 + KEY_HELP = 1 + KEY_MARK = 1 + KEY_MESSAGE = 1 + KEY_MOVE = 1 + KEY_NEXT = 1 + KEY_OPEN = 1 + KEY_OPTIONS = 1 + KEY_PREVIOUS = 1 + KEY_REDO = 1 + KEY_REFERENCE = 1 + KEY_REFRESH = 1 + KEY_REPLACE = 1 + KEY_RESTART = 1 + KEY_RESUME = 1 + KEY_SAVE = 1 + KEY_SBEG = 1 + KEY_SCANCEL = 1 + KEY_SCOMMAND = 1 + KEY_SCOPY = 1 + KEY_SCREATE = 1 + KEY_SDC = 1 + KEY_SDL = 1 + KEY_SELECT = 1 + KEY_SEND = 1 + KEY_SEOL = 1 + KEY_SEXIT = 1 + KEY_SFIND = 1 + KEY_SHELP = 1 + KEY_SHOME = 1 + KEY_SIC = 1 + KEY_SLEFT = 1 + KEY_SMESSAGE = 1 + KEY_SMOVE = 1 + KEY_SNEXT = 1 + KEY_SOPTIONS = 1 + KEY_SPREVIOUS = 1 + KEY_SPRINT = 1 + KEY_SREDO = 1 + KEY_SREPLACE = 1 + KEY_SRIGHT = 1 + KEY_SRSUME = 1 + KEY_SSAVE = 1 + KEY_SSUSPEND = 1 + KEY_SUNDO = 1 + KEY_SUSPEND = 1 + KEY_UNDO = 1 + KEY_MOUSE = 1 + KEY_RESIZE = 1 + KEY_MAX = 1 + ACS_BBSS = 1 + ACS_BLOCK = 1 + ACS_BOARD = 1 + ACS_BSBS = 1 + ACS_BSSB = 1 + ACS_BSSS = 1 + ACS_BTEE = 1 + ACS_BULLET = 1 + ACS_CKBOARD = 1 + ACS_DARROW = 1 + ACS_DEGREE = 1 + ACS_DIAMOND = 1 + ACS_GEQUAL = 1 + ACS_HLINE = 1 + ACS_LANTERN = 1 + ACS_LARROW = 1 + ACS_LEQUAL = 1 + ACS_LLCORNER = 1 + ACS_LRCORNER = 1 + ACS_LTEE = 1 + ACS_NEQUAL = 1 + ACS_PI = 1 + ACS_PLMINUS = 1 + ACS_PLUS = 1 + ACS_RARROW = 1 + ACS_RTEE = 1 + ACS_S1 = 1 + ACS_S3 = 1 + ACS_S7 = 1 + ACS_S9 = 1 + ACS_SBBS = 1 + ACS_SBSB = 1 + ACS_SBSS = 1 + ACS_SSBB = 1 + ACS_SSBS = 1 + ACS_SSSB = 1 + ACS_SSSS = 1 + ACS_STERLING = 1 + ACS_TTEE = 1 + ACS_UARROW = 1 + ACS_ULCORNER = 1 + ACS_URCORNER = 1 + ACS_VLINE = 1 + COLOR_BLACK = 1 + COLOR_BLUE = 1 + COLOR_CYAN = 1 + COLOR_GREEN = 1 + COLOR_MAGENTA = 1 + COLOR_RED = 1 + COLOR_WHITE = 1 + COLOR_YELLOW = 1 + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "curses", _curses_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_dataclasses.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_dataclasses.py new file mode 100644 index 0000000..bafd5f1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_dataclasses.py @@ -0,0 +1,635 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Astroid hook for the dataclasses library. + +Support built-in dataclasses, pydantic.dataclasses, and marshmallow_dataclass-annotated +dataclasses. References: +- https://docs.python.org/3/library/dataclasses.html +- https://pydantic-docs.helpmanual.io/usage/dataclasses/ +- https://lovasoa.github.io/marshmallow_dataclass/ +""" + +from __future__ import annotations + +from collections.abc import Iterator +from typing import Literal + +from astroid import bases, context, nodes +from astroid.brain.helpers import is_class_var +from astroid.builder import parse +from astroid.const import PY313_PLUS +from astroid.exceptions import AstroidSyntaxError, InferenceError, UseInferenceDefault +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager +from astroid.typing import InferenceResult +from astroid.util import Uninferable, UninferableBase, safe_infer + +_FieldDefaultReturn = ( + None + | tuple[Literal["default"], nodes.NodeNG] + | tuple[Literal["default_factory"], nodes.Call] +) + +DATACLASSES_DECORATORS = frozenset(("dataclass",)) +FIELD_NAME = "field" +DATACLASS_MODULES = frozenset( + ("dataclasses", "marshmallow_dataclass", "pydantic.dataclasses") +) +DEFAULT_FACTORY = "_HAS_DEFAULT_FACTORY" # based on typing.py + + +def is_decorated_with_dataclass( + node: nodes.ClassDef, decorator_names: frozenset[str] = DATACLASSES_DECORATORS +) -> bool: + """Return True if a decorated node has a `dataclass` decorator applied.""" + if not (isinstance(node, nodes.ClassDef) and node.decorators): + return False + + return any( + _looks_like_dataclass_decorator(decorator_attribute, decorator_names) + for decorator_attribute in node.decorators.nodes + ) + + +def dataclass_transform(node: nodes.ClassDef) -> None: + """Rewrite a dataclass to be easily understood by pylint.""" + node.is_dataclass = True + + for assign_node in _get_dataclass_attributes(node): + name = assign_node.target.name + + rhs_node = nodes.Unknown( + lineno=assign_node.lineno, + col_offset=assign_node.col_offset, + parent=assign_node, + ) + rhs_node = AstroidManager().visit_transforms(rhs_node) + node.instance_attrs[name] = [rhs_node] + + if not _check_generate_dataclass_init(node): + return + + kw_only_decorated = False + if node.decorators.nodes: + for decorator in node.decorators.nodes: + if not isinstance(decorator, nodes.Call): + kw_only_decorated = False + break + for keyword in decorator.keywords: + if keyword.arg == "kw_only": + kw_only_decorated = keyword.value.bool_value() is True + + init_str = _generate_dataclass_init( + node, + list(_get_dataclass_attributes(node, init=True)), + kw_only_decorated, + ) + + try: + init_node = parse(init_str)["__init__"] + except AstroidSyntaxError: + pass + else: + init_node.parent = node + init_node.lineno, init_node.col_offset = None, None + node.locals["__init__"] = [init_node] + + root = node.root() + if DEFAULT_FACTORY not in root.locals: + new_assign = parse(f"{DEFAULT_FACTORY} = object()").body[0] + new_assign.parent = root + root.locals[DEFAULT_FACTORY] = [new_assign.targets[0]] + + +def _get_dataclass_attributes( + node: nodes.ClassDef, init: bool = False +) -> Iterator[nodes.AnnAssign]: + """Yield the AnnAssign nodes of dataclass attributes for the node. + + If init is True, also include InitVars. + """ + for assign_node in node.body: + if not ( + isinstance(assign_node, nodes.AnnAssign) + and isinstance(assign_node.target, nodes.AssignName) + ): + continue + + # Annotation is never None + if is_class_var(assign_node.annotation): # type: ignore[arg-type] + continue + + if _is_keyword_only_sentinel(assign_node.annotation): + continue + + # Annotation is never None + if not init and _is_init_var(assign_node.annotation): # type: ignore[arg-type] + continue + + yield assign_node + + +def _check_generate_dataclass_init(node: nodes.ClassDef) -> bool: + """Return True if we should generate an __init__ method for node. + + This is True when: + - node doesn't define its own __init__ method + - the dataclass decorator was called *without* the keyword argument init=False + """ + if "__init__" in node.locals: + return False + + found = None + + for decorator_attribute in node.decorators.nodes: + if not isinstance(decorator_attribute, nodes.Call): + continue + + if _looks_like_dataclass_decorator(decorator_attribute): + found = decorator_attribute + + if found is None: + return True + + # Check for keyword arguments of the form init=False + return not any( + keyword.arg == "init" + and keyword.value.bool_value() is False # type: ignore[union-attr] # value is never None + for keyword in found.keywords + ) + + +def _find_arguments_from_base_classes( + node: nodes.ClassDef, +) -> tuple[ + dict[str, tuple[str | None, str | None]], dict[str, tuple[str | None, str | None]] +]: + """Iterate through all bases and get their typing and defaults.""" + pos_only_store: dict[str, tuple[str | None, str | None]] = {} + kw_only_store: dict[str, tuple[str | None, str | None]] = {} + # See TODO down below + # all_have_defaults = True + + for base in reversed(node.mro()): + if not base.is_dataclass: + continue + try: + base_init: nodes.FunctionDef = base.locals["__init__"][0] + except KeyError: + continue + + pos_only, kw_only = base_init.args._get_arguments_data() + for posarg, data in pos_only.items(): + # if data[1] is None: + # if all_have_defaults and pos_only_store: + # # TODO: This should return an Uninferable as this would raise + # # a TypeError at runtime. However, transforms can't return + # # Uninferables currently. + # pass + # all_have_defaults = False + pos_only_store[posarg] = data + + for kwarg, data in kw_only.items(): + kw_only_store[kwarg] = data + return pos_only_store, kw_only_store + + +def _parse_arguments_into_strings( + pos_only_store: dict[str, tuple[str | None, str | None]], + kw_only_store: dict[str, tuple[str | None, str | None]], +) -> tuple[str, str]: + """Parse positional and keyword arguments into strings for an __init__ method.""" + pos_only, kw_only = "", "" + for pos_arg, data in pos_only_store.items(): + pos_only += pos_arg + if data[0]: + pos_only += ": " + data[0] + if data[1]: + pos_only += " = " + data[1] + pos_only += ", " + for kw_arg, data in kw_only_store.items(): + kw_only += kw_arg + if data[0]: + kw_only += ": " + data[0] + if data[1]: + kw_only += " = " + data[1] + kw_only += ", " + + return pos_only, kw_only + + +def _get_previous_field_default(node: nodes.ClassDef, name: str) -> nodes.NodeNG | None: + """Get the default value of a previously defined field.""" + for base in reversed(node.mro()): + if not base.is_dataclass: + continue + if name in base.locals: + for assign in base.locals[name]: + if ( + isinstance(assign.parent, nodes.AnnAssign) + and assign.parent.value + and isinstance(assign.parent.value, nodes.Call) + and _looks_like_dataclass_field_call(assign.parent.value) + ): + default = _get_field_default(assign.parent.value) + if default: + return default[1] + return None + + +def _generate_dataclass_init( + node: nodes.ClassDef, assigns: list[nodes.AnnAssign], kw_only_decorated: bool +) -> str: + """Return an init method for a dataclass given the targets.""" + # pylint: disable = too-many-locals, too-many-branches, too-many-statements + + params: list[str] = [] + kw_only_params: list[str] = [] + assignments: list[str] = [] + + prev_pos_only_store, prev_kw_only_store = _find_arguments_from_base_classes(node) + + for assign in assigns: + name, annotation, value = assign.target.name, assign.annotation, assign.value + + # Check whether this assign is overriden by a property assignment + property_node: nodes.FunctionDef | None = None + for additional_assign in node.locals[name]: + if not isinstance(additional_assign, nodes.FunctionDef): + continue + if not additional_assign.decorators: + continue + if "builtins.property" in additional_assign.decoratornames(): + property_node = additional_assign + break + + is_field = isinstance(value, nodes.Call) and _looks_like_dataclass_field_call( + value, check_scope=False + ) + + if is_field: + # Skip any fields that have `init=False` + if any( + keyword.arg == "init" and (keyword.value.bool_value() is False) + for keyword in value.keywords # type: ignore[union-attr] # value is never None + ): + # Also remove the name from the previous arguments to be inserted later + prev_pos_only_store.pop(name, None) + prev_kw_only_store.pop(name, None) + continue + + if _is_init_var(annotation): # type: ignore[arg-type] # annotation is never None + init_var = True + if isinstance(annotation, nodes.Subscript): + annotation = annotation.slice + else: + # Cannot determine type annotation for parameter from InitVar + annotation = None + assignment_str = "" + else: + init_var = False + assignment_str = f"self.{name} = {name}" + + ann_str, default_str = None, None + if annotation is not None: + ann_str = annotation.as_string() + + if value: + if is_field: + result = _get_field_default(value) # type: ignore[arg-type] + if result: + default_type, default_node = result + if default_type == "default": + default_str = default_node.as_string() + elif default_type == "default_factory": + default_str = DEFAULT_FACTORY + assignment_str = ( + f"self.{name} = {default_node.as_string()} " + f"if {name} is {DEFAULT_FACTORY} else {name}" + ) + else: + default_str = value.as_string() + elif property_node: + # We set the result of the property call as default + # This hides the fact that this would normally be a 'property object' + # But we can't represent those as string + try: + # Call str to make sure also Uninferable gets stringified + default_str = str( + next(property_node.infer_call_result(None)).as_string() + ) + except (InferenceError, StopIteration): + pass + else: + # Even with `init=False` the default value still can be propogated to + # later assignments. Creating weird signatures like: + # (self, a: str = 1) -> None + previous_default = _get_previous_field_default(node, name) + if previous_default: + default_str = previous_default.as_string() + + # Construct the param string to add to the init if necessary + param_str = name + if ann_str is not None: + param_str += f": {ann_str}" + if default_str is not None: + param_str += f" = {default_str}" + + # If the field is a kw_only field, we need to add it to the kw_only_params + # This overwrites whether or not the class is kw_only decorated + if is_field: + kw_only = [k for k in value.keywords if k.arg == "kw_only"] # type: ignore[union-attr] + if kw_only: + if kw_only[0].value.bool_value() is True: + kw_only_params.append(param_str) + else: + params.append(param_str) + continue + # If kw_only decorated, we need to add all parameters to the kw_only_params + if kw_only_decorated: + if name in prev_kw_only_store: + prev_kw_only_store[name] = (ann_str, default_str) + else: + kw_only_params.append(param_str) + else: + # If the name was previously seen, overwrite that data + # pylint: disable-next=else-if-used + if name in prev_pos_only_store: + prev_pos_only_store[name] = (ann_str, default_str) + elif name in prev_kw_only_store: + params = [name, *params] + prev_kw_only_store.pop(name) + else: + params.append(param_str) + + if not init_var: + assignments.append(assignment_str) + + prev_pos_only, prev_kw_only = _parse_arguments_into_strings( + prev_pos_only_store, prev_kw_only_store + ) + + # Construct the new init method paramter string + # First we do the positional only parameters, making sure to add the + # the self parameter and the comma to allow adding keyword only parameters + params_string = "" if "self" in prev_pos_only else "self, " + params_string += prev_pos_only + ", ".join(params) + if not params_string.endswith(", "): + params_string += ", " + + # Then we add the keyword only parameters + if prev_kw_only or kw_only_params: + params_string += "*, " + params_string += f"{prev_kw_only}{', '.join(kw_only_params)}" + + assignments_string = "\n ".join(assignments) if assignments else "pass" + return f"def __init__({params_string}) -> None:\n {assignments_string}" + + +def infer_dataclass_attribute( + node: nodes.Unknown, ctx: context.InferenceContext | None = None +) -> Iterator[InferenceResult]: + """Inference tip for an Unknown node that was dynamically generated to + represent a dataclass attribute. + + In the case that a default value is provided, that is inferred first. + Then, an Instance of the annotated class is yielded. + """ + assign = node.parent + if not isinstance(assign, nodes.AnnAssign): + yield Uninferable + return + + annotation, value = assign.annotation, assign.value + if value is not None: + yield from value.infer(context=ctx) + if annotation is not None: + yield from _infer_instance_from_annotation(annotation, ctx=ctx) + else: + yield Uninferable + + +def infer_dataclass_field_call( + node: nodes.Call, ctx: context.InferenceContext | None = None +) -> Iterator[InferenceResult]: + """Inference tip for dataclass field calls.""" + if not isinstance(node.parent, (nodes.AnnAssign, nodes.Assign)): + raise UseInferenceDefault + result = _get_field_default(node) + if not result: + yield Uninferable + else: + default_type, default = result + if default_type == "default": + yield from default.infer(context=ctx) + else: + new_call = parse(default.as_string()).body[0].value + new_call.parent = node.parent + yield from new_call.infer(context=ctx) + + +def _looks_like_dataclass_decorator( + node: nodes.NodeNG, decorator_names: frozenset[str] = DATACLASSES_DECORATORS +) -> bool: + """Return True if node looks like a dataclass decorator. + + Uses inference to lookup the value of the node, and if that fails, + matches against specific names. + """ + if isinstance(node, nodes.Call): # decorator with arguments + node = node.func + try: + inferred = next(node.infer()) + except (InferenceError, StopIteration): + inferred = Uninferable + + if isinstance(inferred, UninferableBase): + if isinstance(node, nodes.Name): + return node.name in decorator_names + if isinstance(node, nodes.Attribute): + return node.attrname in decorator_names + + return False + + return ( + isinstance(inferred, nodes.FunctionDef) + and inferred.name in decorator_names + and inferred.root().name in DATACLASS_MODULES + ) + + +def _looks_like_dataclass_attribute(node: nodes.Unknown) -> bool: + """Return True if node was dynamically generated as the child of an AnnAssign + statement. + """ + parent = node.parent + if not parent: + return False + + scope = parent.scope() + return ( + isinstance(parent, nodes.AnnAssign) + and isinstance(scope, nodes.ClassDef) + and is_decorated_with_dataclass(scope) + ) + + +def _looks_like_dataclass_field_call( + node: nodes.Call, check_scope: bool = True +) -> bool: + """Return True if node is calling dataclasses field or Field + from an AnnAssign statement directly in the body of a ClassDef. + + If check_scope is False, skips checking the statement and body. + """ + if check_scope: + stmt = node.statement() + scope = stmt.scope() + if not ( + isinstance(stmt, nodes.AnnAssign) + and stmt.value is not None + and isinstance(scope, nodes.ClassDef) + and is_decorated_with_dataclass(scope) + ): + return False + + try: + inferred = next(node.func.infer()) + except (InferenceError, StopIteration): + return False + + if not isinstance(inferred, nodes.FunctionDef): + return False + + return inferred.name == FIELD_NAME and inferred.root().name in DATACLASS_MODULES + + +def _looks_like_dataclasses(node: nodes.Module) -> bool: + return node.qname() == "dataclasses" + + +def _resolve_private_replace_to_public(node: nodes.Module) -> None: + """In python/cpython@6f3c138, a _replace() method was extracted from + replace(), and this indirection made replace() uninferable.""" + if "_replace" in node.locals: + node.locals["replace"] = node.locals["_replace"] + + +def _get_field_default(field_call: nodes.Call) -> _FieldDefaultReturn: + """Return a the default value of a field call, and the corresponding keyword + argument name. + + field(default=...) results in the ... node + field(default_factory=...) results in a Call node with func ... and no arguments + + If neither or both arguments are present, return ("", None) instead, + indicating that there is not a valid default value. + """ + default, default_factory = None, None + for keyword in field_call.keywords: + if keyword.arg == "default": + default = keyword.value + elif keyword.arg == "default_factory": + default_factory = keyword.value + + if default is not None and default_factory is None: + return "default", default + + if default is None and default_factory is not None: + new_call = nodes.Call( + lineno=field_call.lineno, + col_offset=field_call.col_offset, + parent=field_call.parent, + end_lineno=field_call.end_lineno, + end_col_offset=field_call.end_col_offset, + ) + new_call.postinit(func=default_factory, args=[], keywords=[]) + return "default_factory", new_call + + return None + + +def _is_keyword_only_sentinel(node: nodes.NodeNG) -> bool: + """Return True if node is the KW_ONLY sentinel.""" + inferred = safe_infer(node) + return ( + isinstance(inferred, bases.Instance) + and inferred.qname() == "dataclasses._KW_ONLY_TYPE" + ) + + +def _is_init_var(node: nodes.NodeNG) -> bool: + """Return True if node is an InitVar, with or without subscripting.""" + try: + inferred = next(node.infer()) + except (InferenceError, StopIteration): + return False + + return getattr(inferred, "name", "") == "InitVar" + + +# Allowed typing classes for which we support inferring instances +_INFERABLE_TYPING_TYPES = frozenset( + ( + "Dict", + "FrozenSet", + "List", + "Set", + "Tuple", + ) +) + + +def _infer_instance_from_annotation( + node: nodes.NodeNG, ctx: context.InferenceContext | None = None +) -> Iterator[UninferableBase | bases.Instance]: + """Infer an instance corresponding to the type annotation represented by node. + + Currently has limited support for the typing module. + """ + klass = None + try: + klass = next(node.infer(context=ctx)) + except (InferenceError, StopIteration): + yield Uninferable + if not isinstance(klass, nodes.ClassDef): + yield Uninferable + elif klass.root().name in { + "typing", + "_collections_abc", + "", + }: # "" because of synthetic nodes in brain_typing.py + if klass.name in _INFERABLE_TYPING_TYPES: + yield klass.instantiate_class() + else: + yield Uninferable + else: + yield klass.instantiate_class() + + +def register(manager: AstroidManager) -> None: + if PY313_PLUS: + manager.register_transform( + nodes.Module, + _resolve_private_replace_to_public, + _looks_like_dataclasses, + ) + + manager.register_transform( + nodes.ClassDef, dataclass_transform, is_decorated_with_dataclass + ) + + manager.register_transform( + nodes.Call, + inference_tip(infer_dataclass_field_call, raise_on_overwrite=True), + _looks_like_dataclass_field_call, + ) + + manager.register_transform( + nodes.Unknown, + inference_tip(infer_dataclass_attribute, raise_on_overwrite=True), + _looks_like_dataclass_attribute, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_datetime.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_datetime.py new file mode 100644 index 0000000..f4cb667 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_datetime.py @@ -0,0 +1,20 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder +from astroid.const import PY312_PLUS +from astroid.manager import AstroidManager + + +def datetime_transform() -> nodes.Module: + """The datetime module was C-accelerated in Python 3.12, so use the + Python source.""" + return AstroidBuilder(AstroidManager()).string_build("from _pydatetime import *") + + +def register(manager: AstroidManager) -> None: + if PY312_PLUS: + register_module_extender(manager, "datetime", datetime_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_dateutil.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_dateutil.py new file mode 100644 index 0000000..c27343f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_dateutil.py @@ -0,0 +1,28 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for dateutil.""" + +import textwrap + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder +from astroid.manager import AstroidManager + + +def dateutil_transform() -> nodes.Module: + return AstroidBuilder(AstroidManager()).string_build( + textwrap.dedent( + """ + import datetime + def parse(timestr, parserinfo=None, **kwargs): + return datetime.datetime() + """ + ) + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "dateutil.parser", dateutil_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_functools.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_functools.py new file mode 100644 index 0000000..1cb8442 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_functools.py @@ -0,0 +1,174 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for understanding functools library module.""" + +from __future__ import annotations + +from collections.abc import Iterator +from functools import partial +from itertools import chain + +from astroid import BoundMethod, arguments, nodes, objects +from astroid.builder import extract_node +from astroid.context import InferenceContext +from astroid.exceptions import InferenceError, UseInferenceDefault +from astroid.inference_tip import inference_tip +from astroid.interpreter import objectmodel +from astroid.manager import AstroidManager +from astroid.typing import InferenceResult, SuccessfulInferenceResult +from astroid.util import UninferableBase, safe_infer + +LRU_CACHE = "functools.lru_cache" + + +class LruWrappedModel(objectmodel.FunctionModel): + """Special attribute model for functions decorated with functools.lru_cache. + + The said decorators patches at decoration time some functions onto + the decorated function. + """ + + @property + def attr___wrapped__(self): + return self._instance + + @property + def attr_cache_info(self): + cache_info = extract_node( + """ + from functools import _CacheInfo + _CacheInfo(0, 0, 0, 0) + """ + ) + + class CacheInfoBoundMethod(BoundMethod): + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + res = safe_infer(cache_info) + assert res is not None + yield res + + return CacheInfoBoundMethod(proxy=self._instance, bound=self._instance) + + @property + def attr_cache_clear(self): + node = extract_node("""def cache_clear(self): pass""") + return BoundMethod(proxy=node, bound=self._instance.parent.scope()) + + +def _transform_lru_cache(node, context: InferenceContext | None = None) -> None: + # TODO: this is not ideal, since the node should be immutable, + # but due to https://github.com/pylint-dev/astroid/issues/354, + # there's not much we can do now. + # Replacing the node would work partially, because, + # in pylint, the old node would still be available, leading + # to spurious false positives. + node.special_attributes = LruWrappedModel()(node) + + +def _functools_partial_inference( + node: nodes.Call, context: InferenceContext | None = None +) -> Iterator[objects.PartialFunction]: + call = arguments.CallSite.from_call(node, context=context) + number_of_positional = len(call.positional_arguments) + if number_of_positional < 1: + raise UseInferenceDefault("functools.partial takes at least one argument") + if number_of_positional == 1 and not call.keyword_arguments: + raise UseInferenceDefault( + "functools.partial needs at least to have some filled arguments" + ) + + partial_function = call.positional_arguments[0] + try: + inferred_wrapped_function = next(partial_function.infer(context=context)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + if isinstance(inferred_wrapped_function, UninferableBase): + raise UseInferenceDefault("Cannot infer the wrapped function") + if not isinstance(inferred_wrapped_function, nodes.FunctionDef): + raise UseInferenceDefault("The wrapped function is not a function") + + # Determine if the passed keywords into the callsite are supported + # by the wrapped function. + if not inferred_wrapped_function.args: + function_parameters = [] + else: + function_parameters = chain( + inferred_wrapped_function.args.args or (), + inferred_wrapped_function.args.posonlyargs or (), + inferred_wrapped_function.args.kwonlyargs or (), + ) + parameter_names = { + param.name + for param in function_parameters + if isinstance(param, nodes.AssignName) + } + if set(call.keyword_arguments) - parameter_names: + raise UseInferenceDefault("wrapped function received unknown parameters") + + partial_function = objects.PartialFunction( + call, + name=inferred_wrapped_function.name, + lineno=inferred_wrapped_function.lineno, + col_offset=inferred_wrapped_function.col_offset, + parent=node.parent, + ) + partial_function.postinit( + args=inferred_wrapped_function.args, + body=inferred_wrapped_function.body, + decorators=inferred_wrapped_function.decorators, + returns=inferred_wrapped_function.returns, + type_comment_returns=inferred_wrapped_function.type_comment_returns, + type_comment_args=inferred_wrapped_function.type_comment_args, + doc_node=inferred_wrapped_function.doc_node, + ) + return iter((partial_function,)) + + +def _looks_like_lru_cache(node) -> bool: + """Check if the given function node is decorated with lru_cache.""" + if not node.decorators: + return False + for decorator in node.decorators.nodes: + if not isinstance(decorator, (nodes.Attribute, nodes.Call)): + continue + if _looks_like_functools_member(decorator, "lru_cache"): + return True + return False + + +def _looks_like_functools_member( + node: nodes.Attribute | nodes.Call, member: str +) -> bool: + """Check if the given Call node is the wanted member of functools.""" + if isinstance(node, nodes.Attribute): + return node.attrname == member + if isinstance(node.func, nodes.Name): + return node.func.name == member + if isinstance(node.func, nodes.Attribute): + return ( + node.func.attrname == member + and isinstance(node.func.expr, nodes.Name) + and node.func.expr.name == "functools" + ) + return False + + +_looks_like_partial = partial(_looks_like_functools_member, member="partial") + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.FunctionDef, _transform_lru_cache, _looks_like_lru_cache + ) + + manager.register_transform( + nodes.Call, + inference_tip(_functools_partial_inference), + _looks_like_partial, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_gi.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_gi.py new file mode 100644 index 0000000..fa60077 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_gi.py @@ -0,0 +1,252 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for the Python 2 GObject introspection bindings. + +Helps with understanding everything imported from 'gi.repository' +""" + +# pylint:disable=import-error,import-outside-toplevel + +import inspect +import itertools +import re +import sys +import warnings + +from astroid import nodes +from astroid.builder import AstroidBuilder +from astroid.exceptions import AstroidBuildingError +from astroid.manager import AstroidManager + +_inspected_modules = {} + +_identifier_re = r"^[A-Za-z_]\w*$" + +_special_methods = frozenset( + { + "__lt__", + "__le__", + "__eq__", + "__ne__", + "__ge__", + "__gt__", + "__iter__", + "__getitem__", + "__setitem__", + "__delitem__", + "__len__", + "__bool__", + "__nonzero__", + "__next__", + "__str__", + "__contains__", + "__enter__", + "__exit__", + "__repr__", + "__getattr__", + "__setattr__", + "__delattr__", + "__del__", + "__hash__", + } +) + + +def _gi_build_stub(parent): # noqa: C901 + """ + Inspect the passed module recursively and build stubs for functions, + classes, etc. + """ + # pylint: disable = too-many-branches, too-many-statements + + classes = {} + functions = {} + constants = {} + methods = {} + for name in dir(parent): + if name.startswith("__") and name not in _special_methods: + continue + + # Check if this is a valid name in python + if not re.match(_identifier_re, name): + continue + + try: + obj = getattr(parent, name) + except Exception: # pylint: disable=broad-except + # gi.module.IntrospectionModule.__getattr__() can raise all kinds of things + # like ValueError, TypeError, NotImplementedError, RepositoryError, etc + continue + + if inspect.isclass(obj): + classes[name] = obj + elif inspect.isfunction(obj) or inspect.isbuiltin(obj): + functions[name] = obj + elif inspect.ismethod(obj) or inspect.ismethoddescriptor(obj): + methods[name] = obj + elif ( + str(obj).startswith(" bool: + # Return whether this looks like a call to gi.require_version(, ) + # Only accept function calls with two constant arguments + if len(node.args) != 2: + return False + + if not all(isinstance(arg, nodes.Const) for arg in node.args): + return False + + func = node.func + if isinstance(func, nodes.Attribute): + if func.attrname != "require_version": + return False + if isinstance(func.expr, nodes.Name) and func.expr.name == "gi": + return True + + return False + + if isinstance(func, nodes.Name): + return func.name == "require_version" + + return False + + +def _register_require_version(node): + # Load the gi.require_version locally + try: + import gi + + gi.require_version(node.args[0].value, node.args[1].value) + except Exception: # pylint:disable=broad-except + pass + + return node + + +def register(manager: AstroidManager) -> None: + manager.register_failed_import_hook(_import_gi_module) + manager.register_transform( + nodes.Call, _register_require_version, _looks_like_require_version + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_hashlib.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_hashlib.py new file mode 100644 index 0000000..a17645a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_hashlib.py @@ -0,0 +1,96 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def _hashlib_transform() -> nodes.Module: + init_signature = "value='', usedforsecurity=True" + digest_signature = "self" + shake_digest_signature = "self, length" + + template = """ + class %(name)s: + def __init__(self, %(init_signature)s): pass + def digest(%(digest_signature)s): + return %(digest)s + def copy(self): + return self + def update(self, value): pass + def hexdigest(%(digest_signature)s): + return '' + @property + def name(self): + return %(name)r + @property + def block_size(self): + return 1 + @property + def digest_size(self): + return 1 + """ + + algorithms_with_signature = dict.fromkeys( + [ + "md5", + "sha1", + "sha224", + "sha256", + "sha384", + "sha512", + "sha3_224", + "sha3_256", + "sha3_384", + "sha3_512", + ], + (init_signature, digest_signature), + ) + + blake2b_signature = ( + "data=b'', *, digest_size=64, key=b'', salt=b'', " + "person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, " + "node_depth=0, inner_size=0, last_node=False, usedforsecurity=True" + ) + + blake2s_signature = ( + "data=b'', *, digest_size=32, key=b'', salt=b'', " + "person=b'', fanout=1, depth=1, leaf_size=0, node_offset=0, " + "node_depth=0, inner_size=0, last_node=False, usedforsecurity=True" + ) + + shake_algorithms = dict.fromkeys( + ["shake_128", "shake_256"], + (init_signature, shake_digest_signature), + ) + algorithms_with_signature.update(shake_algorithms) + + algorithms_with_signature.update( + { + "blake2b": (blake2b_signature, digest_signature), + "blake2s": (blake2s_signature, digest_signature), + } + ) + + classes = "".join( + template + % { + "name": hashfunc, + "digest": 'b""', + "init_signature": init_signature, + "digest_signature": digest_signature, + } + for hashfunc, ( + init_signature, + digest_signature, + ) in algorithms_with_signature.items() + ) + + return parse(classes) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "hashlib", _hashlib_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_http.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_http.py new file mode 100644 index 0000000..e4b6bca --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_http.py @@ -0,0 +1,227 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid brain hints for some of the `http` module.""" +import textwrap + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder +from astroid.manager import AstroidManager + + +def _http_transform() -> nodes.Module: + code = textwrap.dedent( + """ + from enum import IntEnum + from collections import namedtuple + _HTTPStatus = namedtuple('_HTTPStatus', 'value phrase description') + + class HTTPStatus(IntEnum): + + @property + def phrase(self): + return "" + @property + def value(self): + return 0 + @property + def description(self): + return "" + + # informational + CONTINUE = _HTTPStatus(100, 'Continue', 'Request received, please continue') + SWITCHING_PROTOCOLS = _HTTPStatus(101, 'Switching Protocols', + 'Switching to new protocol; obey Upgrade header') + PROCESSING = _HTTPStatus(102, 'Processing', '') + EARLY_HINTS = _HTTPStatus(103, 'Early Hints') + OK = _HTTPStatus(200, 'OK', 'Request fulfilled, document follows') + CREATED = _HTTPStatus(201, 'Created', 'Document created, URL follows') + ACCEPTED = _HTTPStatus(202, 'Accepted', + 'Request accepted, processing continues off-line') + NON_AUTHORITATIVE_INFORMATION = _HTTPStatus(203, + 'Non-Authoritative Information', 'Request fulfilled from cache') + NO_CONTENT = _HTTPStatus(204, 'No Content', 'Request fulfilled, nothing follows') + RESET_CONTENT =_HTTPStatus(205, 'Reset Content', 'Clear input form for further input') + PARTIAL_CONTENT = _HTTPStatus(206, 'Partial Content', 'Partial content follows') + MULTI_STATUS = _HTTPStatus(207, 'Multi-Status', '') + ALREADY_REPORTED = _HTTPStatus(208, 'Already Reported', '') + IM_USED = _HTTPStatus(226, 'IM Used', '') + MULTIPLE_CHOICES = _HTTPStatus(300, 'Multiple Choices', + 'Object has several resources -- see URI list') + MOVED_PERMANENTLY = _HTTPStatus(301, 'Moved Permanently', + 'Object moved permanently -- see URI list') + FOUND = _HTTPStatus(302, 'Found', 'Object moved temporarily -- see URI list') + SEE_OTHER = _HTTPStatus(303, 'See Other', 'Object moved -- see Method and URL list') + NOT_MODIFIED = _HTTPStatus(304, 'Not Modified', + 'Document has not changed since given time') + USE_PROXY = _HTTPStatus(305, 'Use Proxy', + 'You must use proxy specified in Location to access this resource') + TEMPORARY_REDIRECT = _HTTPStatus(307, 'Temporary Redirect', + 'Object moved temporarily -- see URI list') + PERMANENT_REDIRECT = _HTTPStatus(308, 'Permanent Redirect', + 'Object moved permanently -- see URI list') + BAD_REQUEST = _HTTPStatus(400, 'Bad Request', + 'Bad request syntax or unsupported method') + UNAUTHORIZED = _HTTPStatus(401, 'Unauthorized', + 'No permission -- see authorization schemes') + PAYMENT_REQUIRED = _HTTPStatus(402, 'Payment Required', + 'No payment -- see charging schemes') + FORBIDDEN = _HTTPStatus(403, 'Forbidden', + 'Request forbidden -- authorization will not help') + NOT_FOUND = _HTTPStatus(404, 'Not Found', + 'Nothing matches the given URI') + METHOD_NOT_ALLOWED = _HTTPStatus(405, 'Method Not Allowed', + 'Specified method is invalid for this resource') + NOT_ACCEPTABLE = _HTTPStatus(406, 'Not Acceptable', + 'URI not available in preferred format') + PROXY_AUTHENTICATION_REQUIRED = _HTTPStatus(407, + 'Proxy Authentication Required', + 'You must authenticate with this proxy before proceeding') + REQUEST_TIMEOUT = _HTTPStatus(408, 'Request Timeout', + 'Request timed out; try again later') + CONFLICT = _HTTPStatus(409, 'Conflict', 'Request conflict') + GONE = _HTTPStatus(410, 'Gone', + 'URI no longer exists and has been permanently removed') + LENGTH_REQUIRED = _HTTPStatus(411, 'Length Required', + 'Client must specify Content-Length') + PRECONDITION_FAILED = _HTTPStatus(412, 'Precondition Failed', + 'Precondition in headers is false') + CONTENT_TOO_LARGE = _HTTPStatus(413, 'Content Too Large', + 'Content is too large') + REQUEST_ENTITY_TOO_LARGE = CONTENT_TOO_LARGE + URI_TOO_LONG = _HTTPStatus(414, 'URI Too Long', 'URI is too long') + REQUEST_URI_TOO_LONG = URI_TOO_LONG + UNSUPPORTED_MEDIA_TYPE = _HTTPStatus(415, 'Unsupported Media Type', + 'Entity body in unsupported format') + RANGE_NOT_SATISFIABLE = (416, 'Range Not Satisfiable', + 'Cannot satisfy request range') + REQUESTED_RANGE_NOT_SATISFIABLE = RANGE_NOT_SATISFIABLE + EXPECTATION_FAILED = _HTTPStatus(417, 'Expectation Failed', + 'Expect condition could not be satisfied') + IM_A_TEAPOT = _HTTPStatus(418, 'I\\\'m a Teapot', + 'Server refuses to brew coffee because it is a teapot.') + MISDIRECTED_REQUEST = _HTTPStatus(421, 'Misdirected Request', + 'Server is not able to produce a response') + UNPROCESSABLE_CONTENT = _HTTPStatus(422, 'Unprocessable Content') + UNPROCESSABLE_ENTITY = UNPROCESSABLE_CONTENT + LOCKED = _HTTPStatus(423, 'Locked') + FAILED_DEPENDENCY = _HTTPStatus(424, 'Failed Dependency') + TOO_EARLY = _HTTPStatus(425, 'Too Early') + UPGRADE_REQUIRED = _HTTPStatus(426, 'Upgrade Required') + PRECONDITION_REQUIRED = _HTTPStatus(428, 'Precondition Required', + 'The origin server requires the request to be conditional') + TOO_MANY_REQUESTS = _HTTPStatus(429, 'Too Many Requests', + 'The user has sent too many requests in ' + 'a given amount of time ("rate limiting")') + REQUEST_HEADER_FIELDS_TOO_LARGE = _HTTPStatus(431, + 'Request Header Fields Too Large', + 'The server is unwilling to process the request because its header ' + 'fields are too large') + UNAVAILABLE_FOR_LEGAL_REASONS = _HTTPStatus(451, + 'Unavailable For Legal Reasons', + 'The server is denying access to the ' + 'resource as a consequence of a legal demand') + INTERNAL_SERVER_ERROR = _HTTPStatus(500, 'Internal Server Error', + 'Server got itself in trouble') + NOT_IMPLEMENTED = _HTTPStatus(501, 'Not Implemented', + 'Server does not support this operation') + BAD_GATEWAY = _HTTPStatus(502, 'Bad Gateway', + 'Invalid responses from another server/proxy') + SERVICE_UNAVAILABLE = _HTTPStatus(503, 'Service Unavailable', + 'The server cannot process the request due to a high load') + GATEWAY_TIMEOUT = _HTTPStatus(504, 'Gateway Timeout', + 'The gateway server did not receive a timely response') + HTTP_VERSION_NOT_SUPPORTED = _HTTPStatus(505, 'HTTP Version Not Supported', + 'Cannot fulfill request') + VARIANT_ALSO_NEGOTIATES = _HTTPStatus(506, 'Variant Also Negotiates') + INSUFFICIENT_STORAGE = _HTTPStatus(507, 'Insufficient Storage') + LOOP_DETECTED = _HTTPStatus(508, 'Loop Detected') + NOT_EXTENDED = _HTTPStatus(510, 'Not Extended') + NETWORK_AUTHENTICATION_REQUIRED = _HTTPStatus(511, + 'Network Authentication Required', + 'The client needs to authenticate to gain network access') + """ + ) + return AstroidBuilder(AstroidManager()).string_build(code) + + +def _http_client_transform() -> nodes.Module: + return AstroidBuilder(AstroidManager()).string_build( + textwrap.dedent( + """ + from http import HTTPStatus + + CONTINUE = HTTPStatus.CONTINUE + SWITCHING_PROTOCOLS = HTTPStatus.SWITCHING_PROTOCOLS + PROCESSING = HTTPStatus.PROCESSING + EARLY_HINTS = HTTPStatus.EARLY_HINTS + OK = HTTPStatus.OK + CREATED = HTTPStatus.CREATED + ACCEPTED = HTTPStatus.ACCEPTED + NON_AUTHORITATIVE_INFORMATION = HTTPStatus.NON_AUTHORITATIVE_INFORMATION + NO_CONTENT = HTTPStatus.NO_CONTENT + RESET_CONTENT = HTTPStatus.RESET_CONTENT + PARTIAL_CONTENT = HTTPStatus.PARTIAL_CONTENT + MULTI_STATUS = HTTPStatus.MULTI_STATUS + ALREADY_REPORTED = HTTPStatus.ALREADY_REPORTED + IM_USED = HTTPStatus.IM_USED + MULTIPLE_CHOICES = HTTPStatus.MULTIPLE_CHOICES + MOVED_PERMANENTLY = HTTPStatus.MOVED_PERMANENTLY + FOUND = HTTPStatus.FOUND + SEE_OTHER = HTTPStatus.SEE_OTHER + NOT_MODIFIED = HTTPStatus.NOT_MODIFIED + USE_PROXY = HTTPStatus.USE_PROXY + TEMPORARY_REDIRECT = HTTPStatus.TEMPORARY_REDIRECT + PERMANENT_REDIRECT = HTTPStatus.PERMANENT_REDIRECT + BAD_REQUEST = HTTPStatus.BAD_REQUEST + UNAUTHORIZED = HTTPStatus.UNAUTHORIZED + PAYMENT_REQUIRED = HTTPStatus.PAYMENT_REQUIRED + FORBIDDEN = HTTPStatus.FORBIDDEN + NOT_FOUND = HTTPStatus.NOT_FOUND + METHOD_NOT_ALLOWED = HTTPStatus.METHOD_NOT_ALLOWED + NOT_ACCEPTABLE = HTTPStatus.NOT_ACCEPTABLE + PROXY_AUTHENTICATION_REQUIRED = HTTPStatus.PROXY_AUTHENTICATION_REQUIRED + REQUEST_TIMEOUT = HTTPStatus.REQUEST_TIMEOUT + CONFLICT = HTTPStatus.CONFLICT + GONE = HTTPStatus.GONE + LENGTH_REQUIRED = HTTPStatus.LENGTH_REQUIRED + PRECONDITION_FAILED = HTTPStatus.PRECONDITION_FAILED + CONTENT_TOO_LARGE = HTTPStatus.CONTENT_TOO_LARGE + REQUEST_ENTITY_TOO_LARGE = HTTPStatus.CONTENT_TOO_LARGE + URI_TOO_LONG = HTTPStatus.URI_TOO_LONG + REQUEST_URI_TOO_LONG = HTTPStatus.URI_TOO_LONG + UNSUPPORTED_MEDIA_TYPE = HTTPStatus.UNSUPPORTED_MEDIA_TYPE + RANGE_NOT_SATISFIABLE = HTTPStatus.RANGE_NOT_SATISFIABLE + REQUESTED_RANGE_NOT_SATISFIABLE = HTTPStatus.RANGE_NOT_SATISFIABLE + EXPECTATION_FAILED = HTTPStatus.EXPECTATION_FAILED + IM_A_TEAPOT = HTTPStatus.IM_A_TEAPOT + UNPROCESSABLE_CONTENT = HTTPStatus.UNPROCESSABLE_CONTENT + UNPROCESSABLE_ENTITY = HTTPStatus.UNPROCESSABLE_CONTENT + LOCKED = HTTPStatus.LOCKED + FAILED_DEPENDENCY = HTTPStatus.FAILED_DEPENDENCY + TOO_EARLY = HTTPStatus.TOO_EARLY + UPGRADE_REQUIRED = HTTPStatus.UPGRADE_REQUIRED + PRECONDITION_REQUIRED = HTTPStatus.PRECONDITION_REQUIRED + TOO_MANY_REQUESTS = HTTPStatus.TOO_MANY_REQUESTS + REQUEST_HEADER_FIELDS_TOO_LARGE = HTTPStatus.REQUEST_HEADER_FIELDS_TOO_LARGE + INTERNAL_SERVER_ERROR = HTTPStatus.INTERNAL_SERVER_ERROR + NOT_IMPLEMENTED = HTTPStatus.NOT_IMPLEMENTED + BAD_GATEWAY = HTTPStatus.BAD_GATEWAY + SERVICE_UNAVAILABLE = HTTPStatus.SERVICE_UNAVAILABLE + GATEWAY_TIMEOUT = HTTPStatus.GATEWAY_TIMEOUT + HTTP_VERSION_NOT_SUPPORTED = HTTPStatus.HTTP_VERSION_NOT_SUPPORTED + VARIANT_ALSO_NEGOTIATES = HTTPStatus.VARIANT_ALSO_NEGOTIATES + INSUFFICIENT_STORAGE = HTTPStatus.INSUFFICIENT_STORAGE + LOOP_DETECTED = HTTPStatus.LOOP_DETECTED + NOT_EXTENDED = HTTPStatus.NOT_EXTENDED + NETWORK_AUTHENTICATION_REQUIRED = HTTPStatus.NETWORK_AUTHENTICATION_REQUIRED + """ + ) + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "http", _http_transform) + register_module_extender(manager, "http.client", _http_client_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_hypothesis.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_hypothesis.py new file mode 100644 index 0000000..ba20f06 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_hypothesis.py @@ -0,0 +1,56 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Astroid hook for the Hypothesis library. + +Without this hook pylint reports no-value-for-parameter for use of strategies +defined using the `@hypothesis.strategies.composite` decorator. For example: + + from hypothesis import strategies as st + + @st.composite + def a_strategy(draw): + return draw(st.integers()) + + a_strategy() +""" +from astroid.manager import AstroidManager +from astroid.nodes.scoped_nodes import FunctionDef + +COMPOSITE_NAMES = ( + "composite", + "st.composite", + "strategies.composite", + "hypothesis.strategies.composite", +) + + +def is_decorated_with_st_composite(node: FunctionDef) -> bool: + """Return whether a decorated node has @st.composite applied.""" + if node.decorators and node.args.args and node.args.args[0].name == "draw": + for decorator_attribute in node.decorators.nodes: + if decorator_attribute.as_string() in COMPOSITE_NAMES: + return True + return False + + +def remove_draw_parameter_from_composite_strategy(node: FunctionDef) -> FunctionDef: + """Given that the FunctionDef is decorated with @st.composite, remove the + first argument (`draw`) - it's always supplied by Hypothesis so we don't + need to emit the no-value-for-parameter lint. + """ + assert isinstance(node.args.args, list) + del node.args.args[0] + del node.args.annotations[0] + del node.args.type_comment_args[0] + return node + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + node_class=FunctionDef, + transform=remove_draw_parameter_from_composite_strategy, + predicate=is_decorated_with_st_composite, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_io.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_io.py new file mode 100644 index 0000000..ab6e607 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_io.py @@ -0,0 +1,44 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid brain hints for some of the _io C objects.""" +from astroid.manager import AstroidManager +from astroid.nodes import ClassDef + +BUFFERED = {"BufferedWriter", "BufferedReader"} +TextIOWrapper = "TextIOWrapper" +FileIO = "FileIO" +BufferedWriter = "BufferedWriter" + + +def _generic_io_transform(node, name, cls): + """Transform the given name, by adding the given *class* as a member of the + node. + """ + + io_module = AstroidManager().ast_from_module_name("_io") + attribute_object = io_module[cls] + instance = attribute_object.instantiate_class() + node.locals[name] = [instance] + + +def _transform_text_io_wrapper(node): + # This is not always correct, since it can vary with the type of the descriptor, + # being stdout, stderr or stdin. But we cannot get access to the name of the + # stream, which is why we are using the BufferedWriter class as a default + # value + return _generic_io_transform(node, name="buffer", cls=BufferedWriter) + + +def _transform_buffered(node): + return _generic_io_transform(node, name="raw", cls=FileIO) + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + ClassDef, _transform_buffered, lambda node: node.name in BUFFERED + ) + manager.register_transform( + ClassDef, _transform_text_io_wrapper, lambda node: node.name == TextIOWrapper + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_mechanize.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_mechanize.py new file mode 100644 index 0000000..62cc2d0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_mechanize.py @@ -0,0 +1,125 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder +from astroid.manager import AstroidManager + + +def mechanize_transform() -> nodes.Module: + return AstroidBuilder(AstroidManager()).string_build( + """class Browser(object): + def __getattr__(self, name): + return None + + def __getitem__(self, name): + return None + + def __setitem__(self, name, val): + return None + + def back(self, n=1): + return None + + def clear_history(self): + return None + + def click(self, *args, **kwds): + return None + + def click_link(self, link=None, **kwds): + return None + + def close(self): + return None + + def encoding(self): + return None + + def find_link( + self, + text=None, + text_regex=None, + name=None, + name_regex=None, + url=None, + url_regex=None, + tag=None, + predicate=None, + nr=0, + ): + return None + + def follow_link(self, link=None, **kwds): + return None + + def forms(self): + return None + + def geturl(self): + return None + + def global_form(self): + return None + + def links(self, **kwds): + return None + + def open_local_file(self, filename): + return None + + def open(self, url, data=None, timeout=None): + return None + + def open_novisit(self, url, data=None, timeout=None): + return None + + def open_local_file(self, filename): + return None + + def reload(self): + return None + + def response(self): + return None + + def select_form(self, name=None, predicate=None, nr=None, **attrs): + return None + + def set_cookie(self, cookie_string): + return None + + def set_handle_referer(self, handle): + return None + + def set_header(self, header, value=None): + return None + + def set_html(self, html, url="http://example.com/"): + return None + + def set_response(self, response): + return None + + def set_simple_cookie(self, name, value, domain, path="/"): + return None + + def submit(self, *args, **kwds): + return None + + def title(self): + return None + + def viewing_html(self): + return None + + def visit_response(self, response, request=None): + return None +""" + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "mechanize", mechanize_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_multiprocessing.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_multiprocessing.py new file mode 100644 index 0000000..e6413b0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_multiprocessing.py @@ -0,0 +1,106 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid.bases import BoundMethod +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.exceptions import InferenceError +from astroid.manager import AstroidManager +from astroid.nodes.scoped_nodes import FunctionDef + + +def _multiprocessing_transform(): + module = parse( + """ + from multiprocessing.managers import SyncManager + def Manager(): + return SyncManager() + """ + ) + # Multiprocessing uses a getattr lookup inside contexts, + # in order to get the attributes they need. Since it's extremely + # dynamic, we use this approach to fake it. + node = parse( + """ + from multiprocessing.context import DefaultContext, BaseContext + default = DefaultContext() + base = BaseContext() + """ + ) + try: + context = next(node["default"].infer()) + base = next(node["base"].infer()) + except (InferenceError, StopIteration): + return module + + for node in (context, base): + for key, value in node.locals.items(): + if key.startswith("_"): + continue + + value = value[0] + if isinstance(value, FunctionDef): + # We need to rebound this, since otherwise + # it will have an extra argument (self). + value = BoundMethod(value, node) + module[key] = value + return module + + +def _multiprocessing_managers_transform(): + return parse( + """ + import array + import threading + import multiprocessing.pool as pool + import queue + + class Namespace(object): + pass + + class Value(object): + def __init__(self, typecode, value, lock=True): + self._typecode = typecode + self._value = value + def get(self): + return self._value + def set(self, value): + self._value = value + def __repr__(self): + return '%s(%r, %r)'%(type(self).__name__, self._typecode, self._value) + value = property(get, set) + + def Array(typecode, sequence, lock=True): + return array.array(typecode, sequence) + + class SyncManager(object): + Queue = JoinableQueue = queue.Queue + Event = threading.Event + RLock = threading.RLock + Lock = threading.Lock + BoundedSemaphore = threading.BoundedSemaphore + Condition = threading.Condition + Barrier = threading.Barrier + Pool = pool.Pool + list = list + dict = dict + Value = Value + Array = Array + Namespace = Namespace + __enter__ = lambda self: self + __exit__ = lambda *args: args + + def start(self, initializer=None, initargs=None): + pass + def shutdown(self): + pass + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender( + manager, "multiprocessing.managers", _multiprocessing_managers_transform + ) + register_module_extender(manager, "multiprocessing", _multiprocessing_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_namedtuple_enum.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_namedtuple_enum.py new file mode 100644 index 0000000..ff5b715 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_namedtuple_enum.py @@ -0,0 +1,681 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for the Python standard library.""" + +from __future__ import annotations + +import functools +import keyword +from collections.abc import Iterator +from textwrap import dedent +from typing import Final + +from astroid import arguments, bases, nodes, util +from astroid.builder import AstroidBuilder, _extract_single_node, extract_node +from astroid.context import InferenceContext +from astroid.exceptions import ( + AstroidTypeError, + AstroidValueError, + InferenceError, + UseInferenceDefault, +) +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager +from astroid.nodes.scoped_nodes.scoped_nodes import SYNTHETIC_ROOT + +ENUM_QNAME: Final[str] = "enum.Enum" +TYPING_NAMEDTUPLE_QUALIFIED: Final = { + "typing.NamedTuple", + "typing_extensions.NamedTuple", +} +TYPING_NAMEDTUPLE_BASENAMES: Final = { + "NamedTuple", + "typing.NamedTuple", + "typing_extensions.NamedTuple", +} + + +def _infer_first(node, context): + if isinstance(node, util.UninferableBase): + raise UseInferenceDefault + try: + value = next(node.infer(context=context)) + except StopIteration as exc: + raise InferenceError from exc + if isinstance(value, util.UninferableBase): + raise UseInferenceDefault() + return value + + +def _find_func_form_arguments(node, context): + def _extract_namedtuple_arg_or_keyword( # pylint: disable=inconsistent-return-statements + position, key_name=None + ): + if len(args) > position: + return _infer_first(args[position], context) + if key_name and key_name in found_keywords: + return _infer_first(found_keywords[key_name], context) + + args = node.args + keywords = node.keywords + found_keywords = ( + {keyword.arg: keyword.value for keyword in keywords} if keywords else {} + ) + + name = _extract_namedtuple_arg_or_keyword(position=0, key_name="typename") + names = _extract_namedtuple_arg_or_keyword(position=1, key_name="field_names") + if name and names: + return name.value, names + + raise UseInferenceDefault() + + +def infer_func_form( + node: nodes.Call, + base_type: nodes.NodeNG, + *, + parent: nodes.NodeNG, + context: InferenceContext | None = None, + enum: bool = False, +) -> tuple[nodes.ClassDef, str, list[str]]: + """Specific inference function for namedtuple or Python 3 enum.""" + # node is a Call node, class name as first argument and generated class + # attributes as second argument + + # namedtuple or enums list of attributes can be a list of strings or a + # whitespace-separate string + try: + name, names = _find_func_form_arguments(node, context) + try: + attributes: list[str] = names.value.replace(",", " ").split() + except AttributeError as exc: + # Handle attributes of NamedTuples + if not enum: + attributes = [] + fields = _get_namedtuple_fields(node) + if fields: + fields_node = extract_node(fields) + attributes = [ + _infer_first(const, context).value for const in fields_node.elts + ] + + # Handle attributes of Enums + else: + # Enums supports either iterator of (name, value) pairs + # or mappings. + if hasattr(names, "items") and isinstance(names.items, list): + attributes = [ + _infer_first(const[0], context).value + for const in names.items + if isinstance(const[0], nodes.Const) + ] + elif hasattr(names, "elts"): + # Enums can support either ["a", "b", "c"] + # or [("a", 1), ("b", 2), ...], but they can't + # be mixed. + if all(isinstance(const, nodes.Tuple) for const in names.elts): + attributes = [ + _infer_first(const.elts[0], context).value + for const in names.elts + if isinstance(const, nodes.Tuple) + ] + else: + attributes = [ + _infer_first(const, context).value for const in names.elts + ] + else: + raise AttributeError from exc + if not attributes: + raise AttributeError from exc + except (AttributeError, InferenceError) as exc: + raise UseInferenceDefault from exc + + if not enum: + # namedtuple maps sys.intern(str()) over over field_names + attributes = [str(attr) for attr in attributes] + # XXX this should succeed *unless* __str__/__repr__ is incorrect or throws + # in which case we should not have inferred these values and raised earlier + attributes = [attr for attr in attributes if " " not in attr] + + # If we can't infer the name of the class, don't crash, up to this point + # we know it is a namedtuple anyway. + name = name or "Uninferable" + # we want to return a Class node instance with proper attributes set + class_node = nodes.ClassDef( + name, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + class_node.postinit( + bases=[base_type], + body=[], + decorators=None, + ) + # XXX add __init__(*attributes) method + for attr in attributes: + fake_node = nodes.EmptyNode() + fake_node.parent = class_node + fake_node.attrname = attr + class_node.instance_attrs[attr] = [fake_node] + return class_node, name, attributes + + +def _has_namedtuple_base(node): + """Predicate for class inference tip. + + :type node: ClassDef + :rtype: bool + """ + return set(node.basenames) & TYPING_NAMEDTUPLE_BASENAMES + + +def _looks_like(node, name) -> bool: + func = node.func + if isinstance(func, nodes.Attribute): + return func.attrname == name + if isinstance(func, nodes.Name): + return func.name == name + return False + + +_looks_like_namedtuple = functools.partial(_looks_like, name="namedtuple") +_looks_like_enum = functools.partial(_looks_like, name="Enum") +_looks_like_typing_namedtuple = functools.partial(_looks_like, name="NamedTuple") + + +def infer_named_tuple( + node: nodes.Call, context: InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """Specific inference function for namedtuple Call node.""" + tuple_base: nodes.Name = _extract_single_node("tuple") + class_node, name, attributes = infer_func_form( + node, tuple_base, parent=SYNTHETIC_ROOT, context=context + ) + + call_site = arguments.CallSite.from_call(node, context=context) + func = util.safe_infer( + _extract_single_node("import collections; collections.namedtuple") + ) + assert isinstance(func, nodes.NodeNG) + try: + rename_arg_bool_value = next( + call_site.infer_argument(func, "rename", context or InferenceContext()) + ).bool_value() + rename = rename_arg_bool_value is True + except (InferenceError, StopIteration): + rename = False + + try: + attributes = _check_namedtuple_attributes(name, attributes, rename) + except AstroidTypeError as exc: + raise UseInferenceDefault("TypeError: " + str(exc)) from exc + except AstroidValueError as exc: + raise UseInferenceDefault("ValueError: " + str(exc)) from exc + + replace_args = ", ".join(f"{arg}=None" for arg in attributes) + field_def = ( + " {name} = property(lambda self: self[{index:d}], " + "doc='Alias for field number {index:d}')" + ) + field_defs = "\n".join( + field_def.format(name=name, index=index) + for index, name in enumerate(attributes) + ) + fake = AstroidBuilder(AstroidManager()).string_build( + f""" +class {name}(tuple): + __slots__ = () + _fields = {attributes!r} + def _asdict(self): + return self.__dict__ + @classmethod + def _make(cls, iterable, new=tuple.__new__, len=len): + return new(cls, iterable) + def _replace(self, {replace_args}): + return self + def __getnewargs__(self): + return tuple(self) +{field_defs} + """ + ) + class_node.locals["_asdict"] = fake.body[0].locals["_asdict"] + class_node.locals["_make"] = fake.body[0].locals["_make"] + class_node.locals["_replace"] = fake.body[0].locals["_replace"] + class_node.locals["_fields"] = fake.body[0].locals["_fields"] + for attr in attributes: + class_node.locals[attr] = fake.body[0].locals[attr] + # we use UseInferenceDefault, we can't be a generator so return an iterator + return iter([class_node]) + + +def _get_renamed_namedtuple_attributes(field_names): + names = list(field_names) + seen = set() + for i, name in enumerate(field_names): + # pylint: disable = too-many-boolean-expressions + if ( + not all(c.isalnum() or c == "_" for c in name) + or keyword.iskeyword(name) + or not name + or name[0].isdigit() + or name.startswith("_") + or name in seen + ): + names[i] = "_%d" % i + seen.add(name) + return tuple(names) + + +def _check_namedtuple_attributes(typename, attributes, rename=False): + attributes = tuple(attributes) + if rename: + attributes = _get_renamed_namedtuple_attributes(attributes) + + # The following snippet is derived from the CPython Lib/collections/__init__.py sources + # + for name in (typename, *attributes): + if not isinstance(name, str): + raise AstroidTypeError( + f"Type names and field names must be strings, not {type(name)!r}" + ) + if not name.isidentifier(): + raise AstroidValueError( + "Type names and field names must be valid" + f"identifiers: {name!r}" + ) + if keyword.iskeyword(name): + raise AstroidValueError( + f"Type names and field names cannot be a keyword: {name!r}" + ) + + seen = set() + for name in attributes: + if name.startswith("_") and not rename: + raise AstroidValueError( + f"Field names cannot start with an underscore: {name!r}" + ) + if name in seen: + raise AstroidValueError(f"Encountered duplicate field name: {name!r}") + seen.add(name) + # + + return attributes + + +def infer_enum( + node: nodes.Call, context: InferenceContext | None = None +) -> Iterator[bases.Instance]: + """Specific inference function for enum Call node.""" + # Raise `UseInferenceDefault` if `node` is a call to a a user-defined Enum. + try: + inferred = node.func.infer(context) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + + if not any( + isinstance(item, nodes.ClassDef) and item.qname() == ENUM_QNAME + for item in inferred + ): + raise UseInferenceDefault + + enum_meta = _extract_single_node( + """ + class EnumMeta(object): + 'docstring' + def __call__(self, node): + class EnumAttribute(object): + name = '' + value = 0 + return EnumAttribute() + def __iter__(self): + class EnumAttribute(object): + name = '' + value = 0 + return [EnumAttribute()] + def __reversed__(self): + class EnumAttribute(object): + name = '' + value = 0 + return (EnumAttribute, ) + def __next__(self): + return next(iter(self)) + def __getitem__(self, attr): + class Value(object): + @property + def name(self): + return '' + @property + def value(self): + return attr + + return Value() + __members__ = [''] + """ + ) + + # FIXME arguably, the base here shouldn't be the EnumMeta class definition + # itself, but a reference (Name) to it. Otherwise, the invariant that all + # children of a node have that node as their parent is broken. + class_node = infer_func_form( + node, + enum_meta, + parent=SYNTHETIC_ROOT, + context=context, + enum=True, + )[0] + return iter([class_node.instantiate_class()]) + + +INT_FLAG_ADDITION_METHODS = """ + def __or__(self, other): + return {name}(self.value | other.value) + def __and__(self, other): + return {name}(self.value & other.value) + def __xor__(self, other): + return {name}(self.value ^ other.value) + def __add__(self, other): + return {name}(self.value + other.value) + def __div__(self, other): + return {name}(self.value / other.value) + def __invert__(self): + return {name}(~self.value) + def __mul__(self, other): + return {name}(self.value * other.value) +""" + + +def infer_enum_class(node: nodes.ClassDef) -> nodes.ClassDef: + """Specific inference for enums.""" + for basename in (b for cls in node.mro() for b in cls.basenames): + if node.root().name == "enum": + # Skip if the class is directly from enum module. + break + dunder_members = {} + target_names = set() + for local, values in node.locals.items(): + if ( + any(not isinstance(value, nodes.AssignName) for value in values) + or local == "_ignore_" + ): + continue + + stmt = values[0].statement() + if isinstance(stmt, nodes.Assign): + if isinstance(stmt.targets[0], nodes.Tuple): + targets = stmt.targets[0].itered() + else: + targets = stmt.targets + elif isinstance(stmt, nodes.AnnAssign): + targets = [stmt.target] + else: + continue + + inferred_return_value = None + if stmt.value is not None: + if isinstance(stmt.value, nodes.Const): + if isinstance(stmt.value.value, str): + inferred_return_value = repr(stmt.value.value) + else: + inferred_return_value = stmt.value.value + else: + inferred_return_value = stmt.value.as_string() + + new_targets = [] + for target in targets: + if isinstance(target, nodes.Starred): + continue + target_names.add(target.name) + # Replace all the assignments with our mocked class. + classdef = dedent( + """ + class {name}({types}): + @property + def value(self): + return {return_value} + @property + def _value_(self): + return {return_value} + @property + def name(self): + return "{name}" + @property + def _name_(self): + return "{name}" + """.format( + name=target.name, + types=", ".join(node.basenames), + return_value=inferred_return_value, + ) + ) + if "IntFlag" in basename: + # Alright, we need to add some additional methods. + # Unfortunately we still can't infer the resulting objects as + # Enum members, but once we'll be able to do that, the following + # should result in some nice symbolic execution + classdef += INT_FLAG_ADDITION_METHODS.format(name=target.name) + + fake = AstroidBuilder( + AstroidManager(), apply_transforms=False + ).string_build(classdef)[target.name] + fake.parent = target.parent + for method in node.mymethods(): + fake.locals[method.name] = [method] + new_targets.append(fake.instantiate_class()) + if stmt.value is None: + continue + dunder_members[local] = fake + node.locals[local] = new_targets + + # The undocumented `_value2member_map_` member: + node.locals["_value2member_map_"] = [ + nodes.Dict( + parent=node, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + ] + + members = nodes.Dict( + parent=node, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + members.postinit( + [ + ( + nodes.Const(k, parent=members), + nodes.Name( + v.name, + parent=members, + lineno=v.lineno, + col_offset=v.col_offset, + end_lineno=v.end_lineno, + end_col_offset=v.end_col_offset, + ), + ) + for k, v in dunder_members.items() + ] + ) + node.locals["__members__"] = [members] + # The enum.Enum class itself defines two @DynamicClassAttribute data-descriptors + # "name" and "value" (which we override in the mocked class for each enum member + # above). When dealing with inference of an arbitrary instance of the enum + # class, e.g. in a method defined in the class body like: + # class SomeEnum(enum.Enum): + # def method(self): + # self.name # <- here + # In the absence of an enum member called "name" or "value", these attributes + # should resolve to the descriptor on that particular instance, i.e. enum member. + # For "value", we have no idea what that should be, but for "name", we at least + # know that it should be a string, so infer that as a guess. + if "name" not in target_names: + code = dedent( + ''' + @property + def name(self): + """The name of the Enum member. + + This is a reconstruction by astroid: enums are too dynamic to understand, but we at least + know 'name' should be a string, so this is astroid's best guess. + """ + return '' + ''' + ) + name_dynamicclassattr = AstroidBuilder(AstroidManager()).string_build(code)[ + "name" + ] + node.locals["name"] = [name_dynamicclassattr] + break + return node + + +def infer_typing_namedtuple_class(class_node, context: InferenceContext | None = None): + """Infer a subclass of typing.NamedTuple.""" + # Check if it has the corresponding bases + annassigns_fields = [ + annassign.target.name + for annassign in class_node.body + if isinstance(annassign, nodes.AnnAssign) + ] + code = dedent( + """ + from collections import namedtuple + namedtuple({typename!r}, {fields!r}) + """ + ).format(typename=class_node.name, fields=",".join(annassigns_fields)) + node = extract_node(code) + try: + generated_class_node = next(infer_named_tuple(node, context)) + except StopIteration as e: + raise InferenceError(node=node, context=context) from e + for method in class_node.mymethods(): + generated_class_node.locals[method.name] = [method] + + for body_node in class_node.body: + if isinstance(body_node, nodes.Assign): + for target in body_node.targets: + attr = target.name + generated_class_node.locals[attr] = class_node.locals[attr] + elif isinstance(body_node, nodes.ClassDef): + generated_class_node.locals[body_node.name] = [body_node] + + return iter((generated_class_node,)) + + +def infer_typing_namedtuple_function(node, context: InferenceContext | None = None): + """ + Starting with python3.9, NamedTuple is a function of the typing module. + The class NamedTuple is build dynamically through a call to `type` during + initialization of the `_NamedTuple` variable. + """ + klass = extract_node( + """ + from typing import _NamedTuple + _NamedTuple + """ + ) + return klass.infer(context) + + +def infer_typing_namedtuple( + node: nodes.Call, context: InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """Infer a typing.NamedTuple(...) call.""" + # This is essentially a namedtuple with different arguments + # so we extract the args and infer a named tuple. + try: + func = next(node.func.infer()) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + + if func.qname() not in TYPING_NAMEDTUPLE_QUALIFIED: + raise UseInferenceDefault + + if len(node.args) != 2: + raise UseInferenceDefault + + if not isinstance(node.args[1], (nodes.List, nodes.Tuple)): + raise UseInferenceDefault + + return infer_named_tuple(node, context) + + +def _get_namedtuple_fields(node: nodes.Call) -> str: + """Get and return fields of a NamedTuple in code-as-a-string. + + Because the fields are represented in their code form we can + extract a node from them later on. + """ + names = [] + container = None + try: + container = next(node.args[1].infer()) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + # We pass on IndexError as we'll try to infer 'field_names' from the keywords + except IndexError: + pass + if not container: + for keyword_node in node.keywords: + if keyword_node.arg == "field_names": + try: + container = next(keyword_node.value.infer()) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + break + if not isinstance(container, nodes.BaseContainer): + raise UseInferenceDefault + for elt in container.elts: + if isinstance(elt, nodes.Const): + names.append(elt.as_string()) + continue + if not isinstance(elt, (nodes.List, nodes.Tuple)): + raise UseInferenceDefault + if len(elt.elts) != 2: + raise UseInferenceDefault + names.append(elt.elts[0].as_string()) + + if names: + field_names = f"({','.join(names)},)" + else: + field_names = "" + return field_names + + +def _is_enum_subclass(cls: nodes.ClassDef) -> bool: + """Return whether cls is a subclass of an Enum.""" + return cls.is_subtype_of("enum.Enum") + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Call, inference_tip(infer_named_tuple), _looks_like_namedtuple + ) + manager.register_transform(nodes.Call, inference_tip(infer_enum), _looks_like_enum) + manager.register_transform( + nodes.ClassDef, infer_enum_class, predicate=_is_enum_subclass + ) + manager.register_transform( + nodes.ClassDef, + inference_tip(infer_typing_namedtuple_class), + _has_namedtuple_base, + ) + manager.register_transform( + nodes.FunctionDef, + inference_tip(infer_typing_namedtuple_function), + lambda node: node.name == "NamedTuple" + and getattr(node.root(), "name", None) == "typing", + ) + manager.register_transform( + nodes.Call, + inference_tip(infer_typing_namedtuple), + _looks_like_typing_namedtuple, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_einsumfunc.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_einsumfunc.py new file mode 100644 index 0000000..b72369c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_einsumfunc.py @@ -0,0 +1,28 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Astroid hooks for numpy.core.einsumfunc module: +https://github.com/numpy/numpy/blob/main/numpy/core/einsumfunc.py. +""" + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def numpy_core_einsumfunc_transform() -> nodes.Module: + return parse( + """ + def einsum(*operands, out=None, optimize=False, **kwargs): + return numpy.ndarray([0, 0]) + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender( + manager, "numpy.core.einsumfunc", numpy_core_einsumfunc_transform + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_fromnumeric.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_fromnumeric.py new file mode 100644 index 0000000..ce4173c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_fromnumeric.py @@ -0,0 +1,24 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for numpy.core.fromnumeric module.""" +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def numpy_core_fromnumeric_transform() -> nodes.Module: + return parse( + """ + def sum(a, axis=None, dtype=None, out=None, keepdims=None, initial=None): + return numpy.ndarray([0, 0]) + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender( + manager, "numpy.core.fromnumeric", numpy_core_fromnumeric_transform + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_function_base.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_function_base.py new file mode 100644 index 0000000..b66ba5f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_function_base.py @@ -0,0 +1,35 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for numpy.core.function_base module.""" + +import functools + +from astroid import nodes +from astroid.brain.brain_numpy_utils import ( + attribute_name_looks_like_numpy_member, + infer_numpy_attribute, +) +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + +METHODS_TO_BE_INFERRED = { + "linspace": """def linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None, axis=0): + return numpy.ndarray([0, 0])""", + "logspace": """def logspace(start, stop, num=50, endpoint=True, base=10.0, dtype=None, axis=0): + return numpy.ndarray([0, 0])""", + "geomspace": """def geomspace(start, stop, num=50, endpoint=True, dtype=None, axis=0): + return numpy.ndarray([0, 0])""", +} + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Attribute, + inference_tip(functools.partial(infer_numpy_attribute, METHODS_TO_BE_INFERRED)), + functools.partial( + attribute_name_looks_like_numpy_member, + frozenset(METHODS_TO_BE_INFERRED.keys()), + ), + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_multiarray.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_multiarray.py new file mode 100644 index 0000000..19850d3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_multiarray.py @@ -0,0 +1,106 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for numpy.core.multiarray module.""" + +import functools + +from astroid import nodes +from astroid.brain.brain_numpy_utils import ( + attribute_name_looks_like_numpy_member, + infer_numpy_attribute, + infer_numpy_name, + member_name_looks_like_numpy_member, +) +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + + +def numpy_core_multiarray_transform() -> nodes.Module: + return parse( + """ + # different functions defined in multiarray.py + def inner(a, b): + return numpy.ndarray([0, 0]) + + def vdot(a, b): + return numpy.ndarray([0, 0]) + """ + ) + + +METHODS_TO_BE_INFERRED = { + "array": """def array(object, dtype=None, copy=True, order='K', subok=False, ndmin=0): + return numpy.ndarray([0, 0])""", + "dot": """def dot(a, b, out=None): + return numpy.ndarray([0, 0])""", + "empty_like": """def empty_like(a, dtype=None, order='K', subok=True): + return numpy.ndarray((0, 0))""", + "concatenate": """def concatenate(arrays, axis=None, out=None): + return numpy.ndarray((0, 0))""", + "where": """def where(condition, x=None, y=None): + return numpy.ndarray([0, 0])""", + "empty": """def empty(shape, dtype=float, order='C'): + return numpy.ndarray([0, 0])""", + "bincount": """def bincount(x, weights=None, minlength=0): + return numpy.ndarray([0, 0])""", + "busday_count": """def busday_count( + begindates, enddates, weekmask='1111100', holidays=[], busdaycal=None, out=None + ): + return numpy.ndarray([0, 0])""", + "busday_offset": """def busday_offset( + dates, offsets, roll='raise', weekmask='1111100', holidays=None, + busdaycal=None, out=None + ): + return numpy.ndarray([0, 0])""", + "can_cast": """def can_cast(from_, to, casting='safe'): + return True""", + "copyto": """def copyto(dst, src, casting='same_kind', where=True): + return None""", + "datetime_as_string": """def datetime_as_string(arr, unit=None, timezone='naive', casting='same_kind'): + return numpy.ndarray([0, 0])""", + "is_busday": """def is_busday(dates, weekmask='1111100', holidays=None, busdaycal=None, out=None): + return numpy.ndarray([0, 0])""", + "lexsort": """def lexsort(keys, axis=-1): + return numpy.ndarray([0, 0])""", + "may_share_memory": """def may_share_memory(a, b, max_work=None): + return True""", + # Not yet available because dtype is not yet present in those brains + # "min_scalar_type": """def min_scalar_type(a): + # return numpy.dtype('int16')""", + "packbits": """def packbits(a, axis=None, bitorder='big'): + return numpy.ndarray([0, 0])""", + # Not yet available because dtype is not yet present in those brains + # "result_type": """def result_type(*arrays_and_dtypes): + # return numpy.dtype('int16')""", + "shares_memory": """def shares_memory(a, b, max_work=None): + return True""", + "unpackbits": """def unpackbits(a, axis=None, count=None, bitorder='big'): + return numpy.ndarray([0, 0])""", + "unravel_index": """def unravel_index(indices, shape, order='C'): + return (numpy.ndarray([0, 0]),)""", + "zeros": """def zeros(shape, dtype=float, order='C'): + return numpy.ndarray([0, 0])""", +} + + +def register(manager: AstroidManager) -> None: + register_module_extender( + manager, "numpy.core.multiarray", numpy_core_multiarray_transform + ) + + method_names = frozenset(METHODS_TO_BE_INFERRED.keys()) + + manager.register_transform( + nodes.Attribute, + inference_tip(functools.partial(infer_numpy_attribute, METHODS_TO_BE_INFERRED)), + functools.partial(attribute_name_looks_like_numpy_member, method_names), + ) + manager.register_transform( + nodes.Name, + inference_tip(functools.partial(infer_numpy_name, METHODS_TO_BE_INFERRED)), + functools.partial(member_name_looks_like_numpy_member, method_names), + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numeric.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numeric.py new file mode 100644 index 0000000..ee08e02 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numeric.py @@ -0,0 +1,50 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for numpy.core.numeric module.""" + +import functools + +from astroid import nodes +from astroid.brain.brain_numpy_utils import ( + attribute_name_looks_like_numpy_member, + infer_numpy_attribute, +) +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + + +def numpy_core_numeric_transform() -> nodes.Module: + return parse( + """ + # different functions defined in numeric.py + import numpy + def zeros_like(a, dtype=None, order='K', subok=True, shape=None): return numpy.ndarray((0, 0)) + def ones_like(a, dtype=None, order='K', subok=True, shape=None): return numpy.ndarray((0, 0)) + def full_like(a, fill_value, dtype=None, order='K', subok=True, shape=None): return numpy.ndarray((0, 0)) + """ + ) + + +METHODS_TO_BE_INFERRED = { + "ones": """def ones(shape, dtype=None, order='C'): + return numpy.ndarray([0, 0])""" +} + + +def register(manager: AstroidManager) -> None: + register_module_extender( + manager, "numpy.core.numeric", numpy_core_numeric_transform + ) + + manager.register_transform( + nodes.Attribute, + inference_tip(functools.partial(infer_numpy_attribute, METHODS_TO_BE_INFERRED)), + functools.partial( + attribute_name_looks_like_numpy_member, + frozenset(METHODS_TO_BE_INFERRED.keys()), + ), + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numerictypes.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numerictypes.py new file mode 100644 index 0000000..7111c83 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_numerictypes.py @@ -0,0 +1,265 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +# TODO(hippo91) : correct the methods signature. + +"""Astroid hooks for numpy.core.numerictypes module.""" +from astroid import nodes +from astroid.brain.brain_numpy_utils import numpy_supports_type_hints +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def numpy_core_numerictypes_transform() -> nodes.Module: + # TODO: Uniformize the generic API with the ndarray one. + # According to numpy doc the generic object should expose + # the same API than ndarray. This has been done here partially + # through the astype method. + generic_src = """ + class generic(object): + def __init__(self, value): + self.T = np.ndarray([0, 0]) + self.base = None + self.data = None + self.dtype = None + self.flags = None + # Should be a numpy.flatiter instance but not available for now + # Putting an array instead so that iteration and indexing are authorized + self.flat = np.ndarray([0, 0]) + self.imag = None + self.itemsize = None + self.nbytes = None + self.ndim = None + self.real = None + self.size = None + self.strides = None + + def all(self): return uninferable + def any(self): return uninferable + def argmax(self): return uninferable + def argmin(self): return uninferable + def argsort(self): return uninferable + def astype(self, dtype, order='K', casting='unsafe', subok=True, copy=True): return np.ndarray([0, 0]) + def base(self): return uninferable + def byteswap(self): return uninferable + def choose(self): return uninferable + def clip(self): return uninferable + def compress(self): return uninferable + def conj(self): return uninferable + def conjugate(self): return uninferable + def copy(self): return uninferable + def cumprod(self): return uninferable + def cumsum(self): return uninferable + def data(self): return uninferable + def diagonal(self): return uninferable + def dtype(self): return uninferable + def dump(self): return uninferable + def dumps(self): return uninferable + def fill(self): return uninferable + def flags(self): return uninferable + def flat(self): return uninferable + def flatten(self): return uninferable + def getfield(self): return uninferable + def imag(self): return uninferable + def item(self): return uninferable + def itemset(self): return uninferable + def itemsize(self): return uninferable + def max(self): return uninferable + def mean(self): return uninferable + def min(self): return uninferable + def nbytes(self): return uninferable + def ndim(self): return uninferable + def newbyteorder(self): return uninferable + def nonzero(self): return uninferable + def prod(self): return uninferable + def ptp(self): return uninferable + def put(self): return uninferable + def ravel(self): return uninferable + def real(self): return uninferable + def repeat(self): return uninferable + def reshape(self): return uninferable + def resize(self): return uninferable + def round(self): return uninferable + def searchsorted(self): return uninferable + def setfield(self): return uninferable + def setflags(self): return uninferable + def shape(self): return uninferable + def size(self): return uninferable + def sort(self): return uninferable + def squeeze(self): return uninferable + def std(self): return uninferable + def strides(self): return uninferable + def sum(self): return uninferable + def swapaxes(self): return uninferable + def take(self): return uninferable + def tobytes(self): return uninferable + def tofile(self): return uninferable + def tolist(self): return uninferable + def tostring(self): return uninferable + def trace(self): return uninferable + def transpose(self): return uninferable + def var(self): return uninferable + def view(self): return uninferable + """ + if numpy_supports_type_hints(): + generic_src += """ + @classmethod + def __class_getitem__(cls, value): + return cls + """ + return parse( + generic_src + + """ + class dtype(object): + def __init__(self, obj, align=False, copy=False): + self.alignment = None + self.base = None + self.byteorder = None + self.char = None + self.descr = None + self.fields = None + self.flags = None + self.hasobject = None + self.isalignedstruct = None + self.isbuiltin = None + self.isnative = None + self.itemsize = None + self.kind = None + self.metadata = None + self.name = None + self.names = None + self.num = None + self.shape = None + self.str = None + self.subdtype = None + self.type = None + + def newbyteorder(self, new_order='S'): return uninferable + def __neg__(self): return uninferable + + class busdaycalendar(object): + def __init__(self, weekmask='1111100', holidays=None): + self.holidays = None + self.weekmask = None + + class flexible(generic): pass + class bool_(generic): pass + class number(generic): + def __neg__(self): return uninferable + class datetime64(generic): + def __init__(self, nb, unit=None): pass + + + class void(flexible): + def __init__(self, *args, **kwargs): + self.base = None + self.dtype = None + self.flags = None + def getfield(self): return uninferable + def setfield(self): return uninferable + + + class character(flexible): pass + + + class integer(number): + def __init__(self, value): + self.denominator = None + self.numerator = None + + + class inexact(number): pass + + + class str_(str, character): + def maketrans(self, x, y=None, z=None): return uninferable + + + class bytes_(bytes, character): + def fromhex(self, string): return uninferable + def maketrans(self, frm, to): return uninferable + + + class signedinteger(integer): pass + + + class unsignedinteger(integer): pass + + + class complexfloating(inexact): pass + + + class floating(inexact): pass + + + class float64(floating, float): + def fromhex(self, string): return uninferable + + + class uint64(unsignedinteger): pass + class complex64(complexfloating): pass + class int16(signedinteger): pass + class float96(floating): pass + class int8(signedinteger): pass + class uint32(unsignedinteger): pass + class uint8(unsignedinteger): pass + class _typedict(dict): pass + class complex192(complexfloating): pass + class timedelta64(signedinteger): + def __init__(self, nb, unit=None): pass + class int32(signedinteger): pass + class uint16(unsignedinteger): pass + class float32(floating): pass + class complex128(complexfloating, complex): pass + class float16(floating): pass + class int64(signedinteger): pass + + buffer_type = memoryview + bool8 = bool_ + byte = int8 + bytes0 = bytes_ + cdouble = complex128 + cfloat = complex128 + clongdouble = complex192 + clongfloat = complex192 + complex_ = complex128 + csingle = complex64 + double = float64 + float_ = float64 + half = float16 + int0 = int32 + int_ = int32 + intc = int32 + intp = int32 + long = int32 + longcomplex = complex192 + longdouble = float96 + longfloat = float96 + longlong = int64 + object0 = object_ + object_ = object_ + short = int16 + single = float32 + singlecomplex = complex64 + str0 = str_ + string_ = bytes_ + ubyte = uint8 + uint = uint32 + uint0 = uint32 + uintc = uint32 + uintp = uint32 + ulonglong = uint64 + unicode = str_ + unicode_ = str_ + ushort = uint16 + void0 = void + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender( + manager, "numpy.core.numerictypes", numpy_core_numerictypes_transform + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_umath.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_umath.py new file mode 100644 index 0000000..a048a1c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_core_umath.py @@ -0,0 +1,154 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +# Note: starting with version 1.18 numpy module has `__getattr__` method which prevent +# `pylint` to emit `no-member` message for all numpy's attributes. (see pylint's module +# typecheck in `_emit_no_member` function) + +"""Astroid hooks for numpy.core.umath module.""" +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def numpy_core_umath_transform() -> nodes.Module: + ufunc_optional_keyword_arguments = ( + """out=None, where=True, casting='same_kind', order='K', """ + """dtype=None, subok=True""" + ) + return parse( + """ + class FakeUfunc: + def __init__(self): + self.__doc__ = str() + self.__name__ = str() + self.nin = 0 + self.nout = 0 + self.nargs = 0 + self.ntypes = 0 + self.types = None + self.identity = None + self.signature = None + + @classmethod + def reduce(cls, a, axis=None, dtype=None, out=None): + return numpy.ndarray([0, 0]) + + @classmethod + def accumulate(cls, array, axis=None, dtype=None, out=None): + return numpy.ndarray([0, 0]) + + @classmethod + def reduceat(cls, a, indices, axis=None, dtype=None, out=None): + return numpy.ndarray([0, 0]) + + @classmethod + def outer(cls, A, B, **kwargs): + return numpy.ndarray([0, 0]) + + @classmethod + def at(cls, a, indices, b=None): + return numpy.ndarray([0, 0]) + + class FakeUfuncOneArg(FakeUfunc): + def __call__(self, x, {opt_args:s}): + return numpy.ndarray([0, 0]) + + class FakeUfuncOneArgBis(FakeUfunc): + def __call__(self, x, {opt_args:s}): + return numpy.ndarray([0, 0]), numpy.ndarray([0, 0]) + + class FakeUfuncTwoArgs(FakeUfunc): + def __call__(self, x1, x2, {opt_args:s}): + return numpy.ndarray([0, 0]) + + # Constants + e = 2.718281828459045 + euler_gamma = 0.5772156649015329 + + # One arg functions with optional kwargs + arccos = FakeUfuncOneArg() + arccosh = FakeUfuncOneArg() + arcsin = FakeUfuncOneArg() + arcsinh = FakeUfuncOneArg() + arctan = FakeUfuncOneArg() + arctanh = FakeUfuncOneArg() + cbrt = FakeUfuncOneArg() + conj = FakeUfuncOneArg() + conjugate = FakeUfuncOneArg() + cosh = FakeUfuncOneArg() + deg2rad = FakeUfuncOneArg() + degrees = FakeUfuncOneArg() + exp2 = FakeUfuncOneArg() + expm1 = FakeUfuncOneArg() + fabs = FakeUfuncOneArg() + frexp = FakeUfuncOneArgBis() + isfinite = FakeUfuncOneArg() + isinf = FakeUfuncOneArg() + log = FakeUfuncOneArg() + log1p = FakeUfuncOneArg() + log2 = FakeUfuncOneArg() + logical_not = FakeUfuncOneArg() + modf = FakeUfuncOneArgBis() + negative = FakeUfuncOneArg() + positive = FakeUfuncOneArg() + rad2deg = FakeUfuncOneArg() + radians = FakeUfuncOneArg() + reciprocal = FakeUfuncOneArg() + rint = FakeUfuncOneArg() + sign = FakeUfuncOneArg() + signbit = FakeUfuncOneArg() + sinh = FakeUfuncOneArg() + spacing = FakeUfuncOneArg() + square = FakeUfuncOneArg() + tan = FakeUfuncOneArg() + tanh = FakeUfuncOneArg() + trunc = FakeUfuncOneArg() + + # Two args functions with optional kwargs + add = FakeUfuncTwoArgs() + bitwise_and = FakeUfuncTwoArgs() + bitwise_or = FakeUfuncTwoArgs() + bitwise_xor = FakeUfuncTwoArgs() + copysign = FakeUfuncTwoArgs() + divide = FakeUfuncTwoArgs() + divmod = FakeUfuncTwoArgs() + equal = FakeUfuncTwoArgs() + float_power = FakeUfuncTwoArgs() + floor_divide = FakeUfuncTwoArgs() + fmax = FakeUfuncTwoArgs() + fmin = FakeUfuncTwoArgs() + fmod = FakeUfuncTwoArgs() + greater = FakeUfuncTwoArgs() + gcd = FakeUfuncTwoArgs() + hypot = FakeUfuncTwoArgs() + heaviside = FakeUfuncTwoArgs() + lcm = FakeUfuncTwoArgs() + ldexp = FakeUfuncTwoArgs() + left_shift = FakeUfuncTwoArgs() + less = FakeUfuncTwoArgs() + logaddexp = FakeUfuncTwoArgs() + logaddexp2 = FakeUfuncTwoArgs() + logical_and = FakeUfuncTwoArgs() + logical_or = FakeUfuncTwoArgs() + logical_xor = FakeUfuncTwoArgs() + maximum = FakeUfuncTwoArgs() + minimum = FakeUfuncTwoArgs() + multiply = FakeUfuncTwoArgs() + nextafter = FakeUfuncTwoArgs() + not_equal = FakeUfuncTwoArgs() + power = FakeUfuncTwoArgs() + remainder = FakeUfuncTwoArgs() + right_shift = FakeUfuncTwoArgs() + subtract = FakeUfuncTwoArgs() + true_divide = FakeUfuncTwoArgs() + """.format( + opt_args=ufunc_optional_keyword_arguments + ) + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "numpy.core.umath", numpy_core_umath_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ma.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ma.py new file mode 100644 index 0000000..e61acb5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ma.py @@ -0,0 +1,33 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for numpy ma module.""" + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def numpy_ma_transform() -> nodes.Module: + """ + Infer the call of various numpy.ma functions. + + :param node: node to infer + :param context: inference context + """ + return parse( + """ + import numpy.ma + def masked_where(condition, a, copy=True): + return numpy.ma.masked_array(a, mask=[]) + + def masked_invalid(a, copy=True): + return numpy.ma.masked_array(a, mask=[]) + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "numpy.ma", numpy_ma_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ndarray.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ndarray.py new file mode 100644 index 0000000..c98adb1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_ndarray.py @@ -0,0 +1,163 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for numpy ndarray class.""" +from __future__ import annotations + +from astroid import nodes +from astroid.brain.brain_numpy_utils import numpy_supports_type_hints +from astroid.builder import extract_node +from astroid.context import InferenceContext +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + + +def infer_numpy_ndarray(node, context: InferenceContext | None = None): + ndarray = """ + class ndarray(object): + def __init__(self, shape, dtype=float, buffer=None, offset=0, + strides=None, order=None): + self.T = numpy.ndarray([0, 0]) + self.base = None + self.ctypes = None + self.data = None + self.dtype = None + self.flags = None + # Should be a numpy.flatiter instance but not available for now + # Putting an array instead so that iteration and indexing are authorized + self.flat = np.ndarray([0, 0]) + self.imag = np.ndarray([0, 0]) + self.itemsize = None + self.nbytes = None + self.ndim = None + self.real = np.ndarray([0, 0]) + self.shape = numpy.ndarray([0, 0]) + self.size = None + self.strides = None + + def __abs__(self): return numpy.ndarray([0, 0]) + def __add__(self, value): return numpy.ndarray([0, 0]) + def __and__(self, value): return numpy.ndarray([0, 0]) + def __array__(self, dtype=None): return numpy.ndarray([0, 0]) + def __array_wrap__(self, obj): return numpy.ndarray([0, 0]) + def __contains__(self, key): return True + def __copy__(self): return numpy.ndarray([0, 0]) + def __deepcopy__(self, memo): return numpy.ndarray([0, 0]) + def __divmod__(self, value): return (numpy.ndarray([0, 0]), numpy.ndarray([0, 0])) + def __eq__(self, value): return numpy.ndarray([0, 0]) + def __float__(self): return 0. + def __floordiv__(self): return numpy.ndarray([0, 0]) + def __ge__(self, value): return numpy.ndarray([0, 0]) + def __getitem__(self, key): return uninferable + def __gt__(self, value): return numpy.ndarray([0, 0]) + def __iadd__(self, value): return numpy.ndarray([0, 0]) + def __iand__(self, value): return numpy.ndarray([0, 0]) + def __ifloordiv__(self, value): return numpy.ndarray([0, 0]) + def __ilshift__(self, value): return numpy.ndarray([0, 0]) + def __imod__(self, value): return numpy.ndarray([0, 0]) + def __imul__(self, value): return numpy.ndarray([0, 0]) + def __int__(self): return 0 + def __invert__(self): return numpy.ndarray([0, 0]) + def __ior__(self, value): return numpy.ndarray([0, 0]) + def __ipow__(self, value): return numpy.ndarray([0, 0]) + def __irshift__(self, value): return numpy.ndarray([0, 0]) + def __isub__(self, value): return numpy.ndarray([0, 0]) + def __itruediv__(self, value): return numpy.ndarray([0, 0]) + def __ixor__(self, value): return numpy.ndarray([0, 0]) + def __le__(self, value): return numpy.ndarray([0, 0]) + def __len__(self): return 1 + def __lshift__(self, value): return numpy.ndarray([0, 0]) + def __lt__(self, value): return numpy.ndarray([0, 0]) + def __matmul__(self, value): return numpy.ndarray([0, 0]) + def __mod__(self, value): return numpy.ndarray([0, 0]) + def __mul__(self, value): return numpy.ndarray([0, 0]) + def __ne__(self, value): return numpy.ndarray([0, 0]) + def __neg__(self): return numpy.ndarray([0, 0]) + def __or__(self, value): return numpy.ndarray([0, 0]) + def __pos__(self): return numpy.ndarray([0, 0]) + def __pow__(self): return numpy.ndarray([0, 0]) + def __repr__(self): return str() + def __rshift__(self): return numpy.ndarray([0, 0]) + def __setitem__(self, key, value): return uninferable + def __str__(self): return str() + def __sub__(self, value): return numpy.ndarray([0, 0]) + def __truediv__(self, value): return numpy.ndarray([0, 0]) + def __xor__(self, value): return numpy.ndarray([0, 0]) + def all(self, axis=None, out=None, keepdims=False): return np.ndarray([0, 0]) + def any(self, axis=None, out=None, keepdims=False): return np.ndarray([0, 0]) + def argmax(self, axis=None, out=None): return np.ndarray([0, 0]) + def argmin(self, axis=None, out=None): return np.ndarray([0, 0]) + def argpartition(self, kth, axis=-1, kind='introselect', order=None): return np.ndarray([0, 0]) + def argsort(self, axis=-1, kind='quicksort', order=None): return np.ndarray([0, 0]) + def astype(self, dtype, order='K', casting='unsafe', subok=True, copy=True): return np.ndarray([0, 0]) + def byteswap(self, inplace=False): return np.ndarray([0, 0]) + def choose(self, choices, out=None, mode='raise'): return np.ndarray([0, 0]) + def clip(self, min=None, max=None, out=None): return np.ndarray([0, 0]) + def compress(self, condition, axis=None, out=None): return np.ndarray([0, 0]) + def conj(self): return np.ndarray([0, 0]) + def conjugate(self): return np.ndarray([0, 0]) + def copy(self, order='C'): return np.ndarray([0, 0]) + def cumprod(self, axis=None, dtype=None, out=None): return np.ndarray([0, 0]) + def cumsum(self, axis=None, dtype=None, out=None): return np.ndarray([0, 0]) + def diagonal(self, offset=0, axis1=0, axis2=1): return np.ndarray([0, 0]) + def dot(self, b, out=None): return np.ndarray([0, 0]) + def dump(self, file): return None + def dumps(self): return str() + def fill(self, value): return None + def flatten(self, order='C'): return np.ndarray([0, 0]) + def getfield(self, dtype, offset=0): return np.ndarray([0, 0]) + def item(self, *args): return uninferable + def itemset(self, *args): return None + def max(self, axis=None, out=None): return np.ndarray([0, 0]) + def mean(self, axis=None, dtype=None, out=None, keepdims=False): return np.ndarray([0, 0]) + def min(self, axis=None, out=None, keepdims=False): return np.ndarray([0, 0]) + def newbyteorder(self, new_order='S'): return np.ndarray([0, 0]) + def nonzero(self): return (1,) + def partition(self, kth, axis=-1, kind='introselect', order=None): return None + def prod(self, axis=None, dtype=None, out=None, keepdims=False): return np.ndarray([0, 0]) + def ptp(self, axis=None, out=None): return np.ndarray([0, 0]) + def put(self, indices, values, mode='raise'): return None + def ravel(self, order='C'): return np.ndarray([0, 0]) + def repeat(self, repeats, axis=None): return np.ndarray([0, 0]) + def reshape(self, shape, order='C'): return np.ndarray([0, 0]) + def resize(self, new_shape, refcheck=True): return None + def round(self, decimals=0, out=None): return np.ndarray([0, 0]) + def searchsorted(self, v, side='left', sorter=None): return np.ndarray([0, 0]) + def setfield(self, val, dtype, offset=0): return None + def setflags(self, write=None, align=None, uic=None): return None + def sort(self, axis=-1, kind='quicksort', order=None): return None + def squeeze(self, axis=None): return np.ndarray([0, 0]) + def std(self, axis=None, dtype=None, out=None, ddof=0, keepdims=False): return np.ndarray([0, 0]) + def sum(self, axis=None, dtype=None, out=None, keepdims=False): return np.ndarray([0, 0]) + def swapaxes(self, axis1, axis2): return np.ndarray([0, 0]) + def take(self, indices, axis=None, out=None, mode='raise'): return np.ndarray([0, 0]) + def tobytes(self, order='C'): return b'' + def tofile(self, fid, sep="", format="%s"): return None + def tolist(self, ): return [] + def tostring(self, order='C'): return b'' + def trace(self, offset=0, axis1=0, axis2=1, dtype=None, out=None): return np.ndarray([0, 0]) + def transpose(self, *axes): return np.ndarray([0, 0]) + def var(self, axis=None, dtype=None, out=None, ddof=0, keepdims=False): return np.ndarray([0, 0]) + def view(self, dtype=None, type=None): return np.ndarray([0, 0]) + """ + if numpy_supports_type_hints(): + ndarray += """ + @classmethod + def __class_getitem__(cls, value): + return cls + """ + node = extract_node(ndarray) + return node.infer(context=context) + + +def _looks_like_numpy_ndarray(node: nodes.Attribute) -> bool: + return node.attrname == "ndarray" + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Attribute, + inference_tip(infer_numpy_ndarray), + _looks_like_numpy_ndarray, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_random_mtrand.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_random_mtrand.py new file mode 100644 index 0000000..be1c957 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_random_mtrand.py @@ -0,0 +1,73 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +# TODO(hippo91) : correct the functions return types +"""Astroid hooks for numpy.random.mtrand module.""" +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def numpy_random_mtrand_transform() -> nodes.Module: + return parse( + """ + def beta(a, b, size=None): return uninferable + def binomial(n, p, size=None): return uninferable + def bytes(length): return uninferable + def chisquare(df, size=None): return uninferable + def choice(a, size=None, replace=True, p=None): return uninferable + def dirichlet(alpha, size=None): return uninferable + def exponential(scale=1.0, size=None): return uninferable + def f(dfnum, dfden, size=None): return uninferable + def gamma(shape, scale=1.0, size=None): return uninferable + def geometric(p, size=None): return uninferable + def get_state(): return uninferable + def gumbel(loc=0.0, scale=1.0, size=None): return uninferable + def hypergeometric(ngood, nbad, nsample, size=None): return uninferable + def laplace(loc=0.0, scale=1.0, size=None): return uninferable + def logistic(loc=0.0, scale=1.0, size=None): return uninferable + def lognormal(mean=0.0, sigma=1.0, size=None): return uninferable + def logseries(p, size=None): return uninferable + def multinomial(n, pvals, size=None): return uninferable + def multivariate_normal(mean, cov, size=None): return uninferable + def negative_binomial(n, p, size=None): return uninferable + def noncentral_chisquare(df, nonc, size=None): return uninferable + def noncentral_f(dfnum, dfden, nonc, size=None): return uninferable + def normal(loc=0.0, scale=1.0, size=None): return uninferable + def pareto(a, size=None): return uninferable + def permutation(x): return uninferable + def poisson(lam=1.0, size=None): return uninferable + def power(a, size=None): return uninferable + def rand(*args): return uninferable + def randint(low, high=None, size=None, dtype='l'): + import numpy + return numpy.ndarray((1,1)) + def randn(*args): return uninferable + def random(size=None): return uninferable + def random_integers(low, high=None, size=None): return uninferable + def random_sample(size=None): return uninferable + def rayleigh(scale=1.0, size=None): return uninferable + def seed(seed=None): return uninferable + def set_state(state): return uninferable + def shuffle(x): return uninferable + def standard_cauchy(size=None): return uninferable + def standard_exponential(size=None): return uninferable + def standard_gamma(shape, size=None): return uninferable + def standard_normal(size=None): return uninferable + def standard_t(df, size=None): return uninferable + def triangular(left, mode, right, size=None): return uninferable + def uniform(low=0.0, high=1.0, size=None): return uninferable + def vonmises(mu, kappa, size=None): return uninferable + def wald(mean, scale, size=None): return uninferable + def weibull(a, size=None): return uninferable + def zipf(a, size=None): return uninferable + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender( + manager, "numpy.random.mtrand", numpy_random_mtrand_transform + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_utils.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_utils.py new file mode 100644 index 0000000..1a8f665 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_numpy_utils.py @@ -0,0 +1,94 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Different utilities for the numpy brains.""" + +from __future__ import annotations + +from astroid import nodes +from astroid.builder import extract_node +from astroid.context import InferenceContext + +# Class subscript is available in numpy starting with version 1.20.0 +NUMPY_VERSION_TYPE_HINTS_SUPPORT = ("1", "20", "0") + + +def numpy_supports_type_hints() -> bool: + """Returns True if numpy supports type hints.""" + np_ver = _get_numpy_version() + return np_ver and np_ver > NUMPY_VERSION_TYPE_HINTS_SUPPORT + + +def _get_numpy_version() -> tuple[str, str, str]: + """ + Return the numpy version number if numpy can be imported. + + Otherwise returns ('0', '0', '0') + """ + try: + import numpy # pylint: disable=import-outside-toplevel + + return tuple(numpy.version.version.split(".")) + except (ImportError, AttributeError): + return ("0", "0", "0") + + +def infer_numpy_name( + sources: dict[str, str], node: nodes.Name, context: InferenceContext | None = None +): + extracted_node = extract_node(sources[node.name]) + return extracted_node.infer(context=context) + + +def infer_numpy_attribute( + sources: dict[str, str], + node: nodes.Attribute, + context: InferenceContext | None = None, +): + extracted_node = extract_node(sources[node.attrname]) + return extracted_node.infer(context=context) + + +def _is_a_numpy_module(node: nodes.Name) -> bool: + """ + Returns True if the node is a representation of a numpy module. + + For example in : + import numpy as np + x = np.linspace(1, 2) + The node is a representation of the numpy module. + + :param node: node to test + :return: True if the node is a representation of the numpy module. + """ + module_nickname = node.name + potential_import_target = [ + x for x in node.lookup(module_nickname)[1] if isinstance(x, nodes.Import) + ] + return any( + ("numpy", module_nickname) in target.names or ("numpy", None) in target.names + for target in potential_import_target + ) + + +def member_name_looks_like_numpy_member( + member_names: frozenset[str], node: nodes.Name +) -> bool: + """ + Returns True if the Name node's name matches a member name from numpy + """ + return node.name in member_names and node.root().name.startswith("numpy") + + +def attribute_name_looks_like_numpy_member( + member_names: frozenset[str], node: nodes.Attribute +) -> bool: + """ + Returns True if the Attribute node's name matches a member name from numpy + """ + return ( + node.attrname in member_names + and isinstance(node.expr, nodes.Name) + and _is_a_numpy_module(node.expr) + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_pathlib.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_pathlib.py new file mode 100644 index 0000000..d1d1bda --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_pathlib.py @@ -0,0 +1,55 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from collections.abc import Iterator + +from astroid import bases, context, nodes +from astroid.builder import _extract_single_node +from astroid.const import PY313 +from astroid.exceptions import InferenceError, UseInferenceDefault +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + +PATH_TEMPLATE = """ +from pathlib import Path +Path +""" + + +def _looks_like_parents_subscript(node: nodes.Subscript) -> bool: + if not ( + isinstance(node.value, nodes.Attribute) and node.value.attrname == "parents" + ): + return False + + try: + value = next(node.value.infer()) + except (InferenceError, StopIteration): + return False + parents = "builtins.tuple" if PY313 else "pathlib._PathParents" + return ( + isinstance(value, bases.Instance) + and isinstance(value._proxied, nodes.ClassDef) + and value.qname() == parents + ) + + +def infer_parents_subscript( + subscript_node: nodes.Subscript, ctx: context.InferenceContext | None = None +) -> Iterator[bases.Instance]: + if isinstance(subscript_node.slice, nodes.Const): + path_cls = next(_extract_single_node(PATH_TEMPLATE).infer()) + return iter([path_cls.instantiate_class()]) + + raise UseInferenceDefault + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Subscript, + inference_tip(infer_parents_subscript), + _looks_like_parents_subscript, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_pkg_resources.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_pkg_resources.py new file mode 100644 index 0000000..e2bd669 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_pkg_resources.py @@ -0,0 +1,72 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def pkg_resources_transform() -> nodes.Module: + return parse( + """ +def require(*requirements): + return pkg_resources.working_set.require(*requirements) + +def run_script(requires, script_name): + return pkg_resources.working_set.run_script(requires, script_name) + +def iter_entry_points(group, name=None): + return pkg_resources.working_set.iter_entry_points(group, name) + +def resource_exists(package_or_requirement, resource_name): + return get_provider(package_or_requirement).has_resource(resource_name) + +def resource_isdir(package_or_requirement, resource_name): + return get_provider(package_or_requirement).resource_isdir( + resource_name) + +def resource_filename(package_or_requirement, resource_name): + return get_provider(package_or_requirement).get_resource_filename( + self, resource_name) + +def resource_stream(package_or_requirement, resource_name): + return get_provider(package_or_requirement).get_resource_stream( + self, resource_name) + +def resource_string(package_or_requirement, resource_name): + return get_provider(package_or_requirement).get_resource_string( + self, resource_name) + +def resource_listdir(package_or_requirement, resource_name): + return get_provider(package_or_requirement).resource_listdir( + resource_name) + +def extraction_error(): + pass + +def get_cache_path(archive_name, names=()): + extract_path = self.extraction_path or get_default_cache() + target_path = os.path.join(extract_path, archive_name+'-tmp', *names) + return target_path + +def postprocess(tempname, filename): + pass + +def set_extraction_path(path): + pass + +def cleanup_resources(force=False): + pass + +def get_distribution(dist): + return Distribution(dist) + +_namespace_packages = {} +""" + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "pkg_resources", pkg_resources_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_pytest.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_pytest.py new file mode 100644 index 0000000..6d06267 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_pytest.py @@ -0,0 +1,85 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for pytest.""" +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder +from astroid.manager import AstroidManager + + +def pytest_transform() -> nodes.Module: + return AstroidBuilder(AstroidManager()).string_build( + """ + +try: + import _pytest.mark + import _pytest.recwarn + import _pytest.runner + import _pytest.python + import _pytest.skipping + import _pytest.assertion +except ImportError: + pass +else: + deprecated_call = _pytest.recwarn.deprecated_call + warns = _pytest.recwarn.warns + + exit = _pytest.runner.exit + fail = _pytest.runner.fail + skip = _pytest.runner.skip + importorskip = _pytest.runner.importorskip + + xfail = _pytest.skipping.xfail + mark = _pytest.mark.MarkGenerator() + raises = _pytest.python.raises + + # New in pytest 3.0 + try: + approx = _pytest.python.approx + register_assert_rewrite = _pytest.assertion.register_assert_rewrite + except AttributeError: + pass + + +# Moved in pytest 3.0 + +try: + import _pytest.freeze_support + freeze_includes = _pytest.freeze_support.freeze_includes +except ImportError: + try: + import _pytest.genscript + freeze_includes = _pytest.genscript.freeze_includes + except ImportError: + pass + +try: + import _pytest.debugging + set_trace = _pytest.debugging.pytestPDB().set_trace +except ImportError: + try: + import _pytest.pdb + set_trace = _pytest.pdb.pytestPDB().set_trace + except ImportError: + pass + +try: + import _pytest.fixtures + fixture = _pytest.fixtures.fixture + yield_fixture = _pytest.fixtures.yield_fixture +except ImportError: + try: + import _pytest.python + fixture = _pytest.python.fixture + yield_fixture = _pytest.python.yield_fixture + except ImportError: + pass +""" + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "pytest", pytest_transform) + register_module_extender(manager, "py.test", pytest_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_qt.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_qt.py new file mode 100644 index 0000000..30581e0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_qt.py @@ -0,0 +1,89 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for the PyQT library.""" + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder, parse +from astroid.manager import AstroidManager + + +def _looks_like_signal( + node: nodes.FunctionDef, signal_name: str = "pyqtSignal" +) -> bool: + """Detect a Signal node.""" + klasses = node.instance_attrs.get("__class__", []) + # On PySide2 or PySide6 (since Qt 5.15.2) the Signal class changed locations + if node.qname().partition(".")[0] in {"PySide2", "PySide6"}: + return any(cls.qname() == "Signal" for cls in klasses) # pragma: no cover + if klasses: + try: + return klasses[0].name == signal_name + except AttributeError: # pragma: no cover + # return False if the cls does not have a name attribute + pass + return False + + +def transform_pyqt_signal(node: nodes.FunctionDef) -> None: + module = parse( + """ + _UNSET = object() + + class pyqtSignal(object): + def connect(self, slot, type=None, no_receiver_check=False): + pass + def disconnect(self, slot=_UNSET): + pass + def emit(self, *args): + pass + """ + ) + signal_cls: nodes.ClassDef = module["pyqtSignal"] + node.instance_attrs["emit"] = [signal_cls["emit"]] + node.instance_attrs["disconnect"] = [signal_cls["disconnect"]] + node.instance_attrs["connect"] = [signal_cls["connect"]] + + +def transform_pyside_signal(node: nodes.FunctionDef) -> None: + module = parse( + """ + class NotPySideSignal(object): + def connect(self, receiver, type=None): + pass + def disconnect(self, receiver): + pass + def emit(self, *args): + pass + """ + ) + signal_cls: nodes.ClassDef = module["NotPySideSignal"] + node.instance_attrs["connect"] = [signal_cls["connect"]] + node.instance_attrs["disconnect"] = [signal_cls["disconnect"]] + node.instance_attrs["emit"] = [signal_cls["emit"]] + + +def pyqt4_qtcore_transform(): + return AstroidBuilder(AstroidManager()).string_build( + """ + +def SIGNAL(signal_name): pass + +class QObject(object): + def emit(self, signal): pass +""" + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "PyQt4.QtCore", pyqt4_qtcore_transform) + manager.register_transform( + nodes.FunctionDef, transform_pyqt_signal, _looks_like_signal + ) + manager.register_transform( + nodes.ClassDef, + transform_pyside_signal, + lambda node: node.qname() in {"PySide.QtCore.Signal", "PySide2.QtCore.Signal"}, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_random.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_random.py new file mode 100644 index 0000000..84b4f4e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_random.py @@ -0,0 +1,94 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +import random + +from astroid import nodes +from astroid.context import InferenceContext +from astroid.exceptions import UseInferenceDefault +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager +from astroid.util import safe_infer + +ACCEPTED_ITERABLES_FOR_SAMPLE = (nodes.List, nodes.Set, nodes.Tuple) + + +def _clone_node_with_lineno(node, parent, lineno): + if isinstance(node, nodes.EvaluatedObject): + node = node.original + cls = node.__class__ + other_fields = node._other_fields + _astroid_fields = node._astroid_fields + init_params = { + "lineno": lineno, + "col_offset": node.col_offset, + "parent": parent, + "end_lineno": node.end_lineno, + "end_col_offset": node.end_col_offset, + } + postinit_params = {param: getattr(node, param) for param in _astroid_fields} + if other_fields: + init_params.update({param: getattr(node, param) for param in other_fields}) + new_node = cls(**init_params) + if hasattr(node, "postinit") and _astroid_fields: + new_node.postinit(**postinit_params) + return new_node + + +def infer_random_sample(node, context: InferenceContext | None = None): + if len(node.args) != 2: + raise UseInferenceDefault + + inferred_length = safe_infer(node.args[1], context=context) + if not isinstance(inferred_length, nodes.Const): + raise UseInferenceDefault + if not isinstance(inferred_length.value, int): + raise UseInferenceDefault + + inferred_sequence = safe_infer(node.args[0], context=context) + if not inferred_sequence: + raise UseInferenceDefault + + if not isinstance(inferred_sequence, ACCEPTED_ITERABLES_FOR_SAMPLE): + raise UseInferenceDefault + + if inferred_length.value > len(inferred_sequence.elts): + # In this case, this will raise a ValueError + raise UseInferenceDefault + + try: + elts = random.sample(inferred_sequence.elts, inferred_length.value) + except ValueError as exc: + raise UseInferenceDefault from exc + + new_node = nodes.List( + lineno=node.lineno, + col_offset=node.col_offset, + parent=node.scope(), + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + new_elts = [ + _clone_node_with_lineno(elt, parent=new_node, lineno=new_node.lineno) + for elt in elts + ] + new_node.postinit(new_elts) + return iter((new_node,)) + + +def _looks_like_random_sample(node) -> bool: + func = node.func + if isinstance(func, nodes.Attribute): + return func.attrname == "sample" + if isinstance(func, nodes.Name): + return func.name == "sample" + return False + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Call, inference_tip(infer_random_sample), _looks_like_random_sample + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_re.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_re.py new file mode 100644 index 0000000..6464645 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_re.py @@ -0,0 +1,97 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from astroid import context, nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import _extract_single_node, parse +from astroid.const import PY311_PLUS +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + + +def _re_transform() -> nodes.Module: + # The RegexFlag enum exposes all its entries by updating globals() + # In 3.6-3.10 all flags come from sre_compile + # On 3.11+ all flags come from re._compiler + if PY311_PLUS: + import_compiler = "import re._compiler as _compiler" + else: + import_compiler = "import sre_compile as _compiler" + return parse( + f""" + {import_compiler} + NOFLAG = 0 + ASCII = _compiler.SRE_FLAG_ASCII + IGNORECASE = _compiler.SRE_FLAG_IGNORECASE + LOCALE = _compiler.SRE_FLAG_LOCALE + UNICODE = _compiler.SRE_FLAG_UNICODE + MULTILINE = _compiler.SRE_FLAG_MULTILINE + DOTALL = _compiler.SRE_FLAG_DOTALL + VERBOSE = _compiler.SRE_FLAG_VERBOSE + TEMPLATE = _compiler.SRE_FLAG_TEMPLATE + DEBUG = _compiler.SRE_FLAG_DEBUG + A = ASCII + I = IGNORECASE + L = LOCALE + U = UNICODE + M = MULTILINE + S = DOTALL + X = VERBOSE + T = TEMPLATE + """ + ) + + +CLASS_GETITEM_TEMPLATE = """ +@classmethod +def __class_getitem__(cls, item): + return cls +""" + + +def _looks_like_pattern_or_match(node: nodes.Call) -> bool: + """Check for re.Pattern or re.Match call in stdlib. + + Match these patterns from stdlib/re.py + ```py + Pattern = type(...) + Match = type(...) + ``` + """ + return ( + node.root().name == "re" + and isinstance(node.func, nodes.Name) + and node.func.name == "type" + and isinstance(node.parent, nodes.Assign) + and len(node.parent.targets) == 1 + and isinstance(node.parent.targets[0], nodes.AssignName) + and node.parent.targets[0].name in {"Pattern", "Match"} + ) + + +def infer_pattern_match(node: nodes.Call, ctx: context.InferenceContext | None = None): + """Infer re.Pattern and re.Match as classes. + + For PY39+ add `__class_getitem__`. + """ + class_def = nodes.ClassDef( + name=node.parent.targets[0].name, + lineno=node.lineno, + col_offset=node.col_offset, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + func_to_add = _extract_single_node(CLASS_GETITEM_TEMPLATE) + class_def.locals["__class_getitem__"] = [func_to_add] + return iter([class_def]) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "re", _re_transform) + manager.register_transform( + nodes.Call, inference_tip(infer_pattern_match), _looks_like_pattern_or_match + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_regex.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_regex.py new file mode 100644 index 0000000..70fb946 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_regex.py @@ -0,0 +1,95 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from astroid import context, nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import _extract_single_node, parse +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + + +def _regex_transform() -> nodes.Module: + """The RegexFlag enum exposes all its entries by updating globals(). + + We hard-code the flags for now. + # pylint: disable-next=line-too-long + See https://github.com/mrabarnett/mrab-regex/blob/2022.10.31/regex_3/regex.py#L200 + """ + return parse( + """ + A = ASCII = 0x80 # Assume ASCII locale. + B = BESTMATCH = 0x1000 # Best fuzzy match. + D = DEBUG = 0x200 # Print parsed pattern. + E = ENHANCEMATCH = 0x8000 # Attempt to improve the fit after finding the first + # fuzzy match. + F = FULLCASE = 0x4000 # Unicode full case-folding. + I = IGNORECASE = 0x2 # Ignore case. + L = LOCALE = 0x4 # Assume current 8-bit locale. + M = MULTILINE = 0x8 # Make anchors look for newline. + P = POSIX = 0x10000 # POSIX-style matching (leftmost longest). + R = REVERSE = 0x400 # Search backwards. + S = DOTALL = 0x10 # Make dot match newline. + U = UNICODE = 0x20 # Assume Unicode locale. + V0 = VERSION0 = 0x2000 # Old legacy behaviour. + DEFAULT_VERSION = V0 + V1 = VERSION1 = 0x100 # New enhanced behaviour. + W = WORD = 0x800 # Default Unicode word breaks. + X = VERBOSE = 0x40 # Ignore whitespace and comments. + T = TEMPLATE = 0x1 # Template (present because re module has it). + """ + ) + + +CLASS_GETITEM_TEMPLATE = """ +@classmethod +def __class_getitem__(cls, item): + return cls +""" + + +def _looks_like_pattern_or_match(node: nodes.Call) -> bool: + """Check for regex.Pattern or regex.Match call in stdlib. + + Match these patterns from stdlib/re.py + ```py + Pattern = type(...) + Match = type(...) + ``` + """ + return ( + node.root().name == "regex.regex" + and isinstance(node.func, nodes.Name) + and node.func.name == "type" + and isinstance(node.parent, nodes.Assign) + and len(node.parent.targets) == 1 + and isinstance(node.parent.targets[0], nodes.AssignName) + and node.parent.targets[0].name in {"Pattern", "Match"} + ) + + +def infer_pattern_match(node: nodes.Call, ctx: context.InferenceContext | None = None): + """Infer regex.Pattern and regex.Match as classes. + + For PY39+ add `__class_getitem__`. + """ + class_def = nodes.ClassDef( + name=node.parent.targets[0].name, + lineno=node.lineno, + col_offset=node.col_offset, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + func_to_add = _extract_single_node(CLASS_GETITEM_TEMPLATE) + class_def.locals["__class_getitem__"] = [func_to_add] + return iter([class_def]) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "regex", _regex_transform) + manager.register_transform( + nodes.Call, inference_tip(infer_pattern_match), _looks_like_pattern_or_match + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_responses.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_responses.py new file mode 100644 index 0000000..f2e6069 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_responses.py @@ -0,0 +1,80 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Astroid hooks for responses. + +It might need to be manually updated from the public methods of +:class:`responses.RequestsMock`. + +See: https://github.com/getsentry/responses/blob/master/responses.py +""" +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def responses_funcs() -> nodes.Module: + return parse( + """ + DELETE = "DELETE" + GET = "GET" + HEAD = "HEAD" + OPTIONS = "OPTIONS" + PATCH = "PATCH" + POST = "POST" + PUT = "PUT" + response_callback = None + + def reset(): + return + + def add( + method=None, # method or ``Response`` + url=None, + body="", + adding_headers=None, + *args, + **kwargs + ): + return + + def add_passthru(prefix): + return + + def remove(method_or_response=None, url=None): + return + + def replace(method_or_response=None, url=None, body="", *args, **kwargs): + return + + def add_callback( + method, url, callback, match_querystring=False, content_type="text/plain" + ): + return + + calls = [] + + def __enter__(): + return + + def __exit__(type, value, traceback): + success = type is None + return success + + def activate(func): + return func + + def start(): + return + + def stop(allow_assert=True): + return + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "responses", responses_funcs) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_scipy_signal.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_scipy_signal.py new file mode 100644 index 0000000..a7a2576 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_scipy_signal.py @@ -0,0 +1,90 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for scipy.signal module.""" +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def scipy_signal() -> nodes.Module: + return parse( + """ + # different functions defined in scipy.signals + + def barthann(M, sym=True): + return numpy.ndarray([0]) + + def bartlett(M, sym=True): + return numpy.ndarray([0]) + + def blackman(M, sym=True): + return numpy.ndarray([0]) + + def blackmanharris(M, sym=True): + return numpy.ndarray([0]) + + def bohman(M, sym=True): + return numpy.ndarray([0]) + + def boxcar(M, sym=True): + return numpy.ndarray([0]) + + def chebwin(M, at, sym=True): + return numpy.ndarray([0]) + + def cosine(M, sym=True): + return numpy.ndarray([0]) + + def exponential(M, center=None, tau=1.0, sym=True): + return numpy.ndarray([0]) + + def flattop(M, sym=True): + return numpy.ndarray([0]) + + def gaussian(M, std, sym=True): + return numpy.ndarray([0]) + + def general_gaussian(M, p, sig, sym=True): + return numpy.ndarray([0]) + + def hamming(M, sym=True): + return numpy.ndarray([0]) + + def hann(M, sym=True): + return numpy.ndarray([0]) + + def hanning(M, sym=True): + return numpy.ndarray([0]) + + def impulse2(system, X0=None, T=None, N=None, **kwargs): + return numpy.ndarray([0]), numpy.ndarray([0]) + + def kaiser(M, beta, sym=True): + return numpy.ndarray([0]) + + def nuttall(M, sym=True): + return numpy.ndarray([0]) + + def parzen(M, sym=True): + return numpy.ndarray([0]) + + def slepian(M, width, sym=True): + return numpy.ndarray([0]) + + def step2(system, X0=None, T=None, N=None, **kwargs): + return numpy.ndarray([0]), numpy.ndarray([0]) + + def triang(M, sym=True): + return numpy.ndarray([0]) + + def tukey(M, alpha=0.5, sym=True): + return numpy.ndarray([0]) + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "scipy.signal", scipy_signal) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_signal.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_signal.py new file mode 100644 index 0000000..649e974 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_signal.py @@ -0,0 +1,120 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for the signal library. + +The signal module generates the 'Signals', 'Handlers' and 'Sigmasks' IntEnums +dynamically using the IntEnum._convert() classmethod, which modifies the module +globals. Astroid is unable to handle this type of code. + +Without these hooks, the following are erroneously triggered by Pylint: + * E1101: Module 'signal' has no 'Signals' member (no-member) + * E1101: Module 'signal' has no 'Handlers' member (no-member) + * E1101: Module 'signal' has no 'Sigmasks' member (no-member) + +These enums are defined slightly differently depending on the user's operating +system and platform. These platform differences should follow the current +Python typeshed stdlib `signal.pyi` stub file, available at: + +* https://github.com/python/typeshed/blob/master/stdlib/signal.pyi + +Note that the enum.auto() values defined here for the Signals, Handlers and +Sigmasks IntEnums are just dummy integer values, and do not correspond to the +actual standard signal numbers - which may vary depending on the system. +""" + + +import sys + +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def _signals_enums_transform(): + """Generates the AST for 'Signals', 'Handlers' and 'Sigmasks' IntEnums.""" + return parse(_signals_enum() + _handlers_enum() + _sigmasks_enum()) + + +def _signals_enum() -> str: + """Generates the source code for the Signals int enum.""" + signals_enum = """ + import enum + class Signals(enum.IntEnum): + SIGABRT = enum.auto() + SIGEMT = enum.auto() + SIGFPE = enum.auto() + SIGILL = enum.auto() + SIGINFO = enum.auto() + SIGINT = enum.auto() + SIGSEGV = enum.auto() + SIGTERM = enum.auto() + """ + if sys.platform != "win32": + signals_enum += """ + SIGALRM = enum.auto() + SIGBUS = enum.auto() + SIGCHLD = enum.auto() + SIGCONT = enum.auto() + SIGHUP = enum.auto() + SIGIO = enum.auto() + SIGIOT = enum.auto() + SIGKILL = enum.auto() + SIGPIPE = enum.auto() + SIGPROF = enum.auto() + SIGQUIT = enum.auto() + SIGSTOP = enum.auto() + SIGSYS = enum.auto() + SIGTRAP = enum.auto() + SIGTSTP = enum.auto() + SIGTTIN = enum.auto() + SIGTTOU = enum.auto() + SIGURG = enum.auto() + SIGUSR1 = enum.auto() + SIGUSR2 = enum.auto() + SIGVTALRM = enum.auto() + SIGWINCH = enum.auto() + SIGXCPU = enum.auto() + SIGXFSZ = enum.auto() + """ + if sys.platform == "win32": + signals_enum += """ + SIGBREAK = enum.auto() + """ + if sys.platform not in ("darwin", "win32"): + signals_enum += """ + SIGCLD = enum.auto() + SIGPOLL = enum.auto() + SIGPWR = enum.auto() + SIGRTMAX = enum.auto() + SIGRTMIN = enum.auto() + """ + return signals_enum + + +def _handlers_enum() -> str: + """Generates the source code for the Handlers int enum.""" + return """ + import enum + class Handlers(enum.IntEnum): + SIG_DFL = enum.auto() + SIG_IGN = eunm.auto() + """ + + +def _sigmasks_enum() -> str: + """Generates the source code for the Sigmasks int enum.""" + if sys.platform != "win32": + return """ + import enum + class Sigmasks(enum.IntEnum): + SIG_BLOCK = enum.auto() + SIG_UNBLOCK = enum.auto() + SIG_SETMASK = enum.auto() + """ + return "" + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "signal", _signals_enums_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_six.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_six.py new file mode 100644 index 0000000..1218009 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_six.py @@ -0,0 +1,244 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for six module.""" + +from textwrap import dedent + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder +from astroid.exceptions import ( + AstroidBuildingError, + AttributeInferenceError, + InferenceError, +) +from astroid.manager import AstroidManager + +SIX_ADD_METACLASS = "six.add_metaclass" +SIX_WITH_METACLASS = "six.with_metaclass" + + +def default_predicate(line): + return line.strip() + + +def _indent(text, prefix, predicate=default_predicate) -> str: + """Adds 'prefix' to the beginning of selected lines in 'text'. + + If 'predicate' is provided, 'prefix' will only be added to the lines + where 'predicate(line)' is True. If 'predicate' is not provided, + it will default to adding 'prefix' to all non-empty lines that do not + consist solely of whitespace characters. + """ + + def prefixed_lines(): + for line in text.splitlines(True): + yield prefix + line if predicate(line) else line + + return "".join(prefixed_lines()) + + +_IMPORTS = """ +import _io +cStringIO = _io.StringIO +filter = filter +from itertools import filterfalse +input = input +from sys import intern +map = map +range = range +from importlib import reload +reload_module = lambda module: reload(module) +from functools import reduce +from shlex import quote as shlex_quote +from io import StringIO +from collections import UserDict, UserList, UserString +xrange = range +zip = zip +from itertools import zip_longest +import builtins +import configparser +import copyreg +import _dummy_thread +import http.cookiejar as http_cookiejar +import http.cookies as http_cookies +import html.entities as html_entities +import html.parser as html_parser +import http.client as http_client +import http.server as http_server +BaseHTTPServer = CGIHTTPServer = SimpleHTTPServer = http.server +import pickle as cPickle +import queue +import reprlib +import socketserver +import _thread +import winreg +import xmlrpc.server as xmlrpc_server +import xmlrpc.client as xmlrpc_client +import urllib.robotparser as urllib_robotparser +import email.mime.multipart as email_mime_multipart +import email.mime.nonmultipart as email_mime_nonmultipart +import email.mime.text as email_mime_text +import email.mime.base as email_mime_base +import urllib.parse as urllib_parse +import urllib.error as urllib_error +import tkinter +import tkinter.dialog as tkinter_dialog +import tkinter.filedialog as tkinter_filedialog +import tkinter.scrolledtext as tkinter_scrolledtext +import tkinter.simpledialog as tkinder_simpledialog +import tkinter.tix as tkinter_tix +import tkinter.ttk as tkinter_ttk +import tkinter.constants as tkinter_constants +import tkinter.dnd as tkinter_dnd +import tkinter.colorchooser as tkinter_colorchooser +import tkinter.commondialog as tkinter_commondialog +import tkinter.filedialog as tkinter_tkfiledialog +import tkinter.font as tkinter_font +import tkinter.messagebox as tkinter_messagebox +import urllib +import urllib.request as urllib_request +import urllib.robotparser as urllib_robotparser +import urllib.parse as urllib_parse +import urllib.error as urllib_error +""" + + +def six_moves_transform(): + code = dedent( + """ + class Moves(object): + {} + moves = Moves() + """ + ).format(_indent(_IMPORTS, " ")) + module = AstroidBuilder(AstroidManager()).string_build(code) + module.name = "six.moves" + return module + + +def _six_fail_hook(modname): + """Fix six.moves imports due to the dynamic nature of this + class. + + Construct a pseudo-module which contains all the necessary imports + for six + + :param modname: Name of failed module + :type modname: str + + :return: An astroid module + :rtype: nodes.Module + """ + + attribute_of = modname != "six.moves" and modname.startswith("six.moves") + if modname != "six.moves" and not attribute_of: + raise AstroidBuildingError(modname=modname) + module = AstroidBuilder(AstroidManager()).string_build(_IMPORTS) + module.name = "six.moves" + if attribute_of: + # Facilitate import of submodules in Moves + start_index = len(module.name) + attribute = modname[start_index:].lstrip(".").replace(".", "_") + try: + import_attr = module.getattr(attribute)[0] + except AttributeInferenceError as exc: + raise AstroidBuildingError(modname=modname) from exc + if isinstance(import_attr, nodes.Import): + submodule = AstroidManager().ast_from_module_name(import_attr.names[0][0]) + return submodule + # Let dummy submodule imports pass through + # This will cause an Uninferable result, which is okay + return module + + +def _looks_like_decorated_with_six_add_metaclass(node) -> bool: + if not node.decorators: + return False + + for decorator in node.decorators.nodes: + if not isinstance(decorator, nodes.Call): + continue + if decorator.func.as_string() == SIX_ADD_METACLASS: + return True + return False + + +def transform_six_add_metaclass(node): # pylint: disable=inconsistent-return-statements + """Check if the given class node is decorated with *six.add_metaclass*. + + If so, inject its argument as the metaclass of the underlying class. + """ + if not node.decorators: + return + + for decorator in node.decorators.nodes: + if not isinstance(decorator, nodes.Call): + continue + + try: + func = next(decorator.func.infer()) + except (InferenceError, StopIteration): + continue + if ( + isinstance(func, (nodes.FunctionDef, nodes.ClassDef)) + and func.qname() == SIX_ADD_METACLASS + and decorator.args + ): + metaclass = decorator.args[0] + node._metaclass = metaclass + return node + return + + +def _looks_like_nested_from_six_with_metaclass(node) -> bool: + if len(node.bases) != 1: + return False + base = node.bases[0] + if not isinstance(base, nodes.Call): + return False + try: + if hasattr(base.func, "expr"): + # format when explicit 'six.with_metaclass' is used + mod = base.func.expr.name + func = base.func.attrname + func = f"{mod}.{func}" + else: + # format when 'with_metaclass' is used directly (local import from six) + # check reference module to avoid 'with_metaclass' name clashes + mod = base.parent.parent + import_from = mod.locals["with_metaclass"][0] + func = f"{import_from.modname}.{base.func.name}" + except (AttributeError, KeyError, IndexError): + return False + return func == SIX_WITH_METACLASS + + +def transform_six_with_metaclass(node): + """Check if the given class node is defined with *six.with_metaclass*. + + If so, inject its argument as the metaclass of the underlying class. + """ + call = node.bases[0] + node._metaclass = call.args[0] + return node + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "six", six_moves_transform) + register_module_extender( + manager, "requests.packages.urllib3.packages.six", six_moves_transform + ) + manager.register_failed_import_hook(_six_fail_hook) + manager.register_transform( + nodes.ClassDef, + transform_six_add_metaclass, + _looks_like_decorated_with_six_add_metaclass, + ) + manager.register_transform( + nodes.ClassDef, + transform_six_with_metaclass, + _looks_like_nested_from_six_with_metaclass, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_sqlalchemy.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_sqlalchemy.py new file mode 100644 index 0000000..8410d9e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_sqlalchemy.py @@ -0,0 +1,41 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def _session_transform() -> nodes.Module: + return parse( + """ + from sqlalchemy.orm.session import Session + + class sessionmaker: + def __init__( + self, + bind=None, + class_=Session, + autoflush=True, + autocommit=False, + expire_on_commit=True, + info=None, + **kw + ): + return + + def __call__(self, **local_kw): + return Session() + + def configure(self, **new_kw): + return + + return Session() + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "sqlalchemy.orm.session", _session_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_ssl.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_ssl.py new file mode 100644 index 0000000..6b4fc5c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_ssl.py @@ -0,0 +1,163 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for the ssl library.""" + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.const import PY312_PLUS +from astroid.manager import AstroidManager + + +def _verifyflags_enum() -> str: + enum = """ + class VerifyFlags(_IntFlag): + VERIFY_DEFAULT = 0 + VERIFY_CRL_CHECK_LEAF = 1 + VERIFY_CRL_CHECK_CHAIN = 2 + VERIFY_X509_STRICT = 3 + VERIFY_X509_TRUSTED_FIRST = 4 + VERIFY_ALLOW_PROXY_CERTS = 5 + VERIFY_X509_PARTIAL_CHAIN = 6 + """ + return enum + + +def _options_enum() -> str: + enum = """ + class Options(_IntFlag): + OP_ALL = 1 + OP_NO_SSLv2 = 2 + OP_NO_SSLv3 = 3 + OP_NO_TLSv1 = 4 + OP_NO_TLSv1_1 = 5 + OP_NO_TLSv1_2 = 6 + OP_NO_TLSv1_3 = 7 + OP_CIPHER_SERVER_PREFERENCE = 8 + OP_SINGLE_DH_USE = 9 + OP_SINGLE_ECDH_USE = 10 + OP_NO_COMPRESSION = 11 + OP_NO_TICKET = 12 + OP_NO_RENEGOTIATION = 13 + OP_ENABLE_MIDDLEBOX_COMPAT = 14 + """ + if PY312_PLUS: + enum += "OP_LEGACY_SERVER_CONNECT = 15" + return enum + + +def ssl_transform() -> nodes.Module: + return parse( + f""" + # Import necessary for conversion of objects defined in C into enums + from enum import IntEnum as _IntEnum, IntFlag as _IntFlag + + from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION + from _ssl import _SSLContext, MemoryBIO + from _ssl import ( + SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError, + SSLSyscallError, SSLEOFError, + ) + from _ssl import CERT_NONE, CERT_OPTIONAL, CERT_REQUIRED + from _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj + from _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes + try: + from _ssl import RAND_egd + except ImportError: + # LibreSSL does not provide RAND_egd + pass + from _ssl import (OP_ALL, OP_CIPHER_SERVER_PREFERENCE, + OP_NO_COMPRESSION, OP_NO_SSLv2, OP_NO_SSLv3, + OP_NO_TLSv1, OP_NO_TLSv1_1, OP_NO_TLSv1_2, + OP_SINGLE_DH_USE, OP_SINGLE_ECDH_USE) + + {"from _ssl import OP_LEGACY_SERVER_CONNECT" if PY312_PLUS else ""} + + from _ssl import (ALERT_DESCRIPTION_ACCESS_DENIED, ALERT_DESCRIPTION_BAD_CERTIFICATE, + ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE, + ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE, + ALERT_DESCRIPTION_BAD_RECORD_MAC, + ALERT_DESCRIPTION_CERTIFICATE_EXPIRED, + ALERT_DESCRIPTION_CERTIFICATE_REVOKED, + ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN, + ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE, + ALERT_DESCRIPTION_CLOSE_NOTIFY, ALERT_DESCRIPTION_DECODE_ERROR, + ALERT_DESCRIPTION_DECOMPRESSION_FAILURE, + ALERT_DESCRIPTION_DECRYPT_ERROR, + ALERT_DESCRIPTION_HANDSHAKE_FAILURE, + ALERT_DESCRIPTION_ILLEGAL_PARAMETER, + ALERT_DESCRIPTION_INSUFFICIENT_SECURITY, + ALERT_DESCRIPTION_INTERNAL_ERROR, + ALERT_DESCRIPTION_NO_RENEGOTIATION, + ALERT_DESCRIPTION_PROTOCOL_VERSION, + ALERT_DESCRIPTION_RECORD_OVERFLOW, + ALERT_DESCRIPTION_UNEXPECTED_MESSAGE, + ALERT_DESCRIPTION_UNKNOWN_CA, + ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY, + ALERT_DESCRIPTION_UNRECOGNIZED_NAME, + ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE, + ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION, + ALERT_DESCRIPTION_USER_CANCELLED) + from _ssl import (SSL_ERROR_EOF, SSL_ERROR_INVALID_ERROR_CODE, SSL_ERROR_SSL, + SSL_ERROR_SYSCALL, SSL_ERROR_WANT_CONNECT, SSL_ERROR_WANT_READ, + SSL_ERROR_WANT_WRITE, SSL_ERROR_WANT_X509_LOOKUP, SSL_ERROR_ZERO_RETURN) + from _ssl import VERIFY_CRL_CHECK_CHAIN, VERIFY_CRL_CHECK_LEAF, VERIFY_DEFAULT, VERIFY_X509_STRICT + from _ssl import HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN + from _ssl import _OPENSSL_API_VERSION + from _ssl import PROTOCOL_SSLv23, PROTOCOL_TLSv1, PROTOCOL_TLSv1_1, PROTOCOL_TLSv1_2 + from _ssl import PROTOCOL_TLS, PROTOCOL_TLS_CLIENT, PROTOCOL_TLS_SERVER + + class AlertDescription(_IntEnum): + ALERT_DESCRIPTION_ACCESS_DENIED = 0 + ALERT_DESCRIPTION_BAD_CERTIFICATE = 1 + ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE = 2 + ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE = 3 + ALERT_DESCRIPTION_BAD_RECORD_MAC = 4 + ALERT_DESCRIPTION_CERTIFICATE_EXPIRED = 5 + ALERT_DESCRIPTION_CERTIFICATE_REVOKED = 6 + ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN = 7 + ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE = 8 + ALERT_DESCRIPTION_CLOSE_NOTIFY = 9 + ALERT_DESCRIPTION_DECODE_ERROR = 10 + ALERT_DESCRIPTION_DECOMPRESSION_FAILURE = 11 + ALERT_DESCRIPTION_DECRYPT_ERROR = 12 + ALERT_DESCRIPTION_HANDSHAKE_FAILURE = 13 + ALERT_DESCRIPTION_ILLEGAL_PARAMETER = 14 + ALERT_DESCRIPTION_INSUFFICIENT_SECURITY = 15 + ALERT_DESCRIPTION_INTERNAL_ERROR = 16 + ALERT_DESCRIPTION_NO_RENEGOTIATION = 17 + ALERT_DESCRIPTION_PROTOCOL_VERSION = 18 + ALERT_DESCRIPTION_RECORD_OVERFLOW = 19 + ALERT_DESCRIPTION_UNEXPECTED_MESSAGE = 20 + ALERT_DESCRIPTION_UNKNOWN_CA = 21 + ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY = 22 + ALERT_DESCRIPTION_UNRECOGNIZED_NAME = 23 + ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE = 24 + ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION = 25 + ALERT_DESCRIPTION_USER_CANCELLED = 26 + + class SSLErrorNumber(_IntEnum): + SSL_ERROR_EOF = 0 + SSL_ERROR_INVALID_ERROR_CODE = 1 + SSL_ERROR_SSL = 2 + SSL_ERROR_SYSCALL = 3 + SSL_ERROR_WANT_CONNECT = 4 + SSL_ERROR_WANT_READ = 5 + SSL_ERROR_WANT_WRITE = 6 + SSL_ERROR_WANT_X509_LOOKUP = 7 + SSL_ERROR_ZERO_RETURN = 8 + + class VerifyMode(_IntEnum): + CERT_NONE = 0 + CERT_OPTIONAL = 1 + CERT_REQUIRED = 2 + """ + + _verifyflags_enum() + + _options_enum() + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "ssl", ssl_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_statistics.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_statistics.py new file mode 100644 index 0000000..5420ef9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_statistics.py @@ -0,0 +1,73 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for understanding statistics library module. + +Provides inference improvements for statistics module functions that have +complex runtime behavior difficult to analyze statically. +""" + +from __future__ import annotations + +from collections.abc import Iterator +from typing import TYPE_CHECKING + +from astroid import nodes +from astroid.context import InferenceContext +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager +from astroid.util import Uninferable + +if TYPE_CHECKING: + from astroid.typing import InferenceResult + + +def _looks_like_statistics_quantiles(node: nodes.Call) -> bool: + """Check if this is a call to statistics.quantiles.""" + match node.func: + case nodes.Attribute(expr=nodes.Name(name="statistics"), attrname="quantiles"): + # Case 1: statistics.quantiles(...) + return True + case nodes.Name(name="quantiles"): + # Case 2: from statistics import quantiles; quantiles(...) + # Check if quantiles was imported from statistics + try: + frame = node.frame() + if "quantiles" in frame.locals: + # Look for import from statistics + for stmt in frame.body: + if ( + isinstance(stmt, nodes.ImportFrom) + and stmt.modname == "statistics" + and any(name[0] == "quantiles" for name in stmt.names or []) + ): + return True + except (AttributeError, TypeError): + # If we can't determine the import context, be conservative + pass + return False + + +def infer_statistics_quantiles( + node: nodes.Call, context: InferenceContext | None = None +) -> Iterator[InferenceResult]: + """Infer the result of statistics.quantiles() calls. + + Returns Uninferable because quantiles() has complex runtime behavior + that cannot be statically analyzed, preventing false positives in + pylint's unbalanced-tuple-unpacking checker. + + statistics.quantiles() returns a list with (n-1) elements, but static + analysis sees only the empty list initializations in the function body. + """ + yield Uninferable + + +def register(manager: AstroidManager) -> None: + """Register statistics-specific inference improvements.""" + manager.register_transform( + nodes.Call, + inference_tip(infer_statistics_quantiles), + _looks_like_statistics_quantiles, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_subprocess.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_subprocess.py new file mode 100644 index 0000000..3a99802 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_subprocess.py @@ -0,0 +1,100 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +import textwrap + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.const import PY311_PLUS +from astroid.manager import AstroidManager + + +def _subprocess_transform() -> nodes.Module: + communicate = (bytes("string", "ascii"), bytes("string", "ascii")) + communicate_signature = "def communicate(self, input=None, timeout=None)" + args = """\ + self, args, bufsize=-1, executable=None, stdin=None, stdout=None, stderr=None, + preexec_fn=None, close_fds=True, shell=False, cwd=None, env=None, + universal_newlines=None, startupinfo=None, creationflags=0, restore_signals=True, + start_new_session=False, pass_fds=(), *, encoding=None, errors=None, text=None, + user=None, group=None, extra_groups=None, umask=-1, pipesize=-1""" + if PY311_PLUS: + args += ", process_group=None" + + init = f""" + def __init__({args}): + pass""" + wait_signature = "def wait(self, timeout=None)" + ctx_manager = """ + def __enter__(self): return self + def __exit__(self, *args): pass + """ + py3_args = "args = []" + + check_output_signature = """ + check_output( + args, *, + stdin=None, + stderr=None, + shell=False, + cwd=None, + encoding=None, + errors=None, + universal_newlines=False, + timeout=None, + env=None, + text=None, + restore_signals=True, + preexec_fn=None, + pass_fds=(), + input=None, + bufsize=0, + executable=None, + close_fds=False, + startupinfo=None, + creationflags=0, + start_new_session=False + ): + """.strip() + + code = textwrap.dedent( + f""" + def {check_output_signature} + if universal_newlines: + return "" + return b"" + + class Popen(object): + returncode = pid = 0 + stdin = stdout = stderr = file() + {py3_args} + + {communicate_signature}: + return {communicate!r} + {wait_signature}: + return self.returncode + def poll(self): + return self.returncode + def send_signal(self, signal): + pass + def terminate(self): + pass + def kill(self): + pass + {ctx_manager} + @classmethod + def __class_getitem__(cls, item): + pass + """ + ) + + init_lines = textwrap.dedent(init).splitlines() + indented_init = "\n".join(" " * 4 + line for line in init_lines) + code += indented_init + return parse(code) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "subprocess", _subprocess_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_threading.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_threading.py new file mode 100644 index 0000000..95af2db --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_threading.py @@ -0,0 +1,33 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def _thread_transform() -> nodes.Module: + return parse( + """ + class lock(object): + def acquire(self, blocking=True, timeout=-1): + return False + def release(self): + pass + def __enter__(self): + return True + def __exit__(self, *args): + pass + def locked(self): + return False + + def Lock(*args, **kwargs): + return lock() + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "threading", _thread_transform) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_type.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_type.py new file mode 100644 index 0000000..8391e59 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_type.py @@ -0,0 +1,70 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Astroid hooks for type support. + +Starting from python3.9, type object behaves as it had __class_getitem__ method. +However it was not possible to simply add this method inside type's body, otherwise +all types would also have this method. In this case it would have been possible +to write str[int]. +Guido Van Rossum proposed a hack to handle this in the interpreter: +https://github.com/python/cpython/blob/67e394562d67cbcd0ac8114e5439494e7645b8f5/Objects/abstract.c#L181-L184 + +This brain follows the same logic. It is no wise to add permanently the __class_getitem__ method +to the type object. Instead we choose to add it only in the case of a subscript node +which inside name node is type. +Doing this type[int] is allowed whereas str[int] is not. + +Thanks to Lukasz Langa for fruitful discussion. +""" + +from __future__ import annotations + +from astroid import nodes +from astroid.builder import extract_node +from astroid.context import InferenceContext +from astroid.exceptions import UseInferenceDefault +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + + +def _looks_like_type_subscript(node: nodes.Name) -> bool: + """ + Try to figure out if a Name node is used inside a type related subscript. + + :param node: node to check + :type node: astroid.nodes.NodeNG + :return: whether the node is a Name node inside a type related subscript + """ + if isinstance(node.parent, nodes.Subscript): + return node.name == "type" + return False + + +def infer_type_sub(node, context: InferenceContext | None = None): + """ + Infer a type[...] subscript. + + :param node: node to infer + :type node: astroid.nodes.NodeNG + :return: the inferred node + :rtype: nodes.NodeNG + """ + node_scope, _ = node.scope().lookup("type") + if not (isinstance(node_scope, nodes.Module) and node_scope.qname() == "builtins"): + raise UseInferenceDefault() + class_src = """ + class type: + def __class_getitem__(cls, key): + return cls + """ + node = extract_node(class_src) + return node.infer(context=context) + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Name, inference_tip(infer_type_sub), _looks_like_type_subscript + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_typing.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_typing.py new file mode 100644 index 0000000..217a803 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_typing.py @@ -0,0 +1,504 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for typing.py support.""" + +from __future__ import annotations + +import textwrap +import typing +from collections.abc import Iterator +from functools import partial +from typing import Final + +from astroid import context, nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import AstroidBuilder, _extract_single_node, extract_node +from astroid.const import PY312_PLUS, PY313_PLUS, PY314_PLUS +from astroid.exceptions import ( + AstroidSyntaxError, + AttributeInferenceError, + InferenceError, + UseInferenceDefault, +) +from astroid.inference_tip import inference_tip +from astroid.manager import AstroidManager + +TYPING_TYPEVARS = {"TypeVar", "NewType"} +TYPING_TYPEVARS_QUALIFIED: Final = { + "typing.TypeVar", + "typing.NewType", + "typing_extensions.TypeVar", +} +TYPING_TYPEDDICT_QUALIFIED: Final = {"typing.TypedDict", "typing_extensions.TypedDict"} +TYPING_TYPE_TEMPLATE = """ +class Meta(type): + def __getitem__(self, item): + return self + + @property + def __args__(self): + return () + +class {0}(metaclass=Meta): + pass +""" +TYPING_MEMBERS = set(getattr(typing, "__all__", [])) + +TYPING_ALIAS = frozenset( + ( + "typing.Hashable", + "typing.Awaitable", + "typing.Coroutine", + "typing.AsyncIterable", + "typing.AsyncIterator", + "typing.Iterable", + "typing.Iterator", + "typing.Reversible", + "typing.Sized", + "typing.Container", + "typing.Collection", + "typing.Callable", + "typing.AbstractSet", + "typing.MutableSet", + "typing.Mapping", + "typing.MutableMapping", + "typing.Sequence", + "typing.MutableSequence", + "typing.ByteString", # scheduled for removal in 3.17 + "typing.Tuple", + "typing.List", + "typing.Deque", + "typing.Set", + "typing.FrozenSet", + "typing.MappingView", + "typing.KeysView", + "typing.ItemsView", + "typing.ValuesView", + "typing.ContextManager", + "typing.AsyncContextManager", + "typing.Dict", + "typing.DefaultDict", + "typing.OrderedDict", + "typing.Counter", + "typing.ChainMap", + "typing.Generator", + "typing.AsyncGenerator", + "typing.Type", + "typing.Pattern", + "typing.Match", + ) +) + +CLASS_GETITEM_TEMPLATE = """ +@classmethod +def __class_getitem__(cls, item): + return cls +""" + + +def looks_like_typing_typevar_or_newtype(node) -> bool: + func = node.func + if isinstance(func, nodes.Attribute): + return func.attrname in TYPING_TYPEVARS + if isinstance(func, nodes.Name): + return func.name in TYPING_TYPEVARS + return False + + +def infer_typing_typevar_or_newtype( + node: nodes.Call, context_itton: context.InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """Infer a typing.TypeVar(...) or typing.NewType(...) call.""" + try: + func = next(node.func.infer(context=context_itton)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + + if func.qname() not in TYPING_TYPEVARS_QUALIFIED: + raise UseInferenceDefault + if not node.args: + raise UseInferenceDefault + # Cannot infer from a dynamic class name (f-string) + if isinstance(node.args[0], nodes.JoinedStr): + raise UseInferenceDefault + + typename = node.args[0].as_string().strip("'") + try: + node = extract_node(TYPING_TYPE_TEMPLATE.format(typename)) + except AstroidSyntaxError as exc: + raise InferenceError from exc + return node.infer(context=context_itton) + + +def _looks_like_typing_subscript(node) -> bool: + """Try to figure out if a Subscript node *might* be a typing-related subscript.""" + if isinstance(node, nodes.Name): + return node.name in TYPING_MEMBERS + if isinstance(node, nodes.Attribute): + return node.attrname in TYPING_MEMBERS + if isinstance(node, nodes.Subscript): + return _looks_like_typing_subscript(node.value) + return False + + +def infer_typing_attr( + node: nodes.Subscript, ctx: context.InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """Infer a typing.X[...] subscript.""" + try: + value = next(node.value.infer()) # type: ignore[union-attr] # value shouldn't be None for Subscript. + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + + if not value.qname().startswith("typing.") or value.qname() in TYPING_ALIAS: + # If typing subscript belongs to an alias handle it separately. + raise UseInferenceDefault + + if ( + PY313_PLUS + and isinstance(value, nodes.FunctionDef) + and value.qname() == "typing.Annotated" + ): + # typing.Annotated is a FunctionDef on 3.13+ + node._explicit_inference = lambda node, context: iter([value]) + return iter([value]) + + if isinstance(value, nodes.ClassDef) and value.qname() in { + "typing.Generic", + "typing.Annotated", + "typing_extensions.Annotated", + }: + # typing.Generic and typing.Annotated (PY39) are subscriptable + # through __class_getitem__. Since astroid can't easily + # infer the native methods, replace them for an easy inference tip + func_to_add = _extract_single_node(CLASS_GETITEM_TEMPLATE) + value.locals["__class_getitem__"] = [func_to_add] + if ( + isinstance(node.parent, nodes.ClassDef) + and node in node.parent.bases + and getattr(node.parent, "__cache", None) + ): + # node.parent.slots is evaluated and cached before the inference tip + # is first applied. Remove the last result to allow a recalculation of slots + cache = node.parent.__cache # type: ignore[attr-defined] # Unrecognized getattr + if cache.get(node.parent.slots) is not None: + del cache[node.parent.slots] + # Avoid re-instantiating this class every time it's seen + node._explicit_inference = lambda node, context: iter([value]) + return iter([value]) + + node = extract_node(TYPING_TYPE_TEMPLATE.format(value.qname().split(".")[-1])) + return node.infer(context=ctx) + + +def _looks_like_generic_class_pep695(node: nodes.ClassDef) -> bool: + """Check if class is using type parameter. Python 3.12+.""" + return len(node.type_params) > 0 + + +def infer_typing_generic_class_pep695( + node: nodes.ClassDef, ctx: context.InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """Add __class_getitem__ for generic classes. Python 3.12+.""" + func_to_add = _extract_single_node(CLASS_GETITEM_TEMPLATE) + node.locals["__class_getitem__"] = [func_to_add] + return iter([node]) + + +def _looks_like_typedDict( # pylint: disable=invalid-name + node: nodes.FunctionDef | nodes.ClassDef, +) -> bool: + """Check if node is TypedDict FunctionDef.""" + return node.qname() in TYPING_TYPEDDICT_QUALIFIED + + +def infer_typedDict( # pylint: disable=invalid-name + node: nodes.FunctionDef, ctx: context.InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """Replace TypedDict FunctionDef with ClassDef.""" + class_def = nodes.ClassDef( + name="TypedDict", + lineno=node.lineno, + col_offset=node.col_offset, + parent=node.parent, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + ) + class_def.postinit(bases=[extract_node("dict")], body=[], decorators=None) + func_to_add = _extract_single_node("dict") + class_def.locals["__call__"] = [func_to_add] + return iter([class_def]) + + +def _looks_like_typing_alias(node: nodes.Call) -> bool: + """ + Returns True if the node corresponds to a call to _alias function. + + For example : + + MutableSet = _alias(collections.abc.MutableSet, T) + + :param node: call node + """ + return ( + isinstance(node.func, nodes.Name) + # TODO: remove _DeprecatedGenericAlias when Py3.14 min + and node.func.name in {"_alias", "_DeprecatedGenericAlias"} + and len(node.args) == 2 + and ( + # _alias function works also for builtins object such as list and dict + isinstance(node.args[0], (nodes.Attribute, nodes.Name)) + ) + ) + + +def _forbid_class_getitem_access(node: nodes.ClassDef) -> None: + """Disable the access to __class_getitem__ method for the node in parameters.""" + + def full_raiser(origin_func, attr, *args, **kwargs): + """ + Raises an AttributeInferenceError in case of access to __class_getitem__ method. + Otherwise, just call origin_func. + """ + if attr == "__class_getitem__": + raise AttributeInferenceError("__class_getitem__ access is not allowed") + return origin_func(attr, *args, **kwargs) + + try: + node.getattr("__class_getitem__") + # If we are here, then we are sure to modify an object that does have + # __class_getitem__ method (which origin is the protocol defined in + # collections module) whereas the typing module considers it should not. + # We do not want __class_getitem__ to be found in the classdef + partial_raiser = partial(full_raiser, node.getattr) + node.getattr = partial_raiser + except AttributeInferenceError: + pass + + +def infer_typing_alias( + node: nodes.Call, ctx: context.InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """ + Infers the call to _alias function + Insert ClassDef, with same name as aliased class, + in mro to simulate _GenericAlias. + + :param node: call node + :param context: inference context + + # TODO: evaluate if still necessary when Py3.12 is minimum + """ + if not ( + isinstance(node.parent, nodes.Assign) + and len(node.parent.targets) == 1 + and isinstance(node.parent.targets[0], nodes.AssignName) + ): + raise UseInferenceDefault + try: + res = next(node.args[0].infer(context=ctx)) + except StopIteration as e: + raise InferenceError(node=node.args[0], context=ctx) from e + + assign_name = node.parent.targets[0] + + class_def = nodes.ClassDef( + name=assign_name.name, + lineno=assign_name.lineno, + col_offset=assign_name.col_offset, + parent=node.parent, + end_lineno=assign_name.end_lineno, + end_col_offset=assign_name.end_col_offset, + ) + if isinstance(res, nodes.ClassDef): + # Only add `res` as base if it's a `ClassDef` + # This isn't the case for `typing.Pattern` and `typing.Match` + class_def.postinit(bases=[res], body=[], decorators=None) + + maybe_type_var = node.args[1] + if isinstance(maybe_type_var, nodes.Const) and maybe_type_var.value > 0: + # If typing alias is subscriptable, add `__class_getitem__` to ClassDef + func_to_add = _extract_single_node(CLASS_GETITEM_TEMPLATE) + class_def.locals["__class_getitem__"] = [func_to_add] + else: + # If not, make sure that `__class_getitem__` access is forbidden. + # This is an issue in cases where the aliased class implements it, + # but the typing alias isn't subscriptable. E.g., `typing.ByteString` for PY39+ + _forbid_class_getitem_access(class_def) + + # Avoid re-instantiating this class every time it's seen + node._explicit_inference = lambda node, context: iter([class_def]) + return iter([class_def]) + + +def _looks_like_special_alias(node: nodes.Call) -> bool: + """Return True if call is for Tuple or Callable alias. + + In PY37 and PY38 the call is to '_VariadicGenericAlias' with 'tuple' as + first argument. In PY39+ it is replaced by a call to '_TupleType'. + + PY37: Tuple = _VariadicGenericAlias(tuple, (), inst=False, special=True) + PY39: Tuple = _TupleType(tuple, -1, inst=False, name='Tuple') + + PY37: Callable = _VariadicGenericAlias(collections.abc.Callable, (), special=True) + PY39: Callable = _CallableType(collections.abc.Callable, 2) + """ + return ( + isinstance(node.func, nodes.Name) + and node.args + and ( + ( + node.func.name == "_TupleType" + and isinstance(node.args[0], nodes.Name) + and node.args[0].name == "tuple" + ) + or ( + node.func.name == "_CallableType" + and isinstance(node.args[0], nodes.Attribute) + and node.args[0].as_string() == "collections.abc.Callable" + ) + ) + ) + + +def infer_special_alias( + node: nodes.Call, ctx: context.InferenceContext | None = None +) -> Iterator[nodes.ClassDef]: + """Infer call to tuple alias as new subscriptable class typing.Tuple.""" + if not ( + isinstance(node.parent, nodes.Assign) + and len(node.parent.targets) == 1 + and isinstance(node.parent.targets[0], nodes.AssignName) + ): + raise UseInferenceDefault + try: + res = next(node.args[0].infer(context=ctx)) + except StopIteration as e: + raise InferenceError(node=node.args[0], context=ctx) from e + + assign_name = node.parent.targets[0] + class_def = nodes.ClassDef( + name=assign_name.name, + parent=node.parent, + lineno=assign_name.lineno, + col_offset=assign_name.col_offset, + end_lineno=assign_name.end_lineno, + end_col_offset=assign_name.end_col_offset, + ) + class_def.postinit(bases=[res], body=[], decorators=None) + func_to_add = _extract_single_node(CLASS_GETITEM_TEMPLATE) + class_def.locals["__class_getitem__"] = [func_to_add] + # Avoid re-instantiating this class every time it's seen + node._explicit_inference = lambda node, context: iter([class_def]) + return iter([class_def]) + + +def _looks_like_typing_cast(node: nodes.Call) -> bool: + return (isinstance(node.func, nodes.Name) and node.func.name == "cast") or ( + isinstance(node.func, nodes.Attribute) and node.func.attrname == "cast" + ) + + +def infer_typing_cast( + node: nodes.Call, ctx: context.InferenceContext | None = None +) -> Iterator[nodes.NodeNG]: + """Infer call to cast() returning same type as casted-from var.""" + if not isinstance(node.func, (nodes.Name, nodes.Attribute)): + raise UseInferenceDefault + + try: + func = next(node.func.infer(context=ctx)) + except (InferenceError, StopIteration) as exc: + raise UseInferenceDefault from exc + if not ( + isinstance(func, nodes.FunctionDef) + and func.qname() == "typing.cast" + and len(node.args) == 2 + ): + raise UseInferenceDefault + + return node.args[1].infer(context=ctx) + + +def _typing_transform(): + code = textwrap.dedent( + """ + class Generic: + @classmethod + def __class_getitem__(cls, item): return cls + class ParamSpec: + @property + def args(self): + return ParamSpecArgs(self) + @property + def kwargs(self): + return ParamSpecKwargs(self) + class ParamSpecArgs: ... + class ParamSpecKwargs: ... + class TypeAlias: ... + class Type: + @classmethod + def __class_getitem__(cls, item): return cls + class TypeVar: + @classmethod + def __class_getitem__(cls, item): return cls + class TypeVarTuple: ... + class ContextManager: + @classmethod + def __class_getitem__(cls, item): return cls + class AsyncContextManager: + @classmethod + def __class_getitem__(cls, item): return cls + class Pattern: + @classmethod + def __class_getitem__(cls, item): return cls + class Match: + @classmethod + def __class_getitem__(cls, item): return cls + """ + ) + if PY314_PLUS: + code += textwrap.dedent( + """ + from annotationlib import ForwardRef + class Union: + @classmethod + def __class_getitem__(cls, item): return cls + """ + ) + return AstroidBuilder(AstroidManager()).string_build(code) + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.Call, + inference_tip(infer_typing_typevar_or_newtype), + looks_like_typing_typevar_or_newtype, + ) + manager.register_transform( + nodes.Subscript, inference_tip(infer_typing_attr), _looks_like_typing_subscript + ) + manager.register_transform( + nodes.Call, inference_tip(infer_typing_cast), _looks_like_typing_cast + ) + + manager.register_transform( + nodes.FunctionDef, inference_tip(infer_typedDict), _looks_like_typedDict + ) + + manager.register_transform( + nodes.Call, inference_tip(infer_typing_alias), _looks_like_typing_alias + ) + manager.register_transform( + nodes.Call, inference_tip(infer_special_alias), _looks_like_special_alias + ) + + if PY312_PLUS: + register_module_extender(manager, "typing", _typing_transform) + manager.register_transform( + nodes.ClassDef, + inference_tip(infer_typing_generic_class_pep695), + _looks_like_generic_class_pep695, + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_unittest.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_unittest.py new file mode 100644 index 0000000..4103ce0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_unittest.py @@ -0,0 +1,31 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for unittest module.""" +from astroid import nodes +from astroid.brain.helpers import register_module_extender +from astroid.builder import parse +from astroid.manager import AstroidManager + + +def IsolatedAsyncioTestCaseImport() -> nodes.Module: + """ + In the unittest package, the IsolatedAsyncioTestCase class is imported lazily. + + I.E. only when the ``__getattr__`` method of the unittest module is called with + 'IsolatedAsyncioTestCase' as argument. Thus the IsolatedAsyncioTestCase + is not imported statically (during import time). + This function mocks a classical static import of the IsolatedAsyncioTestCase. + + (see https://github.com/pylint-dev/pylint/issues/4060) + """ + return parse( + """ + from .async_case import IsolatedAsyncioTestCase + """ + ) + + +def register(manager: AstroidManager) -> None: + register_module_extender(manager, "unittest", IsolatedAsyncioTestCaseImport) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/brain_uuid.py b/.venv/lib/python3.12/site-packages/astroid/brain/brain_uuid.py new file mode 100644 index 0000000..4405a62 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/brain_uuid.py @@ -0,0 +1,18 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Astroid hooks for the UUID module.""" +from astroid import nodes +from astroid.manager import AstroidManager + + +def _patch_uuid_class(node: nodes.ClassDef) -> None: + # The .int member is patched using __dict__ + node.locals["int"] = [nodes.Const(0, parent=node)] + + +def register(manager: AstroidManager) -> None: + manager.register_transform( + nodes.ClassDef, _patch_uuid_class, lambda node: node.qname() == "uuid.UUID" + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/brain/helpers.py b/.venv/lib/python3.12/site-packages/astroid/brain/helpers.py new file mode 100644 index 0000000..0064a1f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/brain/helpers.py @@ -0,0 +1,146 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from collections.abc import Callable +from typing import TYPE_CHECKING + +from astroid.exceptions import InferenceError +from astroid.manager import AstroidManager +from astroid.nodes.scoped_nodes import Module + +if TYPE_CHECKING: + from astroid.nodes.node_ng import NodeNG + + +def register_module_extender( + manager: AstroidManager, module_name: str, get_extension_mod: Callable[[], Module] +) -> None: + def transform(node: Module) -> None: + extension_module = get_extension_mod() + for name, objs in extension_module.locals.items(): + node.locals[name] = objs + for obj in objs: + if obj.parent is extension_module: + obj.parent = node + + manager.register_transform(Module, transform, lambda n: n.name == module_name) + + +# pylint: disable-next=too-many-locals +def register_all_brains(manager: AstroidManager) -> None: + from astroid.brain import ( # pylint: disable=import-outside-toplevel + brain_argparse, + brain_attrs, + brain_boto3, + brain_builtin_inference, + brain_collections, + brain_crypt, + brain_ctypes, + brain_curses, + brain_dataclasses, + brain_datetime, + brain_dateutil, + brain_functools, + brain_gi, + brain_hashlib, + brain_http, + brain_hypothesis, + brain_io, + brain_mechanize, + brain_multiprocessing, + brain_namedtuple_enum, + brain_numpy_core_einsumfunc, + brain_numpy_core_fromnumeric, + brain_numpy_core_function_base, + brain_numpy_core_multiarray, + brain_numpy_core_numeric, + brain_numpy_core_numerictypes, + brain_numpy_core_umath, + brain_numpy_ma, + brain_numpy_ndarray, + brain_numpy_random_mtrand, + brain_pathlib, + brain_pkg_resources, + brain_pytest, + brain_qt, + brain_random, + brain_re, + brain_regex, + brain_responses, + brain_scipy_signal, + brain_signal, + brain_six, + brain_sqlalchemy, + brain_ssl, + brain_statistics, + brain_subprocess, + brain_threading, + brain_type, + brain_typing, + brain_unittest, + brain_uuid, + ) + + brain_argparse.register(manager) + brain_attrs.register(manager) + brain_boto3.register(manager) + brain_builtin_inference.register(manager) + brain_collections.register(manager) + brain_crypt.register(manager) + brain_ctypes.register(manager) + brain_curses.register(manager) + brain_dataclasses.register(manager) + brain_datetime.register(manager) + brain_dateutil.register(manager) + brain_functools.register(manager) + brain_gi.register(manager) + brain_hashlib.register(manager) + brain_http.register(manager) + brain_hypothesis.register(manager) + brain_io.register(manager) + brain_mechanize.register(manager) + brain_multiprocessing.register(manager) + brain_namedtuple_enum.register(manager) + brain_numpy_core_einsumfunc.register(manager) + brain_numpy_core_fromnumeric.register(manager) + brain_numpy_core_function_base.register(manager) + brain_numpy_core_multiarray.register(manager) + brain_numpy_core_numerictypes.register(manager) + brain_numpy_core_umath.register(manager) + brain_numpy_random_mtrand.register(manager) + brain_numpy_ma.register(manager) + brain_numpy_ndarray.register(manager) + brain_numpy_core_numeric.register(manager) + brain_pathlib.register(manager) + brain_pkg_resources.register(manager) + brain_pytest.register(manager) + brain_qt.register(manager) + brain_random.register(manager) + brain_re.register(manager) + brain_regex.register(manager) + brain_responses.register(manager) + brain_scipy_signal.register(manager) + brain_signal.register(manager) + brain_six.register(manager) + brain_sqlalchemy.register(manager) + brain_ssl.register(manager) + brain_statistics.register(manager) + brain_subprocess.register(manager) + brain_threading.register(manager) + brain_type.register(manager) + brain_typing.register(manager) + brain_unittest.register(manager) + brain_uuid.register(manager) + + +def is_class_var(node: NodeNG) -> bool: + """Return True if node is a ClassVar, with or without subscripting.""" + try: + inferred = next(node.infer()) + except (InferenceError, StopIteration): + return False + + return getattr(inferred, "name", "") == "ClassVar" diff --git a/.venv/lib/python3.12/site-packages/astroid/builder.py b/.venv/lib/python3.12/site-packages/astroid/builder.py new file mode 100644 index 0000000..f166ab4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/builder.py @@ -0,0 +1,505 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""The AstroidBuilder makes astroid from living object and / or from _ast. + +The builder is not thread safe and can't be used to parse different sources +at the same time. +""" + +from __future__ import annotations + +import ast +import os +import re +import textwrap +import types +import warnings +from collections.abc import Collection, Iterator, Sequence +from io import TextIOWrapper +from tokenize import detect_encoding +from typing import TYPE_CHECKING, cast + +from astroid import bases, modutils, nodes, raw_building, rebuilder, util +from astroid._ast import ParserModule, get_parser_module +from astroid.const import PY312_PLUS, PY314_PLUS +from astroid.exceptions import AstroidBuildingError, AstroidSyntaxError, InferenceError + +if TYPE_CHECKING: + from astroid.manager import AstroidManager + +# The name of the transient function that is used to +# wrap expressions to be extracted when calling +# extract_node. +_TRANSIENT_FUNCTION = "__" + +# The comment used to select a statement to be extracted +# when calling extract_node. +_STATEMENT_SELECTOR = "#@" + +if PY312_PLUS: + warnings.filterwarnings("ignore", ".*invalid escape sequence", SyntaxWarning) +if PY314_PLUS: + warnings.filterwarnings( + "ignore", "'(return|continue|break)' in a 'finally'", SyntaxWarning + ) + + +def open_source_file(filename: str) -> tuple[TextIOWrapper, str, str]: + # pylint: disable=consider-using-with + with open(filename, "rb") as byte_stream: + encoding = detect_encoding(byte_stream.readline)[0] + stream = open(filename, newline=None, encoding=encoding) + data = stream.read() + return stream, encoding, data + + +def _can_assign_attr(node: nodes.ClassDef, attrname: str | None) -> bool: + try: + slots = node.slots() + except NotImplementedError: + pass + else: + if slots and attrname not in {slot.value for slot in slots}: + return False + return node.qname() != "builtins.object" + + +class AstroidBuilder(raw_building.InspectBuilder): + """Class for building an astroid tree from source code or from a live module. + + The param *manager* specifies the manager class which should be used. The + param *apply_transforms* determines if the transforms should be + applied after the tree was built from source or from a live object, + by default being True. + """ + + def __init__(self, manager: AstroidManager, apply_transforms: bool = True) -> None: + super().__init__(manager) + self._apply_transforms = apply_transforms + if not raw_building.InspectBuilder.bootstrapped: + manager.bootstrap() + + def module_build( + self, module: types.ModuleType, modname: str | None = None + ) -> nodes.Module: + """Build an astroid from a living module instance.""" + node = None + path = getattr(module, "__file__", None) + loader = getattr(module, "__loader__", None) + # Prefer the loader to get the source rather than assuming we have a + # filesystem to read the source file from ourselves. + if loader: + modname = modname or module.__name__ + source = loader.get_source(modname) + if source: + node = self.string_build(source, modname, path=path) + if node is None and path is not None: + path_, ext = os.path.splitext(modutils._path_from_filename(path)) + if ext in {".py", ".pyc", ".pyo"} and os.path.exists(path_ + ".py"): + node = self.file_build(path_ + ".py", modname) + if node is None: + # this is a built-in module + # get a partial representation by introspection + node = self.inspect_build(module, modname=modname, path=path) + if self._apply_transforms: + # We have to handle transformation by ourselves since the + # rebuilder isn't called for builtin nodes + node = self._manager.visit_transforms(node) + assert isinstance(node, nodes.Module) + return node + + def file_build(self, path: str, modname: str | None = None) -> nodes.Module: + """Build astroid from a source code file (i.e. from an ast). + + *path* is expected to be a python source file + """ + try: + stream, encoding, data = open_source_file(path) + except OSError as exc: + raise AstroidBuildingError( + "Unable to load file {path}:\n{error}", + modname=modname, + path=path, + error=exc, + ) from exc + except (SyntaxError, LookupError) as exc: + raise AstroidSyntaxError( + "Python 3 encoding specification error or unknown encoding:\n" + "{error}", + modname=modname, + path=path, + error=exc, + ) from exc + except UnicodeError as exc: # wrong encoding + # detect_encoding returns utf-8 if no encoding specified + raise AstroidBuildingError( + "Wrong or no encoding specified for {filename}.", filename=path + ) from exc + with stream: + # get module name if necessary + if modname is None: + try: + modname = ".".join(modutils.modpath_from_file(path)) + except ImportError: + modname = os.path.splitext(os.path.basename(path))[0] + # build astroid representation + module, builder = self._data_build(data, modname, path) + return self._post_build(module, builder, encoding) + + def string_build( + self, data: str, modname: str = "", path: str | None = None + ) -> nodes.Module: + """Build astroid from source code string.""" + module, builder = self._data_build(data, modname, path) + module.file_bytes = data.encode("utf-8") + return self._post_build(module, builder, "utf-8") + + def _post_build( + self, module: nodes.Module, builder: rebuilder.TreeRebuilder, encoding: str + ) -> nodes.Module: + """Handles encoding and delayed nodes after a module has been built.""" + module.file_encoding = encoding + self._manager.cache_module(module) + # post tree building steps after we stored the module in the cache: + for from_node, global_names in builder._import_from_nodes: + if from_node.modname == "__future__": + for symbol, _ in from_node.names: + module.future_imports.add(symbol) + self.add_from_names_to_locals(from_node, global_names) + # handle delayed assattr nodes + for delayed in builder._delayed_assattr: + self.delayed_assattr(delayed) + + # Visit the transforms + if self._apply_transforms: + module = self._manager.visit_transforms(module) + return module + + def _data_build( + self, data: str, modname: str, path: str | None + ) -> tuple[nodes.Module, rebuilder.TreeRebuilder]: + """Build tree node from data and add some informations.""" + try: + node, parser_module = _parse_string( + data, type_comments=True, modname=modname + ) + except (TypeError, ValueError, SyntaxError, MemoryError) as exc: + raise AstroidSyntaxError( + "Parsing Python code failed:\n{error}", + source=data, + modname=modname, + path=path, + error=exc, + ) from exc + + if path is not None: + node_file = os.path.abspath(path) + else: + node_file = "" + if modname.endswith(".__init__"): + modname = modname[:-9] + package = True + else: + package = ( + path is not None + and os.path.splitext(os.path.basename(path))[0] == "__init__" + ) + builder = rebuilder.TreeRebuilder(self._manager, parser_module, data) + module = builder.visit_module(node, modname, node_file, package) + return module, builder + + def add_from_names_to_locals( + self, node: nodes.ImportFrom, global_name: Collection[str] + ) -> None: + """Store imported names to the locals. + + Resort the locals if coming from a delayed node + """ + + def add_local(parent_or_root: nodes.NodeNG, name: str) -> None: + parent_or_root.set_local(name, node) + my_list = parent_or_root.scope().locals[name] + if TYPE_CHECKING: + my_list = cast(list[nodes.NodeNG], my_list) + my_list.sort(key=lambda n: n.fromlineno or 0) + + assert node.parent # It should always default to the module + module = node.root() + for name, asname in node.names: + if name == "*": + try: + imported = node.do_import_module() + except AstroidBuildingError: + continue + for name in imported.public_names(): + if name in global_name: + add_local(module, name) + else: + add_local(node.parent, name) + else: + name = asname or name + if name in global_name: + add_local(module, name) + else: + add_local(node.parent, name) + + def delayed_assattr(self, node: nodes.AssignAttr) -> None: + """Visit an AssignAttr node. + + This adds name to locals and handle members definition. + """ + from astroid import objects # pylint: disable=import-outside-toplevel + + try: + for inferred in node.expr.infer(): + if isinstance(inferred, util.UninferableBase): + continue + try: + # We want a narrow check on the parent type, not all of its subclasses + if type(inferred) in {bases.Instance, objects.ExceptionInstance}: + inferred = inferred._proxied + iattrs = inferred.instance_attrs + if not _can_assign_attr(inferred, node.attrname): + continue + elif isinstance(inferred, bases.Instance): + # Const, Tuple or other containers that inherit from + # `Instance` + continue + elif isinstance(inferred, (bases.Proxy, util.UninferableBase)): + continue + elif inferred.is_function: + iattrs = inferred.instance_attrs + else: + iattrs = inferred.locals + except AttributeError: + # XXX log error + continue + values = iattrs.setdefault(node.attrname, []) + if node in values: + continue + values.append(node) + except InferenceError: + pass + + +def build_namespace_package_module(name: str, path: Sequence[str]) -> nodes.Module: + module = nodes.Module(name, path=path, package=True) + module.postinit(body=[], doc_node=None) + return module + + +def parse( + code: str, + module_name: str = "", + path: str | None = None, + apply_transforms: bool = True, +) -> nodes.Module: + """Parses a source string in order to obtain an astroid AST from it. + + :param str code: The code for the module. + :param str module_name: The name for the module, if any + :param str path: The path for the module + :param bool apply_transforms: + Apply the transforms for the give code. Use it if you + don't want the default transforms to be applied. + """ + # pylint: disable-next=import-outside-toplevel + from astroid.manager import AstroidManager + + code = textwrap.dedent(code) + builder = AstroidBuilder(AstroidManager(), apply_transforms=apply_transforms) + return builder.string_build(code, modname=module_name, path=path) + + +def _extract_expressions(node: nodes.NodeNG) -> Iterator[nodes.NodeNG]: + """Find expressions in a call to _TRANSIENT_FUNCTION and extract them. + + The function walks the AST recursively to search for expressions that + are wrapped into a call to _TRANSIENT_FUNCTION. If it finds such an + expression, it completely removes the function call node from the tree, + replacing it by the wrapped expression inside the parent. + + :param node: An astroid node. + :type node: astroid.bases.NodeNG + :yields: The sequence of wrapped expressions on the modified tree + expression can be found. + """ + if ( + isinstance(node, nodes.Call) + and isinstance(node.func, nodes.Name) + and node.func.name == _TRANSIENT_FUNCTION + and node.args + ): + real_expr = node.args[0] + assert node.parent + real_expr.parent = node.parent + # Search for node in all _astng_fields (the fields checked when + # get_children is called) of its parent. Some of those fields may + # be lists or tuples, in which case the elements need to be checked. + # When we find it, replace it by real_expr, so that the AST looks + # like no call to _TRANSIENT_FUNCTION ever took place. + for name in node.parent._astroid_fields: + child = getattr(node.parent, name) + if isinstance(child, list): + for idx, compound_child in enumerate(child): + if compound_child is node: + child[idx] = real_expr + elif child is node: + setattr(node.parent, name, real_expr) + yield real_expr + else: + for child in node.get_children(): + yield from _extract_expressions(child) + + +def _find_statement_by_line(node: nodes.NodeNG, line: int) -> nodes.NodeNG | None: + """Extracts the statement on a specific line from an AST. + + If the line number of node matches line, it will be returned; + otherwise its children are iterated and the function is called + recursively. + + :param node: An astroid node. + :type node: astroid.bases.NodeNG + :param line: The line number of the statement to extract. + :type line: int + :returns: The statement on the line, or None if no statement for the line + can be found. + :rtype: astroid.bases.NodeNG or None + """ + if isinstance(node, (nodes.ClassDef, nodes.FunctionDef, nodes.MatchCase)): + # This is an inaccuracy in the AST: the nodes that can be + # decorated do not carry explicit information on which line + # the actual definition (class/def), but .fromline seems to + # be close enough. + node_line = node.fromlineno + else: + node_line = node.lineno + + if node_line == line: + return node + + for child in node.get_children(): + result = _find_statement_by_line(child, line) + if result: + return result + + return None + + +def extract_node(code: str, module_name: str = "") -> nodes.NodeNG | list[nodes.NodeNG]: + """Parses some Python code as a module and extracts a designated AST node. + + Statements: + To extract one or more statement nodes, append #@ to the end of the line + + Examples: + >>> def x(): + >>> def y(): + >>> return 1 #@ + + The return statement will be extracted. + + >>> class X(object): + >>> def meth(self): #@ + >>> pass + + The function object 'meth' will be extracted. + + Expressions: + To extract arbitrary expressions, surround them with the fake + function call __(...). After parsing, the surrounded expression + will be returned and the whole AST (accessible via the returned + node's parent attribute) will look like the function call was + never there in the first place. + + Examples: + >>> a = __(1) + + The const node will be extracted. + + >>> def x(d=__(foo.bar)): pass + + The node containing the default argument will be extracted. + + >>> def foo(a, b): + >>> return 0 < __(len(a)) < b + + The node containing the function call 'len' will be extracted. + + If no statements or expressions are selected, the last toplevel + statement will be returned. + + If the selected statement is a discard statement, (i.e. an expression + turned into a statement), the wrapped expression is returned instead. + + For convenience, singleton lists are unpacked. + + :param str code: A piece of Python code that is parsed as + a module. Will be passed through textwrap.dedent first. + :param str module_name: The name of the module. + :returns: The designated node from the parse tree, or a list of nodes. + """ + + def _extract(node: nodes.NodeNG | None) -> nodes.NodeNG | None: + if isinstance(node, nodes.Expr): + return node.value + + return node + + requested_lines: list[int] = [] + for idx, line in enumerate(code.splitlines()): + if line.strip().endswith(_STATEMENT_SELECTOR): + requested_lines.append(idx + 1) + + tree = parse(code, module_name=module_name) + if not tree.body: + raise ValueError("Empty tree, cannot extract from it") + + extracted: list[nodes.NodeNG | None] = [] + if requested_lines: + extracted = [_find_statement_by_line(tree, line) for line in requested_lines] + + # Modifies the tree. + extracted.extend(_extract_expressions(tree)) + + if not extracted: + extracted.append(tree.body[-1]) + + extracted = [_extract(node) for node in extracted] + extracted_without_none = [node for node in extracted if node is not None] + if len(extracted_without_none) == 1: + return extracted_without_none[0] + return extracted_without_none + + +def _extract_single_node(code: str, module_name: str = "") -> nodes.NodeNG: + """Call extract_node while making sure that only one value is returned.""" + ret = extract_node(code, module_name) + if isinstance(ret, list): + return ret[0] + return ret + + +def _parse_string( + data: str, type_comments: bool = True, modname: str | None = None +) -> tuple[ast.Module, ParserModule]: + parser_module = get_parser_module(type_comments=type_comments) + try: + parsed = parser_module.parse( + data + "\n", type_comments=type_comments, filename=modname + ) + except SyntaxError as exc: + # If the type annotations are misplaced for some reason, we do not want + # to fail the entire parsing of the file, so we need to retry the + # parsing without type comment support. We use a heuristic for + # determining if the error is due to type annotations. + type_annot_related = re.search(r"#\s+type:", exc.text or "") + if not (type_annot_related and type_comments): + raise + + parser_module = get_parser_module(type_comments=False) + parsed = parser_module.parse(data + "\n", type_comments=False) + return parsed, parser_module diff --git a/.venv/lib/python3.12/site-packages/astroid/const.py b/.venv/lib/python3.12/site-packages/astroid/const.py new file mode 100644 index 0000000..dcce074 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/const.py @@ -0,0 +1,26 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +import enum +import sys + +PY311_PLUS = sys.version_info >= (3, 11) +PY312_PLUS = sys.version_info >= (3, 12) +PY313 = sys.version_info[:2] == (3, 13) +PY313_PLUS = sys.version_info >= (3, 13) +PY314_PLUS = sys.version_info >= (3, 14) + +WIN32 = sys.platform == "win32" + +IS_PYPY = sys.implementation.name == "pypy" +IS_JYTHON = sys.implementation.name == "jython" + + +class Context(enum.Enum): + Load = 1 + Store = 2 + Del = 3 + + +_EMPTY_OBJECT_MARKER = object() diff --git a/.venv/lib/python3.12/site-packages/astroid/constraint.py b/.venv/lib/python3.12/site-packages/astroid/constraint.py new file mode 100644 index 0000000..692d22d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/constraint.py @@ -0,0 +1,186 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Classes representing different types of constraints on inference values.""" +from __future__ import annotations + +import sys +from abc import ABC, abstractmethod +from collections.abc import Iterator +from typing import TYPE_CHECKING + +from astroid import nodes, util +from astroid.typing import InferenceResult + +if sys.version_info >= (3, 11): + from typing import Self +else: + from typing_extensions import Self + +if TYPE_CHECKING: + from astroid import bases + +_NameNodes = nodes.AssignAttr | nodes.Attribute | nodes.AssignName | nodes.Name + + +class Constraint(ABC): + """Represents a single constraint on a variable.""" + + def __init__(self, node: nodes.NodeNG, negate: bool) -> None: + self.node = node + """The node that this constraint applies to.""" + self.negate = negate + """True if this constraint is negated. E.g., "is not" instead of "is".""" + + @classmethod + @abstractmethod + def match( + cls, node: _NameNodes, expr: nodes.NodeNG, negate: bool = False + ) -> Self | None: + """Return a new constraint for node matched from expr, if expr matches + the constraint pattern. + + If negate is True, negate the constraint. + """ + + @abstractmethod + def satisfied_by(self, inferred: InferenceResult) -> bool: + """Return True if this constraint is satisfied by the given inferred value.""" + + +class NoneConstraint(Constraint): + """Represents an "is None" or "is not None" constraint.""" + + CONST_NONE: nodes.Const = nodes.Const(None) + + @classmethod + def match( + cls, node: _NameNodes, expr: nodes.NodeNG, negate: bool = False + ) -> Self | None: + """Return a new constraint for node matched from expr, if expr matches + the constraint pattern. + + Negate the constraint based on the value of negate. + """ + if isinstance(expr, nodes.Compare) and len(expr.ops) == 1: + left = expr.left + op, right = expr.ops[0] + if op in {"is", "is not"} and ( + _matches(left, node) and _matches(right, cls.CONST_NONE) + ): + negate = (op == "is" and negate) or (op == "is not" and not negate) + return cls(node=node, negate=negate) + + return None + + def satisfied_by(self, inferred: InferenceResult) -> bool: + """Return True if this constraint is satisfied by the given inferred value.""" + # Assume true if uninferable + if isinstance(inferred, util.UninferableBase): + return True + + # Return the XOR of self.negate and matches(inferred, self.CONST_NONE) + return self.negate ^ _matches(inferred, self.CONST_NONE) + + +class BooleanConstraint(Constraint): + """Represents an "x" or "not x" constraint.""" + + @classmethod + def match( + cls, node: _NameNodes, expr: nodes.NodeNG, negate: bool = False + ) -> Self | None: + """Return a new constraint for node if expr matches one of these patterns: + + - direct match (expr == node): use given negate value + - negated match (expr == `not node`): flip negate value + + Return None if no pattern matches. + """ + if _matches(expr, node): + return cls(node=node, negate=negate) + + if ( + isinstance(expr, nodes.UnaryOp) + and expr.op == "not" + and _matches(expr.operand, node) + ): + return cls(node=node, negate=not negate) + + return None + + def satisfied_by(self, inferred: InferenceResult) -> bool: + """Return True for uninferable results, or depending on negate flag: + + - negate=False: satisfied if boolean value is True + - negate=True: satisfied if boolean value is False + """ + inferred_booleaness = inferred.bool_value() + if isinstance(inferred, util.UninferableBase) or isinstance( + inferred_booleaness, util.UninferableBase + ): + return True + + return self.negate ^ inferred_booleaness + + +def get_constraints( + expr: _NameNodes, frame: nodes.LocalsDictNodeNG +) -> dict[nodes.If | nodes.IfExp, set[Constraint]]: + """Returns the constraints for the given expression. + + The returned dictionary maps the node where the constraint was generated to the + corresponding constraint(s). + + Constraints are computed statically by analysing the code surrounding expr. + Currently this only supports constraints generated from if conditions. + """ + current_node: nodes.NodeNG | None = expr + constraints_mapping: dict[nodes.If | nodes.IfExp, set[Constraint]] = {} + while current_node is not None and current_node is not frame: + parent = current_node.parent + if isinstance(parent, (nodes.If, nodes.IfExp)): + branch, _ = parent.locate_child(current_node) + constraints: set[Constraint] | None = None + if branch == "body": + constraints = set(_match_constraint(expr, parent.test)) + elif branch == "orelse": + constraints = set(_match_constraint(expr, parent.test, invert=True)) + + if constraints: + constraints_mapping[parent] = constraints + current_node = parent + + return constraints_mapping + + +ALL_CONSTRAINT_CLASSES = frozenset( + ( + NoneConstraint, + BooleanConstraint, + ) +) +"""All supported constraint types.""" + + +def _matches(node1: nodes.NodeNG | bases.Proxy, node2: nodes.NodeNG) -> bool: + """Returns True if the two nodes match.""" + if isinstance(node1, nodes.Name) and isinstance(node2, nodes.Name): + return node1.name == node2.name + if isinstance(node1, nodes.Attribute) and isinstance(node2, nodes.Attribute): + return node1.attrname == node2.attrname and _matches(node1.expr, node2.expr) + if isinstance(node1, nodes.Const) and isinstance(node2, nodes.Const): + return node1.value == node2.value + + return False + + +def _match_constraint( + node: _NameNodes, expr: nodes.NodeNG, invert: bool = False +) -> Iterator[Constraint]: + """Yields all constraint patterns for node that match.""" + for constraint_cls in ALL_CONSTRAINT_CLASSES: + constraint = constraint_cls.match(node, expr, invert) + if constraint: + yield constraint diff --git a/.venv/lib/python3.12/site-packages/astroid/context.py b/.venv/lib/python3.12/site-packages/astroid/context.py new file mode 100644 index 0000000..fa9ed22 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/context.py @@ -0,0 +1,204 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Various context related utilities, including inference and call contexts.""" + +from __future__ import annotations + +import contextlib +import pprint +from collections.abc import Iterator, Sequence +from typing import TYPE_CHECKING + +from astroid.typing import InferenceResult, SuccessfulInferenceResult + +if TYPE_CHECKING: + from astroid import constraint, nodes + +_InferenceCache = dict[ + tuple["nodes.NodeNG", str | None, str | None, str | None], Sequence["nodes.NodeNG"] +] + +_INFERENCE_CACHE: _InferenceCache = {} + + +def _invalidate_cache() -> None: + _INFERENCE_CACHE.clear() + + +class InferenceContext: + """Provide context for inference. + + Store already inferred nodes to save time + Account for already visited nodes to stop infinite recursion + """ + + __slots__ = ( + "_nodes_inferred", + "boundnode", + "callcontext", + "constraints", + "extra_context", + "lookupname", + "path", + ) + + max_inferred = 100 + + def __init__( + self, + path: set[tuple[nodes.NodeNG, str | None]] | None = None, + nodes_inferred: list[int] | None = None, + ) -> None: + if nodes_inferred is None: + self._nodes_inferred = [0] + else: + self._nodes_inferred = nodes_inferred + + self.path = path or set() + """Path of visited nodes and their lookupname. + + Currently this key is ``(node, context.lookupname)`` + """ + self.lookupname: str | None = None + """The original name of the node. + + e.g. + foo = 1 + The inference of 'foo' is nodes.Const(1) but the lookup name is 'foo' + """ + self.callcontext: CallContext | None = None + """The call arguments and keywords for the given context.""" + self.boundnode: SuccessfulInferenceResult | None = None + """The bound node of the given context. + + e.g. the bound node of object.__new__(cls) is the object node + """ + self.extra_context: dict[SuccessfulInferenceResult, InferenceContext] = {} + """Context that needs to be passed down through call stacks for call arguments.""" + + self.constraints: dict[ + str, dict[nodes.If | nodes.IfExp, set[constraint.Constraint]] + ] = {} + """The constraints on nodes.""" + + @property + def nodes_inferred(self) -> int: + """ + Number of nodes inferred in this context and all its clones/descendents. + + Wrap inner value in a mutable cell to allow for mutating a class + variable in the presence of __slots__ + """ + return self._nodes_inferred[0] + + @nodes_inferred.setter + def nodes_inferred(self, value: int) -> None: + self._nodes_inferred[0] = value + + @property + def inferred(self) -> _InferenceCache: + """ + Inferred node contexts to their mapped results. + + Currently the key is ``(node, lookupname, callcontext, boundnode)`` + and the value is tuple of the inferred results + """ + return _INFERENCE_CACHE + + def push(self, node: nodes.NodeNG) -> bool: + """Push node into inference path. + + Allows one to see if the given node has already + been looked at for this inference context + """ + name = self.lookupname + if (node, name) in self.path: + return True + + self.path.add((node, name)) + return False + + def clone(self) -> InferenceContext: + """Clone inference path. + + For example, each side of a binary operation (BinOp) + starts with the same context but diverge as each side is inferred + so the InferenceContext will need be cloned + """ + # XXX copy lookupname/callcontext ? + clone = InferenceContext(self.path.copy(), nodes_inferred=self._nodes_inferred) + clone.callcontext = self.callcontext + clone.boundnode = self.boundnode + clone.extra_context = self.extra_context + clone.constraints = self.constraints.copy() + return clone + + @contextlib.contextmanager + def restore_path(self) -> Iterator[None]: + path = set(self.path) + yield + self.path = path + + def is_empty(self) -> bool: + return ( + not self.path + and not self.nodes_inferred + and not self.callcontext + and not self.boundnode + and not self.lookupname + and not self.callcontext + and not self.extra_context + and not self.constraints + ) + + def __str__(self) -> str: + state = ( + f"{field}={pprint.pformat(getattr(self, field), width=80 - len(field))}" + for field in self.__slots__ + ) + return "{}({})".format(type(self).__name__, ",\n ".join(state)) + + +class CallContext: + """Holds information for a call site.""" + + __slots__ = ("args", "callee", "keywords") + + def __init__( + self, + args: list[nodes.NodeNG], + keywords: list[nodes.Keyword] | None = None, + callee: InferenceResult | None = None, + ): + self.args = args # Call positional arguments + if keywords: + arg_value_pairs = [(arg.arg, arg.value) for arg in keywords] + else: + arg_value_pairs = [] + self.keywords = arg_value_pairs # Call keyword arguments + self.callee = callee # Function being called + + +def copy_context(context: InferenceContext | None) -> InferenceContext: + """Clone a context if given, or return a fresh context.""" + if context is not None: + return context.clone() + + return InferenceContext() + + +def bind_context_to_node( + context: InferenceContext | None, node: SuccessfulInferenceResult +) -> InferenceContext: + """Give a context a boundnode + to retrieve the correct function name or attribute value + with from further inference. + + Do not use an existing context since the boundnode could then + be incorrectly propagated higher up in the call stack. + """ + context = copy_context(context) + context.boundnode = node + return context diff --git a/.venv/lib/python3.12/site-packages/astroid/decorators.py b/.venv/lib/python3.12/site-packages/astroid/decorators.py new file mode 100644 index 0000000..05d2dd3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/decorators.py @@ -0,0 +1,232 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""A few useful function/method decorators.""" + +from __future__ import annotations + +import functools +import inspect +import sys +import warnings +from collections.abc import Callable, Generator +from typing import ParamSpec, TypeVar + +from astroid import util +from astroid.context import InferenceContext +from astroid.exceptions import InferenceError +from astroid.typing import InferenceResult + +_R = TypeVar("_R") +_P = ParamSpec("_P") + + +def path_wrapper(func): + """Return the given infer function wrapped to handle the path. + + Used to stop inference if the node has already been looked + at for a given `InferenceContext` to prevent infinite recursion + """ + + @functools.wraps(func) + def wrapped( + node, context: InferenceContext | None = None, _func=func, **kwargs + ) -> Generator: + """Wrapper function handling context.""" + if context is None: + context = InferenceContext() + if context.push(node): + return + + yielded = set() + + for res in _func(node, context, **kwargs): + # unproxy only true instance, not const, tuple, dict... + if res.__class__.__name__ == "Instance": + ares = res._proxied + else: + ares = res + if ares not in yielded: + yield res + yielded.add(ares) + + return wrapped + + +def yes_if_nothing_inferred( + func: Callable[_P, Generator[InferenceResult]], +) -> Callable[_P, Generator[InferenceResult]]: + def inner(*args: _P.args, **kwargs: _P.kwargs) -> Generator[InferenceResult]: + generator = func(*args, **kwargs) + + try: + yield next(generator) + except StopIteration: + # generator is empty + yield util.Uninferable + return + + yield from generator + + return inner + + +def raise_if_nothing_inferred( + func: Callable[_P, Generator[InferenceResult]], +) -> Callable[_P, Generator[InferenceResult]]: + def inner(*args: _P.args, **kwargs: _P.kwargs) -> Generator[InferenceResult]: + generator = func(*args, **kwargs) + try: + yield next(generator) + except StopIteration as error: + # generator is empty + if error.args: + raise InferenceError(**error.args[0]) from error + raise InferenceError( + "StopIteration raised without any error information." + ) from error + except RecursionError as error: + raise InferenceError( + f"RecursionError raised with limit {sys.getrecursionlimit()}." + ) from error + + yield from generator + + return inner + + +# Expensive decorators only used to emit Deprecation warnings. +# If no other than the default DeprecationWarning are enabled, +# fall back to passthrough implementations. +if util.check_warnings_filter(): # noqa: C901 + + def deprecate_default_argument_values( + astroid_version: str = "3.0", **arguments: str + ) -> Callable[[Callable[_P, _R]], Callable[_P, _R]]: + """Decorator which emits a DeprecationWarning if any arguments specified + are None or not passed at all. + + Arguments should be a key-value mapping, with the key being the argument to check + and the value being a type annotation as string for the value of the argument. + + To improve performance, only used when DeprecationWarnings other than + the default one are enabled. + """ + # Helpful links + # Decorator for DeprecationWarning: https://stackoverflow.com/a/49802489 + # Typing of stacked decorators: https://stackoverflow.com/a/68290080 + + def deco(func: Callable[_P, _R]) -> Callable[_P, _R]: + """Decorator function.""" + + @functools.wraps(func) + def wrapper(*args: _P.args, **kwargs: _P.kwargs) -> _R: + """Emit DeprecationWarnings if conditions are met.""" + + keys = list(inspect.signature(func).parameters.keys()) + for arg, type_annotation in arguments.items(): + try: + index = keys.index(arg) + except ValueError: + raise ValueError( + f"Can't find argument '{arg}' for '{args[0].__class__.__qualname__}'" + ) from None + # pylint: disable = too-many-boolean-expressions + if ( + # Check kwargs + # - if found, check it's not None + (arg in kwargs and kwargs[arg] is None) + # Check args + # - make sure not in kwargs + # - len(args) needs to be long enough, if too short + # arg can't be in args either + # - args[index] should not be None + or ( + arg not in kwargs + and ( + index == -1 + or len(args) <= index + or (len(args) > index and args[index] is None) + ) + ) + ): + warnings.warn( + f"'{arg}' will be a required argument for " + f"'{args[0].__class__.__qualname__}.{func.__name__}'" + f" in astroid {astroid_version} " + f"('{arg}' should be of type: '{type_annotation}')", + DeprecationWarning, + stacklevel=2, + ) + return func(*args, **kwargs) + + return wrapper + + return deco + + def deprecate_arguments( + astroid_version: str = "3.0", **arguments: str + ) -> Callable[[Callable[_P, _R]], Callable[_P, _R]]: + """Decorator which emits a DeprecationWarning if any arguments specified + are passed. + + Arguments should be a key-value mapping, with the key being the argument to check + and the value being a string that explains what to do instead of passing the argument. + + To improve performance, only used when DeprecationWarnings other than + the default one are enabled. + """ + + def deco(func: Callable[_P, _R]) -> Callable[_P, _R]: + @functools.wraps(func) + def wrapper(*args: _P.args, **kwargs: _P.kwargs) -> _R: + keys = list(inspect.signature(func).parameters.keys()) + for arg, note in arguments.items(): + try: + index = keys.index(arg) + except ValueError: + raise ValueError( + f"Can't find argument '{arg}' for '{args[0].__class__.__qualname__}'" + ) from None + if arg in kwargs or len(args) > index: + warnings.warn( + f"The argument '{arg}' for " + f"'{args[0].__class__.__qualname__}.{func.__name__}' is deprecated " + f"and will be removed in astroid {astroid_version} ({note})", + DeprecationWarning, + stacklevel=2, + ) + return func(*args, **kwargs) + + return wrapper + + return deco + +else: + + def deprecate_default_argument_values( + astroid_version: str = "3.0", **arguments: str + ) -> Callable[[Callable[_P, _R]], Callable[_P, _R]]: + """Passthrough decorator to improve performance if DeprecationWarnings are + disabled. + """ + + def deco(func: Callable[_P, _R]) -> Callable[_P, _R]: + """Decorator function.""" + return func + + return deco + + def deprecate_arguments( + astroid_version: str = "3.0", **arguments: str + ) -> Callable[[Callable[_P, _R]], Callable[_P, _R]]: + """Passthrough decorator to improve performance if DeprecationWarnings are + disabled. + """ + + def deco(func: Callable[_P, _R]) -> Callable[_P, _R]: + """Decorator function.""" + return func + + return deco diff --git a/.venv/lib/python3.12/site-packages/astroid/exceptions.py b/.venv/lib/python3.12/site-packages/astroid/exceptions.py new file mode 100644 index 0000000..e523b70 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/exceptions.py @@ -0,0 +1,419 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""This module contains exceptions used in the astroid library.""" + +from __future__ import annotations + +from collections.abc import Iterable, Iterator +from typing import TYPE_CHECKING, Any + +from astroid.typing import InferenceResult, SuccessfulInferenceResult + +if TYPE_CHECKING: + from astroid import arguments, bases, nodes, objects + from astroid.context import InferenceContext + +__all__ = ( + "AstroidBuildingError", + "AstroidError", + "AstroidImportError", + "AstroidIndexError", + "AstroidSyntaxError", + "AstroidTypeError", + "AstroidValueError", + "AttributeInferenceError", + "DuplicateBasesError", + "InconsistentMroError", + "InferenceError", + "InferenceOverwriteError", + "MroError", + "NameInferenceError", + "NoDefault", + "NotFoundError", + "ParentMissingError", + "ResolveError", + "StatementMissing", + "SuperArgumentTypeError", + "SuperError", + "TooManyLevelsError", + "UnresolvableName", + "UseInferenceDefault", +) + + +class AstroidError(Exception): + """Base exception class for all astroid related exceptions. + + AstroidError and its subclasses are structured, intended to hold + objects representing state when the exception is thrown. Field + values are passed to the constructor as keyword-only arguments. + Each subclass has its own set of standard fields, but use your + best judgment to decide whether a specific exception instance + needs more or fewer fields for debugging. Field values may be + used to lazily generate the error message: self.message.format() + will be called with the field names and values supplied as keyword + arguments. + """ + + def __init__(self, message: str = "", **kws: Any) -> None: + super().__init__(message) + self.message = message + for key, value in kws.items(): + setattr(self, key, value) + + def __str__(self) -> str: + try: + return self.message.format(**vars(self)) + except ValueError: + return self.message # Return raw message if formatting fails + + +class AstroidBuildingError(AstroidError): + """Exception class when we are unable to build an astroid representation. + + Standard attributes: + modname: Name of the module that AST construction failed for. + error: Exception raised during construction. + """ + + def __init__( + self, + message: str = "Failed to import module {modname}.", + modname: str | None = None, + error: Exception | None = None, + source: str | None = None, + path: str | None = None, + cls: type | None = None, + class_repr: str | None = None, + **kws: Any, + ) -> None: + self.modname = modname + self.error = error + self.source = source + self.path = path + self.cls = cls + self.class_repr = class_repr + super().__init__(message, **kws) + + +class AstroidImportError(AstroidBuildingError): + """Exception class used when a module can't be imported by astroid.""" + + +class TooManyLevelsError(AstroidImportError): + """Exception class which is raised when a relative import was beyond the top-level. + + Standard attributes: + level: The level which was attempted. + name: the name of the module on which the relative import was attempted. + """ + + def __init__( + self, + message: str = "Relative import with too many levels " + "({level}) for module {name!r}", + level: int | None = None, + name: str | None = None, + **kws: Any, + ) -> None: + self.level = level + self.name = name + super().__init__(message, **kws) + + +class AstroidSyntaxError(AstroidBuildingError): + """Exception class used when a module can't be parsed.""" + + def __init__( + self, + message: str, + modname: str | None, + error: Exception, + path: str | None, + source: str | None = None, + ) -> None: + super().__init__(message, modname, error, source, path) + + +class NoDefault(AstroidError): + """Raised by function's `default_value` method when an argument has + no default value. + + Standard attributes: + func: Function node. + name: Name of argument without a default. + """ + + def __init__( + self, + message: str = "{func!r} has no default for {name!r}.", + func: nodes.FunctionDef | None = None, + name: str | None = None, + **kws: Any, + ) -> None: + self.func = func + self.name = name + super().__init__(message, **kws) + + +class ResolveError(AstroidError): + """Base class of astroid resolution/inference error. + + ResolveError is not intended to be raised. + + Standard attributes: + context: InferenceContext object. + """ + + def __init__( + self, message: str = "", context: InferenceContext | None = None, **kws: Any + ) -> None: + self.context = context + super().__init__(message, **kws) + + +class MroError(ResolveError): + """Error raised when there is a problem with method resolution of a class. + + Standard attributes: + mros: A sequence of sequences containing ClassDef nodes. + cls: ClassDef node whose MRO resolution failed. + context: InferenceContext object. + """ + + def __init__( + self, + message: str, + mros: Iterable[Iterable[nodes.ClassDef]], + cls: nodes.ClassDef, + context: InferenceContext | None = None, + **kws: Any, + ) -> None: + self.mros = mros + self.cls = cls + self.context = context + super().__init__(message, **kws) + + def __str__(self) -> str: + mro_names = ", ".join(f"({', '.join(b.name for b in m)})" for m in self.mros) + return self.message.format(mros=mro_names, cls=self.cls) + + +class DuplicateBasesError(MroError): + """Error raised when there are duplicate bases in the same class bases.""" + + +class InconsistentMroError(MroError): + """Error raised when a class's MRO is inconsistent.""" + + +class SuperError(ResolveError): + """Error raised when there is a problem with a *super* call. + + Standard attributes: + *super_*: The Super instance that raised the exception. + context: InferenceContext object. + """ + + def __init__(self, message: str, super_: objects.Super, **kws: Any) -> None: + self.super_ = super_ + super().__init__(message, **kws) + + def __str__(self) -> str: + return self.message.format(**vars(self.super_)) + + +class InferenceError(ResolveError): # pylint: disable=too-many-instance-attributes + """Raised when we are unable to infer a node. + + Standard attributes: + node: The node inference was called on. + context: InferenceContext object. + """ + + def __init__( # pylint: disable=too-many-arguments, too-many-positional-arguments + self, + message: str = "Inference failed for {node!r}.", + node: InferenceResult | None = None, + context: InferenceContext | None = None, + target: InferenceResult | None = None, + targets: InferenceResult | None = None, + attribute: str | None = None, + unknown: InferenceResult | None = None, + assign_path: list[int] | None = None, + caller: SuccessfulInferenceResult | None = None, + stmts: Iterator[InferenceResult] | None = None, + frame: InferenceResult | None = None, + call_site: arguments.CallSite | None = None, + func: InferenceResult | None = None, + arg: str | None = None, + positional_arguments: list | None = None, + unpacked_args: list | None = None, + keyword_arguments: dict | None = None, + unpacked_kwargs: dict | None = None, + **kws: Any, + ) -> None: + self.node = node + self.context = context + self.target = target + self.targets = targets + self.attribute = attribute + self.unknown = unknown + self.assign_path = assign_path + self.caller = caller + self.stmts = stmts + self.frame = frame + self.call_site = call_site + self.func = func + self.arg = arg + self.positional_arguments = positional_arguments + self.unpacked_args = unpacked_args + self.keyword_arguments = keyword_arguments + self.unpacked_kwargs = unpacked_kwargs + super().__init__(message, **kws) + + +# Why does this inherit from InferenceError rather than ResolveError? +# Changing it causes some inference tests to fail. +class NameInferenceError(InferenceError): + """Raised when a name lookup fails, corresponds to NameError. + + Standard attributes: + name: The name for which lookup failed, as a string. + scope: The node representing the scope in which the lookup occurred. + context: InferenceContext object. + """ + + def __init__( + self, + message: str = "{name!r} not found in {scope!r}.", + name: str | None = None, + scope: nodes.LocalsDictNodeNG | None = None, + context: InferenceContext | None = None, + **kws: Any, + ) -> None: + self.name = name + self.scope = scope + self.context = context + super().__init__(message, **kws) + + +class AttributeInferenceError(ResolveError): + """Raised when an attribute lookup fails, corresponds to AttributeError. + + Standard attributes: + target: The node for which lookup failed. + attribute: The attribute for which lookup failed, as a string. + context: InferenceContext object. + """ + + def __init__( + self, + message: str = "{attribute!r} not found on {target!r}.", + attribute: str = "", + target: nodes.NodeNG | bases.BaseInstance | None = None, + context: InferenceContext | None = None, + mros: list[nodes.ClassDef] | None = None, + super_: nodes.ClassDef | None = None, + cls: nodes.ClassDef | None = None, + **kws: Any, + ) -> None: + self.attribute = attribute + self.target = target + self.context = context + self.mros = mros + self.super_ = super_ + self.cls = cls + super().__init__(message, **kws) + + +class UseInferenceDefault(Exception): + """Exception to be raised in custom inference function to indicate that it + should go back to the default behaviour. + """ + + +class _NonDeducibleTypeHierarchy(Exception): + """Raised when is_subtype / is_supertype can't deduce the relation between two + types. + """ + + +class AstroidIndexError(AstroidError): + """Raised when an Indexable / Mapping does not have an index / key.""" + + def __init__( + self, + message: str = "", + node: nodes.NodeNG | bases.Instance | None = None, + index: nodes.Subscript | None = None, + context: InferenceContext | None = None, + **kws: Any, + ) -> None: + self.node = node + self.index = index + self.context = context + super().__init__(message, **kws) + + +class AstroidTypeError(AstroidError): + """Raised when a TypeError would be expected in Python code.""" + + def __init__( + self, + message: str = "", + node: nodes.NodeNG | bases.Instance | None = None, + index: nodes.Subscript | None = None, + context: InferenceContext | None = None, + **kws: Any, + ) -> None: + self.node = node + self.index = index + self.context = context + super().__init__(message, **kws) + + +class AstroidValueError(AstroidError): + """Raised when a ValueError would be expected in Python code.""" + + +class InferenceOverwriteError(AstroidError): + """Raised when an inference tip is overwritten. + + Currently only used for debugging. + """ + + +class ParentMissingError(AstroidError): + """Raised when a node which is expected to have a parent attribute is missing one. + + Standard attributes: + target: The node for which the parent lookup failed. + """ + + def __init__(self, target: nodes.NodeNG) -> None: + self.target = target + super().__init__(message=f"Parent not found on {target!r}.") + + +class StatementMissing(ParentMissingError): + """Raised when a call to node.statement() does not return a node. + + This is because a node in the chain does not have a parent attribute + and therefore does not return a node for statement(). + + Standard attributes: + target: The node for which the parent lookup failed. + """ + + def __init__(self, target: nodes.NodeNG) -> None: + super(ParentMissingError, self).__init__( + message=f"Statement not found on {target!r}" + ) + + +SuperArgumentTypeError = SuperError +UnresolvableName = NameInferenceError +NotFoundError = AttributeInferenceError diff --git a/.venv/lib/python3.12/site-packages/astroid/filter_statements.py b/.venv/lib/python3.12/site-packages/astroid/filter_statements.py new file mode 100644 index 0000000..a48b6e7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/filter_statements.py @@ -0,0 +1,240 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""_filter_stmts and helper functions. + +This method gets used in LocalsDictnodes.NodeNG._scope_lookup. +It is not considered public. +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING + +from astroid import nodes +from astroid.typing import SuccessfulInferenceResult + +if TYPE_CHECKING: + from astroid.nodes import _base_nodes + + +def _get_filtered_node_statements( + base_node: nodes.NodeNG, stmt_nodes: list[nodes.NodeNG] +) -> list[tuple[nodes.NodeNG, _base_nodes.Statement]]: + statements = [(node, node.statement()) for node in stmt_nodes] + # Next we check if we have ExceptHandlers that are parent + # of the underlying variable, in which case the last one survives + if len(statements) > 1 and all( + isinstance(stmt, nodes.ExceptHandler) for _, stmt in statements + ): + statements = [ + (node, stmt) for node, stmt in statements if stmt.parent_of(base_node) + ] + return statements + + +def _is_from_decorator(node) -> bool: + """Return whether the given node is the child of a decorator.""" + return any(isinstance(parent, nodes.Decorators) for parent in node.node_ancestors()) + + +def _get_if_statement_ancestor(node: nodes.NodeNG) -> nodes.If | None: + """Return the first parent node that is an If node (or None).""" + for parent in node.node_ancestors(): + if isinstance(parent, nodes.If): + return parent + return None + + +def _filter_stmts( + base_node: _base_nodes.LookupMixIn, + stmts: list[SuccessfulInferenceResult], + frame: nodes.LocalsDictNodeNG, + offset: int, +) -> list[nodes.NodeNG]: + """Filter the given list of statements to remove ignorable statements. + + If base_node is not a frame itself and the name is found in the inner + frame locals, statements will be filtered to remove ignorable + statements according to base_node's location. + + :param stmts: The statements to filter. + + :param frame: The frame that all of the given statements belong to. + + :param offset: The line offset to filter statements up to. + + :returns: The filtered statements. + """ + # pylint: disable = too-many-branches, too-many-statements + + # if offset == -1, my actual frame is not the inner frame but its parent + # + # class A(B): pass + # + # we need this to resolve B correctly + if offset == -1: + myframe = base_node.frame().parent.frame() + else: + myframe = base_node.frame() + # If the frame of this node is the same as the statement + # of this node, then the node is part of a class or + # a function definition and the frame of this node should be the + # the upper frame, not the frame of the definition. + # For more information why this is important, + # see Pylint issue #295. + # For example, for 'b', the statement is the same + # as the frame / scope: + # + # def test(b=1): + # ... + if base_node.parent and base_node.statement() is myframe and myframe.parent: + myframe = myframe.parent.frame() + + mystmt: _base_nodes.Statement | None = None + if base_node.parent: + mystmt = base_node.statement() + + # line filtering if we are in the same frame + # + # take care node may be missing lineno information (this is the case for + # nodes inserted for living objects) + if myframe is frame and mystmt and mystmt.fromlineno is not None: + assert mystmt.fromlineno is not None, mystmt + mylineno = mystmt.fromlineno + offset + else: + # disabling lineno filtering + mylineno = 0 + + _stmts: list[nodes.NodeNG] = [] + _stmt_parents = [] + statements = _get_filtered_node_statements(base_node, stmts) + for node, stmt in statements: + # line filtering is on and we have reached our location, break + if stmt.fromlineno and stmt.fromlineno > mylineno > 0: + break + # Ignore decorators with the same name as the + # decorated function + # Fixes issue #375 + if mystmt is stmt and _is_from_decorator(base_node): + continue + if node.has_base(base_node): + break + + if isinstance(node, nodes.EmptyNode): + # EmptyNode does not have assign_type(), so just add it and move on + _stmts.append(node) + continue + + assign_type = node.assign_type() + _stmts, done = assign_type._get_filtered_stmts(base_node, node, _stmts, mystmt) + if done: + break + + optional_assign = assign_type.optional_assign + if optional_assign and assign_type.parent_of(base_node): + # we are inside a loop, loop var assignment is hiding previous + # assignment + _stmts = [node] + _stmt_parents = [stmt.parent] + continue + + if isinstance(assign_type, nodes.NamedExpr): + # If the NamedExpr is in an if statement we do some basic control flow inference + if_parent = _get_if_statement_ancestor(assign_type) + if if_parent: + # If the if statement is within another if statement we append the node + # to possible statements + if _get_if_statement_ancestor(if_parent): + optional_assign = False + _stmts.append(node) + _stmt_parents.append(stmt.parent) + # Else we assume that it will be evaluated + else: + _stmts = [node] + _stmt_parents = [stmt.parent] + else: + _stmts = [node] + _stmt_parents = [stmt.parent] + + # XXX comment various branches below!!! + try: + pindex = _stmt_parents.index(stmt.parent) + except ValueError: + pass + else: + # we got a parent index, this means the currently visited node + # is at the same block level as a previously visited node + if _stmts[pindex].assign_type().parent_of(assign_type): + # both statements are not at the same block level + continue + # if currently visited node is following previously considered + # assignment and both are not exclusive, we can drop the + # previous one. For instance in the following code :: + # + # if a: + # x = 1 + # else: + # x = 2 + # print x + # + # we can't remove neither x = 1 nor x = 2 when looking for 'x' + # of 'print x'; while in the following :: + # + # x = 1 + # x = 2 + # print x + # + # we can remove x = 1 when we see x = 2 + # + # moreover, on loop assignment types, assignment won't + # necessarily be done if the loop has no iteration, so we don't + # want to clear previous assignments if any (hence the test on + # optional_assign) + if not (optional_assign or nodes.are_exclusive(_stmts[pindex], node)): + del _stmt_parents[pindex] + del _stmts[pindex] + + # If base_node and node are exclusive, then we can ignore node + if nodes.are_exclusive(base_node, node): + continue + + # An AssignName node overrides previous assignments if: + # 1. node's statement always assigns + # 2. node and base_node are in the same block (i.e., has the same parent as base_node) + if isinstance(node, (nodes.NamedExpr, nodes.AssignName)): + if isinstance(stmt, nodes.ExceptHandler): + # If node's statement is an ExceptHandler, then it is the variable + # bound to the caught exception. If base_node is not contained within + # the exception handler block, node should override previous assignments; + # otherwise, node should be ignored, as an exception variable + # is local to the handler block. + if stmt.parent_of(base_node): + _stmts = [] + _stmt_parents = [] + else: + continue + elif not optional_assign and mystmt and stmt.parent is mystmt.parent: + _stmts = [] + _stmt_parents = [] + elif isinstance(node, nodes.DelName): + # Remove all previously stored assignments + _stmts = [] + _stmt_parents = [] + continue + # Add the new assignment + _stmts.append(node) + if isinstance(node, nodes.Arguments) or isinstance( + node.parent, nodes.Arguments + ): + # Special case for _stmt_parents when node is a function parameter; + # in this case, stmt is the enclosing FunctionDef, which is what we + # want to add to _stmt_parents, not stmt.parent. This case occurs when + # node is an Arguments node (representing varargs or kwargs parameter), + # and when node.parent is an Arguments node (other parameters). + # See issue #180. + _stmt_parents.append(stmt) + else: + _stmt_parents.append(stmt.parent) + return _stmts diff --git a/.venv/lib/python3.12/site-packages/astroid/helpers.py b/.venv/lib/python3.12/site-packages/astroid/helpers.py new file mode 100644 index 0000000..9c370aa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/helpers.py @@ -0,0 +1,335 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Various helper utilities.""" + +from __future__ import annotations + +import warnings +from collections.abc import Generator + +from astroid import bases, manager, nodes, objects, raw_building, util +from astroid.context import CallContext, InferenceContext +from astroid.exceptions import ( + AstroidTypeError, + AttributeInferenceError, + InferenceError, + MroError, + _NonDeducibleTypeHierarchy, +) +from astroid.nodes import scoped_nodes +from astroid.typing import InferenceResult +from astroid.util import safe_infer as real_safe_infer + + +def safe_infer( + node: nodes.NodeNG | bases.Proxy | util.UninferableBase, + context: InferenceContext | None = None, +) -> InferenceResult | None: + # When removing, also remove the real_safe_infer alias + warnings.warn( + "Import safe_infer from astroid.util; this shim in astroid.helpers will be removed.", + DeprecationWarning, + stacklevel=2, + ) + return real_safe_infer(node, context=context) + + +def _build_proxy_class(cls_name: str, builtins: nodes.Module) -> nodes.ClassDef: + proxy = raw_building.build_class(cls_name, builtins) + return proxy + + +def _function_type( + function: nodes.Lambda | nodes.FunctionDef | bases.UnboundMethod, + builtins: nodes.Module, +) -> nodes.ClassDef: + if isinstance(function, (scoped_nodes.Lambda, scoped_nodes.FunctionDef)): + if function.root().name == "builtins": + cls_name = "builtin_function_or_method" + else: + cls_name = "function" + elif isinstance(function, bases.BoundMethod): + cls_name = "method" + else: + cls_name = "function" + return _build_proxy_class(cls_name, builtins) + + +def _object_type( + node: InferenceResult, context: InferenceContext | None = None +) -> Generator[InferenceResult | None]: + astroid_manager = manager.AstroidManager() + builtins = astroid_manager.builtins_module + context = context or InferenceContext() + + for inferred in node.infer(context=context): + if isinstance(inferred, scoped_nodes.ClassDef): + metaclass = inferred.metaclass(context=context) + if metaclass: + yield metaclass + continue + yield builtins.getattr("type")[0] + elif isinstance( + inferred, + (scoped_nodes.Lambda, bases.UnboundMethod, scoped_nodes.FunctionDef), + ): + yield _function_type(inferred, builtins) + elif isinstance(inferred, scoped_nodes.Module): + yield _build_proxy_class("module", builtins) + elif isinstance(inferred, nodes.Unknown): + raise InferenceError + elif isinstance(inferred, util.UninferableBase): + yield inferred + elif isinstance(inferred, (bases.Proxy, nodes.Slice, objects.Super)): + yield inferred._proxied + else: # pragma: no cover + raise AssertionError(f"We don't handle {type(inferred)} currently") + + +def object_type( + node: InferenceResult, context: InferenceContext | None = None +) -> InferenceResult | None: + """Obtain the type of the given node. + + This is used to implement the ``type`` builtin, which means that it's + used for inferring type calls, as well as used in a couple of other places + in the inference. + The node will be inferred first, so this function can support all + sorts of objects, as long as they support inference. + """ + + try: + types = set(_object_type(node, context)) + except InferenceError: + return util.Uninferable + if len(types) != 1: + return util.Uninferable + return next(iter(types)) + + +def _object_type_is_subclass( + obj_type: InferenceResult | None, + class_or_seq: list[InferenceResult], + context: InferenceContext | None = None, +) -> util.UninferableBase | bool: + if isinstance(obj_type, util.UninferableBase) or not isinstance( + obj_type, nodes.ClassDef + ): + return util.Uninferable + + # Instances are not types + class_seq = [ + item if not isinstance(item, bases.Instance) else util.Uninferable + for item in class_or_seq + ] + # strict compatibility with issubclass + # issubclass(type, (object, 1)) evaluates to true + # issubclass(object, (1, type)) raises TypeError + for klass in class_seq: + if isinstance(klass, util.UninferableBase): + raise AstroidTypeError( + f"arg 2 must be a type or tuple of types, not {type(klass)!r}" + ) + + for obj_subclass in obj_type.mro(): + if obj_subclass == klass: + return True + return False + + +def object_isinstance( + node: InferenceResult, + class_or_seq: list[InferenceResult], + context: InferenceContext | None = None, +) -> util.UninferableBase | bool: + """Check if a node 'isinstance' any node in class_or_seq. + + :raises AstroidTypeError: if the given ``classes_or_seq`` are not types + """ + obj_type = object_type(node, context) + if isinstance(obj_type, util.UninferableBase): + return util.Uninferable + return _object_type_is_subclass(obj_type, class_or_seq, context=context) + + +def object_issubclass( + node: nodes.NodeNG, + class_or_seq: list[InferenceResult], + context: InferenceContext | None = None, +) -> util.UninferableBase | bool: + """Check if a type is a subclass of any node in class_or_seq. + + :raises AstroidTypeError: if the given ``classes_or_seq`` are not types + :raises AstroidError: if the type of the given node cannot be inferred + or its type's mro doesn't work + """ + if not isinstance(node, nodes.ClassDef): + raise TypeError(f"{node} needs to be a ClassDef node, not {type(node)!r}") + return _object_type_is_subclass(node, class_or_seq, context=context) + + +def has_known_bases(klass, context: InferenceContext | None = None) -> bool: + """Return whether all base classes of a class could be inferred.""" + try: + return klass._all_bases_known + except AttributeError: + pass + for base in klass.bases: + result = real_safe_infer(base, context=context) + # TODO: check for A->B->A->B pattern in class structure too? + if ( + not isinstance(result, scoped_nodes.ClassDef) + or result is klass + or not has_known_bases(result, context=context) + ): + klass._all_bases_known = False + return False + klass._all_bases_known = True + return True + + +def _type_check(type1, type2) -> bool: + if not all(map(has_known_bases, (type1, type2))): + raise _NonDeducibleTypeHierarchy + + try: + return type1 in type2.mro()[:-1] + except MroError as e: + # The MRO is invalid. + raise _NonDeducibleTypeHierarchy from e + + +def is_subtype(type1, type2) -> bool: + """Check if *type1* is a subtype of *type2*.""" + return _type_check(type1=type2, type2=type1) + + +def is_supertype(type1, type2) -> bool: + """Check if *type2* is a supertype of *type1*.""" + return _type_check(type1, type2) + + +def class_instance_as_index(node: bases.Instance) -> nodes.Const | None: + """Get the value as an index for the given instance. + + If an instance provides an __index__ method, then it can + be used in some scenarios where an integer is expected, + for instance when multiplying or subscripting a list. + """ + context = InferenceContext() + try: + for inferred in node.igetattr("__index__", context=context): + if not isinstance(inferred, bases.BoundMethod): + continue + + context.boundnode = node + context.callcontext = CallContext(args=[], callee=inferred) + for result in inferred.infer_call_result(node, context=context): + if isinstance(result, nodes.Const) and isinstance(result.value, int): + return result + except InferenceError: + pass + return None + + +def object_len(node, context: InferenceContext | None = None): + """Infer length of given node object. + + :param Union[nodes.ClassDef, nodes.Instance] node: + :param node: Node to infer length of + + :raises AstroidTypeError: If an invalid node is returned + from __len__ method or no __len__ method exists + :raises InferenceError: If the given node cannot be inferred + or if multiple nodes are inferred or if the code executed in python + would result in a infinite recursive check for length + :rtype int: Integer length of node + """ + # pylint: disable=import-outside-toplevel; circular import + from astroid.objects import FrozenSet + + inferred_node = real_safe_infer(node, context=context) + + # prevent self referential length calls from causing a recursion error + # see https://github.com/pylint-dev/astroid/issues/777 + node_frame = node.frame() + if ( + isinstance(node_frame, scoped_nodes.FunctionDef) + and node_frame.name == "__len__" + and isinstance(inferred_node, bases.Proxy) + and inferred_node._proxied == node_frame.parent + ): + message = ( + "Self referential __len__ function will " + "cause a RecursionError on line {} of {}".format( + node.lineno, node.root().file + ) + ) + raise InferenceError(message) + + if inferred_node is None or isinstance(inferred_node, util.UninferableBase): + raise InferenceError(node=node) + if isinstance(inferred_node, nodes.Const) and isinstance( + inferred_node.value, (bytes, str) + ): + return len(inferred_node.value) + if isinstance(inferred_node, (nodes.List, nodes.Set, nodes.Tuple, FrozenSet)): + return len(inferred_node.elts) + if isinstance(inferred_node, nodes.Dict): + return len(inferred_node.items) + + node_type = object_type(inferred_node, context=context) + if not node_type: + raise InferenceError(node=node) + + try: + len_call = next(node_type.igetattr("__len__", context=context)) + except StopIteration as e: + raise AstroidTypeError(str(e)) from e + except AttributeInferenceError as e: + raise AstroidTypeError( + f"object of type '{node_type.pytype()}' has no len()" + ) from e + + inferred = len_call.infer_call_result(node, context) + if isinstance(inferred, util.UninferableBase): + raise InferenceError(node=node, context=context) + result_of_len = next(inferred, None) + if ( + isinstance(result_of_len, nodes.Const) + and result_of_len.pytype() == "builtins.int" + ): + return result_of_len.value + if result_of_len is None or ( + isinstance(result_of_len, bases.Instance) + and result_of_len.is_subtype_of("builtins.int") + ): + # Fake a result as we don't know the arguments of the instance call. + return 0 + raise AstroidTypeError( + f"'{result_of_len}' object cannot be interpreted as an integer" + ) + + +def _higher_function_scope(node: nodes.NodeNG) -> nodes.FunctionDef | None: + """Search for the first function which encloses the given + scope. + + This can be used for looking up in that function's + scope, in case looking up in a lower scope for a particular + name fails. + + :param node: A scope node. + :returns: + ``None``, if no parent function scope was found, + otherwise an instance of :class:`astroid.nodes.scoped_nodes.Function`, + which encloses the given node. + """ + current = node + while current.parent and not isinstance(current.parent, nodes.FunctionDef): + current = current.parent + if current and current.parent: + return current.parent + return None diff --git a/.venv/lib/python3.12/site-packages/astroid/inference_tip.py b/.venv/lib/python3.12/site-packages/astroid/inference_tip.py new file mode 100644 index 0000000..c3187c0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/inference_tip.py @@ -0,0 +1,130 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Transform utilities (filters and decorator).""" + +from __future__ import annotations + +from collections import OrderedDict +from collections.abc import Generator +from typing import Any, TypeVar + +from astroid.context import InferenceContext +from astroid.exceptions import InferenceOverwriteError, UseInferenceDefault +from astroid.nodes import NodeNG +from astroid.typing import ( + InferenceResult, + InferFn, + TransformFn, +) + +_cache: OrderedDict[ + tuple[InferFn[Any], NodeNG, InferenceContext | None], list[InferenceResult] +] = OrderedDict() + +_CURRENTLY_INFERRING: set[tuple[InferFn[Any], NodeNG]] = set() + +_NodesT = TypeVar("_NodesT", bound=NodeNG) + + +def clear_inference_tip_cache() -> None: + """Clear the inference tips cache.""" + _cache.clear() + + +def _inference_tip_cached(func: InferFn[_NodesT]) -> InferFn[_NodesT]: + """Cache decorator used for inference tips.""" + + def inner( + node: _NodesT, + context: InferenceContext | None = None, + **kwargs: Any, + ) -> Generator[InferenceResult]: + partial_cache_key = (func, node) + if partial_cache_key in _CURRENTLY_INFERRING: + # If through recursion we end up trying to infer the same + # func + node we raise here. + _CURRENTLY_INFERRING.remove(partial_cache_key) + raise UseInferenceDefault + if context is not None and context.is_empty(): + # Fresh, empty contexts will defeat the cache. + context = None + try: + yield from _cache[func, node, context] + return + except KeyError: + # Recursion guard with a partial cache key. + # Using the full key causes a recursion error on PyPy. + # It's a pragmatic compromise to avoid so much recursive inference + # with slightly different contexts while still passing the simple + # test cases included with this commit. + _CURRENTLY_INFERRING.add(partial_cache_key) + try: + # May raise UseInferenceDefault + result = _cache[func, node, context] = list( + func(node, context, **kwargs) + ) + except Exception as e: + # Suppress the KeyError from the cache miss. + raise e from None + finally: + # Remove recursion guard. + try: + _CURRENTLY_INFERRING.remove(partial_cache_key) + except KeyError: + pass # Recursion may beat us to the punch. + + if len(_cache) > 64: + _cache.popitem(last=False) + + # https://github.com/pylint-dev/pylint/issues/8686 + yield from result # pylint: disable=used-before-assignment + + return inner + + +def inference_tip( + infer_function: InferFn[_NodesT], raise_on_overwrite: bool = False +) -> TransformFn[_NodesT]: + """Given an instance specific inference function, return a function to be + given to AstroidManager().register_transform to set this inference function. + + :param bool raise_on_overwrite: Raise an `InferenceOverwriteError` + if the inference tip will overwrite another. Used for debugging + + Typical usage + + .. sourcecode:: python + + AstroidManager().register_transform(Call, inference_tip(infer_named_tuple), + predicate) + + .. Note:: + + Using an inference tip will override + any previously set inference tip for the given + node. Use a predicate in the transform to prevent + excess overwrites. + """ + + def transform( + node: _NodesT, infer_function: InferFn[_NodesT] = infer_function + ) -> _NodesT: + if ( + raise_on_overwrite + and node._explicit_inference is not None + and node._explicit_inference is not infer_function + ): + raise InferenceOverwriteError( + "Inference already set to {existing_inference}. " + "Trying to overwrite with {new_inference} for {node}".format( + existing_inference=infer_function, + new_inference=node._explicit_inference, + node=node, + ) + ) + node._explicit_inference = _inference_tip_cached(infer_function) + return node + + return transform diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/__init__.py b/.venv/lib/python3.12/site-packages/astroid/interpreter/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/interpreter/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33e48d4dcb097ac03618fc4de5b6e92af0610459 GIT binary patch literal 204 zcmX@j%ge<81SZV?GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!%GNK>FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;uEG{X^&rH$J%qvMPDkw??lKS!SnR%Hd@$q^EmA^P_a`RJ4b5iY! WSb=sk0&y{j@sXL4k+Fyw$N~TmVK(sq literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/__pycache__/dunder_lookup.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/interpreter/__pycache__/dunder_lookup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d082e81b995f70ca4224d6e5612d4a6958542cf6 GIT binary patch literal 3603 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/_import/__pycache__/spec.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/interpreter/_import/__pycache__/spec.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b42f388ce2b75e5c21bf906b39063fcf0e37119 GIT binary patch literal 20022 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/_import/__pycache__/util.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/interpreter/_import/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..311fc6a079458bffd1449417b83804ee88194a09 GIT binary patch literal 3407 zcmai1U2GHC6~1?V>>2;X!43(I^RqY$I4CwWEKmr6unAotMYMs^L`74_o+RVgWB1OO zVC1MsMOt=+)F8DDeQNe;si0CG`oL=?*go{dCP&`s4* zJonsl&OPVcbI1xuVX&(WII#v6#>Je5y@JisgVW@a%{yppS(>+tNcUM91$%*i%s*mk^Le(wYWUvK z0-Nl$G#VpFKGgfH`CaD}PB`ueJL?W3>+G$_2xKk~_II*8&)>^(r~nzs;hUITfE@3r zSC^kKw8W4p$6ZgYH}@rk=}3dz|#(z`VmWR)n>jh2qRO{4g?iw%6jr&HyXMt-WpE@izV(x(U0R!}|7h zr(o|qIac5kqPZ7Qf8Vm2+-FgZu^?KtQLx>D?wxlO_?@a-4_j*r4r_%q(nuHZy6oHQ5~Ze;lw6~z zOp;!I3(q_7z=L%t9=!e$5WmGA0`@73nU4D!X&qRfVloN;HPf86>KBZHl`r!(DWG5wK)Ya zl{J{iA;X?hCZ&Wz3?Y??*U*@jQg`?5%}jJILuO47)}mu0eWOEXKj<5ykR9*)Fq4p_ zAvKoDYl;?)+>q59QLq%v=JlD3+8;Umy{M+>avvc0Y;0QAqA^V;86^=_R9z-nBEvf> zDd}v6=+T_6q$1h;rZ_MytMbh(8N3x%G)c9tfXD!iEu{@cwiFsv9HP~N@Ot}C^!7G- z?z_5tZQ-M`e}Bop|DnC?KUDHv{YIm?{8f9WnFKbb=EE$Z#Yx)XW%y}T3|$(Qw%3Yg zrs2$OLTwY;ZnwJrPf(Mfq|svk#tfy3Sf6LjAKYM3vwy{RwRq;r3*XhU_v#xK1hts% zbneCBcEejwPb8g5&}?YLL%mXvH~5?iccj5;dCl-o=9H8UWlHs+M$Hr%yp~NVx?ziD zv$C2nxMW6AiH)xH4Cy*iCUd$xLP&-fj-SL*xjJpH+0bago7bvj*r#PUUY!{BnV3ci zLa#VOxG3jq>+Q53;G7NaGHn_b4%G-~xygDsnj9nX8ELDMNGDxx%MfK+Q4L$lyowEn zqA4mAq8gV8y%xhRgT_MlvTfUrsZ6eZ;T!%e$;4$%lM_-r12v<{s;(JbDae}izr7pc zma@@AOIcB;Y2v6Og9QSr|Bm)*5AXlw2K4zsn%$CYJpxZAYK<6x#-?EO7r(+oo?Z~a zO3%U12R<8E7FR+io{X15=ZfC$Rd2NHJzDY}{j*j)d2!{~=nL-;4VS+X0t1`c1t^Zc z9CQ!cn5Q=J2QB>5U2ggg4LL{pxn~g!lV| importlib.machinery.ModuleSpec | None: ... # pragma: no cover + + +class ModuleType(enum.Enum): + """Python module types used for ModuleSpec.""" + + C_BUILTIN = enum.auto() + C_EXTENSION = enum.auto() + PKG_DIRECTORY = enum.auto() + PY_CODERESOURCE = enum.auto() + PY_COMPILED = enum.auto() + PY_FROZEN = enum.auto() + PY_RESOURCE = enum.auto() + PY_SOURCE = enum.auto() + PY_ZIPMODULE = enum.auto() + PY_NAMESPACE = enum.auto() + + +_MetaPathFinderModuleTypes: dict[str, ModuleType] = { + # Finders created by setuptools editable installs + "_EditableFinder": ModuleType.PY_SOURCE, + "_EditableNamespaceFinder": ModuleType.PY_NAMESPACE, + # Finders create by six + "_SixMetaPathImporter": ModuleType.PY_SOURCE, +} + +_EditableFinderClasses: set[str] = { + "_EditableFinder", + "_EditableNamespaceFinder", +} + + +class ModuleSpec(NamedTuple): + """Defines a class similar to PEP 420's ModuleSpec. + + A module spec defines a name of a module, its type, location + and where submodules can be found, if the module is a package. + """ + + name: str + type: ModuleType | None + location: str | None = None + origin: str | None = None + submodule_search_locations: Sequence[str] | None = None + + +class Finder: + """A finder is a class which knows how to find a particular module.""" + + def __init__(self, path: Sequence[str] | None = None) -> None: + self._path = path or sys.path + + @staticmethod + @abc.abstractmethod + def find_module( + modname: str, + module_parts: tuple[str, ...], + processed: tuple[str, ...], + submodule_path: tuple[str, ...] | None, + ) -> ModuleSpec | None: + """Find the given module. + + Each finder is responsible for each protocol of finding, as long as + they all return a ModuleSpec. + + :param modname: The module which needs to be searched. + :param module_parts: It should be a tuple of strings, + where each part contributes to the module's + namespace. + :param processed: What parts from the module parts were processed + so far. + :param submodule_path: A tuple of paths where the module + can be looked into. + :returns: A ModuleSpec, describing how and where the module was found, + None, otherwise. + """ + + def contribute_to_path( + self, spec: ModuleSpec, processed: list[str] + ) -> Sequence[str] | None: + """Get a list of extra paths where this finder can search.""" + + +class ImportlibFinder(Finder): + """A finder based on the importlib module.""" + + _SUFFIXES: Sequence[tuple[str, ModuleType]] = ( + [(s, ModuleType.C_EXTENSION) for s in importlib.machinery.EXTENSION_SUFFIXES] + + [(s, ModuleType.PY_SOURCE) for s in importlib.machinery.SOURCE_SUFFIXES] + + [(s, ModuleType.PY_COMPILED) for s in importlib.machinery.BYTECODE_SUFFIXES] + ) + + @staticmethod + @lru_cache(maxsize=1024) + def find_module( + modname: str, + module_parts: tuple[str, ...], + processed: tuple[str, ...], + submodule_path: tuple[str, ...] | None, + ) -> ModuleSpec | None: + # pylint: disable-next=import-outside-toplevel + from astroid.modutils import cached_os_path_isfile + + # Although we should be able to use `find_spec` this doesn't work on PyPy for builtins. + # Therefore, we use the `builtin_module_nams` heuristic for these. + if submodule_path is None and modname in sys.builtin_module_names: + return ModuleSpec( + name=modname, + location=None, + type=ModuleType.C_BUILTIN, + ) + + if submodule_path is not None: + search_paths = list(submodule_path) + else: + search_paths = sys.path + + suffixes = (".py", ".pyi", importlib.machinery.BYTECODE_SUFFIXES[0]) + for entry in search_paths: + package_directory = os.path.join(entry, modname) + for suffix in suffixes: + package_file_name = "__init__" + suffix + file_path = os.path.join(package_directory, package_file_name) + if cached_os_path_isfile(file_path): + return ModuleSpec( + name=modname, + location=package_directory, + type=ModuleType.PKG_DIRECTORY, + ) + for suffix, type_ in ImportlibFinder._SUFFIXES: + file_name = modname + suffix + file_path = os.path.join(entry, file_name) + if cached_os_path_isfile(file_path): + return ModuleSpec(name=modname, location=file_path, type=type_) + + # If the module name matches a stdlib module name, check whether this is a frozen + # module. Note that `find_spec` actually imports parent modules, so we want to make + # sure we only run this code for stuff that can be expected to be frozen. For now + # this is only stdlib. + if (modname in sys.stdlib_module_names and not processed) or ( + processed and processed[0] in sys.stdlib_module_names + ): + try: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore", category=Warning) + spec = importlib.util.find_spec(".".join((*processed, modname))) + except ValueError: + spec = None + + if ( + spec + and spec.loader # type: ignore[comparison-overlap] # noqa: E501 + is importlib.machinery.FrozenImporter + ): + return ModuleSpec( + name=modname, + location=getattr(spec.loader_state, "filename", None), + type=ModuleType.PY_FROZEN, + ) + + return None + + def contribute_to_path( + self, spec: ModuleSpec, processed: list[str] + ) -> Sequence[str] | None: + if spec.location is None: + # Builtin. + return None + # pylint: disable-next=import-outside-toplevel + from astroid.modutils import EXT_LIB_DIRS + + if _is_setuptools_namespace(Path(spec.location)): + # extend_path is called, search sys.path for module/packages + # of this name see pkgutil.extend_path documentation + path = [ + os.path.join(p, *processed) + for p in sys.path + if os.path.isdir(os.path.join(p, *processed)) + ] + elif spec.name == "distutils" and not any( + spec.location.lower().startswith(ext_lib_dir.lower()) + for ext_lib_dir in EXT_LIB_DIRS + ): + # virtualenv below 20.0 patches distutils in an unexpected way + # so we just find the location of distutils that will be + # imported to avoid spurious import-error messages + # https://github.com/pylint-dev/pylint/issues/5645 + # A regression test to create this scenario exists in release-tests.yml + # and can be triggered manually from GitHub Actions + distutils_spec = importlib.util.find_spec("distutils") + if distutils_spec and distutils_spec.origin: + origin_path = Path( + distutils_spec.origin + ) # e.g. .../distutils/__init__.py + path = [str(origin_path.parent)] # e.g. .../distutils + else: + path = [spec.location] + else: + path = [spec.location] + return path + + +class ExplicitNamespacePackageFinder(ImportlibFinder): + """A finder for the explicit namespace packages.""" + + @staticmethod + @lru_cache(maxsize=1024) + def find_module( + modname: str, + module_parts: tuple[str, ...], + processed: tuple[str, ...], + submodule_path: tuple[str, ...] | None, + ) -> ModuleSpec | None: + if processed: + modname = ".".join([*processed, modname]) + if util.is_namespace(modname) and modname in sys.modules: + return ModuleSpec( + name=modname, + location="", + origin="namespace", + type=ModuleType.PY_NAMESPACE, + submodule_search_locations=sys.modules[modname].__path__, + ) + return None + + def contribute_to_path( + self, spec: ModuleSpec, processed: list[str] + ) -> Sequence[str] | None: + return spec.submodule_search_locations + + +class ZipFinder(Finder): + """Finder that knows how to find a module inside zip files.""" + + def __init__(self, path: Sequence[str]) -> None: + super().__init__(path) + for entry_path in path: + if entry_path not in sys.path_importer_cache: + try: + sys.path_importer_cache[entry_path] = zipimport.zipimporter( + entry_path + ) + except zipimport.ZipImportError: + continue + + @staticmethod + @lru_cache(maxsize=1024) + def find_module( + modname: str, + module_parts: tuple[str, ...], + processed: tuple[str, ...], + submodule_path: tuple[str, ...] | None, + ) -> ModuleSpec | None: + try: + file_type, filename, path = _search_zip(module_parts) + except ImportError: + return None + + return ModuleSpec( + name=modname, + location=filename, + origin="egg", + type=file_type, + submodule_search_locations=path, + ) + + def contribute_to_path( + self, spec: ModuleSpec, processed: list[str] + ) -> Sequence[str] | None: + return spec.submodule_search_locations + + +class PathSpecFinder(Finder): + """Finder based on importlib.machinery.PathFinder.""" + + @staticmethod + @lru_cache(maxsize=1024) + def find_module( + modname: str, + module_parts: tuple[str, ...], + processed: tuple[str, ...], + submodule_path: tuple[str, ...] | None, + ) -> ModuleSpec | None: + spec = importlib.machinery.PathFinder.find_spec(modname, path=submodule_path) + if spec is not None: + is_namespace_pkg = spec.origin is None + location = spec.origin if not is_namespace_pkg else None + module_type = ModuleType.PY_NAMESPACE if is_namespace_pkg else None + return ModuleSpec( + name=spec.name, + location=location, + origin=spec.origin, + type=module_type, + submodule_search_locations=list(spec.submodule_search_locations or []), + ) + return spec + + def contribute_to_path( + self, spec: ModuleSpec, processed: list[str] + ) -> Sequence[str] | None: + if spec.type == ModuleType.PY_NAMESPACE: + return spec.submodule_search_locations + return None + + +_SPEC_FINDERS = ( + ImportlibFinder, + ZipFinder, + PathSpecFinder, + ExplicitNamespacePackageFinder, +) + + +@lru_cache(maxsize=1024) +def _is_setuptools_namespace(location: pathlib.Path) -> bool: + try: + with open(location / "__init__.py", "rb") as stream: + data = stream.read(4096) + except OSError: + return False + extend_path = b"pkgutil" in data and b"extend_path" in data + declare_namespace = ( + b"pkg_resources" in data and b"declare_namespace(__name__)" in data + ) + return extend_path or declare_namespace + + +def _get_zipimporters() -> Iterator[tuple[str, zipimport.zipimporter]]: + for filepath, importer in sys.path_importer_cache.items(): + if importer is not None and isinstance(importer, zipimport.zipimporter): + yield filepath, importer + + +def _search_zip( + modpath: tuple[str, ...], +) -> tuple[Literal[ModuleType.PY_ZIPMODULE], str, str]: + for filepath, importer in _get_zipimporters(): + found = importer.find_spec(modpath[0]) + if found: + if not importer.find_spec(os.path.sep.join(modpath)): + raise ImportError( + "No module named {} in {}/{}".format( + ".".join(modpath[1:]), filepath, modpath + ) + ) + return ( + ModuleType.PY_ZIPMODULE, + os.path.abspath(filepath) + os.path.sep + os.path.sep.join(modpath), + filepath, + ) + raise ImportError(f"No module named {'.'.join(modpath)}") + + +def _find_spec_with_path( + search_path: Sequence[str], + modname: str, + module_parts: tuple[str, ...], + processed: tuple[str, ...], + submodule_path: tuple[str, ...] | None, +) -> tuple[Finder | _MetaPathFinder, ModuleSpec]: + for finder in _SPEC_FINDERS: + finder_instance = finder(search_path) + mod_spec = finder.find_module(modname, module_parts, processed, submodule_path) + if mod_spec is None: + continue + return finder_instance, mod_spec + + # Support for custom finders + for meta_finder in sys.meta_path: + # See if we support the customer import hook of the meta_finder + meta_finder_name = meta_finder.__class__.__name__ + if meta_finder_name not in _MetaPathFinderModuleTypes: + # Setuptools>62 creates its EditableFinders dynamically and have + # "type" as their __class__.__name__. We check __name__ as well + # to see if we can support the finder. + try: + meta_finder_name = meta_finder.__name__ # type: ignore[attr-defined] + except AttributeError: + continue + if meta_finder_name not in _MetaPathFinderModuleTypes: + continue + + module_type = _MetaPathFinderModuleTypes[meta_finder_name] + + # Meta path finders are supposed to have a find_spec method since + # Python 3.4. However, some third-party finders do not implement it. + # PEP302 does not refer to find_spec as well. + # See: https://github.com/pylint-dev/astroid/pull/1752/ + if not hasattr(meta_finder, "find_spec"): + continue + + spec = meta_finder.find_spec(modname, submodule_path) + if spec: + return ( + meta_finder, + ModuleSpec( + spec.name, + module_type, + spec.origin, + spec.origin, + spec.submodule_search_locations, + ), + ) + + raise ImportError(f"No module named {'.'.join(module_parts)}") + + +def find_spec(modpath: Iterable[str], path: Iterable[str] | None = None) -> ModuleSpec: + """Find a spec for the given module. + + :type modpath: list or tuple + :param modpath: + split module's name (i.e name of a module or package split + on '.'), with leading empty strings for explicit relative import + + :type path: list or None + :param path: + optional list of path where the module or package should be + searched (use sys.path if nothing or None is given) + + :rtype: ModuleSpec + :return: A module spec, which describes how the module was + found and where. + """ + return _find_spec(tuple(modpath), tuple(path) if path else None) + + +@lru_cache(maxsize=1024) +def _find_spec( + module_path: tuple[str, ...], path: tuple[str, ...] | None +) -> ModuleSpec: + _path = path or sys.path + + # Need a copy for not mutating the argument. + modpath = list(module_path) + + search_paths = None + processed: list[str] = [] + + while modpath: + modname = modpath.pop(0) + + submodule_path = search_paths or path + if submodule_path is not None: + submodule_path = tuple(submodule_path) + + finder, spec = _find_spec_with_path( + _path, modname, module_path, tuple(processed), submodule_path + ) + processed.append(modname) + if modpath: + if isinstance(finder, Finder): + search_paths = finder.contribute_to_path(spec, processed) + # If modname is a package from an editable install, update search_paths + # so that the next module in the path will be found inside of it using importlib. + # Existence of __name__ is guaranteed by _find_spec_with_path. + elif finder.__name__ in _EditableFinderClasses: # type: ignore[attr-defined] + search_paths = spec.submodule_search_locations + + if spec.type == ModuleType.PKG_DIRECTORY: + spec = spec._replace(submodule_search_locations=search_paths) + + return spec diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/_import/util.py b/.venv/lib/python3.12/site-packages/astroid/interpreter/_import/util.py new file mode 100644 index 0000000..976fc00 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/interpreter/_import/util.py @@ -0,0 +1,112 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +import pathlib +import sys +from functools import lru_cache +from importlib._bootstrap_external import _NamespacePath # type: ignore[attr-defined] +from importlib.util import _find_spec_from_path # type: ignore[attr-defined] + +from astroid.const import IS_PYPY + +if sys.version_info >= (3, 11): + from importlib.machinery import NamespaceLoader +else: + from importlib._bootstrap_external import _NamespaceLoader as NamespaceLoader + + +@lru_cache(maxsize=4096) +def is_namespace(modname: str) -> bool: + from astroid.modutils import ( # pylint: disable=import-outside-toplevel + EXT_LIB_DIRS, + STD_LIB_DIRS, + ) + + STD_AND_EXT_LIB_DIRS = STD_LIB_DIRS.union(EXT_LIB_DIRS) + + if modname in sys.builtin_module_names: + return False + + found_spec = None + + # find_spec() attempts to import parent packages when given dotted paths. + # That's unacceptable here, so we fallback to _find_spec_from_path(), which does + # not, but requires instead that each single parent ('astroid', 'nodes', etc.) + # be specced from left to right. + processed_components = [] + last_submodule_search_locations: _NamespacePath | None = None + for component in modname.split("."): + processed_components.append(component) + working_modname = ".".join(processed_components) + try: + # Both the modname and the path are built iteratively, with the + # path (e.g. ['a', 'a/b', 'a/b/c']) lagging the modname by one + found_spec = _find_spec_from_path( + working_modname, path=last_submodule_search_locations + ) + except AttributeError: + return False + except ValueError: + if modname == "__main__": + return False + try: + # .pth files will be on sys.modules + # __spec__ is set inconsistently on PyPy so we can't really on the heuristic here + # See: https://foss.heptapod.net/pypy/pypy/-/issues/3736 + # Check first fragment of modname, e.g. "astroid", not "astroid.interpreter" + # because of cffi's behavior + # See: https://github.com/pylint-dev/astroid/issues/1776 + mod = sys.modules[processed_components[0]] + return ( + mod.__spec__ is None + and getattr(mod, "__file__", None) is None + and hasattr(mod, "__path__") + and not IS_PYPY + ) + except KeyError: + return False + except AttributeError: + # Workaround for "py" module + # https://github.com/pytest-dev/apipkg/issues/13 + return False + except KeyError: + # Intermediate steps might raise KeyErrors + # https://github.com/python/cpython/issues/93334 + # TODO: update if fixed in importlib + # For tree a > b > c.py + # >>> from importlib.machinery import PathFinder + # >>> PathFinder.find_spec('a.b', ['a']) + # KeyError: 'a' + + # Repair last_submodule_search_locations + if last_submodule_search_locations: + # pylint: disable=unsubscriptable-object + last_item = last_submodule_search_locations[-1] + # e.g. for failure example above, add 'a/b' and keep going + # so that find_spec('a.b.c', path=['a', 'a/b']) succeeds + assumed_location = pathlib.Path(last_item) / component + last_submodule_search_locations.append(str(assumed_location)) + continue + + # Update last_submodule_search_locations for next iteration + if found_spec and found_spec.submodule_search_locations: + # But immediately return False if we can detect we are in stdlib + # or external lib (e.g site-packages) + if any( + any(location.startswith(lib_dir) for lib_dir in STD_AND_EXT_LIB_DIRS) + for location in found_spec.submodule_search_locations + ): + return False + last_submodule_search_locations = found_spec.submodule_search_locations + + return ( + found_spec is not None + and found_spec.submodule_search_locations is not None + and found_spec.origin is None + and ( + found_spec.loader is None or isinstance(found_spec.loader, NamespaceLoader) + ) + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/dunder_lookup.py b/.venv/lib/python3.12/site-packages/astroid/interpreter/dunder_lookup.py new file mode 100644 index 0000000..8eab35c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/interpreter/dunder_lookup.py @@ -0,0 +1,75 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Contains logic for retrieving special methods. + +This implementation does not rely on the dot attribute access +logic, found in ``.getattr()``. The difference between these two +is that the dunder methods are looked with the type slots +(you can find more about these here +http://lucumr.pocoo.org/2014/8/16/the-python-i-would-like-to-see/) +As such, the lookup for the special methods is actually simpler than +the dot attribute access. +""" +from __future__ import annotations + +import itertools +from typing import TYPE_CHECKING + +import astroid +from astroid import nodes +from astroid.exceptions import AttributeInferenceError + +if TYPE_CHECKING: + from astroid.context import InferenceContext + + +def _lookup_in_mro(node, name) -> list: + attrs = node.locals.get(name, []) + + nodes_ = itertools.chain.from_iterable( + ancestor.locals.get(name, []) for ancestor in node.ancestors(recurs=True) + ) + values = list(itertools.chain(attrs, nodes_)) + if not values: + raise AttributeInferenceError(attribute=name, target=node) + + return values + + +def lookup( + node: nodes.NodeNG, name: str, context: InferenceContext | None = None +) -> list: + """Lookup the given special method name in the given *node*. + + If the special method was found, then a list of attributes + will be returned. Otherwise, `astroid.AttributeInferenceError` + is going to be raised. + """ + if isinstance(node, (nodes.List, nodes.Tuple, nodes.Const, nodes.Dict, nodes.Set)): + return _builtin_lookup(node, name) + if isinstance(node, astroid.Instance): + return _lookup_in_mro(node, name) + if isinstance(node, nodes.ClassDef): + return _class_lookup(node, name, context=context) + + raise AttributeInferenceError(attribute=name, target=node) + + +def _class_lookup( + node: nodes.ClassDef, name: str, context: InferenceContext | None = None +) -> list: + metaclass = node.metaclass(context=context) + if metaclass is None: + raise AttributeInferenceError(attribute=name, target=node) + + return _lookup_in_mro(metaclass, name) + + +def _builtin_lookup(node, name) -> list: + values = node.locals.get(name, []) + if not values: + raise AttributeInferenceError(attribute=name, target=node) + + return values diff --git a/.venv/lib/python3.12/site-packages/astroid/interpreter/objectmodel.py b/.venv/lib/python3.12/site-packages/astroid/interpreter/objectmodel.py new file mode 100644 index 0000000..eac9e43 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/interpreter/objectmodel.py @@ -0,0 +1,1013 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Data object model, as per https://docs.python.org/3/reference/datamodel.html. + +This module describes, at least partially, a data object model for some +of astroid's nodes. The model contains special attributes that nodes such +as functions, classes, modules etc have, such as __doc__, __class__, +__module__ etc, being used when doing attribute lookups over nodes. + +For instance, inferring `obj.__class__` will first trigger an inference +of the `obj` variable. If it was successfully inferred, then an attribute +`__class__ will be looked for in the inferred object. This is the part +where the data model occurs. The model is attached to those nodes +and the lookup mechanism will try to see if attributes such as +`__class__` are defined by the model or not. If they are defined, +the model will be requested to return the corresponding value of that +attribute. Thus the model can be viewed as a special part of the lookup +mechanism. +""" + +from __future__ import annotations + +import itertools +import os +import pprint +import types +from collections.abc import Iterator +from functools import lru_cache +from typing import TYPE_CHECKING, Any, Literal + +import astroid +from astroid import bases, nodes, util +from astroid.context import InferenceContext, copy_context +from astroid.exceptions import AttributeInferenceError, InferenceError, NoDefault +from astroid.manager import AstroidManager +from astroid.nodes import node_classes +from astroid.typing import InferenceResult, SuccessfulInferenceResult + +if TYPE_CHECKING: + from astroid.objects import Property + +IMPL_PREFIX = "attr_" +LEN_OF_IMPL_PREFIX = len(IMPL_PREFIX) + + +def _dunder_dict(instance, attributes): + obj = node_classes.Dict( + parent=instance, + lineno=instance.lineno, + col_offset=instance.col_offset, + end_lineno=instance.end_lineno, + end_col_offset=instance.end_col_offset, + ) + + # Convert the keys to node strings + keys = [ + node_classes.Const(value=value, parent=obj) for value in list(attributes.keys()) + ] + + # The original attribute has a list of elements for each key, + # but that is not useful for retrieving the special attribute's value. + # In this case, we're picking the last value from each list. + values = [elem[-1] for elem in attributes.values()] + + obj.postinit(list(zip(keys, values))) + return obj + + +def _get_bound_node(model: ObjectModel) -> Any: + # TODO: Use isinstance instead of try ... except after _instance has typing + try: + return model._instance._proxied + except AttributeError: + return model._instance + + +class ObjectModel: + def __init__(self): + self._instance = None + + def __repr__(self): + result = [] + cname = type(self).__name__ + string = "%(cname)s(%(fields)s)" + alignment = len(cname) + 1 + for field in sorted(self.attributes()): + width = 80 - len(field) - alignment + lines = pprint.pformat(field, indent=2, width=width).splitlines(True) + + inner = [lines[0]] + for line in lines[1:]: + inner.append(" " * alignment + line) + result.append(field) + + return string % { + "cname": cname, + "fields": (",\n" + " " * alignment).join(result), + } + + def __call__(self, instance): + self._instance = instance + return self + + def __get__(self, instance, cls=None): + # ObjectModel needs to be a descriptor so that just doing + # `special_attributes = SomeObjectModel` should be enough in the body of a node. + # But at the same time, node.special_attributes should return an object + # which can be used for manipulating the special attributes. That's the reason + # we pass the instance through which it got accessed to ObjectModel.__call__, + # returning itself afterwards, so we can still have access to the + # underlying data model and to the instance for which it got accessed. + return self(instance) + + def __contains__(self, name) -> bool: + return name in self.attributes() + + @lru_cache # noqa + def attributes(self) -> list[str]: + """Get the attributes which are exported by this object model.""" + return [o[LEN_OF_IMPL_PREFIX:] for o in dir(self) if o.startswith(IMPL_PREFIX)] + + def lookup(self, name): + """Look up the given *name* in the current model. + + It should return an AST or an interpreter object, + but if the name is not found, then an AttributeInferenceError will be raised. + """ + if name in self.attributes(): + return getattr(self, IMPL_PREFIX + name) + raise AttributeInferenceError(target=self._instance, attribute=name) + + @property + def attr___new__(self) -> bases.BoundMethod: + """Calling cls.__new__(type) on an object returns an instance of 'type'.""" + from astroid import builder # pylint: disable=import-outside-toplevel + + node: nodes.FunctionDef = builder.extract_node( + """def __new__(self, cls): return cls()""" + ) + # We set the parent as being the ClassDef of 'object' as that + # triggers correct inference as a call to __new__ in bases.py + node.parent = AstroidManager().builtins_module["object"] + + return bases.BoundMethod(proxy=node, bound=_get_bound_node(self)) + + @property + def attr___init__(self) -> bases.BoundMethod: + """Calling cls.__init__() normally returns None.""" + from astroid import builder # pylint: disable=import-outside-toplevel + + # The *args and **kwargs are necessary not to trigger warnings about missing + # or extra parameters for '__init__' methods we don't infer correctly. + # This BoundMethod is the fallback value for those. + node: nodes.FunctionDef = builder.extract_node( + """def __init__(self, *args, **kwargs): return None""" + ) + # We set the parent as being the ClassDef of 'object' as that + # is where this method originally comes from + node.parent = AstroidManager().builtins_module["object"] + + return bases.BoundMethod(proxy=node, bound=_get_bound_node(self)) + + +class ModuleModel(ObjectModel): + def _builtins(self): + builtins_ast_module = AstroidManager().builtins_module + return builtins_ast_module.special_attributes.lookup("__dict__") + + @property + def attr_builtins(self): + return self._builtins() + + @property + def attr___path__(self): + if not self._instance.package: + raise AttributeInferenceError(target=self._instance, attribute="__path__") + + path_objs = [ + node_classes.Const( + value=( + path if not path.endswith("__init__.py") else os.path.dirname(path) + ), + parent=self._instance, + ) + for path in self._instance.path + ] + + container = node_classes.List(parent=self._instance) + container.postinit(path_objs) + + return container + + @property + def attr___name__(self): + return node_classes.Const(value=self._instance.name, parent=self._instance) + + @property + def attr___doc__(self): + return node_classes.Const( + value=getattr(self._instance.doc_node, "value", None), + parent=self._instance, + ) + + @property + def attr___file__(self): + return node_classes.Const(value=self._instance.file, parent=self._instance) + + @property + def attr___dict__(self): + return _dunder_dict(self._instance, self._instance.globals) + + @property + def attr___package__(self): + if not self._instance.package: + value = "" + else: + value = self._instance.name + + return node_classes.Const(value=value, parent=self._instance) + + # These are related to the Python 3 implementation of the + # import system, + # https://docs.python.org/3/reference/import.html#import-related-module-attributes + + @property + def attr___spec__(self): + # No handling for now. + return node_classes.Unknown(parent=self._instance) + + @property + def attr___loader__(self): + # No handling for now. + return node_classes.Unknown(parent=self._instance) + + @property + def attr___cached__(self): + # No handling for now. + return node_classes.Unknown(parent=self._instance) + + +class FunctionModel(ObjectModel): + @property + def attr___name__(self): + return node_classes.Const(value=self._instance.name, parent=self._instance) + + @property + def attr___doc__(self): + return node_classes.Const( + value=getattr(self._instance.doc_node, "value", None), + parent=self._instance, + ) + + @property + def attr___qualname__(self): + return node_classes.Const(value=self._instance.qname(), parent=self._instance) + + @property + def attr___defaults__(self): + func = self._instance + if not func.args.defaults: + return node_classes.Const(value=None, parent=func) + + defaults_obj = node_classes.Tuple(parent=func) + defaults_obj.postinit(func.args.defaults) + return defaults_obj + + @property + def attr___annotations__(self): + obj = node_classes.Dict( + parent=self._instance, + lineno=self._instance.lineno, + col_offset=self._instance.col_offset, + end_lineno=self._instance.end_lineno, + end_col_offset=self._instance.end_col_offset, + ) + + if not self._instance.returns: + returns = None + else: + returns = self._instance.returns + + args = self._instance.args + pair_annotations = itertools.chain( + zip(args.args or [], args.annotations), + zip(args.kwonlyargs, args.kwonlyargs_annotations), + zip(args.posonlyargs or [], args.posonlyargs_annotations), + ) + + annotations = { + arg.name: annotation for (arg, annotation) in pair_annotations if annotation + } + if args.varargannotation: + annotations[args.vararg] = args.varargannotation + if args.kwargannotation: + annotations[args.kwarg] = args.kwargannotation + if returns: + annotations["return"] = returns + + items = [ + (node_classes.Const(key, parent=obj), value) + for (key, value) in annotations.items() + ] + + obj.postinit(items) + return obj + + @property + def attr___dict__(self): + return node_classes.Dict( + parent=self._instance, + lineno=self._instance.lineno, + col_offset=self._instance.col_offset, + end_lineno=self._instance.end_lineno, + end_col_offset=self._instance.end_col_offset, + ) + + attr___globals__ = attr___dict__ + + @property + def attr___kwdefaults__(self): + def _default_args(args, parent): + for arg in args.kwonlyargs: + try: + default = args.default_value(arg.name) + except NoDefault: + continue + + name = node_classes.Const(arg.name, parent=parent) + yield name, default + + args = self._instance.args + obj = node_classes.Dict( + parent=self._instance, + lineno=self._instance.lineno, + col_offset=self._instance.col_offset, + end_lineno=self._instance.end_lineno, + end_col_offset=self._instance.end_col_offset, + ) + defaults = dict(_default_args(args, obj)) + + obj.postinit(list(defaults.items())) + return obj + + @property + def attr___module__(self): + return node_classes.Const(self._instance.root().qname()) + + @property + def attr___get__(self): + func = self._instance + + class DescriptorBoundMethod(bases.BoundMethod): + """Bound method which knows how to understand calling descriptor + binding. + """ + + def implicit_parameters(self) -> Literal[0]: + # Different than BoundMethod since the signature + # is different. + return 0 + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[bases.BoundMethod]: + if len(caller.args) > 2 or len(caller.args) < 1: + raise InferenceError( + "Invalid arguments for descriptor binding", + target=self, + context=context, + ) + + context = copy_context(context) + try: + cls = next(caller.args[0].infer(context=context)) + except StopIteration as e: + raise InferenceError(context=context, node=caller.args[0]) from e + + if isinstance(cls, util.UninferableBase): + raise InferenceError( + "Invalid class inferred", target=self, context=context + ) + + # For some reason func is a Node that the below + # code is not expecting + if isinstance(func, bases.BoundMethod): + yield func + return + + # Rebuild the original value, but with the parent set as the + # class where it will be bound. + new_func = func.__class__( + name=func.name, + lineno=func.lineno, + col_offset=func.col_offset, + parent=func.parent, + end_lineno=func.end_lineno, + end_col_offset=func.end_col_offset, + ) + # pylint: disable=no-member + new_func.postinit( + func.args, + func.body, + func.decorators, + func.returns, + doc_node=func.doc_node, + ) + + # Build a proper bound method that points to our newly built function. + proxy = bases.UnboundMethod(new_func) + yield bases.BoundMethod(proxy=proxy, bound=cls) + + @property + def args(self): + """Overwrite the underlying args to match those of the underlying func. + + Usually the underlying *func* is a function/method, as in: + + def test(self): + pass + + This has only the *self* parameter but when we access test.__get__ + we get a new object which has two parameters, *self* and *type*. + """ + nonlocal func + arguments = nodes.Arguments( + parent=func.args.parent, vararg=None, kwarg=None + ) + + positional_or_keyword_params = func.args.args.copy() + positional_or_keyword_params.append( + nodes.AssignName( + name="type", + lineno=0, + col_offset=0, + parent=arguments, + end_lineno=None, + end_col_offset=None, + ) + ) + + positional_only_params = func.args.posonlyargs.copy() + + arguments.postinit( + args=positional_or_keyword_params, + posonlyargs=positional_only_params, + defaults=[], + kwonlyargs=[], + kw_defaults=[], + annotations=[], + kwonlyargs_annotations=[], + posonlyargs_annotations=[], + ) + return arguments + + return DescriptorBoundMethod(proxy=self._instance, bound=self._instance) + + # These are here just for completion. + @property + def attr___ne__(self): + return node_classes.Unknown(parent=self._instance) + + attr___subclasshook__ = attr___ne__ + attr___str__ = attr___ne__ + attr___sizeof__ = attr___ne__ + attr___setattr___ = attr___ne__ + attr___repr__ = attr___ne__ + attr___reduce__ = attr___ne__ + attr___reduce_ex__ = attr___ne__ + attr___lt__ = attr___ne__ + attr___eq__ = attr___ne__ + attr___gt__ = attr___ne__ + attr___format__ = attr___ne__ + attr___delattr___ = attr___ne__ + attr___getattribute__ = attr___ne__ + attr___hash__ = attr___ne__ + attr___dir__ = attr___ne__ + attr___call__ = attr___ne__ + attr___class__ = attr___ne__ + attr___closure__ = attr___ne__ + attr___code__ = attr___ne__ + + +class ClassModel(ObjectModel): + def __init__(self): + # Add a context so that inferences called from an instance don't recurse endlessly + self.context = InferenceContext() + + super().__init__() + + @property + def attr___annotations__(self) -> node_classes.Unknown: + return node_classes.Unknown(parent=self._instance) + + @property + def attr___module__(self): + return node_classes.Const(self._instance.root().qname()) + + @property + def attr___name__(self): + return node_classes.Const(self._instance.name) + + @property + def attr___qualname__(self): + return node_classes.Const(self._instance.qname()) + + @property + def attr___doc__(self): + return node_classes.Const(getattr(self._instance.doc_node, "value", None)) + + @property + def attr___mro__(self): + mro = self._instance.mro() + obj = node_classes.Tuple(parent=self._instance) + obj.postinit(mro) + return obj + + @property + def attr_mro(self): + other_self = self + + # Cls.mro is a method and we need to return one in order to have a proper inference. + # The method we're returning is capable of inferring the underlying MRO though. + class MroBoundMethod(bases.BoundMethod): + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[node_classes.Tuple]: + yield other_self.attr___mro__ + + implicit_metaclass = self._instance.implicit_metaclass() + mro_method = implicit_metaclass.locals["mro"][0] + return MroBoundMethod(proxy=mro_method, bound=implicit_metaclass) + + @property + def attr___bases__(self): + obj = node_classes.Tuple() + context = InferenceContext() + elts = list(self._instance._inferred_bases(context)) + obj.postinit(elts=elts) + return obj + + @property + def attr___class__(self): + # pylint: disable=import-outside-toplevel; circular import + from astroid import helpers + + return helpers.object_type(self._instance) + + @property + def attr___subclasses__(self): + """Get the subclasses of the underlying class. + + This looks only in the current module for retrieving the subclasses, + thus it might miss a couple of them. + """ + + qname = self._instance.qname() + root = self._instance.root() + classes = [ + cls + for cls in root.nodes_of_class(nodes.ClassDef) + if cls != self._instance and cls.is_subtype_of(qname, context=self.context) + ] + + obj = node_classes.List(parent=self._instance) + obj.postinit(classes) + + class SubclassesBoundMethod(bases.BoundMethod): + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[node_classes.List]: + yield obj + + implicit_metaclass = self._instance.implicit_metaclass() + subclasses_method = implicit_metaclass.locals["__subclasses__"][0] + return SubclassesBoundMethod(proxy=subclasses_method, bound=implicit_metaclass) + + @property + def attr___dict__(self): + return node_classes.Dict( + parent=self._instance, + lineno=self._instance.lineno, + col_offset=self._instance.col_offset, + end_lineno=self._instance.end_lineno, + end_col_offset=self._instance.end_col_offset, + ) + + @property + def attr___call__(self): + """Calling a class A() returns an instance of A.""" + return self._instance.instantiate_class() + + +class SuperModel(ObjectModel): + @property + def attr___thisclass__(self): + return self._instance.mro_pointer + + @property + def attr___self_class__(self): + return self._instance._self_class + + @property + def attr___self__(self): + return self._instance.type + + @property + def attr___class__(self): + return self._instance._proxied + + +class UnboundMethodModel(ObjectModel): + @property + def attr___class__(self): + # pylint: disable=import-outside-toplevel; circular import + from astroid import helpers + + return helpers.object_type(self._instance) + + @property + def attr___func__(self): + return self._instance._proxied + + @property + def attr___self__(self): + return node_classes.Const(value=None, parent=self._instance) + + attr_im_func = attr___func__ + attr_im_class = attr___class__ + attr_im_self = attr___self__ + + +class ContextManagerModel(ObjectModel): + """Model for context managers. + + Based on 3.3.9 of the Data Model documentation: + https://docs.python.org/3/reference/datamodel.html#with-statement-context-managers + """ + + @property + def attr___enter__(self) -> bases.BoundMethod: + """Representation of the base implementation of __enter__. + + As per Python documentation: + Enter the runtime context related to this object. The with statement + will bind this method's return value to the target(s) specified in the + as clause of the statement, if any. + """ + from astroid import builder # pylint: disable=import-outside-toplevel + + node: nodes.FunctionDef = builder.extract_node("""def __enter__(self): ...""") + # We set the parent as being the ClassDef of 'object' as that + # is where this method originally comes from + node.parent = AstroidManager().builtins_module["object"] + + return bases.BoundMethod(proxy=node, bound=_get_bound_node(self)) + + @property + def attr___exit__(self) -> bases.BoundMethod: + """Representation of the base implementation of __exit__. + + As per Python documentation: + Exit the runtime context related to this object. The parameters describe the + exception that caused the context to be exited. If the context was exited + without an exception, all three arguments will be None. + """ + from astroid import builder # pylint: disable=import-outside-toplevel + + node: nodes.FunctionDef = builder.extract_node( + """def __exit__(self, exc_type, exc_value, traceback): ...""" + ) + # We set the parent as being the ClassDef of 'object' as that + # is where this method originally comes from + node.parent = AstroidManager().builtins_module["object"] + + return bases.BoundMethod(proxy=node, bound=_get_bound_node(self)) + + +class BoundMethodModel(FunctionModel): + @property + def attr___func__(self): + return self._instance._proxied._proxied + + @property + def attr___self__(self): + return self._instance.bound + + +class GeneratorBaseModel(FunctionModel, ContextManagerModel): + def __init__(self, gen_module: nodes.Module): + super().__init__() + for name, values in gen_module.locals.items(): + method = values[0] + if isinstance(method, nodes.FunctionDef): + method = bases.BoundMethod(method, _get_bound_node(self)) + + def patched(cls, meth=method): + return meth + + setattr(type(self), IMPL_PREFIX + name, property(patched)) + + @property + def attr___name__(self): + return node_classes.Const( + value=self._instance.parent.name, parent=self._instance + ) + + @property + def attr___doc__(self): + return node_classes.Const( + value=getattr(self._instance.parent.doc_node, "value", None), + parent=self._instance, + ) + + +class GeneratorModel(GeneratorBaseModel): + def __init__(self): + super().__init__(AstroidManager().builtins_module["generator"]) + + +class AsyncGeneratorModel(GeneratorBaseModel): + def __init__(self): + super().__init__(AstroidManager().builtins_module["async_generator"]) + + +class InstanceModel(ObjectModel): + @property + def attr___class__(self): + return self._instance._proxied + + @property + def attr___module__(self): + return node_classes.Const(self._instance.root().qname()) + + @property + def attr___doc__(self): + return node_classes.Const(getattr(self._instance.doc_node, "value", None)) + + @property + def attr___dict__(self): + return _dunder_dict(self._instance, self._instance.instance_attrs) + + +# Exception instances + + +class ExceptionInstanceModel(InstanceModel): + @property + def attr_args(self) -> nodes.Tuple: + return nodes.Tuple(parent=self._instance) + + @property + def attr___traceback__(self): + builtins_ast_module = AstroidManager().builtins_module + traceback_type = builtins_ast_module[types.TracebackType.__name__] + return traceback_type.instantiate_class() + + +class SyntaxErrorInstanceModel(ExceptionInstanceModel): + @property + def attr_text(self): + return node_classes.Const("") + + +class GroupExceptionInstanceModel(ExceptionInstanceModel): + @property + def attr_exceptions(self) -> nodes.Tuple: + return node_classes.Tuple(parent=self._instance) + + +class OSErrorInstanceModel(ExceptionInstanceModel): + @property + def attr_filename(self): + return node_classes.Const("") + + @property + def attr_errno(self): + return node_classes.Const(0) + + @property + def attr_strerror(self): + return node_classes.Const("") + + attr_filename2 = attr_filename + + +class ImportErrorInstanceModel(ExceptionInstanceModel): + @property + def attr_name(self): + return node_classes.Const("") + + @property + def attr_path(self): + return node_classes.Const("") + + +class UnicodeDecodeErrorInstanceModel(ExceptionInstanceModel): + @property + def attr_object(self): + return node_classes.Const(b"") + + +BUILTIN_EXCEPTIONS = { + "builtins.SyntaxError": SyntaxErrorInstanceModel, + "builtins.ExceptionGroup": GroupExceptionInstanceModel, + "builtins.ImportError": ImportErrorInstanceModel, + "builtins.UnicodeDecodeError": UnicodeDecodeErrorInstanceModel, + # These are all similar to OSError in terms of attributes + "builtins.OSError": OSErrorInstanceModel, + "builtins.BlockingIOError": OSErrorInstanceModel, + "builtins.BrokenPipeError": OSErrorInstanceModel, + "builtins.ChildProcessError": OSErrorInstanceModel, + "builtins.ConnectionAbortedError": OSErrorInstanceModel, + "builtins.ConnectionError": OSErrorInstanceModel, + "builtins.ConnectionRefusedError": OSErrorInstanceModel, + "builtins.ConnectionResetError": OSErrorInstanceModel, + "builtins.FileExistsError": OSErrorInstanceModel, + "builtins.FileNotFoundError": OSErrorInstanceModel, + "builtins.InterruptedError": OSErrorInstanceModel, + "builtins.IsADirectoryError": OSErrorInstanceModel, + "builtins.NotADirectoryError": OSErrorInstanceModel, + "builtins.PermissionError": OSErrorInstanceModel, + "builtins.ProcessLookupError": OSErrorInstanceModel, + "builtins.TimeoutError": OSErrorInstanceModel, +} + + +class DictModel(ObjectModel): + @property + def attr___class__(self): + return self._instance._proxied + + def _generic_dict_attribute(self, obj, name): + """Generate a bound method that can infer the given *obj*.""" + + class DictMethodBoundMethod(astroid.BoundMethod): + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + yield obj + + meth = next(self._instance._proxied.igetattr(name), None) + return DictMethodBoundMethod(proxy=meth, bound=self._instance) + + @property + def attr_items(self): + from astroid import objects # pylint: disable=import-outside-toplevel + + elems = [] + obj = node_classes.List(parent=self._instance) + for key, value in self._instance.items: + elem = node_classes.Tuple(parent=obj) + elem.postinit((key, value)) + elems.append(elem) + obj.postinit(elts=elems) + + items_obj = objects.DictItems(obj) + return self._generic_dict_attribute(items_obj, "items") + + @property + def attr_keys(self): + from astroid import objects # pylint: disable=import-outside-toplevel + + keys = [key for (key, _) in self._instance.items] + obj = node_classes.List(parent=self._instance) + obj.postinit(elts=keys) + + keys_obj = objects.DictKeys(obj) + return self._generic_dict_attribute(keys_obj, "keys") + + @property + def attr_values(self): + from astroid import objects # pylint: disable=import-outside-toplevel + + values = [value for (_, value) in self._instance.items] + obj = node_classes.List(parent=self._instance) + obj.postinit(values) + + values_obj = objects.DictValues(obj) + return self._generic_dict_attribute(values_obj, "values") + + +class PropertyModel(ObjectModel): + """Model for a builtin property.""" + + def _init_function(self, name): + function = nodes.FunctionDef( + name=name, + parent=self._instance, + lineno=self._instance.lineno, + col_offset=self._instance.col_offset, + end_lineno=self._instance.end_lineno, + end_col_offset=self._instance.end_col_offset, + ) + + args = nodes.Arguments(parent=function, vararg=None, kwarg=None) + args.postinit( + args=[], + defaults=[], + kwonlyargs=[], + kw_defaults=[], + annotations=[], + posonlyargs=[], + posonlyargs_annotations=[], + kwonlyargs_annotations=[], + ) + + function.postinit(args=args, body=[]) + return function + + @property + def attr_fget(self): + func = self._instance + + class PropertyFuncAccessor(nodes.FunctionDef): + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + nonlocal func + if caller and len(caller.args) != 1: + raise InferenceError( + "fget() needs a single argument", target=self, context=context + ) + + yield from func.function.infer_call_result( + caller=caller, context=context + ) + + property_accessor = PropertyFuncAccessor( + name="fget", + parent=self._instance, + lineno=self._instance.lineno, + col_offset=self._instance.col_offset, + end_lineno=self._instance.end_lineno, + end_col_offset=self._instance.end_col_offset, + ) + property_accessor.postinit(args=func.args, body=func.body) + return property_accessor + + @property + def attr_fset(self): + func = self._instance + + def find_setter(func: Property) -> nodes.FunctionDef | None: + """ + Given a property, find the corresponding setter function and returns it. + + :param func: property for which the setter has to be found + :return: the setter function or None + """ + for target in [ + t for t in func.parent.get_children() if t.name == func.function.name + ]: + for dec_name in target.decoratornames(): + if dec_name.endswith(func.function.name + ".setter"): + return target + return None + + func_setter = find_setter(func) + if not func_setter: + raise InferenceError( + f"Unable to find the setter of property {func.function.name}" + ) + + class PropertyFuncAccessor(nodes.FunctionDef): + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + nonlocal func_setter + if caller and len(caller.args) != 2: + raise InferenceError( + "fset() needs two arguments", target=self, context=context + ) + yield from func_setter.infer_call_result(caller=caller, context=context) + + property_accessor = PropertyFuncAccessor( + name="fset", + parent=self._instance, + lineno=self._instance.lineno, + col_offset=self._instance.col_offset, + end_lineno=self._instance.end_lineno, + end_col_offset=self._instance.end_col_offset, + ) + property_accessor.postinit(args=func_setter.args, body=func_setter.body) + return property_accessor + + @property + def attr_setter(self): + return self._init_function("setter") + + @property + def attr_deleter(self): + return self._init_function("deleter") + + @property + def attr_getter(self): + return self._init_function("getter") + + # pylint: enable=import-outside-toplevel diff --git a/.venv/lib/python3.12/site-packages/astroid/manager.py b/.venv/lib/python3.12/site-packages/astroid/manager.py new file mode 100644 index 0000000..e232886 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/manager.py @@ -0,0 +1,478 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""astroid manager: avoid multiple astroid build of a same module when +possible by providing a class responsible to get astroid representation +from various source and using a cache of built modules) +""" + +from __future__ import annotations + +import collections +import os +import types +import zipimport +from collections.abc import Callable, Iterator, Sequence +from typing import Any, ClassVar + +from astroid import nodes +from astroid.builder import AstroidBuilder, build_namespace_package_module +from astroid.context import InferenceContext, _invalidate_cache +from astroid.exceptions import AstroidBuildingError, AstroidImportError +from astroid.interpreter._import import spec, util +from astroid.modutils import ( + NoSourceFile, + _cache_normalize_path_, + _has_init, + cached_os_path_isfile, + file_info_from_modpath, + get_source_file, + is_module_name_part_of_extension_package_whitelist, + is_python_source, + is_stdlib_module, + load_module_from_name, + modpath_from_file, +) +from astroid.transforms import TransformVisitor +from astroid.typing import AstroidManagerBrain, InferenceResult + +ZIP_IMPORT_EXTS = (".zip", ".egg", ".whl", ".pyz", ".pyzw") + + +def safe_repr(obj: Any) -> str: + try: + return repr(obj) + except Exception: # pylint: disable=broad-except + return "???" + + +class AstroidManager: + """Responsible to build astroid from files or modules. + + Use the Borg (singleton) pattern. + """ + + name = "astroid loader" + brain: ClassVar[AstroidManagerBrain] = { + "astroid_cache": {}, + "_mod_file_cache": {}, + "_failed_import_hooks": [], + "always_load_extensions": False, + "optimize_ast": False, + "max_inferable_values": 100, + "extension_package_whitelist": set(), + "module_denylist": set(), + "_transform": TransformVisitor(), + "prefer_stubs": False, + } + + def __init__(self) -> None: + # NOTE: cache entries are added by the [re]builder + self.astroid_cache = AstroidManager.brain["astroid_cache"] + self._mod_file_cache = AstroidManager.brain["_mod_file_cache"] + self._failed_import_hooks = AstroidManager.brain["_failed_import_hooks"] + self.extension_package_whitelist = AstroidManager.brain[ + "extension_package_whitelist" + ] + self.module_denylist = AstroidManager.brain["module_denylist"] + self._transform = AstroidManager.brain["_transform"] + self.prefer_stubs = AstroidManager.brain["prefer_stubs"] + + @property + def always_load_extensions(self) -> bool: + return AstroidManager.brain["always_load_extensions"] + + @always_load_extensions.setter + def always_load_extensions(self, value: bool) -> None: + AstroidManager.brain["always_load_extensions"] = value + + @property + def optimize_ast(self) -> bool: + return AstroidManager.brain["optimize_ast"] + + @optimize_ast.setter + def optimize_ast(self, value: bool) -> None: + AstroidManager.brain["optimize_ast"] = value + + @property + def max_inferable_values(self) -> int: + return AstroidManager.brain["max_inferable_values"] + + @max_inferable_values.setter + def max_inferable_values(self, value: int) -> None: + AstroidManager.brain["max_inferable_values"] = value + + @property + def register_transform(self): + # This and unregister_transform below are exported for convenience + return self._transform.register_transform + + @property + def unregister_transform(self): + return self._transform.unregister_transform + + @property + def builtins_module(self) -> nodes.Module: + return self.astroid_cache["builtins"] + + @property + def prefer_stubs(self) -> bool: + return AstroidManager.brain["prefer_stubs"] + + @prefer_stubs.setter + def prefer_stubs(self, value: bool) -> None: + AstroidManager.brain["prefer_stubs"] = value + + def visit_transforms(self, node: nodes.NodeNG) -> InferenceResult: + """Visit the transforms and apply them to the given *node*.""" + return self._transform.visit(node) + + def ast_from_file( + self, + filepath: str, + modname: str | None = None, + fallback: bool = True, + source: bool = False, + ) -> nodes.Module: + """Given a module name, return the astroid object.""" + if modname is None: + try: + modname = ".".join(modpath_from_file(filepath)) + except ImportError: + modname = filepath + if ( + modname in self.astroid_cache + and self.astroid_cache[modname].file == filepath + ): + return self.astroid_cache[modname] + # Call get_source_file() only after a cache miss, + # since it calls os.path.exists(). + try: + filepath = get_source_file( + filepath, include_no_ext=True, prefer_stubs=self.prefer_stubs + ) + source = True + except NoSourceFile: + pass + # Second attempt on the cache after get_source_file(). + if ( + modname in self.astroid_cache + and self.astroid_cache[modname].file == filepath + ): + return self.astroid_cache[modname] + if source: + return AstroidBuilder(self).file_build(filepath, modname) + if fallback and modname: + return self.ast_from_module_name(modname) + raise AstroidBuildingError("Unable to build an AST for {path}.", path=filepath) + + def ast_from_string( + self, data: str, modname: str = "", filepath: str | None = None + ) -> nodes.Module: + """Given some source code as a string, return its corresponding astroid + object. + """ + return AstroidBuilder(self).string_build(data, modname, filepath) + + def _build_stub_module(self, modname: str) -> nodes.Module: + return AstroidBuilder(self).string_build("", modname) + + def _build_namespace_module( + self, modname: str, path: Sequence[str] + ) -> nodes.Module: + return build_namespace_package_module(modname, path) + + def _can_load_extension(self, modname: str) -> bool: + if self.always_load_extensions: + return True + if is_stdlib_module(modname): + return True + return is_module_name_part_of_extension_package_whitelist( + modname, self.extension_package_whitelist + ) + + def ast_from_module_name( # noqa: C901 + self, + modname: str | None, + context_file: str | None = None, + use_cache: bool = True, + ) -> nodes.Module: + """Given a module name, return the astroid object.""" + if modname is None: + raise AstroidBuildingError("No module name given.") + # Sometimes we don't want to use the cache. For example, when we're + # importing a module with the same name as the file that is importing + # we want to fallback on the import system to make sure we get the correct + # module. + if modname in self.module_denylist: + raise AstroidImportError(f"Skipping ignored module {modname!r}") + if modname in self.astroid_cache and use_cache: + return self.astroid_cache[modname] + if modname == "__main__": + return self._build_stub_module(modname) + if context_file: + old_cwd = os.getcwd() + os.chdir(os.path.dirname(context_file)) + try: + found_spec = self.file_from_module_name(modname, context_file) + if found_spec.type == spec.ModuleType.PY_ZIPMODULE: + module = self.zip_import_data(found_spec.location) + if module is not None: + return module + + elif found_spec.type in ( + spec.ModuleType.C_BUILTIN, + spec.ModuleType.C_EXTENSION, + ): + if ( + found_spec.type == spec.ModuleType.C_EXTENSION + and not self._can_load_extension(modname) + ): + return self._build_stub_module(modname) + try: + named_module = load_module_from_name(modname) + except Exception as e: + raise AstroidImportError( + "Loading {modname} failed with:\n{error}", + modname=modname, + path=found_spec.location, + ) from e + return self.ast_from_module(named_module, modname) + + elif found_spec.type == spec.ModuleType.PY_COMPILED: + raise AstroidImportError( + "Unable to load compiled module {modname}.", + modname=modname, + path=found_spec.location, + ) + + elif found_spec.type == spec.ModuleType.PY_NAMESPACE: + return self._build_namespace_module( + modname, found_spec.submodule_search_locations or [] + ) + elif found_spec.type == spec.ModuleType.PY_FROZEN: + if found_spec.location is None: + return self._build_stub_module(modname) + # For stdlib frozen modules we can determine the location and + # can therefore create a module from the source file + return self.ast_from_file(found_spec.location, modname, fallback=False) + + if found_spec.location is None: + raise AstroidImportError( + "Can't find a file for module {modname}.", modname=modname + ) + + return self.ast_from_file(found_spec.location, modname, fallback=False) + except AstroidBuildingError as e: + for hook in self._failed_import_hooks: + try: + return hook(modname) + except AstroidBuildingError: + pass + raise e + finally: + if context_file: + os.chdir(old_cwd) + + def zip_import_data(self, filepath: str) -> nodes.Module | None: + if zipimport is None: + return None + + builder = AstroidBuilder(self) + for ext in ZIP_IMPORT_EXTS: + try: + eggpath, resource = filepath.rsplit(ext + os.path.sep, 1) + except ValueError: + continue + try: + importer = zipimport.zipimporter(eggpath + ext) + zmodname = resource.replace(os.path.sep, ".") + if importer.is_package(resource): + zmodname = zmodname + ".__init__" + module = builder.string_build( + importer.get_source(resource), zmodname, filepath + ) + return module + except Exception: # pylint: disable=broad-except + continue + return None + + def file_from_module_name( + self, modname: str, contextfile: str | None + ) -> spec.ModuleSpec: + try: + value = self._mod_file_cache[(modname, contextfile)] + except KeyError: + try: + value = file_info_from_modpath( + modname.split("."), context_file=contextfile + ) + except ImportError as e: + value = AstroidImportError( + "Failed to import module {modname} with error:\n{error}.", + modname=modname, + # we remove the traceback here to save on memory usage (since these exceptions are cached) + error=e.with_traceback(None), + ) + self._mod_file_cache[(modname, contextfile)] = value + if isinstance(value, AstroidBuildingError): + # we remove the traceback here to save on memory usage (since these exceptions are cached) + raise value.with_traceback(None) # pylint: disable=no-member + return value + + def ast_from_module( + self, module: types.ModuleType, modname: str | None = None + ) -> nodes.Module: + """Given an imported module, return the astroid object.""" + modname = modname or module.__name__ + if modname in self.astroid_cache: + return self.astroid_cache[modname] + try: + # some builtin modules don't have __file__ attribute + filepath = module.__file__ + if is_python_source(filepath): + # Type is checked in is_python_source + return self.ast_from_file(filepath, modname) # type: ignore[arg-type] + except AttributeError: + pass + + return AstroidBuilder(self).module_build(module, modname) + + def ast_from_class(self, klass: type, modname: str | None = None) -> nodes.ClassDef: + """Get astroid for the given class.""" + if modname is None: + try: + modname = klass.__module__ + except AttributeError as exc: + raise AstroidBuildingError( + "Unable to get module for class {class_name}.", + cls=klass, + class_repr=safe_repr(klass), + modname=modname, + ) from exc + modastroid = self.ast_from_module_name(modname) + ret = modastroid.getattr(klass.__name__)[0] + assert isinstance(ret, nodes.ClassDef) + return ret + + def infer_ast_from_something( + self, obj: object, context: InferenceContext | None = None + ) -> Iterator[InferenceResult]: + """Infer astroid for the given class.""" + if hasattr(obj, "__class__") and not isinstance(obj, type): + klass = obj.__class__ + elif isinstance(obj, type): + klass = obj + else: + raise AstroidBuildingError( # pragma: no cover + "Unable to get type for {class_repr}.", + cls=None, + class_repr=safe_repr(obj), + ) + try: + modname = klass.__module__ + except AttributeError as exc: + raise AstroidBuildingError( + "Unable to get module for {class_repr}.", + cls=klass, + class_repr=safe_repr(klass), + ) from exc + except Exception as exc: + raise AstroidImportError( + "Unexpected error while retrieving module for {class_repr}:\n" + "{error}", + cls=klass, + class_repr=safe_repr(klass), + ) from exc + try: + name = klass.__name__ + except AttributeError as exc: + raise AstroidBuildingError( + "Unable to get name for {class_repr}:\n", + cls=klass, + class_repr=safe_repr(klass), + ) from exc + except Exception as exc: + raise AstroidImportError( + "Unexpected error while retrieving name for {class_repr}:\n{error}", + cls=klass, + class_repr=safe_repr(klass), + ) from exc + # take care, on living object __module__ is regularly wrong :( + modastroid = self.ast_from_module_name(modname) + if klass is obj: + yield from modastroid.igetattr(name, context) + else: + for inferred in modastroid.igetattr(name, context): + yield inferred.instantiate_class() + + def register_failed_import_hook(self, hook: Callable[[str], nodes.Module]) -> None: + """Registers a hook to resolve imports that cannot be found otherwise. + + `hook` must be a function that accepts a single argument `modname` which + contains the name of the module or package that could not be imported. + If `hook` can resolve the import, must return a node of type `nodes.Module`, + otherwise, it must raise `AstroidBuildingError`. + """ + self._failed_import_hooks.append(hook) + + def cache_module(self, module: nodes.Module) -> None: + """Cache a module if no module with the same name is known yet.""" + self.astroid_cache.setdefault(module.name, module) + + def bootstrap(self) -> None: + """Bootstrap the required AST modules needed for the manager to work. + + The bootstrap usually involves building the AST for the builtins + module, which is required by the rest of astroid to work correctly. + """ + from astroid import raw_building # pylint: disable=import-outside-toplevel + + raw_building._astroid_bootstrapping() + + def clear_cache(self) -> None: + """Clear the underlying caches, bootstrap the builtins module and + re-register transforms. + """ + # import here because of cyclic imports + # pylint: disable=import-outside-toplevel + from astroid.brain.helpers import register_all_brains + from astroid.inference_tip import clear_inference_tip_cache + from astroid.interpreter._import.spec import ( + _find_spec, + _is_setuptools_namespace, + ) + from astroid.interpreter.objectmodel import ObjectModel + from astroid.nodes._base_nodes import LookupMixIn + from astroid.nodes.scoped_nodes import ClassDef + + clear_inference_tip_cache() + _invalidate_cache() # inference context cache + + self.astroid_cache.clear() + self._mod_file_cache.clear() + + # NB: not a new TransformVisitor() + AstroidManager.brain["_transform"].transforms = collections.defaultdict(list) + + for lru_cache in ( + LookupMixIn.lookup, + _cache_normalize_path_, + _has_init, + cached_os_path_isfile, + util.is_namespace, + ObjectModel.attributes, + ClassDef._metaclass_lookup_attribute, + _find_spec, + _is_setuptools_namespace, + ): + lru_cache.cache_clear() # type: ignore[attr-defined] + + for finder in spec._SPEC_FINDERS: + finder.find_module.cache_clear() + + self.bootstrap() + + # Reload brain plugins. During initialisation this is done in astroid.manager.py + register_all_brains(self) diff --git a/.venv/lib/python3.12/site-packages/astroid/modutils.py b/.venv/lib/python3.12/site-packages/astroid/modutils.py new file mode 100644 index 0000000..0868c60 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/modutils.py @@ -0,0 +1,703 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Python modules manipulation utility functions. + +:type PY_SOURCE_EXTS: tuple(str) +:var PY_SOURCE_EXTS: list of possible python source file extension + +:type STD_LIB_DIRS: set of str +:var STD_LIB_DIRS: directories where standard modules are located + +:type BUILTIN_MODULES: dict +:var BUILTIN_MODULES: dictionary with builtin module names has key +""" + +from __future__ import annotations + +import importlib +import importlib.machinery +import importlib.util +import io +import itertools +import logging +import os +import sys +import sysconfig +import types +import warnings +from collections.abc import Callable, Iterable, Sequence +from contextlib import redirect_stderr, redirect_stdout +from functools import lru_cache +from sys import stdlib_module_names + +from astroid.const import IS_JYTHON +from astroid.interpreter._import import spec, util + +logger = logging.getLogger(__name__) + + +if sys.platform.startswith("win"): + PY_SOURCE_EXTS = ("py", "pyw", "pyi") + PY_SOURCE_EXTS_STUBS_FIRST = ("pyi", "pyw", "py") + PY_COMPILED_EXTS = ("dll", "pyd") +else: + PY_SOURCE_EXTS = ("py", "pyi") + PY_SOURCE_EXTS_STUBS_FIRST = ("pyi", "py") + PY_COMPILED_EXTS = ("so",) + + +# TODO: Adding `platstdlib` is a fix for a workaround in virtualenv. At some point we should +# revisit whether this is still necessary. See https://github.com/pylint-dev/astroid/pull/1323. +STD_LIB_DIRS = {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + +if os.name == "nt": + STD_LIB_DIRS.add(os.path.join(sys.prefix, "dlls")) + try: + # real_prefix is defined when running inside virtual environments, + # created with the **virtualenv** library. + # Deprecated in virtualenv==16.7.9 + # See: https://github.com/pypa/virtualenv/issues/1622 + STD_LIB_DIRS.add(os.path.join(sys.real_prefix, "dlls")) # type: ignore[attr-defined] + except AttributeError: + # sys.base_exec_prefix is always defined, but in a virtual environment + # created with the stdlib **venv** module, it points to the original + # installation, if the virtual env is activated. + try: + STD_LIB_DIRS.add(os.path.join(sys.base_exec_prefix, "dlls")) + except AttributeError: + pass + +if os.name == "posix": + # Need the real prefix if we're in a virtualenv, otherwise + # the usual one will do. + # Deprecated in virtualenv==16.7.9 + # See: https://github.com/pypa/virtualenv/issues/1622 + try: + prefix: str = sys.real_prefix # type: ignore[attr-defined] + except AttributeError: + prefix = sys.prefix + + def _posix_path(path: str) -> str: + base_python = "python%d.%d" % sys.version_info[:2] + return os.path.join(prefix, path, base_python) + + STD_LIB_DIRS.add(_posix_path("lib")) + if sys.maxsize > 2**32: + # This tries to fix a problem with /usr/lib64 builds, + # where systems are running both 32-bit and 64-bit code + # on the same machine, which reflects into the places where + # standard library could be found. More details can be found + # here http://bugs.python.org/issue1294959. + # An easy reproducing case would be + # https://github.com/pylint-dev/pylint/issues/712#issuecomment-163178753 + STD_LIB_DIRS.add(_posix_path("lib64")) + +EXT_LIB_DIRS = {sysconfig.get_path("purelib"), sysconfig.get_path("platlib")} +BUILTIN_MODULES = dict.fromkeys(sys.builtin_module_names, True) + + +class NoSourceFile(Exception): + """Exception raised when we are not able to get a python + source file for a precompiled file. + """ + + +def _normalize_path(path: str) -> str: + """Resolve symlinks in path and convert to absolute path. + + Note that environment variables and ~ in the path need to be expanded in + advance. + + This can be cached by using _cache_normalize_path. + """ + return os.path.normcase(os.path.realpath(path)) + + +def _path_from_filename(filename: str, is_jython: bool = IS_JYTHON) -> str: + if not is_jython: + return filename + head, has_pyclass, _ = filename.partition("$py.class") + if has_pyclass: + return head + ".py" + return filename + + +def _handle_blacklist( + blacklist: Sequence[str], dirnames: list[str], filenames: list[str] +) -> None: + """Remove files/directories in the black list. + + dirnames/filenames are usually from os.walk + """ + for norecurs in blacklist: + if norecurs in dirnames: + dirnames.remove(norecurs) + elif norecurs in filenames: + filenames.remove(norecurs) + + +@lru_cache +def _cache_normalize_path_(path: str) -> str: + return _normalize_path(path) + + +def _cache_normalize_path(path: str) -> str: + """Normalize path with caching.""" + # _module_file calls abspath on every path in sys.path every time it's + # called; on a larger codebase this easily adds up to half a second just + # assembling path components. This cache alleviates that. + if not path: # don't cache result for '' + return _normalize_path(path) + return _cache_normalize_path_(path) + + +def load_module_from_name(dotted_name: str) -> types.ModuleType: + """Load a Python module from its name. + + :type dotted_name: str + :param dotted_name: python name of a module or package + + :raise ImportError: if the module or package is not found + + :rtype: module + :return: the loaded module + """ + try: + return sys.modules[dotted_name] + except KeyError: + pass + + # Capture and log anything emitted during import to avoid + # contaminating JSON reports in pylint + with ( + redirect_stderr(io.StringIO()) as stderr, + redirect_stdout(io.StringIO()) as stdout, + ): + module = importlib.import_module(dotted_name) + + stderr_value = stderr.getvalue() + if stderr_value: + logger.error( + "Captured stderr while importing %s:\n%s", dotted_name, stderr_value + ) + stdout_value = stdout.getvalue() + if stdout_value: + logger.info( + "Captured stdout while importing %s:\n%s", dotted_name, stdout_value + ) + + return module + + +def load_module_from_modpath(parts: Sequence[str]) -> types.ModuleType: + """Load a python module from its split name. + + :param parts: + python name of a module or package split on '.' + + :raise ImportError: if the module or package is not found + + :return: the loaded module + """ + return load_module_from_name(".".join(parts)) + + +def load_module_from_file(filepath: str) -> types.ModuleType: + """Load a Python module from it's path. + + :type filepath: str + :param filepath: path to the python module or package + + :raise ImportError: if the module or package is not found + + :rtype: module + :return: the loaded module + """ + modpath = modpath_from_file(filepath) + return load_module_from_modpath(modpath) + + +def check_modpath_has_init(path: str, mod_path: list[str]) -> bool: + """Check there are some __init__.py all along the way.""" + modpath: list[str] = [] + for part in mod_path: + modpath.append(part) + path = os.path.join(path, part) + if not _has_init(path): + old_namespace = util.is_namespace(".".join(modpath)) + if not old_namespace: + return False + return True + + +def _is_subpath(path: str, base: str) -> bool: + path = os.path.normcase(os.path.normpath(path)) + base = os.path.normcase(os.path.normpath(base)) + if not path.startswith(base): + return False + return (len(path) == len(base)) or (path[len(base)] == os.path.sep) + + +def _get_relative_base_path(filename: str, path_to_check: str) -> list[str] | None: + """Extracts the relative mod path of the file to import from. + + Check if a file is within the passed in path and if so, returns the + relative mod path from the one passed in. + + If the filename is no in path_to_check, returns None + + Note this function will look for both abs and realpath of the file, + this allows to find the relative base path even if the file is a + symlink of a file in the passed in path + + Examples: + _get_relative_base_path("/a/b/c/d.py", "/a/b") -> ["c","d"] + _get_relative_base_path("/a/b/c/d.py", "/dev") -> None + """ + path_to_check = os.path.normcase(os.path.normpath(path_to_check)) + + abs_filename = os.path.abspath(filename) + if _is_subpath(abs_filename, path_to_check): + base_path = os.path.splitext(abs_filename)[0] + relative_base_path = base_path[len(path_to_check) :].lstrip(os.path.sep) + return [pkg for pkg in relative_base_path.split(os.sep) if pkg] + + real_filename = os.path.realpath(filename) + if _is_subpath(real_filename, path_to_check): + base_path = os.path.splitext(real_filename)[0] + relative_base_path = base_path[len(path_to_check) :].lstrip(os.path.sep) + return [pkg for pkg in relative_base_path.split(os.sep) if pkg] + + return None + + +def modpath_from_file_with_callback( + filename: str, + path: list[str] | None = None, + is_package_cb: Callable[[str, list[str]], bool] | None = None, +) -> list[str]: + filename = os.path.expanduser(_path_from_filename(filename)) + paths_to_check = sys.path.copy() + if path: + paths_to_check = path + paths_to_check + for pathname in itertools.chain( + paths_to_check, map(_cache_normalize_path, paths_to_check) + ): + if not pathname: + continue + modpath = _get_relative_base_path(filename, pathname) + if not modpath: + continue + assert is_package_cb is not None + if is_package_cb(pathname, modpath[:-1]): + return modpath + + raise ImportError( + "Unable to find module for {} in {}".format( + filename, ", \n".join(paths_to_check) + ) + ) + + +def modpath_from_file(filename: str, path: list[str] | None = None) -> list[str]: + """Get the corresponding split module's name from a filename. + + This function will return the name of a module or package split on `.`. + + :type filename: str + :param filename: file's path for which we want the module's name + + :type Optional[List[str]] path: + Optional list of paths where the module or package should be + searched, additionally to sys.path + + :raise ImportError: + if the corresponding module's name has not been found + + :rtype: list(str) + :return: the corresponding split module's name + """ + return modpath_from_file_with_callback(filename, path, check_modpath_has_init) + + +def file_from_modpath( + modpath: list[str], + path: Sequence[str] | None = None, + context_file: str | None = None, +) -> str | None: + return file_info_from_modpath(modpath, path, context_file).location + + +def file_info_from_modpath( + modpath: list[str], + path: Sequence[str] | None = None, + context_file: str | None = None, +) -> spec.ModuleSpec: + """Given a mod path (i.e. split module / package name), return the + corresponding file. + + Giving priority to source file over precompiled file if it exists. + + :param modpath: + split module's name (i.e name of a module or package split + on '.') + (this means explicit relative imports that start with dots have + empty strings in this list!) + + :param path: + optional list of path where the module or package should be + searched (use sys.path if nothing or None is given) + + :param context_file: + context file to consider, necessary if the identifier has been + introduced using a relative import unresolvable in the actual + context (i.e. modutils) + + :raise ImportError: if there is no such module in the directory + + :return: + the path to the module's file or None if it's an integrated + builtin module such as 'sys' + """ + if context_file is not None: + context: str | None = os.path.dirname(context_file) + else: + context = context_file + if modpath[0] == "xml": + # handle _xmlplus + try: + return _spec_from_modpath(["_xmlplus", *modpath[1:]], path, context) + except ImportError: + return _spec_from_modpath(modpath, path, context) + elif modpath == ["os", "path"]: + # FIXME: currently ignoring search_path... + return spec.ModuleSpec( + name="os.path", + location=os.path.__file__, + type=spec.ModuleType.PY_SOURCE, + ) + return _spec_from_modpath(modpath, path, context) + + +def get_module_part(dotted_name: str, context_file: str | None = None) -> str: + """Given a dotted name return the module part of the name : + + >>> get_module_part('astroid.as_string.dump') + 'astroid.as_string' + + :param dotted_name: full name of the identifier we are interested in + + :param context_file: + context file to consider, necessary if the identifier has been + introduced using a relative import unresolvable in the actual + context (i.e. modutils) + + :raise ImportError: if there is no such module in the directory + + :return: + the module part of the name or None if we have not been able at + all to import the given name + + XXX: deprecated, since it doesn't handle package precedence over module + (see #10066) + """ + # os.path trick + if dotted_name.startswith("os.path"): + return "os.path" + parts = dotted_name.split(".") + if context_file is not None: + # first check for builtin module which won't be considered latter + # in that case (path != None) + if parts[0] in BUILTIN_MODULES: + if len(parts) > 2: + raise ImportError(dotted_name) + return parts[0] + # don't use += or insert, we want a new list to be created ! + path: list[str] | None = None + starti = 0 + if parts[0] == "": + assert ( + context_file is not None + ), "explicit relative import, but no context_file?" + path = [] # prevent resolving the import non-relatively + starti = 1 + # for all further dots: change context + while starti < len(parts) and parts[starti] == "": + starti += 1 + assert ( + context_file is not None + ), "explicit relative import, but no context_file?" + context_file = os.path.dirname(context_file) + for i in range(starti, len(parts)): + try: + file_from_modpath( + parts[starti : i + 1], path=path, context_file=context_file + ) + except ImportError: + if i < max(1, len(parts) - 2): + raise + return ".".join(parts[:i]) + return dotted_name + + +def get_module_files( + src_directory: str, blacklist: Sequence[str], list_all: bool = False +) -> list[str]: + """Given a package directory return a list of all available python + module's files in the package and its subpackages. + + :param src_directory: + path of the directory corresponding to the package + + :param blacklist: iterable + list of files or directories to ignore. + + :param list_all: + get files from all paths, including ones without __init__.py + + :return: + the list of all available python module's files in the package and + its subpackages + """ + files: list[str] = [] + for directory, dirnames, filenames in os.walk(src_directory): + if directory in blacklist: + continue + _handle_blacklist(blacklist, dirnames, filenames) + # check for __init__.py + if not list_all and {"__init__.py", "__init__.pyi"}.isdisjoint(filenames): + dirnames[:] = () + continue + for filename in filenames: + if _is_python_file(filename): + src = os.path.join(directory, filename) + files.append(src) + return files + + +def get_source_file( + filename: str, include_no_ext: bool = False, prefer_stubs: bool = False +) -> str: + """Given a python module's file name return the matching source file + name (the filename will be returned identically if it's already an + absolute path to a python source file). + + :param filename: python module's file name + + :raise NoSourceFile: if no source file exists on the file system + + :return: the absolute path of the source file if it exists + """ + filename = os.path.abspath(_path_from_filename(filename)) + base, orig_ext = os.path.splitext(filename) + orig_ext = orig_ext.lstrip(".") + if orig_ext not in PY_SOURCE_EXTS and os.path.exists(f"{base}.{orig_ext}"): + return f"{base}.{orig_ext}" + for ext in PY_SOURCE_EXTS_STUBS_FIRST if prefer_stubs else PY_SOURCE_EXTS: + source_path = f"{base}.{ext}" + if os.path.exists(source_path): + return source_path + if include_no_ext and not orig_ext and os.path.exists(base): + return base + raise NoSourceFile(filename) + + +def is_python_source(filename: str | None) -> bool: + """Return: True if the filename is a python source file.""" + if not filename: + return False + return os.path.splitext(filename)[1][1:] in PY_SOURCE_EXTS + + +def is_stdlib_module(modname: str) -> bool: + """Return: True if the modname is in the standard library""" + return modname.split(".")[0] in stdlib_module_names + + +def module_in_path(modname: str, path: str | Iterable[str]) -> bool: + """Try to determine if a module is imported from one of the specified paths + + :param modname: name of the module + + :param path: paths to consider + + :return: + true if the module: + - is located on the path listed in one of the directory in `paths` + """ + + modname = modname.split(".")[0] + try: + filename = file_from_modpath([modname]) + except ImportError: + # Import failed, we can't check path if we don't know it + return False + + if filename is None: + # No filename likely means it's compiled in, or potentially a namespace + return False + filename = _normalize_path(filename) + + if isinstance(path, str): + return filename.startswith(_cache_normalize_path(path)) + + return any(filename.startswith(_cache_normalize_path(entry)) for entry in path) + + +def is_standard_module(modname: str, std_path: Iterable[str] | None = None) -> bool: + """Try to guess if a module is a standard python module (by default, + see `std_path` parameter's description). + + :param modname: name of the module we are interested in + + :param std_path: list of path considered has standard + + :return: + true if the module: + - is located on the path listed in one of the directory in `std_path` + - is a built-in module + """ + warnings.warn( + "is_standard_module() is deprecated. Use, is_stdlib_module() or module_in_path() instead", + DeprecationWarning, + stacklevel=2, + ) + + modname = modname.split(".")[0] + try: + filename = file_from_modpath([modname]) + except ImportError: + # import failed, i'm probably not so wrong by supposing it's + # not standard... + return False + # modules which are not living in a file are considered standard + # (sys and __builtin__ for instance) + if filename is None: + # we assume there are no namespaces in stdlib + return not util.is_namespace(modname) + filename = _normalize_path(filename) + for path in EXT_LIB_DIRS: + if filename.startswith(_cache_normalize_path(path)): + return False + if std_path is None: + std_path = STD_LIB_DIRS + + return any(filename.startswith(_cache_normalize_path(path)) for path in std_path) + + +def is_relative(modname: str, from_file: str) -> bool: + """Return true if the given module name is relative to the given + file name. + + :param modname: name of the module we are interested in + + :param from_file: + path of the module from which modname has been imported + + :return: + true if the module has been imported relatively to `from_file` + """ + if not os.path.isdir(from_file): + from_file = os.path.dirname(from_file) + if from_file in sys.path: + return False + return bool( + importlib.machinery.PathFinder.find_spec( + modname.split(".", maxsplit=1)[0], [from_file] + ) + ) + + +@lru_cache(maxsize=1024) +def cached_os_path_isfile(path: str | os.PathLike[str]) -> bool: + """A cached version of os.path.isfile that helps avoid repetitive I/O""" + return os.path.isfile(path) + + +# internal only functions ##################################################### + + +def _spec_from_modpath( + modpath: list[str], + path: Sequence[str] | None = None, + context: str | None = None, +) -> spec.ModuleSpec: + """Given a mod path (i.e. split module / package name), return the + corresponding spec. + + this function is used internally, see `file_from_modpath`'s + documentation for more information + """ + assert modpath + location = None + if context is not None: + try: + found_spec = spec.find_spec(modpath, [context]) + location = found_spec.location + except ImportError: + found_spec = spec.find_spec(modpath, path) + location = found_spec.location + else: + found_spec = spec.find_spec(modpath, path) + if found_spec.type == spec.ModuleType.PY_COMPILED: + try: + assert found_spec.location is not None + location = get_source_file(found_spec.location) + return found_spec._replace( + location=location, type=spec.ModuleType.PY_SOURCE + ) + except NoSourceFile: + return found_spec._replace(location=location) + elif found_spec.type == spec.ModuleType.C_BUILTIN: + # integrated builtin module + return found_spec._replace(location=None) + elif found_spec.type == spec.ModuleType.PKG_DIRECTORY: + assert found_spec.location is not None + location = _has_init(found_spec.location) + return found_spec._replace(location=location, type=spec.ModuleType.PY_SOURCE) + return found_spec + + +def _is_python_file(filename: str) -> bool: + """Return true if the given filename should be considered as a python file. + + .pyc and .pyo are ignored + """ + return filename.endswith((".py", ".pyi", ".so", ".pyd", ".pyw")) + + +@lru_cache(maxsize=1024) +def _has_init(directory: str) -> str | None: + """If the given directory has a valid __init__ file, return its path, + else return None. + """ + mod_or_pack = os.path.join(directory, "__init__") + for ext in (*PY_SOURCE_EXTS, "pyc", "pyo"): + if os.path.exists(mod_or_pack + "." + ext): + return mod_or_pack + "." + ext + return None + + +def is_namespace(specobj: spec.ModuleSpec) -> bool: + return specobj.type == spec.ModuleType.PY_NAMESPACE + + +def is_directory(specobj: spec.ModuleSpec) -> bool: + return specobj.type == spec.ModuleType.PKG_DIRECTORY + + +def is_module_name_part_of_extension_package_whitelist( + module_name: str, package_whitelist: set[str] +) -> bool: + """ + Returns True if one part of the module name is in the package whitelist. + + >>> is_module_name_part_of_extension_package_whitelist('numpy.core.umath', {'numpy'}) + True + """ + parts = module_name.split(".") + return any( + ".".join(parts[:x]) in package_whitelist for x in range(1, len(parts) + 1) + ) diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/__init__.py b/.venv/lib/python3.12/site-packages/astroid/nodes/__init__.py new file mode 100644 index 0000000..6a67516 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/__init__.py @@ -0,0 +1,303 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Every available node class. + +.. seealso:: + :doc:`ast documentation ` + +All nodes inherit from :class:`~astroid.nodes.node_classes.NodeNG`. +""" + +# Nodes not present in the builtin ast module: DictUnpack, Unknown, and EvaluatedObject. +from astroid.nodes.node_classes import ( + CONST_CLS, + AnnAssign, + Arguments, + Assert, + Assign, + AssignAttr, + AssignName, + AsyncFor, + AsyncWith, + Attribute, + AugAssign, + Await, + BaseContainer, + BinOp, + BoolOp, + Break, + Call, + Compare, + Comprehension, + Const, + Continue, + Decorators, + DelAttr, + Delete, + DelName, + Dict, + DictUnpack, + EmptyNode, + EvaluatedObject, + ExceptHandler, + Expr, + For, + FormattedValue, + Global, + If, + IfExp, + Import, + ImportFrom, + Interpolation, + JoinedStr, + Keyword, + List, + Match, + MatchAs, + MatchCase, + MatchClass, + MatchMapping, + MatchOr, + MatchSequence, + MatchSingleton, + MatchStar, + MatchValue, + Name, + NamedExpr, + NodeNG, + Nonlocal, + ParamSpec, + Pass, + Pattern, + Raise, + Return, + Set, + Slice, + Starred, + Subscript, + TemplateStr, + Try, + TryStar, + Tuple, + TypeAlias, + TypeVar, + TypeVarTuple, + UnaryOp, + Unknown, + While, + With, + Yield, + YieldFrom, + are_exclusive, + const_factory, + unpack_infer, +) +from astroid.nodes.scoped_nodes import ( + SYNTHETIC_ROOT, + AsyncFunctionDef, + ClassDef, + ComprehensionScope, + DictComp, + FunctionDef, + GeneratorExp, + Lambda, + ListComp, + LocalsDictNodeNG, + Module, + SetComp, + builtin_lookup, + function_to_method, + get_wrapping_class, +) +from astroid.nodes.utils import Position + +ALL_NODE_CLASSES = ( + BaseContainer, + AnnAssign, + Arguments, + Assert, + Assign, + AssignAttr, + AssignName, + AsyncFor, + AsyncFunctionDef, + AsyncWith, + Attribute, + AugAssign, + Await, + BinOp, + BoolOp, + Break, + Call, + ClassDef, + Compare, + Comprehension, + ComprehensionScope, + Const, + const_factory, + Continue, + Decorators, + DelAttr, + Delete, + DelName, + Dict, + DictComp, + DictUnpack, + EmptyNode, + EvaluatedObject, + ExceptHandler, + Expr, + For, + FormattedValue, + FunctionDef, + GeneratorExp, + Global, + If, + IfExp, + Import, + ImportFrom, + JoinedStr, + Keyword, + Lambda, + List, + ListComp, + LocalsDictNodeNG, + Match, + MatchAs, + MatchCase, + MatchClass, + MatchMapping, + MatchOr, + MatchSequence, + MatchSingleton, + MatchStar, + MatchValue, + Module, + Name, + NamedExpr, + NodeNG, + Nonlocal, + ParamSpec, + Pass, + Pattern, + Raise, + Return, + Set, + SetComp, + Slice, + Starred, + Subscript, + Try, + TryStar, + Tuple, + TypeAlias, + TypeVar, + TypeVarTuple, + UnaryOp, + Unknown, + While, + With, + Yield, + YieldFrom, +) + +__all__ = ( + "CONST_CLS", + "SYNTHETIC_ROOT", + "AnnAssign", + "Arguments", + "Assert", + "Assign", + "AssignAttr", + "AssignName", + "AsyncFor", + "AsyncFunctionDef", + "AsyncWith", + "Attribute", + "AugAssign", + "Await", + "BaseContainer", + "BinOp", + "BoolOp", + "Break", + "Call", + "ClassDef", + "Compare", + "Comprehension", + "ComprehensionScope", + "Const", + "Continue", + "Decorators", + "DelAttr", + "DelName", + "Delete", + "Dict", + "DictComp", + "DictUnpack", + "EmptyNode", + "EvaluatedObject", + "ExceptHandler", + "Expr", + "For", + "FormattedValue", + "FunctionDef", + "GeneratorExp", + "Global", + "If", + "IfExp", + "Import", + "ImportFrom", + "Interpolation", + "JoinedStr", + "Keyword", + "Lambda", + "List", + "ListComp", + "LocalsDictNodeNG", + "Match", + "MatchAs", + "MatchCase", + "MatchClass", + "MatchMapping", + "MatchOr", + "MatchSequence", + "MatchSingleton", + "MatchStar", + "MatchValue", + "Module", + "Name", + "NamedExpr", + "NodeNG", + "Nonlocal", + "ParamSpec", + "Pass", + "Position", + "Raise", + "Return", + "Set", + "SetComp", + "Slice", + "Starred", + "Subscript", + "TemplateStr", + "Try", + "TryStar", + "Tuple", + "TypeAlias", + "TypeVar", + "TypeVarTuple", + "UnaryOp", + "Unknown", + "While", + "With", + "Yield", + "YieldFrom", + "are_exclusive", + "builtin_lookup", + "const_factory", + "function_to_method", + "get_wrapping_class", + "unpack_infer", +) diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3de25dfec35a069ffb9c874af63415e66e8eb73 GIT binary patch literal 4491 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/as_string.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/as_string.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb0fbc9d60222873f21a5678789ab0f62c7672a3 GIT binary patch literal 51606 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�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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/const.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/const.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..425e2668740a7c8468f153e1ebf9135695959b9f GIT binary patch literal 654 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 YDg3Q%6u(oRZ8IL+$13VoX=L;N1H$BK+yDRo literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/node_ng.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/nodes/__pycache__/node_ng.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7aa00474f12c8c1c4fa5f0c3b422b527e45f1abd GIT binary patch literal 30050 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 h_lk8a@pl1z2j#a-2)Xir-2dac= 1: + return stmts[index - 1] + return None + + +class NoChildrenNode(NodeNG): + """Base nodes for nodes with no children, e.g. Pass.""" + + def get_children(self) -> Iterator[NodeNG]: + yield from () + + +class FilterStmtsBaseNode(NodeNG): + """Base node for statement filtering and assignment type.""" + + def _get_filtered_stmts(self, _, node, _stmts, mystmt: Statement | None): + """Method used in _filter_stmts to get statements and trigger break.""" + if self.statement() is mystmt: + # original node's statement is the assignment, only keep + # current node (gen exp, list comp) + return [node], True + return _stmts, False + + def assign_type(self): + return self + + +class AssignTypeNode(NodeNG): + """Base node for nodes that can 'assign' such as AnnAssign.""" + + def assign_type(self): + return self + + def _get_filtered_stmts(self, lookup_node, node, _stmts, mystmt: Statement | None): + """Method used in filter_stmts.""" + if self is mystmt: + return _stmts, True + if self.statement() is mystmt: + # original node's statement is the assignment, only keep + # current node (gen exp, list comp) + return [node], True + return _stmts, False + + +class ParentAssignNode(AssignTypeNode): + """Base node for nodes whose assign_type is determined by the parent node.""" + + def assign_type(self): + return self.parent.assign_type() + + +class ImportNode(FilterStmtsBaseNode, NoChildrenNode, Statement): + """Base node for From and Import Nodes.""" + + modname: str | None + """The module that is being imported from. + + This is ``None`` for relative imports. + """ + + names: list[tuple[str, str | None]] + """What is being imported from the module. + + Each entry is a :class:`tuple` of the name being imported, + and the alias that the name is assigned to (if any). + """ + + def _infer_name(self, frame, name): + return name + + def do_import_module(self, modname: str | None = None) -> nodes.Module: + """Return the ast for a module whose name is imported by .""" + mymodule = self.root() + level: int | None = getattr(self, "level", None) # Import has no level + if modname is None: + modname = self.modname + # If the module ImportNode is importing is a module with the same name + # as the file that contains the ImportNode we don't want to use the cache + # to make sure we use the import system to get the correct module. + if ( + modname + # pylint: disable-next=no-member # pylint doesn't recognize type of mymodule + and mymodule.relative_to_absolute_name(modname, level) == mymodule.name + ): + use_cache = False + else: + use_cache = True + + # pylint: disable-next=no-member # pylint doesn't recognize type of mymodule + return mymodule.import_module( + modname, + level=level, + relative_only=bool(level and level >= 1), + use_cache=use_cache, + ) + + def real_name(self, asname: str) -> str: + """Get name from 'as' name.""" + for name, _asname in self.names: + if name == "*": + return asname + if not _asname: + name = name.split(".", 1)[0] + _asname = name + if asname == _asname: + return name + raise AttributeInferenceError( + "Could not find original name for {attribute} in {target!r}", + target=self, + attribute=asname, + ) + + +class MultiLineBlockNode(NodeNG): + """Base node for multi-line blocks, e.g. For and FunctionDef. + + Note that this does not apply to every node with a `body` field. + For instance, an If node has a multi-line body, but the body of an + IfExpr is not multi-line, and hence cannot contain Return nodes, + Assign nodes, etc. + """ + + _multi_line_block_fields: ClassVar[tuple[str, ...]] = () + + @cached_property + def _multi_line_blocks(self): + return tuple(getattr(self, field) for field in self._multi_line_block_fields) + + def _get_return_nodes_skip_functions(self): + for block in self._multi_line_blocks: + for child_node in block: + if child_node.is_function: + continue + yield from child_node._get_return_nodes_skip_functions() + + def _get_yield_nodes_skip_functions(self): + for block in self._multi_line_blocks: + for child_node in block: + if child_node.is_function: + continue + yield from child_node._get_yield_nodes_skip_functions() + + def _get_yield_nodes_skip_lambdas(self): + for block in self._multi_line_blocks: + for child_node in block: + if child_node.is_lambda: + continue + yield from child_node._get_yield_nodes_skip_lambdas() + + @cached_property + def _assign_nodes_in_scope(self) -> list[nodes.Assign]: + children_assign_nodes = ( + child_node._assign_nodes_in_scope + for block in self._multi_line_blocks + for child_node in block + ) + return list(itertools.chain.from_iterable(children_assign_nodes)) + + +class MultiLineWithElseBlockNode(MultiLineBlockNode): + """Base node for multi-line blocks that can have else statements.""" + + @cached_property + def blockstart_tolineno(self): + return self.lineno + + def _elsed_block_range( + self, lineno: int, orelse: list[nodes.NodeNG], last: int | None = None + ) -> tuple[int, int]: + """Handle block line numbers range for try/finally, for, if and while + statements. + """ + if lineno == self.fromlineno: + return lineno, lineno + if orelse: + if lineno >= orelse[0].fromlineno: + return lineno, orelse[-1].tolineno + return lineno, orelse[0].fromlineno - 1 + return lineno, last or self.tolineno + + +class LookupMixIn(NodeNG): + """Mixin to look up a name in the right scope.""" + + @lru_cache # noqa + def lookup(self, name: str) -> tuple[LocalsDictNodeNG, list[NodeNG]]: + """Lookup where the given variable is assigned. + + The lookup starts from self's scope. If self is not a frame itself + and the name is found in the inner frame locals, statements will be + filtered to remove ignorable statements according to self's location. + + :param name: The name of the variable to find assignments for. + + :returns: The scope node and the list of assignments associated to the + given name according to the scope where it has been found (locals, + globals or builtin). + """ + return self.scope().scope_lookup(self, name) + + def ilookup(self, name): + """Lookup the inferred values of the given variable. + + :param name: The variable name to find values for. + :type name: str + + :returns: The inferred values of the statements returned from + :meth:`lookup`. + :rtype: iterable + """ + frame, stmts = self.lookup(name) + context = InferenceContext() + return bases._infer_stmts(stmts, context, frame) + + +def _reflected_name(name) -> str: + return "__r" + name[2:] + + +def _augmented_name(name) -> str: + return "__i" + name[2:] + + +BIN_OP_METHOD = { + "+": "__add__", + "-": "__sub__", + "/": "__truediv__", + "//": "__floordiv__", + "*": "__mul__", + "**": "__pow__", + "%": "__mod__", + "&": "__and__", + "|": "__or__", + "^": "__xor__", + "<<": "__lshift__", + ">>": "__rshift__", + "@": "__matmul__", +} + +REFLECTED_BIN_OP_METHOD = { + key: _reflected_name(value) for (key, value) in BIN_OP_METHOD.items() +} +AUGMENTED_OP_METHOD = { + key + "=": _augmented_name(value) for (key, value) in BIN_OP_METHOD.items() +} + + +class OperatorNode(NodeNG): + @staticmethod + def _filter_operation_errors( + infer_callable: Callable[ + [InferenceContext | None], + Generator[InferenceResult | util.BadOperationMessage], + ], + context: InferenceContext | None, + error: type[util.BadOperationMessage], + ) -> Generator[InferenceResult]: + for result in infer_callable(context): + if isinstance(result, error): + # For the sake of .infer(), we don't care about operation + # errors, which is the job of a linter. So return something + # which shows that we can't infer the result. + yield util.Uninferable + else: + yield result + + @staticmethod + def _is_not_implemented(const) -> bool: + """Check if the given const node is NotImplemented.""" + return isinstance(const, nodes.Const) and const.value is NotImplemented + + @staticmethod + def _infer_old_style_string_formatting( + instance: nodes.Const, other: nodes.NodeNG, context: InferenceContext + ) -> tuple[util.UninferableBase | nodes.Const]: + """Infer the result of '"string" % ...'. + + TODO: Instead of returning Uninferable we should rely + on the call to '%' to see if the result is actually uninferable. + """ + if isinstance(other, nodes.Tuple): + if util.Uninferable in other.elts: + return (util.Uninferable,) + inferred_positional = [util.safe_infer(i, context) for i in other.elts] + if all(isinstance(i, nodes.Const) for i in inferred_positional): + values = tuple(i.value for i in inferred_positional) + else: + values = None + elif isinstance(other, nodes.Dict): + values: dict[Any, Any] = {} + for pair in other.items: + key = util.safe_infer(pair[0], context) + if not isinstance(key, nodes.Const): + return (util.Uninferable,) + value = util.safe_infer(pair[1], context) + if not isinstance(value, nodes.Const): + return (util.Uninferable,) + values[key.value] = value.value + elif isinstance(other, nodes.Const): + values = other.value + else: + return (util.Uninferable,) + + try: + return (nodes.const_factory(instance.value % values),) + except (TypeError, KeyError, ValueError): + return (util.Uninferable,) + + @staticmethod + def _invoke_binop_inference( + instance: InferenceResult, + opnode: nodes.AugAssign | nodes.BinOp, + op: str, + other: InferenceResult, + context: InferenceContext, + method_name: str, + ) -> Generator[InferenceResult]: + """Invoke binary operation inference on the given instance.""" + methods = dunder_lookup.lookup(instance, method_name) + context = bind_context_to_node(context, instance) + method = methods[0] + context.callcontext.callee = method + + if ( + isinstance(instance, nodes.Const) + and isinstance(instance.value, str) + and op == "%" + ): + return iter( + OperatorNode._infer_old_style_string_formatting( + instance, other, context + ) + ) + + try: + inferred = next(method.infer(context=context)) + except StopIteration as e: + raise InferenceError(node=method, context=context) from e + if isinstance(inferred, util.UninferableBase): + raise InferenceError + if not isinstance( + instance, + (nodes.Const, nodes.Tuple, nodes.List, nodes.ClassDef, bases.Instance), + ): + raise InferenceError # pragma: no cover # Used as a failsafe + return instance.infer_binary_op(opnode, op, other, context, inferred) + + @staticmethod + def _aug_op( + instance: InferenceResult, + opnode: nodes.AugAssign, + op: str, + other: InferenceResult, + context: InferenceContext, + reverse: bool = False, + ) -> partial[Generator[InferenceResult]]: + """Get an inference callable for an augmented binary operation.""" + method_name = AUGMENTED_OP_METHOD[op] + return partial( + OperatorNode._invoke_binop_inference, + instance=instance, + op=op, + opnode=opnode, + other=other, + context=context, + method_name=method_name, + ) + + @staticmethod + def _bin_op( + instance: InferenceResult, + opnode: nodes.AugAssign | nodes.BinOp, + op: str, + other: InferenceResult, + context: InferenceContext, + reverse: bool = False, + ) -> partial[Generator[InferenceResult]]: + """Get an inference callable for a normal binary operation. + + If *reverse* is True, then the reflected method will be used instead. + """ + if reverse: + method_name = REFLECTED_BIN_OP_METHOD[op] + else: + method_name = BIN_OP_METHOD[op] + return partial( + OperatorNode._invoke_binop_inference, + instance=instance, + op=op, + opnode=opnode, + other=other, + context=context, + method_name=method_name, + ) + + @staticmethod + def _bin_op_or_union_type( + left: bases.UnionType | nodes.ClassDef | nodes.Const, + right: bases.UnionType | nodes.ClassDef | nodes.Const, + ) -> Generator[InferenceResult]: + """Create a new UnionType instance for binary or, e.g. int | str.""" + yield bases.UnionType(left, right) + + @staticmethod + def _get_binop_contexts(context, left, right): + """Get contexts for binary operations. + + This will return two inference contexts, the first one + for x.__op__(y), the other one for y.__rop__(x), where + only the arguments are inversed. + """ + # The order is important, since the first one should be + # left.__op__(right). + for arg in (right, left): + new_context = context.clone() + new_context.callcontext = CallContext(args=[arg]) + new_context.boundnode = None + yield new_context + + @staticmethod + def _same_type(type1, type2) -> bool: + """Check if type1 is the same as type2.""" + return type1.qname() == type2.qname() + + @staticmethod + def _get_aug_flow( + left: InferenceResult, + left_type: InferenceResult | None, + aug_opnode: nodes.AugAssign, + right: InferenceResult, + right_type: InferenceResult | None, + context: InferenceContext, + reverse_context: InferenceContext, + ) -> list[partial[Generator[InferenceResult]]]: + """Get the flow for augmented binary operations. + + The rules are a bit messy: + + * if left and right have the same type, then left.__augop__(right) + is first tried and then left.__op__(right). + * if left and right are unrelated typewise, then + left.__augop__(right) is tried, then left.__op__(right) + is tried and then right.__rop__(left) is tried. + * if left is a subtype of right, then left.__augop__(right) + is tried and then left.__op__(right). + * if left is a supertype of right, then left.__augop__(right) + is tried, then right.__rop__(left) and then + left.__op__(right) + """ + from astroid import helpers # pylint: disable=import-outside-toplevel + + bin_op = aug_opnode.op.strip("=") + aug_op = aug_opnode.op + if OperatorNode._same_type(left_type, right_type): + methods = [ + OperatorNode._aug_op(left, aug_opnode, aug_op, right, context), + OperatorNode._bin_op(left, aug_opnode, bin_op, right, context), + ] + elif helpers.is_subtype(left_type, right_type): + methods = [ + OperatorNode._aug_op(left, aug_opnode, aug_op, right, context), + OperatorNode._bin_op(left, aug_opnode, bin_op, right, context), + ] + elif helpers.is_supertype(left_type, right_type): + methods = [ + OperatorNode._aug_op(left, aug_opnode, aug_op, right, context), + OperatorNode._bin_op( + right, aug_opnode, bin_op, left, reverse_context, reverse=True + ), + OperatorNode._bin_op(left, aug_opnode, bin_op, right, context), + ] + else: + methods = [ + OperatorNode._aug_op(left, aug_opnode, aug_op, right, context), + OperatorNode._bin_op(left, aug_opnode, bin_op, right, context), + OperatorNode._bin_op( + right, aug_opnode, bin_op, left, reverse_context, reverse=True + ), + ] + return methods + + @staticmethod + def _get_binop_flow( + left: InferenceResult, + left_type: InferenceResult | None, + binary_opnode: nodes.AugAssign | nodes.BinOp, + right: InferenceResult, + right_type: InferenceResult | None, + context: InferenceContext, + reverse_context: InferenceContext, + ) -> list[partial[Generator[InferenceResult]]]: + """Get the flow for binary operations. + + The rules are a bit messy: + + * if left and right have the same type, then only one + method will be called, left.__op__(right) + * if left and right are unrelated typewise, then first + left.__op__(right) is tried and if this does not exist + or returns NotImplemented, then right.__rop__(left) is tried. + * if left is a subtype of right, then only left.__op__(right) + is tried. + * if left is a supertype of right, then right.__rop__(left) + is first tried and then left.__op__(right) + """ + from astroid import helpers # pylint: disable=import-outside-toplevel + + op = binary_opnode.op + if OperatorNode._same_type(left_type, right_type): + methods = [OperatorNode._bin_op(left, binary_opnode, op, right, context)] + elif helpers.is_subtype(left_type, right_type): + methods = [OperatorNode._bin_op(left, binary_opnode, op, right, context)] + elif helpers.is_supertype(left_type, right_type): + methods = [ + OperatorNode._bin_op( + right, binary_opnode, op, left, reverse_context, reverse=True + ), + OperatorNode._bin_op(left, binary_opnode, op, right, context), + ] + else: + methods = [ + OperatorNode._bin_op(left, binary_opnode, op, right, context), + OperatorNode._bin_op( + right, binary_opnode, op, left, reverse_context, reverse=True + ), + ] + + # pylint: disable = too-many-boolean-expressions + if ( + op == "|" + and ( + isinstance(left, (bases.UnionType, nodes.ClassDef)) + or (isinstance(left, nodes.Const) and left.value is None) + ) + and ( + isinstance(right, (bases.UnionType, nodes.ClassDef)) + or (isinstance(right, nodes.Const) and right.value is None) + ) + ): + methods.extend([partial(OperatorNode._bin_op_or_union_type, left, right)]) + return methods + + @staticmethod + def _infer_binary_operation( + left: InferenceResult, + right: InferenceResult, + binary_opnode: nodes.AugAssign | nodes.BinOp, + context: InferenceContext, + flow_factory: GetFlowFactory, + ) -> Generator[InferenceResult | util.BadBinaryOperationMessage]: + """Infer a binary operation between a left operand and a right operand. + + This is used by both normal binary operations and augmented binary + operations, the only difference is the flow factory used. + """ + from astroid import helpers # pylint: disable=import-outside-toplevel + + context, reverse_context = OperatorNode._get_binop_contexts( + context, left, right + ) + left_type = helpers.object_type(left) + right_type = helpers.object_type(right) + methods = flow_factory( + left, left_type, binary_opnode, right, right_type, context, reverse_context + ) + for method in methods: + try: + results = list(method()) + except AttributeError: + continue + except AttributeInferenceError: + continue + except InferenceError: + yield util.Uninferable + return + else: + if any(isinstance(result, util.UninferableBase) for result in results): + yield util.Uninferable + return + + if all(map(OperatorNode._is_not_implemented, results)): + continue + not_implemented = sum( + 1 for result in results if OperatorNode._is_not_implemented(result) + ) + if not_implemented and not_implemented != len(results): + # Can't infer yet what this is. + yield util.Uninferable + return + + yield from results + return + + # The operation doesn't seem to be supported so let the caller know about it + yield util.BadBinaryOperationMessage(left_type, binary_opnode.op, right_type) diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/as_string.py b/.venv/lib/python3.12/site-packages/astroid/nodes/as_string.py new file mode 100644 index 0000000..01007b9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/as_string.py @@ -0,0 +1,740 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""This module renders Astroid nodes as string""" + +from __future__ import annotations + +import warnings +from collections.abc import Iterator +from typing import TYPE_CHECKING + +from astroid import nodes + +if TYPE_CHECKING: + from astroid import objects + +# pylint: disable=unused-argument + +DOC_NEWLINE = "\0" + + +# Visitor pattern require argument all the time and is not better with staticmethod +# noinspection PyUnusedLocal,PyMethodMayBeStatic +class AsStringVisitor: + """Visitor to render an Astroid node as a valid python code string""" + + def __init__(self, indent: str = " "): + self.indent: str = indent + + def __call__(self, node: nodes.NodeNG) -> str: + """Makes this visitor behave as a simple function""" + return node.accept(self).replace(DOC_NEWLINE, "\n") + + def _docs_dedent(self, doc_node: nodes.Const | None) -> str: + """Stop newlines in docs being indented by self._stmt_list""" + if not doc_node: + return "" + + return '\n{}"""{}"""'.format( + self.indent, doc_node.value.replace("\n", DOC_NEWLINE) + ) + + def _stmt_list(self, stmts: list, indent: bool = True) -> str: + """return a list of nodes to string""" + stmts_str: str = "\n".join( + nstr for nstr in [n.accept(self) for n in stmts] if nstr + ) + if not indent: + return stmts_str + + return self.indent + stmts_str.replace("\n", "\n" + self.indent) + + def _precedence_parens( + self, node: nodes.NodeNG, child: nodes.NodeNG, is_left: bool = True + ) -> str: + """Wrap child in parens only if required to keep same semantics""" + if self._should_wrap(node, child, is_left): + return f"({child.accept(self)})" + + return child.accept(self) + + def _should_wrap( + self, node: nodes.NodeNG, child: nodes.NodeNG, is_left: bool + ) -> bool: + """Wrap child if: + - it has lower precedence + - same precedence with position opposite to associativity direction + """ + node_precedence = node.op_precedence() + child_precedence = child.op_precedence() + + if node_precedence > child_precedence: + # 3 * (4 + 5) + return True + + if ( + node_precedence == child_precedence + and is_left != node.op_left_associative() + ): + # 3 - (4 - 5) + # (2**3)**4 + return True + + return False + + # visit_ methods ########################################### + + def visit_await(self, node: nodes.Await) -> str: + return f"await {node.value.accept(self)}" + + def visit_asyncwith(self, node: nodes.AsyncWith) -> str: + return f"async {self.visit_with(node)}" + + def visit_asyncfor(self, node: nodes.AsyncFor) -> str: + return f"async {self.visit_for(node)}" + + def visit_arguments(self, node: nodes.Arguments) -> str: + """return an nodes.Arguments node as string""" + return node.format_args() + + def visit_assignattr(self, node: nodes.AssignAttr) -> str: + """return an nodes.AssignAttr node as string""" + return self.visit_attribute(node) + + def visit_assert(self, node: nodes.Assert) -> str: + """return an nodes.Assert node as string""" + if node.fail: + return f"assert {node.test.accept(self)}, {node.fail.accept(self)}" + return f"assert {node.test.accept(self)}" + + def visit_assignname(self, node: nodes.AssignName) -> str: + """return an nodes.AssignName node as string""" + return node.name + + def visit_assign(self, node: nodes.Assign) -> str: + """return an nodes.Assign node as string""" + lhs = " = ".join(n.accept(self) for n in node.targets) + return f"{lhs} = {node.value.accept(self)}" + + def visit_augassign(self, node: nodes.AugAssign) -> str: + """return an nodes.AugAssign node as string""" + return f"{node.target.accept(self)} {node.op} {node.value.accept(self)}" + + def visit_annassign(self, node: nodes.AnnAssign) -> str: + """Return an nodes.AnnAssign node as string""" + + target = node.target.accept(self) + annotation = node.annotation.accept(self) + if node.value is None: + return f"{target}: {annotation}" + return f"{target}: {annotation} = {node.value.accept(self)}" + + def visit_binop(self, node: nodes.BinOp) -> str: + """return an nodes.BinOp node as string""" + left = self._precedence_parens(node, node.left) + right = self._precedence_parens(node, node.right, is_left=False) + if node.op == "**": + return f"{left}{node.op}{right}" + + return f"{left} {node.op} {right}" + + def visit_boolop(self, node: nodes.BoolOp) -> str: + """return an nodes.BoolOp node as string""" + values = [f"{self._precedence_parens(node, n)}" for n in node.values] + return (f" {node.op} ").join(values) + + def visit_break(self, node: nodes.Break) -> str: + """return an nodes.Break node as string""" + return "break" + + def visit_call(self, node: nodes.Call) -> str: + """return an nodes.Call node as string""" + expr_str = self._precedence_parens(node, node.func) + args = [arg.accept(self) for arg in node.args] + if node.keywords: + keywords = [kwarg.accept(self) for kwarg in node.keywords] + else: + keywords = [] + + args.extend(keywords) + return f"{expr_str}({', '.join(args)})" + + def _handle_type_params( + self, type_params: list[nodes.TypeVar | nodes.ParamSpec | nodes.TypeVarTuple] + ) -> str: + return ( + f"[{', '.join(tp.accept(self) for tp in type_params)}]" + if type_params + else "" + ) + + def visit_classdef(self, node: nodes.ClassDef) -> str: + """return an nodes.ClassDef node as string""" + decorate = node.decorators.accept(self) if node.decorators else "" + type_params = self._handle_type_params(node.type_params) + args = [n.accept(self) for n in node.bases] + if node._metaclass and not node.has_metaclass_hack(): + args.append("metaclass=" + node._metaclass.accept(self)) + args += [n.accept(self) for n in node.keywords] + args_str = f"({', '.join(args)})" if args else "" + docs = self._docs_dedent(node.doc_node) + return "\n\n{}class {}{}{}:{}\n{}\n".format( + decorate, node.name, type_params, args_str, docs, self._stmt_list(node.body) + ) + + def visit_compare(self, node: nodes.Compare) -> str: + """return an nodes.Compare node as string""" + rhs_str = " ".join( + f"{op} {self._precedence_parens(node, expr, is_left=False)}" + for op, expr in node.ops + ) + return f"{self._precedence_parens(node, node.left)} {rhs_str}" + + def visit_comprehension(self, node: nodes.Comprehension) -> str: + """return an nodes.Comprehension node as string""" + ifs = "".join(f" if {n.accept(self)}" for n in node.ifs) + generated = f"for {node.target.accept(self)} in {node.iter.accept(self)}{ifs}" + return f"{'async ' if node.is_async else ''}{generated}" + + def visit_const(self, node: nodes.Const) -> str: + """return an nodes.Const node as string""" + if node.value is Ellipsis: + return "..." + return repr(node.value) + + def visit_continue(self, node: nodes.Continue) -> str: + """return an nodes.Continue node as string""" + return "continue" + + def visit_delete(self, node: nodes.Delete) -> str: + """return an nodes.Delete node as string""" + return f"del {', '.join(child.accept(self) for child in node.targets)}" + + def visit_delattr(self, node: nodes.DelAttr) -> str: + """return an nodes.DelAttr node as string""" + return self.visit_attribute(node) + + def visit_delname(self, node: nodes.DelName) -> str: + """return an nodes.DelName node as string""" + return node.name + + def visit_decorators(self, node: nodes.Decorators) -> str: + """return an nodes.Decorators node as string""" + return "@%s\n" % "\n@".join(item.accept(self) for item in node.nodes) + + def visit_dict(self, node: nodes.Dict) -> str: + """return an nodes.Dict node as string""" + return "{%s}" % ", ".join(self._visit_dict(node)) + + def _visit_dict(self, node: nodes.Dict) -> Iterator[str]: + for key, value in node.items: + key = key.accept(self) + value = value.accept(self) + if key == "**": + # It can only be a DictUnpack node. + yield key + value + else: + yield f"{key}: {value}" + + def visit_dictunpack(self, node: nodes.DictUnpack) -> str: + return "**" + + def visit_dictcomp(self, node: nodes.DictComp) -> str: + """return an nodes.DictComp node as string""" + return "{{{}: {} {}}}".format( + node.key.accept(self), + node.value.accept(self), + " ".join(n.accept(self) for n in node.generators), + ) + + def visit_expr(self, node: nodes.Expr) -> str: + """return an nodes.Expr node as string""" + return node.value.accept(self) + + def visit_emptynode(self, node: nodes.EmptyNode) -> str: + """dummy method for visiting an EmptyNode""" + return "" + + def visit_excepthandler(self, node: nodes.ExceptHandler) -> str: + n = "except" + if isinstance(getattr(node, "parent", None), nodes.TryStar): + n = "except*" + if node.type: + if node.name: + excs = f"{n} {node.type.accept(self)} as {node.name.accept(self)}" + else: + excs = f"{n} {node.type.accept(self)}" + else: + excs = f"{n}" + return f"{excs}:\n{self._stmt_list(node.body)}" + + def visit_empty(self, node: nodes.EmptyNode) -> str: + """return an EmptyNode as string""" + return "" + + def visit_for(self, node: nodes.For) -> str: + """return an nodes.For node as string""" + fors = "for {} in {}:\n{}".format( + node.target.accept(self), node.iter.accept(self), self._stmt_list(node.body) + ) + if node.orelse: + fors = f"{fors}\nelse:\n{self._stmt_list(node.orelse)}" + return fors + + def visit_importfrom(self, node: nodes.ImportFrom) -> str: + """return an nodes.ImportFrom node as string""" + return "from {} import {}".format( + "." * (node.level or 0) + node.modname, _import_string(node.names) + ) + + def visit_joinedstr(self, node: nodes.JoinedStr) -> str: + string = "".join( + # Use repr on the string literal parts + # to get proper escapes, e.g. \n, \\, \" + # But strip the quotes off the ends + # (they will always be one character: ' or ") + ( + repr(value.value)[1:-1] + # Literal braces must be doubled to escape them + .replace("{", "{{").replace("}", "}}") + # Each value in values is either a string literal (Const) + # or a FormattedValue + if type(value).__name__ == "Const" + else value.accept(self) + ) + for value in node.values + ) + + # Try to find surrounding quotes that don't appear at all in the string. + # Because the formatted values inside {} can't contain backslash (\) + # using a triple quote is sometimes necessary + for quote in ("'", '"', '"""', "'''"): + if quote not in string: + break + + return "f" + quote + string + quote + + def visit_formattedvalue(self, node: nodes.FormattedValue) -> str: + result = node.value.accept(self) + if node.conversion and node.conversion >= 0: + # e.g. if node.conversion == 114: result += "!r" + result += "!" + chr(node.conversion) + if node.format_spec: + # The format spec is itself a JoinedString, i.e. an f-string + # We strip the f and quotes of the ends + result += ":" + node.format_spec.accept(self)[2:-1] + return "{%s}" % result + + def handle_functiondef(self, node: nodes.FunctionDef, keyword: str) -> str: + """return a (possibly async) function definition node as string""" + decorate = node.decorators.accept(self) if node.decorators else "" + type_params = self._handle_type_params(node.type_params) + docs = self._docs_dedent(node.doc_node) + trailer = ":" + if node.returns: + return_annotation = " -> " + node.returns.as_string() + trailer = return_annotation + ":" + def_format = "\n%s%s %s%s(%s)%s%s\n%s" + return def_format % ( + decorate, + keyword, + node.name, + type_params, + node.args.accept(self), + trailer, + docs, + self._stmt_list(node.body), + ) + + def visit_functiondef(self, node: nodes.FunctionDef) -> str: + """return an nodes.FunctionDef node as string""" + return self.handle_functiondef(node, "def") + + def visit_asyncfunctiondef(self, node: nodes.AsyncFunctionDef) -> str: + """return an nodes.AsyncFunction node as string""" + return self.handle_functiondef(node, "async def") + + def visit_generatorexp(self, node: nodes.GeneratorExp) -> str: + """return an nodes.GeneratorExp node as string""" + return "({} {})".format( + node.elt.accept(self), " ".join(n.accept(self) for n in node.generators) + ) + + def visit_attribute( + self, node: nodes.Attribute | nodes.AssignAttr | nodes.DelAttr + ) -> str: + """return an nodes.Attribute node as string""" + try: + left = self._precedence_parens(node, node.expr) + except RecursionError: + warnings.warn( + "Recursion limit exhausted; defaulting to adding parentheses.", + UserWarning, + stacklevel=2, + ) + left = f"({node.expr.accept(self)})" + if left.isdigit(): + left = f"({left})" + return f"{left}.{node.attrname}" + + def visit_global(self, node: nodes.Global) -> str: + """return an nodes.Global node as string""" + return f"global {', '.join(node.names)}" + + def visit_if(self, node: nodes.If) -> str: + """return an nodes.If node as string""" + ifs = [f"if {node.test.accept(self)}:\n{self._stmt_list(node.body)}"] + if node.has_elif_block(): + ifs.append(f"el{self._stmt_list(node.orelse, indent=False)}") + elif node.orelse: + ifs.append(f"else:\n{self._stmt_list(node.orelse)}") + return "\n".join(ifs) + + def visit_ifexp(self, node: nodes.IfExp) -> str: + """return an nodes.IfExp node as string""" + return "{} if {} else {}".format( + self._precedence_parens(node, node.body, is_left=True), + self._precedence_parens(node, node.test, is_left=True), + self._precedence_parens(node, node.orelse, is_left=False), + ) + + def visit_import(self, node: nodes.Import) -> str: + """return an nodes.Import node as string""" + return f"import {_import_string(node.names)}" + + def visit_keyword(self, node: nodes.Keyword) -> str: + """return an nodes.Keyword node as string""" + if node.arg is None: + return f"**{node.value.accept(self)}" + return f"{node.arg}={node.value.accept(self)}" + + def visit_lambda(self, node: nodes.Lambda) -> str: + """return an nodes.Lambda node as string""" + args = node.args.accept(self) + body = node.body.accept(self) + if args: + return f"lambda {args}: {body}" + + return f"lambda: {body}" + + def visit_list(self, node: nodes.List) -> str: + """return an nodes.List node as string""" + return f"[{', '.join(child.accept(self) for child in node.elts)}]" + + def visit_listcomp(self, node: nodes.ListComp) -> str: + """return an nodes.ListComp node as string""" + return "[{} {}]".format( + node.elt.accept(self), " ".join(n.accept(self) for n in node.generators) + ) + + def visit_module(self, node: nodes.Module) -> str: + """return an nodes.Module node as string""" + docs = f'"""{node.doc_node.value}"""\n\n' if node.doc_node else "" + return docs + "\n".join(n.accept(self) for n in node.body) + "\n\n" + + def visit_name(self, node: nodes.Name) -> str: + """return an nodes.Name node as string""" + return node.name + + def visit_namedexpr(self, node: nodes.NamedExpr) -> str: + """Return an assignment expression node as string""" + target = node.target.accept(self) + value = node.value.accept(self) + return f"{target} := {value}" + + def visit_nonlocal(self, node: nodes.Nonlocal) -> str: + """return an nodes.Nonlocal node as string""" + return f"nonlocal {', '.join(node.names)}" + + def visit_paramspec(self, node: nodes.ParamSpec) -> str: + """return an nodes.ParamSpec node as string""" + default_value_str = ( + f" = {node.default_value.accept(self)}" if node.default_value else "" + ) + return f"**{node.name.accept(self)}{default_value_str}" + + def visit_pass(self, node: nodes.Pass) -> str: + """return an nodes.Pass node as string""" + return "pass" + + def visit_partialfunction(self, node: objects.PartialFunction) -> str: + """Return an objects.PartialFunction as string.""" + return self.visit_functiondef(node) + + def visit_raise(self, node: nodes.Raise) -> str: + """return an nodes.Raise node as string""" + if node.exc: + if node.cause: + return f"raise {node.exc.accept(self)} from {node.cause.accept(self)}" + return f"raise {node.exc.accept(self)}" + return "raise" + + def visit_return(self, node: nodes.Return) -> str: + """return an nodes.Return node as string""" + if node.is_tuple_return() and len(node.value.elts) > 1: + elts = [child.accept(self) for child in node.value.elts] + return f"return {', '.join(elts)}" + + if node.value: + return f"return {node.value.accept(self)}" + + return "return" + + def visit_set(self, node: nodes.Set) -> str: + """return an nodes.Set node as string""" + return "{%s}" % ", ".join(child.accept(self) for child in node.elts) + + def visit_setcomp(self, node: nodes.SetComp) -> str: + """return an nodes.SetComp node as string""" + return "{{{} {}}}".format( + node.elt.accept(self), " ".join(n.accept(self) for n in node.generators) + ) + + def visit_slice(self, node: nodes.Slice) -> str: + """return an nodes.Slice node as string""" + lower = node.lower.accept(self) if node.lower else "" + upper = node.upper.accept(self) if node.upper else "" + step = node.step.accept(self) if node.step else "" + if step: + return f"{lower}:{upper}:{step}" + return f"{lower}:{upper}" + + def visit_subscript(self, node: nodes.Subscript) -> str: + """return an nodes.Subscript node as string""" + idx = node.slice + if idx.__class__.__name__.lower() == "index": + idx = idx.value + idxstr = idx.accept(self) + if idx.__class__.__name__.lower() == "tuple" and idx.elts: + # Remove parenthesis in tuple and extended slice. + # a[(::1, 1:)] is not valid syntax. + idxstr = idxstr[1:-1] + return f"{self._precedence_parens(node, node.value)}[{idxstr}]" + + def visit_try(self, node: nodes.Try) -> str: + """return an nodes.Try node as string""" + trys = [f"try:\n{self._stmt_list(node.body)}"] + for handler in node.handlers: + trys.append(handler.accept(self)) + if node.orelse: + trys.append(f"else:\n{self._stmt_list(node.orelse)}") + if node.finalbody: + trys.append(f"finally:\n{self._stmt_list(node.finalbody)}") + return "\n".join(trys) + + def visit_trystar(self, node: nodes.TryStar) -> str: + """return an nodes.TryStar node as string""" + trys = [f"try:\n{self._stmt_list(node.body)}"] + for handler in node.handlers: + trys.append(handler.accept(self)) + if node.orelse: + trys.append(f"else:\n{self._stmt_list(node.orelse)}") + if node.finalbody: + trys.append(f"finally:\n{self._stmt_list(node.finalbody)}") + return "\n".join(trys) + + def visit_tuple(self, node: nodes.Tuple) -> str: + """return an nodes.Tuple node as string""" + if len(node.elts) == 1: + return f"({node.elts[0].accept(self)}, )" + return f"({', '.join(child.accept(self) for child in node.elts)})" + + def visit_typealias(self, node: nodes.TypeAlias) -> str: + """return an nodes.TypeAlias node as string""" + type_params = self._handle_type_params(node.type_params) + return f"type {node.name.accept(self)}{type_params} = {node.value.accept(self)}" + + def visit_typevar(self, node: nodes.TypeVar) -> str: + """return an nodes.TypeVar node as string""" + bound_str = f": {node.bound.accept(self)}" if node.bound else "" + default_value_str = ( + f" = {node.default_value.accept(self)}" if node.default_value else "" + ) + return f"{node.name.accept(self)}{bound_str}{default_value_str}" + + def visit_typevartuple(self, node: nodes.TypeVarTuple) -> str: + """return an nodes.TypeVarTuple node as string""" + default_value_str = ( + f" = {node.default_value.accept(self)}" if node.default_value else "" + ) + return f"*{node.name.accept(self)}{default_value_str}" + + def visit_unaryop(self, node: nodes.UnaryOp) -> str: + """return an nodes.UnaryOp node as string""" + if node.op == "not": + operator = "not " + else: + operator = node.op + return f"{operator}{self._precedence_parens(node, node.operand)}" + + def visit_while(self, node: nodes.While) -> str: + """return an nodes.While node as string""" + whiles = f"while {node.test.accept(self)}:\n{self._stmt_list(node.body)}" + if node.orelse: + whiles = f"{whiles}\nelse:\n{self._stmt_list(node.orelse)}" + return whiles + + def visit_with(self, node: nodes.With) -> str: # 'with' without 'as' is possible + """return an nodes.With node as string""" + items = ", ".join( + f"{expr.accept(self)}" + ((v and f" as {v.accept(self)}") or "") + for expr, v in node.items + ) + return f"with {items}:\n{self._stmt_list(node.body)}" + + def visit_yield(self, node: nodes.Yield) -> str: + """yield an ast.Yield node as string""" + yi_val = (" " + node.value.accept(self)) if node.value else "" + expr = "yield" + yi_val + if node.parent.is_statement: + return expr + + return f"({expr})" + + def visit_yieldfrom(self, node: nodes.YieldFrom) -> str: + """Return an nodes.YieldFrom node as string.""" + yi_val = (" " + node.value.accept(self)) if node.value else "" + expr = "yield from" + yi_val + if node.parent.is_statement: + return expr + + return f"({expr})" + + def visit_starred(self, node: nodes.Starred) -> str: + """return Starred node as string""" + return "*" + node.value.accept(self) + + def visit_match(self, node: nodes.Match) -> str: + """Return an nodes.Match node as string.""" + return f"match {node.subject.accept(self)}:\n{self._stmt_list(node.cases)}" + + def visit_matchcase(self, node: nodes.MatchCase) -> str: + """Return an nodes.MatchCase node as string.""" + guard_str = f" if {node.guard.accept(self)}" if node.guard else "" + return ( + f"case {node.pattern.accept(self)}{guard_str}:\n" + f"{self._stmt_list(node.body)}" + ) + + def visit_matchvalue(self, node: nodes.MatchValue) -> str: + """Return an nodes.MatchValue node as string.""" + return node.value.accept(self) + + @staticmethod + def visit_matchsingleton(node: nodes.MatchSingleton) -> str: + """Return an nodes.MatchSingleton node as string.""" + return str(node.value) + + def visit_matchsequence(self, node: nodes.MatchSequence) -> str: + """Return an nodes.MatchSequence node as string.""" + if node.patterns is None: + return "[]" + return f"[{', '.join(p.accept(self) for p in node.patterns)}]" + + def visit_matchmapping(self, node: nodes.MatchMapping) -> str: + """Return an nodes..MatchMapping node as string.""" + mapping_strings: list[str] = [] + if node.keys and node.patterns: + mapping_strings.extend( + f"{key.accept(self)}: {p.accept(self)}" + for key, p in zip(node.keys, node.patterns) + ) + if node.rest: + mapping_strings.append(f"**{node.rest.accept(self)}") + return f"{'{'}{', '.join(mapping_strings)}{'}'}" + + def visit_matchclass(self, node: nodes.MatchClass) -> str: + """Return an nodes..MatchClass node as string.""" + if node.cls is None: + raise AssertionError(f"{node} does not have a 'cls' node") + class_strings: list[str] = [] + if node.patterns: + class_strings.extend(p.accept(self) for p in node.patterns) + if node.kwd_attrs and node.kwd_patterns: + for attr, pattern in zip(node.kwd_attrs, node.kwd_patterns): + class_strings.append(f"{attr}={pattern.accept(self)}") + return f"{node.cls.accept(self)}({', '.join(class_strings)})" + + def visit_matchstar(self, node: nodes.MatchStar) -> str: + """Return an nodes..MatchStar node as string.""" + return f"*{node.name.accept(self) if node.name else '_'}" + + def visit_matchas(self, node: nodes.MatchAs) -> str: + """Return an nodes..MatchAs node as string.""" + if isinstance( + node.parent, (nodes.MatchSequence, nodes.MatchMapping, nodes.MatchClass) + ): + return node.name.accept(self) if node.name else "_" + return ( + f"{node.pattern.accept(self) if node.pattern else '_'}" + f"{f' as {node.name.accept(self)}' if node.name else ''}" + ) + + def visit_matchor(self, node: nodes.MatchOr) -> str: + """Return an nodes.MatchOr node as string.""" + if node.patterns is None: + raise AssertionError(f"{node} does not have pattern nodes") + return " | ".join(p.accept(self) for p in node.patterns) + + def visit_templatestr(self, node: nodes.TemplateStr) -> str: + """Return an nodes.TemplateStr node as string.""" + string = "" + for value in node.values: + match value: + case nodes.Interpolation(): + string += "{" + value.accept(self) + "}" + case _: + string += value.accept(self)[1:-1] + for quote in ("'", '"', '"""', "'''"): + if quote not in string: + break + return "t" + quote + string + quote + + def visit_interpolation(self, node: nodes.Interpolation) -> str: + """Return an nodes.Interpolation node as string.""" + result = f"{node.str}" + if node.conversion and node.conversion >= 0: + # e.g. if node.conversion == 114: result += "!r" + result += "!" + chr(node.conversion) + if node.format_spec: + # The format spec is itself a JoinedString, i.e. an f-string + # We strip the f and quotes of the ends + result += ":" + node.format_spec.accept(self)[2:-1] + return result + + # These aren't for real AST nodes, but for inference objects. + + def visit_frozenset(self, node: objects.FrozenSet) -> str: + return node.parent.accept(self) + + def visit_super(self, node: objects.Super) -> str: + return node.parent.accept(self) + + def visit_uninferable(self, node) -> str: + return str(node) + + def visit_property(self, node: objects.Property) -> str: + return node.function.accept(self) + + def visit_evaluatedobject(self, node: nodes.EvaluatedObject) -> str: + return node.original.accept(self) + + def visit_unknown(self, node: nodes.Unknown) -> str: + return str(node) + + +def _import_string(names: list[tuple[str, str | None]]) -> str: + """return a list of (name, asname) formatted as a string""" + _names = [] + for name, asname in names: + if asname is not None: + _names.append(f"{name} as {asname}") + else: + _names.append(name) + return ", ".join(_names) + + +# This sets the default indent to 4 spaces. +to_code = AsStringVisitor(" ") diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/const.py b/.venv/lib/python3.12/site-packages/astroid/nodes/const.py new file mode 100644 index 0000000..f66b633 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/const.py @@ -0,0 +1,27 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +OP_PRECEDENCE = { + op: precedence + for precedence, ops in enumerate( + [ + ["Lambda"], # lambda x: x + 1 + ["IfExp"], # 1 if True else 2 + ["or"], + ["and"], + ["not"], + ["Compare"], # in, not in, is, is not, <, <=, >, >=, !=, == + ["|"], + ["^"], + ["&"], + ["<<", ">>"], + ["+", "-"], + ["*", "@", "/", "//", "%"], + ["UnaryOp"], # +, -, ~ + ["**"], + ["Await"], + ] + ) + for op in ops +} diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/node_classes.py b/.venv/lib/python3.12/site-packages/astroid/nodes/node_classes.py new file mode 100644 index 0000000..0d3a425 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/node_classes.py @@ -0,0 +1,5701 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Module for some node classes. More nodes in scoped_nodes.py""" + +from __future__ import annotations + +import abc +import ast +import itertools +import operator +import sys +import typing +import warnings +from collections.abc import Callable, Generator, Iterable, Iterator, Mapping +from functools import cached_property +from typing import TYPE_CHECKING, Any, ClassVar, Literal, Union + +from astroid import decorators, protocols, util +from astroid.bases import Instance, _infer_stmts +from astroid.const import _EMPTY_OBJECT_MARKER, PY314_PLUS, Context +from astroid.context import CallContext, InferenceContext, copy_context +from astroid.exceptions import ( + AstroidBuildingError, + AstroidError, + AstroidIndexError, + AstroidTypeError, + AstroidValueError, + AttributeInferenceError, + InferenceError, + NameInferenceError, + NoDefault, + ParentMissingError, + _NonDeducibleTypeHierarchy, +) +from astroid.interpreter import dunder_lookup +from astroid.manager import AstroidManager +from astroid.nodes import _base_nodes +from astroid.nodes.const import OP_PRECEDENCE +from astroid.nodes.node_ng import NodeNG +from astroid.nodes.scoped_nodes import SYNTHETIC_ROOT +from astroid.typing import ( + ConstFactoryResult, + InferenceErrorInfo, + InferenceResult, + SuccessfulInferenceResult, +) + +if sys.version_info >= (3, 11): + from typing import Self +else: + from typing_extensions import Self + +if TYPE_CHECKING: + from astroid import nodes + from astroid.nodes import LocalsDictNodeNG + + +def _is_const(value) -> bool: + return isinstance(value, tuple(CONST_CLS)) + + +_NodesT = typing.TypeVar("_NodesT", bound=NodeNG) +_BadOpMessageT = typing.TypeVar("_BadOpMessageT", bound=util.BadOperationMessage) + +# pylint: disable-next=consider-alternative-union-syntax +AssignedStmtsPossibleNode = Union["List", "Tuple", "AssignName", "AssignAttr", None] +AssignedStmtsCall = Callable[ + [ + _NodesT, + AssignedStmtsPossibleNode, + InferenceContext | None, + list[int] | None, + ], + Any, +] +InferBinaryOperation = Callable[ + [_NodesT, InferenceContext | None], + Generator[InferenceResult | _BadOpMessageT], +] +InferLHS = Callable[ + [_NodesT, InferenceContext | None], + Generator[InferenceResult, None, InferenceErrorInfo | None], +] +InferUnaryOp = Callable[[_NodesT, str], ConstFactoryResult] + + +@decorators.raise_if_nothing_inferred +def unpack_infer(stmt, context: InferenceContext | None = None): + """recursively generate nodes inferred by the given statement. + If the inferred value is a list or a tuple, recurse on the elements + """ + if isinstance(stmt, (List, Tuple)): + for elt in stmt.elts: + if elt is util.Uninferable: + yield elt + continue + yield from unpack_infer(elt, context) + return {"node": stmt, "context": context} + # if inferred is a final node, return it and stop + inferred = next(stmt.infer(context), util.Uninferable) + if inferred is stmt: + yield inferred + return {"node": stmt, "context": context} + # else, infer recursively, except Uninferable object that should be returned as is + for inferred in stmt.infer(context): + if isinstance(inferred, util.UninferableBase): + yield inferred + else: + yield from unpack_infer(inferred, context) + + return {"node": stmt, "context": context} + + +def are_exclusive(stmt1, stmt2, exceptions: list[str] | None = None) -> bool: + """return true if the two given statements are mutually exclusive + + `exceptions` may be a list of exception names. If specified, discard If + branches and check one of the statement is in an exception handler catching + one of the given exceptions. + + algorithm : + 1) index stmt1's parents + 2) climb among stmt2's parents until we find a common parent + 3) if the common parent is a If or Try statement, look if nodes are + in exclusive branches + """ + # index stmt1's parents + stmt1_parents = {} + children = {} + previous = stmt1 + for node in stmt1.node_ancestors(): + stmt1_parents[node] = 1 + children[node] = previous + previous = node + # climb among stmt2's parents until we find a common parent + previous = stmt2 + for node in stmt2.node_ancestors(): + if node in stmt1_parents: + # if the common parent is a If or Try statement, look if + # nodes are in exclusive branches + if isinstance(node, If) and exceptions is None: + c2attr, c2node = node.locate_child(previous) + c1attr, c1node = node.locate_child(children[node]) + if "test" in (c1attr, c2attr): + # If any node is `If.test`, then it must be inclusive with + # the other node (`If.body` and `If.orelse`) + return False + if c1attr != c2attr: + # different `If` branches (`If.body` and `If.orelse`) + return True + elif isinstance(node, Try): + c2attr, c2node = node.locate_child(previous) + c1attr, c1node = node.locate_child(children[node]) + if c1node is not c2node: + first_in_body_caught_by_handlers = ( + c2attr == "handlers" + and c1attr == "body" + and previous.catch(exceptions) + ) + second_in_body_caught_by_handlers = ( + c2attr == "body" + and c1attr == "handlers" + and children[node].catch(exceptions) + ) + first_in_else_other_in_handlers = ( + c2attr == "handlers" and c1attr == "orelse" + ) + second_in_else_other_in_handlers = ( + c2attr == "orelse" and c1attr == "handlers" + ) + if any( + ( + first_in_body_caught_by_handlers, + second_in_body_caught_by_handlers, + first_in_else_other_in_handlers, + second_in_else_other_in_handlers, + ) + ): + return True + elif c2attr == "handlers" and c1attr == "handlers": + return previous is not children[node] + return False + previous = node + return False + + +# getitem() helpers. + +_SLICE_SENTINEL = object() + + +def _slice_value(index, context: InferenceContext | None = None): + """Get the value of the given slice index.""" + + if isinstance(index, Const): + if isinstance(index.value, (int, type(None))): + return index.value + elif index is None: + return None + else: + # Try to infer what the index actually is. + # Since we can't return all the possible values, + # we'll stop at the first possible value. + try: + inferred = next(index.infer(context=context)) + except (InferenceError, StopIteration): + pass + else: + if isinstance(inferred, Const): + if isinstance(inferred.value, (int, type(None))): + return inferred.value + + # Use a sentinel, because None can be a valid + # value that this function can return, + # as it is the case for unspecified bounds. + return _SLICE_SENTINEL + + +def _infer_slice(node, context: InferenceContext | None = None): + lower = _slice_value(node.lower, context) + upper = _slice_value(node.upper, context) + step = _slice_value(node.step, context) + if all(elem is not _SLICE_SENTINEL for elem in (lower, upper, step)): + return slice(lower, upper, step) + + raise AstroidTypeError( + message="Could not infer slice used in subscript", + node=node, + index=node.parent, + context=context, + ) + + +def _container_getitem(instance, elts, index, context: InferenceContext | None = None): + """Get a slice or an item, using the given *index*, for the given sequence.""" + try: + if isinstance(index, Slice): + index_slice = _infer_slice(index, context=context) + new_cls = instance.__class__() + new_cls.elts = elts[index_slice] + new_cls.parent = instance.parent + return new_cls + if isinstance(index, Const): + return elts[index.value] + except ValueError as exc: + raise AstroidValueError( + message="Slice {index!r} cannot index container", + node=instance, + index=index, + context=context, + ) from exc + except IndexError as exc: + raise AstroidIndexError( + message="Index {index!s} out of range", + node=instance, + index=index, + context=context, + ) from exc + except TypeError as exc: + raise AstroidTypeError( + message="Type error {error!r}", node=instance, index=index, context=context + ) from exc + + raise AstroidTypeError(f"Could not use {index} as subscript index") + + +class BaseContainer(_base_nodes.ParentAssignNode, Instance, metaclass=abc.ABCMeta): + """Base class for Set, FrozenSet, Tuple and List.""" + + _astroid_fields = ("elts",) + + def __init__( + self, + lineno: int | None, + col_offset: int | None, + parent: NodeNG | None, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.elts: list[SuccessfulInferenceResult] = [] + """The elements in the node.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, elts: list[SuccessfulInferenceResult]) -> None: + self.elts = elts + + @classmethod + def from_elements(cls, elts: Iterable[Any]) -> Self: + """Create a node of this type from the given list of elements. + + :param elts: The list of elements that the node should contain. + + :returns: A new node containing the given elements. + """ + node = cls( + lineno=None, + col_offset=None, + parent=None, + end_lineno=None, + end_col_offset=None, + ) + node.elts = [const_factory(e) if _is_const(e) else e for e in elts] + return node + + def itered(self): + """An iterator over the elements this node contains. + + :returns: The contents of this node. + :rtype: iterable(NodeNG) + """ + return self.elts + + def bool_value(self, context: InferenceContext | None = None) -> bool: + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + """ + return bool(self.elts) + + @abc.abstractmethod + def pytype(self) -> str: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + + def get_children(self): + yield from self.elts + + @decorators.raise_if_nothing_inferred + def _infer( + self, + context: InferenceContext | None = None, + **kwargs: Any, + ) -> Iterator[Self]: + has_starred_named_expr = any( + isinstance(e, (Starred, NamedExpr)) for e in self.elts + ) + if has_starred_named_expr: + values = self._infer_sequence_helper(context) + new_seq = type(self)( + lineno=self.lineno, + col_offset=self.col_offset, + parent=self.parent, + end_lineno=self.end_lineno, + end_col_offset=self.end_col_offset, + ) + new_seq.postinit(values) + + yield new_seq + else: + yield self + + def _infer_sequence_helper( + self, context: InferenceContext | None = None + ) -> list[SuccessfulInferenceResult]: + """Infer all values based on BaseContainer.elts.""" + values = [] + + for elt in self.elts: + if isinstance(elt, Starred): + starred = util.safe_infer(elt.value, context) + if not starred: + raise InferenceError(node=self, context=context) + if not hasattr(starred, "elts"): + raise InferenceError(node=self, context=context) + # TODO: fresh context? + values.extend(starred._infer_sequence_helper(context)) + elif isinstance(elt, NamedExpr): + value = util.safe_infer(elt.value, context) + if not value: + raise InferenceError(node=self, context=context) + values.append(value) + else: + values.append(elt) + return values + + +# Name classes + + +class AssignName( + _base_nodes.NoChildrenNode, + _base_nodes.LookupMixIn, + _base_nodes.ParentAssignNode, +): + """Variation of :class:`ast.Assign` representing assignment to a name. + + An :class:`AssignName` is the name of something that is assigned to. + This includes variables defined in a function signature or in a loop. + + >>> import astroid + >>> node = astroid.extract_node('variable = range(10)') + >>> node + + >>> list(node.get_children()) + [, ] + >>> list(node.get_children())[0].as_string() + 'variable' + """ + + _other_fields = ("name",) + + def __init__( + self, + name: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.name = name + """The name that is assigned to.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + assigned_stmts = protocols.assend_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + """Infer an AssignName: need to inspect the RHS part of the + assign node. + """ + if isinstance(self.parent, AugAssign): + return self.parent.infer(context) + + stmts = list(self.assigned_stmts(context=context)) + return _infer_stmts(stmts, context) + + @decorators.raise_if_nothing_inferred + def infer_lhs( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + """Infer a Name: use name lookup rules. + + Same implementation as Name._infer.""" + # pylint: disable=import-outside-toplevel + from astroid.constraint import get_constraints + from astroid.helpers import _higher_function_scope + + frame, stmts = self.lookup(self.name) + if not stmts: + # Try to see if the name is enclosed in a nested function + # and use the higher (first function) scope for searching. + parent_function = _higher_function_scope(self.scope()) + if parent_function: + _, stmts = parent_function.lookup(self.name) + + if not stmts: + raise NameInferenceError( + name=self.name, scope=self.scope(), context=context + ) + context = copy_context(context) + context.lookupname = self.name + context.constraints[self.name] = get_constraints(self, frame) + + return _infer_stmts(stmts, context, frame) + + +class DelName( + _base_nodes.NoChildrenNode, _base_nodes.LookupMixIn, _base_nodes.ParentAssignNode +): + """Variation of :class:`ast.Delete` representing deletion of a name. + + A :class:`DelName` is the name of something that is deleted. + + >>> import astroid + >>> node = astroid.extract_node("del variable #@") + >>> list(node.get_children()) + [] + >>> list(node.get_children())[0].as_string() + 'variable' + """ + + _other_fields = ("name",) + + def __init__( + self, + name: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.name = name + """The name that is being deleted.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + +class Name(_base_nodes.LookupMixIn, _base_nodes.NoChildrenNode): + """Class representing an :class:`ast.Name` node. + + A :class:`Name` node is something that is named, but not covered by + :class:`AssignName` or :class:`DelName`. + + >>> import astroid + >>> node = astroid.extract_node('range(10)') + >>> node + + >>> list(node.get_children()) + [, ] + >>> list(node.get_children())[0].as_string() + 'range' + """ + + _other_fields = ("name",) + + def __init__( + self, + name: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.name = name + """The name that this node refers to.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def _get_name_nodes(self): + yield self + + for child_node in self.get_children(): + yield from child_node._get_name_nodes() + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + """Infer a Name: use name lookup rules + + Same implementation as AssignName._infer_lhs.""" + # pylint: disable=import-outside-toplevel + from astroid.constraint import get_constraints + from astroid.helpers import _higher_function_scope + + frame, stmts = self.lookup(self.name) + if not stmts: + # Try to see if the name is enclosed in a nested function + # and use the higher (first function) scope for searching. + parent_function = _higher_function_scope(self.scope()) + if parent_function: + _, stmts = parent_function.lookup(self.name) + + if not stmts: + raise NameInferenceError( + name=self.name, scope=self.scope(), context=context + ) + context = copy_context(context) + context.lookupname = self.name + context.constraints[self.name] = get_constraints(self, frame) + + return _infer_stmts(stmts, context, frame) + + +DEPRECATED_ARGUMENT_DEFAULT = "DEPRECATED_ARGUMENT_DEFAULT" + + +class Arguments( + _base_nodes.AssignTypeNode +): # pylint: disable=too-many-instance-attributes + """Class representing an :class:`ast.arguments` node. + + An :class:`Arguments` node represents that arguments in a + function definition. + + >>> import astroid + >>> node = astroid.extract_node('def foo(bar): pass') + >>> node + + >>> node.args + + """ + + # Python 3.4+ uses a different approach regarding annotations, + # each argument is a new class, _ast.arg, which exposes an + # 'annotation' attribute. In astroid though, arguments are exposed + # as is in the Arguments node and the only way to expose annotations + # is by using something similar with Python 3.3: + # - we expose 'varargannotation' and 'kwargannotation' of annotations + # of varargs and kwargs. + # - we expose 'annotation', a list with annotations for + # for each normal argument. If an argument doesn't have an + # annotation, its value will be None. + _astroid_fields = ( + "args", + "defaults", + "kwonlyargs", + "posonlyargs", + "posonlyargs_annotations", + "kw_defaults", + "annotations", + "varargannotation", + "kwargannotation", + "kwonlyargs_annotations", + "type_comment_args", + "type_comment_kwonlyargs", + "type_comment_posonlyargs", + ) + + _other_fields = ("vararg", "kwarg") + + args: list[AssignName] | None + """The names of the required arguments. + + Can be None if the associated function does not have a retrievable + signature and the arguments are therefore unknown. + This can happen with (builtin) functions implemented in C that have + incomplete signature information. + """ + + defaults: list[NodeNG] | None + """The default values for arguments that can be passed positionally.""" + + kwonlyargs: list[AssignName] + """The keyword arguments that cannot be passed positionally.""" + + posonlyargs: list[AssignName] + """The arguments that can only be passed positionally.""" + + kw_defaults: list[NodeNG | None] | None + """The default values for keyword arguments that cannot be passed positionally.""" + + annotations: list[NodeNG | None] + """The type annotations of arguments that can be passed positionally.""" + + posonlyargs_annotations: list[NodeNG | None] + """The type annotations of arguments that can only be passed positionally.""" + + kwonlyargs_annotations: list[NodeNG | None] + """The type annotations of arguments that cannot be passed positionally.""" + + type_comment_args: list[NodeNG | None] + """The type annotation, passed by a type comment, of each argument. + + If an argument does not have a type comment, + the value for that argument will be None. + """ + + type_comment_kwonlyargs: list[NodeNG | None] + """The type annotation, passed by a type comment, of each keyword only argument. + + If an argument does not have a type comment, + the value for that argument will be None. + """ + + type_comment_posonlyargs: list[NodeNG | None] + """The type annotation, passed by a type comment, of each positional argument. + + If an argument does not have a type comment, + the value for that argument will be None. + """ + + varargannotation: NodeNG | None + """The type annotation for the variable length arguments.""" + + kwargannotation: NodeNG | None + """The type annotation for the variable length keyword arguments.""" + + vararg_node: AssignName | None + """The node for variable length arguments""" + + kwarg_node: AssignName | None + """The node for variable keyword arguments""" + + def __init__( + self, + vararg: str | None, + kwarg: str | None, + parent: NodeNG, + vararg_node: AssignName | None = None, + kwarg_node: AssignName | None = None, + ) -> None: + """Almost all attributes can be None for living objects where introspection failed.""" + super().__init__( + parent=parent, + lineno=None, + col_offset=None, + end_lineno=None, + end_col_offset=None, + ) + + self.vararg = vararg + """The name of the variable length arguments.""" + + self.kwarg = kwarg + """The name of the variable length keyword arguments.""" + + self.vararg_node = vararg_node + self.kwarg_node = kwarg_node + + # pylint: disable=too-many-arguments, too-many-positional-arguments + def postinit( + self, + args: list[AssignName] | None, + defaults: list[NodeNG] | None, + kwonlyargs: list[AssignName], + kw_defaults: list[NodeNG | None] | None, + annotations: list[NodeNG | None], + posonlyargs: list[AssignName], + kwonlyargs_annotations: list[NodeNG | None], + posonlyargs_annotations: list[NodeNG | None], + varargannotation: NodeNG | None = None, + kwargannotation: NodeNG | None = None, + type_comment_args: list[NodeNG | None] | None = None, + type_comment_kwonlyargs: list[NodeNG | None] | None = None, + type_comment_posonlyargs: list[NodeNG | None] | None = None, + ) -> None: + self.args = args + self.defaults = defaults + self.kwonlyargs = kwonlyargs + self.posonlyargs = posonlyargs + self.kw_defaults = kw_defaults + self.annotations = annotations + self.kwonlyargs_annotations = kwonlyargs_annotations + self.posonlyargs_annotations = posonlyargs_annotations + + # Parameters that got added later and need a default + self.varargannotation = varargannotation + self.kwargannotation = kwargannotation + if type_comment_args is None: + type_comment_args = [] + self.type_comment_args = type_comment_args + if type_comment_kwonlyargs is None: + type_comment_kwonlyargs = [] + self.type_comment_kwonlyargs = type_comment_kwonlyargs + if type_comment_posonlyargs is None: + type_comment_posonlyargs = [] + self.type_comment_posonlyargs = type_comment_posonlyargs + + assigned_stmts = protocols.arguments_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def _infer_name(self, frame, name): + if self.parent is frame: + return name + return None + + @cached_property + def fromlineno(self) -> int: + """The first line that this node appears on in the source code. + + Can also return 0 if the line can not be determined. + """ + lineno = super().fromlineno + return max(lineno, self.parent.fromlineno or 0) + + @cached_property + def arguments(self): + """Get all the arguments for this node. This includes: + * Positional only arguments + * Positional arguments + * Keyword arguments + * Variable arguments (.e.g *args) + * Variable keyword arguments (e.g **kwargs) + """ + retval = list(itertools.chain((self.posonlyargs or ()), (self.args or ()))) + if self.vararg_node: + retval.append(self.vararg_node) + retval += self.kwonlyargs or () + if self.kwarg_node: + retval.append(self.kwarg_node) + + return retval + + def format_args(self, *, skippable_names: set[str] | None = None) -> str: + """Get the arguments formatted as string. + + :returns: The formatted arguments. + :rtype: str + """ + result = [] + positional_only_defaults = [] + positional_or_keyword_defaults = self.defaults + if self.defaults: + args = self.args or [] + positional_or_keyword_defaults = self.defaults[-len(args) :] + positional_only_defaults = self.defaults[: len(self.defaults) - len(args)] + + if self.posonlyargs: + result.append( + _format_args( + self.posonlyargs, + positional_only_defaults, + self.posonlyargs_annotations, + skippable_names=skippable_names, + ) + ) + result.append("/") + if self.args: + result.append( + _format_args( + self.args, + positional_or_keyword_defaults, + getattr(self, "annotations", None), + skippable_names=skippable_names, + ) + ) + if self.vararg: + result.append(f"*{self.vararg}") + if self.kwonlyargs: + if not self.vararg: + result.append("*") + result.append( + _format_args( + self.kwonlyargs, + self.kw_defaults, + self.kwonlyargs_annotations, + skippable_names=skippable_names, + ) + ) + if self.kwarg: + result.append(f"**{self.kwarg}") + return ", ".join(result) + + def _get_arguments_data( + self, + ) -> tuple[ + dict[str, tuple[str | None, str | None]], + dict[str, tuple[str | None, str | None]], + ]: + """Get the arguments as dictionary with information about typing and defaults. + + The return tuple contains a dictionary for positional and keyword arguments with their typing + and their default value, if any. + The method follows a similar order as format_args but instead of formatting into a string it + returns the data that is used to do so. + """ + pos_only: dict[str, tuple[str | None, str | None]] = {} + kw_only: dict[str, tuple[str | None, str | None]] = {} + + # Setup and match defaults with arguments + positional_only_defaults = [] + positional_or_keyword_defaults = self.defaults + if self.defaults: + args = self.args or [] + positional_or_keyword_defaults = self.defaults[-len(args) :] + positional_only_defaults = self.defaults[: len(self.defaults) - len(args)] + + for index, posonly in enumerate(self.posonlyargs): + annotation, default = self.posonlyargs_annotations[index], None + if annotation is not None: + annotation = annotation.as_string() + if positional_only_defaults: + default = positional_only_defaults[index].as_string() + pos_only[posonly.name] = (annotation, default) + + for index, arg in enumerate(self.args): + annotation, default = self.annotations[index], None + if annotation is not None: + annotation = annotation.as_string() + if positional_or_keyword_defaults: + defaults_offset = len(self.args) - len(positional_or_keyword_defaults) + default_index = index - defaults_offset + if ( + default_index > -1 + and positional_or_keyword_defaults[default_index] is not None + ): + default = positional_or_keyword_defaults[default_index].as_string() + pos_only[arg.name] = (annotation, default) + + if self.vararg: + annotation = self.varargannotation + if annotation is not None: + annotation = annotation.as_string() + pos_only[self.vararg] = (annotation, None) + + for index, kwarg in enumerate(self.kwonlyargs): + annotation = self.kwonlyargs_annotations[index] + if annotation is not None: + annotation = annotation.as_string() + default = self.kw_defaults[index] + if default is not None: + default = default.as_string() + kw_only[kwarg.name] = (annotation, default) + + if self.kwarg: + annotation = self.kwargannotation + if annotation is not None: + annotation = annotation.as_string() + kw_only[self.kwarg] = (annotation, None) + + return pos_only, kw_only + + def default_value(self, argname): + """Get the default value for an argument. + + :param argname: The name of the argument to get the default value for. + :type argname: str + + :raises NoDefault: If there is no default value defined for the + given argument. + """ + args = [ + arg for arg in self.arguments if arg.name not in [self.vararg, self.kwarg] + ] + + index = _find_arg(argname, self.kwonlyargs)[0] + if (index is not None) and (len(self.kw_defaults) > index): + if self.kw_defaults[index] is not None: + return self.kw_defaults[index] + raise NoDefault(func=self.parent, name=argname) + + index = _find_arg(argname, args)[0] + if index is not None: + idx = index - (len(args) - len(self.defaults) - len(self.kw_defaults)) + if idx >= 0: + return self.defaults[idx] + + raise NoDefault(func=self.parent, name=argname) + + def is_argument(self, name) -> bool: + """Check if the given name is defined in the arguments. + + :param name: The name to check for. + :type name: str + + :returns: Whether the given name is defined in the arguments, + """ + if name == self.vararg: + return True + if name == self.kwarg: + return True + return self.find_argname(name)[1] is not None + + def find_argname(self, argname, rec=DEPRECATED_ARGUMENT_DEFAULT): + """Get the index and :class:`AssignName` node for given name. + + :param argname: The name of the argument to search for. + :type argname: str + + :returns: The index and node for the argument. + :rtype: tuple(str or None, AssignName or None) + """ + if rec != DEPRECATED_ARGUMENT_DEFAULT: # pragma: no cover + warnings.warn( + "The rec argument will be removed in astroid 3.1.", + DeprecationWarning, + stacklevel=2, + ) + if self.arguments: + index, argument = _find_arg(argname, self.arguments) + if argument: + return index, argument + return None, None + + def get_children(self): + yield from self.posonlyargs or () + + for elt in self.posonlyargs_annotations: + if elt is not None: + yield elt + + yield from self.args or () + + if self.defaults is not None: + yield from self.defaults + yield from self.kwonlyargs + + for elt in self.kw_defaults or (): + if elt is not None: + yield elt + + for elt in self.annotations: + if elt is not None: + yield elt + + if self.varargannotation is not None: + yield self.varargannotation + + if self.kwargannotation is not None: + yield self.kwargannotation + + for elt in self.kwonlyargs_annotations: + if elt is not None: + yield elt + + @decorators.raise_if_nothing_inferred + def _infer( + self: nodes.Arguments, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + # pylint: disable-next=import-outside-toplevel + from astroid.protocols import _arguments_infer_argname + + if context is None or context.lookupname is None: + raise InferenceError(node=self, context=context) + return _arguments_infer_argname(self, context.lookupname, context) + + +def _find_arg(argname, args): + for i, arg in enumerate(args): + if arg.name == argname: + return i, arg + return None, None + + +def _format_args( + args, defaults=None, annotations=None, skippable_names: set[str] | None = None +) -> str: + if skippable_names is None: + skippable_names = set() + values = [] + if args is None: + return "" + if annotations is None: + annotations = [] + if defaults is not None: + default_offset = len(args) - len(defaults) + else: + default_offset = None + packed = itertools.zip_longest(args, annotations) + for i, (arg, annotation) in enumerate(packed): + if arg.name in skippable_names: + continue + if isinstance(arg, Tuple): + values.append(f"({_format_args(arg.elts)})") + else: + argname = arg.name + default_sep = "=" + if annotation is not None: + argname += ": " + annotation.as_string() + default_sep = " = " + values.append(argname) + + if default_offset is not None and i >= default_offset: + if defaults[i - default_offset] is not None: + values[-1] += default_sep + defaults[i - default_offset].as_string() + return ", ".join(values) + + +def _infer_attribute( + node: nodes.AssignAttr | nodes.Attribute, + context: InferenceContext | None = None, + **kwargs: Any, +) -> Generator[InferenceResult, None, InferenceErrorInfo]: + """Infer an AssignAttr/Attribute node by using getattr on the associated object.""" + # pylint: disable=import-outside-toplevel + from astroid.constraint import get_constraints + from astroid.nodes import ClassDef + + for owner in node.expr.infer(context): + if isinstance(owner, util.UninferableBase): + yield owner + continue + + context = copy_context(context) + old_boundnode = context.boundnode + try: + context.boundnode = owner + if isinstance(owner, (ClassDef, Instance)): + frame = owner if isinstance(owner, ClassDef) else owner._proxied + context.constraints[node.attrname] = get_constraints(node, frame=frame) + if node.attrname == "argv" and owner.name == "sys": + # sys.argv will never be inferable during static analysis + # It's value would be the args passed to the linter itself + yield util.Uninferable + else: + yield from owner.igetattr(node.attrname, context) + except ( + AttributeInferenceError, + InferenceError, + AttributeError, + ): + pass + finally: + context.boundnode = old_boundnode + return InferenceErrorInfo(node=node, context=context) + + +class AssignAttr(_base_nodes.LookupMixIn, _base_nodes.ParentAssignNode): + """Variation of :class:`ast.Assign` representing assignment to an attribute. + + >>> import astroid + >>> node = astroid.extract_node('self.attribute = range(10)') + >>> node + + >>> list(node.get_children()) + [, ] + >>> list(node.get_children())[0].as_string() + 'self.attribute' + """ + + expr: NodeNG + + _astroid_fields = ("expr",) + _other_fields = ("attrname",) + + def __init__( + self, + attrname: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.attrname = attrname + """The name of the attribute being assigned to.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, expr: NodeNG) -> None: + self.expr = expr + + assigned_stmts = protocols.assend_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def get_children(self): + yield self.expr + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + """Infer an AssignAttr: need to inspect the RHS part of the + assign node. + """ + if isinstance(self.parent, AugAssign): + return self.parent.infer(context) + + stmts = list(self.assigned_stmts(context=context)) + return _infer_stmts(stmts, context) + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def infer_lhs( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + return _infer_attribute(self, context, **kwargs) + + +class Assert(_base_nodes.Statement): + """Class representing an :class:`ast.Assert` node. + + An :class:`Assert` node represents an assert statement. + + >>> import astroid + >>> node = astroid.extract_node('assert len(things) == 10, "Not enough things"') + >>> node + + """ + + _astroid_fields = ("test", "fail") + + test: NodeNG + """The test that passes or fails the assertion.""" + + fail: NodeNG | None + """The message shown when the assertion fails.""" + + def postinit(self, test: NodeNG, fail: NodeNG | None) -> None: + self.fail = fail + self.test = test + + def get_children(self): + yield self.test + + if self.fail is not None: + yield self.fail + + +class Assign(_base_nodes.AssignTypeNode, _base_nodes.Statement): + """Class representing an :class:`ast.Assign` node. + + An :class:`Assign` is a statement where something is explicitly + asssigned to. + + >>> import astroid + >>> node = astroid.extract_node('variable = range(10)') + >>> node + + """ + + targets: list[NodeNG] + """What is being assigned to.""" + + value: NodeNG + """The value being assigned to the variables.""" + + type_annotation: NodeNG | None + """If present, this will contain the type annotation passed by a type comment""" + + _astroid_fields = ("targets", "value") + _other_other_fields = ("type_annotation",) + + def postinit( + self, + targets: list[NodeNG], + value: NodeNG, + type_annotation: NodeNG | None, + ) -> None: + self.targets = targets + self.value = value + self.type_annotation = type_annotation + + assigned_stmts = protocols.assign_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def get_children(self): + yield from self.targets + + yield self.value + + @cached_property + def _assign_nodes_in_scope(self) -> list[nodes.Assign]: + return [self, *self.value._assign_nodes_in_scope] + + def _get_yield_nodes_skip_functions(self): + yield from self.value._get_yield_nodes_skip_functions() + + def _get_yield_nodes_skip_lambdas(self): + yield from self.value._get_yield_nodes_skip_lambdas() + + +class AnnAssign(_base_nodes.AssignTypeNode, _base_nodes.Statement): + """Class representing an :class:`ast.AnnAssign` node. + + An :class:`AnnAssign` is an assignment with a type annotation. + + >>> import astroid + >>> node = astroid.extract_node('variable: List[int] = range(10)') + >>> node + + """ + + _astroid_fields = ("target", "annotation", "value") + _other_fields = ("simple",) + + target: Name | Attribute | Subscript + """What is being assigned to.""" + + annotation: NodeNG + """The type annotation of what is being assigned to.""" + + value: NodeNG | None + """The value being assigned to the variables.""" + + simple: int + """Whether :attr:`target` is a pure name or a complex statement.""" + + def postinit( + self, + target: Name | Attribute | Subscript, + annotation: NodeNG, + simple: int, + value: NodeNG | None, + ) -> None: + self.target = target + self.annotation = annotation + self.value = value + self.simple = simple + + assigned_stmts = protocols.assign_annassigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def get_children(self): + yield self.target + yield self.annotation + + if self.value is not None: + yield self.value + + +class AugAssign( + _base_nodes.AssignTypeNode, _base_nodes.OperatorNode, _base_nodes.Statement +): + """Class representing an :class:`ast.AugAssign` node. + + An :class:`AugAssign` is an assignment paired with an operator. + + >>> import astroid + >>> node = astroid.extract_node('variable += 1') + >>> node + + """ + + _astroid_fields = ("target", "value") + _other_fields = ("op",) + + target: Name | Attribute | Subscript + """What is being assigned to.""" + + value: NodeNG + """The value being assigned to the variable.""" + + def __init__( + self, + op: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.op = op + """The operator that is being combined with the assignment. + + This includes the equals sign. + """ + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, target: Name | Attribute | Subscript, value: NodeNG) -> None: + self.target = target + self.value = value + + assigned_stmts = protocols.assign_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def type_errors( + self, context: InferenceContext | None = None + ) -> list[util.BadBinaryOperationMessage]: + """Get a list of type errors which can occur during inference. + + Each TypeError is represented by a :class:`BadBinaryOperationMessage` , + which holds the original exception. + + If any inferred result is uninferable, an empty list is returned. + """ + bad = [] + try: + for result in self._infer_augassign(context=context): + if result is util.Uninferable: + raise InferenceError + if isinstance(result, util.BadBinaryOperationMessage): + bad.append(result) + except InferenceError: + return [] + return bad + + def get_children(self): + yield self.target + yield self.value + + def _get_yield_nodes_skip_functions(self): + """An AugAssign node can contain a Yield node in the value""" + yield from self.value._get_yield_nodes_skip_functions() + yield from super()._get_yield_nodes_skip_functions() + + def _get_yield_nodes_skip_lambdas(self): + """An AugAssign node can contain a Yield node in the value""" + yield from self.value._get_yield_nodes_skip_lambdas() + yield from super()._get_yield_nodes_skip_lambdas() + + def _infer_augassign( + self, context: InferenceContext | None = None + ) -> Generator[InferenceResult | util.BadBinaryOperationMessage]: + """Inference logic for augmented binary operations.""" + context = context or InferenceContext() + + rhs_context = context.clone() + + lhs_iter = self.target.infer_lhs(context=context) + rhs_iter = self.value.infer(context=rhs_context) + + for lhs, rhs in itertools.product(lhs_iter, rhs_iter): + if any(isinstance(value, util.UninferableBase) for value in (rhs, lhs)): + # Don't know how to process this. + yield util.Uninferable + return + + try: + yield from self._infer_binary_operation( + left=lhs, + right=rhs, + binary_opnode=self, + context=context, + flow_factory=self._get_aug_flow, + ) + except _NonDeducibleTypeHierarchy: + yield util.Uninferable + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self: nodes.AugAssign, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + return self._filter_operation_errors( + self._infer_augassign, context, util.BadBinaryOperationMessage + ) + + +class BinOp(_base_nodes.OperatorNode): + """Class representing an :class:`ast.BinOp` node. + + A :class:`BinOp` node is an application of a binary operator. + + >>> import astroid + >>> node = astroid.extract_node('a + b') + >>> node + + """ + + _astroid_fields = ("left", "right") + _other_fields = ("op",) + + left: NodeNG + """What is being applied to the operator on the left side.""" + + right: NodeNG + """What is being applied to the operator on the right side.""" + + def __init__( + self, + op: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.op = op + """The operator.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, left: NodeNG, right: NodeNG) -> None: + self.left = left + self.right = right + + def type_errors( + self, context: InferenceContext | None = None + ) -> list[util.BadBinaryOperationMessage]: + """Get a list of type errors which can occur during inference. + + Each TypeError is represented by a :class:`BadBinaryOperationMessage`, + which holds the original exception. + + If any inferred result is uninferable, an empty list is returned. + """ + bad = [] + try: + for result in self._infer_binop(context=context): + if result is util.Uninferable: + raise InferenceError + if isinstance(result, util.BadBinaryOperationMessage): + bad.append(result) + except InferenceError: + return [] + return bad + + def get_children(self): + yield self.left + yield self.right + + def op_precedence(self) -> int: + return OP_PRECEDENCE[self.op] + + def op_left_associative(self) -> bool: + # 2**3**4 == 2**(3**4) + return self.op != "**" + + def _infer_binop( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + """Binary operation inference logic.""" + left = self.left + right = self.right + + # we use two separate contexts for evaluating lhs and rhs because + # 1. evaluating lhs may leave some undesired entries in context.path + # which may not let us infer right value of rhs + context = context or InferenceContext() + lhs_context = copy_context(context) + rhs_context = copy_context(context) + lhs_iter = left.infer(context=lhs_context) + rhs_iter = right.infer(context=rhs_context) + for lhs, rhs in itertools.product(lhs_iter, rhs_iter): + if any(isinstance(value, util.UninferableBase) for value in (rhs, lhs)): + # Don't know how to process this. + yield util.Uninferable + return + + try: + yield from self._infer_binary_operation( + lhs, rhs, self, context, self._get_binop_flow + ) + except _NonDeducibleTypeHierarchy: + yield util.Uninferable + + @decorators.yes_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self: nodes.BinOp, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + return self._filter_operation_errors( + self._infer_binop, context, util.BadBinaryOperationMessage + ) + + +class BoolOp(NodeNG): + """Class representing an :class:`ast.BoolOp` node. + + A :class:`BoolOp` is an application of a boolean operator. + + >>> import astroid + >>> node = astroid.extract_node('a and b') + >>> node + + """ + + _astroid_fields = ("values",) + _other_fields = ("op",) + + def __init__( + self, + op: str, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param op: The operator. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.op: str = op + """The operator.""" + + self.values: list[NodeNG] = [] + """The values being applied to the operator.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, values: list[NodeNG] | None = None) -> None: + """Do some setup after initialisation. + + :param values: The values being applied to the operator. + """ + if values is not None: + self.values = values + + def get_children(self): + yield from self.values + + def op_precedence(self) -> int: + return OP_PRECEDENCE[self.op] + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self: nodes.BoolOp, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + """Infer a boolean operation (and / or / not). + + The function will calculate the boolean operation + for all pairs generated through inference for each component + node. + """ + values = self.values + if self.op == "or": + predicate = operator.truth + else: + predicate = operator.not_ + + try: + inferred_values = [value.infer(context=context) for value in values] + except InferenceError: + yield util.Uninferable + return None + + for pair in itertools.product(*inferred_values): + if any(isinstance(item, util.UninferableBase) for item in pair): + # Can't infer the final result, just yield Uninferable. + yield util.Uninferable + continue + + bool_values = [item.bool_value() for item in pair] + if any(isinstance(item, util.UninferableBase) for item in bool_values): + # Can't infer the final result, just yield Uninferable. + yield util.Uninferable + continue + + # Since the boolean operations are short circuited operations, + # this code yields the first value for which the predicate is True + # and if no value respected the predicate, then the last value will + # be returned (or Uninferable if there was no last value). + # This is conforming to the semantics of `and` and `or`: + # 1 and 0 -> 1 + # 0 and 1 -> 0 + # 1 or 0 -> 1 + # 0 or 1 -> 1 + value = util.Uninferable + for value, bool_value in zip(pair, bool_values): + if predicate(bool_value): + yield value + break + else: + yield value + + return InferenceErrorInfo(node=self, context=context) + + +class Break(_base_nodes.NoChildrenNode, _base_nodes.Statement): + """Class representing an :class:`ast.Break` node. + + >>> import astroid + >>> node = astroid.extract_node('break') + >>> node + + """ + + +class Call(NodeNG): + """Class representing an :class:`ast.Call` node. + + A :class:`Call` node is a call to a function, method, etc. + + >>> import astroid + >>> node = astroid.extract_node('function()') + >>> node + + """ + + _astroid_fields = ("func", "args", "keywords") + + func: NodeNG + """What is being called.""" + + args: list[NodeNG] + """The positional arguments being given to the call.""" + + keywords: list[Keyword] + """The keyword arguments being given to the call.""" + + def postinit( + self, func: NodeNG, args: list[NodeNG], keywords: list[Keyword] + ) -> None: + self.func = func + self.args = args + self.keywords = keywords + + @property + def starargs(self) -> list[Starred]: + """The positional arguments that unpack something.""" + return [arg for arg in self.args if isinstance(arg, Starred)] + + @property + def kwargs(self) -> list[Keyword]: + """The keyword arguments that unpack something.""" + return [keyword for keyword in self.keywords if keyword.arg is None] + + def get_children(self): + yield self.func + + yield from self.args + + yield from self.keywords + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo]: + """Infer a Call node by trying to guess what the function returns.""" + callcontext = copy_context(context) + callcontext.boundnode = None + if context is not None: + callcontext.extra_context = self._populate_context_lookup(context.clone()) + + for callee in self.func.infer(context): + if isinstance(callee, util.UninferableBase): + yield callee + continue + try: + if hasattr(callee, "infer_call_result"): + callcontext.callcontext = CallContext( + args=self.args, keywords=self.keywords, callee=callee + ) + yield from callee.infer_call_result( + caller=self, context=callcontext + ) + except InferenceError: + continue + return InferenceErrorInfo(node=self, context=context) + + def _populate_context_lookup(self, context: InferenceContext | None): + """Allows context to be saved for later for inference inside a function.""" + context_lookup: dict[InferenceResult, InferenceContext] = {} + if context is None: + return context_lookup + for arg in self.args: + if isinstance(arg, Starred): + context_lookup[arg.value] = context + else: + context_lookup[arg] = context + keywords = self.keywords if self.keywords is not None else [] + for keyword in keywords: + context_lookup[keyword.value] = context + return context_lookup + + +COMPARE_OPS: dict[str, Callable[[Any, Any], bool]] = { + "==": operator.eq, + "!=": operator.ne, + "<": operator.lt, + "<=": operator.le, + ">": operator.gt, + ">=": operator.ge, + "in": lambda a, b: a in b, + "not in": lambda a, b: a not in b, +} +UNINFERABLE_OPS = { + "is", + "is not", +} + + +class Compare(NodeNG): + """Class representing an :class:`ast.Compare` node. + + A :class:`Compare` node indicates a comparison. + + >>> import astroid + >>> node = astroid.extract_node('a <= b <= c') + >>> node + + >>> node.ops + [('<=', ), ('<=', )] + """ + + _astroid_fields = ("left", "ops") + + left: NodeNG + """The value at the left being applied to a comparison operator.""" + + ops: list[tuple[str, NodeNG]] + """The remainder of the operators and their relevant right hand value.""" + + def postinit(self, left: NodeNG, ops: list[tuple[str, NodeNG]]) -> None: + self.left = left + self.ops = ops + + def get_children(self): + """Get the child nodes below this node. + + Overridden to handle the tuple fields and skip returning the operator + strings. + + :returns: The children. + :rtype: iterable(NodeNG) + """ + yield self.left + for _, comparator in self.ops: + yield comparator # we don't want the 'op' + + def last_child(self): + """An optimized version of list(get_children())[-1] + + :returns: The last child. + :rtype: NodeNG + """ + # XXX maybe if self.ops: + return self.ops[-1][1] + # return self.left + + # TODO: move to util? + @staticmethod + def _to_literal(node: SuccessfulInferenceResult) -> Any: + # Can raise SyntaxError, ValueError, or TypeError from ast.literal_eval + # Can raise AttributeError from node.as_string() as not all nodes have a visitor + # Is this the stupidest idea or the simplest idea? + return ast.literal_eval(node.as_string()) + + def _do_compare( + self, + left_iter: Iterable[InferenceResult], + op: str, + right_iter: Iterable[InferenceResult], + ) -> bool | util.UninferableBase: + """ + If all possible combinations are either True or False, return that: + >>> _do_compare([1, 2], '<=', [3, 4]) + True + >>> _do_compare([1, 2], '==', [3, 4]) + False + + If any item is uninferable, or if some combinations are True and some + are False, return Uninferable: + >>> _do_compare([1, 3], '<=', [2, 4]) + util.Uninferable + """ + retval: bool | None = None + if op in UNINFERABLE_OPS: + return util.Uninferable + op_func = COMPARE_OPS[op] + + for left, right in itertools.product(left_iter, right_iter): + if isinstance(left, util.UninferableBase) or isinstance( + right, util.UninferableBase + ): + return util.Uninferable + + try: + left, right = self._to_literal(left), self._to_literal(right) + except (SyntaxError, ValueError, AttributeError, TypeError): + return util.Uninferable + + try: + expr = op_func(left, right) + except TypeError as exc: + raise AstroidTypeError from exc + + if retval is None: + retval = expr + elif retval != expr: + return util.Uninferable + # (or both, but "True | False" is basically the same) + + assert retval is not None + return retval # it was all the same value + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[nodes.Const | util.UninferableBase]: + """Chained comparison inference logic.""" + retval: bool | util.UninferableBase = True + + ops = self.ops + left_node = self.left + lhs = list(left_node.infer(context=context)) + # should we break early if first element is uninferable? + for op, right_node in ops: + # eagerly evaluate rhs so that values can be re-used as lhs + rhs = list(right_node.infer(context=context)) + try: + retval = self._do_compare(lhs, op, rhs) + except AstroidTypeError: + retval = util.Uninferable + break + if retval is not True: + break # short-circuit + lhs = rhs # continue + if retval is util.Uninferable: + yield retval # type: ignore[misc] + else: + yield Const(retval) + + +class Comprehension(NodeNG): + """Class representing an :class:`ast.comprehension` node. + + A :class:`Comprehension` indicates the loop inside any type of + comprehension including generator expressions. + + >>> import astroid + >>> node = astroid.extract_node('[x for x in some_values]') + >>> list(node.get_children()) + [, ] + >>> list(node.get_children())[1].as_string() + 'for x in some_values' + """ + + _astroid_fields = ("target", "iter", "ifs") + _other_fields = ("is_async",) + + optional_assign = True + """Whether this node optionally assigns a variable.""" + + target: NodeNG + """What is assigned to by the comprehension.""" + + iter: NodeNG + """What is iterated over by the comprehension.""" + + ifs: list[NodeNG] + """The contents of any if statements that filter the comprehension.""" + + is_async: bool + """Whether this is an asynchronous comprehension or not.""" + + def postinit( + self, + target: NodeNG, + iter: NodeNG, # pylint: disable = redefined-builtin + ifs: list[NodeNG], + is_async: bool, + ) -> None: + self.target = target + self.iter = iter + self.ifs = ifs + self.is_async = is_async + + assigned_stmts = protocols.for_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def assign_type(self): + """The type of assignment that this node performs. + + :returns: The assignment type. + :rtype: NodeNG + """ + return self + + def _get_filtered_stmts( + self, lookup_node, node, stmts, mystmt: _base_nodes.Statement | None + ): + """method used in filter_stmts""" + if self is mystmt: + if isinstance(lookup_node, (Const, Name)): + return [lookup_node], True + + elif self.statement() is mystmt: + # original node's statement is the assignment, only keeps + # current node (gen exp, list comp) + + return [node], True + + return stmts, False + + def get_children(self): + yield self.target + yield self.iter + + yield from self.ifs + + +class Const(_base_nodes.NoChildrenNode, Instance): + """Class representing any constant including num, str, bool, None, bytes. + + >>> import astroid + >>> node = astroid.extract_node('(5, "This is a string.", True, None, b"bytes")') + >>> node + + >>> list(node.get_children()) + [, + , + , + , + ] + """ + + _other_fields = ("value", "kind") + + def __init__( + self, + value: Any, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG = SYNTHETIC_ROOT, + kind: str | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param value: The value that the constant represents. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param kind: The string prefix. "u" for u-prefixed strings and ``None`` otherwise. Python 3.8+ only. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + if getattr(value, "__name__", None) == "__doc__": + warnings.warn( # pragma: no cover + "You have most likely called a __doc__ field of some object " + "and it didn't return a string. " + "That happens to some symbols from the standard library. " + "Check for isinstance(.__doc__, str).", + RuntimeWarning, + stacklevel=0, + ) + self.value = value + """The value that the constant represents.""" + + self.kind: str | None = kind # can be None + """"The string prefix. "u" for u-prefixed strings and ``None`` otherwise. Python 3.8+ only.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + Instance.__init__(self, None) + + infer_unary_op = protocols.const_infer_unary_op + infer_binary_op = protocols.const_infer_binary_op + + def __getattr__(self, name): + # This is needed because of Proxy's __getattr__ method. + # Calling object.__new__ on this class without calling + # __init__ would result in an infinite loop otherwise + # since __getattr__ is called when an attribute doesn't + # exist and self._proxied indirectly calls self.value + # and Proxy __getattr__ calls self.value + if name == "value": + raise AttributeError + return super().__getattr__(name) + + def getitem(self, index, context: InferenceContext | None = None): + """Get an item from this node if subscriptable. + + :param index: The node to use as a subscript index. + :type index: Const or Slice + + :raises AstroidTypeError: When the given index cannot be used as a + subscript index, or if this node is not subscriptable. + """ + if isinstance(index, Const): + index_value = index.value + elif isinstance(index, Slice): + index_value = _infer_slice(index, context=context) + + else: + raise AstroidTypeError( + f"Could not use type {type(index)} as subscript index" + ) + + try: + if isinstance(self.value, (str, bytes)): + return Const(self.value[index_value]) + except ValueError as exc: + raise AstroidValueError( + f"Could not index {self.value!r} with {index_value!r}" + ) from exc + except IndexError as exc: + raise AstroidIndexError( + message="Index {index!r} out of range", + node=self, + index=index, + context=context, + ) from exc + except TypeError as exc: + raise AstroidTypeError( + message="Type error {error!r}", node=self, index=index, context=context + ) from exc + + raise AstroidTypeError(f"{self!r} (value={self.value})") + + def has_dynamic_getattr(self) -> bool: + """Check if the node has a custom __getattr__ or __getattribute__. + + :returns: Whether the class has a custom __getattr__ or __getattribute__. + For a :class:`Const` this is always ``False``. + """ + return False + + def itered(self): + """An iterator over the elements this node contains. + + :returns: The contents of this node. + :rtype: iterable(Const) + + :raises TypeError: If this node does not represent something that is iterable. + """ + if isinstance(self.value, str): + return [const_factory(elem) for elem in self.value] + raise TypeError(f"Cannot iterate over type {type(self.value)!r}") + + def pytype(self) -> str: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return self._proxied.qname() + + def bool_value(self, context: InferenceContext | None = None): + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + :rtype: bool or Uninferable + """ + # bool(NotImplemented) is deprecated; it raises TypeError starting from Python 3.14 + # and returns True for versions under 3.14 + if self.value is NotImplemented: + return util.Uninferable if PY314_PLUS else True + return bool(self.value) + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator[Const]: + yield self + + +class Continue(_base_nodes.NoChildrenNode, _base_nodes.Statement): + """Class representing an :class:`ast.Continue` node. + + >>> import astroid + >>> node = astroid.extract_node('continue') + >>> node + + """ + + +class Decorators(NodeNG): + """A node representing a list of decorators. + + A :class:`Decorators` is the decorators that are applied to + a method or function. + + >>> import astroid + >>> node = astroid.extract_node(''' + @property + def my_property(self): + return 3 + ''') + >>> node + + >>> list(node.get_children())[0] + + """ + + _astroid_fields = ("nodes",) + + nodes: list[NodeNG] + """The decorators that this node contains.""" + + def postinit(self, nodes: list[NodeNG]) -> None: + self.nodes = nodes + + def scope(self) -> LocalsDictNodeNG: + """The first parent node defining a new scope. + These can be Module, FunctionDef, ClassDef, Lambda, or GeneratorExp nodes. + + :returns: The first parent scope node. + """ + # skip the function node to go directly to the upper level scope + if not self.parent: + raise ParentMissingError(target=self) + if not self.parent.parent: + raise ParentMissingError(target=self.parent) + return self.parent.parent.scope() + + def get_children(self): + yield from self.nodes + + +class DelAttr(_base_nodes.ParentAssignNode): + """Variation of :class:`ast.Delete` representing deletion of an attribute. + + >>> import astroid + >>> node = astroid.extract_node('del self.attr') + >>> node + + >>> list(node.get_children())[0] + + """ + + _astroid_fields = ("expr",) + _other_fields = ("attrname",) + + expr: NodeNG + """The name that this node represents.""" + + def __init__( + self, + attrname: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.attrname = attrname + """The name of the attribute that is being deleted.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, expr: NodeNG) -> None: + self.expr = expr + + def get_children(self): + yield self.expr + + +class Delete(_base_nodes.AssignTypeNode, _base_nodes.Statement): + """Class representing an :class:`ast.Delete` node. + + A :class:`Delete` is a ``del`` statement this is deleting something. + + >>> import astroid + >>> node = astroid.extract_node('del self.attr') + >>> node + + """ + + _astroid_fields = ("targets",) + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.targets: list[NodeNG] = [] + """What is being deleted.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, targets: list[NodeNG]) -> None: + self.targets = targets + + def get_children(self): + yield from self.targets + + +class Dict(NodeNG, Instance): + """Class representing an :class:`ast.Dict` node. + + A :class:`Dict` is a dictionary that is created with ``{}`` syntax. + + >>> import astroid + >>> node = astroid.extract_node('{1: "1"}') + >>> node + + """ + + _astroid_fields = ("items",) + + def __init__( + self, + lineno: int | None, + col_offset: int | None, + parent: NodeNG | None, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.items: list[tuple[InferenceResult, InferenceResult]] = [] + """The key-value pairs contained in the dictionary.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, items: list[tuple[InferenceResult, InferenceResult]]) -> None: + """Do some setup after initialisation. + + :param items: The key-value pairs contained in the dictionary. + """ + self.items = items + + infer_unary_op = protocols.dict_infer_unary_op + + def pytype(self) -> Literal["builtins.dict"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return "builtins.dict" + + def get_children(self): + """Get the key and value nodes below this node. + + Children are returned in the order that they are defined in the source + code, key first then the value. + + :returns: The children. + :rtype: iterable(NodeNG) + """ + for key, value in self.items: + yield key + yield value + + def last_child(self): + """An optimized version of list(get_children())[-1] + + :returns: The last child, or None if no children exist. + :rtype: NodeNG or None + """ + if self.items: + return self.items[-1][1] + return None + + def itered(self): + """An iterator over the keys this node contains. + + :returns: The keys of this node. + :rtype: iterable(NodeNG) + """ + return [key for (key, _) in self.items] + + def getitem( + self, index: Const | Slice, context: InferenceContext | None = None + ) -> NodeNG: + """Get an item from this node. + + :param index: The node to use as a subscript index. + + :raises AstroidTypeError: When the given index cannot be used as a + subscript index, or if this node is not subscriptable. + :raises AstroidIndexError: If the given index does not exist in the + dictionary. + """ + for key, value in self.items: + # TODO(cpopa): no support for overriding yet, {1:2, **{1: 3}}. + if isinstance(key, DictUnpack): + inferred_value = util.safe_infer(value, context) + if not isinstance(inferred_value, Dict): + continue + + try: + return inferred_value.getitem(index, context) + except (AstroidTypeError, AstroidIndexError): + continue + + for inferredkey in key.infer(context): + if isinstance(inferredkey, util.UninferableBase): + continue + if isinstance(inferredkey, Const) and isinstance(index, Const): + if inferredkey.value == index.value: + return value + + raise AstroidIndexError(index) + + def bool_value(self, context: InferenceContext | None = None): + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + :rtype: bool + """ + return bool(self.items) + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator[nodes.Dict]: + if not any(isinstance(k, DictUnpack) for k, _ in self.items): + yield self + else: + items = self._infer_map(context) + new_seq = type(self)( + lineno=self.lineno, + col_offset=self.col_offset, + parent=self.parent, + end_lineno=self.end_lineno, + end_col_offset=self.end_col_offset, + ) + new_seq.postinit(list(items.items())) + yield new_seq + + @staticmethod + def _update_with_replacement( + lhs_dict: dict[SuccessfulInferenceResult, SuccessfulInferenceResult], + rhs_dict: dict[SuccessfulInferenceResult, SuccessfulInferenceResult], + ) -> dict[SuccessfulInferenceResult, SuccessfulInferenceResult]: + """Delete nodes that equate to duplicate keys. + + Since an astroid node doesn't 'equal' another node with the same value, + this function uses the as_string method to make sure duplicate keys + don't get through + + Note that both the key and the value are astroid nodes + + Fixes issue with DictUnpack causing duplicate keys + in inferred Dict items + + :param lhs_dict: Dictionary to 'merge' nodes into + :param rhs_dict: Dictionary with nodes to pull from + :return : merged dictionary of nodes + """ + combined_dict = itertools.chain(lhs_dict.items(), rhs_dict.items()) + # Overwrite keys which have the same string values + string_map = {key.as_string(): (key, value) for key, value in combined_dict} + # Return to dictionary + return dict(string_map.values()) + + def _infer_map( + self, context: InferenceContext | None + ) -> dict[SuccessfulInferenceResult, SuccessfulInferenceResult]: + """Infer all values based on Dict.items.""" + values: dict[SuccessfulInferenceResult, SuccessfulInferenceResult] = {} + for name, value in self.items: + if isinstance(name, DictUnpack): + double_starred = util.safe_infer(value, context) + if not double_starred: + raise InferenceError + if not isinstance(double_starred, Dict): + raise InferenceError(node=self, context=context) + unpack_items = double_starred._infer_map(context) + values = self._update_with_replacement(values, unpack_items) + else: + key = util.safe_infer(name, context=context) + safe_value = util.safe_infer(value, context=context) + if any(not elem for elem in (key, safe_value)): + raise InferenceError(node=self, context=context) + # safe_value is SuccessfulInferenceResult as bool(Uninferable) == False + values = self._update_with_replacement(values, {key: safe_value}) + return values + + +class Expr(_base_nodes.Statement): + """Class representing an :class:`ast.Expr` node. + + An :class:`Expr` is any expression that does not have its value used or + stored. + + >>> import astroid + >>> node = astroid.extract_node('method()') + >>> node + + >>> node.parent + + """ + + _astroid_fields = ("value",) + + value: NodeNG + """What the expression does.""" + + def postinit(self, value: NodeNG) -> None: + self.value = value + + def get_children(self): + yield self.value + + def _get_yield_nodes_skip_functions(self): + if not self.value.is_function: + yield from self.value._get_yield_nodes_skip_functions() + + def _get_yield_nodes_skip_lambdas(self): + if not self.value.is_lambda: + yield from self.value._get_yield_nodes_skip_lambdas() + + +class EmptyNode(_base_nodes.NoChildrenNode): + """Holds an arbitrary object in the :attr:`LocalsDictNodeNG.locals`.""" + + object = None + + def __init__( + self, + lineno: None = None, + col_offset: None = None, + parent: NodeNG = SYNTHETIC_ROOT, + *, + end_lineno: None = None, + end_col_offset: None = None, + ) -> None: + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def has_underlying_object(self) -> bool: + return self.object is not None and self.object is not _EMPTY_OBJECT_MARKER + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + if not self.has_underlying_object(): + yield util.Uninferable + else: + try: + yield from AstroidManager().infer_ast_from_something( + self.object, context=context + ) + except AstroidError: + yield util.Uninferable + + +class ExceptHandler( + _base_nodes.MultiLineBlockNode, _base_nodes.AssignTypeNode, _base_nodes.Statement +): + """Class representing an :class:`ast.ExceptHandler`. node. + + An :class:`ExceptHandler` is an ``except`` block on a try-except. + + >>> import astroid + >>> node = astroid.extract_node(''' + try: + do_something() + except Exception as error: + print("Error!") + ''') + >>> node + + >>> node.handlers + [] + """ + + _astroid_fields = ("type", "name", "body") + _multi_line_block_fields = ("body",) + + type: NodeNG | None + """The types that the block handles.""" + + name: AssignName | None + """The name that the caught exception is assigned to.""" + + body: list[NodeNG] + """The contents of the block.""" + + assigned_stmts = protocols.excepthandler_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def postinit( + self, + type: NodeNG | None, # pylint: disable = redefined-builtin + name: AssignName | None, + body: list[NodeNG], + ) -> None: + self.type = type + self.name = name + self.body = body + + def get_children(self): + if self.type is not None: + yield self.type + + if self.name is not None: + yield self.name + + yield from self.body + + @cached_property + def blockstart_tolineno(self): + """The line on which the beginning of this block ends. + + :type: int + """ + if self.name: + return self.name.tolineno + if self.type: + return self.type.tolineno + return self.lineno + + def catch(self, exceptions: list[str] | None) -> bool: + """Check if this node handles any of the given + + :param exceptions: The names of the exceptions to check for. + """ + if self.type is None or exceptions is None: + return True + return any(node.name in exceptions for node in self.type._get_name_nodes()) + + +class For( + _base_nodes.MultiLineWithElseBlockNode, + _base_nodes.AssignTypeNode, + _base_nodes.Statement, +): + """Class representing an :class:`ast.For` node. + + >>> import astroid + >>> node = astroid.extract_node('for thing in things: print(thing)') + >>> node + + """ + + _astroid_fields = ("target", "iter", "body", "orelse") + _other_other_fields = ("type_annotation",) + _multi_line_block_fields = ("body", "orelse") + + optional_assign = True + """Whether this node optionally assigns a variable. + + This is always ``True`` for :class:`For` nodes. + """ + + target: NodeNG + """What the loop assigns to.""" + + iter: NodeNG + """What the loop iterates over.""" + + body: list[NodeNG] + """The contents of the body of the loop.""" + + orelse: list[NodeNG] + """The contents of the ``else`` block of the loop.""" + + type_annotation: NodeNG | None + """If present, this will contain the type annotation passed by a type comment""" + + def postinit( + self, + target: NodeNG, + iter: NodeNG, # pylint: disable = redefined-builtin + body: list[NodeNG], + orelse: list[NodeNG], + type_annotation: NodeNG | None, + ) -> None: + self.target = target + self.iter = iter + self.body = body + self.orelse = orelse + self.type_annotation = type_annotation + + assigned_stmts = protocols.for_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + @cached_property + def blockstart_tolineno(self): + """The line on which the beginning of this block ends. + + :type: int + """ + return self.iter.tolineno + + def get_children(self): + yield self.target + yield self.iter + + yield from self.body + yield from self.orelse + + +class AsyncFor(For): + """Class representing an :class:`ast.AsyncFor` node. + + An :class:`AsyncFor` is an asynchronous :class:`For` built with + the ``async`` keyword. + + >>> import astroid + >>> node = astroid.extract_node(''' + async def func(things): + async for thing in things: + print(thing) + ''') + >>> node + + >>> node.body[0] + + """ + + +class Await(NodeNG): + """Class representing an :class:`ast.Await` node. + + An :class:`Await` is the ``await`` keyword. + + >>> import astroid + >>> node = astroid.extract_node(''' + async def func(things): + await other_func() + ''') + >>> node + + >>> node.body[0] + + >>> list(node.body[0].get_children())[0] + + """ + + _astroid_fields = ("value",) + + value: NodeNG + """What to wait for.""" + + def postinit(self, value: NodeNG) -> None: + self.value = value + + def get_children(self): + yield self.value + + +class ImportFrom(_base_nodes.ImportNode): + """Class representing an :class:`ast.ImportFrom` node. + + >>> import astroid + >>> node = astroid.extract_node('from my_package import my_module') + >>> node + + """ + + _other_fields = ("modname", "names", "level") + + def __init__( + self, + fromname: str | None, + names: list[tuple[str, str | None]], + level: int | None = 0, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param fromname: The module that is being imported from. + + :param names: What is being imported from the module. + + :param level: The level of relative import. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.modname: str | None = fromname # can be None + """The module that is being imported from. + + This is ``None`` for relative imports. + """ + + self.names: list[tuple[str, str | None]] = names + """What is being imported from the module. + + Each entry is a :class:`tuple` of the name being imported, + and the alias that the name is assigned to (if any). + """ + + # TODO When is 'level' None? + self.level: int | None = level # can be None + """The level of relative import. + + Essentially this is the number of dots in the import. + This is always 0 for absolute imports. + """ + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, + context: InferenceContext | None = None, + asname: bool = True, + **kwargs: Any, + ) -> Generator[InferenceResult]: + """Infer a ImportFrom node: return the imported module/object.""" + context = context or InferenceContext() + name = context.lookupname + if name is None: + raise InferenceError(node=self, context=context) + if asname: + try: + name = self.real_name(name) + except AttributeInferenceError as exc: + # See https://github.com/pylint-dev/pylint/issues/4692 + raise InferenceError(node=self, context=context) from exc + try: + module = self.do_import_module() + except AstroidBuildingError as exc: + raise InferenceError(node=self, context=context) from exc + + try: + context = copy_context(context) + context.lookupname = name + stmts = module.getattr(name, ignore_locals=module is self.root()) + return _infer_stmts(stmts, context) + except AttributeInferenceError as error: + raise InferenceError( + str(error), target=self, attribute=name, context=context + ) from error + + +class Attribute(NodeNG): + """Class representing an :class:`ast.Attribute` node.""" + + expr: NodeNG + + _astroid_fields = ("expr",) + _other_fields = ("attrname",) + + def __init__( + self, + attrname: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.attrname = attrname + """The name of the attribute.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, expr: NodeNG) -> None: + self.expr = expr + + def get_children(self): + yield self.expr + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo]: + return _infer_attribute(self, context, **kwargs) + + +class Global(_base_nodes.NoChildrenNode, _base_nodes.Statement): + """Class representing an :class:`ast.Global` node. + + >>> import astroid + >>> node = astroid.extract_node('global a_global') + >>> node + + """ + + _other_fields = ("names",) + + def __init__( + self, + names: list[str], + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param names: The names being declared as global. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.names: list[str] = names + """The names being declared as global.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def _infer_name(self, frame, name): + return name + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + if context is None or context.lookupname is None: + raise InferenceError(node=self, context=context) + try: + # pylint: disable-next=no-member + return _infer_stmts(self.root().getattr(context.lookupname), context) + except AttributeInferenceError as error: + raise InferenceError( + str(error), target=self, attribute=context.lookupname, context=context + ) from error + + +class If(_base_nodes.MultiLineWithElseBlockNode, _base_nodes.Statement): + """Class representing an :class:`ast.If` node. + + >>> import astroid + >>> node = astroid.extract_node('if condition: print(True)') + >>> node + + """ + + _astroid_fields = ("test", "body", "orelse") + _multi_line_block_fields = ("body", "orelse") + + test: NodeNG + """The condition that the statement tests.""" + + body: list[NodeNG] + """The contents of the block.""" + + orelse: list[NodeNG] + """The contents of the ``else`` block.""" + + def postinit(self, test: NodeNG, body: list[NodeNG], orelse: list[NodeNG]) -> None: + self.test = test + self.body = body + self.orelse = orelse + + @cached_property + def blockstart_tolineno(self): + """The line on which the beginning of this block ends. + + :type: int + """ + return self.test.tolineno + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from the given line number to where this node ends. + + :param lineno: The line number to start the range at. + + :returns: The range of line numbers that this node belongs to, + starting at the given line number. + """ + if lineno == self.body[0].fromlineno: + return lineno, lineno + if lineno <= self.body[-1].tolineno: + return lineno, self.body[-1].tolineno + return self._elsed_block_range(lineno, self.orelse, self.body[0].fromlineno - 1) + + def get_children(self): + yield self.test + + yield from self.body + yield from self.orelse + + def has_elif_block(self) -> bool: + return len(self.orelse) == 1 and isinstance(self.orelse[0], If) + + def _get_yield_nodes_skip_functions(self): + """An If node can contain a Yield node in the test""" + yield from self.test._get_yield_nodes_skip_functions() + yield from super()._get_yield_nodes_skip_functions() + + def _get_yield_nodes_skip_lambdas(self): + """An If node can contain a Yield node in the test""" + yield from self.test._get_yield_nodes_skip_lambdas() + yield from super()._get_yield_nodes_skip_lambdas() + + +class IfExp(NodeNG): + """Class representing an :class:`ast.IfExp` node. + >>> import astroid + >>> node = astroid.extract_node('value if condition else other') + >>> node + + """ + + _astroid_fields = ("test", "body", "orelse") + + test: NodeNG + """The condition that the statement tests.""" + + body: NodeNG + """The contents of the block.""" + + orelse: NodeNG + """The contents of the ``else`` block.""" + + def postinit(self, test: NodeNG, body: NodeNG, orelse: NodeNG) -> None: + self.test = test + self.body = body + self.orelse = orelse + + def get_children(self): + yield self.test + yield self.body + yield self.orelse + + def op_left_associative(self) -> Literal[False]: + # `1 if True else 2 if False else 3` is parsed as + # `1 if True else (2 if False else 3)` + return False + + @decorators.raise_if_nothing_inferred + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + """Support IfExp inference. + + If we can't infer the truthiness of the condition, we default + to inferring both branches. Otherwise, we infer either branch + depending on the condition. + """ + both_branches = False + # We use two separate contexts for evaluating lhs and rhs because + # evaluating lhs may leave some undesired entries in context.path + # which may not let us infer right value of rhs. + + context = context or InferenceContext() + lhs_context = copy_context(context) + rhs_context = copy_context(context) + try: + test = next(self.test.infer(context=context.clone())) + except (InferenceError, StopIteration): + both_branches = True + else: + test_bool_value = test.bool_value() + if not isinstance(test, util.UninferableBase) and not isinstance( + test_bool_value, util.UninferableBase + ): + if test_bool_value: + yield from self.body.infer(context=lhs_context) + else: + yield from self.orelse.infer(context=rhs_context) + else: + both_branches = True + if both_branches: + yield from self.body.infer(context=lhs_context) + yield from self.orelse.infer(context=rhs_context) + + +class Import(_base_nodes.ImportNode): + """Class representing an :class:`ast.Import` node. + >>> import astroid + >>> node = astroid.extract_node('import astroid') + >>> node + + """ + + _other_fields = ("names",) + + def __init__( + self, + names: list[tuple[str, str | None]], + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param names: The names being imported. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.names: list[tuple[str, str | None]] = names + """The names being imported. + + Each entry is a :class:`tuple` of the name being imported, + and the alias that the name is assigned to (if any). + """ + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self, + context: InferenceContext | None = None, + asname: bool = True, + **kwargs: Any, + ) -> Generator[nodes.Module]: + """Infer an Import node: return the imported module/object.""" + context = context or InferenceContext() + name = context.lookupname + if name is None: + raise InferenceError(node=self, context=context) + + try: + if asname: + yield self.do_import_module(self.real_name(name)) + else: + yield self.do_import_module(name) + except AstroidBuildingError as exc: + raise InferenceError(node=self, context=context) from exc + + +class Keyword(NodeNG): + """Class representing an :class:`ast.keyword` node. + + >>> import astroid + >>> node = astroid.extract_node('function(a_kwarg=True)') + >>> node + + >>> node.keywords + [] + """ + + _astroid_fields = ("value",) + _other_fields = ("arg",) + + value: NodeNG + """The value being assigned to the keyword argument.""" + + def __init__( + self, + arg: str | None, + lineno: int | None, + col_offset: int | None, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.arg = arg + """The argument being assigned to.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, value: NodeNG) -> None: + self.value = value + + def get_children(self): + yield self.value + + +class List(BaseContainer): + """Class representing an :class:`ast.List` node. + + >>> import astroid + >>> node = astroid.extract_node('[1, 2, 3]') + >>> node + + """ + + _other_fields = ("ctx",) + + def __init__( + self, + ctx: Context | None = None, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param ctx: Whether the list is assigned to or loaded from. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.ctx: Context | None = ctx + """Whether the list is assigned to or loaded from.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + assigned_stmts = protocols.sequence_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + infer_unary_op = protocols.list_infer_unary_op + infer_binary_op = protocols.tl_infer_binary_op + + def pytype(self) -> Literal["builtins.list"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return "builtins.list" + + def getitem(self, index, context: InferenceContext | None = None): + """Get an item from this node. + + :param index: The node to use as a subscript index. + :type index: Const or Slice + """ + return _container_getitem(self, self.elts, index, context=context) + + +class Nonlocal(_base_nodes.NoChildrenNode, _base_nodes.Statement): + """Class representing an :class:`ast.Nonlocal` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + def function(): + nonlocal var + ''') + >>> node + + >>> node.body[0] + + """ + + _other_fields = ("names",) + + def __init__( + self, + names: list[str], + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param names: The names being declared as not local. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.names: list[str] = names + """The names being declared as not local.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def _infer_name(self, frame, name): + return name + + +class ParamSpec(_base_nodes.AssignTypeNode): + """Class representing a :class:`ast.ParamSpec` node. + + >>> import astroid + >>> node = astroid.extract_node('type Alias[**P] = Callable[P, int]') + >>> node.type_params[0] + + """ + + _astroid_fields = ("name", "default_value") + name: AssignName + default_value: NodeNG | None + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int, + end_col_offset: int, + ) -> None: + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, *, name: AssignName, default_value: NodeNG | None) -> None: + self.name = name + self.default_value = default_value + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator[ParamSpec]: + yield self + + assigned_stmts = protocols.generic_type_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + +class Pass(_base_nodes.NoChildrenNode, _base_nodes.Statement): + """Class representing an :class:`ast.Pass` node. + + >>> import astroid + >>> node = astroid.extract_node('pass') + >>> node + + """ + + +class Raise(_base_nodes.Statement): + """Class representing an :class:`ast.Raise` node. + + >>> import astroid + >>> node = astroid.extract_node('raise RuntimeError("Something bad happened!")') + >>> node + + """ + + _astroid_fields = ("exc", "cause") + + exc: NodeNG | None + """What is being raised.""" + + cause: NodeNG | None + """The exception being used to raise this one.""" + + def postinit( + self, + exc: NodeNG | None, + cause: NodeNG | None, + ) -> None: + self.exc = exc + self.cause = cause + + def raises_not_implemented(self) -> bool: + """Check if this node raises a :class:`NotImplementedError`. + + :returns: Whether this node raises a :class:`NotImplementedError`. + """ + if not self.exc: + return False + return any( + name.name == "NotImplementedError" for name in self.exc._get_name_nodes() + ) + + def get_children(self): + if self.exc is not None: + yield self.exc + + if self.cause is not None: + yield self.cause + + +class Return(_base_nodes.Statement): + """Class representing an :class:`ast.Return` node. + + >>> import astroid + >>> node = astroid.extract_node('return True') + >>> node + + """ + + _astroid_fields = ("value",) + + value: NodeNG | None + """The value being returned.""" + + def postinit(self, value: NodeNG | None) -> None: + self.value = value + + def get_children(self): + if self.value is not None: + yield self.value + + def is_tuple_return(self) -> bool: + return isinstance(self.value, Tuple) + + def _get_return_nodes_skip_functions(self): + yield self + + +class Set(BaseContainer): + """Class representing an :class:`ast.Set` node. + + >>> import astroid + >>> node = astroid.extract_node('{1, 2, 3}') + >>> node + + """ + + infer_unary_op = protocols.set_infer_unary_op + + def pytype(self) -> Literal["builtins.set"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return "builtins.set" + + +class Slice(NodeNG): + """Class representing an :class:`ast.Slice` node. + + >>> import astroid + >>> node = astroid.extract_node('things[1:3]') + >>> node + + >>> node.slice + + """ + + _astroid_fields = ("lower", "upper", "step") + + lower: NodeNG | None + """The lower index in the slice.""" + + upper: NodeNG | None + """The upper index in the slice.""" + + step: NodeNG | None + """The step to take between indexes.""" + + def postinit( + self, + lower: NodeNG | None, + upper: NodeNG | None, + step: NodeNG | None, + ) -> None: + self.lower = lower + self.upper = upper + self.step = step + + def _wrap_attribute(self, attr): + """Wrap the empty attributes of the Slice in a Const node.""" + if not attr: + const = const_factory(attr) + const.parent = self + return const + return attr + + @cached_property + def _proxied(self) -> nodes.ClassDef: + builtins = AstroidManager().builtins_module + return builtins.getattr("slice")[0] + + def pytype(self) -> Literal["builtins.slice"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return "builtins.slice" + + def display_type(self) -> Literal["Slice"]: + """A human readable type of this node. + + :returns: The type of this node. + """ + return "Slice" + + def igetattr( + self, attrname: str, context: InferenceContext | None = None + ) -> Iterator[SuccessfulInferenceResult]: + """Infer the possible values of the given attribute on the slice. + + :param attrname: The name of the attribute to infer. + + :returns: The inferred possible values. + """ + if attrname == "start": + yield self._wrap_attribute(self.lower) + elif attrname == "stop": + yield self._wrap_attribute(self.upper) + elif attrname == "step": + yield self._wrap_attribute(self.step) + else: + yield from self.getattr(attrname, context=context) + + def getattr(self, attrname, context: InferenceContext | None = None): + return self._proxied.getattr(attrname, context) + + def get_children(self): + if self.lower is not None: + yield self.lower + + if self.upper is not None: + yield self.upper + + if self.step is not None: + yield self.step + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator[Slice]: + yield self + + +class Starred(_base_nodes.ParentAssignNode): + """Class representing an :class:`ast.Starred` node. + + >>> import astroid + >>> node = astroid.extract_node('*args') + >>> node + + """ + + _astroid_fields = ("value",) + _other_fields = ("ctx",) + + value: NodeNG + """What is being unpacked.""" + + def __init__( + self, + ctx: Context, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.ctx = ctx + """Whether the starred item is assigned to or loaded from.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, value: NodeNG) -> None: + self.value = value + + assigned_stmts = protocols.starred_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def get_children(self): + yield self.value + + +class Subscript(NodeNG): + """Class representing an :class:`ast.Subscript` node. + + >>> import astroid + >>> node = astroid.extract_node('things[1:3]') + >>> node + + """ + + _SUBSCRIPT_SENTINEL = object() + _astroid_fields = ("value", "slice") + _other_fields = ("ctx",) + + value: NodeNG + """What is being indexed.""" + + slice: NodeNG + """The slice being used to lookup.""" + + def __init__( + self, + ctx: Context, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.ctx = ctx + """Whether the subscripted item is assigned to or loaded from.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + # pylint: disable=redefined-builtin; had to use the same name as builtin ast module. + def postinit(self, value: NodeNG, slice: NodeNG) -> None: + self.value = value + self.slice = slice + + def get_children(self): + yield self.value + yield self.slice + + def _infer_subscript( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + """Inference for subscripts. + + We're understanding if the index is a Const + or a slice, passing the result of inference + to the value's `getitem` method, which should + handle each supported index type accordingly. + """ + from astroid import helpers # pylint: disable=import-outside-toplevel + + found_one = False + for value in self.value.infer(context): + if isinstance(value, util.UninferableBase): + yield util.Uninferable + return None + for index in self.slice.infer(context): + if isinstance(index, util.UninferableBase): + yield util.Uninferable + return None + + # Try to deduce the index value. + index_value = self._SUBSCRIPT_SENTINEL + if value.__class__ == Instance: + index_value = index + elif index.__class__ == Instance: + instance_as_index = helpers.class_instance_as_index(index) + if instance_as_index: + index_value = instance_as_index + else: + index_value = index + + if index_value is self._SUBSCRIPT_SENTINEL: + raise InferenceError(node=self, context=context) + + try: + assigned = value.getitem(index_value, context) + except ( + AstroidTypeError, + AstroidIndexError, + AstroidValueError, + AttributeInferenceError, + AttributeError, + ) as exc: + raise InferenceError(node=self, context=context) from exc + + # Prevent inferring if the inferred subscript + # is the same as the original subscripted object. + if self is assigned or isinstance(assigned, util.UninferableBase): + yield util.Uninferable + return None + yield from assigned.infer(context) + found_one = True + + if found_one: + return InferenceErrorInfo(node=self, context=context) + return None + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer(self, context: InferenceContext | None = None, **kwargs: Any): + return self._infer_subscript(context, **kwargs) + + @decorators.raise_if_nothing_inferred + def infer_lhs(self, context: InferenceContext | None = None, **kwargs: Any): + return self._infer_subscript(context, **kwargs) + + +class Try(_base_nodes.MultiLineWithElseBlockNode, _base_nodes.Statement): + """Class representing a :class:`ast.Try` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + try: + do_something() + except Exception as error: + print("Error!") + finally: + print("Cleanup!") + ''') + >>> node + + """ + + _astroid_fields = ("body", "handlers", "orelse", "finalbody") + _multi_line_block_fields = ("body", "handlers", "orelse", "finalbody") + + def __init__( + self, + *, + lineno: int, + col_offset: int, + end_lineno: int, + end_col_offset: int, + parent: NodeNG, + ) -> None: + """ + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.body: list[NodeNG] = [] + """The contents of the block to catch exceptions from.""" + + self.handlers: list[ExceptHandler] = [] + """The exception handlers.""" + + self.orelse: list[NodeNG] = [] + """The contents of the ``else`` block.""" + + self.finalbody: list[NodeNG] = [] + """The contents of the ``finally`` block.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + body: list[NodeNG], + handlers: list[ExceptHandler], + orelse: list[NodeNG], + finalbody: list[NodeNG], + ) -> None: + """Do some setup after initialisation. + + :param body: The contents of the block to catch exceptions from. + + :param handlers: The exception handlers. + + :param orelse: The contents of the ``else`` block. + + :param finalbody: The contents of the ``finally`` block. + """ + self.body = body + self.handlers = handlers + self.orelse = orelse + self.finalbody = finalbody + + def _infer_name(self, frame, name): + return name + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from a given line number to where this node ends.""" + if lineno == self.fromlineno: + return lineno, lineno + if self.body and self.body[0].fromlineno <= lineno <= self.body[-1].tolineno: + # Inside try body - return from lineno till end of try body + return lineno, self.body[-1].tolineno + for exhandler in self.handlers: + if exhandler.type and lineno == exhandler.type.fromlineno: + return lineno, lineno + if exhandler.body[0].fromlineno <= lineno <= exhandler.body[-1].tolineno: + return lineno, exhandler.body[-1].tolineno + if self.orelse: + if self.orelse[0].fromlineno - 1 == lineno: + return lineno, lineno + if self.orelse[0].fromlineno <= lineno <= self.orelse[-1].tolineno: + return lineno, self.orelse[-1].tolineno + if self.finalbody: + if self.finalbody[0].fromlineno - 1 == lineno: + return lineno, lineno + if self.finalbody[0].fromlineno <= lineno <= self.finalbody[-1].tolineno: + return lineno, self.finalbody[-1].tolineno + return lineno, self.tolineno + + def get_children(self): + yield from self.body + yield from self.handlers + yield from self.orelse + yield from self.finalbody + + +class TryStar(_base_nodes.MultiLineWithElseBlockNode, _base_nodes.Statement): + """Class representing an :class:`ast.TryStar` node.""" + + _astroid_fields = ("body", "handlers", "orelse", "finalbody") + _multi_line_block_fields = ("body", "handlers", "orelse", "finalbody") + + def __init__( + self, + *, + lineno: int | None = None, + col_offset: int | None = None, + end_lineno: int | None = None, + end_col_offset: int | None = None, + parent: NodeNG | None = None, + ) -> None: + """ + :param lineno: The line that this node appears on in the source code. + :param col_offset: The column that this node appears on in the + source code. + :param parent: The parent node in the syntax tree. + :param end_lineno: The last line this node appears on in the source code. + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.body: list[NodeNG] = [] + """The contents of the block to catch exceptions from.""" + + self.handlers: list[ExceptHandler] = [] + """The exception handlers.""" + + self.orelse: list[NodeNG] = [] + """The contents of the ``else`` block.""" + + self.finalbody: list[NodeNG] = [] + """The contents of the ``finally`` block.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + body: list[NodeNG] | None = None, + handlers: list[ExceptHandler] | None = None, + orelse: list[NodeNG] | None = None, + finalbody: list[NodeNG] | None = None, + ) -> None: + """Do some setup after initialisation. + :param body: The contents of the block to catch exceptions from. + :param handlers: The exception handlers. + :param orelse: The contents of the ``else`` block. + :param finalbody: The contents of the ``finally`` block. + """ + if body: + self.body = body + if handlers: + self.handlers = handlers + if orelse: + self.orelse = orelse + if finalbody: + self.finalbody = finalbody + + def _infer_name(self, frame, name): + return name + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from a given line number to where this node ends.""" + if lineno == self.fromlineno: + return lineno, lineno + if self.body and self.body[0].fromlineno <= lineno <= self.body[-1].tolineno: + # Inside try body - return from lineno till end of try body + return lineno, self.body[-1].tolineno + for exhandler in self.handlers: + if exhandler.type and lineno == exhandler.type.fromlineno: + return lineno, lineno + if exhandler.body[0].fromlineno <= lineno <= exhandler.body[-1].tolineno: + return lineno, exhandler.body[-1].tolineno + if self.orelse: + if self.orelse[0].fromlineno - 1 == lineno: + return lineno, lineno + if self.orelse[0].fromlineno <= lineno <= self.orelse[-1].tolineno: + return lineno, self.orelse[-1].tolineno + if self.finalbody: + if self.finalbody[0].fromlineno - 1 == lineno: + return lineno, lineno + if self.finalbody[0].fromlineno <= lineno <= self.finalbody[-1].tolineno: + return lineno, self.finalbody[-1].tolineno + return lineno, self.tolineno + + def get_children(self): + yield from self.body + yield from self.handlers + yield from self.orelse + yield from self.finalbody + + +class Tuple(BaseContainer): + """Class representing an :class:`ast.Tuple` node. + + >>> import astroid + >>> node = astroid.extract_node('(1, 2, 3)') + >>> node + + """ + + _other_fields = ("ctx",) + + def __init__( + self, + ctx: Context | None = None, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param ctx: Whether the tuple is assigned to or loaded from. + + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.ctx: Context | None = ctx + """Whether the tuple is assigned to or loaded from.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + assigned_stmts = protocols.sequence_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + infer_unary_op = protocols.tuple_infer_unary_op + infer_binary_op = protocols.tl_infer_binary_op + + def pytype(self) -> Literal["builtins.tuple"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return "builtins.tuple" + + def getitem(self, index, context: InferenceContext | None = None): + """Get an item from this node. + + :param index: The node to use as a subscript index. + :type index: Const or Slice + """ + return _container_getitem(self, self.elts, index, context=context) + + +class TypeAlias(_base_nodes.AssignTypeNode, _base_nodes.Statement): + """Class representing a :class:`ast.TypeAlias` node. + + >>> import astroid + >>> node = astroid.extract_node('type Point = tuple[float, float]') + >>> node + + """ + + _astroid_fields = ("name", "type_params", "value") + + name: AssignName + type_params: list[TypeVar | ParamSpec | TypeVarTuple] + value: NodeNG + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int, + end_col_offset: int, + ) -> None: + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + name: AssignName, + type_params: list[TypeVar | ParamSpec | TypeVarTuple], + value: NodeNG, + ) -> None: + self.name = name + self.type_params = type_params + self.value = value + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator[TypeAlias]: + yield self + + assigned_stmts: ClassVar[ + Callable[ + [ + TypeAlias, + AssignName, + InferenceContext | None, + None, + ], + Generator[NodeNG], + ] + ] = protocols.assign_assigned_stmts + + +class TypeVar(_base_nodes.AssignTypeNode): + """Class representing a :class:`ast.TypeVar` node. + + >>> import astroid + >>> node = astroid.extract_node('type Point[T] = tuple[float, float]') + >>> node.type_params[0] + + """ + + _astroid_fields = ("name", "bound", "default_value") + name: AssignName + bound: NodeNG | None + default_value: NodeNG | None + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int, + end_col_offset: int, + ) -> None: + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + name: AssignName, + bound: NodeNG | None, + default_value: NodeNG | None = None, + ) -> None: + self.name = name + self.bound = bound + self.default_value = default_value + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator[TypeVar]: + yield self + + assigned_stmts = protocols.generic_type_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + +class TypeVarTuple(_base_nodes.AssignTypeNode): + """Class representing a :class:`ast.TypeVarTuple` node. + + >>> import astroid + >>> node = astroid.extract_node('type Alias[*Ts] = tuple[*Ts]') + >>> node.type_params[0] + + """ + + _astroid_fields = ("name", "default_value") + name: AssignName + default_value: NodeNG | None + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int, + end_col_offset: int, + ) -> None: + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, *, name: AssignName, default_value: NodeNG | None = None + ) -> None: + self.name = name + self.default_value = default_value + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Iterator[TypeVarTuple]: + yield self + + assigned_stmts = protocols.generic_type_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + +UNARY_OP_METHOD = { + "+": "__pos__", + "-": "__neg__", + "~": "__invert__", + "not": None, # XXX not '__nonzero__' +} + + +class UnaryOp(_base_nodes.OperatorNode): + """Class representing an :class:`ast.UnaryOp` node. + + >>> import astroid + >>> node = astroid.extract_node('-5') + >>> node + + """ + + _astroid_fields = ("operand",) + _other_fields = ("op",) + + operand: NodeNG + """What the unary operator is applied to.""" + + def __init__( + self, + op: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.op = op + """The operator.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, operand: NodeNG) -> None: + self.operand = operand + + def type_errors( + self, context: InferenceContext | None = None + ) -> list[util.BadUnaryOperationMessage]: + """Get a list of type errors which can occur during inference. + + Each TypeError is represented by a :class:`BadUnaryOperationMessage`, + which holds the original exception. + + If any inferred result is uninferable, an empty list is returned. + """ + bad = [] + try: + for result in self._infer_unaryop(context=context): + if result is util.Uninferable: + raise InferenceError + if isinstance(result, util.BadUnaryOperationMessage): + bad.append(result) + except InferenceError: + return [] + return bad + + def get_children(self): + yield self.operand + + def op_precedence(self) -> int: + if self.op == "not": + return OP_PRECEDENCE[self.op] + + return super().op_precedence() + + def _infer_unaryop( + self: nodes.UnaryOp, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[ + InferenceResult | util.BadUnaryOperationMessage, None, InferenceErrorInfo + ]: + """Infer what an UnaryOp should return when evaluated.""" + from astroid.nodes import ClassDef # pylint: disable=import-outside-toplevel + + for operand in self.operand.infer(context): + try: + yield operand.infer_unary_op(self.op) + except TypeError as exc: + # The operand doesn't support this operation. + yield util.BadUnaryOperationMessage(operand, self.op, exc) + except AttributeError as exc: + meth = UNARY_OP_METHOD[self.op] + if meth is None: + # `not node`. Determine node's boolean + # value and negate its result, unless it is + # Uninferable, which will be returned as is. + bool_value = operand.bool_value() + if not isinstance(bool_value, util.UninferableBase): + yield const_factory(not bool_value) + else: + yield util.Uninferable + else: + if not isinstance(operand, (Instance, ClassDef)): + # The operation was used on something which + # doesn't support it. + yield util.BadUnaryOperationMessage(operand, self.op, exc) + continue + + try: + try: + methods = dunder_lookup.lookup(operand, meth) + except AttributeInferenceError: + yield util.BadUnaryOperationMessage(operand, self.op, exc) + continue + + meth = methods[0] + inferred = next(meth.infer(context=context), None) + if ( + isinstance(inferred, util.UninferableBase) + or not inferred.callable() + ): + continue + + context = copy_context(context) + context.boundnode = operand + context.callcontext = CallContext(args=[], callee=inferred) + + call_results = inferred.infer_call_result(self, context=context) + result = next(call_results, None) + if result is None: + # Failed to infer, return the same type. + yield operand + else: + yield result + except AttributeInferenceError as inner_exc: + # The unary operation special method was not found. + yield util.BadUnaryOperationMessage(operand, self.op, inner_exc) + except InferenceError: + yield util.Uninferable + + @decorators.raise_if_nothing_inferred + @decorators.path_wrapper + def _infer( + self: nodes.UnaryOp, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo]: + """Infer what an UnaryOp should return when evaluated.""" + yield from self._filter_operation_errors( + self._infer_unaryop, context, util.BadUnaryOperationMessage + ) + return InferenceErrorInfo(node=self, context=context) + + +class While(_base_nodes.MultiLineWithElseBlockNode, _base_nodes.Statement): + """Class representing an :class:`ast.While` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + while condition(): + print("True") + ''') + >>> node + + """ + + _astroid_fields = ("test", "body", "orelse") + _multi_line_block_fields = ("body", "orelse") + + test: NodeNG + """The condition that the loop tests.""" + + body: list[NodeNG] + """The contents of the loop.""" + + orelse: list[NodeNG] + """The contents of the ``else`` block.""" + + def postinit( + self, + test: NodeNG, + body: list[NodeNG], + orelse: list[NodeNG], + ) -> None: + self.test = test + self.body = body + self.orelse = orelse + + @cached_property + def blockstart_tolineno(self): + """The line on which the beginning of this block ends. + + :type: int + """ + return self.test.tolineno + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from the given line number to where this node ends. + + :param lineno: The line number to start the range at. + + :returns: The range of line numbers that this node belongs to, + starting at the given line number. + """ + return self._elsed_block_range(lineno, self.orelse) + + def get_children(self): + yield self.test + + yield from self.body + yield from self.orelse + + def _get_yield_nodes_skip_functions(self): + """A While node can contain a Yield node in the test""" + yield from self.test._get_yield_nodes_skip_functions() + yield from super()._get_yield_nodes_skip_functions() + + def _get_yield_nodes_skip_lambdas(self): + """A While node can contain a Yield node in the test""" + yield from self.test._get_yield_nodes_skip_lambdas() + yield from super()._get_yield_nodes_skip_lambdas() + + +class With( + _base_nodes.MultiLineWithElseBlockNode, + _base_nodes.AssignTypeNode, + _base_nodes.Statement, +): + """Class representing an :class:`ast.With` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + with open(file_path) as file_: + print(file_.read()) + ''') + >>> node + + """ + + _astroid_fields = ("items", "body") + _other_other_fields = ("type_annotation",) + _multi_line_block_fields = ("body",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.items: list[tuple[NodeNG, NodeNG | None]] = [] + """The pairs of context managers and the names they are assigned to.""" + + self.body: list[NodeNG] = [] + """The contents of the ``with`` block.""" + + self.type_annotation: NodeNG | None = None # can be None + """If present, this will contain the type annotation passed by a type comment""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + items: list[tuple[NodeNG, NodeNG | None]] | None = None, + body: list[NodeNG] | None = None, + type_annotation: NodeNG | None = None, + ) -> None: + """Do some setup after initialisation. + + :param items: The pairs of context managers and the names + they are assigned to. + + :param body: The contents of the ``with`` block. + """ + if items is not None: + self.items = items + if body is not None: + self.body = body + self.type_annotation = type_annotation + + assigned_stmts = protocols.with_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + @cached_property + def blockstart_tolineno(self): + """The line on which the beginning of this block ends. + + :type: int + """ + return self.items[-1][0].tolineno + + def get_children(self): + """Get the child nodes below this node. + + :returns: The children. + :rtype: iterable(NodeNG) + """ + for expr, var in self.items: + yield expr + if var: + yield var + yield from self.body + + +class AsyncWith(With): + """Asynchronous ``with`` built with the ``async`` keyword.""" + + +class Yield(NodeNG): + """Class representing an :class:`ast.Yield` node. + + >>> import astroid + >>> node = astroid.extract_node('yield True') + >>> node + + """ + + _astroid_fields = ("value",) + + value: NodeNG | None + """The value to yield.""" + + def postinit(self, value: NodeNG | None) -> None: + self.value = value + + def get_children(self): + if self.value is not None: + yield self.value + + def _get_yield_nodes_skip_functions(self): + yield self + + def _get_yield_nodes_skip_lambdas(self): + yield self + + +class YieldFrom(Yield): # TODO value is required, not optional + """Class representing an :class:`ast.YieldFrom` node.""" + + +class DictUnpack(_base_nodes.NoChildrenNode): + """Represents the unpacking of dicts into dicts using :pep:`448`.""" + + +class FormattedValue(NodeNG): + """Class representing an :class:`ast.FormattedValue` node. + + Represents a :pep:`498` format string. + + >>> import astroid + >>> node = astroid.extract_node('f"Format {type_}"') + >>> node + + >>> node.values + [, ] + """ + + _astroid_fields = ("value", "format_spec") + _other_fields = ("conversion",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.value: NodeNG + """The value to be formatted into the string.""" + + self.conversion: int + """The type of formatting to be applied to the value. + + .. seealso:: + :class:`ast.FormattedValue` + """ + + self.format_spec: JoinedStr | None = None + """The formatting to be applied to the value. + + .. seealso:: + :class:`ast.FormattedValue` + """ + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + value: NodeNG, + conversion: int, + format_spec: JoinedStr | None = None, + ) -> None: + """Do some setup after initialisation. + + :param value: The value to be formatted into the string. + + :param conversion: The type of formatting to be applied to the value. + + :param format_spec: The formatting to be applied to the value. + :type format_spec: JoinedStr or None + """ + self.value = value + self.conversion = conversion + self.format_spec = format_spec + + def get_children(self): + yield self.value + + if self.format_spec is not None: + yield self.format_spec + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + format_specs = Const("") if self.format_spec is None else self.format_spec + uninferable_already_generated = False + for format_spec in format_specs.infer(context, **kwargs): + if not isinstance(format_spec, Const): + if not uninferable_already_generated: + yield util.Uninferable + uninferable_already_generated = True + continue + for value in self.value.infer(context, **kwargs): + value_to_format = value + if isinstance(value, Const): + value_to_format = value.value + try: + formatted = format(value_to_format, format_spec.value) + yield Const( + formatted, + lineno=self.lineno, + col_offset=self.col_offset, + end_lineno=self.end_lineno, + end_col_offset=self.end_col_offset, + ) + continue + except (ValueError, TypeError): + # happens when format_spec.value is invalid + yield util.Uninferable + uninferable_already_generated = True + continue + + +UNINFERABLE_VALUE = "{Uninferable}" + + +class JoinedStr(NodeNG): + """Represents a list of string expressions to be joined. + + >>> import astroid + >>> node = astroid.extract_node('f"Format {type_}"') + >>> node + + """ + + _astroid_fields = ("values",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.values: list[NodeNG] = [] + """The string expressions to be joined. + + :type: list(FormattedValue or Const) + """ + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, values: list[NodeNG] | None = None) -> None: + """Do some setup after initialisation. + + :param value: The string expressions to be joined. + + :type: list(FormattedValue or Const) + """ + if values is not None: + self.values = values + + def get_children(self): + yield from self.values + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + if self.values: + yield from self._infer_with_values(context) + else: + yield Const("") + + def _infer_with_values( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + uninferable_already_generated = False + for inferred in self._infer_from_values(self.values, context): + failed = inferred is util.Uninferable or ( + isinstance(inferred, Const) and UNINFERABLE_VALUE in inferred.value + ) + if failed: + if not uninferable_already_generated: + uninferable_already_generated = True + yield util.Uninferable + continue + yield inferred + + @classmethod + def _infer_from_values( + cls, nodes: list[NodeNG], context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + if not nodes: + return + if len(nodes) == 1: + for node in cls._safe_infer_from_node(nodes[0], context, **kwargs): + if isinstance(node, Const): + yield node + continue + yield Const(UNINFERABLE_VALUE) + return + for prefix in cls._safe_infer_from_node(nodes[0], context, **kwargs): + for suffix in cls._infer_from_values(nodes[1:], context, **kwargs): + result = "" + for node in (prefix, suffix): + if isinstance(node, Const): + result += str(node.value) + continue + result += UNINFERABLE_VALUE + yield Const(result) + + @classmethod + def _safe_infer_from_node( + cls, node: NodeNG, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + try: + yield from node._infer(context, **kwargs) + except InferenceError: + yield util.Uninferable + + +class NamedExpr(_base_nodes.AssignTypeNode): + """Represents the assignment from the assignment expression + + >>> import astroid + >>> module = astroid.parse('if a := 1: pass') + >>> module.body[0].test + + """ + + _astroid_fields = ("target", "value") + + optional_assign = True + """Whether this node optionally assigns a variable. + + Since NamedExpr are not always called they do not always assign.""" + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + """ + :param lineno: The line that this node appears on in the source code. + + :param col_offset: The column that this node appears on in the + source code. + + :param parent: The parent node in the syntax tree. + + :param end_lineno: The last line this node appears on in the source code. + + :param end_col_offset: The end column this node appears on in the + source code. Note: This is after the last symbol. + """ + self.target: NodeNG + """The assignment target + + :type: Name + """ + + self.value: NodeNG + """The value that gets assigned in the expression""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, target: NodeNG, value: NodeNG) -> None: + self.target = target + self.value = value + + assigned_stmts = protocols.named_expr_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + def frame(self) -> nodes.FunctionDef | nodes.Module | nodes.ClassDef | nodes.Lambda: + """The first parent frame node. + + A frame node is a :class:`Module`, :class:`FunctionDef`, + or :class:`ClassDef`. + + :returns: The first parent frame node. + """ + if not self.parent: + raise ParentMissingError(target=self) + + # For certain parents NamedExpr evaluate to the scope of the parent + if isinstance(self.parent, (Arguments, Keyword, Comprehension)): + if not self.parent.parent: + raise ParentMissingError(target=self.parent) + if not self.parent.parent.parent: + raise ParentMissingError(target=self.parent.parent) + return self.parent.parent.parent.frame() + + return self.parent.frame() + + def scope(self) -> LocalsDictNodeNG: + """The first parent node defining a new scope. + These can be Module, FunctionDef, ClassDef, Lambda, or GeneratorExp nodes. + + :returns: The first parent scope node. + """ + if not self.parent: + raise ParentMissingError(target=self) + + # For certain parents NamedExpr evaluate to the scope of the parent + if isinstance(self.parent, (Arguments, Keyword, Comprehension)): + if not self.parent.parent: + raise ParentMissingError(target=self.parent) + if not self.parent.parent.parent: + raise ParentMissingError(target=self.parent.parent) + return self.parent.parent.parent.scope() + + return self.parent.scope() + + def set_local(self, name: str, stmt: NodeNG) -> None: + """Define that the given name is declared in the given statement node. + NamedExpr's in Arguments, Keyword or Comprehension are evaluated in their + parent's parent scope. So we add to their frame's locals. + + .. seealso:: :meth:`scope` + + :param name: The name that is being defined. + + :param stmt: The statement that defines the given name. + """ + self.frame().set_local(name, stmt) + + +class Unknown(_base_nodes.AssignTypeNode): + """This node represents a node in a constructed AST where + introspection is not possible. At the moment, it's only used in + the args attribute of FunctionDef nodes where function signature + introspection failed. + """ + + name = "Unknown" + + def __init__( + self, + parent: NodeNG, + lineno: None = None, + col_offset: None = None, + *, + end_lineno: None = None, + end_col_offset: None = None, + ) -> None: + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def qname(self) -> Literal["Unknown"]: + return "Unknown" + + def _infer(self, context: InferenceContext | None = None, **kwargs): + """Inference on an Unknown node immediately terminates.""" + yield util.Uninferable + + +UNATTACHED_UNKNOWN = Unknown(parent=SYNTHETIC_ROOT) + + +class EvaluatedObject(NodeNG): + """Contains an object that has already been inferred + + This class is useful to pre-evaluate a particular node, + with the resulting class acting as the non-evaluated node. + """ + + name = "EvaluatedObject" + _astroid_fields = ("original",) + _other_fields = ("value",) + + def __init__( + self, original: SuccessfulInferenceResult, value: InferenceResult + ) -> None: + self.original: SuccessfulInferenceResult = original + """The original node that has already been evaluated""" + + self.value: InferenceResult = value + """The inferred value""" + + super().__init__( + lineno=self.original.lineno, + col_offset=self.original.col_offset, + parent=self.original.parent, + end_lineno=self.original.end_lineno, + end_col_offset=self.original.end_col_offset, + ) + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[NodeNG | util.UninferableBase]: + yield self.value + + +# Pattern matching ####################################################### + + +class Match(_base_nodes.Statement, _base_nodes.MultiLineBlockNode): + """Class representing a :class:`ast.Match` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case 200: + ... + case _: + ... + ''') + >>> node + + """ + + _astroid_fields = ("subject", "cases") + _multi_line_block_fields = ("cases",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.subject: NodeNG + self.cases: list[MatchCase] + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + subject: NodeNG, + cases: list[MatchCase], + ) -> None: + self.subject = subject + self.cases = cases + + +class Pattern(NodeNG): + """Base class for all Pattern nodes.""" + + +class MatchCase(_base_nodes.MultiLineBlockNode): + """Class representing a :class:`ast.match_case` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case 200: + ... + ''') + >>> node.cases[0] + + """ + + _astroid_fields = ("pattern", "guard", "body") + _multi_line_block_fields = ("body",) + + lineno: None + col_offset: None + end_lineno: None + end_col_offset: None + + def __init__(self, *, parent: NodeNG | None = None) -> None: + self.pattern: Pattern + self.guard: NodeNG | None + self.body: list[NodeNG] + super().__init__( + parent=parent, + lineno=None, + col_offset=None, + end_lineno=None, + end_col_offset=None, + ) + + def postinit( + self, + *, + pattern: Pattern, + guard: NodeNG | None, + body: list[NodeNG], + ) -> None: + self.pattern = pattern + self.guard = guard + self.body = body + + +class MatchValue(Pattern): + """Class representing a :class:`ast.MatchValue` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case 200: + ... + ''') + >>> node.cases[0].pattern + + """ + + _astroid_fields = ("value",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.value: NodeNG + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, *, value: NodeNG) -> None: + self.value = value + + +class MatchSingleton(Pattern): + """Class representing a :class:`ast.MatchSingleton` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case True: + ... + case False: + ... + case None: + ... + ''') + >>> node.cases[0].pattern + + >>> node.cases[1].pattern + + >>> node.cases[2].pattern + + """ + + _other_fields = ("value",) + + def __init__( + self, + *, + value: Literal[True, False, None], + lineno: int | None = None, + col_offset: int | None = None, + end_lineno: int | None = None, + end_col_offset: int | None = None, + parent: NodeNG | None = None, + ) -> None: + self.value = value + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + +class MatchSequence(Pattern): + """Class representing a :class:`ast.MatchSequence` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case [1, 2]: + ... + case (1, 2, *_): + ... + ''') + >>> node.cases[0].pattern + + >>> node.cases[1].pattern + + """ + + _astroid_fields = ("patterns",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.patterns: list[Pattern] + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, *, patterns: list[Pattern]) -> None: + self.patterns = patterns + + +class MatchMapping(_base_nodes.AssignTypeNode, Pattern): + """Class representing a :class:`ast.MatchMapping` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case {1: "Hello", 2: "World", 3: _, **rest}: + ... + ''') + >>> node.cases[0].pattern + + """ + + _astroid_fields = ("keys", "patterns", "rest") + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.keys: list[NodeNG] + self.patterns: list[Pattern] + self.rest: AssignName | None + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + keys: list[NodeNG], + patterns: list[Pattern], + rest: AssignName | None, + ) -> None: + self.keys = keys + self.patterns = patterns + self.rest = rest + + assigned_stmts = protocols.match_mapping_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + +class MatchClass(Pattern): + """Class representing a :class:`ast.MatchClass` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case Point2D(0, 0): + ... + case Point3D(x=0, y=0, z=0): + ... + ''') + >>> node.cases[0].pattern + + >>> node.cases[1].pattern + + """ + + _astroid_fields = ("cls", "patterns", "kwd_patterns") + _other_fields = ("kwd_attrs",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.cls: NodeNG + self.patterns: list[Pattern] + self.kwd_attrs: list[str] + self.kwd_patterns: list[Pattern] + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + cls: NodeNG, + patterns: list[Pattern], + kwd_attrs: list[str], + kwd_patterns: list[Pattern], + ) -> None: + self.cls = cls + self.patterns = patterns + self.kwd_attrs = kwd_attrs + self.kwd_patterns = kwd_patterns + + +class MatchStar(_base_nodes.AssignTypeNode, Pattern): + """Class representing a :class:`ast.MatchStar` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case [1, *_]: + ... + ''') + >>> node.cases[0].pattern.patterns[1] + + """ + + _astroid_fields = ("name",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.name: AssignName | None + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, *, name: AssignName | None) -> None: + self.name = name + + assigned_stmts = protocols.match_star_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + +class MatchAs(_base_nodes.AssignTypeNode, Pattern): + """Class representing a :class:`ast.MatchAs` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case [1, a]: + ... + case {'key': b}: + ... + case Point2D(0, 0) as c: + ... + case d: + ... + ''') + >>> node.cases[0].pattern.patterns[1] + + >>> node.cases[1].pattern.patterns[0] + + >>> node.cases[2].pattern + + >>> node.cases[3].pattern + + """ + + _astroid_fields = ("pattern", "name") + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.pattern: Pattern | None + self.name: AssignName | None + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + pattern: Pattern | None, + name: AssignName | None, + ) -> None: + self.pattern = pattern + self.name = name + + assigned_stmts = protocols.match_as_assigned_stmts + """Returns the assigned statement (non inferred) according to the assignment type. + See astroid/protocols.py for actual implementation. + """ + + +class MatchOr(Pattern): + """Class representing a :class:`ast.MatchOr` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + match x: + case 400 | 401 | 402: + ... + ''') + >>> node.cases[0].pattern + + """ + + _astroid_fields = ("patterns",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.patterns: list[Pattern] + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, *, patterns: list[Pattern]) -> None: + self.patterns = patterns + + +class TemplateStr(NodeNG): + """Class representing an :class:`ast.TemplateStr` node. + + >>> import astroid + >>> node = astroid.extract_node('t"{name} finished {place!s}"') + >>> node + + """ + + _astroid_fields = ("values",) + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.values: list[NodeNG] + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, *, values: list[NodeNG]) -> None: + self.values = values + + def get_children(self) -> Iterator[NodeNG]: + yield from self.values + + +class Interpolation(NodeNG): + """Class representing an :class:`ast.Interpolation` node. + + >>> import astroid + >>> node = astroid.extract_node('t"{name} finished {place!s}"') + >>> node + + >>> node.values[0] + + >>> node.values[2] + + """ + + _astroid_fields = ("value", "format_spec") + _other_fields = ("str", "conversion") + + def __init__( + self, + lineno: int | None = None, + col_offset: int | None = None, + parent: NodeNG | None = None, + *, + end_lineno: int | None = None, + end_col_offset: int | None = None, + ) -> None: + self.value: NodeNG + """Any expression node.""" + + self.str: str + """Text of the interpolation expression.""" + + self.conversion: int + """The type of formatting to be applied to the value. + + .. seealso:: + :class:`ast.Interpolation` + """ + + self.format_spec: JoinedStr | None = None + """The formatting to be applied to the value. + + .. seealso:: + :class:`ast.Interpolation` + """ + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + *, + value: NodeNG, + str: str, # pylint: disable=redefined-builtin + conversion: int = -1, + format_spec: JoinedStr | None = None, + ) -> None: + self.value = value + self.str = str + self.conversion = conversion + self.format_spec = format_spec + + def get_children(self) -> Iterator[NodeNG]: + yield self.value + if self.format_spec: + yield self.format_spec + + +# constants ############################################################## + +# The _proxied attribute of all container types (List, Tuple, etc.) +# are set during bootstrapping by _astroid_bootstrapping(). +CONST_CLS: dict[type, type[NodeNG]] = { + list: List, + tuple: Tuple, + dict: Dict, + set: Set, + type(None): Const, + type(NotImplemented): Const, + type(...): Const, + bool: Const, + int: Const, + float: Const, + complex: Const, + str: Const, + bytes: Const, +} + + +def _create_basic_elements( + value: Iterable[Any], node: List | Set | Tuple +) -> list[NodeNG]: + """Create a list of nodes to function as the elements of a new node.""" + elements: list[NodeNG] = [] + for element in value: + # NOTE: avoid accessing any attributes of element in the loop. + element_node = const_factory(element) + element_node.parent = node + elements.append(element_node) + return elements + + +def _create_dict_items( + values: Mapping[Any, Any], node: Dict +) -> list[tuple[SuccessfulInferenceResult, SuccessfulInferenceResult]]: + """Create a list of node pairs to function as the items of a new dict node.""" + elements: list[tuple[SuccessfulInferenceResult, SuccessfulInferenceResult]] = [] + for key, value in values.items(): + # NOTE: avoid accessing any attributes of both key and value in the loop. + key_node = const_factory(key) + key_node.parent = node + value_node = const_factory(value) + value_node.parent = node + elements.append((key_node, value_node)) + return elements + + +def const_factory(value: Any) -> ConstFactoryResult: + """Return an astroid node for a python value.""" + # NOTE: avoid accessing any attributes of value until it is known that value + # is of a const type, to avoid possibly triggering code for a live object. + # Accesses include value.__class__ and isinstance(value, ...), but not type(value). + # See: https://github.com/pylint-dev/astroid/issues/2686 + value_type = type(value) + assert not issubclass(value_type, NodeNG) + + # This only handles instances of the CONST types. Any + # subclasses get inferred as EmptyNode. + # TODO: See if we should revisit these with the normal builder. + if value_type not in CONST_CLS: + node = EmptyNode() + node.object = value + return node + + instance: List | Set | Tuple | Dict + initializer_cls = CONST_CLS[value_type] + if issubclass(initializer_cls, (List, Set, Tuple)): + instance = initializer_cls( + lineno=None, + col_offset=None, + parent=SYNTHETIC_ROOT, + end_lineno=None, + end_col_offset=None, + ) + instance.postinit(_create_basic_elements(value, instance)) + return instance + if issubclass(initializer_cls, Dict): + instance = initializer_cls( + lineno=None, + col_offset=None, + parent=SYNTHETIC_ROOT, + end_lineno=None, + end_col_offset=None, + ) + instance.postinit(_create_dict_items(value, instance)) + return instance + return Const(value) diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/node_ng.py b/.venv/lib/python3.12/site-packages/astroid/nodes/node_ng.py new file mode 100644 index 0000000..1af39c2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/node_ng.py @@ -0,0 +1,771 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +import pprint +import sys +from collections.abc import Generator, Iterator +from functools import cached_property +from functools import singledispatch as _singledispatch +from typing import ( + TYPE_CHECKING, + Any, + ClassVar, + TypeVar, + cast, + overload, +) + +from astroid import nodes, util +from astroid.context import InferenceContext +from astroid.exceptions import ( + AstroidError, + InferenceError, + ParentMissingError, + StatementMissing, + UseInferenceDefault, +) +from astroid.manager import AstroidManager +from astroid.nodes.as_string import AsStringVisitor +from astroid.nodes.const import OP_PRECEDENCE +from astroid.nodes.utils import Position +from astroid.typing import InferenceErrorInfo, InferenceResult, InferFn + +if sys.version_info >= (3, 11): + from typing import Self +else: + from typing_extensions import Self + + +if TYPE_CHECKING: + from astroid.nodes import _base_nodes + + +# Types for 'NodeNG.nodes_of_class()' +_NodesT = TypeVar("_NodesT", bound="NodeNG") +_NodesT2 = TypeVar("_NodesT2", bound="NodeNG") +_NodesT3 = TypeVar("_NodesT3", bound="NodeNG") +SkipKlassT = None | type["NodeNG"] | tuple[type["NodeNG"], ...] + + +class NodeNG: + """A node of the new Abstract Syntax Tree (AST). + + This is the base class for all Astroid node classes. + """ + + is_statement: ClassVar[bool] = False + """Whether this node indicates a statement.""" + optional_assign: ClassVar[bool] = ( + False # True for For (and for Comprehension if py <3.0) + ) + """Whether this node optionally assigns a variable. + + This is for loop assignments because loop won't necessarily perform an + assignment if the loop has no iterations. + This is also the case from comprehensions in Python 2. + """ + is_function: ClassVar[bool] = False # True for FunctionDef nodes + """Whether this node indicates a function.""" + is_lambda: ClassVar[bool] = False + + # Attributes below are set by the builder module or by raw factories + _astroid_fields: ClassVar[tuple[str, ...]] = () + """Node attributes that contain child nodes. + + This is redefined in most concrete classes. + """ + _other_fields: ClassVar[tuple[str, ...]] = () + """Node attributes that do not contain child nodes.""" + _other_other_fields: ClassVar[tuple[str, ...]] = () + """Attributes that contain AST-dependent fields.""" + # instance specific inference function infer(node, context) + _explicit_inference: InferFn[Self] | None = None + + def __init__( + self, + lineno: int | None, + col_offset: int | None, + parent: NodeNG | None, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.lineno = lineno + """The line that this node appears on in the source code.""" + + self.col_offset = col_offset + """The column that this node appears on in the source code.""" + + self.parent = parent + """The parent node in the syntax tree.""" + + self.end_lineno = end_lineno + """The last line this node appears on in the source code.""" + + self.end_col_offset = end_col_offset + """The end column this node appears on in the source code. + + Note: This is after the last symbol. + """ + + self.position: Position | None = None + """Position of keyword(s) and name. + + Used as fallback for block nodes which might not provide good + enough positional information. E.g. ClassDef, FunctionDef. + """ + + def infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult]: + """Get a generator of the inferred values. + + This is the main entry point to the inference system. + + .. seealso:: :ref:`inference` + + If the instance has some explicit inference function set, it will be + called instead of the default interface. + + :returns: The inferred values. + :rtype: iterable + """ + if context is None: + context = InferenceContext() + else: + context = context.extra_context.get(self, context) + if self._explicit_inference is not None: + # explicit_inference is not bound, give it self explicitly + try: + for result in self._explicit_inference( + self, # type: ignore[arg-type] + context, + **kwargs, + ): + context.nodes_inferred += 1 + yield result + return + except UseInferenceDefault: + pass + + key = (self, context.lookupname, context.callcontext, context.boundnode) + if key in context.inferred: + yield from context.inferred[key] + return + + results = [] + + # Limit inference amount to help with performance issues with + # exponentially exploding possible results. + limit = AstroidManager().max_inferable_values + for i, result in enumerate(self._infer(context=context, **kwargs)): + if i >= limit or (context.nodes_inferred > context.max_inferred): + results.append(util.Uninferable) + yield util.Uninferable + break + results.append(result) + yield result + context.nodes_inferred += 1 + + # Cache generated results for subsequent inferences of the + # same node using the same context + context.inferred[key] = tuple(results) + return + + def repr_name(self) -> str: + """Get a name for nice representation. + + This is either :attr:`name`, :attr:`attrname`, or the empty string. + """ + if all(name not in self._astroid_fields for name in ("name", "attrname")): + return getattr(self, "name", "") or getattr(self, "attrname", "") + return "" + + def __str__(self) -> str: + rname = self.repr_name() + cname = type(self).__name__ + if rname: + string = "%(cname)s.%(rname)s(%(fields)s)" + alignment = len(cname) + len(rname) + 2 + else: + string = "%(cname)s(%(fields)s)" + alignment = len(cname) + 1 + result = [] + for field in self._other_fields + self._astroid_fields: + value = getattr(self, field, "Unknown") + width = 80 - len(field) - alignment + lines = pprint.pformat(value, indent=2, width=width).splitlines(True) + + inner = [lines[0]] + for line in lines[1:]: + inner.append(" " * alignment + line) + result.append(f"{field}={''.join(inner)}") + + return string % { + "cname": cname, + "rname": rname, + "fields": (",\n" + " " * alignment).join(result), + } + + def __repr__(self) -> str: + rname = self.repr_name() + # The dependencies used to calculate fromlineno (if not cached) may not exist at the time + try: + lineno = self.fromlineno + except AttributeError: + lineno = 0 + if rname: + string = "<%(cname)s.%(rname)s l.%(lineno)s at 0x%(id)x>" + else: + string = "<%(cname)s l.%(lineno)s at 0x%(id)x>" + return string % { + "cname": type(self).__name__, + "rname": rname, + "lineno": lineno, + "id": id(self), + } + + def accept(self, visitor: AsStringVisitor) -> str: + """Visit this node using the given visitor.""" + func = getattr(visitor, "visit_" + self.__class__.__name__.lower()) + return func(self) + + def get_children(self) -> Iterator[NodeNG]: + """Get the child nodes below this node.""" + for field in self._astroid_fields: + attr = getattr(self, field) + if attr is None: + continue + if isinstance(attr, (list, tuple)): + yield from attr + else: + yield attr + yield from () + + def last_child(self) -> NodeNG | None: + """An optimized version of list(get_children())[-1].""" + for field in self._astroid_fields[::-1]: + attr = getattr(self, field) + if not attr: # None or empty list / tuple + continue + if isinstance(attr, (list, tuple)): + return attr[-1] + return attr + return None + + def node_ancestors(self) -> Iterator[NodeNG]: + """Yield parent, grandparent, etc until there are no more.""" + parent = self.parent + while parent is not None: + yield parent + parent = parent.parent + + def parent_of(self, node) -> bool: + """Check if this node is the parent of the given node. + + :param node: The node to check if it is the child. + :type node: NodeNG + + :returns: Whether this node is the parent of the given node. + """ + return any(self is parent for parent in node.node_ancestors()) + + def statement(self) -> _base_nodes.Statement: + """The first parent node, including self, marked as statement node. + + :raises StatementMissing: If self has no parent attribute. + """ + if self.is_statement: + return cast("_base_nodes.Statement", self) + if not self.parent: + raise StatementMissing(target=self) + return self.parent.statement() + + def frame(self) -> nodes.FunctionDef | nodes.Module | nodes.ClassDef | nodes.Lambda: + """The first parent frame node. + + A frame node is a :class:`Module`, :class:`FunctionDef`, + :class:`ClassDef` or :class:`Lambda`. + + :returns: The first parent frame node. + :raises ParentMissingError: If self has no parent attribute. + """ + if self.parent is None: + raise ParentMissingError(target=self) + return self.parent.frame() + + def scope(self) -> nodes.LocalsDictNodeNG: + """The first parent node defining a new scope. + + These can be Module, FunctionDef, ClassDef, Lambda, or GeneratorExp nodes. + + :returns: The first parent scope node. + """ + if not self.parent: + raise ParentMissingError(target=self) + return self.parent.scope() + + def root(self) -> nodes.Module: + """Return the root node of the syntax tree. + + :returns: The root node. + """ + if not (parent := self.parent): + assert isinstance(self, nodes.Module) + return self + + while parent.parent: + parent = parent.parent + assert isinstance(parent, nodes.Module) + return parent + + def child_sequence(self, child): + """Search for the sequence that contains this child. + + :param child: The child node to search sequences for. + :type child: NodeNG + + :returns: The sequence containing the given child node. + :rtype: iterable(NodeNG) + + :raises AstroidError: If no sequence could be found that contains + the given child. + """ + for field in self._astroid_fields: + node_or_sequence = getattr(self, field) + if node_or_sequence is child: + return [node_or_sequence] + # /!\ compiler.ast Nodes have an __iter__ walking over child nodes + if ( + isinstance(node_or_sequence, (tuple, list)) + and child in node_or_sequence + ): + return node_or_sequence + + msg = "Could not find %s in %s's children" + raise AstroidError(msg % (repr(child), repr(self))) + + def locate_child(self, child): + """Find the field of this node that contains the given child. + + :param child: The child node to search fields for. + :type child: NodeNG + + :returns: A tuple of the name of the field that contains the child, + and the sequence or node that contains the child node. + :rtype: tuple(str, iterable(NodeNG) or NodeNG) + + :raises AstroidError: If no field could be found that contains + the given child. + """ + for field in self._astroid_fields: + node_or_sequence = getattr(self, field) + # /!\ compiler.ast Nodes have an __iter__ walking over child nodes + if child is node_or_sequence: + return field, child + if ( + isinstance(node_or_sequence, (tuple, list)) + and child in node_or_sequence + ): + return field, node_or_sequence + msg = "Could not find %s in %s's children" + raise AstroidError(msg % (repr(child), repr(self))) + + # FIXME : should we merge child_sequence and locate_child ? locate_child + # is only used in are_exclusive, child_sequence one time in pylint. + + def next_sibling(self): + """The next sibling statement node. + + :returns: The next sibling statement node. + :rtype: NodeNG or None + """ + return self.parent.next_sibling() + + def previous_sibling(self): + """The previous sibling statement. + + :returns: The previous sibling statement node. + :rtype: NodeNG or None + """ + return self.parent.previous_sibling() + + # these are lazy because they're relatively expensive to compute for every + # single node, and they rarely get looked at + + @cached_property + def fromlineno(self) -> int: + """The first line that this node appears on in the source code. + + Can also return 0 if the line can not be determined. + """ + if self.lineno is None: + return self._fixed_source_line() + return self.lineno + + @cached_property + def tolineno(self) -> int: + """The last line that this node appears on in the source code. + + Can also return 0 if the line can not be determined. + """ + if self.end_lineno is not None: + return self.end_lineno + if not self._astroid_fields: + # can't have children + last_child = None + else: + last_child = self.last_child() + if last_child is None: + return self.fromlineno + return last_child.tolineno + + def _fixed_source_line(self) -> int: + """Attempt to find the line that this node appears on. + + We need this method since not all nodes have :attr:`lineno` set. + Will return 0 if the line number can not be determined. + """ + line = self.lineno + _node = self + try: + while line is None: + _node = next(_node.get_children()) + line = _node.lineno + except StopIteration: + parent = self.parent + while parent and line is None: + line = parent.lineno + parent = parent.parent + return line or 0 + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from the given line number to where this node ends. + + :param lineno: The line number to start the range at. + + :returns: The range of line numbers that this node belongs to, + starting at the given line number. + """ + return lineno, self.tolineno + + def set_local(self, name: str, stmt: NodeNG) -> None: + """Define that the given name is declared in the given statement node. + + This definition is stored on the parent scope node. + + .. seealso:: :meth:`scope` + + :param name: The name that is being defined. + + :param stmt: The statement that defines the given name. + """ + assert self.parent + self.parent.set_local(name, stmt) + + @overload + def nodes_of_class( + self, + klass: type[_NodesT], + skip_klass: SkipKlassT = ..., + ) -> Iterator[_NodesT]: ... + + @overload + def nodes_of_class( + self, + klass: tuple[type[_NodesT], type[_NodesT2]], + skip_klass: SkipKlassT = ..., + ) -> Iterator[_NodesT] | Iterator[_NodesT2]: ... + + @overload + def nodes_of_class( + self, + klass: tuple[type[_NodesT], type[_NodesT2], type[_NodesT3]], + skip_klass: SkipKlassT = ..., + ) -> Iterator[_NodesT] | Iterator[_NodesT2] | Iterator[_NodesT3]: ... + + @overload + def nodes_of_class( + self, + klass: tuple[type[_NodesT], ...], + skip_klass: SkipKlassT = ..., + ) -> Iterator[_NodesT]: ... + + def nodes_of_class( # type: ignore[misc] # mypy doesn't correctly recognize the overloads + self, + klass: ( + type[_NodesT] + | tuple[type[_NodesT], type[_NodesT2]] + | tuple[type[_NodesT], type[_NodesT2], type[_NodesT3]] + | tuple[type[_NodesT], ...] + ), + skip_klass: SkipKlassT = None, + ) -> Iterator[_NodesT] | Iterator[_NodesT2] | Iterator[_NodesT3]: + """Get the nodes (including this one or below) of the given types. + + :param klass: The types of node to search for. + + :param skip_klass: The types of node to ignore. This is useful to ignore + subclasses of :attr:`klass`. + + :returns: The node of the given types. + """ + if isinstance(self, klass): + yield self + + if skip_klass is None: + for child_node in self.get_children(): + yield from child_node.nodes_of_class(klass, skip_klass) + + return + + for child_node in self.get_children(): + if isinstance(child_node, skip_klass): + continue + yield from child_node.nodes_of_class(klass, skip_klass) + + @cached_property + def _assign_nodes_in_scope(self) -> list[nodes.Assign]: + return [] + + def _get_name_nodes(self): + for child_node in self.get_children(): + yield from child_node._get_name_nodes() + + def _get_return_nodes_skip_functions(self): + yield from () + + def _get_yield_nodes_skip_functions(self): + yield from () + + def _get_yield_nodes_skip_lambdas(self): + yield from () + + def _infer_name(self, frame, name): + # overridden for ImportFrom, Import, Global, Try, TryStar and Arguments + pass + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[InferenceResult, None, InferenceErrorInfo | None]: + """We don't know how to resolve a statement by default.""" + # this method is overridden by most concrete classes + raise InferenceError( + "No inference function for {node!r}.", node=self, context=context + ) + + def inferred(self): + """Get a list of the inferred values. + + .. seealso:: :ref:`inference` + + :returns: The inferred values. + :rtype: list + """ + return list(self.infer()) + + def instantiate_class(self): + """Instantiate an instance of the defined class. + + .. note:: + + On anything other than a :class:`ClassDef` this will return self. + + :returns: An instance of the defined class. + :rtype: object + """ + return self + + def has_base(self, node) -> bool: + """Check if this node inherits from the given type. + + :param node: The node defining the base to look for. + Usually this is a :class:`Name` node. + :type node: NodeNG + """ + return False + + def callable(self) -> bool: + """Whether this node defines something that is callable. + + :returns: Whether this defines something that is callable. + """ + return False + + def eq(self, value) -> bool: + return False + + def as_string(self) -> str: + """Get the source code that this node represents.""" + return AsStringVisitor()(self) + + def repr_tree( + self, + ids=False, + include_linenos=False, + ast_state=False, + indent=" ", + max_depth=0, + max_width=80, + ) -> str: + """Get a string representation of the AST from this node. + + :param ids: If true, includes the ids with the node type names. + :type ids: bool + + :param include_linenos: If true, includes the line numbers and + column offsets. + :type include_linenos: bool + + :param ast_state: If true, includes information derived from + the whole AST like local and global variables. + :type ast_state: bool + + :param indent: A string to use to indent the output string. + :type indent: str + + :param max_depth: If set to a positive integer, won't return + nodes deeper than max_depth in the string. + :type max_depth: int + + :param max_width: Attempt to format the output string to stay + within this number of characters, but can exceed it under some + circumstances. Only positive integer values are valid, the default is 80. + :type max_width: int + + :returns: The string representation of the AST. + :rtype: str + """ + + # pylint: disable = too-many-statements + + @_singledispatch + def _repr_tree(node, result, done, cur_indent="", depth=1): + """Outputs a representation of a non-tuple/list, non-node that's + contained within an AST, including strings. + """ + lines = pprint.pformat( + node, width=max(max_width - len(cur_indent), 1) + ).splitlines(True) + result.append(lines[0]) + result.extend([cur_indent + line for line in lines[1:]]) + return len(lines) != 1 + + # pylint: disable=unused-variable,useless-suppression; doesn't understand singledispatch + @_repr_tree.register(tuple) + @_repr_tree.register(list) + def _repr_seq(node, result, done, cur_indent="", depth=1): + """Outputs a representation of a sequence that's contained within an + AST. + """ + cur_indent += indent + result.append("[") + if not node: + broken = False + elif len(node) == 1: + broken = _repr_tree(node[0], result, done, cur_indent, depth) + elif len(node) == 2: + broken = _repr_tree(node[0], result, done, cur_indent, depth) + if not broken: + result.append(", ") + else: + result.append(",\n") + result.append(cur_indent) + broken = _repr_tree(node[1], result, done, cur_indent, depth) or broken + else: + result.append("\n") + result.append(cur_indent) + for child in node[:-1]: + _repr_tree(child, result, done, cur_indent, depth) + result.append(",\n") + result.append(cur_indent) + _repr_tree(node[-1], result, done, cur_indent, depth) + broken = True + result.append("]") + return broken + + # pylint: disable=unused-variable,useless-suppression; doesn't understand singledispatch + @_repr_tree.register(NodeNG) + def _repr_node(node, result, done, cur_indent="", depth=1): + """Outputs a strings representation of an astroid node.""" + if node in done: + result.append( + indent + f" max_depth: + result.append("...") + return False + depth += 1 + cur_indent += indent + if ids: + result.append(f"{type(node).__name__}<0x{id(node):x}>(\n") + else: + result.append(f"{type(node).__name__}(") + fields = [] + if include_linenos: + fields.extend(("lineno", "col_offset")) + fields.extend(node._other_fields) + fields.extend(node._astroid_fields) + if ast_state: + fields.extend(node._other_other_fields) + if not fields: + broken = False + elif len(fields) == 1: + result.append(f"{fields[0]}=") + broken = _repr_tree( + getattr(node, fields[0]), result, done, cur_indent, depth + ) + else: + result.append("\n") + result.append(cur_indent) + for field in fields[:-1]: + # TODO: Remove this after removal of the 'doc' attribute + if field == "doc": + continue + result.append(f"{field}=") + _repr_tree(getattr(node, field), result, done, cur_indent, depth) + result.append(",\n") + result.append(cur_indent) + result.append(f"{fields[-1]}=") + _repr_tree(getattr(node, fields[-1]), result, done, cur_indent, depth) + broken = True + result.append(")") + return broken + + result: list[str] = [] + _repr_tree(self, result, set()) + return "".join(result) + + def bool_value(self, context: InferenceContext | None = None): + """Determine the boolean value of this node. + + The boolean value of a node can have three + possible values: + + * False: For instance, empty data structures, + False, empty strings, instances which return + explicitly False from the __nonzero__ / __bool__ + method. + * True: Most of constructs are True by default: + classes, functions, modules etc + * Uninferable: The inference engine is uncertain of the + node's value. + + :returns: The boolean value of this node. + :rtype: bool or Uninferable + """ + return util.Uninferable + + def op_precedence(self) -> int: + # Look up by class name or default to highest precedence + return OP_PRECEDENCE.get(self.__class__.__name__, len(OP_PRECEDENCE)) + + def op_left_associative(self) -> bool: + # Everything is left associative except `**` and IfExp + return True diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__init__.py b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__init__.py new file mode 100644 index 0000000..01f99fa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__init__.py @@ -0,0 +1,47 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""This module contains all classes that are considered a "scoped" node and anything +related. + +A scope node is a node that opens a new local scope in the language definition: +Module, ClassDef, FunctionDef (and Lambda, GeneratorExp, DictComp and SetComp to some extent). +""" + +from astroid.nodes.scoped_nodes.mixin import ComprehensionScope, LocalsDictNodeNG +from astroid.nodes.scoped_nodes.scoped_nodes import ( + SYNTHETIC_ROOT, + AsyncFunctionDef, + ClassDef, + DictComp, + FunctionDef, + GeneratorExp, + Lambda, + ListComp, + Module, + SetComp, + _is_metaclass, + function_to_method, + get_wrapping_class, +) +from astroid.nodes.scoped_nodes.utils import builtin_lookup + +__all__ = ( + "SYNTHETIC_ROOT", + "AsyncFunctionDef", + "ClassDef", + "ComprehensionScope", + "DictComp", + "FunctionDef", + "GeneratorExp", + "Lambda", + "ListComp", + "LocalsDictNodeNG", + "Module", + "SetComp", + "_is_metaclass", + "builtin_lookup", + "function_to_method", + "get_wrapping_class", +) diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b3a7b360887bdcbe2634e604735afb9be5e5f6c GIT binary patch literal 1144 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 APyhe` literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/scoped_nodes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/__pycache__/scoped_nodes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5460e8959f35016d0fc9f3f282a9b5fda9bc7d58 GIT binary patch literal 101296 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 str: + """Get the 'qualified' name of the node. + + For example: module.name, module.class.name ... + + :returns: The qualified name. + :rtype: str + """ + # pylint: disable=no-member; github.com/pylint-dev/astroid/issues/278 + if self.parent is None: + return self.name + try: + return f"{self.parent.frame().qname()}.{self.name}" + except ParentMissingError: + return self.name + + def scope(self: _T) -> _T: + """The first parent node defining a new scope. + + :returns: The first parent scope node. + :rtype: Module or FunctionDef or ClassDef or Lambda or GenExpr + """ + return self + + def scope_lookup( + self, node: _base_nodes.LookupMixIn, name: str, offset: int = 0 + ) -> tuple[LocalsDictNodeNG, list[nodes.NodeNG]]: + """Lookup where the given variable is assigned. + + :param node: The node to look for assignments up to. + Any assignments after the given node are ignored. + + :param name: The name of the variable to find assignments for. + + :param offset: The line offset to filter statements up to. + + :returns: This scope node and the list of assignments associated to the + given name according to the scope where it has been found (locals, + globals or builtin). + """ + raise NotImplementedError + + def _scope_lookup( + self, node: _base_nodes.LookupMixIn, name: str, offset: int = 0 + ) -> tuple[LocalsDictNodeNG, list[nodes.NodeNG]]: + """XXX method for interfacing the scope lookup""" + try: + stmts = _filter_stmts(node, self.locals[name], self, offset) + except KeyError: + stmts = () + if stmts: + return self, stmts + + # Handle nested scopes: since class names do not extend to nested + # scopes (e.g., methods), we find the next enclosing non-class scope + pscope = self.parent and self.parent.scope() + while pscope is not None: + if not isinstance(pscope, scoped_nodes.ClassDef): + return pscope.scope_lookup(node, name) + pscope = pscope.parent and pscope.parent.scope() + + # self is at the top level of a module, or is enclosed only by ClassDefs + return builtin_lookup(name) + + def set_local(self, name: str, stmt: nodes.NodeNG) -> None: + """Define that the given name is declared in the given statement node. + + .. seealso:: :meth:`scope` + + :param name: The name that is being defined. + + :param stmt: The statement that defines the given name. + """ + # assert not stmt in self.locals.get(name, ()), (self, stmt) + self.locals.setdefault(name, []).append(stmt) + + __setitem__ = set_local + + def _append_node(self, child: nodes.NodeNG) -> None: + """append a child, linking it in the tree""" + # pylint: disable=no-member; depending by the class + # which uses the current class as a mixin or base class. + # It's rewritten in 2.0, so it makes no sense for now + # to spend development time on it. + self.body.append(child) # type: ignore[attr-defined] + child.parent = self + + @overload + def add_local_node( + self, child_node: nodes.ClassDef, name: str | None = ... + ) -> None: ... + + @overload + def add_local_node(self, child_node: nodes.NodeNG, name: str) -> None: ... + + def add_local_node(self, child_node: nodes.NodeNG, name: str | None = None) -> None: + """Append a child that should alter the locals of this scope node. + + :param child_node: The child node that will alter locals. + + :param name: The name of the local that will be altered by + the given child node. + """ + if name != "__class__": + # add __class__ node as a child will cause infinite recursion later! + self._append_node(child_node) + self.set_local(name or child_node.name, child_node) # type: ignore[attr-defined] + + def __getitem__(self, item: str) -> SuccessfulInferenceResult: + """The first node the defines the given local. + + :param item: The name of the locally defined object. + + :raises KeyError: If the name is not defined. + """ + return self.locals[item][0] + + def __iter__(self): + """Iterate over the names of locals defined in this scoped node. + + :returns: The names of the defined locals. + :rtype: iterable(str) + """ + return iter(self.keys()) + + def keys(self): + """The names of locals defined in this scoped node. + + :returns: The names of the defined locals. + :rtype: list(str) + """ + return list(self.locals.keys()) + + def values(self): + """The nodes that define the locals in this scoped node. + + :returns: The nodes that define locals. + :rtype: list(NodeNG) + """ + # pylint: disable=consider-using-dict-items + # It look like this class override items/keys/values, + # probably not worth the headache + return [self[key] for key in self.keys()] + + def items(self): + """Get the names of the locals and the node that defines the local. + + :returns: The names of locals and their associated node. + :rtype: list(tuple(str, NodeNG)) + """ + return list(zip(self.keys(), self.values())) + + def __contains__(self, name) -> bool: + """Check if a local is defined in this scope. + + :param name: The name of the local to check for. + :type name: str + + :returns: Whether this node has a local of the given name, + """ + return name in self.locals + + +class ComprehensionScope(LocalsDictNodeNG): + """Scoping for different types of comprehensions.""" + + scope_lookup = LocalsDictNodeNG._scope_lookup + + generators: list[nodes.Comprehension] + """The generators that are looped through.""" diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/scoped_nodes.py b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/scoped_nodes.py new file mode 100644 index 0000000..8855623 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/scoped_nodes.py @@ -0,0 +1,2898 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +This module contains the classes for "scoped" node, i.e. which are opening a +new local scope in the language definition : Module, ClassDef, FunctionDef (and +Lambda, GeneratorExp, DictComp and SetComp to some extent). +""" + +from __future__ import annotations + +import io +import itertools +import os +from collections.abc import Generator, Iterable, Iterator, Sequence +from functools import cached_property, lru_cache +from typing import TYPE_CHECKING, Any, ClassVar, Literal, NoReturn, TypeVar + +from astroid import bases, protocols, util +from astroid.context import ( + CallContext, + InferenceContext, + bind_context_to_node, + copy_context, +) +from astroid.exceptions import ( + AstroidBuildingError, + AstroidTypeError, + AttributeInferenceError, + DuplicateBasesError, + InconsistentMroError, + InferenceError, + MroError, + ParentMissingError, + StatementMissing, + TooManyLevelsError, +) +from astroid.interpreter.dunder_lookup import lookup +from astroid.interpreter.objectmodel import ClassModel, FunctionModel, ModuleModel +from astroid.manager import AstroidManager +from astroid.nodes import _base_nodes, node_classes +from astroid.nodes.scoped_nodes.mixin import ComprehensionScope, LocalsDictNodeNG +from astroid.nodes.scoped_nodes.utils import builtin_lookup +from astroid.nodes.utils import Position +from astroid.typing import ( + InferBinaryOp, + InferenceErrorInfo, + InferenceResult, + SuccessfulInferenceResult, +) + +if TYPE_CHECKING: + from astroid import nodes, objects + from astroid.nodes import Arguments, Const, NodeNG + from astroid.nodes._base_nodes import LookupMixIn + + +ITER_METHODS = ("__iter__", "__getitem__") +EXCEPTION_BASE_CLASSES = frozenset({"Exception", "BaseException"}) +BUILTIN_DESCRIPTORS = frozenset( + {"classmethod", "staticmethod", "builtins.classmethod", "builtins.staticmethod"} +) + +_T = TypeVar("_T") + + +def _c3_merge(sequences, cls, context): + """Merges MROs in *sequences* to a single MRO using the C3 algorithm. + + Adapted from http://www.python.org/download/releases/2.3/mro/. + + """ + result = [] + while True: + sequences = [s for s in sequences if s] # purge empty sequences + if not sequences: + return result + for s1 in sequences: # find merge candidates among seq heads + candidate = s1[0] + for s2 in sequences: + if candidate in s2[1:]: + candidate = None + break # reject the current head, it appears later + else: + break + if not candidate: + # Show all the remaining bases, which were considered as + # candidates for the next mro sequence. + raise InconsistentMroError( + message="Cannot create a consistent method resolution order " + "for MROs {mros} of class {cls!r}.", + mros=sequences, + cls=cls, + context=context, + ) + + result.append(candidate) + # remove the chosen candidate + for seq in sequences: + if seq[0] == candidate: + del seq[0] + return None + + +def clean_typing_generic_mro(sequences: list[list[ClassDef]]) -> None: + """A class can inherit from typing.Generic directly, as base, + and as base of bases. The merged MRO must however only contain the last entry. + To prepare for _c3_merge, remove some typing.Generic entries from + sequences if multiple are present. + + This method will check if Generic is in inferred_bases and also + part of bases_mro. If true, remove it from inferred_bases + as well as its entry the bases_mro. + + Format sequences: [[self]] + bases_mro + [inferred_bases] + """ + bases_mro = sequences[1:-1] + inferred_bases = sequences[-1] + # Check if Generic is part of inferred_bases + for i, base in enumerate(inferred_bases): + if base.qname() == "typing.Generic": + position_in_inferred_bases = i + break + else: + return + # Check if also part of bases_mro + # Ignore entry for typing.Generic + for i, seq in enumerate(bases_mro): + if i == position_in_inferred_bases: + continue + if any(base.qname() == "typing.Generic" for base in seq): + break + else: + return + # Found multiple Generics in mro, remove entry from inferred_bases + # and the corresponding one from bases_mro + inferred_bases.pop(position_in_inferred_bases) + bases_mro.pop(position_in_inferred_bases) + + +def clean_duplicates_mro( + sequences: list[list[ClassDef]], + cls: ClassDef, + context: InferenceContext | None, +) -> list[list[ClassDef]]: + for sequence in sequences: + seen = set() + for node in sequence: + lineno_and_qname = (node.lineno, node.qname()) + if lineno_and_qname in seen: + raise DuplicateBasesError( + message="Duplicates found in MROs {mros} for {cls!r}.", + mros=sequences, + cls=cls, + context=context, + ) + seen.add(lineno_and_qname) + return sequences + + +def function_to_method(n, klass): + if isinstance(n, FunctionDef): + if n.type == "classmethod": + return bases.BoundMethod(n, klass) + if n.type == "property": + return n + if n.type != "staticmethod": + return bases.UnboundMethod(n) + return n + + +def _infer_last( + arg: SuccessfulInferenceResult, context: InferenceContext +) -> InferenceResult: + res = util.Uninferable + for b in arg.infer(context=context.clone()): + res = b + return res + + +class Module(LocalsDictNodeNG): + """Class representing an :class:`ast.Module` node. + + >>> import astroid + >>> node = astroid.extract_node('import astroid') + >>> node + + >>> node.parent + + """ + + _astroid_fields = ("doc_node", "body") + + doc_node: Const | None + """The doc node associated with this node.""" + + # attributes below are set by the builder module or by raw factories + + file_bytes: str | bytes | None = None + """The string/bytes that this ast was built from.""" + + file_encoding: str | None = None + """The encoding of the source file. + + This is used to get unicode out of a source file. + Python 2 only. + """ + + special_attributes = ModuleModel() + """The names of special attributes that this module has.""" + + # names of module attributes available through the global scope + scope_attrs: ClassVar[set[str]] = { + "__name__", + "__doc__", + "__file__", + "__path__", + "__package__", + } + """The names of module attributes available through the global scope.""" + + _other_fields = ( + "name", + "file", + "path", + "package", + "pure_python", + "future_imports", + ) + _other_other_fields = ("locals", "globals") + + def __init__( + self, + name: str, + file: str | None = None, + path: Sequence[str] | None = None, + package: bool = False, + pure_python: bool = True, + ) -> None: + self.name = name + """The name of the module.""" + + self.file = file + """The path to the file that this ast has been extracted from. + + This will be ``None`` when the representation has been built from a + built-in module. + """ + + self.path = path + + self.package = package + """Whether the node represents a package or a module.""" + + self.pure_python = pure_python + """Whether the ast was built from source.""" + + self.globals: dict[str, list[InferenceResult]] + """A map of the name of a global variable to the node defining the global.""" + + self.locals = self.globals = {} + """A map of the name of a local variable to the node defining the local.""" + + self.body: list[node_classes.NodeNG] = [] + """The contents of the module.""" + + self.future_imports: set[str] = set() + """The imports from ``__future__``.""" + + super().__init__( + lineno=0, parent=None, col_offset=0, end_lineno=None, end_col_offset=None + ) + + # pylint: enable=redefined-builtin + + def postinit( + self, body: list[node_classes.NodeNG], *, doc_node: Const | None = None + ): + self.body = body + self.doc_node = doc_node + + def _get_stream(self): + if self.file_bytes is not None: + return io.BytesIO(self.file_bytes) + if self.file is not None: + # pylint: disable=consider-using-with + stream = open(self.file, "rb") + return stream + return None + + def stream(self): + """Get a stream to the underlying file or bytes. + + :type: file or io.BytesIO or None + """ + return self._get_stream() + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from where this node starts to where this node ends. + + :param lineno: Unused. + + :returns: The range of line numbers that this node belongs to. + """ + return self.fromlineno, self.tolineno + + def scope_lookup( + self, node: LookupMixIn, name: str, offset: int = 0 + ) -> tuple[LocalsDictNodeNG, list[node_classes.NodeNG]]: + """Lookup where the given variable is assigned. + + :param node: The node to look for assignments up to. + Any assignments after the given node are ignored. + + :param name: The name of the variable to find assignments for. + + :param offset: The line offset to filter statements up to. + + :returns: This scope node and the list of assignments associated to the + given name according to the scope where it has been found (locals, + globals or builtin). + """ + if name in self.scope_attrs and name not in self.locals: + try: + return self, self.getattr(name) + except AttributeInferenceError: + return self, [] + return self._scope_lookup(node, name, offset) + + def pytype(self) -> Literal["builtins.module"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return "builtins.module" + + def display_type(self) -> str: + """A human readable type of this node. + + :returns: The type of this node. + :rtype: str + """ + return "Module" + + def getattr( + self, name, context: InferenceContext | None = None, ignore_locals=False + ): + if not name: + raise AttributeInferenceError(target=self, attribute=name, context=context) + + result = [] + name_in_locals = name in self.locals + + if name in self.special_attributes and not ignore_locals and not name_in_locals: + result = [self.special_attributes.lookup(name)] + if name == "__name__": + main_const = node_classes.const_factory("__main__") + main_const.parent = AstroidManager().builtins_module + result.append(main_const) + elif not ignore_locals and name_in_locals: + result = self.locals[name] + elif self.package: + try: + result = [self.import_module(name, relative_only=True)] + except (AstroidBuildingError, SyntaxError) as exc: + raise AttributeInferenceError( + target=self, attribute=name, context=context + ) from exc + result = [n for n in result if not isinstance(n, node_classes.DelName)] + if result: + return result + raise AttributeInferenceError(target=self, attribute=name, context=context) + + def igetattr( + self, name: str, context: InferenceContext | None = None + ) -> Iterator[InferenceResult]: + """Infer the possible values of the given variable. + + :param name: The name of the variable to infer. + + :returns: The inferred possible values. + """ + # set lookup name since this is necessary to infer on import nodes for + # instance + context = copy_context(context) + context.lookupname = name + try: + return bases._infer_stmts(self.getattr(name, context), context, frame=self) + except AttributeInferenceError as error: + raise InferenceError( + str(error), target=self, attribute=name, context=context + ) from error + + def fully_defined(self) -> bool: + """Check if this module has been build from a .py file. + + If so, the module contains a complete representation, + including the code. + + :returns: Whether the module has been built from a .py file. + """ + return self.file is not None and self.file.endswith(".py") + + def statement(self) -> NoReturn: + """The first parent node, including self, marked as statement node. + + When called on a :class:`Module` this raises a StatementMissing. + """ + raise StatementMissing(target=self) + + def previous_sibling(self): + """The previous sibling statement. + + :returns: The previous sibling statement node. + :rtype: NodeNG or None + """ + + def next_sibling(self): + """The next sibling statement node. + + :returns: The next sibling statement node. + :rtype: NodeNG or None + """ + + _absolute_import_activated = True + + def absolute_import_activated(self) -> bool: + """Whether :pep:`328` absolute import behaviour has been enabled. + + :returns: Whether :pep:`328` has been enabled. + """ + return self._absolute_import_activated + + def import_module( + self, + modname: str, + relative_only: bool = False, + level: int | None = None, + use_cache: bool = True, + ) -> Module: + """Get the ast for a given module as if imported from this module. + + :param modname: The name of the module to "import". + + :param relative_only: Whether to only consider relative imports. + + :param level: The level of relative import. + + :param use_cache: Whether to use the astroid_cache of modules. + + :returns: The imported module ast. + """ + if relative_only and level is None: + level = 0 + absmodname = self.relative_to_absolute_name(modname, level) + + try: + return AstroidManager().ast_from_module_name( + absmodname, use_cache=use_cache + ) + except AstroidBuildingError: + # we only want to import a sub module or package of this module, + # skip here + if relative_only: + raise + # Don't repeat the same operation, e.g. for missing modules + # like "_winapi" or "nt" on POSIX systems. + if modname == absmodname: + raise + return AstroidManager().ast_from_module_name(modname, use_cache=use_cache) + + def relative_to_absolute_name(self, modname: str, level: int | None) -> str: + """Get the absolute module name for a relative import. + + The relative import can be implicit or explicit. + + :param modname: The module name to convert. + + :param level: The level of relative import. + + :returns: The absolute module name. + + :raises TooManyLevelsError: When the relative import refers to a + module too far above this one. + """ + # XXX this returns non sens when called on an absolute import + # like 'pylint.checkers.astroid.utils' + # XXX doesn't return absolute name if self.name isn't absolute name + if self.absolute_import_activated() and level is None: + return modname + if level: + if self.package: + level = level - 1 + package_name = self.name.rsplit(".", level)[0] + elif ( + self.path + and not os.path.exists(os.path.dirname(self.path[0]) + "/__init__.py") + and os.path.exists( + os.path.dirname(self.path[0]) + "/" + modname.split(".")[0] + ) + ): + level = level - 1 + package_name = "" + else: + package_name = self.name.rsplit(".", level)[0] + if level and self.name.count(".") < level: + raise TooManyLevelsError(level=level, name=self.name) + + elif self.package: + package_name = self.name + else: + package_name = self.name.rsplit(".", 1)[0] + + if package_name: + if not modname: + return package_name + return f"{package_name}.{modname}" + return modname + + def wildcard_import_names(self): + """The list of imported names when this module is 'wildcard imported'. + + It doesn't include the '__builtins__' name which is added by the + current CPython implementation of wildcard imports. + + :returns: The list of imported names. + :rtype: list(str) + """ + # We separate the different steps of lookup in try/excepts + # to avoid catching too many Exceptions + default = [name for name in self.keys() if not name.startswith("_")] + try: + all_values = self["__all__"] + except KeyError: + return default + + try: + explicit = next(all_values.assigned_stmts()) + except (InferenceError, StopIteration): + return default + except AttributeError: + # not an assignment node + # XXX infer? + return default + + # Try our best to detect the exported name. + inferred = [] + try: + explicit = next(explicit.infer()) + except (InferenceError, StopIteration): + return default + if not isinstance(explicit, (node_classes.Tuple, node_classes.List)): + return default + + def str_const(node) -> bool: + return isinstance(node, node_classes.Const) and isinstance(node.value, str) + + for node in explicit.elts: + if str_const(node): + inferred.append(node.value) + else: + try: + inferred_node = next(node.infer()) + except (InferenceError, StopIteration): + continue + if str_const(inferred_node): + inferred.append(inferred_node.value) + return inferred + + def public_names(self): + """The list of the names that are publicly available in this module. + + :returns: The list of public names. + :rtype: list(str) + """ + return [name for name in self.keys() if not name.startswith("_")] + + def bool_value(self, context: InferenceContext | None = None) -> bool: + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`Module` this is always ``True``. + """ + return True + + def get_children(self): + yield from self.body + + def frame(self: _T, *, future: Literal[None, True] = None) -> _T: + """The node's frame node. + + A frame node is a :class:`Module`, :class:`FunctionDef`, + :class:`ClassDef` or :class:`Lambda`. + + :returns: The node itself. + """ + return self + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[Module]: + yield self + + +class __SyntheticRoot(Module): + def __init__(self): + super().__init__("__astroid_synthetic", pure_python=False) + + +SYNTHETIC_ROOT = __SyntheticRoot() + + +class GeneratorExp(ComprehensionScope): + """Class representing an :class:`ast.GeneratorExp` node. + + >>> import astroid + >>> node = astroid.extract_node('(thing for thing in things if thing)') + >>> node + + """ + + _astroid_fields = ("elt", "generators") + _other_other_fields = ("locals",) + elt: NodeNG + """The element that forms the output of the expression.""" + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.locals = {} + """A map of the name of a local variable to the node defining the local.""" + + self.generators: list[nodes.Comprehension] = [] + """The generators that are looped through.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, elt: NodeNG, generators: list[nodes.Comprehension]) -> None: + self.elt = elt + self.generators = generators + + def bool_value(self, context: InferenceContext | None = None) -> Literal[True]: + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`GeneratorExp` this is always ``True``. + """ + return True + + def get_children(self): + yield self.elt + + yield from self.generators + + +class DictComp(ComprehensionScope): + """Class representing an :class:`ast.DictComp` node. + + >>> import astroid + >>> node = astroid.extract_node('{k:v for k, v in things if k > v}') + >>> node + + """ + + _astroid_fields = ("key", "value", "generators") + _other_other_fields = ("locals",) + key: NodeNG + """What produces the keys.""" + + value: NodeNG + """What produces the values.""" + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.locals = {} + """A map of the name of a local variable to the node defining the local.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, key: NodeNG, value: NodeNG, generators: list[nodes.Comprehension] + ) -> None: + self.key = key + self.value = value + self.generators = generators + + def bool_value(self, context: InferenceContext | None = None): + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`DictComp` this is always :class:`Uninferable`. + :rtype: Uninferable + """ + return util.Uninferable + + def get_children(self): + yield self.key + yield self.value + + yield from self.generators + + +class SetComp(ComprehensionScope): + """Class representing an :class:`ast.SetComp` node. + + >>> import astroid + >>> node = astroid.extract_node('{thing for thing in things if thing}') + >>> node + + """ + + _astroid_fields = ("elt", "generators") + _other_other_fields = ("locals",) + elt: NodeNG + """The element that forms the output of the expression.""" + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.locals = {} + """A map of the name of a local variable to the node defining the local.""" + + self.generators: list[nodes.Comprehension] = [] + """The generators that are looped through.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, elt: NodeNG, generators: list[nodes.Comprehension]) -> None: + self.elt = elt + self.generators = generators + + def bool_value(self, context: InferenceContext | None = None): + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`SetComp` this is always :class:`Uninferable`. + :rtype: Uninferable + """ + return util.Uninferable + + def get_children(self): + yield self.elt + + yield from self.generators + + +class ListComp(ComprehensionScope): + """Class representing an :class:`ast.ListComp` node. + + >>> import astroid + >>> node = astroid.extract_node('[thing for thing in things if thing]') + >>> node + + """ + + _astroid_fields = ("elt", "generators") + _other_other_fields = ("locals",) + + elt: NodeNG + """The element that forms the output of the expression.""" + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.locals = {} + """A map of the name of a local variable to the node defining it.""" + + self.generators: list[nodes.Comprehension] = [] + """The generators that are looped through.""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, elt: NodeNG, generators: list[nodes.Comprehension]): + self.elt = elt + self.generators = generators + + def bool_value(self, context: InferenceContext | None = None): + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`ListComp` this is always :class:`Uninferable`. + :rtype: Uninferable + """ + return util.Uninferable + + def get_children(self): + yield self.elt + + yield from self.generators + + +def _infer_decorator_callchain(node): + """Detect decorator call chaining and see if the end result is a + static or a classmethod. + """ + if not isinstance(node, FunctionDef): + return None + if not node.parent: + return None + try: + result = next(node.infer_call_result(node.parent), None) + except InferenceError: + return None + if isinstance(result, bases.Instance): + result = result._proxied + if isinstance(result, ClassDef): + if result.is_subtype_of("builtins.classmethod"): + return "classmethod" + if result.is_subtype_of("builtins.staticmethod"): + return "staticmethod" + if isinstance(result, FunctionDef): + if not result.decorators: + return None + # Determine if this function is decorated with one of the builtin descriptors we want. + for decorator in result.decorators.nodes: + if isinstance(decorator, node_classes.Name): + if decorator.name in BUILTIN_DESCRIPTORS: + return decorator.name + if ( + isinstance(decorator, node_classes.Attribute) + and isinstance(decorator.expr, node_classes.Name) + and decorator.expr.name == "builtins" + and decorator.attrname in BUILTIN_DESCRIPTORS + ): + return decorator.attrname + return None + + +class Lambda(_base_nodes.FilterStmtsBaseNode, LocalsDictNodeNG): + """Class representing an :class:`ast.Lambda` node. + + >>> import astroid + >>> node = astroid.extract_node('lambda arg: arg + 1') + >>> node + l.1 at 0x7f23b2e41518> + """ + + _astroid_fields: ClassVar[tuple[str, ...]] = ("args", "body") + _other_other_fields: ClassVar[tuple[str, ...]] = ("locals",) + name = "" + is_lambda = True + special_attributes = FunctionModel() + """The names of special attributes that this function has.""" + + args: Arguments + """The arguments that the function takes.""" + + body: NodeNG + """The contents of the function body.""" + + def implicit_parameters(self) -> Literal[0]: + return 0 + + @property + def type(self) -> Literal["method", "function"]: + """Whether this is a method or function. + + :returns: 'method' if this is a method, 'function' otherwise. + """ + if self.args.arguments and self.args.arguments[0].name == "self": + if self.parent and isinstance(self.parent.scope(), ClassDef): + return "method" + return "function" + + def __init__( + self, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ): + self.locals = {} + """A map of the name of a local variable to the node defining it.""" + + self.instance_attrs: dict[str, list[NodeNG]] = {} + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit(self, args: Arguments, body: NodeNG) -> None: + self.args = args + self.body = body + + def pytype(self) -> Literal["builtins.instancemethod", "builtins.function"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + if "method" in self.type: + return "builtins.instancemethod" + return "builtins.function" + + def display_type(self) -> str: + """A human readable type of this node. + + :returns: The type of this node. + :rtype: str + """ + if "method" in self.type: + return "Method" + return "Function" + + def callable(self) -> Literal[True]: + """Whether this node defines something that is callable. + + :returns: Whether this defines something that is callable + For a :class:`Lambda` this is always ``True``. + """ + return True + + def argnames(self) -> list[str]: + """Get the names of each of the arguments, including that + of the collections of variable-length arguments ("args", "kwargs", + etc.), as well as positional-only and keyword-only arguments. + + :returns: The names of the arguments. + :rtype: list(str) + """ + if self.args.arguments: # maybe None with builtin functions + names = [elt.name for elt in self.args.arguments] + else: + names = [] + + return names + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + """Infer what the function returns when called.""" + return self.body.infer(context) + + def scope_lookup( + self, node: LookupMixIn, name: str, offset: int = 0 + ) -> tuple[LocalsDictNodeNG, list[NodeNG]]: + """Lookup where the given names is assigned. + + :param node: The node to look for assignments up to. + Any assignments after the given node are ignored. + + :param name: The name to find assignments for. + + :param offset: The line offset to filter statements up to. + + :returns: This scope node and the list of assignments associated to the + given name according to the scope where it has been found (locals, + globals or builtin). + """ + if (self.args.defaults and node in self.args.defaults) or ( + self.args.kw_defaults and node in self.args.kw_defaults + ): + if not self.parent: + raise ParentMissingError(target=self) + frame = self.parent.frame() + # line offset to avoid that def func(f=func) resolve the default + # value to the defined function + offset = -1 + else: + # check this is not used in function decorators + frame = self + return frame._scope_lookup(node, name, offset) + + def bool_value(self, context: InferenceContext | None = None) -> Literal[True]: + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`Lambda` this is always ``True``. + """ + return True + + def get_children(self): + yield self.args + yield self.body + + def frame(self: _T, *, future: Literal[None, True] = None) -> _T: + """The node's frame node. + + A frame node is a :class:`Module`, :class:`FunctionDef`, + :class:`ClassDef` or :class:`Lambda`. + + :returns: The node itself. + """ + return self + + def getattr( + self, name: str, context: InferenceContext | None = None + ) -> list[NodeNG]: + if not name: + raise AttributeInferenceError(target=self, attribute=name, context=context) + + found_attrs = [] + if name in self.instance_attrs: + found_attrs = self.instance_attrs[name] + if name in self.special_attributes: + found_attrs.append(self.special_attributes.lookup(name)) + if found_attrs: + return found_attrs + raise AttributeInferenceError(target=self, attribute=name) + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[Lambda]: + yield self + + def _get_yield_nodes_skip_functions(self): + """A Lambda node can contain a Yield node in the body.""" + yield from self.body._get_yield_nodes_skip_functions() + + +class FunctionDef( + _base_nodes.MultiLineBlockNode, + _base_nodes.FilterStmtsBaseNode, + _base_nodes.Statement, + LocalsDictNodeNG, +): + """Class representing an :class:`ast.FunctionDef`. + + >>> import astroid + >>> node = astroid.extract_node(''' + ... def my_func(arg): + ... return arg + 1 + ... ''') + >>> node + + """ + + _astroid_fields = ( + "decorators", + "args", + "returns", + "type_params", + "doc_node", + "body", + ) + _multi_line_block_fields = ("body",) + returns = None + + decorators: node_classes.Decorators | None + """The decorators that are applied to this method or function.""" + + doc_node: Const | None + """The doc node associated with this node.""" + + args: Arguments + """The arguments that the function takes.""" + + is_function = True + """Whether this node indicates a function. + + For a :class:`FunctionDef` this is always ``True``. + + :type: bool + """ + type_annotation = None + """If present, this will contain the type annotation passed by a type comment + + :type: NodeNG or None + """ + type_comment_args = None + """ + If present, this will contain the type annotation for arguments + passed by a type comment + """ + type_comment_returns = None + """If present, this will contain the return type annotation, passed by a type comment""" + # attributes below are set by the builder module or by raw factories + _other_fields = ("name", "position") + _other_other_fields = ( + "locals", + "_type", + "type_comment_returns", + "type_comment_args", + ) + _type = None + + name = "" + + special_attributes = FunctionModel() + """The names of special attributes that this function has.""" + + def __init__( + self, + name: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.name = name + """The name of the function.""" + + self.locals = {} + """A map of the name of a local variable to the node defining it.""" + + self.body: list[NodeNG] = [] + """The contents of the function body.""" + + self.type_params: list[nodes.TypeVar | nodes.ParamSpec | nodes.TypeVarTuple] = ( + [] + ) + """PEP 695 (Python 3.12+) type params, e.g. first 'T' in def func[T]() -> T: ...""" + + self.instance_attrs: dict[str, list[NodeNG]] = {} + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + + def postinit( + self, + args: Arguments, + body: list[NodeNG], + decorators: node_classes.Decorators | None = None, + returns=None, + type_comment_returns=None, + type_comment_args=None, + *, + position: Position | None = None, + doc_node: Const | None = None, + type_params: ( + list[nodes.TypeVar | nodes.ParamSpec | nodes.TypeVarTuple] | None + ) = None, + ): + """Do some setup after initialisation. + + :param args: The arguments that the function takes. + + :param body: The contents of the function body. + + :param decorators: The decorators that are applied to this + method or function. + :params type_comment_returns: + The return type annotation passed via a type comment. + :params type_comment_args: + The args type annotation passed via a type comment. + :params position: + Position of function keyword(s) and name. + :param doc_node: + The doc node associated with this node. + :param type_params: + The type_params associated with this node. + """ + self.args = args + self.body = body + self.decorators = decorators + self.returns = returns + self.type_comment_returns = type_comment_returns + self.type_comment_args = type_comment_args + self.position = position + self.doc_node = doc_node + self.type_params = type_params or [] + + @cached_property + def extra_decorators(self) -> list[node_classes.Call]: + """The extra decorators that this function can have. + + Additional decorators are considered when they are used as + assignments, as in ``method = staticmethod(method)``. + The property will return all the callables that are used for + decoration. + """ + if not (self.parent and isinstance(frame := self.parent.frame(), ClassDef)): + return [] + + decorators: list[node_classes.Call] = [] + for assign in frame._assign_nodes_in_scope: + if isinstance(assign.value, node_classes.Call) and isinstance( + assign.value.func, node_classes.Name + ): + for assign_node in assign.targets: + if not isinstance(assign_node, node_classes.AssignName): + # Support only `name = callable(name)` + continue + + if assign_node.name != self.name: + # Interested only in the assignment nodes that + # decorates the current method. + continue + try: + meth = frame[self.name] + except KeyError: + continue + else: + # Must be a function and in the same frame as the + # original method. + if ( + isinstance(meth, FunctionDef) + and assign_node.frame() == frame + ): + decorators.append(assign.value) + return decorators + + def pytype(self) -> Literal["builtins.instancemethod", "builtins.function"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + if "method" in self.type: + return "builtins.instancemethod" + return "builtins.function" + + def display_type(self) -> str: + """A human readable type of this node. + + :returns: The type of this node. + :rtype: str + """ + if "method" in self.type: + return "Method" + return "Function" + + def callable(self) -> Literal[True]: + return True + + def argnames(self) -> list[str]: + """Get the names of each of the arguments, including that + of the collections of variable-length arguments ("args", "kwargs", + etc.), as well as positional-only and keyword-only arguments. + + :returns: The names of the arguments. + :rtype: list(str) + """ + if self.args.arguments: # maybe None with builtin functions + names = [elt.name for elt in self.args.arguments] + else: + names = [] + + return names + + def getattr( + self, name: str, context: InferenceContext | None = None + ) -> list[NodeNG]: + if not name: + raise AttributeInferenceError(target=self, attribute=name, context=context) + + found_attrs = [] + if name in self.instance_attrs: + found_attrs = self.instance_attrs[name] + if name in self.special_attributes: + found_attrs.append(self.special_attributes.lookup(name)) + if found_attrs: + return found_attrs + raise AttributeInferenceError(target=self, attribute=name) + + @cached_property + def type(self) -> str: # pylint: disable=too-many-return-statements # noqa: C901 + """The function type for this node. + + Possible values are: method, function, staticmethod, classmethod. + """ + for decorator in self.extra_decorators: + if decorator.func.name in BUILTIN_DESCRIPTORS: + return decorator.func.name + + if not self.parent: + raise ParentMissingError(target=self) + + frame = self.parent.frame() + type_name = "function" + if isinstance(frame, ClassDef): + if self.name == "__new__": + return "classmethod" + if self.name == "__init_subclass__": + return "classmethod" + if self.name == "__class_getitem__": + return "classmethod" + + type_name = "method" + + if not self.decorators: + return type_name + + for node in self.decorators.nodes: + if isinstance(node, node_classes.Name): + if node.name in BUILTIN_DESCRIPTORS: + return node.name + if ( + isinstance(node, node_classes.Attribute) + and isinstance(node.expr, node_classes.Name) + and node.expr.name == "builtins" + and node.attrname in BUILTIN_DESCRIPTORS + ): + return node.attrname + + if isinstance(node, node_classes.Call): + # Handle the following case: + # @some_decorator(arg1, arg2) + # def func(...) + # + try: + current = next(node.func.infer()) + except (InferenceError, StopIteration): + continue + _type = _infer_decorator_callchain(current) + if _type is not None: + return _type + + try: + for inferred in node.infer(): + # Check to see if this returns a static or a class method. + _type = _infer_decorator_callchain(inferred) + if _type is not None: + return _type + + if not isinstance(inferred, ClassDef): + continue + for ancestor in inferred.ancestors(): + if not isinstance(ancestor, ClassDef): + continue + if ancestor.is_subtype_of("builtins.classmethod"): + return "classmethod" + if ancestor.is_subtype_of("builtins.staticmethod"): + return "staticmethod" + except InferenceError: + pass + return type_name + + @cached_property + def fromlineno(self) -> int: + """The first line that this node appears on in the source code. + + Can also return 0 if the line can not be determined. + """ + # lineno is the line number of the first decorator, we want the def + # statement lineno. Similar to 'ClassDef.fromlineno' + lineno = self.lineno or 0 + if self.decorators is not None: + lineno += sum( + node.tolineno - (node.lineno or 0) + 1 for node in self.decorators.nodes + ) + + return lineno or 0 + + @cached_property + def blockstart_tolineno(self): + """The line on which the beginning of this block ends. + + :type: int + """ + return self.args.tolineno + + def implicit_parameters(self) -> Literal[0, 1]: + return 1 if self.is_bound() else 0 + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from the given line number to where this node ends. + + :param lineno: Unused. + + :returns: The range of line numbers that this node belongs to, + """ + return self.fromlineno, self.tolineno + + def igetattr( + self, name: str, context: InferenceContext | None = None + ) -> Iterator[InferenceResult]: + """Inferred getattr, which returns an iterator of inferred statements.""" + try: + return bases._infer_stmts(self.getattr(name, context), context, frame=self) + except AttributeInferenceError as error: + raise InferenceError( + str(error), target=self, attribute=name, context=context + ) from error + + def is_method(self) -> bool: + """Check if this function node represents a method. + + :returns: Whether this is a method. + """ + # check we are defined in a ClassDef, because this is usually expected + # (e.g. pylint...) when is_method() return True + return ( + self.type != "function" + and self.parent is not None + and isinstance(self.parent.frame(), ClassDef) + ) + + def decoratornames(self, context: InferenceContext | None = None) -> set[str]: + """Get the qualified names of each of the decorators on this function. + + :param context: + An inference context that can be passed to inference functions + :returns: The names of the decorators. + """ + result = set() + decoratornodes = [] + if self.decorators is not None: + decoratornodes += self.decorators.nodes + decoratornodes += self.extra_decorators + for decnode in decoratornodes: + try: + for infnode in decnode.infer(context=context): + result.add(infnode.qname()) + except InferenceError: + continue + return result + + def is_bound(self) -> bool: + """Check if the function is bound to an instance or class. + + :returns: Whether the function is bound to an instance or class. + """ + return self.type in {"method", "classmethod"} + + def is_abstract(self, pass_is_abstract=True, any_raise_is_abstract=False) -> bool: + """Check if the method is abstract. + + A method is considered abstract if any of the following is true: + * The only statement is 'raise NotImplementedError' + * The only statement is 'raise ' and any_raise_is_abstract is True + * The only statement is 'pass' and pass_is_abstract is True + * The method is annotated with abc.astractproperty/abc.abstractmethod + + :returns: Whether the method is abstract. + """ + if self.decorators: + for node in self.decorators.nodes: + try: + inferred = next(node.infer()) + except (InferenceError, StopIteration): + continue + if inferred and inferred.qname() in { + "abc.abstractproperty", + "abc.abstractmethod", + }: + return True + + for child_node in self.body: + if isinstance(child_node, node_classes.Raise): + if any_raise_is_abstract: + return True + if child_node.raises_not_implemented(): + return True + return pass_is_abstract and isinstance(child_node, node_classes.Pass) + # empty function is the same as function with a single "pass" statement + if pass_is_abstract: + return True + + return False + + def is_generator(self) -> bool: + """Check if this is a generator function. + + :returns: Whether this is a generator function. + """ + yields_without_lambdas = set(self._get_yield_nodes_skip_lambdas()) + yields_without_functions = set(self._get_yield_nodes_skip_functions()) + # Want an intersecting member that is neither in a lambda nor a function + return bool(yields_without_lambdas & yields_without_functions) + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[objects.Property | FunctionDef, None, InferenceErrorInfo]: + from astroid import objects # pylint: disable=import-outside-toplevel + + if not (self.decorators and bases._is_property(self)): + yield self + return InferenceErrorInfo(node=self, context=context) + + if not self.parent: + raise ParentMissingError(target=self) + prop_func = objects.Property( + function=self, + name=self.name, + lineno=self.lineno, + parent=self.parent, + col_offset=self.col_offset, + ) + prop_func.postinit(body=[], args=self.args, doc_node=self.doc_node) + yield prop_func + return InferenceErrorInfo(node=self, context=context) + + def infer_yield_result(self, context: InferenceContext | None = None): + """Infer what the function yields when called + + :returns: What the function yields + :rtype: iterable(NodeNG or Uninferable) or None + """ + for yield_ in self.nodes_of_class(node_classes.Yield): + if yield_.value is None: + yield node_classes.Const(None, parent=yield_, lineno=yield_.lineno) + elif yield_.scope() == self: + yield from yield_.value.infer(context=context) + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + """Infer what the function returns when called.""" + if context is None: + context = InferenceContext() + if self.is_generator(): + if isinstance(self, AsyncFunctionDef): + generator_cls: type[bases.Generator] = bases.AsyncGenerator + else: + generator_cls = bases.Generator + result = generator_cls(self, generator_initial_context=context) + yield result + return + # This is really a gigantic hack to work around metaclass generators + # that return transient class-generating functions. Pylint's AST structure + # cannot handle a base class object that is only used for calling __new__, + # but does not contribute to the inheritance structure itself. We inject + # a fake class into the hierarchy here for several well-known metaclass + # generators, and filter it out later. + if ( + self.name == "with_metaclass" + and caller is not None + and self.args.args + and len(self.args.args) == 1 + and self.args.vararg is not None + ): + if isinstance(caller.args, node_classes.Arguments): + assert caller.args.args is not None + metaclass = next(caller.args.args[0].infer(context), None) + elif isinstance(caller.args, list): + metaclass = next(caller.args[0].infer(context), None) + else: + raise TypeError( # pragma: no cover + f"caller.args was neither Arguments nor list; got {type(caller.args)}" + ) + if isinstance(metaclass, ClassDef): + class_bases = [_infer_last(x, context) for x in caller.args[1:]] + new_class = ClassDef( + name="temporary_class", + lineno=0, + col_offset=0, + end_lineno=0, + end_col_offset=0, + parent=SYNTHETIC_ROOT, + ) + new_class.hide = True + new_class.postinit( + bases=[ + base + for base in class_bases + if not isinstance(base, util.UninferableBase) + ], + body=[], + decorators=None, + metaclass=metaclass, + ) + yield new_class + return + returns = self._get_return_nodes_skip_functions() + + first_return = next(returns, None) + if not first_return: + if self.body: + if self.is_abstract(pass_is_abstract=True, any_raise_is_abstract=True): + yield util.Uninferable + else: + yield node_classes.Const(None) + return + + raise InferenceError("The function does not have any return statements") + + for returnnode in itertools.chain((first_return,), returns): + if returnnode.value is None: + yield node_classes.Const(None) + else: + try: + yield from returnnode.value.infer(context) + except InferenceError: + yield util.Uninferable + + def bool_value(self, context: InferenceContext | None = None) -> bool: + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`FunctionDef` this is always ``True``. + """ + return True + + def get_children(self): + if self.decorators is not None: + yield self.decorators + + yield self.args + + if self.returns is not None: + yield self.returns + yield from self.type_params + + yield from self.body + + def scope_lookup( + self, node: LookupMixIn, name: str, offset: int = 0 + ) -> tuple[LocalsDictNodeNG, list[nodes.NodeNG]]: + """Lookup where the given name is assigned.""" + if name == "__class__": + # __class__ is an implicit closure reference created by the compiler + # if any methods in a class body refer to either __class__ or super. + # In our case, we want to be able to look it up in the current scope + # when `__class__` is being used. + if self.parent and isinstance(frame := self.parent.frame(), ClassDef): + return self, [frame] + + if (self.args.defaults and node in self.args.defaults) or ( + self.args.kw_defaults and node in self.args.kw_defaults + ): + if not self.parent: + raise ParentMissingError(target=self) + frame = self.parent.frame() + # line offset to avoid that def func(f=func) resolve the default + # value to the defined function + offset = -1 + else: + # check this is not used in function decorators + frame = self + return frame._scope_lookup(node, name, offset) + + def frame(self: _T, *, future: Literal[None, True] = None) -> _T: + """The node's frame node. + + A frame node is a :class:`Module`, :class:`FunctionDef`, + :class:`ClassDef` or :class:`Lambda`. + + :returns: The node itself. + """ + return self + + +class AsyncFunctionDef(FunctionDef): + """Class representing an :class:`ast.FunctionDef` node. + + A :class:`AsyncFunctionDef` is an asynchronous function + created with the `async` keyword. + + >>> import astroid + >>> node = astroid.extract_node(''' + async def func(things): + async for thing in things: + print(thing) + ''') + >>> node + + >>> node.body[0] + + """ + + +def _is_metaclass( + klass: ClassDef, + seen: set[str] | None = None, + context: InferenceContext | None = None, +) -> bool: + """Return if the given class can be + used as a metaclass. + """ + if klass.name == "type": + return True + if seen is None: + seen = set() + for base in klass.bases: + try: + for baseobj in base.infer(context=context): + baseobj_name = baseobj.qname() + if baseobj_name in seen: + continue + + seen.add(baseobj_name) + if isinstance(baseobj, bases.Instance): + # not abstract + return False + if baseobj is klass: + continue + if not isinstance(baseobj, ClassDef): + continue + if baseobj._type == "metaclass": + return True + if _is_metaclass(baseobj, seen, context=context): + return True + except InferenceError: + continue + return False + + +def _class_type( + klass: ClassDef, + ancestors: set[str] | None = None, + context: InferenceContext | None = None, +) -> Literal["class", "exception", "metaclass"]: + """return a ClassDef node type to differ metaclass and exception + from 'regular' classes + """ + # XXX we have to store ancestors in case we have an ancestor loop + if klass._type is not None: + return klass._type + if _is_metaclass(klass, context=context): + klass._type = "metaclass" + elif klass.name.endswith("Exception"): + klass._type = "exception" + else: + if ancestors is None: + ancestors = set() + klass_name = klass.qname() + if klass_name in ancestors: + # XXX we are in loop ancestors, and have found no type + klass._type = "class" + return "class" + ancestors.add(klass_name) + for base in klass.ancestors(recurs=False): + name = _class_type(base, ancestors) + if name != "class": + if name == "metaclass" and klass._type != "metaclass": + # don't propagate it if the current class + # can't be a metaclass + continue + klass._type = base.type + break + if klass._type is None: + klass._type = "class" + return klass._type + + +def get_wrapping_class(node): + """Get the class that wraps the given node. + + We consider that a class wraps a node if the class + is a parent for the said node. + + :returns: The class that wraps the given node + :rtype: ClassDef or None + """ + + klass = node.frame() + while klass is not None and not isinstance(klass, ClassDef): + if klass.parent is None: + klass = None + else: + klass = klass.parent.frame() + return klass + + +class ClassDef( + _base_nodes.FilterStmtsBaseNode, LocalsDictNodeNG, _base_nodes.Statement +): + """Class representing an :class:`ast.ClassDef` node. + + >>> import astroid + >>> node = astroid.extract_node(''' + class Thing: + def my_meth(self, arg): + return arg + self.offset + ''') + >>> node + + """ + + # some of the attributes below are set by the builder module or + # by a raw factories + + # a dictionary of class instances attributes + _astroid_fields = ( + "decorators", + "bases", + "keywords", + "doc_node", + "body", + "type_params", + ) # name + + decorators = None + """The decorators that are applied to this class. + + :type: Decorators or None + """ + special_attributes = ClassModel() + """The names of special attributes that this class has. + + :type: objectmodel.ClassModel + """ + + _type: Literal["class", "exception", "metaclass"] | None = None + _metaclass: NodeNG | None = None + _metaclass_hack = False + hide = False + type = property( + _class_type, + doc=( + "The class type for this node.\n\n" + "Possible values are: class, metaclass, exception.\n\n" + ":type: str" + ), + ) + _other_fields = ("name", "is_dataclass", "position") + _other_other_fields = "locals" + + def __init__( + self, + name: str, + lineno: int, + col_offset: int, + parent: NodeNG, + *, + end_lineno: int | None, + end_col_offset: int | None, + ) -> None: + self.instance_attrs: dict[str, NodeNG] = {} + self.locals = {} + """A map of the name of a local variable to the node defining it.""" + + self.keywords: list[node_classes.Keyword] = [] + """The keywords given to the class definition. + + This is usually for :pep:`3115` style metaclass declaration. + """ + + self.bases: list[SuccessfulInferenceResult] = [] + """What the class inherits from.""" + + self.body: list[NodeNG] = [] + """The contents of the class body.""" + + self.name = name + """The name of the class.""" + + self.decorators = None + """The decorators that are applied to this class.""" + + self.doc_node: Const | None = None + """The doc node associated with this node.""" + + self.is_dataclass: bool = False + """Whether this class is a dataclass.""" + + self.type_params: list[nodes.TypeVar | nodes.ParamSpec | nodes.TypeVarTuple] = ( + [] + ) + """PEP 695 (Python 3.12+) type params, e.g. class MyClass[T]: ...""" + + super().__init__( + lineno=lineno, + col_offset=col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + for local_name, node in self.implicit_locals(): + self.add_local_node(node, local_name) + + infer_binary_op: ClassVar[InferBinaryOp[ClassDef]] = ( + protocols.instance_class_infer_binary_op + ) + + def implicit_parameters(self) -> Literal[1]: + return 1 + + def implicit_locals(self): + """Get implicitly defined class definition locals. + + :returns: the the name and Const pair for each local + :rtype: tuple(tuple(str, node_classes.Const), ...) + """ + locals_ = (("__module__", self.special_attributes.attr___module__),) + # __qualname__ is defined in PEP3155 + locals_ += ( + ("__qualname__", self.special_attributes.attr___qualname__), + ("__annotations__", self.special_attributes.attr___annotations__), + ) + return locals_ + + # pylint: disable=redefined-outer-name + def postinit( + self, + bases: list[SuccessfulInferenceResult], + body: list[NodeNG], + decorators: node_classes.Decorators | None, + newstyle: bool | None = None, + metaclass: NodeNG | None = None, + keywords: list[node_classes.Keyword] | None = None, + *, + position: Position | None = None, + doc_node: Const | None = None, + type_params: ( + list[nodes.TypeVar | nodes.ParamSpec | nodes.TypeVarTuple] | None + ) = None, + ) -> None: + if keywords is not None: + self.keywords = keywords + self.bases = bases + self.body = body + self.decorators = decorators + self._metaclass = metaclass + self.position = position + self.doc_node = doc_node + self.type_params = type_params or [] + + @cached_property + def blockstart_tolineno(self): + """The line on which the beginning of this block ends. + + :type: int + """ + if self.bases: + return self.bases[-1].tolineno + + return self.fromlineno + + def block_range(self, lineno: int) -> tuple[int, int]: + """Get a range from the given line number to where this node ends. + + :param lineno: Unused. + + :returns: The range of line numbers that this node belongs to, + """ + return self.fromlineno, self.tolineno + + def pytype(self) -> Literal["builtins.type"]: + """Get the name of the type that this node represents. + + :returns: The name of the type. + """ + return "builtins.type" + + def display_type(self) -> str: + """A human readable type of this node. + + :returns: The type of this node. + :rtype: str + """ + return "Class" + + def callable(self) -> bool: + """Whether this node defines something that is callable. + + :returns: Whether this defines something that is callable. + For a :class:`ClassDef` this is always ``True``. + """ + return True + + def is_subtype_of(self, type_name, context: InferenceContext | None = None) -> bool: + """Whether this class is a subtype of the given type. + + :param type_name: The name of the type of check against. + :type type_name: str + + :returns: Whether this class is a subtype of the given type. + """ + if self.qname() == type_name: + return True + + return any(anc.qname() == type_name for anc in self.ancestors(context=context)) + + def _infer_type_call(self, caller, context): + try: + name_node = next(caller.args[0].infer(context)) + except StopIteration as e: + raise InferenceError(node=caller.args[0], context=context) from e + if isinstance(name_node, node_classes.Const) and isinstance( + name_node.value, str + ): + name = name_node.value + else: + return util.Uninferable + + result = ClassDef( + name, + lineno=0, + col_offset=0, + end_lineno=0, + end_col_offset=0, + parent=caller.parent, + ) + + # Get the bases of the class. + try: + class_bases = next(caller.args[1].infer(context)) + except StopIteration as e: + raise InferenceError(node=caller.args[1], context=context) from e + if isinstance(class_bases, (node_classes.Tuple, node_classes.List)): + bases = [] + for base in class_bases.itered(): + inferred = next(base.infer(context=context), None) + if inferred: + bases.append( + node_classes.EvaluatedObject(original=base, value=inferred) + ) + result.bases = bases + else: + # There is currently no AST node that can represent an 'unknown' + # node (Uninferable is not an AST node), therefore we simply return Uninferable here + # although we know at least the name of the class. + return util.Uninferable + + # Get the members of the class + try: + members = next(caller.args[2].infer(context)) + except (InferenceError, StopIteration): + members = None + + if members and isinstance(members, node_classes.Dict): + for attr, value in members.items: + if isinstance(attr, node_classes.Const) and isinstance(attr.value, str): + result.locals[attr.value] = [value] + + return result + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + """infer what a class is returning when called""" + if self.is_subtype_of("builtins.type", context) and len(caller.args) == 3: + result = self._infer_type_call(caller, context) + yield result + return + + dunder_call = None + try: + metaclass = self.metaclass(context=context) + if metaclass is not None: + # Only get __call__ if it's defined locally for the metaclass. + # Otherwise we will find ObjectModel.__call__ which will + # return an instance of the metaclass. Instantiating the class is + # handled later. + if "__call__" in metaclass.locals: + dunder_call = next(metaclass.igetattr("__call__", context)) + except (AttributeInferenceError, StopIteration): + pass + + if dunder_call and dunder_call.qname() != "builtins.type.__call__": + # Call type.__call__ if not set metaclass + # (since type is the default metaclass) + context = bind_context_to_node(context, self) + context.callcontext.callee = dunder_call + yield from dunder_call.infer_call_result(caller, context) + else: + yield self.instantiate_class() + + def scope_lookup( + self, node: LookupMixIn, name: str, offset: int = 0 + ) -> tuple[LocalsDictNodeNG, list[nodes.NodeNG]]: + """Lookup where the given name is assigned. + + :param node: The node to look for assignments up to. + Any assignments after the given node are ignored. + + :param name: The name to find assignments for. + + :param offset: The line offset to filter statements up to. + + :returns: This scope node and the list of assignments associated to the + given name according to the scope where it has been found (locals, + globals or builtin). + """ + # If the name looks like a builtin name, just try to look + # into the upper scope of this class. We might have a + # decorator that it's poorly named after a builtin object + # inside this class. + lookup_upper_frame = ( + isinstance(node.parent, node_classes.Decorators) + and name in AstroidManager().builtins_module + ) + if ( + any( + node == base or (base.parent_of(node) and not self.type_params) + for base in self.bases + ) + or lookup_upper_frame + ): + # Handle the case where we have either a name + # in the bases of a class, which exists before + # the actual definition or the case where we have + # a Getattr node, with that name. + # + # name = ... + # class A(name): + # def name(self): ... + # + # import name + # class A(name.Name): + # def name(self): ... + if not self.parent: + raise ParentMissingError(target=self) + frame = self.parent.frame() + # line offset to avoid that class A(A) resolve the ancestor to + # the defined class + offset = -1 + else: + frame = self + return frame._scope_lookup(node, name, offset) + + @property + def basenames(self): + """The names of the parent classes + + Names are given in the order they appear in the class definition. + + :type: list(str) + """ + return [bnode.as_string() for bnode in self.bases] + + def ancestors( + self, recurs: bool = True, context: InferenceContext | None = None + ) -> Generator[ClassDef]: + """Iterate over the base classes in prefixed depth first order. + + :param recurs: Whether to recurse or return direct ancestors only. + + :returns: The base classes + """ + # FIXME: should be possible to choose the resolution order + # FIXME: inference make infinite loops possible here + yielded = {self} + if context is None: + context = InferenceContext() + if not self.bases and self.qname() != "builtins.object": + # This should always be a ClassDef (which we don't assert for) + yield builtin_lookup("object")[1][0] # type: ignore[misc] + return + + for stmt in self.bases: + with context.restore_path(): + try: + for baseobj in stmt.infer(context): + if not isinstance(baseobj, ClassDef): + if isinstance(baseobj, bases.Instance): + baseobj = baseobj._proxied + else: + continue + if not baseobj.hide: + if baseobj in yielded: + continue + yielded.add(baseobj) + yield baseobj + if not recurs: + continue + for grandpa in baseobj.ancestors(recurs=True, context=context): + if grandpa is self: + # This class is the ancestor of itself. + break + if grandpa in yielded: + continue + yielded.add(grandpa) + yield grandpa + except InferenceError: + continue + + def local_attr_ancestors(self, name, context: InferenceContext | None = None): + """Iterate over the parents that define the given name. + + :param name: The name to find definitions for. + :type name: str + + :returns: The parents that define the given name. + :rtype: iterable(NodeNG) + """ + # Look up in the mro if we can. This will result in the + # attribute being looked up just as Python does it. + try: + ancestors: Iterable[ClassDef] = self.mro(context)[1:] + except MroError: + # Fallback to use ancestors, we can't determine + # a sane MRO. + ancestors = self.ancestors(context=context) + for astroid in ancestors: + if name in astroid: + yield astroid + + def instance_attr_ancestors(self, name, context: InferenceContext | None = None): + """Iterate over the parents that define the given name as an attribute. + + :param name: The name to find definitions for. + :type name: str + + :returns: The parents that define the given name as + an instance attribute. + :rtype: iterable(NodeNG) + """ + for astroid in self.ancestors(context=context): + if name in astroid.instance_attrs: + yield astroid + + def has_base(self, node) -> bool: + """Whether this class directly inherits from the given node. + + :param node: The node to check for. + :type node: NodeNG + + :returns: Whether this class directly inherits from the given node. + """ + return node in self.bases + + def local_attr(self, name, context: InferenceContext | None = None): + """Get the list of assign nodes associated to the given name. + + Assignments are looked for in both this class and in parents. + + :returns: The list of assignments to the given name. + :rtype: list(NodeNG) + + :raises AttributeInferenceError: If no attribute with this name + can be found in this class or parent classes. + """ + result = [] + if name in self.locals: + result = self.locals[name] + else: + class_node = next(self.local_attr_ancestors(name, context), None) + if class_node: + result = class_node.locals[name] + result = [n for n in result if not isinstance(n, node_classes.DelAttr)] + if result: + return result + raise AttributeInferenceError(target=self, attribute=name, context=context) + + def instance_attr(self, name, context: InferenceContext | None = None): + """Get the list of nodes associated to the given attribute name. + + Assignments are looked for in both this class and in parents. + + :returns: The list of assignments to the given name. + :rtype: list(NodeNG) + + :raises AttributeInferenceError: If no attribute with this name + can be found in this class or parent classes. + """ + # Return a copy, so we don't modify self.instance_attrs, + # which could lead to infinite loop. + values = list(self.instance_attrs.get(name, [])) + # get all values from parents + for class_node in self.instance_attr_ancestors(name, context): + values += class_node.instance_attrs[name] + values = [n for n in values if not isinstance(n, node_classes.DelAttr)] + if values: + return values + raise AttributeInferenceError(target=self, attribute=name, context=context) + + def instantiate_class(self) -> bases.Instance: + """Get an :class:`Instance` of the :class:`ClassDef` node. + + :returns: An :class:`Instance` of the :class:`ClassDef` node + """ + from astroid import objects # pylint: disable=import-outside-toplevel + + try: + if any(cls.name in EXCEPTION_BASE_CLASSES for cls in self.mro()): + # Subclasses of exceptions can be exception instances + return objects.ExceptionInstance(self) + except MroError: + pass + return bases.Instance(self) + + def getattr( + self, + name: str, + context: InferenceContext | None = None, + class_context: bool = True, + ) -> list[InferenceResult]: + """Get an attribute from this class, using Python's attribute semantic. + + This method doesn't look in the :attr:`instance_attrs` dictionary + since it is done by an :class:`Instance` proxy at inference time. + It may return an :class:`Uninferable` object if + the attribute has not been + found, but a ``__getattr__`` or ``__getattribute__`` method is defined. + If ``class_context`` is given, then it is considered that the + attribute is accessed from a class context, + e.g. ClassDef.attribute, otherwise it might have been accessed + from an instance as well. If ``class_context`` is used in that + case, then a lookup in the implicit metaclass and the explicit + metaclass will be done. + + :param name: The attribute to look for. + + :param class_context: Whether the attribute can be accessed statically. + + :returns: The attribute. + + :raises AttributeInferenceError: If the attribute cannot be inferred. + """ + if not name: + raise AttributeInferenceError(target=self, attribute=name, context=context) + + # don't modify the list in self.locals! + values: list[InferenceResult] = list(self.locals.get(name, [])) + for classnode in self.ancestors(recurs=True, context=context): + values += classnode.locals.get(name, []) + + if name in self.special_attributes and class_context and not values: + result = [self.special_attributes.lookup(name)] + return result + + if class_context: + values += self._metaclass_lookup_attribute(name, context) + + result: list[InferenceResult] = [] + for value in values: + if isinstance(value, node_classes.AssignName): + stmt = value.statement() + # Ignore AnnAssigns without value, which are not attributes in the purest sense. + if isinstance(stmt, node_classes.AnnAssign) and stmt.value is None: + continue + result.append(value) + + if not result: + raise AttributeInferenceError(target=self, attribute=name, context=context) + + return result + + @lru_cache(maxsize=1024) # noqa + def _metaclass_lookup_attribute(self, name, context): + """Search the given name in the implicit and the explicit metaclass.""" + attrs = set() + implicit_meta = self.implicit_metaclass() + context = copy_context(context) + metaclass = self.metaclass(context=context) + for cls in (implicit_meta, metaclass): + if cls and cls != self and isinstance(cls, ClassDef): + cls_attributes = self._get_attribute_from_metaclass(cls, name, context) + attrs.update(cls_attributes) + return attrs + + def _get_attribute_from_metaclass(self, cls, name, context): + from astroid import objects # pylint: disable=import-outside-toplevel + + try: + attrs = cls.getattr(name, context=context, class_context=True) + except AttributeInferenceError: + return + + for attr in bases._infer_stmts(attrs, context, frame=cls): + if not isinstance(attr, FunctionDef): + yield attr + continue + + if isinstance(attr, objects.Property): + yield attr + continue + if attr.type == "classmethod": + # If the method is a classmethod, then it will + # be bound to the metaclass, not to the class + # from where the attribute is retrieved. + # get_wrapping_class could return None, so just + # default to the current class. + frame = get_wrapping_class(attr) or self + yield bases.BoundMethod(attr, frame) + elif attr.type == "staticmethod": + yield attr + else: + yield bases.BoundMethod(attr, self) + + def igetattr( + self, + name: str, + context: InferenceContext | None = None, + class_context: bool = True, + ) -> Iterator[InferenceResult]: + """Infer the possible values of the given variable. + + :param name: The name of the variable to infer. + + :returns: The inferred possible values. + """ + from astroid import objects # pylint: disable=import-outside-toplevel + + # set lookup name since this is necessary to infer on import nodes for + # instance + context = copy_context(context) + context.lookupname = name + + metaclass = self.metaclass(context=context) + try: + attributes = self.getattr(name, context, class_context=class_context) + # If we have more than one attribute, make sure that those starting from + # the second one are from the same scope. This is to account for modifications + # to the attribute happening *after* the attribute's definition (e.g. AugAssigns on lists) + if len(attributes) > 1: + first_attr, attributes = attributes[0], attributes[1:] + first_scope = first_attr.parent.scope() + attributes = [first_attr] + [ + attr + for attr in attributes + if attr.parent and attr.parent.scope() == first_scope + ] + functions = [attr for attr in attributes if isinstance(attr, FunctionDef)] + setter = None + for function in functions: + dec_names = function.decoratornames(context=context) + for dec_name in dec_names: + if dec_name is util.Uninferable: + continue + if dec_name.split(".")[-1] == "setter": + setter = function + if setter: + break + if functions: + # Prefer only the last function, unless a property is involved. + last_function = functions[-1] + attributes = [ + a + for a in attributes + if a not in functions or a is last_function or bases._is_property(a) + ] + + for inferred in bases._infer_stmts(attributes, context, frame=self): + # yield Uninferable object instead of descriptors when necessary + if not isinstance(inferred, node_classes.Const) and isinstance( + inferred, bases.Instance + ): + try: + inferred._proxied.getattr("__get__", context) + except AttributeInferenceError: + yield inferred + else: + yield util.Uninferable + elif isinstance(inferred, objects.Property): + function = inferred.function + if not class_context: + if not context.callcontext and not setter: + context.callcontext = CallContext( + args=function.args.arguments, callee=function + ) + # Through an instance so we can solve the property + yield from function.infer_call_result( + caller=self, context=context + ) + # If we're in a class context, we need to determine if the property + # was defined in the metaclass (a derived class must be a subclass of + # the metaclass of all its bases), in which case we can resolve the + # property. If not, i.e. the property is defined in some base class + # instead, then we return the property object + elif metaclass and function.parent.scope() is metaclass: + # Resolve a property as long as it is not accessed through + # the class itself. + yield from function.infer_call_result( + caller=self, context=context + ) + else: + yield inferred + else: + yield function_to_method(inferred, self) + except AttributeInferenceError as error: + if not name.startswith("__") and self.has_dynamic_getattr(context): + # class handle some dynamic attributes, return a Uninferable object + yield util.Uninferable + else: + raise InferenceError( + str(error), target=self, attribute=name, context=context + ) from error + + def has_dynamic_getattr(self, context: InferenceContext | None = None) -> bool: + """Check if the class has a custom __getattr__ or __getattribute__. + + If any such method is found and it is not from + builtins, nor from an extension module, then the function + will return True. + + :returns: Whether the class has a custom __getattr__ or __getattribute__. + """ + + def _valid_getattr(node): + root = node.root() + return root.name != "builtins" and getattr(root, "pure_python", None) + + try: + return _valid_getattr(self.getattr("__getattr__", context)[0]) + except AttributeInferenceError: + try: + getattribute = self.getattr("__getattribute__", context)[0] + return _valid_getattr(getattribute) + except AttributeInferenceError: + pass + return False + + def getitem(self, index, context: InferenceContext | None = None): + """Return the inference of a subscript. + + This is basically looking up the method in the metaclass and calling it. + + :returns: The inferred value of a subscript to this class. + :rtype: NodeNG + + :raises AstroidTypeError: If this class does not define a + ``__getitem__`` method. + """ + try: + methods = lookup(self, "__getitem__", context=context) + except AttributeInferenceError as exc: + if isinstance(self, ClassDef): + # subscripting a class definition may be + # achieved thanks to __class_getitem__ method + # which is a classmethod defined in the class + # that supports subscript and not in the metaclass + try: + methods = self.getattr("__class_getitem__") + # Here it is assumed that the __class_getitem__ node is + # a FunctionDef. One possible improvement would be to deal + # with more generic inference. + except AttributeInferenceError: + raise AstroidTypeError(node=self, context=context) from exc + else: + raise AstroidTypeError(node=self, context=context) from exc + + method = methods[0] + + # Create a new callcontext for providing index as an argument. + new_context = bind_context_to_node(context, self) + new_context.callcontext = CallContext(args=[index], callee=method) + + try: + return next(method.infer_call_result(self, new_context), util.Uninferable) + except AttributeError: + # Starting with python3.9, builtin types list, dict etc... + # are subscriptable thanks to __class_getitem___ classmethod. + # However in such case the method is bound to an EmptyNode and + # EmptyNode doesn't have infer_call_result method yielding to + # AttributeError + if ( + isinstance(method, node_classes.EmptyNode) + and self.pytype() == "builtins.type" + ): + return self + raise + except InferenceError: + return util.Uninferable + + def methods(self): + """Iterate over all of the method defined in this class and its parents. + + :returns: The methods defined on the class. + :rtype: iterable(FunctionDef) + """ + done = {} + for astroid in itertools.chain(iter((self,)), self.ancestors()): + for meth in astroid.mymethods(): + if meth.name in done: + continue + done[meth.name] = None + yield meth + + def mymethods(self): + """Iterate over all of the method defined in this class only. + + :returns: The methods defined on the class. + :rtype: iterable(FunctionDef) + """ + for member in self.values(): + if isinstance(member, FunctionDef): + yield member + + def implicit_metaclass(self): + """Get the implicit metaclass of the current class. + + This will return an instance of builtins.type. + + :returns: The metaclass. + :rtype: builtins.type + """ + return builtin_lookup("type")[1][0] + + def declared_metaclass( + self, context: InferenceContext | None = None + ) -> SuccessfulInferenceResult | None: + """Return the explicit declared metaclass for the current class. + + An explicit declared metaclass is defined + either by passing the ``metaclass`` keyword argument + in the class definition line (Python 3) or (Python 2) by + having a ``__metaclass__`` class attribute, or if there are + no explicit bases but there is a global ``__metaclass__`` variable. + + :returns: The metaclass of this class, + or None if one could not be found. + """ + for base in self.bases: + try: + for baseobj in base.infer(context=context): + if isinstance(baseobj, ClassDef) and baseobj.hide: + self._metaclass = baseobj._metaclass + self._metaclass_hack = True + break + except InferenceError: + pass + + if self._metaclass: + # Expects this from Py3k TreeRebuilder + try: + return next( + node + for node in self._metaclass.infer(context=context) + if not isinstance(node, util.UninferableBase) + ) + except (InferenceError, StopIteration): + return None + + return None + + def _find_metaclass( + self, seen: set[ClassDef] | None = None, context: InferenceContext | None = None + ) -> SuccessfulInferenceResult | None: + if seen is None: + seen = set() + seen.add(self) + + klass = self.declared_metaclass(context=context) + if klass is None: + for parent in self.ancestors(context=context): + if parent not in seen: + klass = parent._find_metaclass(seen) + if klass is not None: + break + return klass + + def metaclass( + self, context: InferenceContext | None = None + ) -> SuccessfulInferenceResult | None: + """Get the metaclass of this class. + + If this class does not define explicitly a metaclass, + then the first defined metaclass in ancestors will be used + instead. + + :returns: The metaclass of this class. + """ + return self._find_metaclass(context=context) + + def has_metaclass_hack(self) -> bool: + return self._metaclass_hack + + def _islots(self): + """Return an iterator with the inferred slots.""" + if "__slots__" not in self.locals: + return None + for slots in self.igetattr("__slots__"): + # check if __slots__ is a valid type + for meth in ITER_METHODS: + try: + slots.getattr(meth) + break + except AttributeInferenceError: + continue + else: + continue + + if isinstance(slots, node_classes.Const): + # a string. Ignore the following checks, + # but yield the node, only if it has a value + if slots.value: + yield slots + continue + if not hasattr(slots, "itered"): + # we can't obtain the values, maybe a .deque? + continue + + if isinstance(slots, node_classes.Dict): + values = [item[0] for item in slots.items] + else: + values = slots.itered() + if isinstance(values, util.UninferableBase): + continue + if not values: + # Stop the iteration, because the class + # has an empty list of slots. + return values + + for elt in values: + try: + for inferred in elt.infer(): + if not ( + isinstance(inferred, node_classes.Const) + and isinstance(inferred.value, str) + ): + continue + if not inferred.value: + continue + yield inferred + except InferenceError: + continue + + return None + + def _slots(self): + + slots = self._islots() + try: + first = next(slots) + except StopIteration as exc: + # The class doesn't have a __slots__ definition or empty slots. + if exc.args and exc.args[0] not in ("", None): + return exc.args[0] + return None + return [first, *slots] + + # Cached, because inferring them all the time is expensive + @cached_property + def _all_slots(self): + """Get all the slots for this node. + + :returns: The names of slots for this class. + If the class doesn't define any slot, through the ``__slots__`` + variable, then this function will return a None. + Also, it will return None in the case the slots were not inferred. + :rtype: list(str) or None + """ + + def grouped_slots( + mro: list[ClassDef], + ) -> Iterator[node_classes.NodeNG | None]: + for cls in mro: + # Not interested in object, since it can't have slots. + if cls.qname() == "builtins.object": + continue + try: + cls_slots = cls._slots() + except NotImplementedError: + continue + if cls_slots is not None: + yield from cls_slots + else: + yield None + + try: + mro = self.mro() + except MroError as e: + raise NotImplementedError( + "Cannot get slots while parsing mro fails." + ) from e + + slots = list(grouped_slots(mro)) + if not all(slot is not None for slot in slots): + return None + + return sorted(set(slots), key=lambda item: item.value) + + def slots(self): + return self._all_slots + + def _inferred_bases(self, context: InferenceContext | None = None): + # Similar with .ancestors, but the difference is when one base is inferred, + # only the first object is wanted. That's because + # we aren't interested in superclasses, as in the following + # example: + # + # class SomeSuperClass(object): pass + # class SomeClass(SomeSuperClass): pass + # class Test(SomeClass): pass + # + # Inferring SomeClass from the Test's bases will give + # us both SomeClass and SomeSuperClass, but we are interested + # only in SomeClass. + + if context is None: + context = InferenceContext() + if not self.bases and self.qname() != "builtins.object": + yield builtin_lookup("object")[1][0] + return + + for stmt in self.bases: + try: + baseobj = _infer_last(stmt, context) + except InferenceError: + continue + if isinstance(baseobj, bases.Instance): + baseobj = baseobj._proxied + if not isinstance(baseobj, ClassDef): + continue + if not baseobj.hide: + yield baseobj + else: + yield from baseobj.bases + + def _compute_mro(self, context: InferenceContext | None = None): + if self.qname() == "builtins.object": + return [self] + + inferred_bases = list(self._inferred_bases(context=context)) + bases_mro = [] + for base in inferred_bases: + if base is self: + continue + + mro = base._compute_mro(context=context) + bases_mro.append(mro) + + unmerged_mro: list[list[ClassDef]] = [[self], *bases_mro, inferred_bases] + unmerged_mro = clean_duplicates_mro(unmerged_mro, self, context) + clean_typing_generic_mro(unmerged_mro) + return _c3_merge(unmerged_mro, self, context) + + def mro(self, context: InferenceContext | None = None) -> list[ClassDef]: + """Get the method resolution order, using C3 linearization. + + :returns: The list of ancestors, sorted by the mro. + :rtype: list(NodeNG) + :raises DuplicateBasesError: Duplicate bases in the same class base + :raises InconsistentMroError: A class' MRO is inconsistent + """ + return self._compute_mro(context=context) + + def bool_value(self, context: InferenceContext | None = None) -> Literal[True]: + """Determine the boolean value of this node. + + :returns: The boolean value of this node. + For a :class:`ClassDef` this is always ``True``. + """ + return True + + def get_children(self): + if self.decorators is not None: + yield self.decorators + + yield from self.bases + if self.keywords is not None: + yield from self.keywords + yield from self.type_params + + yield from self.body + + @cached_property + def _assign_nodes_in_scope(self): + children_assign_nodes = ( + child_node._assign_nodes_in_scope for child_node in self.body + ) + return list(itertools.chain.from_iterable(children_assign_nodes)) + + def frame(self: _T, *, future: Literal[None, True] = None) -> _T: + """The node's frame node. + + A frame node is a :class:`Module`, :class:`FunctionDef`, + :class:`ClassDef` or :class:`Lambda`. + + :returns: The node itself. + """ + return self + + def _infer( + self, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[ClassDef]: + yield self diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/utils.py b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/utils.py new file mode 100644 index 0000000..8892008 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/scoped_nodes/utils.py @@ -0,0 +1,35 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""This module contains utility functions for scoped nodes.""" + +from __future__ import annotations + +from typing import TYPE_CHECKING + +from astroid.manager import AstroidManager + +if TYPE_CHECKING: + from astroid import nodes + + +def builtin_lookup(name: str) -> tuple[nodes.Module, list[nodes.NodeNG]]: + """Lookup a name in the builtin module. + + Return the list of matching statements and the ast for the builtin module + """ + manager = AstroidManager() + try: + _builtin_astroid = manager.builtins_module + except KeyError: + # User manipulated the astroid cache directly! Rebuild everything. + manager.clear_cache() + _builtin_astroid = manager.builtins_module + if name == "__dict__": + return _builtin_astroid, () + try: + stmts: list[nodes.NodeNG] = _builtin_astroid.locals[name] # type: ignore[assignment] + except KeyError: + stmts = [] + return _builtin_astroid, stmts diff --git a/.venv/lib/python3.12/site-packages/astroid/nodes/utils.py b/.venv/lib/python3.12/site-packages/astroid/nodes/utils.py new file mode 100644 index 0000000..6dc4828 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/nodes/utils.py @@ -0,0 +1,14 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from typing import NamedTuple + + +class Position(NamedTuple): + """Position with line and column information.""" + + lineno: int + col_offset: int + end_lineno: int + end_col_offset: int diff --git a/.venv/lib/python3.12/site-packages/astroid/objects.py b/.venv/lib/python3.12/site-packages/astroid/objects.py new file mode 100644 index 0000000..73670ec --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/objects.py @@ -0,0 +1,360 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +""" +Inference objects are a way to represent composite AST nodes, +which are used only as inference results, so they can't be found in the +original AST tree. For instance, inferring the following frozenset use, +leads to an inferred FrozenSet: + + Call(func=Name('frozenset'), args=Tuple(...)) +""" + +from __future__ import annotations + +from collections.abc import Generator, Iterator +from functools import cached_property +from typing import Any, Literal, NoReturn, TypeVar + +from astroid import bases, util +from astroid.context import InferenceContext +from astroid.exceptions import ( + AttributeInferenceError, + InferenceError, + MroError, + SuperError, +) +from astroid.interpreter import objectmodel +from astroid.manager import AstroidManager +from astroid.nodes import node_classes, scoped_nodes +from astroid.typing import InferenceResult, SuccessfulInferenceResult + +_T = TypeVar("_T") + + +class FrozenSet(node_classes.BaseContainer): + """Class representing a FrozenSet composite node.""" + + def pytype(self) -> Literal["builtins.frozenset"]: + return "builtins.frozenset" + + def _infer(self, context: InferenceContext | None = None, **kwargs: Any): + yield self + + @cached_property + def _proxied(self): # pylint: disable=method-hidden + ast_builtins = AstroidManager().builtins_module + return ast_builtins.getattr("frozenset")[0] + + +class Super(node_classes.NodeNG): + """Proxy class over a super call. + + This class offers almost the same behaviour as Python's super, + which is MRO lookups for retrieving attributes from the parents. + + The *mro_pointer* is the place in the MRO from where we should + start looking, not counting it. *mro_type* is the object which + provides the MRO, it can be both a type or an instance. + *self_class* is the class where the super call is, while + *scope* is the function where the super call is. + """ + + special_attributes = objectmodel.SuperModel() + + def __init__( + self, + mro_pointer: SuccessfulInferenceResult, + mro_type: SuccessfulInferenceResult, + self_class: scoped_nodes.ClassDef, + scope: scoped_nodes.FunctionDef, + call: node_classes.Call, + ) -> None: + self.type = mro_type + self.mro_pointer = mro_pointer + self._class_based = False + self._self_class = self_class + self._scope = scope + super().__init__( + parent=scope, + lineno=scope.lineno, + col_offset=scope.col_offset, + end_lineno=scope.end_lineno, + end_col_offset=scope.end_col_offset, + ) + + def _infer(self, context: InferenceContext | None = None, **kwargs: Any): + yield self + + def super_mro(self): + """Get the MRO which will be used to lookup attributes in this super.""" + if not isinstance(self.mro_pointer, scoped_nodes.ClassDef): + raise SuperError( + "The first argument to super must be a subtype of " + "type, not {mro_pointer}.", + super_=self, + ) + + if isinstance(self.type, scoped_nodes.ClassDef): + # `super(type, type)`, most likely in a class method. + self._class_based = True + mro_type = self.type + else: + mro_type = getattr(self.type, "_proxied", None) + if not isinstance(mro_type, (bases.Instance, scoped_nodes.ClassDef)): + raise SuperError( + "The second argument to super must be an " + "instance or subtype of type, not {type}.", + super_=self, + ) + + mro = mro_type.mro() + if self.mro_pointer not in mro: + raise SuperError( + "The second argument to super must be an " + "instance or subtype of type, not {type}.", + super_=self, + ) + + index = mro.index(self.mro_pointer) + return mro[index + 1 :] + + @cached_property + def _proxied(self): + ast_builtins = AstroidManager().builtins_module + return ast_builtins.getattr("super")[0] + + def pytype(self) -> Literal["builtins.super"]: + return "builtins.super" + + def display_type(self) -> str: + return "Super of" + + @property + def name(self): + """Get the name of the MRO pointer.""" + return self.mro_pointer.name + + def qname(self) -> Literal["super"]: + return "super" + + def igetattr( # noqa: C901 + self, name: str, context: InferenceContext | None = None + ) -> Iterator[InferenceResult]: + """Retrieve the inferred values of the given attribute name.""" + # '__class__' is a special attribute that should be taken directly + # from the special attributes dict + if name == "__class__": + yield self.special_attributes.lookup(name) + return + + try: + mro = self.super_mro() + # Don't let invalid MROs or invalid super calls + # leak out as is from this function. + except SuperError as exc: + raise AttributeInferenceError( + ( + "Lookup for {name} on {target!r} because super call {super!r} " + "is invalid." + ), + target=self, + attribute=name, + context=context, + super_=exc.super_, + ) from exc + except MroError as exc: + raise AttributeInferenceError( + ( + "Lookup for {name} on {target!r} failed because {cls!r} has an " + "invalid MRO." + ), + target=self, + attribute=name, + context=context, + mros=exc.mros, + cls=exc.cls, + ) from exc + found = False + for cls in mro: + if name not in cls.locals: + continue + + found = True + for inferred in bases._infer_stmts([cls[name]], context, frame=self): + if not isinstance(inferred, scoped_nodes.FunctionDef): + yield inferred + continue + + # We can obtain different descriptors from a super depending + # on what we are accessing and where the super call is. + if inferred.type == "classmethod": + yield bases.BoundMethod(inferred, cls) + elif self._scope.type == "classmethod" and inferred.type == "method": + yield inferred + elif self._class_based or inferred.type == "staticmethod": + yield inferred + elif isinstance(inferred, Property): + function = inferred.function + try: + yield from function.infer_call_result( + caller=self, context=context + ) + except InferenceError: + yield util.Uninferable + elif bases._is_property(inferred): + # TODO: support other descriptors as well. + try: + yield from inferred.infer_call_result(self, context) + except InferenceError: + yield util.Uninferable + else: + yield bases.BoundMethod(inferred, cls) + + # Only if we haven't found any explicit overwrites for the + # attribute we look it up in the special attributes + if not found and name in self.special_attributes: + yield self.special_attributes.lookup(name) + return + + if not found: + raise AttributeInferenceError(target=self, attribute=name, context=context) + + def getattr(self, name, context: InferenceContext | None = None): + return list(self.igetattr(name, context=context)) + + +class ExceptionInstance(bases.Instance): + """Class for instances of exceptions. + + It has special treatment for some of the exceptions's attributes, + which are transformed at runtime into certain concrete objects, such as + the case of .args. + """ + + @cached_property + def special_attributes(self): + qname = self.qname() + instance = objectmodel.BUILTIN_EXCEPTIONS.get( + qname, objectmodel.ExceptionInstanceModel + ) + return instance()(self) + + +class DictInstance(bases.Instance): + """Special kind of instances for dictionaries. + + This instance knows the underlying object model of the dictionaries, which means + that methods such as .values or .items can be properly inferred. + """ + + special_attributes = objectmodel.DictModel() + + +# Custom objects tailored for dictionaries, which are used to +# disambiguate between the types of Python 2 dict's method returns +# and Python 3 (where they return set like objects). +class DictItems(bases.Proxy): + __str__ = node_classes.NodeNG.__str__ + __repr__ = node_classes.NodeNG.__repr__ + + +class DictKeys(bases.Proxy): + __str__ = node_classes.NodeNG.__str__ + __repr__ = node_classes.NodeNG.__repr__ + + +class DictValues(bases.Proxy): + __str__ = node_classes.NodeNG.__str__ + __repr__ = node_classes.NodeNG.__repr__ + + +class PartialFunction(scoped_nodes.FunctionDef): + """A class representing partial function obtained via functools.partial.""" + + def __init__(self, call, name=None, lineno=None, col_offset=None, parent=None): + # TODO: Pass end_lineno, end_col_offset as well + super().__init__( + name, + lineno=lineno, + col_offset=col_offset, + end_col_offset=0, + end_lineno=0, + parent=parent, + ) + self.filled_args = call.positional_arguments[1:] + self.filled_keywords = call.keyword_arguments + + wrapped_function = call.positional_arguments[0] + inferred_wrapped_function = next(wrapped_function.infer()) + if isinstance(inferred_wrapped_function, PartialFunction): + self.filled_args = inferred_wrapped_function.filled_args + self.filled_args + self.filled_keywords = { + **inferred_wrapped_function.filled_keywords, + **self.filled_keywords, + } + + self.filled_positionals = len(self.filled_args) + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> Iterator[InferenceResult]: + if context: + assert ( + context.callcontext + ), "CallContext should be set before inferring call result" + current_passed_keywords = { + keyword for (keyword, _) in context.callcontext.keywords + } + for keyword, value in self.filled_keywords.items(): + if keyword not in current_passed_keywords: + context.callcontext.keywords.append((keyword, value)) + + call_context_args = context.callcontext.args or [] + context.callcontext.args = self.filled_args + call_context_args + + return super().infer_call_result(caller=caller, context=context) + + def qname(self) -> str: + return self.__class__.__name__ + + +# TODO: Hack to solve the circular import problem between node_classes and objects +# This is not needed in 2.0, which has a cleaner design overall +node_classes.Dict.__bases__ = (node_classes.NodeNG, DictInstance) + + +class Property(scoped_nodes.FunctionDef): + """Class representing a Python property.""" + + def __init__(self, function, name=None, lineno=None, col_offset=None, parent=None): + self.function = function + super().__init__( + name, + lineno=lineno, + col_offset=col_offset, + parent=parent, + end_col_offset=function.end_col_offset, + end_lineno=function.end_lineno, + ) + + special_attributes = objectmodel.PropertyModel() + type = "property" + + def pytype(self) -> Literal["builtins.property"]: + return "builtins.property" + + def infer_call_result( + self, + caller: SuccessfulInferenceResult | None, + context: InferenceContext | None = None, + ) -> NoReturn: + raise InferenceError("Properties are not callable") + + def _infer( + self: _T, context: InferenceContext | None = None, **kwargs: Any + ) -> Generator[_T]: + yield self diff --git a/.venv/lib/python3.12/site-packages/astroid/protocols.py b/.venv/lib/python3.12/site-packages/astroid/protocols.py new file mode 100644 index 0000000..50e5cfa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/protocols.py @@ -0,0 +1,958 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""This module contains a set of functions to handle python protocols for nodes +where it makes sense. +""" + +from __future__ import annotations + +import collections +import itertools +import operator as operator_mod +from collections.abc import Callable, Generator, Iterator, Sequence +from typing import TYPE_CHECKING, Any, TypeVar + +from astroid import bases, decorators, nodes, util +from astroid.builder import extract_node +from astroid.const import Context +from astroid.context import InferenceContext, copy_context +from astroid.exceptions import ( + AstroidIndexError, + AstroidTypeError, + AttributeInferenceError, + InferenceError, + NoDefault, +) +from astroid.nodes import node_classes +from astroid.typing import ( + ConstFactoryResult, + InferenceResult, + SuccessfulInferenceResult, +) + +if TYPE_CHECKING: + _TupleListNodeT = TypeVar("_TupleListNodeT", nodes.Tuple, nodes.List) + +_CONTEXTLIB_MGR = "contextlib.contextmanager" + +_UNARY_OPERATORS: dict[str, Callable[[Any], Any]] = { + "+": operator_mod.pos, + "-": operator_mod.neg, + "~": operator_mod.invert, + "not": operator_mod.not_, +} + + +def _infer_unary_op(obj: Any, op: str) -> ConstFactoryResult: + """Perform unary operation on `obj`, unless it is `NotImplemented`. + + Can raise TypeError if operation is unsupported. + """ + if obj is NotImplemented: + value = obj + else: + func = _UNARY_OPERATORS[op] + value = func(obj) + return nodes.const_factory(value) + + +def tuple_infer_unary_op(self, op): + return _infer_unary_op(tuple(self.elts), op) + + +def list_infer_unary_op(self, op): + return _infer_unary_op(self.elts, op) + + +def set_infer_unary_op(self, op): + return _infer_unary_op(set(self.elts), op) + + +def const_infer_unary_op(self, op): + return _infer_unary_op(self.value, op) + + +def dict_infer_unary_op(self, op): + return _infer_unary_op(dict(self.items), op) + + +# Binary operations + +BIN_OP_IMPL = { + "+": lambda a, b: a + b, + "-": lambda a, b: a - b, + "/": lambda a, b: a / b, + "//": lambda a, b: a // b, + "*": lambda a, b: a * b, + "**": lambda a, b: a**b, + "%": lambda a, b: a % b, + "&": lambda a, b: a & b, + "|": lambda a, b: a | b, + "^": lambda a, b: a ^ b, + "<<": lambda a, b: a << b, + ">>": lambda a, b: a >> b, + "@": operator_mod.matmul, +} +for _KEY, _IMPL in list(BIN_OP_IMPL.items()): + BIN_OP_IMPL[_KEY + "="] = _IMPL + + +@decorators.yes_if_nothing_inferred +def const_infer_binary_op( + self: nodes.Const, + opnode: nodes.AugAssign | nodes.BinOp, + operator: str, + other: InferenceResult, + context: InferenceContext, + _: SuccessfulInferenceResult, +) -> Generator[ConstFactoryResult | util.UninferableBase]: + not_implemented = nodes.Const(NotImplemented) + if isinstance(other, nodes.Const): + if ( + operator == "**" + and isinstance(self.value, (int, float)) + and isinstance(other.value, (int, float)) + and (self.value > 1e5 or other.value > 1e5) + ): + yield not_implemented + return + try: + impl = BIN_OP_IMPL[operator] + try: + yield nodes.const_factory(impl(self.value, other.value)) + except TypeError: + # ArithmeticError is not enough: float >> float is a TypeError + yield not_implemented + except Exception: # pylint: disable=broad-except + yield util.Uninferable + except TypeError: + yield not_implemented + elif isinstance(self.value, str) and operator == "%": + # TODO(cpopa): implement string interpolation later on. + yield util.Uninferable + else: + yield not_implemented + + +def _multiply_seq_by_int( + self: _TupleListNodeT, + opnode: nodes.AugAssign | nodes.BinOp, + value: int, + context: InferenceContext, +) -> _TupleListNodeT: + node = self.__class__(parent=opnode) + if not (value > 0 and self.elts): + node.elts = [] + return node + if len(self.elts) * value > 1e8: + node.elts = [util.Uninferable] + return node + filtered_elts = ( + util.safe_infer(elt, context) or util.Uninferable + for elt in self.elts + if not isinstance(elt, util.UninferableBase) + ) + node.elts = list(filtered_elts) * value + return node + + +def _filter_uninferable_nodes( + elts: Sequence[InferenceResult], context: InferenceContext +) -> Iterator[SuccessfulInferenceResult]: + for elt in elts: + if isinstance(elt, util.UninferableBase): + yield node_classes.UNATTACHED_UNKNOWN + else: + for inferred in elt.infer(context): + if not isinstance(inferred, util.UninferableBase): + yield inferred + else: + yield node_classes.UNATTACHED_UNKNOWN + + +@decorators.yes_if_nothing_inferred +def tl_infer_binary_op( + self: _TupleListNodeT, + opnode: nodes.AugAssign | nodes.BinOp, + operator: str, + other: InferenceResult, + context: InferenceContext, + method: SuccessfulInferenceResult, +) -> Generator[_TupleListNodeT | nodes.Const | util.UninferableBase]: + """Infer a binary operation on a tuple or list. + + The instance on which the binary operation is performed is a tuple + or list. This refers to the left-hand side of the operation, so: + 'tuple() + 1' or '[] + A()' + """ + from astroid import helpers # pylint: disable=import-outside-toplevel + + # For tuples and list the boundnode is no longer the tuple or list instance + context.boundnode = None + not_implemented = nodes.Const(NotImplemented) + if isinstance(other, self.__class__) and operator == "+": + node = self.__class__(parent=opnode) + node.elts = list( + itertools.chain( + _filter_uninferable_nodes(self.elts, context), + _filter_uninferable_nodes(other.elts, context), + ) + ) + yield node + elif isinstance(other, nodes.Const) and operator == "*": + if not isinstance(other.value, int): + yield not_implemented + return + yield _multiply_seq_by_int(self, opnode, other.value, context) + elif isinstance(other, bases.Instance) and operator == "*": + # Verify if the instance supports __index__. + as_index = helpers.class_instance_as_index(other) + if not as_index: + yield util.Uninferable + elif not isinstance(as_index.value, int): # pragma: no cover + # already checked by class_instance_as_index() but faster than casting + raise AssertionError("Please open a bug report.") + else: + yield _multiply_seq_by_int(self, opnode, as_index.value, context) + else: + yield not_implemented + + +@decorators.yes_if_nothing_inferred +def instance_class_infer_binary_op( + self: nodes.ClassDef, + opnode: nodes.AugAssign | nodes.BinOp, + operator: str, + other: InferenceResult, + context: InferenceContext, + method: SuccessfulInferenceResult, +) -> Generator[InferenceResult]: + return method.infer_call_result(self, context) + + +# assignment ################################################################## +# pylint: disable-next=pointless-string-statement +"""The assigned_stmts method is responsible to return the assigned statement +(e.g. not inferred) according to the assignment type. + +The `assign_path` argument is used to record the lhs path of the original node. +For instance if we want assigned statements for 'c' in 'a, (b,c)', assign_path +will be [1, 1] once arrived to the Assign node. + +The `context` argument is the current inference context which should be given +to any intermediary inference necessary. +""" + + +def _resolve_looppart(parts, assign_path, context): + """Recursive function to resolve multiple assignments on loops.""" + assign_path = assign_path[:] + index = assign_path.pop(0) + for part in parts: + if isinstance(part, util.UninferableBase): + continue + if not hasattr(part, "itered"): + continue + try: + itered = part.itered() + except TypeError: + continue + try: + if isinstance(itered[index], (nodes.Const, nodes.Name)): + itered = [part] + except IndexError: + pass + for stmt in itered: + index_node = nodes.Const(index) + try: + assigned = stmt.getitem(index_node, context) + except (AttributeError, AstroidTypeError, AstroidIndexError): + continue + if not assign_path: + # we achieved to resolved the assignment path, + # don't infer the last part + yield assigned + elif isinstance(assigned, util.UninferableBase): + break + else: + # we are not yet on the last part of the path + # search on each possibly inferred value + try: + yield from _resolve_looppart( + assigned.infer(context), assign_path, context + ) + except InferenceError: + break + + +@decorators.raise_if_nothing_inferred +def for_assigned_stmts( + self: nodes.For | nodes.Comprehension, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + if isinstance(self, nodes.AsyncFor) or getattr(self, "is_async", False): + # Skip inferring of async code for now + return { + "node": self, + "unknown": node, + "assign_path": assign_path, + "context": context, + } + if assign_path is None: + for lst in self.iter.infer(context): + if isinstance(lst, (nodes.Tuple, nodes.List)): + yield from lst.elts + else: + yield from _resolve_looppart(self.iter.infer(context), assign_path, context) + return { + "node": self, + "unknown": node, + "assign_path": assign_path, + "context": context, + } + + +def sequence_assigned_stmts( + self: nodes.Tuple | nodes.List, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + if assign_path is None: + assign_path = [] + try: + index = self.elts.index(node) # type: ignore[arg-type] + except ValueError as exc: + raise InferenceError( + "Tried to retrieve a node {node!r} which does not exist", + node=self, + assign_path=assign_path, + context=context, + ) from exc + + assign_path.insert(0, index) + return self.parent.assigned_stmts( + node=self, context=context, assign_path=assign_path + ) + + +def assend_assigned_stmts( + self: nodes.AssignName | nodes.AssignAttr, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + return self.parent.assigned_stmts(node=self, context=context) + + +def _arguments_infer_argname( + self, name: str | None, context: InferenceContext +) -> Generator[InferenceResult]: + # arguments information may be missing, in which case we can't do anything + # more + from astroid import arguments # pylint: disable=import-outside-toplevel + + if not self.arguments: + yield util.Uninferable + return + + args = [arg for arg in self.arguments if arg.name not in [self.vararg, self.kwarg]] + functype = self.parent.type + # first argument of instance/class method + if ( + args + and getattr(self.arguments[0], "name", None) == name + and functype != "staticmethod" + ): + cls = self.parent.parent.scope() + is_metaclass = isinstance(cls, nodes.ClassDef) and cls.type == "metaclass" + # If this is a metaclass, then the first argument will always + # be the class, not an instance. + if context.boundnode and isinstance(context.boundnode, bases.Instance): + cls = context.boundnode._proxied + if is_metaclass or functype == "classmethod": + yield cls + return + if functype == "method": + yield cls.instantiate_class() + return + + if context and context.callcontext: + callee = context.callcontext.callee + while hasattr(callee, "_proxied"): + callee = callee._proxied + if getattr(callee, "name", None) == self.parent.name: + call_site = arguments.CallSite(context.callcontext, context.extra_context) + yield from call_site.infer_argument(self.parent, name, context) + return + + if name == self.vararg: + vararg = nodes.const_factory(()) + vararg.parent = self + if not args and self.parent.name == "__init__": + cls = self.parent.parent.scope() + vararg.elts = [cls.instantiate_class()] + yield vararg + return + if name == self.kwarg: + kwarg = nodes.const_factory({}) + kwarg.parent = self + yield kwarg + return + # if there is a default value, yield it. And then yield Uninferable to reflect + # we can't guess given argument value + try: + context = copy_context(context) + yield from self.default_value(name).infer(context) + yield util.Uninferable + except NoDefault: + yield util.Uninferable + + +def arguments_assigned_stmts( + self: nodes.Arguments, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + from astroid import arguments # pylint: disable=import-outside-toplevel + + try: + node_name = node.name # type: ignore[union-attr] + except AttributeError: + # Added to handle edge cases where node.name is not defined. + # https://github.com/pylint-dev/astroid/pull/1644#discussion_r901545816 + node_name = None # pragma: no cover + + if context and context.callcontext: + callee = context.callcontext.callee + while hasattr(callee, "_proxied"): + callee = callee._proxied + else: + return _arguments_infer_argname(self, node_name, context) + if node and getattr(callee, "name", None) == node.frame().name: + # reset call context/name + callcontext = context.callcontext + context = copy_context(context) + context.callcontext = None + args = arguments.CallSite(callcontext, context=context) + return args.infer_argument(self.parent, node_name, context) + return _arguments_infer_argname(self, node_name, context) + + +@decorators.raise_if_nothing_inferred +def assign_assigned_stmts( + self: nodes.AugAssign | nodes.Assign | nodes.AnnAssign | nodes.TypeAlias, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + if not assign_path: + yield self.value + return None + yield from _resolve_assignment_parts( + self.value.infer(context), assign_path, context + ) + + return { + "node": self, + "unknown": node, + "assign_path": assign_path, + "context": context, + } + + +def assign_annassigned_stmts( + self: nodes.AnnAssign, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + for inferred in assign_assigned_stmts(self, node, context, assign_path): + if inferred is None: + yield util.Uninferable + else: + yield inferred + + +def _resolve_assignment_parts(parts, assign_path, context): + """Recursive function to resolve multiple assignments.""" + assign_path = assign_path[:] + index = assign_path.pop(0) + for part in parts: + assigned = None + if isinstance(part, nodes.Dict): + # A dictionary in an iterating context + try: + assigned, _ = part.items[index] + except IndexError: + return + + elif hasattr(part, "getitem"): + index_node = nodes.Const(index) + try: + assigned = part.getitem(index_node, context) + except (AstroidTypeError, AstroidIndexError): + return + + if not assigned: + return + + if not assign_path: + # we achieved to resolved the assignment path, don't infer the + # last part + yield assigned + elif isinstance(assigned, util.UninferableBase): + return + else: + # we are not yet on the last part of the path search on each + # possibly inferred value + try: + yield from _resolve_assignment_parts( + assigned.infer(context), assign_path, context + ) + except InferenceError: + return + + +@decorators.raise_if_nothing_inferred +def excepthandler_assigned_stmts( + self: nodes.ExceptHandler, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + from astroid import objects # pylint: disable=import-outside-toplevel + + def _generate_assigned(): + for assigned in node_classes.unpack_infer(self.type): + if isinstance(assigned, nodes.ClassDef): + assigned = objects.ExceptionInstance(assigned) + + yield assigned + + if isinstance(self.parent, node_classes.TryStar): + # except * handler has assigned ExceptionGroup with caught + # exceptions under exceptions attribute + # pylint: disable-next=stop-iteration-return + eg = next( + node_classes.unpack_infer( + extract_node( + """ +from builtins import ExceptionGroup +ExceptionGroup +""" + ) + ) + ) + assigned = objects.ExceptionInstance(eg) + assigned.instance_attrs["exceptions"] = [ + nodes.List.from_elements(_generate_assigned()) + ] + yield assigned + else: + yield from _generate_assigned() + return { + "node": self, + "unknown": node, + "assign_path": assign_path, + "context": context, + } + + +def _infer_context_manager(self, mgr, context): + try: + inferred = next(mgr.infer(context=context)) + except StopIteration as e: + raise InferenceError(node=mgr) from e + if isinstance(inferred, bases.Generator): + # Check if it is decorated with contextlib.contextmanager. + func = inferred.parent + if not func.decorators: + raise InferenceError( + "No decorators found on inferred generator %s", node=func + ) + + for decorator_node in func.decorators.nodes: + decorator = next(decorator_node.infer(context=context), None) + if isinstance(decorator, nodes.FunctionDef): + if decorator.qname() == _CONTEXTLIB_MGR: + break + else: + # It doesn't interest us. + raise InferenceError(node=func) + try: + yield next(inferred.infer_yield_types()) + except StopIteration as e: + raise InferenceError(node=func) from e + + elif isinstance(inferred, bases.Instance): + try: + enter = next(inferred.igetattr("__enter__", context=context)) + except (InferenceError, AttributeInferenceError, StopIteration) as exc: + raise InferenceError(node=inferred) from exc + if not isinstance(enter, bases.BoundMethod): + raise InferenceError(node=enter) + yield from enter.infer_call_result(self, context) + else: + raise InferenceError(node=mgr) + + +@decorators.raise_if_nothing_inferred +def with_assigned_stmts( + self: nodes.With, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + """Infer names and other nodes from a *with* statement. + + This enables only inference for name binding in a *with* statement. + For instance, in the following code, inferring `func` will return + the `ContextManager` class, not whatever ``__enter__`` returns. + We are doing this intentionally, because we consider that the context + manager result is whatever __enter__ returns and what it is binded + using the ``as`` keyword. + + class ContextManager(object): + def __enter__(self): + return 42 + with ContextManager() as f: + pass + + # ContextManager().infer() will return ContextManager + # f.infer() will return 42. + + Arguments: + self: nodes.With + node: The target of the assignment, `as (a, b)` in `with foo as (a, b)`. + context: Inference context used for caching already inferred objects + assign_path: + A list of indices, where each index specifies what item to fetch from + the inference results. + """ + try: + mgr = next(mgr for (mgr, vars) in self.items if vars == node) + except StopIteration: + return None + if assign_path is None: + yield from _infer_context_manager(self, mgr, context) + else: + for result in _infer_context_manager(self, mgr, context): + # Walk the assign_path and get the item at the final index. + obj = result + for index in assign_path: + if not hasattr(obj, "elts"): + raise InferenceError( + "Wrong type ({targets!r}) for {node!r} assignment", + node=self, + targets=node, + assign_path=assign_path, + context=context, + ) + try: + obj = obj.elts[index] + except IndexError as exc: + raise InferenceError( + "Tried to infer a nonexistent target with index {index} " + "in {node!r}.", + node=self, + targets=node, + assign_path=assign_path, + context=context, + ) from exc + except TypeError as exc: + raise InferenceError( + "Tried to unpack a non-iterable value in {node!r}.", + node=self, + targets=node, + assign_path=assign_path, + context=context, + ) from exc + yield obj + return { + "node": self, + "unknown": node, + "assign_path": assign_path, + "context": context, + } + + +@decorators.raise_if_nothing_inferred +def named_expr_assigned_stmts( + self: nodes.NamedExpr, + node: node_classes.AssignedStmtsPossibleNode, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + """Infer names and other nodes from an assignment expression.""" + if self.target == node: + yield from self.value.infer(context=context) + else: + raise InferenceError( + "Cannot infer NamedExpr node {node!r}", + node=self, + assign_path=assign_path, + context=context, + ) + + +@decorators.yes_if_nothing_inferred +def starred_assigned_stmts( # noqa: C901 + self: nodes.Starred, + node: node_classes.AssignedStmtsPossibleNode = None, + context: InferenceContext | None = None, + assign_path: list[int] | None = None, +) -> Any: + """ + Arguments: + self: nodes.Starred + node: a node related to the current underlying Node. + context: Inference context used for caching already inferred objects + assign_path: + A list of indices, where each index specifies what item to fetch from + the inference results. + """ + + # pylint: disable = too-many-locals, too-many-statements, too-many-branches + + def _determine_starred_iteration_lookups( + starred: nodes.Starred, target: nodes.Tuple, lookups: list[tuple[int, int]] + ) -> None: + # Determine the lookups for the rhs of the iteration + itered = target.itered() + for index, element in enumerate(itered): + if ( + isinstance(element, nodes.Starred) + and element.value.name == starred.value.name + ): + lookups.append((index, len(itered))) + break + if isinstance(element, nodes.Tuple): + lookups.append((index, len(element.itered()))) + _determine_starred_iteration_lookups(starred, element, lookups) + + stmt = self.statement() + if not isinstance(stmt, (nodes.Assign, nodes.For)): + raise InferenceError( + "Statement {stmt!r} enclosing {node!r} must be an Assign or For node.", + node=self, + stmt=stmt, + unknown=node, + context=context, + ) + + if context is None: + context = InferenceContext() + + if isinstance(stmt, nodes.Assign): + value = stmt.value + lhs = stmt.targets[0] + if not isinstance(lhs, nodes.BaseContainer): + yield util.Uninferable + return + + if sum(1 for _ in lhs.nodes_of_class(nodes.Starred)) > 1: + raise InferenceError( + "Too many starred arguments in the assignment targets {lhs!r}.", + node=self, + targets=lhs, + unknown=node, + context=context, + ) + + try: + rhs = next(value.infer(context)) + except (InferenceError, StopIteration): + yield util.Uninferable + return + if isinstance(rhs, util.UninferableBase) or not hasattr(rhs, "itered"): + yield util.Uninferable + return + + try: + elts = collections.deque(rhs.itered()) # type: ignore[union-attr] + except TypeError: + yield util.Uninferable + return + + # Unpack iteratively the values from the rhs of the assignment, + # until the find the starred node. What will remain will + # be the list of values which the Starred node will represent + # This is done in two steps, from left to right to remove + # anything before the starred node and from right to left + # to remove anything after the starred node. + + for index, left_node in enumerate(lhs.elts): + if not isinstance(left_node, nodes.Starred): + if not elts: + break + elts.popleft() + continue + lhs_elts = collections.deque(reversed(lhs.elts[index:])) + for right_node in lhs_elts: + if not isinstance(right_node, nodes.Starred): + if not elts: + break + elts.pop() + continue + + # We're done unpacking. + packed = nodes.List( + ctx=Context.Store, + parent=self, + lineno=lhs.lineno, + col_offset=lhs.col_offset, + ) + packed.postinit(elts=list(elts)) + yield packed + break + + if isinstance(stmt, nodes.For): + try: + inferred_iterable = next(stmt.iter.infer(context=context)) + except (InferenceError, StopIteration): + yield util.Uninferable + return + if isinstance(inferred_iterable, util.UninferableBase) or not hasattr( + inferred_iterable, "itered" + ): + yield util.Uninferable + return + try: + itered = inferred_iterable.itered() # type: ignore[union-attr] + except TypeError: + yield util.Uninferable + return + + target = stmt.target + + if not isinstance(target, nodes.Tuple): + raise InferenceError( + f"Could not make sense of this, the target must be a tuple, not {type(target)!r}", + context=context, + ) + + lookups: list[tuple[int, int]] = [] + _determine_starred_iteration_lookups(self, target, lookups) + if not lookups: + raise InferenceError( + "Could not make sense of this, needs at least a lookup", context=context + ) + + # Make the last lookup a slice, since that what we want for a Starred node + last_element_index, last_element_length = lookups[-1] + is_starred_last = last_element_index == (last_element_length - 1) + + lookup_slice = slice( + last_element_index, + None if is_starred_last else (last_element_length - last_element_index), + ) + last_lookup = lookup_slice + + for element in itered: + # We probably want to infer the potential values *for each* element in an + # iterable, but we can't infer a list of all values, when only a list of + # step values are expected: + # + # for a, *b in [...]: + # b + # + # *b* should now point to just the elements at that particular iteration step, + # which astroid can't know about. + + found_element = None + for index, lookup in enumerate(lookups): + if not hasattr(element, "itered"): + break + if index + 1 is len(lookups): + cur_lookup: slice | int = last_lookup + else: + # Grab just the index, not the whole length + cur_lookup = lookup[0] + try: + itered_inner_element = element.itered() + element = itered_inner_element[cur_lookup] + except IndexError: + break + except TypeError: + # Most likely the itered() call failed, cannot make sense of this + yield util.Uninferable + return + else: + found_element = element + + unpacked = nodes.List( + ctx=Context.Store, + parent=self, + lineno=self.lineno, + col_offset=self.col_offset, + ) + unpacked.postinit(elts=found_element or []) + yield unpacked + return + + yield util.Uninferable + + +@decorators.yes_if_nothing_inferred +def match_mapping_assigned_stmts( + self: nodes.MatchMapping, + node: nodes.AssignName, + context: InferenceContext | None = None, + assign_path: None = None, +) -> Generator[nodes.NodeNG]: + """Return empty generator (return -> raises StopIteration) so inferred value + is Uninferable. + """ + return + yield + + +@decorators.yes_if_nothing_inferred +def match_star_assigned_stmts( + self: nodes.MatchStar, + node: nodes.AssignName, + context: InferenceContext | None = None, + assign_path: None = None, +) -> Generator[nodes.NodeNG]: + """Return empty generator (return -> raises StopIteration) so inferred value + is Uninferable. + """ + return + yield + + +@decorators.yes_if_nothing_inferred +def match_as_assigned_stmts( + self: nodes.MatchAs, + node: nodes.AssignName, + context: InferenceContext | None = None, + assign_path: None = None, +) -> Generator[nodes.NodeNG]: + """Infer MatchAs as the Match subject if it's the only MatchCase pattern + else raise StopIteration to yield Uninferable. + """ + if ( + isinstance(self.parent, nodes.MatchCase) + and isinstance(self.parent.parent, nodes.Match) + and self.pattern is None + ): + yield self.parent.parent.subject + + +@decorators.yes_if_nothing_inferred +def generic_type_assigned_stmts( + self: nodes.TypeVar | nodes.TypeVarTuple | nodes.ParamSpec, + node: nodes.AssignName, + context: InferenceContext | None = None, + assign_path: None = None, +) -> Generator[nodes.NodeNG]: + """Hack. Return any Node so inference doesn't fail + when evaluating __class_getitem__. Revert if it's causing issues. + """ + yield nodes.Const(None) diff --git a/.venv/lib/python3.12/site-packages/astroid/raw_building.py b/.venv/lib/python3.12/site-packages/astroid/raw_building.py new file mode 100644 index 0000000..d1bbbd5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/raw_building.py @@ -0,0 +1,735 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""this module contains a set of functions to create astroid trees from scratch +(build_* functions) or from living object (object_build_* functions) +""" + +from __future__ import annotations + +import builtins +import inspect +import io +import logging +import os +import sys +import types +import warnings +from collections.abc import Iterable +from contextlib import redirect_stderr, redirect_stdout +from typing import TYPE_CHECKING, Any + +from astroid import bases, nodes +from astroid.const import _EMPTY_OBJECT_MARKER, IS_PYPY +from astroid.nodes import node_classes + +if TYPE_CHECKING: + from astroid.manager import AstroidManager + +logger = logging.getLogger(__name__) + + +_FunctionTypes = ( + types.FunctionType + | types.MethodType + | types.BuiltinFunctionType + | types.WrapperDescriptorType + | types.MethodDescriptorType + | types.ClassMethodDescriptorType +) + +TYPE_NONE = type(None) +TYPE_NOTIMPLEMENTED = type(NotImplemented) +TYPE_ELLIPSIS = type(...) + + +def _attach_local_node(parent, node, name: str) -> None: + node.name = name # needed by add_local_node + parent.add_local_node(node) + + +def _add_dunder_class(func, parent: nodes.NodeNG, member) -> None: + """Add a __class__ member to the given func node, if we can determine it.""" + python_cls = member.__class__ + cls_name = getattr(python_cls, "__name__", None) + if not cls_name: + return + cls_bases = [ancestor.__name__ for ancestor in python_cls.__bases__] + doc = python_cls.__doc__ if isinstance(python_cls.__doc__, str) else None + ast_klass = build_class(cls_name, parent, cls_bases, doc) + func.instance_attrs["__class__"] = [ast_klass] + + +def build_dummy(runtime_object) -> nodes.EmptyNode: + enode = nodes.EmptyNode() + enode.object = runtime_object + return enode + + +def attach_dummy_node(node, name: str, runtime_object=_EMPTY_OBJECT_MARKER) -> None: + """create a dummy node and register it in the locals of the given + node with the specified name + """ + _attach_local_node(node, build_dummy(runtime_object), name) + + +def attach_const_node(node, name: str, value) -> None: + """create a Const node and register it in the locals of the given + node with the specified name + """ + if name not in node.special_attributes: + _attach_local_node(node, nodes.const_factory(value), name) + + +def attach_import_node(node, modname: str, membername: str) -> None: + """create a ImportFrom node and register it in the locals of the given + node with the specified name + """ + from_node = nodes.ImportFrom(modname, [(membername, None)]) + _attach_local_node(node, from_node, membername) + + +def build_module(name: str, doc: str | None = None) -> nodes.Module: + """create and initialize an astroid Module node""" + node = nodes.Module(name, pure_python=False, package=False) + node.postinit( + body=[], + doc_node=nodes.Const(value=doc) if doc else None, + ) + return node + + +def build_class( + name: str, + parent: nodes.NodeNG, + basenames: Iterable[str] = (), + doc: str | None = None, +) -> nodes.ClassDef: + """Create and initialize an astroid ClassDef node.""" + node = nodes.ClassDef( + name, + lineno=0, + col_offset=0, + end_lineno=0, + end_col_offset=0, + parent=parent, + ) + node.postinit( + bases=[ + nodes.Name( + name=base, + lineno=0, + col_offset=0, + parent=node, + end_lineno=None, + end_col_offset=None, + ) + for base in basenames + ], + body=[], + decorators=None, + doc_node=nodes.Const(value=doc) if doc else None, + ) + return node + + +def build_function( + name: str, + parent: nodes.NodeNG, + args: list[str] | None = None, + posonlyargs: list[str] | None = None, + defaults: list[Any] | None = None, + doc: str | None = None, + kwonlyargs: list[str] | None = None, + kwonlydefaults: list[Any] | None = None, +) -> nodes.FunctionDef: + """create and initialize an astroid FunctionDef node""" + # first argument is now a list of decorators + func = nodes.FunctionDef( + name, + lineno=0, + col_offset=0, + parent=parent, + end_col_offset=0, + end_lineno=0, + ) + argsnode = nodes.Arguments(parent=func, vararg=None, kwarg=None) + + # If args is None we don't have any information about the signature + # (in contrast to when there are no arguments and args == []). We pass + # this to the builder to indicate this. + if args is not None: + # We set the lineno and col_offset to 0 because we don't have any + # information about the location of the function definition. + arguments = [ + nodes.AssignName( + name=arg, + parent=argsnode, + lineno=0, + col_offset=0, + end_lineno=None, + end_col_offset=None, + ) + for arg in args + ] + else: + arguments = None + + default_nodes: list[nodes.NodeNG] | None + if defaults is None: + default_nodes = None + else: + default_nodes = [] + for default in defaults: + default_node = nodes.const_factory(default) + default_node.parent = argsnode + default_nodes.append(default_node) + + kwonlydefault_nodes: list[nodes.NodeNG | None] | None + if kwonlydefaults is None: + kwonlydefault_nodes = None + else: + kwonlydefault_nodes = [] + for kwonlydefault in kwonlydefaults: + kwonlydefault_node = nodes.const_factory(kwonlydefault) + kwonlydefault_node.parent = argsnode + kwonlydefault_nodes.append(kwonlydefault_node) + + # We set the lineno and col_offset to 0 because we don't have any + # information about the location of the kwonly and posonlyargs. + argsnode.postinit( + args=arguments, + defaults=default_nodes, + kwonlyargs=[ + nodes.AssignName( + name=arg, + parent=argsnode, + lineno=0, + col_offset=0, + end_lineno=None, + end_col_offset=None, + ) + for arg in kwonlyargs or () + ], + kw_defaults=kwonlydefault_nodes, + annotations=[], + posonlyargs=[ + nodes.AssignName( + name=arg, + parent=argsnode, + lineno=0, + col_offset=0, + end_lineno=None, + end_col_offset=None, + ) + for arg in posonlyargs or () + ], + kwonlyargs_annotations=[], + posonlyargs_annotations=[], + ) + func.postinit( + args=argsnode, + body=[], + doc_node=nodes.Const(value=doc) if doc else None, + ) + if args: + register_arguments(func) + return func + + +def build_from_import(fromname: str, names: list[str]) -> nodes.ImportFrom: + """create and initialize an astroid ImportFrom import statement""" + return nodes.ImportFrom(fromname, [(name, None) for name in names]) + + +def register_arguments(func: nodes.FunctionDef, args: list | None = None) -> None: + """add given arguments to local + + args is a list that may contains nested lists + (i.e. def func(a, (b, c, d)): ...) + """ + # If no args are passed in, get the args from the function. + if args is None: + if func.args.vararg: + func.set_local(func.args.vararg, func.args) + if func.args.kwarg: + func.set_local(func.args.kwarg, func.args) + args = func.args.args + # If the function has no args, there is nothing left to do. + if args is None: + return + for arg in args: + if isinstance(arg, nodes.AssignName): + func.set_local(arg.name, arg) + else: + register_arguments(func, arg.elts) + + +def object_build_class( + node: nodes.Module | nodes.ClassDef, member: type +) -> nodes.ClassDef: + """create astroid for a living class object""" + basenames = [base.__name__ for base in member.__bases__] + return _base_class_object_build(node, member, basenames) + + +def _get_args_info_from_callable( + member: _FunctionTypes, +) -> tuple[list[str], list[str], list[Any], list[str], list[Any]]: + """Returns args, posonlyargs, defaults, kwonlyargs. + + :note: currently ignores the return annotation. + """ + signature = inspect.signature(member) + args: list[str] = [] + defaults: list[Any] = [] + posonlyargs: list[str] = [] + kwonlyargs: list[str] = [] + kwonlydefaults: list[Any] = [] + + for param_name, param in signature.parameters.items(): + if param.kind == inspect.Parameter.POSITIONAL_ONLY: + posonlyargs.append(param_name) + elif param.kind == inspect.Parameter.POSITIONAL_OR_KEYWORD: + args.append(param_name) + elif param.kind == inspect.Parameter.VAR_POSITIONAL: + args.append(param_name) + elif param.kind == inspect.Parameter.VAR_KEYWORD: + args.append(param_name) + elif param.kind == inspect.Parameter.KEYWORD_ONLY: + kwonlyargs.append(param_name) + if param.default is not inspect.Parameter.empty: + kwonlydefaults.append(param.default) + continue + if param.default is not inspect.Parameter.empty: + defaults.append(param.default) + + return args, posonlyargs, defaults, kwonlyargs, kwonlydefaults + + +def object_build_function( + node: nodes.Module | nodes.ClassDef, member: _FunctionTypes +) -> nodes.FunctionDef: + """create astroid for a living function object""" + ( + args, + posonlyargs, + defaults, + kwonlyargs, + kwonly_defaults, + ) = _get_args_info_from_callable(member) + + return build_function( + getattr(member, "__name__", ""), + node, + args, + posonlyargs, + defaults, + member.__doc__ if isinstance(member.__doc__, str) else None, + kwonlyargs=kwonlyargs, + kwonlydefaults=kwonly_defaults, + ) + + +def object_build_datadescriptor( + node: nodes.Module | nodes.ClassDef, member: type +) -> nodes.ClassDef: + """create astroid for a living data descriptor object""" + return _base_class_object_build(node, member, []) + + +def object_build_methoddescriptor( + node: nodes.Module | nodes.ClassDef, + member: _FunctionTypes, +) -> nodes.FunctionDef: + """create astroid for a living method descriptor object""" + # FIXME get arguments ? + name = getattr(member, "__name__", "") + func = build_function(name, node, doc=member.__doc__) + _add_dunder_class(func, node, member) + return func + + +def _base_class_object_build( + node: nodes.Module | nodes.ClassDef, + member: type, + basenames: list[str], +) -> nodes.ClassDef: + """create astroid for a living class object, with a given set of base names + (e.g. ancestors) + """ + name = getattr(member, "__name__", "") + doc = member.__doc__ if isinstance(member.__doc__, str) else None + klass = build_class(name, node, basenames, doc) + klass._newstyle = isinstance(member, type) + try: + # limit the instantiation trick since it's too dangerous + # (such as infinite test execution...) + # this at least resolves common case such as Exception.args, + # OSError.errno + if issubclass(member, Exception): + member_object = member() + if hasattr(member_object, "__dict__"): + instdict = member_object.__dict__ + else: + raise TypeError + else: + raise TypeError + except TypeError: + pass + else: + for item_name, obj in instdict.items(): + valnode = nodes.EmptyNode() + valnode.object = obj + valnode.parent = klass + valnode.lineno = 1 + klass.instance_attrs[item_name] = [valnode] + return klass + + +def _build_from_function( + node: nodes.Module | nodes.ClassDef, + member: _FunctionTypes, + module: types.ModuleType, +) -> nodes.FunctionDef | nodes.EmptyNode: + # verify this is not an imported function + try: + code = member.__code__ # type: ignore[union-attr] + except AttributeError: + # Some implementations don't provide the code object, + # such as Jython. + code = None + filename = getattr(code, "co_filename", None) + if filename is None: + return object_build_methoddescriptor(node, member) + if filename == getattr(module, "__file__", None): + return object_build_function(node, member) + return build_dummy(member) + + +def _safe_has_attribute(obj, member: str) -> bool: + """Required because unexpected RunTimeError can be raised. + + See https://github.com/pylint-dev/astroid/issues/1958 + """ + try: + return hasattr(obj, member) + except Exception: # pylint: disable=broad-except + return False + + +class InspectBuilder: + """class for building nodes from living object + + this is actually a really minimal representation, including only Module, + FunctionDef and ClassDef nodes and some others as guessed. + """ + + bootstrapped: bool = False + + def __init__(self, manager_instance: AstroidManager) -> None: + self._manager = manager_instance + self._done: dict[types.ModuleType | type, nodes.Module | nodes.ClassDef] = {} + self._module: types.ModuleType + + def inspect_build( + self, + module: types.ModuleType, + modname: str | None = None, + path: str | None = None, + ) -> nodes.Module: + """build astroid from a living module (i.e. using inspect) + this is used when there is no python source code available (either + because it's a built-in module or because the .py is not available) + """ + self._module = module + if modname is None: + modname = module.__name__ + try: + node = build_module(modname, module.__doc__) + except AttributeError: + # in jython, java modules have no __doc__ (see #109562) + node = build_module(modname) + if path is None: + node.path = node.file = path + else: + node.path = [os.path.abspath(path)] + node.file = node.path[0] + node.name = modname + self._manager.cache_module(node) + node.package = hasattr(module, "__path__") + self._done = {} + self.object_build(node, module) + return node + + def object_build( + self, node: nodes.Module | nodes.ClassDef, obj: types.ModuleType | type + ) -> None: + """recursive method which create a partial ast from real objects + (only function, class, and method are handled) + """ + if obj in self._done: + return None + self._done[obj] = node + for alias in dir(obj): + # inspect.ismethod() and inspect.isbuiltin() in PyPy return + # the opposite of what they do in CPython for __class_getitem__. + pypy__class_getitem__ = IS_PYPY and alias == "__class_getitem__" + try: + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + member = getattr(obj, alias) + except AttributeError: + # damned ExtensionClass.Base, I know you're there ! + attach_dummy_node(node, alias) + continue + if inspect.ismethod(member) and not pypy__class_getitem__: + member = member.__func__ + if inspect.isfunction(member): + child = _build_from_function(node, member, self._module) + elif inspect.isbuiltin(member) or pypy__class_getitem__: + if self.imported_member(node, member, alias): + continue + child = object_build_methoddescriptor(node, member) + elif inspect.isclass(member): + if self.imported_member(node, member, alias): + continue + if member in self._done: + child = self._done[member] + assert isinstance(child, nodes.ClassDef) + else: + child = object_build_class(node, member) + # recursion + self.object_build(child, member) + elif inspect.ismethoddescriptor(member): + child: nodes.NodeNG = object_build_methoddescriptor(node, member) + elif inspect.isdatadescriptor(member): + child = object_build_datadescriptor(node, member) + elif isinstance(member, tuple(node_classes.CONST_CLS)): + if alias in node.special_attributes: + continue + child = nodes.const_factory(member) + elif inspect.isroutine(member): + # This should be called for Jython, where some builtin + # methods aren't caught by isbuiltin branch. + child = _build_from_function(node, member, self._module) + elif _safe_has_attribute(member, "__all__"): + child: nodes.NodeNG = build_module(alias) + # recursion + self.object_build(child, member) + else: + # create an empty node so that the name is actually defined + child: nodes.NodeNG = build_dummy(member) + if child not in node.locals.get(alias, ()): + node.add_local_node(child, alias) + return None + + def imported_member(self, node, member, name: str) -> bool: + """verify this is not an imported class or handle it""" + # /!\ some classes like ExtensionClass doesn't have a __module__ + # attribute ! Also, this may trigger an exception on badly built module + # (see http://www.logilab.org/ticket/57299 for instance) + try: + modname = getattr(member, "__module__", None) + except TypeError: + modname = None + if modname is None: + if name in {"__new__", "__subclasshook__"}: + # Python 2.5.1 (r251:54863, Sep 1 2010, 22:03:14) + # >>> print object.__new__.__module__ + # None + modname = builtins.__name__ + else: + attach_dummy_node(node, name, member) + return True + + # On PyPy during bootstrapping we infer _io while _module is + # builtins. In CPython _io names itself io, see http://bugs.python.org/issue18602 + # Therefore, this basically checks whether we are not in PyPy. + if modname == "_io" and not self._module.__name__ == "builtins": + return False + + real_name = {"gtk": "gtk_gtk"}.get(modname, modname) + + if real_name != self._module.__name__: + # check if it sounds valid and then add an import node, else use a + # dummy node + try: + with ( + redirect_stderr(io.StringIO()) as stderr, + redirect_stdout(io.StringIO()) as stdout, + ): + getattr(sys.modules[modname], name) + stderr_value = stderr.getvalue() + if stderr_value: + logger.error( + "Captured stderr while getting %s from %s:\n%s", + name, + sys.modules[modname], + stderr_value, + ) + stdout_value = stdout.getvalue() + if stdout_value: + logger.info( + "Captured stdout while getting %s from %s:\n%s", + name, + sys.modules[modname], + stdout_value, + ) + except (KeyError, AttributeError): + attach_dummy_node(node, name, member) + else: + attach_import_node(node, modname, name) + return True + return False + + +# astroid bootstrapping ###################################################### + +_CONST_PROXY: dict[type, nodes.ClassDef] = {} + + +def _set_proxied(const) -> nodes.ClassDef: + # TODO : find a nicer way to handle this situation; + return _CONST_PROXY[const.value.__class__] + + +def _astroid_bootstrapping() -> None: + """astroid bootstrapping the builtins module""" + # this boot strapping is necessary since we need the Const nodes to + # inspect_build builtins, and then we can proxy Const + # pylint: disable-next=import-outside-toplevel + from astroid.manager import AstroidManager + + builder = InspectBuilder(AstroidManager()) + astroid_builtin = builder.inspect_build(builtins) + + for cls, node_cls in node_classes.CONST_CLS.items(): + if cls is TYPE_NONE: + proxy = build_class("NoneType", astroid_builtin) + elif cls is TYPE_NOTIMPLEMENTED: + proxy = build_class("NotImplementedType", astroid_builtin) + elif cls is TYPE_ELLIPSIS: + proxy = build_class("Ellipsis", astroid_builtin) + else: + proxy = astroid_builtin.getattr(cls.__name__)[0] + assert isinstance(proxy, nodes.ClassDef) + if cls in (dict, list, set, tuple): + node_cls._proxied = proxy + else: + _CONST_PROXY[cls] = proxy + + # Set the builtin module as parent for some builtins. + nodes.Const._proxied = property(_set_proxied) + + _GeneratorType = nodes.ClassDef( + types.GeneratorType.__name__, + lineno=0, + col_offset=0, + end_lineno=0, + end_col_offset=0, + parent=astroid_builtin, + ) + astroid_builtin.set_local(_GeneratorType.name, _GeneratorType) + generator_doc_node = ( + nodes.Const(value=types.GeneratorType.__doc__) + if types.GeneratorType.__doc__ + else None + ) + _GeneratorType.postinit( + bases=[], + body=[], + decorators=None, + doc_node=generator_doc_node, + ) + bases.Generator._proxied = _GeneratorType + builder.object_build(bases.Generator._proxied, types.GeneratorType) + + if hasattr(types, "AsyncGeneratorType"): + _AsyncGeneratorType = nodes.ClassDef( + types.AsyncGeneratorType.__name__, + lineno=0, + col_offset=0, + end_lineno=0, + end_col_offset=0, + parent=astroid_builtin, + ) + astroid_builtin.set_local(_AsyncGeneratorType.name, _AsyncGeneratorType) + async_generator_doc_node = ( + nodes.Const(value=types.AsyncGeneratorType.__doc__) + if types.AsyncGeneratorType.__doc__ + else None + ) + _AsyncGeneratorType.postinit( + bases=[], + body=[], + decorators=None, + doc_node=async_generator_doc_node, + ) + bases.AsyncGenerator._proxied = _AsyncGeneratorType + builder.object_build(bases.AsyncGenerator._proxied, types.AsyncGeneratorType) + + if hasattr(types, "UnionType"): + _UnionTypeType = nodes.ClassDef( + types.UnionType.__name__, + lineno=0, + col_offset=0, + end_lineno=0, + end_col_offset=0, + parent=astroid_builtin, + ) + union_type_doc_node = ( + nodes.Const(value=types.UnionType.__doc__) + if types.UnionType.__doc__ + else None + ) + _UnionTypeType.postinit( + bases=[], + body=[], + decorators=None, + doc_node=union_type_doc_node, + ) + bases.UnionType._proxied = _UnionTypeType + builder.object_build(bases.UnionType._proxied, types.UnionType) + + builtin_types = ( + types.GetSetDescriptorType, + types.GeneratorType, + types.MemberDescriptorType, + TYPE_NONE, + TYPE_NOTIMPLEMENTED, + types.FunctionType, + types.MethodType, + types.BuiltinFunctionType, + types.ModuleType, + types.TracebackType, + ) + for _type in builtin_types: + if _type.__name__ not in astroid_builtin: + klass = nodes.ClassDef( + _type.__name__, + lineno=0, + col_offset=0, + end_lineno=0, + end_col_offset=0, + parent=astroid_builtin, + ) + doc = _type.__doc__ if isinstance(_type.__doc__, str) else None + klass.postinit( + bases=[], + body=[], + decorators=None, + doc_node=nodes.Const(doc) if doc else None, + ) + builder.object_build(klass, _type) + astroid_builtin[_type.__name__] = klass + + InspectBuilder.bootstrapped = True + + # pylint: disable-next=import-outside-toplevel + from astroid.brain.brain_builtin_inference import on_bootstrap + + # Instantiates an AstroidBuilder(), which is where + # InspectBuilder.bootstrapped is checked, so place after bootstrapped=True. + on_bootstrap() diff --git a/.venv/lib/python3.12/site-packages/astroid/rebuilder.py b/.venv/lib/python3.12/site-packages/astroid/rebuilder.py new file mode 100644 index 0000000..97f3a39 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/rebuilder.py @@ -0,0 +1,1996 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""This module contains utilities for rebuilding an _ast tree in +order to get a single Astroid representation. +""" + +from __future__ import annotations + +import ast +import sys +import token +from collections.abc import Callable, Collection, Generator +from io import StringIO +from tokenize import TokenInfo, generate_tokens +from typing import TYPE_CHECKING, Final, TypeVar, cast, overload + +from astroid import nodes +from astroid._ast import ParserModule, get_parser_module, parse_function_type_comment +from astroid.const import PY312_PLUS, PY313_PLUS, Context +from astroid.nodes.utils import Position +from astroid.typing import InferenceResult + +if TYPE_CHECKING: + from astroid.manager import AstroidManager + + T_Doc = TypeVar( + "T_Doc", + ast.Module, + ast.ClassDef, + ast.FunctionDef | ast.AsyncFunctionDef, + ) + _FunctionT = TypeVar("_FunctionT", nodes.FunctionDef, nodes.AsyncFunctionDef) + _ForT = TypeVar("_ForT", nodes.For, nodes.AsyncFor) + _WithT = TypeVar("_WithT", nodes.With, nodes.AsyncWith) + NodesWithDocsType = nodes.Module | nodes.ClassDef | nodes.FunctionDef + + +REDIRECT: Final[dict[str, str]] = { + "arguments": "Arguments", + "comprehension": "Comprehension", + "ListCompFor": "Comprehension", + "GenExprFor": "Comprehension", + "excepthandler": "ExceptHandler", + "keyword": "Keyword", + "match_case": "MatchCase", +} + + +# noinspection PyMethodMayBeStatic +class TreeRebuilder: + """Rebuilds the _ast tree to become an Astroid tree.""" + + def __init__( + self, + manager: AstroidManager, + parser_module: ParserModule | None = None, + data: str | None = None, + ) -> None: + self._manager = manager + self._data = data.split("\n") if data else None + self._global_names: list[dict[str, list[nodes.Global]]] = [] + self._import_from_nodes: list[tuple[nodes.ImportFrom, Collection[str]]] = [] + self._delayed_assattr: list[nodes.AssignAttr] = [] + self._visit_meths: dict[ + type[ast.AST], Callable[[ast.AST, nodes.NodeNG], nodes.NodeNG] + ] = {} + + if parser_module is None: + self._parser_module = get_parser_module() + else: + self._parser_module = parser_module + + def _get_doc(self, node: T_Doc) -> tuple[T_Doc, ast.Constant | None]: + """Return the doc ast node.""" + try: + if node.body and isinstance(node.body[0], ast.Expr): + first_value = node.body[0].value + if isinstance(first_value, ast.Constant) and isinstance( + first_value.value, str + ): + doc_ast_node = first_value + node.body = node.body[1:] + return node, doc_ast_node + except IndexError: + pass # ast built from scratch + return node, None + + def _get_context( + self, + node: ( + ast.Attribute + | ast.List + | ast.Name + | ast.Subscript + | ast.Starred + | ast.Tuple + ), + ) -> Context: + return self._parser_module.context_classes.get(type(node.ctx), Context.Load) + + def _get_position_info( + self, + node: ast.ClassDef | ast.FunctionDef | ast.AsyncFunctionDef, + parent: nodes.ClassDef | nodes.FunctionDef | nodes.AsyncFunctionDef, + ) -> Position | None: + """Return position information for ClassDef and FunctionDef nodes. + + In contrast to AST positions, these only include the actual keyword(s) + and the class / function name. + + >>> @decorator + >>> async def some_func(var: int) -> None: + >>> ^^^^^^^^^^^^^^^^^^^ + """ + if not self._data: + return None + end_lineno = node.end_lineno + if node.body: + end_lineno = node.body[0].lineno + # pylint: disable-next=unsubscriptable-object + data = "\n".join(self._data[node.lineno - 1 : end_lineno]) + + start_token: TokenInfo | None = None + keyword_tokens: tuple[int, ...] = (token.NAME,) + if isinstance(parent, nodes.AsyncFunctionDef): + search_token = "async" + elif isinstance(parent, nodes.FunctionDef): + search_token = "def" + else: + search_token = "class" + + for t in generate_tokens(StringIO(data).readline): + if ( + start_token is not None + and t.type == token.NAME + and t.string == node.name + ): + break + if t.type in keyword_tokens: + if t.string == search_token: + start_token = t + continue + if t.string in {"def"}: + continue + start_token = None + else: + return None + + return Position( + lineno=node.lineno + start_token.start[0] - 1, + col_offset=start_token.start[1], + end_lineno=node.lineno + t.end[0] - 1, + end_col_offset=t.end[1], + ) + + def visit_module( + self, node: ast.Module, modname: str, modpath: str, package: bool + ) -> nodes.Module: + """Visit a Module node by returning a fresh instance of it. + + Note: Method not called by 'visit' + """ + node, doc_ast_node = self._get_doc(node) + newnode = nodes.Module( + name=modname, + file=modpath, + path=[modpath], + package=package, + ) + newnode.postinit( + [self.visit(child, newnode) for child in node.body], + doc_node=self.visit(doc_ast_node, newnode), + ) + return newnode + + if TYPE_CHECKING: # noqa: C901 + + @overload + def visit(self, node: ast.arg, parent: nodes.NodeNG) -> nodes.AssignName: ... + + @overload + def visit( + self, node: ast.arguments, parent: nodes.NodeNG + ) -> nodes.Arguments: ... + + @overload + def visit(self, node: ast.Assert, parent: nodes.NodeNG) -> nodes.Assert: ... + + @overload + def visit( + self, node: ast.AsyncFunctionDef, parent: nodes.NodeNG + ) -> nodes.AsyncFunctionDef: ... + + @overload + def visit(self, node: ast.AsyncFor, parent: nodes.NodeNG) -> nodes.AsyncFor: ... + + @overload + def visit(self, node: ast.Await, parent: nodes.NodeNG) -> nodes.Await: ... + + @overload + def visit( + self, node: ast.AsyncWith, parent: nodes.NodeNG + ) -> nodes.AsyncWith: ... + + @overload + def visit(self, node: ast.Assign, parent: nodes.NodeNG) -> nodes.Assign: ... + + @overload + def visit( + self, node: ast.AnnAssign, parent: nodes.NodeNG + ) -> nodes.AnnAssign: ... + + @overload + def visit( + self, node: ast.AugAssign, parent: nodes.NodeNG + ) -> nodes.AugAssign: ... + + @overload + def visit(self, node: ast.BinOp, parent: nodes.NodeNG) -> nodes.BinOp: ... + + @overload + def visit(self, node: ast.BoolOp, parent: nodes.NodeNG) -> nodes.BoolOp: ... + + @overload + def visit(self, node: ast.Break, parent: nodes.NodeNG) -> nodes.Break: ... + + @overload + def visit(self, node: ast.Call, parent: nodes.NodeNG) -> nodes.Call: ... + + @overload + def visit(self, node: ast.ClassDef, parent: nodes.NodeNG) -> nodes.ClassDef: ... + + @overload + def visit(self, node: ast.Continue, parent: nodes.NodeNG) -> nodes.Continue: ... + + @overload + def visit(self, node: ast.Compare, parent: nodes.NodeNG) -> nodes.Compare: ... + + @overload + def visit( + self, node: ast.comprehension, parent: nodes.NodeNG + ) -> nodes.Comprehension: ... + + @overload + def visit(self, node: ast.Delete, parent: nodes.NodeNG) -> nodes.Delete: ... + + @overload + def visit(self, node: ast.Dict, parent: nodes.NodeNG) -> nodes.Dict: ... + + @overload + def visit(self, node: ast.DictComp, parent: nodes.NodeNG) -> nodes.DictComp: ... + + @overload + def visit(self, node: ast.Expr, parent: nodes.NodeNG) -> nodes.Expr: ... + + @overload + def visit( + self, node: ast.ExceptHandler, parent: nodes.NodeNG + ) -> nodes.ExceptHandler: ... + + @overload + def visit(self, node: ast.For, parent: nodes.NodeNG) -> nodes.For: ... + + @overload + def visit( + self, node: ast.ImportFrom, parent: nodes.NodeNG + ) -> nodes.ImportFrom: ... + + @overload + def visit( + self, node: ast.FunctionDef, parent: nodes.NodeNG + ) -> nodes.FunctionDef: ... + + @overload + def visit( + self, node: ast.GeneratorExp, parent: nodes.NodeNG + ) -> nodes.GeneratorExp: ... + + @overload + def visit( + self, node: ast.Attribute, parent: nodes.NodeNG + ) -> nodes.Attribute: ... + + @overload + def visit(self, node: ast.Global, parent: nodes.NodeNG) -> nodes.Global: ... + + @overload + def visit(self, node: ast.If, parent: nodes.NodeNG) -> nodes.If: ... + + @overload + def visit(self, node: ast.IfExp, parent: nodes.NodeNG) -> nodes.IfExp: ... + + @overload + def visit(self, node: ast.Import, parent: nodes.NodeNG) -> nodes.Import: ... + + @overload + def visit( + self, node: ast.JoinedStr, parent: nodes.NodeNG + ) -> nodes.JoinedStr: ... + + @overload + def visit( + self, node: ast.FormattedValue, parent: nodes.NodeNG + ) -> nodes.FormattedValue: ... + + @overload + def visit( + self, node: ast.NamedExpr, parent: nodes.NodeNG + ) -> nodes.NamedExpr: ... + + @overload + def visit(self, node: ast.keyword, parent: nodes.NodeNG) -> nodes.Keyword: ... + + @overload + def visit(self, node: ast.Lambda, parent: nodes.NodeNG) -> nodes.Lambda: ... + + @overload + def visit(self, node: ast.List, parent: nodes.NodeNG) -> nodes.List: ... + + @overload + def visit(self, node: ast.ListComp, parent: nodes.NodeNG) -> nodes.ListComp: ... + + @overload + def visit( + self, node: ast.Name, parent: nodes.NodeNG + ) -> nodes.Name | nodes.Const | nodes.AssignName | nodes.DelName: ... + + @overload + def visit(self, node: ast.Nonlocal, parent: nodes.NodeNG) -> nodes.Nonlocal: ... + + @overload + def visit(self, node: ast.Constant, parent: nodes.NodeNG) -> nodes.Const: ... + + if sys.version_info >= (3, 12): + + @overload + def visit( + self, node: ast.ParamSpec, parent: nodes.NodeNG + ) -> nodes.ParamSpec: ... + + @overload + def visit(self, node: ast.Pass, parent: nodes.NodeNG) -> nodes.Pass: ... + + @overload + def visit(self, node: ast.Raise, parent: nodes.NodeNG) -> nodes.Raise: ... + + @overload + def visit(self, node: ast.Return, parent: nodes.NodeNG) -> nodes.Return: ... + + @overload + def visit(self, node: ast.Set, parent: nodes.NodeNG) -> nodes.Set: ... + + @overload + def visit(self, node: ast.SetComp, parent: nodes.NodeNG) -> nodes.SetComp: ... + + @overload + def visit(self, node: ast.Slice, parent: nodes.Subscript) -> nodes.Slice: ... + + @overload + def visit( + self, node: ast.Subscript, parent: nodes.NodeNG + ) -> nodes.Subscript: ... + + @overload + def visit(self, node: ast.Starred, parent: nodes.NodeNG) -> nodes.Starred: ... + + @overload + def visit(self, node: ast.Try, parent: nodes.NodeNG) -> nodes.Try: ... + + if sys.version_info >= (3, 11): + + @overload + def visit( + self, node: ast.TryStar, parent: nodes.NodeNG + ) -> nodes.TryStar: ... + + @overload + def visit(self, node: ast.Tuple, parent: nodes.NodeNG) -> nodes.Tuple: ... + + if sys.version_info >= (3, 12): + + @overload + def visit( + self, node: ast.TypeAlias, parent: nodes.NodeNG + ) -> nodes.TypeAlias: ... + + @overload + def visit( + self, node: ast.TypeVar, parent: nodes.NodeNG + ) -> nodes.TypeVar: ... + + @overload + def visit( + self, node: ast.TypeVarTuple, parent: nodes.NodeNG + ) -> nodes.TypeVarTuple: ... + + @overload + def visit(self, node: ast.UnaryOp, parent: nodes.NodeNG) -> nodes.UnaryOp: ... + + @overload + def visit(self, node: ast.While, parent: nodes.NodeNG) -> nodes.While: ... + + @overload + def visit(self, node: ast.With, parent: nodes.NodeNG) -> nodes.With: ... + + @overload + def visit(self, node: ast.Yield, parent: nodes.NodeNG) -> nodes.Yield: ... + + @overload + def visit( + self, node: ast.YieldFrom, parent: nodes.NodeNG + ) -> nodes.YieldFrom: ... + + @overload + def visit(self, node: ast.Match, parent: nodes.NodeNG) -> nodes.Match: ... + + @overload + def visit( + self, node: ast.match_case, parent: nodes.NodeNG + ) -> nodes.MatchCase: ... + + @overload + def visit( + self, node: ast.MatchValue, parent: nodes.NodeNG + ) -> nodes.MatchValue: ... + + @overload + def visit( + self, node: ast.MatchSingleton, parent: nodes.NodeNG + ) -> nodes.MatchSingleton: ... + + @overload + def visit( + self, node: ast.MatchSequence, parent: nodes.NodeNG + ) -> nodes.MatchSequence: ... + + @overload + def visit( + self, node: ast.MatchMapping, parent: nodes.NodeNG + ) -> nodes.MatchMapping: ... + + @overload + def visit( + self, node: ast.MatchClass, parent: nodes.NodeNG + ) -> nodes.MatchClass: ... + + @overload + def visit( + self, node: ast.MatchStar, parent: nodes.NodeNG + ) -> nodes.MatchStar: ... + + @overload + def visit(self, node: ast.MatchAs, parent: nodes.NodeNG) -> nodes.MatchAs: ... + + @overload + def visit(self, node: ast.MatchOr, parent: nodes.NodeNG) -> nodes.MatchOr: ... + + @overload + def visit(self, node: ast.pattern, parent: nodes.NodeNG) -> nodes.Pattern: ... + + if sys.version_info >= (3, 14): + + @overload + def visit( + self, node: ast.TemplateStr, parent: nodes.NodeNG + ) -> nodes.TemplateStr: ... + + @overload + def visit( + self, node: ast.Interpolation, parent: nodes.NodeNG + ) -> nodes.Interpolation: ... + + @overload + def visit(self, node: ast.AST, parent: nodes.NodeNG) -> nodes.NodeNG: ... + + @overload + def visit(self, node: None, parent: nodes.NodeNG) -> None: ... + + def visit(self, node: ast.AST | None, parent: nodes.NodeNG) -> nodes.NodeNG | None: + if node is None: + return None + cls = node.__class__ + if cls in self._visit_meths: + visit_method = self._visit_meths[cls] + else: + cls_name = cls.__name__ + visit_name = "visit_" + REDIRECT.get(cls_name, cls_name).lower() + visit_method = getattr(self, visit_name) + self._visit_meths[cls] = visit_method + return visit_method(node, parent) + + def _save_assignment(self, node: nodes.AssignName | nodes.DelName) -> None: + """Save assignment situation since node.parent is not available yet.""" + if self._global_names and node.name in self._global_names[-1]: + node.root().set_local(node.name, node) + else: + assert node.parent + assert node.name + node.parent.set_local(node.name, node) + + def visit_arg(self, node: ast.arg, parent: nodes.NodeNG) -> nodes.AssignName: + """Visit an arg node by returning a fresh AssignName instance.""" + return self.visit_assignname(node, parent, node.arg) + + def visit_arguments( + self, node: ast.arguments, parent: nodes.NodeNG + ) -> nodes.Arguments: + """Visit an Arguments node by returning a fresh instance of it.""" + vararg: str | None = None + kwarg: str | None = None + vararg_node = node.vararg + kwarg_node = node.kwarg + + newnode = nodes.Arguments( + node.vararg.arg if node.vararg else None, + node.kwarg.arg if node.kwarg else None, + parent, + ( + nodes.AssignName( + vararg_node.arg, + vararg_node.lineno, + vararg_node.col_offset, + parent, + end_lineno=vararg_node.end_lineno, + end_col_offset=vararg_node.end_col_offset, + ) + if vararg_node + else None + ), + ( + nodes.AssignName( + kwarg_node.arg, + kwarg_node.lineno, + kwarg_node.col_offset, + parent, + end_lineno=kwarg_node.end_lineno, + end_col_offset=kwarg_node.end_col_offset, + ) + if kwarg_node + else None + ), + ) + args = [self.visit(child, newnode) for child in node.args] + defaults = [self.visit(child, newnode) for child in node.defaults] + varargannotation: nodes.NodeNG | None = None + kwargannotation: nodes.NodeNG | None = None + if node.vararg: + vararg = node.vararg.arg + varargannotation = self.visit(node.vararg.annotation, newnode) + if node.kwarg: + kwarg = node.kwarg.arg + kwargannotation = self.visit(node.kwarg.annotation, newnode) + + kwonlyargs = [self.visit(child, newnode) for child in node.kwonlyargs] + kw_defaults = [self.visit(child, newnode) for child in node.kw_defaults] + annotations = [self.visit(arg.annotation, newnode) for arg in node.args] + kwonlyargs_annotations = [ + self.visit(arg.annotation, newnode) for arg in node.kwonlyargs + ] + + posonlyargs = [self.visit(child, newnode) for child in node.posonlyargs] + posonlyargs_annotations = [ + self.visit(arg.annotation, newnode) for arg in node.posonlyargs + ] + type_comment_args = [ + self.check_type_comment(child, parent=newnode) for child in node.args + ] + type_comment_kwonlyargs = [ + self.check_type_comment(child, parent=newnode) for child in node.kwonlyargs + ] + type_comment_posonlyargs = [ + self.check_type_comment(child, parent=newnode) for child in node.posonlyargs + ] + + newnode.postinit( + args=args, + defaults=defaults, + kwonlyargs=kwonlyargs, + posonlyargs=posonlyargs, + kw_defaults=kw_defaults, + annotations=annotations, + kwonlyargs_annotations=kwonlyargs_annotations, + posonlyargs_annotations=posonlyargs_annotations, + varargannotation=varargannotation, + kwargannotation=kwargannotation, + type_comment_args=type_comment_args, + type_comment_kwonlyargs=type_comment_kwonlyargs, + type_comment_posonlyargs=type_comment_posonlyargs, + ) + # save argument names in locals: + assert newnode.parent + if vararg: + newnode.parent.set_local(vararg, newnode) + if kwarg: + newnode.parent.set_local(kwarg, newnode) + return newnode + + def visit_assert(self, node: ast.Assert, parent: nodes.NodeNG) -> nodes.Assert: + """Visit a Assert node by returning a fresh instance of it.""" + newnode = nodes.Assert( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + msg: nodes.NodeNG | None = None + if node.msg: + msg = self.visit(node.msg, newnode) + newnode.postinit(self.visit(node.test, newnode), msg) + return newnode + + def check_type_comment( + self, + node: ast.Assign | ast.arg | ast.For | ast.AsyncFor | ast.With | ast.AsyncWith, + parent: ( + nodes.Assign + | nodes.Arguments + | nodes.For + | nodes.AsyncFor + | nodes.With + | nodes.AsyncWith + ), + ) -> nodes.NodeNG | None: + if not node.type_comment: + return None + + try: + type_comment_ast = self._parser_module.parse(node.type_comment) + except SyntaxError: + # Invalid type comment, just skip it. + return None + + # For '# type: # any comment' ast.parse returns a Module node, + # without any nodes in the body. + if not type_comment_ast.body: + return None + + type_object = self.visit(type_comment_ast.body[0], parent=parent) + if not isinstance(type_object, nodes.Expr): + return None + + return type_object.value + + def check_function_type_comment( + self, node: ast.FunctionDef | ast.AsyncFunctionDef, parent: nodes.NodeNG + ) -> tuple[nodes.NodeNG | None, list[nodes.NodeNG]] | None: + if not node.type_comment: + return None + + try: + type_comment_ast = parse_function_type_comment(node.type_comment) + except SyntaxError: + # Invalid type comment, just skip it. + return None + + if not type_comment_ast: + return None + + returns: nodes.NodeNG | None = None + argtypes: list[nodes.NodeNG] = [ + self.visit(elem, parent) for elem in (type_comment_ast.argtypes or []) + ] + if type_comment_ast.returns: + returns = self.visit(type_comment_ast.returns, parent) + + return returns, argtypes + + def visit_asyncfunctiondef( + self, node: ast.AsyncFunctionDef, parent: nodes.NodeNG + ) -> nodes.AsyncFunctionDef: + return self._visit_functiondef(nodes.AsyncFunctionDef, node, parent) + + def visit_asyncfor( + self, node: ast.AsyncFor, parent: nodes.NodeNG + ) -> nodes.AsyncFor: + return self._visit_for(nodes.AsyncFor, node, parent) + + def visit_await(self, node: ast.Await, parent: nodes.NodeNG) -> nodes.Await: + newnode = nodes.Await( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(value=self.visit(node.value, newnode)) + return newnode + + def visit_asyncwith( + self, node: ast.AsyncWith, parent: nodes.NodeNG + ) -> nodes.AsyncWith: + return self._visit_with(nodes.AsyncWith, node, parent) + + def visit_assign(self, node: ast.Assign, parent: nodes.NodeNG) -> nodes.Assign: + """Visit a Assign node by returning a fresh instance of it.""" + newnode = nodes.Assign( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + type_annotation = self.check_type_comment(node, parent=newnode) + newnode.postinit( + targets=[self.visit(child, newnode) for child in node.targets], + value=self.visit(node.value, newnode), + type_annotation=type_annotation, + ) + return newnode + + def visit_annassign( + self, node: ast.AnnAssign, parent: nodes.NodeNG + ) -> nodes.AnnAssign: + """Visit an AnnAssign node by returning a fresh instance of it.""" + newnode = nodes.AnnAssign( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + target=self.visit(node.target, newnode), + annotation=self.visit(node.annotation, newnode), + simple=node.simple, + value=self.visit(node.value, newnode), + ) + return newnode + + @overload + def visit_assignname( + self, node: ast.AST, parent: nodes.NodeNG, node_name: str + ) -> nodes.AssignName: ... + + @overload + def visit_assignname( + self, node: ast.AST, parent: nodes.NodeNG, node_name: None + ) -> None: ... + + def visit_assignname( + self, node: ast.AST, parent: nodes.NodeNG, node_name: str | None + ) -> nodes.AssignName | None: + """Visit a node and return a AssignName node. + + Note: Method not called by 'visit' + """ + if node_name is None: + return None + newnode = nodes.AssignName( + name=node_name, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + self._save_assignment(newnode) + return newnode + + def visit_augassign( + self, node: ast.AugAssign, parent: nodes.NodeNG + ) -> nodes.AugAssign: + """Visit a AugAssign node by returning a fresh instance of it.""" + newnode = nodes.AugAssign( + op=self._parser_module.bin_op_classes[type(node.op)] + "=", + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.target, newnode), self.visit(node.value, newnode) + ) + return newnode + + def visit_binop(self, node: ast.BinOp, parent: nodes.NodeNG) -> nodes.BinOp: + """Visit a BinOp node by returning a fresh instance of it.""" + newnode = nodes.BinOp( + op=self._parser_module.bin_op_classes[type(node.op)], + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.left, newnode), self.visit(node.right, newnode) + ) + return newnode + + def visit_boolop(self, node: ast.BoolOp, parent: nodes.NodeNG) -> nodes.BoolOp: + """Visit a BoolOp node by returning a fresh instance of it.""" + newnode = nodes.BoolOp( + op=self._parser_module.bool_op_classes[type(node.op)], + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit([self.visit(child, newnode) for child in node.values]) + return newnode + + def visit_break(self, node: ast.Break, parent: nodes.NodeNG) -> nodes.Break: + """Visit a Break node by returning a fresh instance of it.""" + return nodes.Break( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + + def visit_call(self, node: ast.Call, parent: nodes.NodeNG) -> nodes.Call: + """Visit a CallFunc node by returning a fresh instance of it.""" + newnode = nodes.Call( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + func=self.visit(node.func, newnode), + args=[self.visit(child, newnode) for child in node.args], + keywords=[self.visit(child, newnode) for child in node.keywords], + ) + return newnode + + def visit_classdef( + self, node: ast.ClassDef, parent: nodes.NodeNG, newstyle: bool = True + ) -> nodes.ClassDef: + """Visit a ClassDef node to become astroid.""" + node, doc_ast_node = self._get_doc(node) + newnode = nodes.ClassDef( + name=node.name, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + metaclass = None + for keyword in node.keywords: + if keyword.arg == "metaclass": + metaclass = self.visit(keyword, newnode).value + break + decorators = self.visit_decorators(node, newnode) + newnode.postinit( + [self.visit(child, newnode) for child in node.bases], + [self.visit(child, newnode) for child in node.body], + decorators, + newstyle, + metaclass, + [ + self.visit(kwd, newnode) + for kwd in node.keywords + if kwd.arg != "metaclass" + ], + position=self._get_position_info(node, newnode), + doc_node=self.visit(doc_ast_node, newnode), + type_params=( + [self.visit(param, newnode) for param in node.type_params] + if PY312_PLUS + else [] + ), + ) + parent.set_local(newnode.name, newnode) + return newnode + + def visit_continue( + self, node: ast.Continue, parent: nodes.NodeNG + ) -> nodes.Continue: + """Visit a Continue node by returning a fresh instance of it.""" + return nodes.Continue( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + + def visit_compare(self, node: ast.Compare, parent: nodes.NodeNG) -> nodes.Compare: + """Visit a Compare node by returning a fresh instance of it.""" + newnode = nodes.Compare( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.left, newnode), + [ + ( + self._parser_module.cmp_op_classes[op.__class__], + self.visit(expr, newnode), + ) + for (op, expr) in zip(node.ops, node.comparators) + ], + ) + return newnode + + def visit_comprehension( + self, node: ast.comprehension, parent: nodes.NodeNG + ) -> nodes.Comprehension: + """Visit a Comprehension node by returning a fresh instance of it.""" + newnode = nodes.Comprehension( + parent=parent, + # Comprehension nodes don't have these attributes + # see https://docs.python.org/3/library/ast.html#abstract-grammar + lineno=None, + col_offset=None, + end_lineno=None, + end_col_offset=None, + ) + newnode.postinit( + self.visit(node.target, newnode), + self.visit(node.iter, newnode), + [self.visit(child, newnode) for child in node.ifs], + bool(node.is_async), + ) + return newnode + + def visit_decorators( + self, + node: ast.ClassDef | ast.FunctionDef | ast.AsyncFunctionDef, + parent: nodes.NodeNG, + ) -> nodes.Decorators | None: + """Visit a Decorators node by returning a fresh instance of it. + + Note: Method not called by 'visit' + """ + if not node.decorator_list: + return None + # /!\ node is actually an _ast.FunctionDef node while + # parent is an astroid.nodes.FunctionDef node + + # Set the line number of the first decorator for Python 3.8+. + lineno = node.decorator_list[0].lineno + end_lineno = node.decorator_list[-1].end_lineno + end_col_offset = node.decorator_list[-1].end_col_offset + + newnode = nodes.Decorators( + lineno=lineno, + col_offset=node.col_offset, + end_lineno=end_lineno, + end_col_offset=end_col_offset, + parent=parent, + ) + newnode.postinit([self.visit(child, newnode) for child in node.decorator_list]) + return newnode + + def visit_delete(self, node: ast.Delete, parent: nodes.NodeNG) -> nodes.Delete: + """Visit a Delete node by returning a fresh instance of it.""" + newnode = nodes.Delete( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit([self.visit(child, newnode) for child in node.targets]) + return newnode + + def _visit_dict_items( + self, node: ast.Dict, parent: nodes.NodeNG, newnode: nodes.Dict + ) -> Generator[tuple[nodes.NodeNG, nodes.NodeNG]]: + for key, value in zip(node.keys, node.values): + rebuilt_key: nodes.NodeNG + rebuilt_value = self.visit(value, newnode) + if not key: + # Extended unpacking + rebuilt_key = nodes.DictUnpack( + lineno=rebuilt_value.lineno, + col_offset=rebuilt_value.col_offset, + end_lineno=rebuilt_value.end_lineno, + end_col_offset=rebuilt_value.end_col_offset, + parent=parent, + ) + else: + rebuilt_key = self.visit(key, newnode) + yield rebuilt_key, rebuilt_value + + def visit_dict(self, node: ast.Dict, parent: nodes.NodeNG) -> nodes.Dict: + """Visit a Dict node by returning a fresh instance of it.""" + newnode = nodes.Dict( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + items: list[tuple[InferenceResult, InferenceResult]] = list( + self._visit_dict_items(node, parent, newnode) + ) + newnode.postinit(items) + return newnode + + def visit_dictcomp( + self, node: ast.DictComp, parent: nodes.NodeNG + ) -> nodes.DictComp: + """Visit a DictComp node by returning a fresh instance of it.""" + newnode = nodes.DictComp( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.key, newnode), + self.visit(node.value, newnode), + [self.visit(child, newnode) for child in node.generators], + ) + return newnode + + def visit_expr(self, node: ast.Expr, parent: nodes.NodeNG) -> nodes.Expr: + """Visit a Expr node by returning a fresh instance of it.""" + newnode = nodes.Expr( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.value, newnode)) + return newnode + + def visit_excepthandler( + self, node: ast.ExceptHandler, parent: nodes.NodeNG + ) -> nodes.ExceptHandler: + """Visit an ExceptHandler node by returning a fresh instance of it.""" + newnode = nodes.ExceptHandler( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.type, newnode), + self.visit_assignname(node, newnode, node.name), + [self.visit(child, newnode) for child in node.body], + ) + return newnode + + @overload + def _visit_for( + self, cls: type[nodes.For], node: ast.For, parent: nodes.NodeNG + ) -> nodes.For: ... + + @overload + def _visit_for( + self, cls: type[nodes.AsyncFor], node: ast.AsyncFor, parent: nodes.NodeNG + ) -> nodes.AsyncFor: ... + + def _visit_for( + self, cls: type[_ForT], node: ast.For | ast.AsyncFor, parent: nodes.NodeNG + ) -> _ForT: + """Visit a For node by returning a fresh instance of it.""" + newnode = cls( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + type_annotation = self.check_type_comment(node, parent=newnode) + newnode.postinit( + target=self.visit(node.target, newnode), + iter=self.visit(node.iter, newnode), + body=[self.visit(child, newnode) for child in node.body], + orelse=[self.visit(child, newnode) for child in node.orelse], + type_annotation=type_annotation, + ) + return newnode + + def visit_for(self, node: ast.For, parent: nodes.NodeNG) -> nodes.For: + return self._visit_for(nodes.For, node, parent) + + def visit_importfrom( + self, node: ast.ImportFrom, parent: nodes.NodeNG + ) -> nodes.ImportFrom: + """Visit an ImportFrom node by returning a fresh instance of it.""" + names = [(alias.name, alias.asname) for alias in node.names] + newnode = nodes.ImportFrom( + fromname=node.module or "", + names=names, + level=node.level or None, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # store From names to add them to locals after building + self._import_from_nodes.append( + (newnode, self._global_names[-1].keys() if self._global_names else ()) + ) + return newnode + + @overload + def _visit_functiondef( + self, cls: type[nodes.FunctionDef], node: ast.FunctionDef, parent: nodes.NodeNG + ) -> nodes.FunctionDef: ... + + @overload + def _visit_functiondef( + self, + cls: type[nodes.AsyncFunctionDef], + node: ast.AsyncFunctionDef, + parent: nodes.NodeNG, + ) -> nodes.AsyncFunctionDef: ... + + def _visit_functiondef( + self, + cls: type[_FunctionT], + node: ast.FunctionDef | ast.AsyncFunctionDef, + parent: nodes.NodeNG, + ) -> _FunctionT: + """Visit an FunctionDef node to become astroid.""" + self._global_names.append({}) + node, doc_ast_node = self._get_doc(node) + + lineno = node.lineno + if node.decorator_list: + # Python 3.8 sets the line number of a decorated function + # to be the actual line number of the function, but the + # previous versions expected the decorator's line number instead. + # We reset the function's line number to that of the + # first decorator to maintain backward compatibility. + # It's not ideal but this discrepancy was baked into + # the framework for *years*. + lineno = node.decorator_list[0].lineno + + newnode = cls( + name=node.name, + lineno=lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + decorators = self.visit_decorators(node, newnode) + returns: nodes.NodeNG | None + if node.returns: + returns = self.visit(node.returns, newnode) + else: + returns = None + + type_comment_args = type_comment_returns = None + type_comment_annotation = self.check_function_type_comment(node, newnode) + if type_comment_annotation: + type_comment_returns, type_comment_args = type_comment_annotation + newnode.postinit( + args=self.visit(node.args, newnode), + body=[self.visit(child, newnode) for child in node.body], + decorators=decorators, + returns=returns, + type_comment_returns=type_comment_returns, + type_comment_args=type_comment_args, + position=self._get_position_info(node, newnode), + doc_node=self.visit(doc_ast_node, newnode), + type_params=( + [self.visit(param, newnode) for param in node.type_params] + if PY312_PLUS + else [] + ), + ) + self._global_names.pop() + parent.set_local(newnode.name, newnode) + return newnode + + def visit_functiondef( + self, node: ast.FunctionDef, parent: nodes.NodeNG + ) -> nodes.FunctionDef: + return self._visit_functiondef(nodes.FunctionDef, node, parent) + + def visit_generatorexp( + self, node: ast.GeneratorExp, parent: nodes.NodeNG + ) -> nodes.GeneratorExp: + """Visit a GeneratorExp node by returning a fresh instance of it.""" + newnode = nodes.GeneratorExp( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.elt, newnode), + [self.visit(child, newnode) for child in node.generators], + ) + return newnode + + def visit_attribute( + self, node: ast.Attribute, parent: nodes.NodeNG + ) -> nodes.Attribute | nodes.AssignAttr | nodes.DelAttr: + """Visit an Attribute node by returning a fresh instance of it.""" + context = self._get_context(node) + newnode: nodes.Attribute | nodes.AssignAttr | nodes.DelAttr + if context == Context.Del: + # FIXME : maybe we should reintroduce and visit_delattr ? + # for instance, deactivating assign_ctx + newnode = nodes.DelAttr( + attrname=node.attr, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + elif context == Context.Store: + newnode = nodes.AssignAttr( + attrname=node.attr, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # Prohibit a local save if we are in an ExceptHandler. + if not isinstance(parent, nodes.ExceptHandler): + # mypy doesn't recognize that newnode has to be AssignAttr because it + # doesn't support ParamSpec + # See https://github.com/python/mypy/issues/8645 + self._delayed_assattr.append(newnode) # type: ignore[arg-type] + else: + newnode = nodes.Attribute( + attrname=node.attr, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.value, newnode)) + return newnode + + def visit_global(self, node: ast.Global, parent: nodes.NodeNG) -> nodes.Global: + """Visit a Global node to become astroid.""" + newnode = nodes.Global( + names=node.names, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + if self._global_names: # global at the module level, no effect + for name in node.names: + self._global_names[-1].setdefault(name, []).append(newnode) + return newnode + + def visit_if(self, node: ast.If, parent: nodes.NodeNG) -> nodes.If: + """Visit an If node by returning a fresh instance of it.""" + newnode = nodes.If( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.test, newnode), + [self.visit(child, newnode) for child in node.body], + [self.visit(child, newnode) for child in node.orelse], + ) + return newnode + + def visit_ifexp(self, node: ast.IfExp, parent: nodes.NodeNG) -> nodes.IfExp: + """Visit a IfExp node by returning a fresh instance of it.""" + newnode = nodes.IfExp( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.test, newnode), + self.visit(node.body, newnode), + self.visit(node.orelse, newnode), + ) + return newnode + + def visit_import(self, node: ast.Import, parent: nodes.NodeNG) -> nodes.Import: + """Visit a Import node by returning a fresh instance of it.""" + names = [(alias.name, alias.asname) for alias in node.names] + newnode = nodes.Import( + names=names, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # save import names in parent's locals: + for name, asname in newnode.names: + name = (asname or name).split(".")[0] + if self._global_names and name in self._global_names[-1]: + parent.root().set_local(name, newnode) + else: + parent.set_local(name, newnode) + return newnode + + def visit_joinedstr( + self, node: ast.JoinedStr, parent: nodes.NodeNG + ) -> nodes.JoinedStr: + newnode = nodes.JoinedStr( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit([self.visit(child, newnode) for child in node.values]) + return newnode + + def visit_formattedvalue( + self, node: ast.FormattedValue, parent: nodes.NodeNG + ) -> nodes.FormattedValue: + newnode = nodes.FormattedValue( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + value=self.visit(node.value, newnode), + conversion=node.conversion, + format_spec=self.visit(node.format_spec, newnode), + ) + return newnode + + def visit_namedexpr( + self, node: ast.NamedExpr, parent: nodes.NodeNG + ) -> nodes.NamedExpr: + newnode = nodes.NamedExpr( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.target, newnode), self.visit(node.value, newnode) + ) + return newnode + + def visit_keyword(self, node: ast.keyword, parent: nodes.NodeNG) -> nodes.Keyword: + """Visit a Keyword node by returning a fresh instance of it.""" + newnode = nodes.Keyword( + arg=node.arg, + # position attributes added in 3.9 + lineno=getattr(node, "lineno", None), + col_offset=getattr(node, "col_offset", None), + end_lineno=getattr(node, "end_lineno", None), + end_col_offset=getattr(node, "end_col_offset", None), + parent=parent, + ) + newnode.postinit(self.visit(node.value, newnode)) + return newnode + + def visit_lambda(self, node: ast.Lambda, parent: nodes.NodeNG) -> nodes.Lambda: + """Visit a Lambda node by returning a fresh instance of it.""" + newnode = nodes.Lambda( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.args, newnode), self.visit(node.body, newnode)) + return newnode + + def visit_list(self, node: ast.List, parent: nodes.NodeNG) -> nodes.List: + """Visit a List node by returning a fresh instance of it.""" + context = self._get_context(node) + newnode = nodes.List( + ctx=context, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit([self.visit(child, newnode) for child in node.elts]) + return newnode + + def visit_listcomp( + self, node: ast.ListComp, parent: nodes.NodeNG + ) -> nodes.ListComp: + """Visit a ListComp node by returning a fresh instance of it.""" + newnode = nodes.ListComp( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.elt, newnode), + [self.visit(child, newnode) for child in node.generators], + ) + return newnode + + def visit_name( + self, node: ast.Name, parent: nodes.NodeNG + ) -> nodes.Name | nodes.AssignName | nodes.DelName: + """Visit a Name node by returning a fresh instance of it.""" + context = self._get_context(node) + newnode: nodes.Name | nodes.AssignName | nodes.DelName + if context == Context.Del: + newnode = nodes.DelName( + name=node.id, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + elif context == Context.Store: + newnode = nodes.AssignName( + name=node.id, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + else: + newnode = nodes.Name( + name=node.id, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # XXX REMOVE me : + if context in (Context.Del, Context.Store): # 'Aug' ?? + newnode = cast((nodes.AssignName | nodes.DelName), newnode) + self._save_assignment(newnode) + return newnode + + def visit_nonlocal( + self, node: ast.Nonlocal, parent: nodes.NodeNG + ) -> nodes.Nonlocal: + """Visit a Nonlocal node and return a new instance of it.""" + return nodes.Nonlocal( + names=node.names, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + + def visit_constant(self, node: ast.Constant, parent: nodes.NodeNG) -> nodes.Const: + """Visit a Constant node by returning a fresh instance of Const.""" + return nodes.Const( + value=node.value, + kind=node.kind, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + + def visit_paramspec( + self, node: ast.ParamSpec, parent: nodes.NodeNG + ) -> nodes.ParamSpec: + """Visit a ParamSpec node by returning a fresh instance of it.""" + newnode = nodes.ParamSpec( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # Add AssignName node for 'node.name' + # https://bugs.python.org/issue43994 + newnode.postinit( + name=self.visit_assignname(node, newnode, node.name), + default_value=( + self.visit(node.default_value, newnode) if PY313_PLUS else None + ), + ) + return newnode + + def visit_pass(self, node: ast.Pass, parent: nodes.NodeNG) -> nodes.Pass: + """Visit a Pass node by returning a fresh instance of it.""" + return nodes.Pass( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + + def visit_raise(self, node: ast.Raise, parent: nodes.NodeNG) -> nodes.Raise: + """Visit a Raise node by returning a fresh instance of it.""" + newnode = nodes.Raise( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # no traceback; anyway it is not used in Pylint + newnode.postinit( + exc=self.visit(node.exc, newnode), + cause=self.visit(node.cause, newnode), + ) + return newnode + + def visit_return(self, node: ast.Return, parent: nodes.NodeNG) -> nodes.Return: + """Visit a Return node by returning a fresh instance of it.""" + newnode = nodes.Return( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.value, newnode)) + return newnode + + def visit_set(self, node: ast.Set, parent: nodes.NodeNG) -> nodes.Set: + """Visit a Set node by returning a fresh instance of it.""" + newnode = nodes.Set( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit([self.visit(child, newnode) for child in node.elts]) + return newnode + + def visit_setcomp(self, node: ast.SetComp, parent: nodes.NodeNG) -> nodes.SetComp: + """Visit a SetComp node by returning a fresh instance of it.""" + newnode = nodes.SetComp( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.elt, newnode), + [self.visit(child, newnode) for child in node.generators], + ) + return newnode + + def visit_slice(self, node: ast.Slice, parent: nodes.Subscript) -> nodes.Slice: + """Visit a Slice node by returning a fresh instance of it.""" + newnode = nodes.Slice( + # position attributes added in 3.9 + lineno=getattr(node, "lineno", None), + col_offset=getattr(node, "col_offset", None), + end_lineno=getattr(node, "end_lineno", None), + end_col_offset=getattr(node, "end_col_offset", None), + parent=parent, + ) + newnode.postinit( + lower=self.visit(node.lower, newnode), + upper=self.visit(node.upper, newnode), + step=self.visit(node.step, newnode), + ) + return newnode + + def visit_subscript( + self, node: ast.Subscript, parent: nodes.NodeNG + ) -> nodes.Subscript: + """Visit a Subscript node by returning a fresh instance of it.""" + context = self._get_context(node) + newnode = nodes.Subscript( + ctx=context, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.value, newnode), self.visit(node.slice, newnode) + ) + return newnode + + def visit_starred(self, node: ast.Starred, parent: nodes.NodeNG) -> nodes.Starred: + """Visit a Starred node and return a new instance of it.""" + context = self._get_context(node) + newnode = nodes.Starred( + ctx=context, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.value, newnode)) + return newnode + + def visit_try(self, node: ast.Try, parent: nodes.NodeNG) -> nodes.Try: + """Visit a Try node by returning a fresh instance of it""" + newnode = nodes.Try( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + body=[self.visit(child, newnode) for child in node.body], + handlers=[self.visit(child, newnode) for child in node.handlers], + orelse=[self.visit(child, newnode) for child in node.orelse], + finalbody=[self.visit(child, newnode) for child in node.finalbody], + ) + return newnode + + def visit_trystar(self, node: ast.TryStar, parent: nodes.NodeNG) -> nodes.TryStar: + newnode = nodes.TryStar( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + body=[self.visit(n, newnode) for n in node.body], + handlers=[self.visit(n, newnode) for n in node.handlers], + orelse=[self.visit(n, newnode) for n in node.orelse], + finalbody=[self.visit(n, newnode) for n in node.finalbody], + ) + return newnode + + def visit_tuple(self, node: ast.Tuple, parent: nodes.NodeNG) -> nodes.Tuple: + """Visit a Tuple node by returning a fresh instance of it.""" + context = self._get_context(node) + newnode = nodes.Tuple( + ctx=context, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit([self.visit(child, newnode) for child in node.elts]) + return newnode + + def visit_typealias( + self, node: ast.TypeAlias, parent: nodes.NodeNG + ) -> nodes.TypeAlias: + """Visit a TypeAlias node by returning a fresh instance of it.""" + newnode = nodes.TypeAlias( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + name=self.visit(node.name, newnode), + type_params=[self.visit(p, newnode) for p in node.type_params], + value=self.visit(node.value, newnode), + ) + return newnode + + def visit_typevar(self, node: ast.TypeVar, parent: nodes.NodeNG) -> nodes.TypeVar: + """Visit a TypeVar node by returning a fresh instance of it.""" + newnode = nodes.TypeVar( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # Add AssignName node for 'node.name' + # https://bugs.python.org/issue43994 + newnode.postinit( + name=self.visit_assignname(node, newnode, node.name), + bound=self.visit(node.bound, newnode), + default_value=( + self.visit(node.default_value, newnode) if PY313_PLUS else None + ), + ) + return newnode + + def visit_typevartuple( + self, node: ast.TypeVarTuple, parent: nodes.NodeNG + ) -> nodes.TypeVarTuple: + """Visit a TypeVarTuple node by returning a fresh instance of it.""" + newnode = nodes.TypeVarTuple( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # Add AssignName node for 'node.name' + # https://bugs.python.org/issue43994 + newnode.postinit( + name=self.visit_assignname(node, newnode, node.name), + default_value=( + self.visit(node.default_value, newnode) if PY313_PLUS else None + ), + ) + return newnode + + def visit_unaryop(self, node: ast.UnaryOp, parent: nodes.NodeNG) -> nodes.UnaryOp: + """Visit a UnaryOp node by returning a fresh instance of it.""" + newnode = nodes.UnaryOp( + op=self._parser_module.unary_op_classes[node.op.__class__], + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.operand, newnode)) + return newnode + + def visit_while(self, node: ast.While, parent: nodes.NodeNG) -> nodes.While: + """Visit a While node by returning a fresh instance of it.""" + newnode = nodes.While( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + self.visit(node.test, newnode), + [self.visit(child, newnode) for child in node.body], + [self.visit(child, newnode) for child in node.orelse], + ) + return newnode + + @overload + def _visit_with( + self, cls: type[nodes.With], node: ast.With, parent: nodes.NodeNG + ) -> nodes.With: ... + + @overload + def _visit_with( + self, cls: type[nodes.AsyncWith], node: ast.AsyncWith, parent: nodes.NodeNG + ) -> nodes.AsyncWith: ... + + def _visit_with( + self, + cls: type[_WithT], + node: ast.With | ast.AsyncWith, + parent: nodes.NodeNG, + ) -> _WithT: + newnode = cls( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + + def visit_child( + child: ast.withitem, + ) -> tuple[nodes.NodeNG, nodes.NodeNG | None]: + expr = self.visit(child.context_expr, newnode) + var = self.visit(child.optional_vars, newnode) + return expr, var + + type_annotation = self.check_type_comment(node, parent=newnode) + newnode.postinit( + items=[visit_child(child) for child in node.items], + body=[self.visit(child, newnode) for child in node.body], + type_annotation=type_annotation, + ) + return newnode + + def visit_with(self, node: ast.With, parent: nodes.NodeNG) -> nodes.NodeNG: + return self._visit_with(nodes.With, node, parent) + + def visit_yield(self, node: ast.Yield, parent: nodes.NodeNG) -> nodes.NodeNG: + """Visit a Yield node by returning a fresh instance of it.""" + newnode = nodes.Yield( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.value, newnode)) + return newnode + + def visit_yieldfrom( + self, node: ast.YieldFrom, parent: nodes.NodeNG + ) -> nodes.NodeNG: + newnode = nodes.YieldFrom( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(self.visit(node.value, newnode)) + return newnode + + def visit_match(self, node: ast.Match, parent: nodes.NodeNG) -> nodes.Match: + newnode = nodes.Match( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + subject=self.visit(node.subject, newnode), + cases=[self.visit(case, newnode) for case in node.cases], + ) + return newnode + + def visit_matchcase( + self, node: ast.match_case, parent: nodes.NodeNG + ) -> nodes.MatchCase: + newnode = nodes.MatchCase(parent=parent) + newnode.postinit( + pattern=self.visit(node.pattern, newnode), + guard=self.visit(node.guard, newnode), + body=[self.visit(child, newnode) for child in node.body], + ) + return newnode + + def visit_matchvalue( + self, node: ast.MatchValue, parent: nodes.NodeNG + ) -> nodes.MatchValue: + newnode = nodes.MatchValue( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit(value=self.visit(node.value, newnode)) + return newnode + + def visit_matchsingleton( + self, node: ast.MatchSingleton, parent: nodes.NodeNG + ) -> nodes.MatchSingleton: + return nodes.MatchSingleton( + value=node.value, + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + + def visit_matchsequence( + self, node: ast.MatchSequence, parent: nodes.NodeNG + ) -> nodes.MatchSequence: + newnode = nodes.MatchSequence( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + patterns=[self.visit(pattern, newnode) for pattern in node.patterns] + ) + return newnode + + def visit_matchmapping( + self, node: ast.MatchMapping, parent: nodes.NodeNG + ) -> nodes.MatchMapping: + newnode = nodes.MatchMapping( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # Add AssignName node for 'node.name' + # https://bugs.python.org/issue43994 + newnode.postinit( + keys=[self.visit(child, newnode) for child in node.keys], + patterns=[self.visit(pattern, newnode) for pattern in node.patterns], + rest=self.visit_assignname(node, newnode, node.rest), + ) + return newnode + + def visit_matchclass( + self, node: ast.MatchClass, parent: nodes.NodeNG + ) -> nodes.MatchClass: + newnode = nodes.MatchClass( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + cls=self.visit(node.cls, newnode), + patterns=[self.visit(pattern, newnode) for pattern in node.patterns], + kwd_attrs=node.kwd_attrs, + kwd_patterns=[ + self.visit(pattern, newnode) for pattern in node.kwd_patterns + ], + ) + return newnode + + def visit_matchstar( + self, node: ast.MatchStar, parent: nodes.NodeNG + ) -> nodes.MatchStar: + newnode = nodes.MatchStar( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # Add AssignName node for 'node.name' + # https://bugs.python.org/issue43994 + newnode.postinit(name=self.visit_assignname(node, newnode, node.name)) + return newnode + + def visit_matchas(self, node: ast.MatchAs, parent: nodes.NodeNG) -> nodes.MatchAs: + newnode = nodes.MatchAs( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + # Add AssignName node for 'node.name' + # https://bugs.python.org/issue43994 + newnode.postinit( + pattern=self.visit(node.pattern, newnode), + name=self.visit_assignname(node, newnode, node.name), + ) + return newnode + + def visit_matchor(self, node: ast.MatchOr, parent: nodes.NodeNG) -> nodes.MatchOr: + newnode = nodes.MatchOr( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + patterns=[self.visit(pattern, newnode) for pattern in node.patterns] + ) + return newnode + + if sys.version_info >= (3, 14): + + def visit_templatestr( + self, node: ast.TemplateStr, parent: nodes.NodeNG + ) -> nodes.TemplateStr: + newnode = nodes.TemplateStr( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + values=[self.visit(value, newnode) for value in node.values] + ) + return newnode + + def visit_interpolation( + self, node: ast.Interpolation, parent: nodes.NodeNG + ) -> nodes.Interpolation: + newnode = nodes.Interpolation( + lineno=node.lineno, + col_offset=node.col_offset, + end_lineno=node.end_lineno, + end_col_offset=node.end_col_offset, + parent=parent, + ) + newnode.postinit( + value=self.visit(node.value, parent), + str=node.str, + conversion=node.conversion, + format_spec=self.visit(node.format_spec, parent), + ) + return newnode diff --git a/.venv/lib/python3.12/site-packages/astroid/test_utils.py b/.venv/lib/python3.12/site-packages/astroid/test_utils.py new file mode 100644 index 0000000..afddb1a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/test_utils.py @@ -0,0 +1,78 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +"""Utility functions for test code that uses astroid ASTs as input.""" + +from __future__ import annotations + +import contextlib +import functools +import sys +import warnings +from collections.abc import Callable + +import pytest + +from astroid import manager, nodes, transforms + + +def require_version(minver: str = "0.0.0", maxver: str = "4.0.0") -> Callable: + """Compare version of python interpreter to the given one and skips the test if older.""" + + def parse(python_version: str) -> tuple[int, ...]: + try: + return tuple(int(v) for v in python_version.split(".")) + except ValueError as e: + msg = f"{python_version} is not a correct version : should be X.Y[.Z]." + raise ValueError(msg) from e + + min_version = parse(minver) + max_version = parse(maxver) + + def check_require_version(f): + current: tuple[int, int, int] = sys.version_info[:3] + if min_version < current <= max_version: + return f + + version: str = ".".join(str(v) for v in sys.version_info) + + @functools.wraps(f) + def new_f(*args, **kwargs): + if current <= min_version: + pytest.skip(f"Needs Python > {minver}. Current version is {version}.") + elif current > max_version: + pytest.skip(f"Needs Python <= {maxver}. Current version is {version}.") + + return new_f + + return check_require_version + + +def get_name_node(start_from, name, index=0): + return [n for n in start_from.nodes_of_class(nodes.Name) if n.name == name][index] + + +@contextlib.contextmanager +def enable_warning(warning): + warnings.simplefilter("always", warning) + try: + yield + finally: + # Reset it to default value, so it will take + # into account the values from the -W flag. + warnings.simplefilter("default", warning) + + +def brainless_manager(): + m = manager.AstroidManager() + # avoid caching into the AstroidManager borg since we get problems + # with other tests : + m.__dict__ = {} + m._failed_import_hooks = [] + m.astroid_cache = {} + m._mod_file_cache = {} + m._transform = transforms.TransformVisitor() + m.extension_package_whitelist = set() + m.module_denylist = set() + return m diff --git a/.venv/lib/python3.12/site-packages/astroid/transforms.py b/.venv/lib/python3.12/site-packages/astroid/transforms.py new file mode 100644 index 0000000..d44ec3d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/transforms.py @@ -0,0 +1,163 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +import warnings +from collections import defaultdict +from collections.abc import Callable +from typing import TYPE_CHECKING, TypeVar, Union, cast, overload + +from astroid.context import _invalidate_cache +from astroid.typing import SuccessfulInferenceResult, TransformFn + +if TYPE_CHECKING: + from astroid import nodes + + _SuccessfulInferenceResultT = TypeVar( + "_SuccessfulInferenceResultT", bound=SuccessfulInferenceResult + ) + _Predicate = Callable[[_SuccessfulInferenceResultT], bool] | None + +# pylint: disable-next=consider-alternative-union-syntax +_Vistables = Union[ + "nodes.NodeNG", list["nodes.NodeNG"], tuple["nodes.NodeNG", ...], str, None +] +_VisitReturns = ( + SuccessfulInferenceResult + | list[SuccessfulInferenceResult] + | tuple[SuccessfulInferenceResult, ...] + | str + | None +) + + +class TransformVisitor: + """A visitor for handling transforms. + + The standard approach of using it is to call + :meth:`~visit` with an *astroid* module and the class + will take care of the rest, walking the tree and running the + transforms for each encountered node. + + Based on its usage in AstroidManager.brain, it should not be reinstantiated. + """ + + def __init__(self) -> None: + # The typing here is incorrect, but it's the best we can do + # Refer to register_transform and unregister_transform for the correct types + self.transforms: defaultdict[ + type[SuccessfulInferenceResult], + list[ + tuple[ + TransformFn[SuccessfulInferenceResult], + _Predicate[SuccessfulInferenceResult], + ] + ], + ] = defaultdict(list) + + def _transform(self, node: SuccessfulInferenceResult) -> SuccessfulInferenceResult: + """Call matching transforms for the given node if any and return the + transformed node. + """ + cls = node.__class__ + + for transform_func, predicate in self.transforms[cls]: + if predicate is None or predicate(node): + ret = transform_func(node) + # if the transformation function returns something, it's + # expected to be a replacement for the node + if ret is not None: + _invalidate_cache() + node = ret + if ret.__class__ != cls: + # Can no longer apply the rest of the transforms. + break + return node + + def _visit(self, node: nodes.NodeNG) -> SuccessfulInferenceResult: + for name in node._astroid_fields: + value = getattr(node, name) + if TYPE_CHECKING: + value = cast(_Vistables, value) + + visited = self._visit_generic(value) + if visited != value: + setattr(node, name, visited) + return self._transform(node) + + @overload + def _visit_generic(self, node: None) -> None: ... + + @overload + def _visit_generic(self, node: str) -> str: ... + + @overload + def _visit_generic( + self, node: list[nodes.NodeNG] + ) -> list[SuccessfulInferenceResult]: ... + + @overload + def _visit_generic( + self, node: tuple[nodes.NodeNG, ...] + ) -> tuple[SuccessfulInferenceResult, ...]: ... + + @overload + def _visit_generic(self, node: nodes.NodeNG) -> SuccessfulInferenceResult: ... + + def _visit_generic(self, node: _Vistables) -> _VisitReturns: + if not node: + return node + if isinstance(node, list): + return [self._visit_generic(child) for child in node] + if isinstance(node, tuple): + return tuple(self._visit_generic(child) for child in node) + if isinstance(node, str): + return node + + try: + return self._visit(node) + except RecursionError: + # Returning the node untransformed is better than giving up. + warnings.warn( + f"Astroid was unable to transform {node}.\n" + "Some functionality will be missing unless the system recursion limit is lifted.\n" + "From pylint, try: --init-hook='import sys; sys.setrecursionlimit(2000)' or higher.", + UserWarning, + stacklevel=0, + ) + return node + + def register_transform( + self, + node_class: type[_SuccessfulInferenceResultT], + transform: TransformFn[_SuccessfulInferenceResultT], + predicate: _Predicate[_SuccessfulInferenceResultT] | None = None, + ) -> None: + """Register `transform(node)` function to be applied on the given node. + + The transform will only be applied if `predicate` is None or returns true + when called with the node as argument. + + The transform function may return a value which is then used to + substitute the original node in the tree. + """ + self.transforms[node_class].append((transform, predicate)) # type: ignore[index, arg-type] + + def unregister_transform( + self, + node_class: type[_SuccessfulInferenceResultT], + transform: TransformFn[_SuccessfulInferenceResultT], + predicate: _Predicate[_SuccessfulInferenceResultT] | None = None, + ) -> None: + """Unregister the given transform.""" + self.transforms[node_class].remove((transform, predicate)) # type: ignore[index, arg-type] + + def visit(self, node: nodes.NodeNG) -> SuccessfulInferenceResult: + """Walk the given astroid *tree* and transform each encountered node. + + Only the nodes which have transforms registered will actually + be replaced or changed. + """ + return self._visit(node) diff --git a/.venv/lib/python3.12/site-packages/astroid/typing.py b/.venv/lib/python3.12/site-packages/astroid/typing.py new file mode 100644 index 0000000..37ea434 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/typing.py @@ -0,0 +1,98 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + +from __future__ import annotations + +from collections.abc import Callable, Generator +from typing import ( + TYPE_CHECKING, + Any, + Generic, + Protocol, + TypedDict, + TypeVar, + Union, +) + +if TYPE_CHECKING: + from collections.abc import Iterator + + from astroid import bases, exceptions, nodes, transforms, util + from astroid.context import InferenceContext + from astroid.interpreter._import import spec + + +class InferenceErrorInfo(TypedDict): + """Store additional Inference error information + raised with StopIteration exception. + """ + + node: nodes.NodeNG + context: InferenceContext | None + + +class AstroidManagerBrain(TypedDict): + """Dictionary to store relevant information for a AstroidManager class.""" + + astroid_cache: dict[str, nodes.Module] + _mod_file_cache: dict[ + tuple[str, str | None], spec.ModuleSpec | exceptions.AstroidImportError + ] + _failed_import_hooks: list[Callable[[str], nodes.Module]] + always_load_extensions: bool + optimize_ast: bool + max_inferable_values: int + extension_package_whitelist: set[str] + _transform: transforms.TransformVisitor + + +# pylint: disable=consider-alternative-union-syntax +InferenceResult = Union["nodes.NodeNG", "util.UninferableBase", "bases.Proxy"] +SuccessfulInferenceResult = Union["nodes.NodeNG", "bases.Proxy"] +_SuccessfulInferenceResultT = TypeVar( + "_SuccessfulInferenceResultT", bound=SuccessfulInferenceResult +) +_SuccessfulInferenceResultT_contra = TypeVar( + "_SuccessfulInferenceResultT_contra", + bound=SuccessfulInferenceResult, + contravariant=True, +) + +ConstFactoryResult = Union[ + "nodes.List", + "nodes.Set", + "nodes.Tuple", + "nodes.Dict", + "nodes.Const", + "nodes.EmptyNode", +] + +InferBinaryOp = Callable[ + [ + _SuccessfulInferenceResultT, + Union["nodes.AugAssign", "nodes.BinOp"], + str, + InferenceResult, + "InferenceContext", + SuccessfulInferenceResult, + ], + Generator[InferenceResult], +] + + +class InferFn(Protocol, Generic[_SuccessfulInferenceResultT_contra]): + def __call__( + self, + node: _SuccessfulInferenceResultT_contra, + context: InferenceContext | None = None, + **kwargs: Any, + ) -> Iterator[InferenceResult]: ... # pragma: no cover + + +class TransformFn(Protocol, Generic[_SuccessfulInferenceResultT]): + def __call__( + self, + node: _SuccessfulInferenceResultT, + infer_function: InferFn[_SuccessfulInferenceResultT] = ..., + ) -> _SuccessfulInferenceResultT | None: ... # pragma: no cover diff --git a/.venv/lib/python3.12/site-packages/astroid/util.py b/.venv/lib/python3.12/site-packages/astroid/util.py new file mode 100644 index 0000000..510b81c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/astroid/util.py @@ -0,0 +1,159 @@ +# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE +# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt + + +from __future__ import annotations + +import warnings +from typing import TYPE_CHECKING, Any, Final, Literal + +from astroid.exceptions import InferenceError + +if TYPE_CHECKING: + from astroid import bases, nodes + from astroid.context import InferenceContext + from astroid.typing import InferenceResult + + +class UninferableBase: + """Special inference object, which is returned when inference fails. + + This is meant to be used as a singleton. Use astroid.util.Uninferable to access it. + """ + + def __repr__(self) -> Literal["Uninferable"]: + return "Uninferable" + + __str__ = __repr__ + + def __getattribute__(self, name: str) -> Any: + if name == "next": + raise AttributeError("next method should not be called") + if name.startswith("__") and name.endswith("__"): + return object.__getattribute__(self, name) + if name == "accept": + return object.__getattribute__(self, name) + return self + + def __call__(self, *args: Any, **kwargs: Any) -> UninferableBase: + return self + + def __bool__(self) -> Literal[False]: + return False + + __nonzero__ = __bool__ + + def accept(self, visitor): + return visitor.visit_uninferable(self) + + +Uninferable: Final = UninferableBase() + + +class BadOperationMessage: + """Object which describes a TypeError occurred somewhere in the inference chain. + + This is not an exception, but a container object which holds the types and + the error which occurred. + """ + + +class BadUnaryOperationMessage(BadOperationMessage): + """Object which describes operational failures on UnaryOps.""" + + def __init__(self, operand, op, error): + self.operand = operand + self.op = op + self.error = error + + @property + def _object_type_helper(self): + from astroid import helpers # pylint: disable=import-outside-toplevel + + return helpers.object_type + + def _object_type(self, obj): + objtype = self._object_type_helper(obj) + if isinstance(objtype, UninferableBase): + return None + + return objtype + + def __str__(self) -> str: + if hasattr(self.operand, "name"): + operand_type = self.operand.name + else: + object_type = self._object_type(self.operand) + if hasattr(object_type, "name"): + operand_type = object_type.name + else: + # Just fallback to as_string + operand_type = object_type.as_string() + + msg = "bad operand type for unary {}: {}" + return msg.format(self.op, operand_type) + + +class BadBinaryOperationMessage(BadOperationMessage): + """Object which describes type errors for BinOps.""" + + def __init__(self, left_type, op, right_type): + self.left_type = left_type + self.right_type = right_type + self.op = op + + def __str__(self) -> str: + msg = "unsupported operand type(s) for {}: {!r} and {!r}" + return msg.format(self.op, self.left_type.name, self.right_type.name) + + +def _instancecheck(cls, other) -> bool: + wrapped = cls.__wrapped__ + other_cls = other.__class__ + is_instance_of = wrapped is other_cls or issubclass(other_cls, wrapped) + warnings.warn( + "%r is deprecated and slated for removal in astroid " + "2.0, use %r instead" % (cls.__class__.__name__, wrapped.__name__), + PendingDeprecationWarning, + stacklevel=2, + ) + return is_instance_of + + +def check_warnings_filter() -> bool: + """Return True if any other than the default DeprecationWarning filter is enabled. + + https://docs.python.org/3/library/warnings.html#default-warning-filter + """ + return any( + issubclass(DeprecationWarning, filter[2]) + and filter[0] != "ignore" + and filter[3] != "__main__" + for filter in warnings.filters + ) + + +def safe_infer( + node: nodes.NodeNG | bases.Proxy | UninferableBase, + context: InferenceContext | None = None, +) -> InferenceResult | None: + """Return the inferred value for the given node. + + Return None if inference failed or if there is some ambiguity (more than + one node has been inferred). + """ + if isinstance(node, UninferableBase): + return node + try: + inferit = node.infer(context=context) + value = next(inferit) + except (InferenceError, StopIteration): + return None + try: + next(inferit) + return None # None if there is ambiguity on the inferred node + except InferenceError: + return None # there is some kind of ambiguity + except StopIteration: + return value diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/LICENSE new file mode 100644 index 0000000..67db858 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/LICENSE @@ -0,0 +1,175 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/METADATA b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/METADATA new file mode 100644 index 0000000..ca95f23 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/METADATA @@ -0,0 +1,204 @@ +Metadata-Version: 2.1 +Name: bandit +Version: 1.8.6 +Summary: Security oriented static analyser for python code. +Home-page: https://bandit.readthedocs.io/ +Author: PyCQA +Author-email: code-quality@python.org +License: Apache-2.0 +Project-URL: Documentation, https://bandit.readthedocs.io/ +Project-URL: Release Notes, https://github.com/PyCQA/bandit/releases +Project-URL: Source Code, https://github.com/PyCQA/bandit +Project-URL: Issue Tracker, https://github.com/PyCQA/bandit/issues +Project-URL: Discord, https://discord.gg/qYxpadCgkx +Project-URL: Sponsor, https://psfmember.org/civicrm/contribute/transact/?reset=1&id=42 +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Console +Classifier: Intended Audience :: Information Technology +Classifier: Intended Audience :: System Administrators +Classifier: Intended Audience :: Developers +Classifier: Operating System :: POSIX :: Linux +Classifier: Operating System :: MacOS :: MacOS X +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Topic :: Security +Requires-Python: >=3.9 +License-File: LICENSE +Requires-Dist: PyYAML>=5.3.1 +Requires-Dist: stevedore>=1.20.0 +Requires-Dist: rich +Requires-Dist: colorama>=0.3.9; platform_system == "Windows" +Provides-Extra: baseline +Requires-Dist: GitPython>=3.1.30; extra == "baseline" +Provides-Extra: sarif +Requires-Dist: sarif-om>=1.0.4; extra == "sarif" +Requires-Dist: jschema-to-python>=1.2.3; extra == "sarif" +Provides-Extra: test +Requires-Dist: coverage>=4.5.4; extra == "test" +Requires-Dist: fixtures>=3.0.0; extra == "test" +Requires-Dist: flake8>=4.0.0; extra == "test" +Requires-Dist: stestr>=2.5.0; extra == "test" +Requires-Dist: testscenarios>=0.5.0; extra == "test" +Requires-Dist: testtools>=2.3.0; extra == "test" +Requires-Dist: beautifulsoup4>=4.8.0; extra == "test" +Requires-Dist: pylint==1.9.4; extra == "test" +Provides-Extra: toml +Requires-Dist: tomli>=1.1.0; python_version < "3.11" and extra == "toml" +Provides-Extra: yaml +Requires-Dist: PyYAML; extra == "yaml" + +.. image:: https://raw.githubusercontent.com/pycqa/bandit/main/logo/logotype-sm.png + :alt: Bandit + +====== + +.. image:: https://github.com/PyCQA/bandit/actions/workflows/pythonpackage.yml/badge.svg?branch=main + :target: https://github.com/PyCQA/bandit/actions?query=workflow%3A%22Build+and+Test+Bandit%22+branch%3Amain + :alt: Build Status + +.. image:: https://readthedocs.org/projects/bandit/badge/?version=latest + :target: https://readthedocs.org/projects/bandit/ + :alt: Docs Status + +.. image:: https://img.shields.io/pypi/v/bandit.svg + :target: https://pypi.org/project/bandit/ + :alt: Latest Version + +.. image:: https://img.shields.io/pypi/pyversions/bandit.svg + :target: https://pypi.org/project/bandit/ + :alt: Python Versions + +.. image:: https://img.shields.io/pypi/format/bandit.svg + :target: https://pypi.org/project/bandit/ + :alt: Format + +.. image:: https://img.shields.io/badge/license-Apache%202-blue.svg + :target: https://github.com/PyCQA/bandit/blob/main/LICENSE + :alt: License + +.. image:: https://img.shields.io/discord/825463413634891776.svg + :target: https://discord.gg/qYxpadCgkx + :alt: Discord + +A security linter from PyCQA + +* Free software: Apache license +* Documentation: https://bandit.readthedocs.io/en/latest/ +* Source: https://github.com/PyCQA/bandit +* Bugs: https://github.com/PyCQA/bandit/issues +* Contributing: https://github.com/PyCQA/bandit/blob/main/CONTRIBUTING.md + +Overview +-------- + +Bandit is a tool designed to find common security issues in Python code. To do +this Bandit processes each file, builds an AST from it, and runs appropriate +plugins against the AST nodes. Once Bandit has finished scanning all the files +it generates a report. + +Bandit was originally developed within the OpenStack Security Project and +later rehomed to PyCQA. + +.. image:: https://raw.githubusercontent.com/pycqa/bandit/main/bandit-terminal.png + :alt: Bandit Example Screen Shot + +Show Your Style +--------------- + +.. image:: https://img.shields.io/badge/security-bandit-yellow.svg + :target: https://github.com/PyCQA/bandit + :alt: Security Status + +Use our badge in your project's README! + +using Markdown:: + + [![security: bandit](https://img.shields.io/badge/security-bandit-yellow.svg)](https://github.com/PyCQA/bandit) + +using RST:: + + .. image:: https://img.shields.io/badge/security-bandit-yellow.svg + :target: https://github.com/PyCQA/bandit + :alt: Security Status + +References +---------- + +Python AST module documentation: https://docs.python.org/3/library/ast.html + +Green Tree Snakes - the missing Python AST docs: +https://greentreesnakes.readthedocs.org/en/latest/ + +Documentation of the various types of AST nodes that Bandit currently covers +or could be extended to cover: +https://greentreesnakes.readthedocs.org/en/latest/nodes.html + +Container Images +---------------- + +Bandit is available as a container image, built within the bandit repository +using GitHub Actions. The image is available on ghcr.io: + +.. code-block:: console + + docker pull ghcr.io/pycqa/bandit/bandit + +The image is built for the following architectures: + +* amd64 +* arm64 +* armv7 +* armv8 + +To pull a specific architecture, use the following format: + +.. code-block:: console + + docker pull --platform= ghcr.io/pycqa/bandit/bandit:latest + +Every image is signed with sigstore cosign and it is possible to verify the +source of origin using the following cosign command: + +.. code-block:: console + + cosign verify ghcr.io/pycqa/bandit/bandit:latest \ + --certificate-identity https://github.com/pycqa/bandit/.github/workflows/build-publish-image.yml@refs/tags/ \ + --certificate-oidc-issuer https://token.actions.githubusercontent.com + +Where `` is the release version of Bandit. + +Sponsors +-------- + +The development of Bandit is made possible by the following sponsors: + +.. list-table:: + :width: 100% + :class: borderless + + * - .. image:: https://avatars.githubusercontent.com/u/34240465?s=200&v=4 + :target: https://opensource.mercedes-benz.com/ + :alt: Mercedes-Benz + :width: 88 + + - .. image:: https://github.githubassets.com/assets/tidelift-8cea37dea8fc.svg + :target: https://tidelift.com/lifter/search/pypi/bandit + :alt: Tidelift + :width: 88 + + - .. image:: https://avatars.githubusercontent.com/u/110237746?s=200&v=4 + :target: https://stacklok.com/ + :alt: Stacklok + :width: 88 + +If you also ❤️ Bandit, please consider sponsoring. + + + diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/RECORD b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/RECORD new file mode 100644 index 0000000..bdb7d45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/RECORD @@ -0,0 +1,151 @@ +../../../bin/bandit,sha256=_ORskzBOKWs2ic1wSu3UQIItUa339N0i-HdrIfoD3x8,228 +../../../bin/bandit-baseline,sha256=rkip_PJDTQ_e5Gd_vWjOGFd1Pd6PC7NFVBr-BB_byQs,232 +../../../bin/bandit-config-generator,sha256=HBXgeKnToC8zdc4IHEB48Ssmig2g6jijdHPd0i9uxyA,240 +../../../share/man/man1/bandit.1,sha256=NN4Fz-GPaGdzNa6feHZXlYFiU-OlvxTdP5zTtGesfNw,6545 +bandit-1.8.6.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +bandit-1.8.6.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142 +bandit-1.8.6.dist-info/METADATA,sha256=Y8pKELmmloSYF5dcvN_JYTOyK1OdFLMAQMSXpJHaOpY,6892 +bandit-1.8.6.dist-info/RECORD,, +bandit-1.8.6.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +bandit-1.8.6.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92 +bandit-1.8.6.dist-info/entry_points.txt,sha256=5BkGFDcmES7Nt3oehRqtoNbe3aLCKycfeyZZkDma8ag,4157 +bandit-1.8.6.dist-info/pbr.json,sha256=umoD1KwsWWa3zgntrll7z3rltyoKhJ-lyRa8K_-B8fI,47 +bandit-1.8.6.dist-info/top_level.txt,sha256=SVJ-U-In_cpe2PQq5ZOlxjEnlAV5MfjvfFuGzg8wgdg,7 +bandit/__init__.py,sha256=yjou8RxyHpx6zHjYcBa4_CUffNYIdERGCPx6PirAo-8,683 +bandit/__main__.py,sha256=PtnKPE5k9V79ArPscEozE9ruwUIMuHlYv3yiCMJ5UBs,571 +bandit/__pycache__/__init__.cpython-312.pyc,, +bandit/__pycache__/__main__.cpython-312.pyc,, +bandit/blacklists/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +bandit/blacklists/__pycache__/__init__.cpython-312.pyc,, +bandit/blacklists/__pycache__/calls.cpython-312.pyc,, +bandit/blacklists/__pycache__/imports.cpython-312.pyc,, +bandit/blacklists/__pycache__/utils.cpython-312.pyc,, +bandit/blacklists/calls.py,sha256=QCVOeBCZMrxLMo4ELUbuhCt2QorTcUe9vzqFDR0T1mU,29363 +bandit/blacklists/imports.py,sha256=3lCND02DoDE9EFHPeFhEegzP3YTZb4dk9RCUA-96Tek,17269 +bandit/blacklists/utils.py,sha256=OBm8dmmQsgp5_dJcm2-eAi69u5eXujeOYDg6zhMNeTM,420 +bandit/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +bandit/cli/__pycache__/__init__.cpython-312.pyc,, +bandit/cli/__pycache__/baseline.cpython-312.pyc,, +bandit/cli/__pycache__/config_generator.cpython-312.pyc,, +bandit/cli/__pycache__/main.cpython-312.pyc,, +bandit/cli/baseline.py,sha256=QN7g0GijtkOaegnFKHjlgddmVd0frkuO7a2gOwC8t3s,7737 +bandit/cli/config_generator.py,sha256=G9wN13D0qlmr76oRrUrld3-IRqXwRkZrQFNH3yz9wNc,6177 +bandit/cli/main.py,sha256=UZrByNZkVzadMiEmrKr8DXsfjuLvLoD1hVrNm7p-uMo,20769 +bandit/core/__init__.py,sha256=NwxNqwUmUIJBQwnsOG58nvi6owEldiyGmkkig0a-4nw,558 +bandit/core/__pycache__/__init__.cpython-312.pyc,, +bandit/core/__pycache__/blacklisting.cpython-312.pyc,, +bandit/core/__pycache__/config.cpython-312.pyc,, +bandit/core/__pycache__/constants.cpython-312.pyc,, +bandit/core/__pycache__/context.cpython-312.pyc,, +bandit/core/__pycache__/docs_utils.cpython-312.pyc,, +bandit/core/__pycache__/extension_loader.cpython-312.pyc,, +bandit/core/__pycache__/issue.cpython-312.pyc,, +bandit/core/__pycache__/manager.cpython-312.pyc,, +bandit/core/__pycache__/meta_ast.cpython-312.pyc,, +bandit/core/__pycache__/metrics.cpython-312.pyc,, +bandit/core/__pycache__/node_visitor.cpython-312.pyc,, +bandit/core/__pycache__/test_properties.cpython-312.pyc,, +bandit/core/__pycache__/test_set.cpython-312.pyc,, +bandit/core/__pycache__/tester.cpython-312.pyc,, +bandit/core/__pycache__/utils.cpython-312.pyc,, +bandit/core/blacklisting.py,sha256=7kzbqIdhpJr5BhuFi9S37IPngPRXr_vlktUTUnSu7yY,2685 +bandit/core/config.py,sha256=6VCkWN3PFGIG9x4FFrNjBvhTffxRZ_KEnipNmlgzav8,9840 +bandit/core/constants.py,sha256=yaB2ks72eOzrnfN7xOr3zFWxsc8eCMnppnIBj-_Jmn0,1220 +bandit/core/context.py,sha256=3N0DZ-_NlEyOUlbe7ZDUdl8Hpb4K9qOiScqOS4T1l7U,10841 +bandit/core/docs_utils.py,sha256=iDWwx4XTnIcAyQhLp6DSyP9C1M2pkgA2Ktb686cyf_I,1779 +bandit/core/extension_loader.py,sha256=6w8qE64A8vYU6wP3ryVZfn7Yxy5SFpw_zEnB5ttWeyU,4039 +bandit/core/issue.py,sha256=BituIds2j2gbSMaMf9iM7N_yzcGo0-qQq38Pp-Ae7ko,7069 +bandit/core/manager.py,sha256=VheBgjhZ7AieM0Wnh2C2Z7JLvXA03k58tOtLj4FxiUA,17283 +bandit/core/meta_ast.py,sha256=rAUdLwsm4eTPN0oXvzyIOfVXsuKV93MLMJsUC86hTWc,1136 +bandit/core/metrics.py,sha256=wDjPmrujRszaqY0zI1W7tVTVYhnC-kHo8wCaf5vYKBA,3454 +bandit/core/node_visitor.py,sha256=aYvXFTwNJuFswnMnn8mhyHr50Zp0kAt7oLHQ3iNAsK4,10822 +bandit/core/test_properties.py,sha256=_letTk7y9Sp5SyRaq2clLeNRjKCWnOxucglGtUMLE5Q,2106 +bandit/core/test_set.py,sha256=jweZ7eK1IGhodabF6DHO_DhBMMrHxFU03R5_z4sSrJc,4054 +bandit/core/tester.py,sha256=X83oF67sqLC23ox8VWGK81v0TzFNfrvAYYouNnQFlho,6511 +bandit/core/utils.py,sha256=OXF2GFUuuN3edZ5JmMhA9-JeDxOAUkHikhXlgI739sM,11800 +bandit/formatters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +bandit/formatters/__pycache__/__init__.cpython-312.pyc,, +bandit/formatters/__pycache__/csv.cpython-312.pyc,, +bandit/formatters/__pycache__/custom.cpython-312.pyc,, +bandit/formatters/__pycache__/html.cpython-312.pyc,, +bandit/formatters/__pycache__/json.cpython-312.pyc,, +bandit/formatters/__pycache__/sarif.cpython-312.pyc,, +bandit/formatters/__pycache__/screen.cpython-312.pyc,, +bandit/formatters/__pycache__/text.cpython-312.pyc,, +bandit/formatters/__pycache__/utils.cpython-312.pyc,, +bandit/formatters/__pycache__/xml.cpython-312.pyc,, +bandit/formatters/__pycache__/yaml.cpython-312.pyc,, +bandit/formatters/csv.py,sha256=IiTLncVx3hnn7A7pJpJ5Y9vxibhxHIvZnGhezhYYKSg,2313 +bandit/formatters/custom.py,sha256=21GgrLiaStknoVD9GU-sWku4nK7hJI4O7-pgyHQacbw,5363 +bandit/formatters/html.py,sha256=VNHmmKAsZWV_S-ROd4DEXJd_Uy1ipOvbD50BzihubKU,8489 +bandit/formatters/json.py,sha256=yM5EZERRPf7jJZu1K45i8kdQkMls8NIHMGI-PkBFHIQ,4298 +bandit/formatters/sarif.py,sha256=KUAXJo-Gt-mOX6CmjF3FQ-hIgo_PQpCkwMUrNgtAWDo,10724 +bandit/formatters/screen.py,sha256=yWcMhWQvX7WgJQmkyNzFCa-BZkZX20lWflhmL3qaUyQ,6780 +bandit/formatters/text.py,sha256=1NioWHBT1SkKmL10cslsW8SThAlxr5PGq-XjP6Dnb0w,5938 +bandit/formatters/utils.py,sha256=MXmcXC1fBeRbURQKqUtqhPMtAEMO6I6-MIwcdrI_UFA,390 +bandit/formatters/xml.py,sha256=pbsa66tYlGfybq6_N5gOhTgKnSQnvJFs39z8zFCwac4,2753 +bandit/formatters/yaml.py,sha256=SiQH5kMFkgPBlRHXxTWqNQe4RqfZPu93HbFOAksdm0E,3431 +bandit/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +bandit/plugins/__pycache__/__init__.cpython-312.pyc,, +bandit/plugins/__pycache__/app_debug.cpython-312.pyc,, +bandit/plugins/__pycache__/asserts.cpython-312.pyc,, +bandit/plugins/__pycache__/crypto_request_no_cert_validation.cpython-312.pyc,, +bandit/plugins/__pycache__/django_sql_injection.cpython-312.pyc,, +bandit/plugins/__pycache__/django_xss.cpython-312.pyc,, +bandit/plugins/__pycache__/exec.cpython-312.pyc,, +bandit/plugins/__pycache__/general_bad_file_permissions.cpython-312.pyc,, +bandit/plugins/__pycache__/general_bind_all_interfaces.cpython-312.pyc,, +bandit/plugins/__pycache__/general_hardcoded_password.cpython-312.pyc,, +bandit/plugins/__pycache__/general_hardcoded_tmp.cpython-312.pyc,, +bandit/plugins/__pycache__/hashlib_insecure_functions.cpython-312.pyc,, +bandit/plugins/__pycache__/huggingface_unsafe_download.cpython-312.pyc,, +bandit/plugins/__pycache__/injection_paramiko.cpython-312.pyc,, +bandit/plugins/__pycache__/injection_shell.cpython-312.pyc,, +bandit/plugins/__pycache__/injection_sql.cpython-312.pyc,, +bandit/plugins/__pycache__/injection_wildcard.cpython-312.pyc,, +bandit/plugins/__pycache__/insecure_ssl_tls.cpython-312.pyc,, +bandit/plugins/__pycache__/jinja2_templates.cpython-312.pyc,, +bandit/plugins/__pycache__/logging_config_insecure_listen.cpython-312.pyc,, +bandit/plugins/__pycache__/mako_templates.cpython-312.pyc,, +bandit/plugins/__pycache__/markupsafe_markup_xss.cpython-312.pyc,, +bandit/plugins/__pycache__/pytorch_load.cpython-312.pyc,, +bandit/plugins/__pycache__/request_without_timeout.cpython-312.pyc,, +bandit/plugins/__pycache__/snmp_security_check.cpython-312.pyc,, +bandit/plugins/__pycache__/ssh_no_host_key_verification.cpython-312.pyc,, +bandit/plugins/__pycache__/tarfile_unsafe_members.cpython-312.pyc,, +bandit/plugins/__pycache__/trojansource.cpython-312.pyc,, +bandit/plugins/__pycache__/try_except_continue.cpython-312.pyc,, +bandit/plugins/__pycache__/try_except_pass.cpython-312.pyc,, +bandit/plugins/__pycache__/weak_cryptographic_key.cpython-312.pyc,, +bandit/plugins/__pycache__/yaml_load.cpython-312.pyc,, +bandit/plugins/app_debug.py,sha256=0Zp-DTiLnuvF-jlZKhCEK-9YzRMcUc7JS6mxWV01hFc,2257 +bandit/plugins/asserts.py,sha256=iOP5WRjdpFc8j62pIkQ_cx-LYDW1aSv8qpfdU78AoXU,2305 +bandit/plugins/crypto_request_no_cert_validation.py,sha256=AyESgBZ7JtzieeJTnRXu0kknf7og1B5GI-6uA3kLbls,2660 +bandit/plugins/django_sql_injection.py,sha256=kEBjKNkXphzBCa7ViyojIntl2a7S5slduPVJVQc2BIo,4791 +bandit/plugins/django_xss.py,sha256=JQYrMYynQkruAaJrJ1umzBSacNH7BqIQ3KphsvIbceE,9898 +bandit/plugins/exec.py,sha256=5kosSmgI8Y2XM4Z_5hwIq7WRTmdpfDM5E7uXYTaGxgo,1357 +bandit/plugins/general_bad_file_permissions.py,sha256=8T59CP-aluBtXkQdyyQJljFiLvK4yVIy3fDSggw53Eg,3340 +bandit/plugins/general_bind_all_interfaces.py,sha256=Mn8YBkfF5Qwhx1QRMHB-5HNnzhR4neP0lI_6LyQr4Gg,1522 +bandit/plugins/general_hardcoded_password.py,sha256=S9XHCZVE93-eMGZZexG378Dtq4E32X2HyfYOFpxiyNU,7767 +bandit/plugins/general_hardcoded_tmp.py,sha256=OjDZgboZF186RK133GQksRqAkneBP14LxnBn88KSjjs,2301 +bandit/plugins/hashlib_insecure_functions.py,sha256=OBfj3H5hUgde18aLvtRyXfVv8xgcjvzrcgMsttf9T5A,4530 +bandit/plugins/huggingface_unsafe_download.py,sha256=Up1y-dxOEPJpnhzCB6c0oiNWhbRNq5UlqocJyjdNa7c,5323 +bandit/plugins/injection_paramiko.py,sha256=bAbqH-4CHQY1ghQpjlck-Pl8DKq4G6jJoAQCY3PSzYw,2049 +bandit/plugins/injection_shell.py,sha256=uhMgbrJD_8P9oaNFOc0qItACd8btJAlDQMIeh9F5p6g,26497 +bandit/plugins/injection_sql.py,sha256=DVrGE7zzHmLXH86MDALSndfXfqLVjMctDWzBCqqlH7Q,4829 +bandit/plugins/injection_wildcard.py,sha256=GeHJchoDxULuaLeCxMyYuJrxVTC1vx8k6JSsXm5BDFM,5016 +bandit/plugins/insecure_ssl_tls.py,sha256=VrR9qyOyY7o1UTBw-Fw06GbE87SO4wD_j127erVfDLQ,10454 +bandit/plugins/jinja2_templates.py,sha256=5-0hPcJqm-THcZn44CSReq9_oy8Ym9QG_YN-vzv3hhg,5806 +bandit/plugins/logging_config_insecure_listen.py,sha256=UzDtLTiIwRnqpPjPIZbdtYb32BT5E5h2hhC2-m9kxGU,1944 +bandit/plugins/mako_templates.py,sha256=HBhxtofo1gGd8dKPxahJ1ELlv60NYrn0rcX4B-MYtpM,2549 +bandit/plugins/markupsafe_markup_xss.py,sha256=QTFwXe99MK26MtEEmn6tlNdy9ojQY0BMZNvKMZ3cAWg,3704 +bandit/plugins/pytorch_load.py,sha256=G8W6dPpAIPU6UyOV_IcKsXAPsVZkwo_m7XpV5R8aRr4,2650 +bandit/plugins/request_without_timeout.py,sha256=IJadPCwQVEAXZ3h3YscgvgDIzdrHM0_jozYiRN30kyE,3087 +bandit/plugins/snmp_security_check.py,sha256=tTdonRdKMKs5Rq4o4OWznW4_rjna2UhnStNLZTKG58I,3716 +bandit/plugins/ssh_no_host_key_verification.py,sha256=1Fqx5k5gtLvnWk4Gz7bQXwqx4TOxIzUGa-ouYBQGNsI,2732 +bandit/plugins/tarfile_unsafe_members.py,sha256=5GJm39nQgHOcsvB3PpAS6nhrNc-thV5MM4CoFzrRd0A,3922 +bandit/plugins/trojansource.py,sha256=wdZMcMsbBumI6OC-q0k7mBIDolX3lruwWSIj2eBnyDU,2513 +bandit/plugins/try_except_continue.py,sha256=K-VrQS_YnifFwz5GC1LAUzGHTbbh9m-LHuDaJwgAS5o,3078 +bandit/plugins/try_except_pass.py,sha256=DwPiiziccoWtgE86aEmU9maKW1W8JuJxqOlnume1nis,2910 +bandit/plugins/weak_cryptographic_key.py,sha256=SGH3YM3LiBrcmuO0GjnQuZCVm42d2C68l1dGKtnwNb8,5544 +bandit/plugins/yaml_load.py,sha256=bOfCZBOcSXB3AAINJbuvcHkHebo-qyMyA4155Lgnx2g,2404 diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/REQUESTED b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/WHEEL new file mode 100644 index 0000000..79d5c89 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.45.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/entry_points.txt new file mode 100644 index 0000000..a37449c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/entry_points.txt @@ -0,0 +1,64 @@ +[bandit.blacklists] +calls = bandit.blacklists.calls:gen_blacklist +imports = bandit.blacklists.imports:gen_blacklist + +[bandit.formatters] +csv = bandit.formatters.csv:report +custom = bandit.formatters.custom:report +html = bandit.formatters.html:report +json = bandit.formatters.json:report +sarif = bandit.formatters.sarif:report +screen = bandit.formatters.screen:report +txt = bandit.formatters.text:report +xml = bandit.formatters.xml:report +yaml = bandit.formatters.yaml:report + +[bandit.plugins] +any_other_function_with_shell_equals_true = bandit.plugins.injection_shell:any_other_function_with_shell_equals_true +assert_used = bandit.plugins.asserts:assert_used +django_extra_used = bandit.plugins.django_sql_injection:django_extra_used +django_mark_safe = bandit.plugins.django_xss:django_mark_safe +django_rawsql_used = bandit.plugins.django_sql_injection:django_rawsql_used +exec_used = bandit.plugins.exec:exec_used +flask_debug_true = bandit.plugins.app_debug:flask_debug_true +hardcoded_bind_all_interfaces = bandit.plugins.general_bind_all_interfaces:hardcoded_bind_all_interfaces +hardcoded_password_default = bandit.plugins.general_hardcoded_password:hardcoded_password_default +hardcoded_password_funcarg = bandit.plugins.general_hardcoded_password:hardcoded_password_funcarg +hardcoded_password_string = bandit.plugins.general_hardcoded_password:hardcoded_password_string +hardcoded_sql_expressions = bandit.plugins.injection_sql:hardcoded_sql_expressions +hardcoded_tmp_directory = bandit.plugins.general_hardcoded_tmp:hardcoded_tmp_directory +hashlib_insecure_functions = bandit.plugins.hashlib_insecure_functions:hashlib +huggingface_unsafe_download = bandit.plugins.huggingface_unsafe_download:huggingface_unsafe_download +jinja2_autoescape_false = bandit.plugins.jinja2_templates:jinja2_autoescape_false +linux_commands_wildcard_injection = bandit.plugins.injection_wildcard:linux_commands_wildcard_injection +logging_config_insecure_listen = bandit.plugins.logging_config_insecure_listen:logging_config_insecure_listen +markupsafe_markup_xss = bandit.plugins.markupsafe_markup_xss:markupsafe_markup_xss +paramiko_calls = bandit.plugins.injection_paramiko:paramiko_calls +pytorch_load = bandit.plugins.pytorch_load:pytorch_load +request_with_no_cert_validation = bandit.plugins.crypto_request_no_cert_validation:request_with_no_cert_validation +request_without_timeout = bandit.plugins.request_without_timeout:request_without_timeout +set_bad_file_permissions = bandit.plugins.general_bad_file_permissions:set_bad_file_permissions +snmp_insecure_version = bandit.plugins.snmp_security_check:snmp_insecure_version_check +snmp_weak_cryptography = bandit.plugins.snmp_security_check:snmp_crypto_check +ssh_no_host_key_verification = bandit.plugins.ssh_no_host_key_verification:ssh_no_host_key_verification +ssl_with_bad_defaults = bandit.plugins.insecure_ssl_tls:ssl_with_bad_defaults +ssl_with_bad_version = bandit.plugins.insecure_ssl_tls:ssl_with_bad_version +ssl_with_no_version = bandit.plugins.insecure_ssl_tls:ssl_with_no_version +start_process_with_a_shell = bandit.plugins.injection_shell:start_process_with_a_shell +start_process_with_no_shell = bandit.plugins.injection_shell:start_process_with_no_shell +start_process_with_partial_path = bandit.plugins.injection_shell:start_process_with_partial_path +subprocess_popen_with_shell_equals_true = bandit.plugins.injection_shell:subprocess_popen_with_shell_equals_true +subprocess_without_shell_equals_true = bandit.plugins.injection_shell:subprocess_without_shell_equals_true +tarfile_unsafe_members = bandit.plugins.tarfile_unsafe_members:tarfile_unsafe_members +trojansource = bandit.plugins.trojansource:trojansource +try_except_continue = bandit.plugins.try_except_continue:try_except_continue +try_except_pass = bandit.plugins.try_except_pass:try_except_pass +use_of_mako_templates = bandit.plugins.mako_templates:use_of_mako_templates +weak_cryptographic_key = bandit.plugins.weak_cryptographic_key:weak_cryptographic_key +yaml_load = bandit.plugins.yaml_load:yaml_load + +[console_scripts] +bandit = bandit.cli.main:main +bandit-baseline = bandit.cli.baseline:main +bandit-config-generator = bandit.cli.config_generator:main + diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/pbr.json b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/pbr.json new file mode 100644 index 0000000..37396cb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/pbr.json @@ -0,0 +1 @@ +{"git_version": "2d0b675", "is_release": false} \ No newline at end of file diff --git a/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/top_level.txt new file mode 100644 index 0000000..4f97a52 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit-1.8.6.dist-info/top_level.txt @@ -0,0 +1 @@ +bandit diff --git a/.venv/lib/python3.12/site-packages/bandit/__init__.py b/.venv/lib/python3.12/site-packages/bandit/__init__.py new file mode 100644 index 0000000..7c7bf00 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/__init__.py @@ -0,0 +1,20 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +from importlib import metadata + +from bandit.core import config # noqa +from bandit.core import context # noqa +from bandit.core import manager # noqa +from bandit.core import meta_ast # noqa +from bandit.core import node_visitor # noqa +from bandit.core import test_set # noqa +from bandit.core import tester # noqa +from bandit.core import utils # noqa +from bandit.core.constants import * # noqa +from bandit.core.issue import * # noqa +from bandit.core.test_properties import * # noqa + +__author__ = metadata.metadata("bandit")["Author"] +__version__ = metadata.version("bandit") diff --git a/.venv/lib/python3.12/site-packages/bandit/__main__.py b/.venv/lib/python3.12/site-packages/bandit/__main__.py new file mode 100644 index 0000000..f43c06a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/__main__.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python +# SPDX-License-Identifier: Apache-2.0 +"""Bandit is a tool designed to find common security issues in Python code. + +Bandit is a tool designed to find common security issues in Python code. +To do this Bandit processes each file, builds an AST from it, and runs +appropriate plugins against the AST nodes. Once Bandit has finished +scanning all the files it generates a report. + +Bandit was originally developed within the OpenStack Security Project and +later rehomed to PyCQA. + +https://bandit.readthedocs.io/ +""" +from bandit.cli import main + +main.main() diff --git a/.venv/lib/python3.12/site-packages/bandit/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d72400c23bdc95684c08014fc5ef2112560eb13 GIT binary patch literal 786 zcmZ9J&ubGw6vt<>$?j%18`^_V6*qz&8X;M%^d>?SZ{npMWDgG0?AVOmU(8HmbJJV@ z1N{?};$Pw^c&IE12;#w;P`vb_ZzidRK9(<^{my$cZ{BD!s zo4{V|8TL~DQ*A}9e-vn{A%)9T2}$$w#f`H=OOezGv1g6-S$tN(#4gV zF+~%qD6l;&@|XMo$N^I9NNLPyP7j#4$R$*2yOkFSBNHyUD$JTp*WM3M+h~I5mGr5CL}NN$|q!ngnUG2 za2z^+5xp+Np)Bc;$!PC!@5$idZf{Rf#fQB|dMJaOrc=pf)Ss|?62a}Fatc?@@AdEQ zL@+ScgW^LNs*IK$MTGF2D?<9^^xVCl70Ebd55zS%PCu`F2J*|o82|PV?)*UE0(H!H zbAfIz5GXh|=IGWOb>^u1EeMaFp9bM92;U!l3AR6M&4Qgb-q&_`JUVTMv$nR|+i!ib H1snebUv1NU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9cf518cfba9d45108fe3f371703cd9cbd19f0c69 GIT binary patch literal 766 zcmb_av5pfl5VbcENA`3*LKJQzU3LZNC;%blPIQP1%2ijea_qTXU%a+udlPL31>zI< z2E?aO(5FJ8q63|1u7TOTMDPK)h@)(zQZYrYAae zVCIpFC7bVpoq2l+B6bc^jnp2AD_h^JV%DC#nxaG%qYIDoe9`YM^S~vVkyeCE**yK; zZFo#K!y1jg91k{oMS+h+u}QZGp_LzC(?@dE^rgRj$<{cm3iYX7?ZDK}DD#c*#q|-)Q7T(a9G@=GyDqPire14bS`t n{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;uO3X{iEYVNO0Se?~7MB$3$H!;pWtPOp>lIY~;;_lhPbtkwwJTx; U+RO;V#URE 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 POI+VRI(Z~{h1LCEEKT^D literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/blacklists/__pycache__/imports.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/blacklists/__pycache__/imports.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a86ab2679c6f6e3eed2cf94cbc9556fee60703c9 GIT binary patch literal 16973 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 F!ynyWi9`SZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/blacklists/calls.py b/.venv/lib/python3.12/site-packages/bandit/blacklists/calls.py new file mode 100644 index 0000000..024e873 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/blacklists/calls.py @@ -0,0 +1,670 @@ +# +# Copyright 2016 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +==================================================== +Blacklist various Python calls known to be dangerous +==================================================== + +This blacklist data checks for a number of Python calls known to have possible +security implications. The following blacklist tests are run against any +function calls encountered in the scanned code base, triggered by encountering +ast.Call nodes. + +B301: pickle +------------ + +Pickle and modules that wrap it can be unsafe when used to +deserialize untrusted data, possible security issue. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B301 | pickle | - pickle.loads | Medium | +| | | - pickle.load | | +| | | - pickle.Unpickler | | +| | | - dill.loads | | +| | | - dill.load | | +| | | - dill.Unpickler | | +| | | - shelve.open | | +| | | - shelve.DbfilenameShelf | | +| | | - jsonpickle.decode | | +| | | - jsonpickle.unpickler.decode | | +| | | - jsonpickle.unpickler.Unpickler | | +| | | - pandas.read_pickle | | ++------+---------------------+------------------------------------+-----------+ + +B302: marshal +------------- + +Deserialization with the marshal module is possibly dangerous. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B302 | marshal | - marshal.load | Medium | +| | | - marshal.loads | | ++------+---------------------+------------------------------------+-----------+ + +B303: md5 +--------- + +Use of insecure MD2, MD4, MD5, or SHA1 hash function. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B303 | md5 | - hashlib.md5 | Medium | +| | | - hashlib.sha1 | | +| | | - Crypto.Hash.MD2.new | | +| | | - Crypto.Hash.MD4.new | | +| | | - Crypto.Hash.MD5.new | | +| | | - Crypto.Hash.SHA.new | | +| | | - Cryptodome.Hash.MD2.new | | +| | | - Cryptodome.Hash.MD4.new | | +| | | - Cryptodome.Hash.MD5.new | | +| | | - Cryptodome.Hash.SHA.new | | +| | | - cryptography.hazmat.primitives | | +| | | .hashes.MD5 | | +| | | - cryptography.hazmat.primitives | | +| | | .hashes.SHA1 | | ++------+---------------------+------------------------------------+-----------+ + +B304 - B305: ciphers and modes +------------------------------ + +Use of insecure cipher or cipher mode. Replace with a known secure cipher such +as AES. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B304 | ciphers | - Crypto.Cipher.ARC2.new | High | +| | | - Crypto.Cipher.ARC4.new | | +| | | - Crypto.Cipher.Blowfish.new | | +| | | - Crypto.Cipher.DES.new | | +| | | - Crypto.Cipher.XOR.new | | +| | | - Cryptodome.Cipher.ARC2.new | | +| | | - Cryptodome.Cipher.ARC4.new | | +| | | - Cryptodome.Cipher.Blowfish.new | | +| | | - Cryptodome.Cipher.DES.new | | +| | | - Cryptodome.Cipher.XOR.new | | +| | | - cryptography.hazmat.primitives | | +| | | .ciphers.algorithms.ARC4 | | +| | | - cryptography.hazmat.primitives | | +| | | .ciphers.algorithms.Blowfish | | +| | | - cryptography.hazmat.primitives | | +| | | .ciphers.algorithms.IDEA | | +| | | - cryptography.hazmat.primitives | | +| | | .ciphers.algorithms.CAST5 | | +| | | - cryptography.hazmat.primitives | | +| | | .ciphers.algorithms.SEED | | +| | | - cryptography.hazmat.primitives | | +| | | .ciphers.algorithms.TripleDES | | ++------+---------------------+------------------------------------+-----------+ +| B305 | cipher_modes | - cryptography.hazmat.primitives | Medium | +| | | .ciphers.modes.ECB | | ++------+---------------------+------------------------------------+-----------+ + +B306: mktemp_q +-------------- + +Use of insecure and deprecated function (mktemp). + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B306 | mktemp_q | - tempfile.mktemp | Medium | ++------+---------------------+------------------------------------+-----------+ + +B307: eval +---------- + +Use of possibly insecure function - consider using safer ast.literal_eval. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B307 | eval | - eval | Medium | ++------+---------------------+------------------------------------+-----------+ + +B308: mark_safe +--------------- + +Use of mark_safe() may expose cross-site scripting vulnerabilities and should +be reviewed. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B308 | mark_safe | - django.utils.safestring.mark_safe| Medium | ++------+---------------------+------------------------------------+-----------+ + +B309: httpsconnection +--------------------- + +The check for this call has been removed. + +Use of HTTPSConnection on older versions of Python prior to 2.7.9 and 3.4.3 do +not provide security, see https://wiki.openstack.org/wiki/OSSN/OSSN-0033 + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B309 | httpsconnection | - httplib.HTTPSConnection | Medium | +| | | - http.client.HTTPSConnection | | +| | | - six.moves.http_client | | +| | | .HTTPSConnection | | ++------+---------------------+------------------------------------+-----------+ + +B310: urllib_urlopen +-------------------- + +Audit url open for permitted schemes. Allowing use of 'file:'' or custom +schemes is often unexpected. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B310 | urllib_urlopen | - urllib.urlopen | Medium | +| | | - urllib.request.urlopen | | +| | | - urllib.urlretrieve | | +| | | - urllib.request.urlretrieve | | +| | | - urllib.URLopener | | +| | | - urllib.request.URLopener | | +| | | - urllib.FancyURLopener | | +| | | - urllib.request.FancyURLopener | | +| | | - urllib2.urlopen | | +| | | - urllib2.Request | | +| | | - six.moves.urllib.request.urlopen | | +| | | - six.moves.urllib.request | | +| | | .urlretrieve | | +| | | - six.moves.urllib.request | | +| | | .URLopener | | +| | | - six.moves.urllib.request | | +| | | .FancyURLopener | | ++------+---------------------+------------------------------------+-----------+ + +B311: random +------------ + +Standard pseudo-random generators are not suitable for security/cryptographic +purposes. Consider using the secrets module instead: +https://docs.python.org/library/secrets.html + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B311 | random | - random.Random | Low | +| | | - random.random | | +| | | - random.randrange | | +| | | - random.randint | | +| | | - random.choice | | +| | | - random.choices | | +| | | - random.uniform | | +| | | - random.triangular | | +| | | - random.randbytes | | +| | | - random.randrange | | +| | | - random.sample | | +| | | - random.getrandbits | | ++------+---------------------+------------------------------------+-----------+ + +B312: telnetlib +--------------- + +Telnet-related functions are being called. Telnet is considered insecure. Use +SSH or some other encrypted protocol. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B312 | telnetlib | - telnetlib.\* | High | ++------+---------------------+------------------------------------+-----------+ + +B313 - B319: XML +---------------- + +Most of this is based off of Christian Heimes' work on defusedxml: +https://pypi.org/project/defusedxml/#defusedxml-sax + +Using various XLM methods to parse untrusted XML data is known to be vulnerable +to XML attacks. Methods should be replaced with their defusedxml equivalents. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B313 | xml_bad_cElementTree| - xml.etree.cElementTree.parse | Medium | +| | | - xml.etree.cElementTree.iterparse | | +| | | - xml.etree.cElementTree.fromstring| | +| | | - xml.etree.cElementTree.XMLParser | | ++------+---------------------+------------------------------------+-----------+ +| B314 | xml_bad_ElementTree | - xml.etree.ElementTree.parse | Medium | +| | | - xml.etree.ElementTree.iterparse | | +| | | - xml.etree.ElementTree.fromstring | | +| | | - xml.etree.ElementTree.XMLParser | | ++------+---------------------+------------------------------------+-----------+ +| B315 | xml_bad_expatreader | - xml.sax.expatreader.create_parser| Medium | ++------+---------------------+------------------------------------+-----------+ +| B316 | xml_bad_expatbuilder| - xml.dom.expatbuilder.parse | Medium | +| | | - xml.dom.expatbuilder.parseString | | ++------+---------------------+------------------------------------+-----------+ +| B317 | xml_bad_sax | - xml.sax.parse | Medium | +| | | - xml.sax.parseString | | +| | | - xml.sax.make_parser | | ++------+---------------------+------------------------------------+-----------+ +| B318 | xml_bad_minidom | - xml.dom.minidom.parse | Medium | +| | | - xml.dom.minidom.parseString | | ++------+---------------------+------------------------------------+-----------+ +| B319 | xml_bad_pulldom | - xml.dom.pulldom.parse | Medium | +| | | - xml.dom.pulldom.parseString | | ++------+---------------------+------------------------------------+-----------+ + +B320: xml_bad_etree +------------------- + +The check for this call has been removed. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B320 | xml_bad_etree | - lxml.etree.parse | Medium | +| | | - lxml.etree.fromstring | | +| | | - lxml.etree.RestrictedElement | | +| | | - lxml.etree.GlobalParserTLS | | +| | | - lxml.etree.getDefaultParser | | +| | | - lxml.etree.check_docinfo | | ++------+---------------------+------------------------------------+-----------+ + +B321: ftplib +------------ + +FTP-related functions are being called. FTP is considered insecure. Use +SSH/SFTP/SCP or some other encrypted protocol. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B321 | ftplib | - ftplib.\* | High | ++------+---------------------+------------------------------------+-----------+ + +B322: input +----------- + +The check for this call has been removed. + +The input method in Python 2 will read from standard input, evaluate and +run the resulting string as python source code. This is similar, though in +many ways worse, than using eval. On Python 2, use raw_input instead, input +is safe in Python 3. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B322 | input | - input | High | ++------+---------------------+------------------------------------+-----------+ + +B323: unverified_context +------------------------ + +By default, Python will create a secure, verified ssl context for use in such +classes as HTTPSConnection. However, it still allows using an insecure +context via the _create_unverified_context that reverts to the previous +behavior that does not validate certificates or perform hostname checks. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B323 | unverified_context | - ssl._create_unverified_context | Medium | ++------+---------------------+------------------------------------+-----------+ + +B325: tempnam +-------------- + +The check for this call has been removed. + +Use of os.tempnam() and os.tmpnam() is vulnerable to symlink attacks. Consider +using tmpfile() instead. + +For further information: + https://docs.python.org/2.7/library/os.html#os.tempnam + https://docs.python.org/3/whatsnew/3.0.html?highlight=tempnam + https://bugs.python.org/issue17880 + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Calls | Severity | ++======+=====================+====================================+===========+ +| B325 | tempnam | - os.tempnam | Medium | +| | | - os.tmpnam | | ++------+---------------------+------------------------------------+-----------+ + +""" +from bandit.blacklists import utils +from bandit.core import issue + + +def gen_blacklist(): + """Generate a list of items to blacklist. + + Methods of this type, "bandit.blacklist" plugins, are used to build a list + of items that bandit's built in blacklisting tests will use to trigger + issues. They replace the older blacklist* test plugins and allow + blacklisted items to have a unique bandit ID for filtering and profile + usage. + + :return: a dictionary mapping node types to a list of blacklist data + """ + sets = [] + sets.append( + utils.build_conf_dict( + "pickle", + "B301", + issue.Cwe.DESERIALIZATION_OF_UNTRUSTED_DATA, + [ + "pickle.loads", + "pickle.load", + "pickle.Unpickler", + "dill.loads", + "dill.load", + "dill.Unpickler", + "shelve.open", + "shelve.DbfilenameShelf", + "jsonpickle.decode", + "jsonpickle.unpickler.decode", + "jsonpickle.unpickler.Unpickler", + "pandas.read_pickle", + ], + "Pickle and modules that wrap it can be unsafe when used to " + "deserialize untrusted data, possible security issue.", + ) + ) + + sets.append( + utils.build_conf_dict( + "marshal", + "B302", + issue.Cwe.DESERIALIZATION_OF_UNTRUSTED_DATA, + ["marshal.load", "marshal.loads"], + "Deserialization with the marshal module is possibly dangerous.", + ) + ) + + sets.append( + utils.build_conf_dict( + "md5", + "B303", + issue.Cwe.BROKEN_CRYPTO, + [ + "Crypto.Hash.MD2.new", + "Crypto.Hash.MD4.new", + "Crypto.Hash.MD5.new", + "Crypto.Hash.SHA.new", + "Cryptodome.Hash.MD2.new", + "Cryptodome.Hash.MD4.new", + "Cryptodome.Hash.MD5.new", + "Cryptodome.Hash.SHA.new", + "cryptography.hazmat.primitives.hashes.MD5", + "cryptography.hazmat.primitives.hashes.SHA1", + ], + "Use of insecure MD2, MD4, MD5, or SHA1 hash function.", + ) + ) + + sets.append( + utils.build_conf_dict( + "ciphers", + "B304", + issue.Cwe.BROKEN_CRYPTO, + [ + "Crypto.Cipher.ARC2.new", + "Crypto.Cipher.ARC4.new", + "Crypto.Cipher.Blowfish.new", + "Crypto.Cipher.DES.new", + "Crypto.Cipher.XOR.new", + "Cryptodome.Cipher.ARC2.new", + "Cryptodome.Cipher.ARC4.new", + "Cryptodome.Cipher.Blowfish.new", + "Cryptodome.Cipher.DES.new", + "Cryptodome.Cipher.XOR.new", + "cryptography.hazmat.primitives.ciphers.algorithms.ARC4", + "cryptography.hazmat.primitives.ciphers.algorithms.Blowfish", + "cryptography.hazmat.primitives.ciphers.algorithms.CAST5", + "cryptography.hazmat.primitives.ciphers.algorithms.IDEA", + "cryptography.hazmat.primitives.ciphers.algorithms.SEED", + "cryptography.hazmat.primitives.ciphers.algorithms.TripleDES", + ], + "Use of insecure cipher {name}. Replace with a known secure" + " cipher such as AES.", + "HIGH", + ) + ) + + sets.append( + utils.build_conf_dict( + "cipher_modes", + "B305", + issue.Cwe.BROKEN_CRYPTO, + ["cryptography.hazmat.primitives.ciphers.modes.ECB"], + "Use of insecure cipher mode {name}.", + ) + ) + + sets.append( + utils.build_conf_dict( + "mktemp_q", + "B306", + issue.Cwe.INSECURE_TEMP_FILE, + ["tempfile.mktemp"], + "Use of insecure and deprecated function (mktemp).", + ) + ) + + sets.append( + utils.build_conf_dict( + "eval", + "B307", + issue.Cwe.OS_COMMAND_INJECTION, + ["eval"], + "Use of possibly insecure function - consider using safer " + "ast.literal_eval.", + ) + ) + + sets.append( + utils.build_conf_dict( + "mark_safe", + "B308", + issue.Cwe.XSS, + ["django.utils.safestring.mark_safe"], + "Use of mark_safe() may expose cross-site scripting " + "vulnerabilities and should be reviewed.", + ) + ) + + # skipped B309 as the check for a call to httpsconnection has been removed + + sets.append( + utils.build_conf_dict( + "urllib_urlopen", + "B310", + issue.Cwe.PATH_TRAVERSAL, + [ + "urllib.request.urlopen", + "urllib.request.urlretrieve", + "urllib.request.URLopener", + "urllib.request.FancyURLopener", + "six.moves.urllib.request.urlopen", + "six.moves.urllib.request.urlretrieve", + "six.moves.urllib.request.URLopener", + "six.moves.urllib.request.FancyURLopener", + ], + "Audit url open for permitted schemes. Allowing use of file:/ or " + "custom schemes is often unexpected.", + ) + ) + + sets.append( + utils.build_conf_dict( + "random", + "B311", + issue.Cwe.INSUFFICIENT_RANDOM_VALUES, + [ + "random.Random", + "random.random", + "random.randrange", + "random.randint", + "random.choice", + "random.choices", + "random.uniform", + "random.triangular", + "random.randbytes", + "random.sample", + "random.randrange", + "random.getrandbits", + ], + "Standard pseudo-random generators are not suitable for " + "security/cryptographic purposes.", + "LOW", + ) + ) + + sets.append( + utils.build_conf_dict( + "telnetlib", + "B312", + issue.Cwe.CLEARTEXT_TRANSMISSION, + ["telnetlib.Telnet"], + "Telnet-related functions are being called. Telnet is considered " + "insecure. Use SSH or some other encrypted protocol.", + "HIGH", + ) + ) + + # Most of this is based off of Christian Heimes' work on defusedxml: + # https://pypi.org/project/defusedxml/#defusedxml-sax + + xml_msg = ( + "Using {name} to parse untrusted XML data is known to be " + "vulnerable to XML attacks. Replace {name} with its " + "defusedxml equivalent function or make sure " + "defusedxml.defuse_stdlib() is called" + ) + + sets.append( + utils.build_conf_dict( + "xml_bad_cElementTree", + "B313", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + [ + "xml.etree.cElementTree.parse", + "xml.etree.cElementTree.iterparse", + "xml.etree.cElementTree.fromstring", + "xml.etree.cElementTree.XMLParser", + ], + xml_msg, + ) + ) + + sets.append( + utils.build_conf_dict( + "xml_bad_ElementTree", + "B314", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + [ + "xml.etree.ElementTree.parse", + "xml.etree.ElementTree.iterparse", + "xml.etree.ElementTree.fromstring", + "xml.etree.ElementTree.XMLParser", + ], + xml_msg, + ) + ) + + sets.append( + utils.build_conf_dict( + "xml_bad_expatreader", + "B315", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.sax.expatreader.create_parser"], + xml_msg, + ) + ) + + sets.append( + utils.build_conf_dict( + "xml_bad_expatbuilder", + "B316", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.dom.expatbuilder.parse", "xml.dom.expatbuilder.parseString"], + xml_msg, + ) + ) + + sets.append( + utils.build_conf_dict( + "xml_bad_sax", + "B317", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.sax.parse", "xml.sax.parseString", "xml.sax.make_parser"], + xml_msg, + ) + ) + + sets.append( + utils.build_conf_dict( + "xml_bad_minidom", + "B318", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.dom.minidom.parse", "xml.dom.minidom.parseString"], + xml_msg, + ) + ) + + sets.append( + utils.build_conf_dict( + "xml_bad_pulldom", + "B319", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.dom.pulldom.parse", "xml.dom.pulldom.parseString"], + xml_msg, + ) + ) + + # skipped B320 as the check for a call to lxml.etree has been removed + + # end of XML tests + + sets.append( + utils.build_conf_dict( + "ftplib", + "B321", + issue.Cwe.CLEARTEXT_TRANSMISSION, + ["ftplib.FTP"], + "FTP-related functions are being called. FTP is considered " + "insecure. Use SSH/SFTP/SCP or some other encrypted protocol.", + "HIGH", + ) + ) + + # skipped B322 as the check for a call to input() has been removed + + sets.append( + utils.build_conf_dict( + "unverified_context", + "B323", + issue.Cwe.IMPROPER_CERT_VALIDATION, + ["ssl._create_unverified_context"], + "By default, Python will create a secure, verified ssl context for" + " use in such classes as HTTPSConnection. However, it still allows" + " using an insecure context via the _create_unverified_context " + "that reverts to the previous behavior that does not validate " + "certificates or perform hostname checks.", + ) + ) + + # skipped B324 (used in bandit/plugins/hashlib_new_insecure_functions.py) + + # skipped B325 as the check for a call to os.tempnam and os.tmpnam have + # been removed + + return {"Call": sets} diff --git a/.venv/lib/python3.12/site-packages/bandit/blacklists/imports.py b/.venv/lib/python3.12/site-packages/bandit/blacklists/imports.py new file mode 100644 index 0000000..b15155b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/blacklists/imports.py @@ -0,0 +1,425 @@ +# +# Copyright 2016 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +====================================================== +Blacklist various Python imports known to be dangerous +====================================================== + +This blacklist data checks for a number of Python modules known to have +possible security implications. The following blacklist tests are run against +any import statements or calls encountered in the scanned code base. + +Note that the XML rules listed here are mostly based off of Christian Heimes' +work on defusedxml: https://pypi.org/project/defusedxml/ + +B401: import_telnetlib +---------------------- + +A telnet-related module is being imported. Telnet is considered insecure. Use +SSH or some other encrypted protocol. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B401 | import_telnetlib | - telnetlib | high | ++------+---------------------+------------------------------------+-----------+ + +B402: import_ftplib +------------------- +A FTP-related module is being imported. FTP is considered insecure. Use +SSH/SFTP/SCP or some other encrypted protocol. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B402 | import_ftplib | - ftplib | high | ++------+---------------------+------------------------------------+-----------+ + +B403: import_pickle +------------------- + +Consider possible security implications associated with these modules. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B403 | import_pickle | - pickle | low | +| | | - cPickle | | +| | | - dill | | +| | | - shelve | | ++------+---------------------+------------------------------------+-----------+ + +B404: import_subprocess +----------------------- + +Consider possible security implications associated with these modules. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B404 | import_subprocess | - subprocess | low | ++------+---------------------+------------------------------------+-----------+ + + +B405: import_xml_etree +---------------------- + +Using various methods to parse untrusted XML data is known to be vulnerable to +XML attacks. Replace vulnerable imports with the equivalent defusedxml package, +or make sure defusedxml.defuse_stdlib() is called. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B405 | import_xml_etree | - xml.etree.cElementTree | low | +| | | - xml.etree.ElementTree | | ++------+---------------------+------------------------------------+-----------+ + +B406: import_xml_sax +-------------------- + +Using various methods to parse untrusted XML data is known to be vulnerable to +XML attacks. Replace vulnerable imports with the equivalent defusedxml package, +or make sure defusedxml.defuse_stdlib() is called. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B406 | import_xml_sax | - xml.sax | low | ++------+---------------------+------------------------------------+-----------+ + +B407: import_xml_expat +---------------------- + +Using various methods to parse untrusted XML data is known to be vulnerable to +XML attacks. Replace vulnerable imports with the equivalent defusedxml package, +or make sure defusedxml.defuse_stdlib() is called. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B407 | import_xml_expat | - xml.dom.expatbuilder | low | ++------+---------------------+------------------------------------+-----------+ + +B408: import_xml_minidom +------------------------ + +Using various methods to parse untrusted XML data is known to be vulnerable to +XML attacks. Replace vulnerable imports with the equivalent defusedxml package, +or make sure defusedxml.defuse_stdlib() is called. + + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B408 | import_xml_minidom | - xml.dom.minidom | low | ++------+---------------------+------------------------------------+-----------+ + +B409: import_xml_pulldom +------------------------ + +Using various methods to parse untrusted XML data is known to be vulnerable to +XML attacks. Replace vulnerable imports with the equivalent defusedxml package, +or make sure defusedxml.defuse_stdlib() is called. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B409 | import_xml_pulldom | - xml.dom.pulldom | low | ++------+---------------------+------------------------------------+-----------+ + +B410: import_lxml +----------------- + +This import blacklist has been removed. The information here has been +left for historical purposes. + +Using various methods to parse untrusted XML data is known to be vulnerable to +XML attacks. Replace vulnerable imports with the equivalent defusedxml package. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B410 | import_lxml | - lxml | low | ++------+---------------------+------------------------------------+-----------+ + +B411: import_xmlrpclib +---------------------- + +XMLRPC is particularly dangerous as it is also concerned with communicating +data over a network. Use defusedxml.xmlrpc.monkey_patch() function to +monkey-patch xmlrpclib and mitigate remote XML attacks. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B411 | import_xmlrpclib | - xmlrpc | high | ++------+---------------------+------------------------------------+-----------+ + +B412: import_httpoxy +-------------------- +httpoxy is a set of vulnerabilities that affect application code running in +CGI, or CGI-like environments. The use of CGI for web applications should be +avoided to prevent this class of attack. More details are available +at https://httpoxy.org/. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B412 | import_httpoxy | - wsgiref.handlers.CGIHandler | high | +| | | - twisted.web.twcgi.CGIScript | | ++------+---------------------+------------------------------------+-----------+ + +B413: import_pycrypto +--------------------- +pycrypto library is known to have publicly disclosed buffer overflow +vulnerability https://github.com/dlitz/pycrypto/issues/176. It is no longer +actively maintained and has been deprecated in favor of pyca/cryptography +library. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B413 | import_pycrypto | - Crypto.Cipher | high | +| | | - Crypto.Hash | | +| | | - Crypto.IO | | +| | | - Crypto.Protocol | | +| | | - Crypto.PublicKey | | +| | | - Crypto.Random | | +| | | - Crypto.Signature | | +| | | - Crypto.Util | | ++------+---------------------+------------------------------------+-----------+ + +B414: import_pycryptodome +------------------------- +This import blacklist has been removed. The information here has been +left for historical purposes. + +pycryptodome is a direct fork of pycrypto that has not fully addressed +the issues inherent in PyCrypto. It seems to exist, mainly, as an API +compatible continuation of pycrypto and should be deprecated in favor +of pyca/cryptography which has more support among the Python community. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B414 | import_pycryptodome | - Cryptodome.Cipher | high | +| | | - Cryptodome.Hash | | +| | | - Cryptodome.IO | | +| | | - Cryptodome.Protocol | | +| | | - Cryptodome.PublicKey | | +| | | - Cryptodome.Random | | +| | | - Cryptodome.Signature | | +| | | - Cryptodome.Util | | ++------+---------------------+------------------------------------+-----------+ + +B415: import_pyghmi +------------------- +An IPMI-related module is being imported. IPMI is considered insecure. Use +an encrypted protocol. + ++------+---------------------+------------------------------------+-----------+ +| ID | Name | Imports | Severity | ++======+=====================+====================================+===========+ +| B415 | import_pyghmi | - pyghmi | high | ++------+---------------------+------------------------------------+-----------+ + +""" +from bandit.blacklists import utils +from bandit.core import issue + + +def gen_blacklist(): + """Generate a list of items to blacklist. + + Methods of this type, "bandit.blacklist" plugins, are used to build a list + of items that bandit's built in blacklisting tests will use to trigger + issues. They replace the older blacklist* test plugins and allow + blacklisted items to have a unique bandit ID for filtering and profile + usage. + + :return: a dictionary mapping node types to a list of blacklist data + """ + sets = [] + sets.append( + utils.build_conf_dict( + "import_telnetlib", + "B401", + issue.Cwe.CLEARTEXT_TRANSMISSION, + ["telnetlib"], + "A telnet-related module is being imported. Telnet is " + "considered insecure. Use SSH or some other encrypted protocol.", + "HIGH", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_ftplib", + "B402", + issue.Cwe.CLEARTEXT_TRANSMISSION, + ["ftplib"], + "A FTP-related module is being imported. FTP is considered " + "insecure. Use SSH/SFTP/SCP or some other encrypted protocol.", + "HIGH", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_pickle", + "B403", + issue.Cwe.DESERIALIZATION_OF_UNTRUSTED_DATA, + ["pickle", "cPickle", "dill", "shelve"], + "Consider possible security implications associated with " + "{name} module.", + "LOW", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_subprocess", + "B404", + issue.Cwe.OS_COMMAND_INJECTION, + ["subprocess"], + "Consider possible security implications associated with the " + "subprocess module.", + "LOW", + ) + ) + + # Most of this is based off of Christian Heimes' work on defusedxml: + # https://pypi.org/project/defusedxml/#defusedxml-sax + + xml_msg = ( + "Using {name} to parse untrusted XML data is known to be " + "vulnerable to XML attacks. Replace {name} with the equivalent " + "defusedxml package, or make sure defusedxml.defuse_stdlib() " + "is called." + ) + + sets.append( + utils.build_conf_dict( + "import_xml_etree", + "B405", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.etree.cElementTree", "xml.etree.ElementTree"], + xml_msg, + "LOW", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_xml_sax", + "B406", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.sax"], + xml_msg, + "LOW", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_xml_expat", + "B407", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.dom.expatbuilder"], + xml_msg, + "LOW", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_xml_minidom", + "B408", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.dom.minidom"], + xml_msg, + "LOW", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_xml_pulldom", + "B409", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xml.dom.pulldom"], + xml_msg, + "LOW", + ) + ) + + # skipped B410 as the check for import_lxml has been removed + + sets.append( + utils.build_conf_dict( + "import_xmlrpclib", + "B411", + issue.Cwe.IMPROPER_INPUT_VALIDATION, + ["xmlrpc"], + "Using {name} to parse untrusted XML data is known to be " + "vulnerable to XML attacks. Use defusedxml.xmlrpc.monkey_patch() " + "function to monkey-patch xmlrpclib and mitigate XML " + "vulnerabilities.", + "HIGH", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_httpoxy", + "B412", + issue.Cwe.IMPROPER_ACCESS_CONTROL, + [ + "wsgiref.handlers.CGIHandler", + "twisted.web.twcgi.CGIScript", + "twisted.web.twcgi.CGIDirectory", + ], + "Consider possible security implications associated with " + "{name} module.", + "HIGH", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_pycrypto", + "B413", + issue.Cwe.BROKEN_CRYPTO, + [ + "Crypto.Cipher", + "Crypto.Hash", + "Crypto.IO", + "Crypto.Protocol", + "Crypto.PublicKey", + "Crypto.Random", + "Crypto.Signature", + "Crypto.Util", + ], + "The pyCrypto library and its module {name} are no longer actively" + " maintained and have been deprecated. " + "Consider using pyca/cryptography library.", + "HIGH", + ) + ) + + sets.append( + utils.build_conf_dict( + "import_pyghmi", + "B415", + issue.Cwe.CLEARTEXT_TRANSMISSION, + ["pyghmi"], + "An IPMI-related module is being imported. IPMI is considered " + "insecure. Use an encrypted protocol.", + "HIGH", + ) + ) + + return {"Import": sets, "ImportFrom": sets, "Call": sets} diff --git a/.venv/lib/python3.12/site-packages/bandit/blacklists/utils.py b/.venv/lib/python3.12/site-packages/bandit/blacklists/utils.py new file mode 100644 index 0000000..fa4a5c9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/blacklists/utils.py @@ -0,0 +1,17 @@ +# +# Copyright 2016 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r"""Utils module.""" + + +def build_conf_dict(name, bid, cwe, qualnames, message, level="MEDIUM"): + """Build and return a blacklist configuration dict.""" + return { + "name": name, + "id": bid, + "cwe": cwe, + "message": message, + "qualnames": qualnames, + "level": level, + } diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/__init__.py b/.venv/lib/python3.12/site-packages/bandit/cli/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..727cfe58deb42e9d43bb87bc2418435aafb19bc1 GIT binary patch literal 195 zcmX@j%ge<81g6aYGeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!O42XSFUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;uO3X{iEYVNS$<&XJ&&M5r~UH OjE~HWjEqIhKo$ViR5IxR literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/baseline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/baseline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..58710a08dd7e67e2e69f2bc9a97cfbff9c9d4736 GIT binary patch literal 8066 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 Hg8IJ!7N#wX literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/config_generator.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/config_generator.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f7a8e5adb9c363f487f6b77816876bbb155b9c7 GIT binary patch literal 8433 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/main.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/cli/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c06fda44da1276597b759b28cdad50a281a9b30 GIT binary patch literal 23980 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 J23t><{Xd;}5!(O& literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/baseline.py b/.venv/lib/python3.12/site-packages/bandit/cli/baseline.py new file mode 100644 index 0000000..252ceb1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/cli/baseline.py @@ -0,0 +1,249 @@ +# +# Copyright 2015 Hewlett-Packard Enterprise +# +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################# +# Bandit Baseline is a tool that runs Bandit against a Git commit, and compares +# the current commit findings to the parent commit findings. +# To do this it checks out the parent commit, runs Bandit (with any provided +# filters or profiles), checks out the current commit, runs Bandit, and then +# reports on any new findings. +# ############################################################################# +"""Bandit is a tool designed to find common security issues in Python code.""" +import argparse +import contextlib +import logging +import os +import shutil +import subprocess # nosec: B404 +import sys +import tempfile + +try: + import git +except ImportError: + git = None + +bandit_args = sys.argv[1:] +baseline_tmp_file = "_bandit_baseline_run.json_" +current_commit = None +default_output_format = "terminal" +LOG = logging.getLogger(__name__) +repo = None +report_basename = "bandit_baseline_result" +valid_baseline_formats = ["txt", "html", "json"] + +"""baseline.py""" + + +def main(): + """Execute Bandit.""" + # our cleanup function needs this and can't be passed arguments + global current_commit + global repo + + parent_commit = None + output_format = None + repo = None + report_fname = None + + init_logger() + + output_format, repo, report_fname = initialize() + + if not repo: + sys.exit(2) + + # #################### Find current and parent commits #################### + try: + commit = repo.commit() + current_commit = commit.hexsha + LOG.info("Got current commit: [%s]", commit.name_rev) + + commit = commit.parents[0] + parent_commit = commit.hexsha + LOG.info("Got parent commit: [%s]", commit.name_rev) + + except git.GitCommandError: + LOG.error("Unable to get current or parent commit") + sys.exit(2) + except IndexError: + LOG.error("Parent commit not available") + sys.exit(2) + + # #################### Run Bandit against both commits #################### + output_type = ( + ["-f", "txt"] + if output_format == default_output_format + else ["-o", report_fname] + ) + + with baseline_setup() as t: + bandit_tmpfile = f"{t}/{baseline_tmp_file}" + + steps = [ + { + "message": "Getting Bandit baseline results", + "commit": parent_commit, + "args": bandit_args + ["-f", "json", "-o", bandit_tmpfile], + }, + { + "message": "Comparing Bandit results to baseline", + "commit": current_commit, + "args": bandit_args + ["-b", bandit_tmpfile] + output_type, + }, + ] + + return_code = None + + for step in steps: + repo.head.reset(commit=step["commit"], working_tree=True) + + LOG.info(step["message"]) + + bandit_command = ["bandit"] + step["args"] + + try: + output = subprocess.check_output(bandit_command) # nosec: B603 + except subprocess.CalledProcessError as e: + output = e.output + return_code = e.returncode + else: + return_code = 0 + output = output.decode("utf-8") # subprocess returns bytes + + if return_code not in [0, 1]: + LOG.error( + "Error running command: %s\nOutput: %s\n", + bandit_args, + output, + ) + + # #################### Output and exit #################################### + # print output or display message about written report + if output_format == default_output_format: + print(output) + else: + LOG.info("Successfully wrote %s", report_fname) + + # exit with the code the last Bandit run returned + sys.exit(return_code) + + +# #################### Clean up before exit ################################### +@contextlib.contextmanager +def baseline_setup(): + """Baseline setup by creating temp folder and resetting repo.""" + d = tempfile.mkdtemp() + yield d + shutil.rmtree(d, True) + + if repo: + repo.head.reset(commit=current_commit, working_tree=True) + + +# #################### Setup logging ########################################## +def init_logger(): + """Init logger.""" + LOG.handlers = [] + log_level = logging.INFO + log_format_string = "[%(levelname)7s ] %(message)s" + logging.captureWarnings(True) + LOG.setLevel(log_level) + handler = logging.StreamHandler(sys.stdout) + handler.setFormatter(logging.Formatter(log_format_string)) + LOG.addHandler(handler) + + +# #################### Perform initialization and validate assumptions ######## +def initialize(): + """Initialize arguments and output formats.""" + valid = True + + # #################### Parse Args ######################################### + parser = argparse.ArgumentParser( + description="Bandit Baseline - Generates Bandit results compared to " + "a baseline", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog="Additional Bandit arguments such as severity filtering (-ll) " + "can be added and will be passed to Bandit.", + ) + + parser.add_argument( + "targets", + metavar="targets", + type=str, + nargs="+", + help="source file(s) or directory(s) to be tested", + ) + + parser.add_argument( + "-f", + dest="output_format", + action="store", + default="terminal", + help="specify output format", + choices=valid_baseline_formats, + ) + + args, _ = parser.parse_known_args() + + # #################### Setup Output ####################################### + # set the output format, or use a default if not provided + output_format = ( + args.output_format if args.output_format else default_output_format + ) + + if output_format == default_output_format: + LOG.info("No output format specified, using %s", default_output_format) + + # set the report name based on the output format + report_fname = f"{report_basename}.{output_format}" + + # #################### Check Requirements ################################# + if git is None: + LOG.error("Git not available, reinstall with baseline extra") + valid = False + return (None, None, None) + + try: + repo = git.Repo(os.getcwd()) + + except git.exc.InvalidGitRepositoryError: + LOG.error("Bandit baseline must be called from a git project root") + valid = False + + except git.exc.GitCommandNotFound: + LOG.error("Git command not found") + valid = False + + else: + if repo.is_dirty(): + LOG.error( + "Current working directory is dirty and must be " "resolved" + ) + valid = False + + # if output format is specified, we need to be able to write the report + if output_format != default_output_format and os.path.exists(report_fname): + LOG.error("File %s already exists, aborting", report_fname) + valid = False + + # Bandit needs to be able to create this temp file + if os.path.exists(baseline_tmp_file): + LOG.error( + "Temporary file %s needs to be removed prior to running", + baseline_tmp_file, + ) + valid = False + + # we must validate -o is not provided, as it will mess up Bandit baseline + if "-o" in bandit_args: + LOG.error("Bandit baseline must not be called with the -o option") + valid = False + + return (output_format, repo, report_fname) if valid else (None, None, None) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/config_generator.py b/.venv/lib/python3.12/site-packages/bandit/cli/config_generator.py new file mode 100644 index 0000000..5b941cd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/cli/config_generator.py @@ -0,0 +1,204 @@ +# Copyright 2015 Red Hat Inc. +# +# SPDX-License-Identifier: Apache-2.0 +"""Bandit is a tool designed to find common security issues in Python code.""" +import argparse +import importlib +import logging +import os +import sys + +import yaml + +from bandit.core import extension_loader + +PROG_NAME = "bandit_conf_generator" +LOG = logging.getLogger(__name__) + + +template = """ +### Bandit config file generated from: +# '{cli}' + +### This config may optionally select a subset of tests to run or skip by +### filling out the 'tests' and 'skips' lists given below. If no tests are +### specified for inclusion then it is assumed all tests are desired. The skips +### set will remove specific tests from the include set. This can be controlled +### using the -t/-s CLI options. Note that the same test ID should not appear +### in both 'tests' and 'skips', this would be nonsensical and is detected by +### Bandit at runtime. + +# Available tests: +{test_list} + +# (optional) list included test IDs here, eg '[B101, B406]': +{test} + +# (optional) list skipped test IDs here, eg '[B101, B406]': +{skip} + +### (optional) plugin settings - some test plugins require configuration data +### that may be given here, per-plugin. All bandit test plugins have a built in +### set of sensible defaults and these will be used if no configuration is +### provided. It is not necessary to provide settings for every (or any) plugin +### if the defaults are acceptable. + +{settings} +""" + + +def init_logger(): + """Init logger.""" + LOG.handlers = [] + log_level = logging.INFO + log_format_string = "[%(levelname)5s]: %(message)s" + logging.captureWarnings(True) + LOG.setLevel(log_level) + handler = logging.StreamHandler(sys.stdout) + handler.setFormatter(logging.Formatter(log_format_string)) + LOG.addHandler(handler) + + +def parse_args(): + """Parse arguments.""" + help_description = """Bandit Config Generator + + This tool is used to generate an optional profile. The profile may be used + to include or skip tests and override values for plugins. + + When used to store an output profile, this tool will output a template that + includes all plugins and their default settings. Any settings which aren't + being overridden can be safely removed from the profile and default values + will be used. Bandit will prefer settings from the profile over the built + in values.""" + + parser = argparse.ArgumentParser( + description=help_description, + formatter_class=argparse.RawTextHelpFormatter, + ) + + parser.add_argument( + "--show-defaults", + dest="show_defaults", + action="store_true", + help="show the default settings values for each " + "plugin but do not output a profile", + ) + parser.add_argument( + "-o", + "--out", + dest="output_file", + action="store", + help="output file to save profile", + ) + parser.add_argument( + "-t", + "--tests", + dest="tests", + action="store", + default=None, + type=str, + help="list of test names to run", + ) + parser.add_argument( + "-s", + "--skip", + dest="skips", + action="store", + default=None, + type=str, + help="list of test names to skip", + ) + args = parser.parse_args() + + if not args.output_file and not args.show_defaults: + parser.print_help() + parser.exit(1) + + return args + + +def get_config_settings(): + """Get configuration settings.""" + config = {} + for plugin in extension_loader.MANAGER.plugins: + fn_name = plugin.name + function = plugin.plugin + + # if a function takes config... + if hasattr(function, "_takes_config"): + fn_module = importlib.import_module(function.__module__) + + # call the config generator if it exists + if hasattr(fn_module, "gen_config"): + config[fn_name] = fn_module.gen_config(function._takes_config) + + return yaml.safe_dump(config, default_flow_style=False) + + +def main(): + """Config generator to write configuration file.""" + init_logger() + args = parse_args() + + yaml_settings = get_config_settings() + + if args.show_defaults: + print(yaml_settings) + + if args.output_file: + if os.path.exists(os.path.abspath(args.output_file)): + LOG.error("File %s already exists, exiting", args.output_file) + sys.exit(2) + + try: + with open(args.output_file, "w") as f: + skips = args.skips.split(",") if args.skips else [] + tests = args.tests.split(",") if args.tests else [] + + for skip in skips: + if not extension_loader.MANAGER.check_id(skip): + raise RuntimeError(f"unknown ID in skips: {skip}") + + for test in tests: + if not extension_loader.MANAGER.check_id(test): + raise RuntimeError(f"unknown ID in tests: {test}") + + tpl = "# {0} : {1}" + test_list = [ + tpl.format(t.plugin._test_id, t.name) + for t in extension_loader.MANAGER.plugins + ] + + others = [ + tpl.format(k, v["name"]) + for k, v in ( + extension_loader.MANAGER.blacklist_by_id.items() + ) + ] + test_list.extend(others) + test_list.sort() + + contents = template.format( + cli=" ".join(sys.argv), + settings=yaml_settings, + test_list="\n".join(test_list), + skip="skips: " + str(skips) if skips else "skips:", + test="tests: " + str(tests) if tests else "tests:", + ) + f.write(contents) + + except OSError: + LOG.error("Unable to open %s for writing", args.output_file) + + except Exception as e: + LOG.error("Error: %s", e) + + else: + LOG.info("Successfully wrote profile: %s", args.output_file) + + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/.venv/lib/python3.12/site-packages/bandit/cli/main.py b/.venv/lib/python3.12/site-packages/bandit/cli/main.py new file mode 100644 index 0000000..0cb0f8d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/cli/main.py @@ -0,0 +1,697 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +"""Bandit is a tool designed to find common security issues in Python code.""" +import argparse +import fnmatch +import logging +import os +import sys +import textwrap + +import bandit +from bandit.core import config as b_config +from bandit.core import constants +from bandit.core import manager as b_manager +from bandit.core import utils + +BASE_CONFIG = "bandit.yaml" +LOG = logging.getLogger() + + +def _init_logger(log_level=logging.INFO, log_format=None): + """Initialize the logger. + + :param debug: Whether to enable debug mode + :return: An instantiated logging instance + """ + LOG.handlers = [] + + if not log_format: + # default log format + log_format_string = constants.log_format_string + else: + log_format_string = log_format + + logging.captureWarnings(True) + + LOG.setLevel(log_level) + handler = logging.StreamHandler(sys.stderr) + handler.setFormatter(logging.Formatter(log_format_string)) + LOG.addHandler(handler) + LOG.debug("logging initialized") + + +def _get_options_from_ini(ini_path, target): + """Return a dictionary of config options or None if we can't load any.""" + ini_file = None + + if ini_path: + ini_file = ini_path + else: + bandit_files = [] + + for t in target: + for root, _, filenames in os.walk(t): + for filename in fnmatch.filter(filenames, ".bandit"): + bandit_files.append(os.path.join(root, filename)) + + if len(bandit_files) > 1: + LOG.error( + "Multiple .bandit files found - scan separately or " + "choose one with --ini\n\t%s", + ", ".join(bandit_files), + ) + sys.exit(2) + + elif len(bandit_files) == 1: + ini_file = bandit_files[0] + LOG.info("Found project level .bandit file: %s", bandit_files[0]) + + if ini_file: + return utils.parse_ini_file(ini_file) + else: + return None + + +def _init_extensions(): + from bandit.core import extension_loader as ext_loader + + return ext_loader.MANAGER + + +def _log_option_source(default_val, arg_val, ini_val, option_name): + """It's useful to show the source of each option.""" + # When default value is not defined, arg_val and ini_val is deterministic + if default_val is None: + if arg_val: + LOG.info("Using command line arg for %s", option_name) + return arg_val + elif ini_val: + LOG.info("Using ini file for %s", option_name) + return ini_val + else: + return None + # No value passed to commad line and default value is used + elif default_val == arg_val: + return ini_val if ini_val else arg_val + # Certainly a value is passed to commad line + else: + return arg_val + + +def _running_under_virtualenv(): + if hasattr(sys, "real_prefix"): + return True + elif sys.prefix != getattr(sys, "base_prefix", sys.prefix): + return True + + +def _get_profile(config, profile_name, config_path): + profile = {} + if profile_name: + profiles = config.get_option("profiles") or {} + profile = profiles.get(profile_name) + if profile is None: + raise utils.ProfileNotFound(config_path, profile_name) + LOG.debug("read in legacy profile '%s': %s", profile_name, profile) + else: + profile["include"] = set(config.get_option("tests") or []) + profile["exclude"] = set(config.get_option("skips") or []) + return profile + + +def _log_info(args, profile): + inc = ",".join([t for t in profile["include"]]) or "None" + exc = ",".join([t for t in profile["exclude"]]) or "None" + LOG.info("profile include tests: %s", inc) + LOG.info("profile exclude tests: %s", exc) + LOG.info("cli include tests: %s", args.tests) + LOG.info("cli exclude tests: %s", args.skips) + + +def main(): + """Bandit CLI.""" + # bring our logging stuff up as early as possible + debug = ( + logging.DEBUG + if "-d" in sys.argv or "--debug" in sys.argv + else logging.INFO + ) + _init_logger(debug) + extension_mgr = _init_extensions() + + baseline_formatters = [ + f.name + for f in filter( + lambda x: hasattr(x.plugin, "_accepts_baseline"), + extension_mgr.formatters, + ) + ] + + # now do normal startup + parser = argparse.ArgumentParser( + description="Bandit - a Python source code security analyzer", + formatter_class=argparse.RawDescriptionHelpFormatter, + ) + parser.add_argument( + "targets", + metavar="targets", + type=str, + nargs="*", + help="source file(s) or directory(s) to be tested", + ) + parser.add_argument( + "-r", + "--recursive", + dest="recursive", + action="store_true", + help="find and process files in subdirectories", + ) + parser.add_argument( + "-a", + "--aggregate", + dest="agg_type", + action="store", + default="file", + type=str, + choices=["file", "vuln"], + help="aggregate output by vulnerability (default) or by filename", + ) + parser.add_argument( + "-n", + "--number", + dest="context_lines", + action="store", + default=3, + type=int, + help="maximum number of code lines to output for each issue", + ) + parser.add_argument( + "-c", + "--configfile", + dest="config_file", + action="store", + default=None, + type=str, + help="optional config file to use for selecting plugins and " + "overriding defaults", + ) + parser.add_argument( + "-p", + "--profile", + dest="profile", + action="store", + default=None, + type=str, + help="profile to use (defaults to executing all tests)", + ) + parser.add_argument( + "-t", + "--tests", + dest="tests", + action="store", + default=None, + type=str, + help="comma-separated list of test IDs to run", + ) + parser.add_argument( + "-s", + "--skip", + dest="skips", + action="store", + default=None, + type=str, + help="comma-separated list of test IDs to skip", + ) + severity_group = parser.add_mutually_exclusive_group(required=False) + severity_group.add_argument( + "-l", + "--level", + dest="severity", + action="count", + default=1, + help="report only issues of a given severity level or " + "higher (-l for LOW, -ll for MEDIUM, -lll for HIGH)", + ) + severity_group.add_argument( + "--severity-level", + dest="severity_string", + action="store", + help="report only issues of a given severity level or higher." + ' "all" and "low" are likely to produce the same results, but it' + " is possible for rules to be undefined which will" + ' not be listed in "low".', + choices=["all", "low", "medium", "high"], + ) + confidence_group = parser.add_mutually_exclusive_group(required=False) + confidence_group.add_argument( + "-i", + "--confidence", + dest="confidence", + action="count", + default=1, + help="report only issues of a given confidence level or " + "higher (-i for LOW, -ii for MEDIUM, -iii for HIGH)", + ) + confidence_group.add_argument( + "--confidence-level", + dest="confidence_string", + action="store", + help="report only issues of a given confidence level or higher." + ' "all" and "low" are likely to produce the same results, but it' + " is possible for rules to be undefined which will" + ' not be listed in "low".', + choices=["all", "low", "medium", "high"], + ) + output_format = ( + "screen" + if ( + sys.stdout.isatty() + and os.getenv("NO_COLOR") is None + and os.getenv("TERM") != "dumb" + ) + else "txt" + ) + parser.add_argument( + "-f", + "--format", + dest="output_format", + action="store", + default=output_format, + help="specify output format", + choices=sorted(extension_mgr.formatter_names), + ) + parser.add_argument( + "--msg-template", + action="store", + default=None, + help="specify output message template" + " (only usable with --format custom)," + " see CUSTOM FORMAT section" + " for list of available values", + ) + parser.add_argument( + "-o", + "--output", + dest="output_file", + action="store", + nargs="?", + type=argparse.FileType("w", encoding="utf-8"), + default=sys.stdout, + help="write report to filename", + ) + group = parser.add_mutually_exclusive_group(required=False) + group.add_argument( + "-v", + "--verbose", + dest="verbose", + action="store_true", + help="output extra information like excluded and included files", + ) + parser.add_argument( + "-d", + "--debug", + dest="debug", + action="store_true", + help="turn on debug mode", + ) + group.add_argument( + "-q", + "--quiet", + "--silent", + dest="quiet", + action="store_true", + help="only show output in the case of an error", + ) + parser.add_argument( + "--ignore-nosec", + dest="ignore_nosec", + action="store_true", + help="do not skip lines with # nosec comments", + ) + parser.add_argument( + "-x", + "--exclude", + dest="excluded_paths", + action="store", + default=",".join(constants.EXCLUDE), + help="comma-separated list of paths (glob patterns " + "supported) to exclude from scan " + "(note that these are in addition to the excluded " + "paths provided in the config file) (default: " + + ",".join(constants.EXCLUDE) + + ")", + ) + parser.add_argument( + "-b", + "--baseline", + dest="baseline", + action="store", + default=None, + help="path of a baseline report to compare against " + "(only JSON-formatted files are accepted)", + ) + parser.add_argument( + "--ini", + dest="ini_path", + action="store", + default=None, + help="path to a .bandit file that supplies command line arguments", + ) + parser.add_argument( + "--exit-zero", + action="store_true", + dest="exit_zero", + default=False, + help="exit with 0, " "even with results found", + ) + python_ver = sys.version.replace("\n", "") + parser.add_argument( + "--version", + action="version", + version=f"%(prog)s {bandit.__version__}\n" + f" python version = {python_ver}", + ) + + parser.set_defaults(debug=False) + parser.set_defaults(verbose=False) + parser.set_defaults(quiet=False) + parser.set_defaults(ignore_nosec=False) + + plugin_info = [ + f"{a[0]}\t{a[1].name}" for a in extension_mgr.plugins_by_id.items() + ] + blacklist_info = [] + for a in extension_mgr.blacklist.items(): + for b in a[1]: + blacklist_info.append(f"{b['id']}\t{b['name']}") + + plugin_list = "\n\t".join(sorted(set(plugin_info + blacklist_info))) + dedent_text = textwrap.dedent( + """ + CUSTOM FORMATTING + ----------------- + + Available tags: + + {abspath}, {relpath}, {line}, {col}, {test_id}, + {severity}, {msg}, {confidence}, {range} + + Example usage: + + Default template: + bandit -r examples/ --format custom --msg-template \\ + "{abspath}:{line}: {test_id}[bandit]: {severity}: {msg}" + + Provides same output as: + bandit -r examples/ --format custom + + Tags can also be formatted in python string.format() style: + bandit -r examples/ --format custom --msg-template \\ + "{relpath:20.20s}: {line:03}: {test_id:^8}: DEFECT: {msg:>20}" + + See python documentation for more information about formatting style: + https://docs.python.org/3/library/string.html + + The following tests were discovered and loaded: + ----------------------------------------------- + """ + ) + parser.epilog = dedent_text + f"\t{plugin_list}" + + # setup work - parse arguments, and initialize BanditManager + args = parser.parse_args() + # Check if `--msg-template` is not present without custom formatter + if args.output_format != "custom" and args.msg_template is not None: + parser.error("--msg-template can only be used with --format=custom") + + # Check if confidence or severity level have been specified with strings + if args.severity_string is not None: + if args.severity_string == "all": + args.severity = 1 + elif args.severity_string == "low": + args.severity = 2 + elif args.severity_string == "medium": + args.severity = 3 + elif args.severity_string == "high": + args.severity = 4 + # Other strings will be blocked by argparse + + if args.confidence_string is not None: + if args.confidence_string == "all": + args.confidence = 1 + elif args.confidence_string == "low": + args.confidence = 2 + elif args.confidence_string == "medium": + args.confidence = 3 + elif args.confidence_string == "high": + args.confidence = 4 + # Other strings will be blocked by argparse + + # Handle .bandit files in projects to pass cmdline args from file + ini_options = _get_options_from_ini(args.ini_path, args.targets) + if ini_options: + # prefer command line, then ini file + args.config_file = _log_option_source( + parser.get_default("configfile"), + args.config_file, + ini_options.get("configfile"), + "config file", + ) + + args.excluded_paths = _log_option_source( + parser.get_default("excluded_paths"), + args.excluded_paths, + ini_options.get("exclude"), + "excluded paths", + ) + + args.skips = _log_option_source( + parser.get_default("skips"), + args.skips, + ini_options.get("skips"), + "skipped tests", + ) + + args.tests = _log_option_source( + parser.get_default("tests"), + args.tests, + ini_options.get("tests"), + "selected tests", + ) + + ini_targets = ini_options.get("targets") + if ini_targets: + ini_targets = ini_targets.split(",") + + args.targets = _log_option_source( + parser.get_default("targets"), + args.targets, + ini_targets, + "selected targets", + ) + + # TODO(tmcpeak): any other useful options to pass from .bandit? + + args.recursive = _log_option_source( + parser.get_default("recursive"), + args.recursive, + ini_options.get("recursive"), + "recursive scan", + ) + + args.agg_type = _log_option_source( + parser.get_default("agg_type"), + args.agg_type, + ini_options.get("aggregate"), + "aggregate output type", + ) + + args.context_lines = _log_option_source( + parser.get_default("context_lines"), + args.context_lines, + int(ini_options.get("number") or 0) or None, + "max code lines output for issue", + ) + + args.profile = _log_option_source( + parser.get_default("profile"), + args.profile, + ini_options.get("profile"), + "profile", + ) + + args.severity = _log_option_source( + parser.get_default("severity"), + args.severity, + ini_options.get("level"), + "severity level", + ) + + args.confidence = _log_option_source( + parser.get_default("confidence"), + args.confidence, + ini_options.get("confidence"), + "confidence level", + ) + + args.output_format = _log_option_source( + parser.get_default("output_format"), + args.output_format, + ini_options.get("format"), + "output format", + ) + + args.msg_template = _log_option_source( + parser.get_default("msg_template"), + args.msg_template, + ini_options.get("msg-template"), + "output message template", + ) + + args.output_file = _log_option_source( + parser.get_default("output_file"), + args.output_file, + ini_options.get("output"), + "output file", + ) + + args.verbose = _log_option_source( + parser.get_default("verbose"), + args.verbose, + ini_options.get("verbose"), + "output extra information", + ) + + args.debug = _log_option_source( + parser.get_default("debug"), + args.debug, + ini_options.get("debug"), + "debug mode", + ) + + args.quiet = _log_option_source( + parser.get_default("quiet"), + args.quiet, + ini_options.get("quiet"), + "silent mode", + ) + + args.ignore_nosec = _log_option_source( + parser.get_default("ignore_nosec"), + args.ignore_nosec, + ini_options.get("ignore-nosec"), + "do not skip lines with # nosec", + ) + + args.baseline = _log_option_source( + parser.get_default("baseline"), + args.baseline, + ini_options.get("baseline"), + "path of a baseline report", + ) + + try: + b_conf = b_config.BanditConfig(config_file=args.config_file) + except utils.ConfigError as e: + LOG.error(e) + sys.exit(2) + + if not args.targets: + parser.print_usage() + sys.exit(2) + + # if the log format string was set in the options, reinitialize + if b_conf.get_option("log_format"): + log_format = b_conf.get_option("log_format") + _init_logger(log_level=logging.DEBUG, log_format=log_format) + + if args.quiet: + _init_logger(log_level=logging.WARN) + + try: + profile = _get_profile(b_conf, args.profile, args.config_file) + _log_info(args, profile) + + profile["include"].update(args.tests.split(",") if args.tests else []) + profile["exclude"].update(args.skips.split(",") if args.skips else []) + extension_mgr.validate_profile(profile) + + except (utils.ProfileNotFound, ValueError) as e: + LOG.error(e) + sys.exit(2) + + b_mgr = b_manager.BanditManager( + b_conf, + args.agg_type, + args.debug, + profile=profile, + verbose=args.verbose, + quiet=args.quiet, + ignore_nosec=args.ignore_nosec, + ) + + if args.baseline is not None: + try: + with open(args.baseline) as bl: + data = bl.read() + b_mgr.populate_baseline(data) + except OSError: + LOG.warning("Could not open baseline report: %s", args.baseline) + sys.exit(2) + + if args.output_format not in baseline_formatters: + LOG.warning( + "Baseline must be used with one of the following " + "formats: " + str(baseline_formatters) + ) + sys.exit(2) + + if args.output_format != "json": + if args.config_file: + LOG.info("using config: %s", args.config_file) + + LOG.info( + "running on Python %d.%d.%d", + sys.version_info.major, + sys.version_info.minor, + sys.version_info.micro, + ) + + # initiate file discovery step within Bandit Manager + b_mgr.discover_files(args.targets, args.recursive, args.excluded_paths) + + if not b_mgr.b_ts.tests: + LOG.error("No tests would be run, please check the profile.") + sys.exit(2) + + # initiate execution of tests within Bandit Manager + b_mgr.run_tests() + LOG.debug(b_mgr.b_ma) + LOG.debug(b_mgr.metrics) + + # trigger output of results by Bandit Manager + sev_level = constants.RANKING[args.severity - 1] + conf_level = constants.RANKING[args.confidence - 1] + b_mgr.output_results( + args.context_lines, + sev_level, + conf_level, + args.output_file, + args.output_format, + args.msg_template, + ) + + if ( + b_mgr.results_count(sev_filter=sev_level, conf_filter=conf_level) > 0 + and not args.exit_zero + ): + sys.exit(1) + else: + sys.exit(0) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/bandit/core/__init__.py b/.venv/lib/python3.12/site-packages/bandit/core/__init__.py new file mode 100644 index 0000000..2efdc4d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/__init__.py @@ -0,0 +1,15 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +from bandit.core import config # noqa +from bandit.core import context # noqa +from bandit.core import manager # noqa +from bandit.core import meta_ast # noqa +from bandit.core import node_visitor # noqa +from bandit.core import test_set # noqa +from bandit.core import tester # noqa +from bandit.core import utils # noqa +from bandit.core.constants import * # noqa +from bandit.core.issue import * # noqa +from bandit.core.test_properties import * # noqa diff --git a/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2d6c62a565dc88fe58686df976f86c26fa74825 GIT binary patch literal 579 zcmYk2y-ve05XbGN`DhCRLQIGc2?mPPSb*3N5+F9j(k)A55(5^g6WMN|D=)z_Fz_V2 zK}07eHYCK-1@2sddb0od`R|<1=hwx>Hi0%>RR3ag+Nw3Si}KW{6=WNXdo<4xj}nDmAObq(nwpnJu8e&jljJC*=6`c zD+>b_-M#EC)SWA?a%tnN)IxhuR5ww4lmI0}iBMW7_=fe$ToPm|W4W@XUYfV1F+)+W z&Rgz2l`boxtrX^&e8FL4nz8#*-ka*`UV@*00jL(9O#lD@ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/blacklisting.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/blacklisting.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9a93fe4db346568342c2670bf93b24995bfd215 GIT binary patch literal 3285 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/constants.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/constants.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dad9765438a5f1cf8dd7d79dd228bb6e5502b50f GIT binary patch literal 796 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 AO8@`> literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/docs_utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/docs_utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..189bb1f68cabe7d20bda60705c9e54e98c1ec1da GIT binary patch literal 1808 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 lDF4`A$(KKBcko4zf6 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/node_visitor.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/node_visitor.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd9e67ed268e6f61ba52dff997d1213b3cb1ef93 GIT binary patch literal 14672 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/tester.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/core/__pycache__/tester.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..892e88a4ecdc75ab9cc747fae911d52696cfda08 GIT binary patch literal 6542 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 C*LwE= literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/core/blacklisting.py b/.venv/lib/python3.12/site-packages/bandit/core/blacklisting.py new file mode 100644 index 0000000..2bbb093 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/blacklisting.py @@ -0,0 +1,70 @@ +# +# Copyright 2016 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import ast + +from bandit.core import issue + + +def report_issue(check, name): + return issue.Issue( + severity=check.get("level", "MEDIUM"), + confidence="HIGH", + cwe=check.get("cwe", issue.Cwe.NOTSET), + text=check["message"].replace("{name}", name), + ident=name, + test_id=check.get("id", "LEGACY"), + ) + + +def blacklist(context, config): + """Generic blacklist test, B001. + + This generic blacklist test will be called for any encountered node with + defined blacklist data available. This data is loaded via plugins using + the 'bandit.blacklists' entry point. Please see the documentation for more + details. Each blacklist datum has a unique bandit ID that may be used for + filtering purposes, or alternatively all blacklisting can be filtered using + the id of this built in test, 'B001'. + """ + blacklists = config + node_type = context.node.__class__.__name__ + + if node_type == "Call": + func = context.node.func + if isinstance(func, ast.Name) and func.id == "__import__": + if len(context.node.args): + if isinstance(context.node.args[0], ast.Str): + name = context.node.args[0].s + else: + # TODO(??): import through a variable, need symbol tab + name = "UNKNOWN" + else: + name = "" # handle '__import__()' + else: + name = context.call_function_name_qual + # In the case the Call is an importlib.import, treat the first + # argument name as an actual import module name. + # Will produce None if argument is not a literal or identifier + if name in ["importlib.import_module", "importlib.__import__"]: + if context.call_args_count > 0: + name = context.call_args[0] + else: + name = context.call_keywords["name"] + for check in blacklists[node_type]: + for qn in check["qualnames"]: + if name is not None and name == qn: + return report_issue(check, name) + + if node_type.startswith("Import"): + prefix = "" + if node_type == "ImportFrom": + if context.node.module is not None: + prefix = context.node.module + "." + + for check in blacklists[node_type]: + for name in context.node.names: + for qn in check["qualnames"]: + if (prefix + name.name).startswith(qn): + return report_issue(check, name.name) diff --git a/.venv/lib/python3.12/site-packages/bandit/core/config.py b/.venv/lib/python3.12/site-packages/bandit/core/config.py new file mode 100644 index 0000000..dbc68fb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/config.py @@ -0,0 +1,271 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import logging +import sys + +import yaml + +if sys.version_info >= (3, 11): + import tomllib +else: + try: + import tomli as tomllib + except ImportError: + tomllib = None + +from bandit.core import constants +from bandit.core import extension_loader +from bandit.core import utils + +LOG = logging.getLogger(__name__) + + +class BanditConfig: + def __init__(self, config_file=None): + """Attempt to initialize a config dictionary from a yaml file. + + Error out if loading the yaml file fails for any reason. + :param config_file: The Bandit yaml config file + + :raises bandit.utils.ConfigError: If the config is invalid or + unreadable. + """ + self.config_file = config_file + self._config = {} + + if config_file: + try: + f = open(config_file, "rb") + except OSError: + raise utils.ConfigError( + "Could not read config file.", config_file + ) + + if config_file.endswith(".toml"): + if tomllib is None: + raise utils.ConfigError( + "toml parser not available, reinstall with toml extra", + config_file, + ) + + try: + with f: + self._config = ( + tomllib.load(f).get("tool", {}).get("bandit", {}) + ) + except tomllib.TOMLDecodeError as err: + LOG.error(err) + raise utils.ConfigError("Error parsing file.", config_file) + else: + try: + with f: + self._config = yaml.safe_load(f) + except yaml.YAMLError as err: + LOG.error(err) + raise utils.ConfigError("Error parsing file.", config_file) + + self.validate(config_file) + + # valid config must be a dict + if not isinstance(self._config, dict): + raise utils.ConfigError("Error parsing file.", config_file) + + self.convert_legacy_config() + + else: + # use sane defaults + self._config["plugin_name_pattern"] = "*.py" + self._config["include"] = ["*.py", "*.pyw"] + + self._init_settings() + + def get_option(self, option_string): + """Returns the option from the config specified by the option_string. + + '.' can be used to denote levels, for example to retrieve the options + from the 'a' profile you can use 'profiles.a' + :param option_string: The string specifying the option to retrieve + :return: The object specified by the option_string, or None if it can't + be found. + """ + option_levels = option_string.split(".") + cur_item = self._config + for level in option_levels: + if cur_item and (level in cur_item): + cur_item = cur_item[level] + else: + return None + + return cur_item + + def get_setting(self, setting_name): + if setting_name in self._settings: + return self._settings[setting_name] + else: + return None + + @property + def config(self): + """Property to return the config dictionary + + :return: Config dictionary + """ + return self._config + + def _init_settings(self): + """This function calls a set of other functions (one per setting) + + This function calls a set of other functions (one per setting) to build + out the _settings dictionary. Each other function will set values from + the config (if set), otherwise use defaults (from constants if + possible). + :return: - + """ + self._settings = {} + self._init_plugin_name_pattern() + + def _init_plugin_name_pattern(self): + """Sets settings['plugin_name_pattern'] from default or config file.""" + plugin_name_pattern = constants.plugin_name_pattern + if self.get_option("plugin_name_pattern"): + plugin_name_pattern = self.get_option("plugin_name_pattern") + self._settings["plugin_name_pattern"] = plugin_name_pattern + + def convert_legacy_config(self): + updated_profiles = self.convert_names_to_ids() + bad_calls, bad_imports = self.convert_legacy_blacklist_data() + + if updated_profiles: + self.convert_legacy_blacklist_tests( + updated_profiles, bad_calls, bad_imports + ) + self._config["profiles"] = updated_profiles + + def convert_names_to_ids(self): + """Convert test names to IDs, unknown names are left unchanged.""" + extman = extension_loader.MANAGER + + updated_profiles = {} + for name, profile in (self.get_option("profiles") or {}).items(): + # NOTE(tkelsey): can't use default of get() because value is + # sometimes explicitly 'None', for example when the list is given + # in yaml but not populated with any values. + include = { + (extman.get_test_id(i) or i) + for i in (profile.get("include") or []) + } + exclude = { + (extman.get_test_id(i) or i) + for i in (profile.get("exclude") or []) + } + updated_profiles[name] = {"include": include, "exclude": exclude} + return updated_profiles + + def convert_legacy_blacklist_data(self): + """Detect legacy blacklist data and convert it to new format.""" + bad_calls_list = [] + bad_imports_list = [] + + bad_calls = self.get_option("blacklist_calls") or {} + bad_calls = bad_calls.get("bad_name_sets", {}) + for item in bad_calls: + for key, val in item.items(): + val["name"] = key + val["message"] = val["message"].replace("{func}", "{name}") + bad_calls_list.append(val) + + bad_imports = self.get_option("blacklist_imports") or {} + bad_imports = bad_imports.get("bad_import_sets", {}) + for item in bad_imports: + for key, val in item.items(): + val["name"] = key + val["message"] = val["message"].replace("{module}", "{name}") + val["qualnames"] = val["imports"] + del val["imports"] + bad_imports_list.append(val) + + if bad_imports_list or bad_calls_list: + LOG.warning( + "Legacy blacklist data found in config, overriding " + "data plugins" + ) + return bad_calls_list, bad_imports_list + + @staticmethod + def convert_legacy_blacklist_tests(profiles, bad_imports, bad_calls): + """Detect old blacklist tests, convert to use new builtin.""" + + def _clean_set(name, data): + if name in data: + data.remove(name) + data.add("B001") + + for name, profile in profiles.items(): + blacklist = {} + include = profile["include"] + exclude = profile["exclude"] + + name = "blacklist_calls" + if name in include and name not in exclude: + blacklist.setdefault("Call", []).extend(bad_calls) + + _clean_set(name, include) + _clean_set(name, exclude) + + name = "blacklist_imports" + if name in include and name not in exclude: + blacklist.setdefault("Import", []).extend(bad_imports) + blacklist.setdefault("ImportFrom", []).extend(bad_imports) + blacklist.setdefault("Call", []).extend(bad_imports) + + _clean_set(name, include) + _clean_set(name, exclude) + _clean_set("blacklist_import_func", include) + _clean_set("blacklist_import_func", exclude) + + # This can happen with a legacy config that includes + # blacklist_calls but exclude blacklist_imports for example + if "B001" in include and "B001" in exclude: + exclude.remove("B001") + + profile["blacklist"] = blacklist + + def validate(self, path): + """Validate the config data.""" + legacy = False + message = ( + "Config file has an include or exclude reference " + "to legacy test '{0}' but no configuration data for " + "it. Configuration data is required for this test. " + "Please consider switching to the new config file " + "format, the tool 'bandit-config-generator' can help " + "you with this." + ) + + def _test(key, block, exclude, include): + if key in exclude or key in include: + if self._config.get(block) is None: + raise utils.ConfigError(message.format(key), path) + + if "profiles" in self._config: + legacy = True + for profile in self._config["profiles"].values(): + inc = profile.get("include") or set() + exc = profile.get("exclude") or set() + + _test("blacklist_imports", "blacklist_imports", inc, exc) + _test("blacklist_import_func", "blacklist_imports", inc, exc) + _test("blacklist_calls", "blacklist_calls", inc, exc) + + # show deprecation message + if legacy: + LOG.warning( + "Config file '%s' contains deprecated legacy config " + "data. Please consider upgrading to the new config " + "format. The tool 'bandit-config-generator' can help " + "you with this. Support for legacy configs will be " + "removed in a future bandit version.", + path, + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/core/constants.py b/.venv/lib/python3.12/site-packages/bandit/core/constants.py new file mode 100644 index 0000000..dd8ddeb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/constants.py @@ -0,0 +1,40 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +# default plugin name pattern +plugin_name_pattern = "*.py" + +RANKING = ["UNDEFINED", "LOW", "MEDIUM", "HIGH"] +RANKING_VALUES = {"UNDEFINED": 1, "LOW": 3, "MEDIUM": 5, "HIGH": 10} +CRITERIA = [("SEVERITY", "UNDEFINED"), ("CONFIDENCE", "UNDEFINED")] + +# add each ranking to globals, to allow direct access in module name space +for rank in RANKING: + globals()[rank] = rank + +CONFIDENCE_DEFAULT = "UNDEFINED" + +# A list of values Python considers to be False. +# These can be useful in tests to check if a value is True or False. +# We don't handle the case of user-defined classes being false. +# These are only useful when we have a constant in code. If we +# have a variable we cannot determine if False. +# See https://docs.python.org/3/library/stdtypes.html#truth-value-testing +FALSE_VALUES = [None, False, "False", 0, 0.0, 0j, "", (), [], {}] + +# override with "log_format" option in config file +log_format_string = "[%(module)s]\t%(levelname)s\t%(message)s" + +# Directories to exclude by default +EXCLUDE = ( + ".svn", + "CVS", + ".bzr", + ".hg", + ".git", + "__pycache__", + ".tox", + ".eggs", + "*.egg", +) diff --git a/.venv/lib/python3.12/site-packages/bandit/core/context.py b/.venv/lib/python3.12/site-packages/bandit/core/context.py new file mode 100644 index 0000000..57f293c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/context.py @@ -0,0 +1,324 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import ast + +from bandit.core import utils + + +class Context: + def __init__(self, context_object=None): + """Initialize the class with a context, empty dict otherwise + + :param context_object: The context object to create class from + :return: - + """ + if context_object is not None: + self._context = context_object + else: + self._context = dict() + + def __repr__(self): + """Generate representation of object for printing / interactive use + + Most likely only interested in non-default properties, so we return + the string version of _context. + + Example string returned: + , 'function': None, + 'name': 'socket', 'imports': set(['socket']), 'module': None, + 'filename': 'examples/binding.py', + 'call': <_ast.Call object at 0x110252510>, 'lineno': 3, + 'import_aliases': {}, 'qualname': 'socket.socket'}> + + :return: A string representation of the object + """ + return f"" + + @property + def call_args(self): + """Get a list of function args + + :return: A list of function args + """ + args = [] + if "call" in self._context and hasattr(self._context["call"], "args"): + for arg in self._context["call"].args: + if hasattr(arg, "attr"): + args.append(arg.attr) + else: + args.append(self._get_literal_value(arg)) + return args + + @property + def call_args_count(self): + """Get the number of args a function call has + + :return: The number of args a function call has or None + """ + if "call" in self._context and hasattr(self._context["call"], "args"): + return len(self._context["call"].args) + else: + return None + + @property + def call_function_name(self): + """Get the name (not FQ) of a function call + + :return: The name (not FQ) of a function call + """ + return self._context.get("name") + + @property + def call_function_name_qual(self): + """Get the FQ name of a function call + + :return: The FQ name of a function call + """ + return self._context.get("qualname") + + @property + def call_keywords(self): + """Get a dictionary of keyword parameters + + :return: A dictionary of keyword parameters for a call as strings + """ + if "call" in self._context and hasattr( + self._context["call"], "keywords" + ): + return_dict = {} + for li in self._context["call"].keywords: + if hasattr(li.value, "attr"): + return_dict[li.arg] = li.value.attr + else: + return_dict[li.arg] = self._get_literal_value(li.value) + return return_dict + else: + return None + + @property + def node(self): + """Get the raw AST node associated with the context + + :return: The raw AST node associated with the context + """ + return self._context.get("node") + + @property + def string_val(self): + """Get the value of a standalone unicode or string object + + :return: value of a standalone unicode or string object + """ + return self._context.get("str") + + @property + def bytes_val(self): + """Get the value of a standalone bytes object (py3 only) + + :return: value of a standalone bytes object + """ + return self._context.get("bytes") + + @property + def string_val_as_escaped_bytes(self): + """Get escaped value of the object. + + Turn the value of a string or bytes object into byte sequence with + unknown, control, and \\ characters escaped. + + This function should be used when looking for a known sequence in a + potentially badly encoded string in the code. + + :return: sequence of printable ascii bytes representing original string + """ + val = self.string_val + if val is not None: + # it's any of str or unicode in py2, or str in py3 + return val.encode("unicode_escape") + + val = self.bytes_val + if val is not None: + return utils.escaped_bytes_representation(val) + + return None + + @property + def statement(self): + """Get the raw AST for the current statement + + :return: The raw AST for the current statement + """ + return self._context.get("statement") + + @property + def function_def_defaults_qual(self): + """Get a list of fully qualified default values in a function def + + :return: List of defaults + """ + defaults = [] + if ( + "node" in self._context + and hasattr(self._context["node"], "args") + and hasattr(self._context["node"].args, "defaults") + ): + for default in self._context["node"].args.defaults: + defaults.append( + utils.get_qual_attr( + default, self._context["import_aliases"] + ) + ) + return defaults + + def _get_literal_value(self, literal): + """Utility function to turn AST literals into native Python types + + :param literal: The AST literal to convert + :return: The value of the AST literal + """ + if isinstance(literal, ast.Num): + literal_value = literal.n + + elif isinstance(literal, ast.Str): + literal_value = literal.s + + elif isinstance(literal, ast.List): + return_list = list() + for li in literal.elts: + return_list.append(self._get_literal_value(li)) + literal_value = return_list + + elif isinstance(literal, ast.Tuple): + return_tuple = tuple() + for ti in literal.elts: + return_tuple += (self._get_literal_value(ti),) + literal_value = return_tuple + + elif isinstance(literal, ast.Set): + return_set = set() + for si in literal.elts: + return_set.add(self._get_literal_value(si)) + literal_value = return_set + + elif isinstance(literal, ast.Dict): + literal_value = dict(zip(literal.keys, literal.values)) + + elif isinstance(literal, ast.Ellipsis): + # what do we want to do with this? + literal_value = None + + elif isinstance(literal, ast.Name): + literal_value = literal.id + + elif isinstance(literal, ast.NameConstant): + literal_value = str(literal.value) + + elif isinstance(literal, ast.Bytes): + literal_value = literal.s + + else: + literal_value = None + + return literal_value + + def get_call_arg_value(self, argument_name): + """Gets the value of a named argument in a function call. + + :return: named argument value + """ + kwd_values = self.call_keywords + if kwd_values is not None and argument_name in kwd_values: + return kwd_values[argument_name] + + def check_call_arg_value(self, argument_name, argument_values=None): + """Checks for a value of a named argument in a function call. + + Returns none if the specified argument is not found. + :param argument_name: A string - name of the argument to look for + :param argument_values: the value, or list of values to test against + :return: Boolean True if argument found and matched, False if + found and not matched, None if argument not found at all + """ + arg_value = self.get_call_arg_value(argument_name) + if arg_value is not None: + if not isinstance(argument_values, list): + # if passed a single value, or a tuple, convert to a list + argument_values = list((argument_values,)) + for val in argument_values: + if arg_value == val: + return True + return False + else: + # argument name not found, return None to allow testing for this + # eventuality + return None + + def get_lineno_for_call_arg(self, argument_name): + """Get the line number for a specific named argument + + In case the call is split over multiple lines, get the correct one for + the argument. + :param argument_name: A string - name of the argument to look for + :return: Integer - the line number of the found argument, or -1 + """ + if hasattr(self.node, "keywords"): + for key in self.node.keywords: + if key.arg == argument_name: + return key.value.lineno + + def get_call_arg_at_position(self, position_num): + """Returns positional argument at the specified position (if it exists) + + :param position_num: The index of the argument to return the value for + :return: Value of the argument at the specified position if it exists + """ + max_args = self.call_args_count + if max_args and position_num < max_args: + arg = self._context["call"].args[position_num] + return getattr(arg, "attr", None) or self._get_literal_value(arg) + else: + return None + + def is_module_being_imported(self, module): + """Check for the specified module is currently being imported + + :param module: The module name to look for + :return: True if the module is found, False otherwise + """ + return self._context.get("module") == module + + def is_module_imported_exact(self, module): + """Check if a specified module has been imported; only exact matches. + + :param module: The module name to look for + :return: True if the module is found, False otherwise + """ + return module in self._context.get("imports", []) + + def is_module_imported_like(self, module): + """Check if a specified module has been imported + + Check if a specified module has been imported; specified module exists + as part of any import statement. + :param module: The module name to look for + :return: True if the module is found, False otherwise + """ + if "imports" in self._context: + for imp in self._context["imports"]: + if module in imp: + return True + return False + + @property + def filename(self): + return self._context.get("filename") + + @property + def file_data(self): + return self._context.get("file_data") + + @property + def import_aliases(self): + return self._context.get("import_aliases") diff --git a/.venv/lib/python3.12/site-packages/bandit/core/docs_utils.py b/.venv/lib/python3.12/site-packages/bandit/core/docs_utils.py new file mode 100644 index 0000000..5a5575b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/docs_utils.py @@ -0,0 +1,54 @@ +# +# Copyright 2016 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import bandit + + +def get_url(bid): + # where our docs are hosted + base_url = f"https://bandit.readthedocs.io/en/{bandit.__version__}/" + + # NOTE(tkelsey): for some reason this import can't be found when stevedore + # loads up the formatter plugin that imports this file. It is available + # later though. + from bandit.core import extension_loader + + info = extension_loader.MANAGER.plugins_by_id.get(bid) + if info is not None: + return f"{base_url}plugins/{bid.lower()}_{info.plugin.__name__}.html" + + info = extension_loader.MANAGER.blacklist_by_id.get(bid) + if info is not None: + template = "blacklists/blacklist_{kind}.html#{id}-{name}" + info["name"] = info["name"].replace("_", "-") + + if info["id"].startswith("B3"): # B3XX + # Some of the links are combined, so we have exception cases + if info["id"] in ["B304", "B305"]: + info = info.copy() + info["id"] = "b304-b305" + info["name"] = "ciphers-and-modes" + elif info["id"] in [ + "B313", + "B314", + "B315", + "B316", + "B317", + "B318", + "B319", + "B320", + ]: + info = info.copy() + info["id"] = "b313-b320" + ext = template.format( + kind="calls", id=info["id"], name=info["name"] + ) + else: + ext = template.format( + kind="imports", id=info["id"], name=info["name"] + ) + + return base_url + ext.lower() + + return base_url # no idea, give the docs main page diff --git a/.venv/lib/python3.12/site-packages/bandit/core/extension_loader.py b/.venv/lib/python3.12/site-packages/bandit/core/extension_loader.py new file mode 100644 index 0000000..ec28a0a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/extension_loader.py @@ -0,0 +1,114 @@ +# +# SPDX-License-Identifier: Apache-2.0 +import logging +import sys + +from stevedore import extension + +from bandit.core import utils + +LOG = logging.getLogger(__name__) + + +class Manager: + # These IDs are for bandit built in tests + builtin = ["B001"] # Built in blacklist test + + def __init__( + self, + formatters_namespace="bandit.formatters", + plugins_namespace="bandit.plugins", + blacklists_namespace="bandit.blacklists", + ): + # Cache the extension managers, loaded extensions, and extension names + self.load_formatters(formatters_namespace) + self.load_plugins(plugins_namespace) + self.load_blacklists(blacklists_namespace) + + def load_formatters(self, formatters_namespace): + self.formatters_mgr = extension.ExtensionManager( + namespace=formatters_namespace, + invoke_on_load=False, + verify_requirements=False, + ) + self.formatters = list(self.formatters_mgr) + self.formatter_names = self.formatters_mgr.names() + + def load_plugins(self, plugins_namespace): + self.plugins_mgr = extension.ExtensionManager( + namespace=plugins_namespace, + invoke_on_load=False, + verify_requirements=False, + ) + + def test_has_id(plugin): + if not hasattr(plugin.plugin, "_test_id"): + # logger not setup yet, so using print + print( + f"WARNING: Test '{plugin.name}' has no ID, skipping.", + file=sys.stderr, + ) + return False + return True + + self.plugins = list(filter(test_has_id, list(self.plugins_mgr))) + self.plugin_names = [plugin.name for plugin in self.plugins] + self.plugins_by_id = {p.plugin._test_id: p for p in self.plugins} + self.plugins_by_name = {p.name: p for p in self.plugins} + + def get_test_id(self, test_name): + if test_name in self.plugins_by_name: + return self.plugins_by_name[test_name].plugin._test_id + if test_name in self.blacklist_by_name: + return self.blacklist_by_name[test_name]["id"] + return None + + def load_blacklists(self, blacklist_namespace): + self.blacklists_mgr = extension.ExtensionManager( + namespace=blacklist_namespace, + invoke_on_load=False, + verify_requirements=False, + ) + self.blacklist = {} + blacklist = list(self.blacklists_mgr) + for item in blacklist: + for key, val in item.plugin().items(): + utils.check_ast_node(key) + self.blacklist.setdefault(key, []).extend(val) + + self.blacklist_by_id = {} + self.blacklist_by_name = {} + for val in self.blacklist.values(): + for b in val: + self.blacklist_by_id[b["id"]] = b + self.blacklist_by_name[b["name"]] = b + + def validate_profile(self, profile): + """Validate that everything in the configured profiles looks good.""" + for inc in profile["include"]: + if not self.check_id(inc): + LOG.warning(f"Unknown test found in profile: {inc}") + + for exc in profile["exclude"]: + if not self.check_id(exc): + LOG.warning(f"Unknown test found in profile: {exc}") + + union = set(profile["include"]) & set(profile["exclude"]) + if len(union) > 0: + raise ValueError( + f"Non-exclusive include/exclude test sets: {union}" + ) + + def check_id(self, test): + return ( + test in self.plugins_by_id + or test in self.blacklist_by_id + or test in self.builtin + ) + + +# Using entry-points and pkg_resources *can* be expensive. So let's load these +# once, store them on the object, and have a module global object for +# accessing them. After the first time this module is imported, it should save +# this attribute on the module and not have to reload the entry-points. +MANAGER = Manager() diff --git a/.venv/lib/python3.12/site-packages/bandit/core/issue.py b/.venv/lib/python3.12/site-packages/bandit/core/issue.py new file mode 100644 index 0000000..b2d9015 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/issue.py @@ -0,0 +1,245 @@ +# +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import linecache + +from bandit.core import constants + + +class Cwe: + NOTSET = 0 + IMPROPER_INPUT_VALIDATION = 20 + PATH_TRAVERSAL = 22 + OS_COMMAND_INJECTION = 78 + XSS = 79 + BASIC_XSS = 80 + SQL_INJECTION = 89 + CODE_INJECTION = 94 + IMPROPER_WILDCARD_NEUTRALIZATION = 155 + HARD_CODED_PASSWORD = 259 + IMPROPER_ACCESS_CONTROL = 284 + IMPROPER_CERT_VALIDATION = 295 + CLEARTEXT_TRANSMISSION = 319 + INADEQUATE_ENCRYPTION_STRENGTH = 326 + BROKEN_CRYPTO = 327 + INSUFFICIENT_RANDOM_VALUES = 330 + INSECURE_TEMP_FILE = 377 + UNCONTROLLED_RESOURCE_CONSUMPTION = 400 + DOWNLOAD_OF_CODE_WITHOUT_INTEGRITY_CHECK = 494 + DESERIALIZATION_OF_UNTRUSTED_DATA = 502 + MULTIPLE_BINDS = 605 + IMPROPER_CHECK_OF_EXCEPT_COND = 703 + INCORRECT_PERMISSION_ASSIGNMENT = 732 + INAPPROPRIATE_ENCODING_FOR_OUTPUT_CONTEXT = 838 + + MITRE_URL_PATTERN = "https://cwe.mitre.org/data/definitions/%s.html" + + def __init__(self, id=NOTSET): + self.id = id + + def link(self): + if self.id == Cwe.NOTSET: + return "" + + return Cwe.MITRE_URL_PATTERN % str(self.id) + + def __str__(self): + if self.id == Cwe.NOTSET: + return "" + + return "CWE-%i (%s)" % (self.id, self.link()) + + def as_dict(self): + return ( + {"id": self.id, "link": self.link()} + if self.id != Cwe.NOTSET + else {} + ) + + def as_jsons(self): + return str(self.as_dict()) + + def from_dict(self, data): + if "id" in data: + self.id = int(data["id"]) + else: + self.id = Cwe.NOTSET + + def __eq__(self, other): + return self.id == other.id + + def __ne__(self, other): + return self.id != other.id + + def __hash__(self): + return id(self) + + +class Issue: + def __init__( + self, + severity, + cwe=0, + confidence=constants.CONFIDENCE_DEFAULT, + text="", + ident=None, + lineno=None, + test_id="", + col_offset=-1, + end_col_offset=0, + ): + self.severity = severity + self.cwe = Cwe(cwe) + self.confidence = confidence + if isinstance(text, bytes): + text = text.decode("utf-8") + self.text = text + self.ident = ident + self.fname = "" + self.fdata = None + self.test = "" + self.test_id = test_id + self.lineno = lineno + self.col_offset = col_offset + self.end_col_offset = end_col_offset + self.linerange = [] + + def __str__(self): + return ( + "Issue: '%s' from %s:%s: CWE: %s, Severity: %s Confidence: " + "%s at %s:%i:%i" + ) % ( + self.text, + self.test_id, + (self.ident or self.test), + str(self.cwe), + self.severity, + self.confidence, + self.fname, + self.lineno, + self.col_offset, + ) + + def __eq__(self, other): + # if the issue text, severity, confidence, and filename match, it's + # the same issue from our perspective + match_types = [ + "text", + "severity", + "cwe", + "confidence", + "fname", + "test", + "test_id", + ] + return all( + getattr(self, field) == getattr(other, field) + for field in match_types + ) + + def __ne__(self, other): + return not self.__eq__(other) + + def __hash__(self): + return id(self) + + def filter(self, severity, confidence): + """Utility to filter on confidence and severity + + This function determines whether an issue should be included by + comparing the severity and confidence rating of the issue to minimum + thresholds specified in 'severity' and 'confidence' respectively. + + Formatters should call manager.filter_results() directly. + + This will return false if either the confidence or severity of the + issue are lower than the given threshold values. + + :param severity: Severity threshold + :param confidence: Confidence threshold + :return: True/False depending on whether issue meets threshold + + """ + rank = constants.RANKING + return rank.index(self.severity) >= rank.index( + severity + ) and rank.index(self.confidence) >= rank.index(confidence) + + def get_code(self, max_lines=3, tabbed=False): + """Gets lines of code from a file the generated this issue. + + :param max_lines: Max lines of context to return + :param tabbed: Use tabbing in the output + :return: strings of code + """ + lines = [] + max_lines = max(max_lines, 1) + lmin = max(1, self.lineno - max_lines // 2) + lmax = lmin + len(self.linerange) + max_lines - 1 + + if self.fname == "": + self.fdata.seek(0) + for line_num in range(1, lmin): + self.fdata.readline() + + tmplt = "%i\t%s" if tabbed else "%i %s" + for line in range(lmin, lmax): + if self.fname == "": + text = self.fdata.readline() + else: + text = linecache.getline(self.fname, line) + + if isinstance(text, bytes): + text = text.decode("utf-8") + + if not len(text): + break + lines.append(tmplt % (line, text)) + return "".join(lines) + + def as_dict(self, with_code=True, max_lines=3): + """Convert the issue to a dict of values for outputting.""" + out = { + "filename": self.fname, + "test_name": self.test, + "test_id": self.test_id, + "issue_severity": self.severity, + "issue_cwe": self.cwe.as_dict(), + "issue_confidence": self.confidence, + "issue_text": self.text.encode("utf-8").decode("utf-8"), + "line_number": self.lineno, + "line_range": self.linerange, + "col_offset": self.col_offset, + "end_col_offset": self.end_col_offset, + } + + if with_code: + out["code"] = self.get_code(max_lines=max_lines) + return out + + def from_dict(self, data, with_code=True): + self.code = data["code"] + self.fname = data["filename"] + self.severity = data["issue_severity"] + self.cwe = cwe_from_dict(data["issue_cwe"]) + self.confidence = data["issue_confidence"] + self.text = data["issue_text"] + self.test = data["test_name"] + self.test_id = data["test_id"] + self.lineno = data["line_number"] + self.linerange = data["line_range"] + self.col_offset = data.get("col_offset", 0) + self.end_col_offset = data.get("end_col_offset", 0) + + +def cwe_from_dict(data): + cwe = Cwe() + cwe.from_dict(data) + return cwe + + +def issue_from_dict(data): + i = Issue(severity=data["issue_severity"]) + i.from_dict(data) + return i diff --git a/.venv/lib/python3.12/site-packages/bandit/core/manager.py b/.venv/lib/python3.12/site-packages/bandit/core/manager.py new file mode 100644 index 0000000..ffc13ca --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/manager.py @@ -0,0 +1,499 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import collections +import fnmatch +import io +import json +import logging +import os +import re +import sys +import tokenize +import traceback + +from rich import progress + +from bandit.core import constants as b_constants +from bandit.core import extension_loader +from bandit.core import issue +from bandit.core import meta_ast as b_meta_ast +from bandit.core import metrics +from bandit.core import node_visitor as b_node_visitor +from bandit.core import test_set as b_test_set + +LOG = logging.getLogger(__name__) +NOSEC_COMMENT = re.compile(r"#\s*nosec:?\s*(?P[^#]+)?#?") +NOSEC_COMMENT_TESTS = re.compile(r"(?:(B\d+|[a-z\d_]+),?)+", re.IGNORECASE) +PROGRESS_THRESHOLD = 50 + + +class BanditManager: + scope = [] + + def __init__( + self, + config, + agg_type, + debug=False, + verbose=False, + quiet=False, + profile=None, + ignore_nosec=False, + ): + """Get logger, config, AST handler, and result store ready + + :param config: config options object + :type config: bandit.core.BanditConfig + :param agg_type: aggregation type + :param debug: Whether to show debug messages or not + :param verbose: Whether to show verbose output + :param quiet: Whether to only show output in the case of an error + :param profile_name: Optional name of profile to use (from cmd line) + :param ignore_nosec: Whether to ignore #nosec or not + :return: + """ + self.debug = debug + self.verbose = verbose + self.quiet = quiet + if not profile: + profile = {} + self.ignore_nosec = ignore_nosec + self.b_conf = config + self.files_list = [] + self.excluded_files = [] + self.b_ma = b_meta_ast.BanditMetaAst() + self.skipped = [] + self.results = [] + self.baseline = [] + self.agg_type = agg_type + self.metrics = metrics.Metrics() + self.b_ts = b_test_set.BanditTestSet(config, profile) + self.scores = [] + + def get_skipped(self): + ret = [] + # "skip" is a tuple of name and reason, decode just the name + for skip in self.skipped: + if isinstance(skip[0], bytes): + ret.append((skip[0].decode("utf-8"), skip[1])) + else: + ret.append(skip) + return ret + + def get_issue_list( + self, sev_level=b_constants.LOW, conf_level=b_constants.LOW + ): + return self.filter_results(sev_level, conf_level) + + def populate_baseline(self, data): + """Populate a baseline set of issues from a JSON report + + This will populate a list of baseline issues discovered from a previous + run of bandit. Later this baseline can be used to filter out the result + set, see filter_results. + """ + items = [] + try: + jdata = json.loads(data) + items = [issue.issue_from_dict(j) for j in jdata["results"]] + except Exception as e: + LOG.warning("Failed to load baseline data: %s", e) + self.baseline = items + + def filter_results(self, sev_filter, conf_filter): + """Returns a list of results filtered by the baseline + + This works by checking the number of results returned from each file we + process. If the number of results is different to the number reported + for the same file in the baseline, then we return all results for the + file. We can't reliably return just the new results, as line numbers + will likely have changed. + + :param sev_filter: severity level filter to apply + :param conf_filter: confidence level filter to apply + """ + + results = [ + i for i in self.results if i.filter(sev_filter, conf_filter) + ] + + if not self.baseline: + return results + + unmatched = _compare_baseline_results(self.baseline, results) + # if it's a baseline we'll return a dictionary of issues and a list of + # candidate issues + return _find_candidate_matches(unmatched, results) + + def results_count( + self, sev_filter=b_constants.LOW, conf_filter=b_constants.LOW + ): + """Return the count of results + + :param sev_filter: Severity level to filter lower + :param conf_filter: Confidence level to filter + :return: Number of results in the set + """ + return len(self.get_issue_list(sev_filter, conf_filter)) + + def output_results( + self, + lines, + sev_level, + conf_level, + output_file, + output_format, + template=None, + ): + """Outputs results from the result store + + :param lines: How many surrounding lines to show per result + :param sev_level: Which severity levels to show (LOW, MEDIUM, HIGH) + :param conf_level: Which confidence levels to show (LOW, MEDIUM, HIGH) + :param output_file: File to store results + :param output_format: output format plugin name + :param template: Output template with non-terminal tags + (default: {abspath}:{line}: + {test_id}[bandit]: {severity}: {msg}) + :return: - + """ + try: + formatters_mgr = extension_loader.MANAGER.formatters_mgr + if output_format not in formatters_mgr: + output_format = ( + "screen" + if ( + sys.stdout.isatty() + and os.getenv("NO_COLOR") is None + and os.getenv("TERM") != "dumb" + ) + else "txt" + ) + + formatter = formatters_mgr[output_format] + report_func = formatter.plugin + if output_format == "custom": + report_func( + self, + fileobj=output_file, + sev_level=sev_level, + conf_level=conf_level, + template=template, + ) + else: + report_func( + self, + fileobj=output_file, + sev_level=sev_level, + conf_level=conf_level, + lines=lines, + ) + + except Exception as e: + raise RuntimeError( + f"Unable to output report using " + f"'{output_format}' formatter: {str(e)}" + ) + + def discover_files(self, targets, recursive=False, excluded_paths=""): + """Add tests directly and from a directory to the test set + + :param targets: The command line list of files and directories + :param recursive: True/False - whether to add all files from dirs + :return: + """ + # We'll mantain a list of files which are added, and ones which have + # been explicitly excluded + files_list = set() + excluded_files = set() + + excluded_path_globs = self.b_conf.get_option("exclude_dirs") or [] + included_globs = self.b_conf.get_option("include") or ["*.py"] + + # if there are command line provided exclusions add them to the list + if excluded_paths: + for path in excluded_paths.split(","): + if os.path.isdir(path): + path = os.path.join(path, "*") + + excluded_path_globs.append(path) + + # build list of files we will analyze + for fname in targets: + # if this is a directory and recursive is set, find all files + if os.path.isdir(fname): + if recursive: + new_files, newly_excluded = _get_files_from_dir( + fname, + included_globs=included_globs, + excluded_path_strings=excluded_path_globs, + ) + files_list.update(new_files) + excluded_files.update(newly_excluded) + else: + LOG.warning( + "Skipping directory (%s), use -r flag to " + "scan contents", + fname, + ) + + else: + # if the user explicitly mentions a file on command line, + # we'll scan it, regardless of whether it's in the included + # file types list + if _is_file_included( + fname, + included_globs, + excluded_path_globs, + enforce_glob=False, + ): + if fname != "-": + fname = os.path.join(".", fname) + files_list.add(fname) + else: + excluded_files.add(fname) + + self.files_list = sorted(files_list) + self.excluded_files = sorted(excluded_files) + + def run_tests(self): + """Runs through all files in the scope + + :return: - + """ + # if we have problems with a file, we'll remove it from the files_list + # and add it to the skipped list instead + new_files_list = list(self.files_list) + if ( + len(self.files_list) > PROGRESS_THRESHOLD + and LOG.getEffectiveLevel() <= logging.INFO + ): + files = progress.track(self.files_list) + else: + files = self.files_list + + for count, fname in enumerate(files): + LOG.debug("working on file : %s", fname) + + try: + if fname == "-": + open_fd = os.fdopen(sys.stdin.fileno(), "rb", 0) + fdata = io.BytesIO(open_fd.read()) + new_files_list = [ + "" if x == "-" else x for x in new_files_list + ] + self._parse_file("", fdata, new_files_list) + else: + with open(fname, "rb") as fdata: + self._parse_file(fname, fdata, new_files_list) + except OSError as e: + self.skipped.append((fname, e.strerror)) + new_files_list.remove(fname) + + # reflect any files which may have been skipped + self.files_list = new_files_list + + # do final aggregation of metrics + self.metrics.aggregate() + + def _parse_file(self, fname, fdata, new_files_list): + try: + # parse the current file + data = fdata.read() + lines = data.splitlines() + self.metrics.begin(fname) + self.metrics.count_locs(lines) + # nosec_lines is a dict of line number -> set of tests to ignore + # for the line + nosec_lines = dict() + try: + fdata.seek(0) + tokens = tokenize.tokenize(fdata.readline) + + if not self.ignore_nosec: + for toktype, tokval, (lineno, _), _, _ in tokens: + if toktype == tokenize.COMMENT: + nosec_lines[lineno] = _parse_nosec_comment(tokval) + + except tokenize.TokenError: + pass + score = self._execute_ast_visitor(fname, fdata, data, nosec_lines) + self.scores.append(score) + self.metrics.count_issues([score]) + except KeyboardInterrupt: + sys.exit(2) + except SyntaxError: + self.skipped.append( + (fname, "syntax error while parsing AST from file") + ) + new_files_list.remove(fname) + except Exception as e: + LOG.error( + "Exception occurred when executing tests against %s.", fname + ) + if not LOG.isEnabledFor(logging.DEBUG): + LOG.error( + 'Run "bandit --debug %s" to see the full traceback.', fname + ) + + self.skipped.append((fname, "exception while scanning file")) + new_files_list.remove(fname) + LOG.debug(" Exception string: %s", e) + LOG.debug(" Exception traceback: %s", traceback.format_exc()) + + def _execute_ast_visitor(self, fname, fdata, data, nosec_lines): + """Execute AST parse on each file + + :param fname: The name of the file being parsed + :param data: Original file contents + :param lines: The lines of code to process + :return: The accumulated test score + """ + score = [] + res = b_node_visitor.BanditNodeVisitor( + fname, + fdata, + self.b_ma, + self.b_ts, + self.debug, + nosec_lines, + self.metrics, + ) + + score = res.process(data) + self.results.extend(res.tester.results) + return score + + +def _get_files_from_dir( + files_dir, included_globs=None, excluded_path_strings=None +): + if not included_globs: + included_globs = ["*.py"] + if not excluded_path_strings: + excluded_path_strings = [] + + files_list = set() + excluded_files = set() + + for root, _, files in os.walk(files_dir): + for filename in files: + path = os.path.join(root, filename) + if _is_file_included(path, included_globs, excluded_path_strings): + files_list.add(path) + else: + excluded_files.add(path) + + return files_list, excluded_files + + +def _is_file_included( + path, included_globs, excluded_path_strings, enforce_glob=True +): + """Determine if a file should be included based on filename + + This utility function determines if a file should be included based + on the file name, a list of parsed extensions, excluded paths, and a flag + specifying whether extensions should be enforced. + + :param path: Full path of file to check + :param parsed_extensions: List of parsed extensions + :param excluded_paths: List of paths (globbing supported) from which we + should not include files + :param enforce_glob: Can set to false to bypass extension check + :return: Boolean indicating whether a file should be included + """ + return_value = False + + # if this is matches a glob of files we look at, and it isn't in an + # excluded path + if _matches_glob_list(path, included_globs) or not enforce_glob: + if not _matches_glob_list(path, excluded_path_strings) and not any( + x in path for x in excluded_path_strings + ): + return_value = True + + return return_value + + +def _matches_glob_list(filename, glob_list): + for glob in glob_list: + if fnmatch.fnmatch(filename, glob): + return True + return False + + +def _compare_baseline_results(baseline, results): + """Compare a baseline list of issues to list of results + + This function compares a baseline set of issues to a current set of issues + to find results that weren't present in the baseline. + + :param baseline: Baseline list of issues + :param results: Current list of issues + :return: List of unmatched issues + """ + return [a for a in results if a not in baseline] + + +def _find_candidate_matches(unmatched_issues, results_list): + """Returns a dictionary with issue candidates + + For example, let's say we find a new command injection issue in a file + which used to have two. Bandit can't tell which of the command injection + issues in the file are new, so it will show all three. The user should + be able to pick out the new one. + + :param unmatched_issues: List of issues that weren't present before + :param results_list: main list of current Bandit findings + :return: A dictionary with a list of candidates for each issue + """ + + issue_candidates = collections.OrderedDict() + + for unmatched in unmatched_issues: + issue_candidates[unmatched] = [ + i for i in results_list if unmatched == i + ] + + return issue_candidates + + +def _find_test_id_from_nosec_string(extman, match): + test_id = extman.check_id(match) + if test_id: + return match + # Finding by short_id didn't work, let's check the test name + test_id = extman.get_test_id(match) + if not test_id: + # Name and short id didn't work: + LOG.warning( + "Test in comment: %s is not a test name or id, ignoring", match + ) + return test_id # We want to return None or the string here regardless + + +def _parse_nosec_comment(comment): + found_no_sec_comment = NOSEC_COMMENT.search(comment) + if not found_no_sec_comment: + # there was no nosec comment + return None + + matches = found_no_sec_comment.groupdict() + nosec_tests = matches.get("tests", set()) + + # empty set indicates that there was a nosec comment without specific + # test ids or names + test_ids = set() + if nosec_tests: + extman = extension_loader.MANAGER + # lookup tests by short code or name + for test in NOSEC_COMMENT_TESTS.finditer(nosec_tests): + test_match = test.group(1) + test_id = _find_test_id_from_nosec_string(extman, test_match) + if test_id: + test_ids.add(test_id) + + return test_ids diff --git a/.venv/lib/python3.12/site-packages/bandit/core/meta_ast.py b/.venv/lib/python3.12/site-packages/bandit/core/meta_ast.py new file mode 100644 index 0000000..7bcd7f8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/meta_ast.py @@ -0,0 +1,44 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import collections +import logging + +LOG = logging.getLogger(__name__) + + +class BanditMetaAst: + nodes = collections.OrderedDict() + + def __init__(self): + pass + + def add_node(self, node, parent_id, depth): + """Add a node to the AST node collection + + :param node: The AST node to add + :param parent_id: The ID of the node's parent + :param depth: The depth of the node + :return: - + """ + node_id = hex(id(node)) + LOG.debug("adding node : %s [%s]", node_id, depth) + self.nodes[node_id] = { + "raw": node, + "parent_id": parent_id, + "depth": depth, + } + + def __str__(self): + """Dumps a listing of all of the nodes + + Dumps a listing of all of the nodes for debugging purposes + :return: - + """ + tmpstr = "" + for k, v in self.nodes.items(): + tmpstr += f"Node: {k}\n" + tmpstr += f"\t{str(v)}\n" + tmpstr += f"Length: {len(self.nodes)}\n" + return tmpstr diff --git a/.venv/lib/python3.12/site-packages/bandit/core/metrics.py b/.venv/lib/python3.12/site-packages/bandit/core/metrics.py new file mode 100644 index 0000000..c212290 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/metrics.py @@ -0,0 +1,106 @@ +# +# Copyright 2015 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import collections + +from bandit.core import constants + + +class Metrics: + """Bandit metric gathering. + + This class is a singleton used to gather and process metrics collected when + processing a code base with bandit. Metric collection is stateful, that + is, an active metric block will be set when requested and all subsequent + operations will effect that metric block until it is replaced by a setting + a new one. + """ + + def __init__(self): + self.data = dict() + self.data["_totals"] = { + "loc": 0, + "nosec": 0, + "skipped_tests": 0, + } + + # initialize 0 totals for criteria and rank; this will be reset later + for rank in constants.RANKING: + for criteria in constants.CRITERIA: + self.data["_totals"][f"{criteria[0]}.{rank}"] = 0 + + def begin(self, fname): + """Begin a new metric block. + + This starts a new metric collection name "fname" and makes is active. + :param fname: the metrics unique name, normally the file name. + """ + self.data[fname] = { + "loc": 0, + "nosec": 0, + "skipped_tests": 0, + } + self.current = self.data[fname] + + def note_nosec(self, num=1): + """Note a "nosec" comment. + + Increment the currently active metrics nosec count. + :param num: number of nosecs seen, defaults to 1 + """ + self.current["nosec"] += num + + def note_skipped_test(self, num=1): + """Note a "nosec BXXX, BYYY, ..." comment. + + Increment the currently active metrics skipped_tests count. + :param num: number of skipped_tests seen, defaults to 1 + """ + self.current["skipped_tests"] += num + + def count_locs(self, lines): + """Count lines of code. + + We count lines that are not empty and are not comments. The result is + added to our currently active metrics loc count (normally this is 0). + + :param lines: lines in the file to process + """ + + def proc(line): + tmp = line.strip() + return bool(tmp and not tmp.startswith(b"#")) + + self.current["loc"] += sum(proc(line) for line in lines) + + def count_issues(self, scores): + self.current.update(self._get_issue_counts(scores)) + + def aggregate(self): + """Do final aggregation of metrics.""" + c = collections.Counter() + for fname in self.data: + c.update(self.data[fname]) + self.data["_totals"] = dict(c) + + @staticmethod + def _get_issue_counts(scores): + """Get issue counts aggregated by confidence/severity rankings. + + :param scores: list of scores to aggregate / count + :return: aggregated total (count) of issues identified + """ + issue_counts = {} + for score in scores: + for criteria, _ in constants.CRITERIA: + for i, rank in enumerate(constants.RANKING): + label = f"{criteria}.{rank}" + if label not in issue_counts: + issue_counts[label] = 0 + count = ( + score[criteria][i] + // constants.RANKING_VALUES[rank] + ) + issue_counts[label] += count + return issue_counts diff --git a/.venv/lib/python3.12/site-packages/bandit/core/node_visitor.py b/.venv/lib/python3.12/site-packages/bandit/core/node_visitor.py new file mode 100644 index 0000000..938e873 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/node_visitor.py @@ -0,0 +1,297 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import ast +import logging +import operator + +from bandit.core import constants +from bandit.core import tester as b_tester +from bandit.core import utils as b_utils + +LOG = logging.getLogger(__name__) + + +class BanditNodeVisitor: + def __init__( + self, fname, fdata, metaast, testset, debug, nosec_lines, metrics + ): + self.debug = debug + self.nosec_lines = nosec_lines + self.scores = { + "SEVERITY": [0] * len(constants.RANKING), + "CONFIDENCE": [0] * len(constants.RANKING), + } + self.depth = 0 + self.fname = fname + self.fdata = fdata + self.metaast = metaast + self.testset = testset + self.imports = set() + self.import_aliases = {} + self.tester = b_tester.BanditTester( + self.testset, self.debug, nosec_lines, metrics + ) + + # in some cases we can't determine a qualified name + try: + self.namespace = b_utils.get_module_qualname_from_path(fname) + except b_utils.InvalidModulePath: + LOG.warning( + "Unable to find qualified name for module: %s", self.fname + ) + self.namespace = "" + LOG.debug("Module qualified name: %s", self.namespace) + self.metrics = metrics + + def visit_ClassDef(self, node): + """Visitor for AST ClassDef node + + Add class name to current namespace for all descendants. + :param node: Node being inspected + :return: - + """ + # For all child nodes, add this class name to current namespace + self.namespace = b_utils.namespace_path_join(self.namespace, node.name) + + def visit_FunctionDef(self, node): + """Visitor for AST FunctionDef nodes + + add relevant information about the node to + the context for use in tests which inspect function definitions. + Add the function name to the current namespace for all descendants. + :param node: The node that is being inspected + :return: - + """ + + self.context["function"] = node + qualname = self.namespace + "." + b_utils.get_func_name(node) + name = qualname.split(".")[-1] + + self.context["qualname"] = qualname + self.context["name"] = name + + # For all child nodes and any tests run, add this function name to + # current namespace + self.namespace = b_utils.namespace_path_join(self.namespace, name) + self.update_scores(self.tester.run_tests(self.context, "FunctionDef")) + + def visit_Call(self, node): + """Visitor for AST Call nodes + + add relevant information about the node to + the context for use in tests which inspect function calls. + :param node: The node that is being inspected + :return: - + """ + + self.context["call"] = node + qualname = b_utils.get_call_name(node, self.import_aliases) + name = qualname.split(".")[-1] + + self.context["qualname"] = qualname + self.context["name"] = name + + self.update_scores(self.tester.run_tests(self.context, "Call")) + + def visit_Import(self, node): + """Visitor for AST Import nodes + + add relevant information about node to + the context for use in tests which inspect imports. + :param node: The node that is being inspected + :return: - + """ + for nodename in node.names: + if nodename.asname: + self.import_aliases[nodename.asname] = nodename.name + self.imports.add(nodename.name) + self.context["module"] = nodename.name + self.update_scores(self.tester.run_tests(self.context, "Import")) + + def visit_ImportFrom(self, node): + """Visitor for AST ImportFrom nodes + + add relevant information about node to + the context for use in tests which inspect imports. + :param node: The node that is being inspected + :return: - + """ + module = node.module + if module is None: + return self.visit_Import(node) + + for nodename in node.names: + # TODO(ljfisher) Names in import_aliases could be overridden + # by local definitions. If this occurs bandit will see the + # name in import_aliases instead of the local definition. + # We need better tracking of names. + if nodename.asname: + self.import_aliases[nodename.asname] = ( + module + "." + nodename.name + ) + else: + # Even if import is not aliased we need an entry that maps + # name to module.name. For example, with 'from a import b' + # b should be aliased to the qualified name a.b + self.import_aliases[nodename.name] = ( + module + "." + nodename.name + ) + self.imports.add(module + "." + nodename.name) + self.context["module"] = module + self.context["name"] = nodename.name + self.update_scores(self.tester.run_tests(self.context, "ImportFrom")) + + def visit_Constant(self, node): + """Visitor for AST Constant nodes + + call the appropriate method for the node type. + this maintains compatibility with <3.6 and 3.8+ + + This code is heavily influenced by Anthony Sottile (@asottile) here: + https://bugs.python.org/msg342486 + + :param node: The node that is being inspected + :return: - + """ + if isinstance(node.value, str): + self.visit_Str(node) + elif isinstance(node.value, bytes): + self.visit_Bytes(node) + + def visit_Str(self, node): + """Visitor for AST String nodes + + add relevant information about node to + the context for use in tests which inspect strings. + :param node: The node that is being inspected + :return: - + """ + self.context["str"] = node.s + if not isinstance(node._bandit_parent, ast.Expr): # docstring + self.context["linerange"] = b_utils.linerange(node._bandit_parent) + self.update_scores(self.tester.run_tests(self.context, "Str")) + + def visit_Bytes(self, node): + """Visitor for AST Bytes nodes + + add relevant information about node to + the context for use in tests which inspect strings. + :param node: The node that is being inspected + :return: - + """ + self.context["bytes"] = node.s + if not isinstance(node._bandit_parent, ast.Expr): # docstring + self.context["linerange"] = b_utils.linerange(node._bandit_parent) + self.update_scores(self.tester.run_tests(self.context, "Bytes")) + + def pre_visit(self, node): + self.context = {} + self.context["imports"] = self.imports + self.context["import_aliases"] = self.import_aliases + + if self.debug: + LOG.debug(ast.dump(node)) + self.metaast.add_node(node, "", self.depth) + + if hasattr(node, "lineno"): + self.context["lineno"] = node.lineno + + if hasattr(node, "col_offset"): + self.context["col_offset"] = node.col_offset + if hasattr(node, "end_col_offset"): + self.context["end_col_offset"] = node.end_col_offset + + self.context["node"] = node + self.context["linerange"] = b_utils.linerange(node) + self.context["filename"] = self.fname + self.context["file_data"] = self.fdata + + LOG.debug( + "entering: %s %s [%s]", hex(id(node)), type(node), self.depth + ) + self.depth += 1 + LOG.debug(self.context) + return True + + def visit(self, node): + name = node.__class__.__name__ + method = "visit_" + name + visitor = getattr(self, method, None) + if visitor is not None: + if self.debug: + LOG.debug("%s called (%s)", method, ast.dump(node)) + visitor(node) + else: + self.update_scores(self.tester.run_tests(self.context, name)) + + def post_visit(self, node): + self.depth -= 1 + LOG.debug("%s\texiting : %s", self.depth, hex(id(node))) + + # HACK(tkelsey): this is needed to clean up post-recursion stuff that + # gets setup in the visit methods for these node types. + if isinstance(node, (ast.FunctionDef, ast.ClassDef)): + self.namespace = b_utils.namespace_path_split(self.namespace)[0] + + def generic_visit(self, node): + """Drive the visitor.""" + for _, value in ast.iter_fields(node): + if isinstance(value, list): + max_idx = len(value) - 1 + for idx, item in enumerate(value): + if isinstance(item, ast.AST): + if idx < max_idx: + item._bandit_sibling = value[idx + 1] + else: + item._bandit_sibling = None + item._bandit_parent = node + + if self.pre_visit(item): + self.visit(item) + self.generic_visit(item) + self.post_visit(item) + + elif isinstance(value, ast.AST): + value._bandit_sibling = None + value._bandit_parent = node + if self.pre_visit(value): + self.visit(value) + self.generic_visit(value) + self.post_visit(value) + + def update_scores(self, scores): + """Score updater + + Since we moved from a single score value to a map of scores per + severity, this is needed to update the stored list. + :param score: The score list to update our scores with + """ + # we'll end up with something like: + # SEVERITY: {0, 0, 0, 10} where 10 is weighted by finding and level + for score_type in self.scores: + self.scores[score_type] = list( + map(operator.add, self.scores[score_type], scores[score_type]) + ) + + def process(self, data): + """Main process loop + + Build and process the AST + :param lines: lines code to process + :return score: the aggregated score for the current file + """ + f_ast = ast.parse(data) + self.generic_visit(f_ast) + # Run tests that do not require access to the AST, + # but only to the whole file source: + self.context = { + "file_data": self.fdata, + "filename": self.fname, + "lineno": 0, + "linerange": [0, 1], + "col_offset": 0, + } + self.update_scores(self.tester.run_tests(self.context, "File")) + return self.scores diff --git a/.venv/lib/python3.12/site-packages/bandit/core/test_properties.py b/.venv/lib/python3.12/site-packages/bandit/core/test_properties.py new file mode 100644 index 0000000..f6d4da1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/test_properties.py @@ -0,0 +1,83 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import logging + +from bandit.core import utils + +LOG = logging.getLogger(__name__) + + +def checks(*args): + """Decorator function to set checks to be run.""" + + def wrapper(func): + if not hasattr(func, "_checks"): + func._checks = [] + for arg in args: + if arg == "File": + func._checks.append("File") + else: + func._checks.append(utils.check_ast_node(arg)) + + LOG.debug("checks() decorator executed") + LOG.debug(" func._checks: %s", func._checks) + return func + + return wrapper + + +def takes_config(*args): + """Test function takes config + + Use of this delegate before a test function indicates that it should be + passed data from the config file. Passing a name parameter allows + aliasing tests and thus sharing config options. + """ + name = "" + + def _takes_config(func): + if not hasattr(func, "_takes_config"): + func._takes_config = name + return func + + if len(args) == 1 and callable(args[0]): + name = args[0].__name__ + return _takes_config(args[0]) + else: + name = args[0] + return _takes_config + + +def test_id(id_val): + """Test function identifier + + Use this decorator before a test function indicates its simple ID + """ + + def _has_id(func): + if not hasattr(func, "_test_id"): + func._test_id = id_val + return func + + return _has_id + + +def accepts_baseline(*args): + """Decorator to indicate formatter accepts baseline results + + Use of this decorator before a formatter indicates that it is able to deal + with baseline results. Specifically this means it has a way to display + candidate results and know when it should do so. + """ + + def wrapper(func): + if not hasattr(func, "_accepts_baseline"): + func._accepts_baseline = True + + LOG.debug("accepts_baseline() decorator executed on %s", func.__name__) + + return func + + return wrapper(args[0]) diff --git a/.venv/lib/python3.12/site-packages/bandit/core/test_set.py b/.venv/lib/python3.12/site-packages/bandit/core/test_set.py new file mode 100644 index 0000000..1e7dd0d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/test_set.py @@ -0,0 +1,114 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import importlib +import logging + +from bandit.core import blacklisting +from bandit.core import extension_loader + +LOG = logging.getLogger(__name__) + + +class BanditTestSet: + def __init__(self, config, profile=None): + if not profile: + profile = {} + extman = extension_loader.MANAGER + filtering = self._get_filter(config, profile) + self.plugins = [ + p for p in extman.plugins if p.plugin._test_id in filtering + ] + self.plugins.extend(self._load_builtins(filtering, profile)) + self._load_tests(config, self.plugins) + + @staticmethod + def _get_filter(config, profile): + extman = extension_loader.MANAGER + + inc = set(profile.get("include", [])) + exc = set(profile.get("exclude", [])) + + all_blacklist_tests = set() + for _, tests in extman.blacklist.items(): + all_blacklist_tests.update(t["id"] for t in tests) + + # this block is purely for backwards compatibility, the rules are as + # follows: + # B001,B401 means B401 + # B401 means B401 + # B001 means all blacklist tests + if "B001" in inc: + if not inc.intersection(all_blacklist_tests): + inc.update(all_blacklist_tests) + inc.discard("B001") + if "B001" in exc: + if not exc.intersection(all_blacklist_tests): + exc.update(all_blacklist_tests) + exc.discard("B001") + + if inc: + filtered = inc + else: + filtered = set(extman.plugins_by_id.keys()) + filtered.update(extman.builtin) + filtered.update(all_blacklist_tests) + return filtered - exc + + def _load_builtins(self, filtering, profile): + """loads up builtin functions, so they can be filtered.""" + + class Wrapper: + def __init__(self, name, plugin): + self.name = name + self.plugin = plugin + + extman = extension_loader.MANAGER + blacklist = profile.get("blacklist") + if not blacklist: # not overridden by legacy data + blacklist = {} + for node, tests in extman.blacklist.items(): + values = [t for t in tests if t["id"] in filtering] + if values: + blacklist[node] = values + + if not blacklist: + return [] + + # this dresses up the blacklist to look like a plugin, but + # the '_checks' data comes from the blacklist information. + # the '_config' is the filtered blacklist data set. + blacklisting.blacklist._test_id = "B001" + blacklisting.blacklist._checks = blacklist.keys() + blacklisting.blacklist._config = blacklist + + return [Wrapper("blacklist", blacklisting.blacklist)] + + def _load_tests(self, config, plugins): + """Builds a dict mapping tests to node types.""" + self.tests = {} + for plugin in plugins: + if hasattr(plugin.plugin, "_takes_config"): + # TODO(??): config could come from profile ... + cfg = config.get_option(plugin.plugin._takes_config) + if cfg is None: + genner = importlib.import_module(plugin.plugin.__module__) + cfg = genner.gen_config(plugin.plugin._takes_config) + plugin.plugin._config = cfg + for check in plugin.plugin._checks: + self.tests.setdefault(check, []).append(plugin.plugin) + LOG.debug( + "added function %s (%s) targeting %s", + plugin.name, + plugin.plugin._test_id, + check, + ) + + def get_tests(self, checktype): + """Returns all tests that are of type checktype + + :param checktype: The type of test to filter on + :return: A list of tests which are of the specified type + """ + return self.tests.get(checktype) or [] diff --git a/.venv/lib/python3.12/site-packages/bandit/core/tester.py b/.venv/lib/python3.12/site-packages/bandit/core/tester.py new file mode 100644 index 0000000..e92c29f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/tester.py @@ -0,0 +1,166 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import copy +import logging +import warnings + +from bandit.core import constants +from bandit.core import context as b_context +from bandit.core import utils + +warnings.formatwarning = utils.warnings_formatter +LOG = logging.getLogger(__name__) + + +class BanditTester: + def __init__(self, testset, debug, nosec_lines, metrics): + self.results = [] + self.testset = testset + self.last_result = None + self.debug = debug + self.nosec_lines = nosec_lines + self.metrics = metrics + + def run_tests(self, raw_context, checktype): + """Runs all tests for a certain type of check, for example + + Runs all tests for a certain type of check, for example 'functions' + store results in results. + + :param raw_context: Raw context dictionary + :param checktype: The type of checks to run + :return: a score based on the number and type of test results with + extra metrics about nosec comments + """ + + scores = { + "SEVERITY": [0] * len(constants.RANKING), + "CONFIDENCE": [0] * len(constants.RANKING), + } + + tests = self.testset.get_tests(checktype) + for test in tests: + name = test.__name__ + # execute test with an instance of the context class + temp_context = copy.copy(raw_context) + context = b_context.Context(temp_context) + try: + if hasattr(test, "_config"): + result = test(context, test._config) + else: + result = test(context) + + if result is not None: + nosec_tests_to_skip = self._get_nosecs_from_contexts( + temp_context, test_result=result + ) + + if isinstance(temp_context["filename"], bytes): + result.fname = temp_context["filename"].decode("utf-8") + else: + result.fname = temp_context["filename"] + result.fdata = temp_context["file_data"] + + if result.lineno is None: + result.lineno = temp_context["lineno"] + if result.linerange == []: + result.linerange = temp_context["linerange"] + if result.col_offset == -1: + result.col_offset = temp_context["col_offset"] + result.end_col_offset = temp_context.get( + "end_col_offset", 0 + ) + result.test = name + if result.test_id == "": + result.test_id = test._test_id + + # don't skip the test if there was no nosec comment + if nosec_tests_to_skip is not None: + # If the set is empty then it means that nosec was + # used without test number -> update nosecs counter. + # If the test id is in the set of tests to skip, + # log and increment the skip by test count. + if not nosec_tests_to_skip: + LOG.debug("skipped, nosec without test number") + self.metrics.note_nosec() + continue + if result.test_id in nosec_tests_to_skip: + LOG.debug( + f"skipped, nosec for test {result.test_id}" + ) + self.metrics.note_skipped_test() + continue + + self.results.append(result) + + LOG.debug("Issue identified by %s: %s", name, result) + sev = constants.RANKING.index(result.severity) + val = constants.RANKING_VALUES[result.severity] + scores["SEVERITY"][sev] += val + con = constants.RANKING.index(result.confidence) + val = constants.RANKING_VALUES[result.confidence] + scores["CONFIDENCE"][con] += val + else: + nosec_tests_to_skip = self._get_nosecs_from_contexts( + temp_context + ) + if ( + nosec_tests_to_skip + and test._test_id in nosec_tests_to_skip + ): + LOG.warning( + f"nosec encountered ({test._test_id}), but no " + f"failed test on line {temp_context['lineno']}" + ) + + except Exception as e: + self.report_error(name, context, e) + if self.debug: + raise + LOG.debug("Returning scores: %s", scores) + return scores + + def _get_nosecs_from_contexts(self, context, test_result=None): + """Use context and optional test result to get set of tests to skip. + :param context: temp context + :param test_result: optional test result + :return: set of tests to skip for the line based on contexts + """ + nosec_tests_to_skip = set() + base_tests = ( + self.nosec_lines.get(test_result.lineno, None) + if test_result + else None + ) + context_tests = utils.get_nosec(self.nosec_lines, context) + + # if both are none there were no comments + # this is explicitly different from being empty. + # empty set indicates blanket nosec comment without + # individual test names or ids + if base_tests is None and context_tests is None: + nosec_tests_to_skip = None + + # combine tests from current line and context line + if base_tests is not None: + nosec_tests_to_skip.update(base_tests) + if context_tests is not None: + nosec_tests_to_skip.update(context_tests) + + return nosec_tests_to_skip + + @staticmethod + def report_error(test, context, error): + what = "Bandit internal error running: " + what += f"{test} " + what += "on file %s at line %i: " % ( + context._context["filename"], + context._context["lineno"], + ) + what += str(error) + import traceback + + what += traceback.format_exc() + LOG.error(what) diff --git a/.venv/lib/python3.12/site-packages/bandit/core/utils.py b/.venv/lib/python3.12/site-packages/bandit/core/utils.py new file mode 100644 index 0000000..7fb7753 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/core/utils.py @@ -0,0 +1,378 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import ast +import logging +import os.path +import sys + +try: + import configparser +except ImportError: + import ConfigParser as configparser + +LOG = logging.getLogger(__name__) + + +"""Various helper functions.""" + + +def _get_attr_qual_name(node, aliases): + """Get a the full name for the attribute node. + + This will resolve a pseudo-qualified name for the attribute + rooted at node as long as all the deeper nodes are Names or + Attributes. This will give you how the code referenced the name but + will not tell you what the name actually refers to. If we + encounter a node without a static name we punt with an + empty string. If this encounters something more complex, such as + foo.mylist[0](a,b) we just return empty string. + + :param node: AST Name or Attribute node + :param aliases: Import aliases dictionary + :returns: Qualified name referred to by the attribute or name. + """ + if isinstance(node, ast.Name): + if node.id in aliases: + return aliases[node.id] + return node.id + elif isinstance(node, ast.Attribute): + name = f"{_get_attr_qual_name(node.value, aliases)}.{node.attr}" + if name in aliases: + return aliases[name] + return name + else: + return "" + + +def get_call_name(node, aliases): + if isinstance(node.func, ast.Name): + if deepgetattr(node, "func.id") in aliases: + return aliases[deepgetattr(node, "func.id")] + return deepgetattr(node, "func.id") + elif isinstance(node.func, ast.Attribute): + return _get_attr_qual_name(node.func, aliases) + else: + return "" + + +def get_func_name(node): + return node.name # TODO(tkelsey): get that qualname using enclosing scope + + +def get_qual_attr(node, aliases): + if isinstance(node, ast.Attribute): + try: + val = deepgetattr(node, "value.id") + if val in aliases: + prefix = aliases[val] + else: + prefix = deepgetattr(node, "value.id") + except Exception: + # NOTE(tkelsey): degrade gracefully when we can't get the fully + # qualified name for an attr, just return its base name. + prefix = "" + + return f"{prefix}.{node.attr}" + else: + return "" # TODO(tkelsey): process other node types + + +def deepgetattr(obj, attr): + """Recurses through an attribute chain to get the ultimate value.""" + for key in attr.split("."): + obj = getattr(obj, key) + return obj + + +class InvalidModulePath(Exception): + pass + + +class ConfigError(Exception): + """Raised when the config file fails validation.""" + + def __init__(self, message, config_file): + self.config_file = config_file + self.message = f"{config_file} : {message}" + super().__init__(self.message) + + +class ProfileNotFound(Exception): + """Raised when chosen profile cannot be found.""" + + def __init__(self, config_file, profile): + self.config_file = config_file + self.profile = profile + message = "Unable to find profile ({}) in config file: {}".format( + self.profile, + self.config_file, + ) + super().__init__(message) + + +def warnings_formatter( + message, category=UserWarning, filename="", lineno=-1, line="" +): + """Monkey patch for warnings.warn to suppress cruft output.""" + return f"{message}\n" + + +def get_module_qualname_from_path(path): + """Get the module's qualified name by analysis of the path. + + Resolve the absolute pathname and eliminate symlinks. This could result in + an incorrect name if symlinks are used to restructure the python lib + directory. + + Starting from the right-most directory component look for __init__.py in + the directory component. If it exists then the directory name is part of + the module name. Move left to the subsequent directory components until a + directory is found without __init__.py. + + :param: Path to module file. Relative paths will be resolved relative to + current working directory. + :return: fully qualified module name + """ + + (head, tail) = os.path.split(path) + if head == "" or tail == "": + raise InvalidModulePath( + f'Invalid python file path: "{path}" Missing path or file name' + ) + + qname = [os.path.splitext(tail)[0]] + while head not in ["/", ".", ""]: + if os.path.isfile(os.path.join(head, "__init__.py")): + (head, tail) = os.path.split(head) + qname.insert(0, tail) + else: + break + + qualname = ".".join(qname) + return qualname + + +def namespace_path_join(base, name): + """Extend the current namespace path with an additional name + + Take a namespace path (i.e., package.module.class) and extends it + with an additional name (i.e., package.module.class.subclass). + This is similar to how os.path.join works. + + :param base: (String) The base namespace path. + :param name: (String) The new name to append to the base path. + :returns: (String) A new namespace path resulting from combination of + base and name. + """ + return f"{base}.{name}" + + +def namespace_path_split(path): + """Split the namespace path into a pair (head, tail). + + Tail will be the last namespace path component and head will + be everything leading up to that in the path. This is similar to + os.path.split. + + :param path: (String) A namespace path. + :returns: (String, String) A tuple where the first component is the base + path and the second is the last path component. + """ + return tuple(path.rsplit(".", 1)) + + +def escaped_bytes_representation(b): + """PY3 bytes need escaping for comparison with other strings. + + In practice it turns control characters into acceptable codepoints then + encodes them into bytes again to turn unprintable bytes into printable + escape sequences. + + This is safe to do for the whole range 0..255 and result matches + unicode_escape on a unicode string. + """ + return b.decode("unicode_escape").encode("unicode_escape") + + +def calc_linerange(node): + """Calculate linerange for subtree""" + if hasattr(node, "_bandit_linerange"): + return node._bandit_linerange + + lines_min = 9999999999 + lines_max = -1 + if hasattr(node, "lineno"): + lines_min = node.lineno + lines_max = node.lineno + for n in ast.iter_child_nodes(node): + lines_minmax = calc_linerange(n) + lines_min = min(lines_min, lines_minmax[0]) + lines_max = max(lines_max, lines_minmax[1]) + + node._bandit_linerange = (lines_min, lines_max) + + return (lines_min, lines_max) + + +def linerange(node): + """Get line number range from a node.""" + if hasattr(node, "lineno"): + return list(range(node.lineno, node.end_lineno + 1)) + else: + if hasattr(node, "_bandit_linerange_stripped"): + lines_minmax = node._bandit_linerange_stripped + return list(range(lines_minmax[0], lines_minmax[1] + 1)) + + strip = { + "body": None, + "orelse": None, + "handlers": None, + "finalbody": None, + } + for key in strip.keys(): + if hasattr(node, key): + strip[key] = getattr(node, key) + setattr(node, key, []) + + lines_min = 9999999999 + lines_max = -1 + if hasattr(node, "lineno"): + lines_min = node.lineno + lines_max = node.lineno + for n in ast.iter_child_nodes(node): + lines_minmax = calc_linerange(n) + lines_min = min(lines_min, lines_minmax[0]) + lines_max = max(lines_max, lines_minmax[1]) + + for key in strip.keys(): + if strip[key] is not None: + setattr(node, key, strip[key]) + + if lines_max == -1: + lines_min = 0 + lines_max = 1 + + node._bandit_linerange_stripped = (lines_min, lines_max) + + lines = list(range(lines_min, lines_max + 1)) + + """Try and work around a known Python bug with multi-line strings.""" + # deal with multiline strings lineno behavior (Python issue #16806) + if hasattr(node, "_bandit_sibling") and hasattr( + node._bandit_sibling, "lineno" + ): + start = min(lines) + delta = node._bandit_sibling.lineno - start + if delta > 1: + return list(range(start, node._bandit_sibling.lineno)) + return lines + + +def concat_string(node, stop=None): + """Builds a string from a ast.BinOp chain. + + This will build a string from a series of ast.Str nodes wrapped in + ast.BinOp nodes. Something like "a" + "b" + "c" or "a %s" % val etc. + The provided node can be any participant in the BinOp chain. + + :param node: (ast.Str or ast.BinOp) The node to process + :param stop: (ast.Str or ast.BinOp) Optional base node to stop at + :returns: (Tuple) the root node of the expression, the string value + """ + + def _get(node, bits, stop=None): + if node != stop: + bits.append( + _get(node.left, bits, stop) + if isinstance(node.left, ast.BinOp) + else node.left + ) + bits.append( + _get(node.right, bits, stop) + if isinstance(node.right, ast.BinOp) + else node.right + ) + + bits = [node] + while isinstance(node._bandit_parent, ast.BinOp): + node = node._bandit_parent + if isinstance(node, ast.BinOp): + _get(node, bits, stop) + return (node, " ".join([x.s for x in bits if isinstance(x, ast.Str)])) + + +def get_called_name(node): + """Get a function name from an ast.Call node. + + An ast.Call node representing a method call with present differently to one + wrapping a function call: thing.call() vs call(). This helper will grab the + unqualified call name correctly in either case. + + :param node: (ast.Call) the call node + :returns: (String) the function name + """ + func = node.func + try: + return func.attr if isinstance(func, ast.Attribute) else func.id + except AttributeError: + return "" + + +def get_path_for_function(f): + """Get the path of the file where the function is defined. + + :returns: the path, or None if one could not be found or f is not a real + function + """ + + if hasattr(f, "__module__"): + module_name = f.__module__ + elif hasattr(f, "im_func"): + module_name = f.im_func.__module__ + else: + LOG.warning("Cannot resolve file where %s is defined", f) + return None + + module = sys.modules[module_name] + if hasattr(module, "__file__"): + return module.__file__ + else: + LOG.warning("Cannot resolve file path for module %s", module_name) + return None + + +def parse_ini_file(f_loc): + config = configparser.ConfigParser() + try: + config.read(f_loc) + return {k: v for k, v in config.items("bandit")} + + except (configparser.Error, KeyError, TypeError): + LOG.warning( + "Unable to parse config file %s or missing [bandit] " "section", + f_loc, + ) + + return None + + +def check_ast_node(name): + "Check if the given name is that of a valid AST node." + try: + node = getattr(ast, name) + if issubclass(node, ast.AST): + return name + except AttributeError: # nosec(tkelsey): catching expected exception + pass + + raise TypeError(f"Error: {name} is not a valid node type in AST") + + +def get_nosec(nosec_lines, context): + for lineno in context["linerange"]: + nosec = nosec_lines.get(lineno, None) + if nosec is not None: + return nosec + return None diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__init__.py b/.venv/lib/python3.12/site-packages/bandit/formatters/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c259d3523ccc1fadb3133805d5329d5592cd6e8 GIT binary patch literal 202 zcmX@j%ge<81g6aYGeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!%G58{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;uO3X{iEYVNPFUn0UDM>9V){l?R%*!l^kJl@x{Ka9Do1apelWJGQ V3bdIKh>JmtkIamWj77{q766LpHU9tr literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/csv.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/csv.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..952fd00446cf3c4a53a4ced07a0c81b7634b8f20 GIT binary patch literal 2690 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/html.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/html.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd1c4177bbeb5896d723c44cbf3419e32f127ebb GIT binary patch literal 9631 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/json.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e377b8209a49ad319a571ca29f42ce458f1c4f93 GIT binary patch literal 5266 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/sarif.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/sarif.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d9612cac8fecc108f9b5403a42c967f7cb552fd GIT binary patch literal 12198 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/screen.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/screen.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e056e6b16568230874a88ef650dfe2fdb9e08cc0 GIT binary patch literal 9620 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/text.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de955c3a1e129020bddc7273823e1b7f3b539ad6 GIT binary patch literal 8835 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

;PW z2ay!Gj!9R+4WO)mFg{UH8AWIzUd_ehsD6hYaMIL*e&nd2*tEpLhlVh7B9d-+LPowQ zLI@gS(oJy)%tri3SheDOdQ_K8CLk6K*LKA~meGh$!PiT$a#Dx@9YU9ZXmQb^!N=yt zVo0wLm%yh$2qOniPP<{fA@*)4ZqdSIG>*MD%YMw4hSSfDpsk{R z+-Znw!MM->(07J`%l}uX~*32J$_vqrO!tRdT?v54z>ges=1G+D^5c}}OLeqg< z(}6D^ER*1&+CeQHne10 z-nnx6Gi%;^a*aM^ga}Jz*1=D8Z=Zkb>RSbOQ_c-cFy{^|r*iJ@`)1O0@F9xK7pc`c z(_TS%I_Ex!gb!)Lw9dmeOr$G#?`hp{<=n^bTTQMW5(pqDXNcNeg_`DEO>@4+H)ksu zd*0i!M*EFbNqiVt_Wd%p^cO1-(|lo#KB!l$oVw#ZvfQ`u#?pcOHs3Apkv010IYmGcpD@{dck9_geMhdoW5t)R56zufXLb~r zy*Xy@;-xj_`LC=X0_2r;|2Xq@=4bMa^!4eS;qJzk95MyKH{* z$jFy}f&~7H0CN6X2ug?Hx-}e@Mxd54ypFKPUvLQz{Y?^}P R3G#uNFg4!CSt$ljA6uz@V;>Jor9lCV6p$IGyTeNh7R%#GJl@JU8A!V^H_9eO0y|aAhw5~ER zAjHU4kdT;Be+ml-B#>caVgrS#3p^Vq2tMgOzvuVfckjKsH?39^0k+IvqbC@luZ1&* zQ5myUFiud2dML!95#b&V&Bv%`WQJ2azV<-#i0h0DQW0n_g(3r)6mmed=3+?VC>`?Z zcZZ6QYxi40eK&v;7pQ?{g3LltCrB@1Q>5pepmCA)A5N=iVoXsN>4KxgxIVZ3ey8ZP z;_V^_AJe@7(IZ9%JYupxCNWitg@g+dP$8ryBWO2bM6)A(g`|p+`(W+edzjETW=WF( zv|MBXQy|5JB?{KymQkmcH@Sl8H5CEN4KDNMAC3-HEN}h8=it0iwW5kP$=Sd=l*zt| zX~2}%z16<6+u3S&HPt+5-;^QqcLj|y#g*qyn3#AG?|X5kM^bFMS2sMxHETohJ{>}R zzudi7-3)Z;rEqo1jkEm1Axz{KXZx@R7U-mS78Z!Q4C)d3X(4On*`=2oueM)oe`q+L z&aXaQ{$jU2+H3FZwdc3r+v{&@>odqjj+r-nKa_#*C+EN~sa~VRF6<>xXV#4a8Kx22 eNtVGaCRHn-zMB~19~Q#bKcl5ty^b%IHNOG7&#jFB literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/xml.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/formatters/__pycache__/xml.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe642604afd85598ac53710a5827fa1cb7ba61c5 GIT binary patch literal 3813 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 o`~vacqlSN>qp$oO%ef7IN7di)kX!e6EqmYk` + (default: '{abspath}:{line}: + {test_id}[bandit]: {severity}: {msg}') + """ + + machine_output = {"results": [], "errors": []} + for fname, reason in manager.get_skipped(): + machine_output["errors"].append({"filename": fname, "reason": reason}) + + results = manager.get_issue_list( + sev_level=sev_level, conf_level=conf_level + ) + + msg_template = template + if template is None: + msg_template = "{abspath}:{line}: {test_id}[bandit]: {severity}: {msg}" + + # Dictionary of non-terminal tags that will be expanded + tag_mapper = { + "abspath": lambda issue: os.path.abspath(issue.fname), + "relpath": lambda issue: os.path.relpath(issue.fname), + "line": lambda issue: issue.lineno, + "col": lambda issue: issue.col_offset, + "end_col": lambda issue: issue.end_col_offset, + "test_id": lambda issue: issue.test_id, + "severity": lambda issue: issue.severity, + "msg": lambda issue: issue.text, + "confidence": lambda issue: issue.confidence, + "range": lambda issue: issue.linerange, + "cwe": lambda issue: issue.cwe, + } + + # Create dictionary with tag sets to speed up search for similar tags + tag_sim_dict = {tag: set(tag) for tag, _ in tag_mapper.items()} + + # Parse the format_string template and check the validity of tags + try: + parsed_template_orig = list(string.Formatter().parse(msg_template)) + # of type (literal_text, field_name, fmt_spec, conversion) + + # Check the format validity only, ignore keys + string.Formatter().vformat(msg_template, (), SafeMapper(line=0)) + except ValueError as e: + LOG.error("Template is not in valid format: %s", e.args[0]) + sys.exit(2) + + tag_set = {t[1] for t in parsed_template_orig if t[1] is not None} + if not tag_set: + LOG.error("No tags were found in the template. Are you missing '{}'?") + sys.exit(2) + + def get_similar_tag(tag): + similarity_list = [ + (len(set(tag) & t_set), t) for t, t_set in tag_sim_dict.items() + ] + return sorted(similarity_list)[-1][1] + + tag_blacklist = [] + for tag in tag_set: + # check if the tag is in dictionary + if tag not in tag_mapper: + similar_tag = get_similar_tag(tag) + LOG.warning( + "Tag '%s' was not recognized and will be skipped, " + "did you mean to use '%s'?", + tag, + similar_tag, + ) + tag_blacklist += [tag] + + # Compose the message template back with the valid values only + msg_parsed_template_list = [] + for literal_text, field_name, fmt_spec, conversion in parsed_template_orig: + if literal_text: + # if there is '{' or '}', double it to prevent expansion + literal_text = re.sub("{", "{{", literal_text) + literal_text = re.sub("}", "}}", literal_text) + msg_parsed_template_list.append(literal_text) + + if field_name is not None: + if field_name in tag_blacklist: + msg_parsed_template_list.append(field_name) + continue + # Append the fmt_spec part + params = [field_name, fmt_spec, conversion] + markers = ["", ":", "!"] + msg_parsed_template_list.append( + ["{"] + + [f"{m + p}" if p else "" for m, p in zip(markers, params)] + + ["}"] + ) + + msg_parsed_template = ( + "".join([item for lst in msg_parsed_template_list for item in lst]) + + "\n" + ) + with fileobj: + for defect in results: + evaluated_tags = SafeMapper( + (k, v(defect)) for k, v in tag_mapper.items() + ) + output = msg_parsed_template.format(**evaluated_tags) + + fileobj.write(output) + + if fileobj.name != sys.stdout.name: + LOG.info("Result written to file: %s", fileobj.name) diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/html.py b/.venv/lib/python3.12/site-packages/bandit/formatters/html.py new file mode 100644 index 0000000..fb09f83 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/html.py @@ -0,0 +1,394 @@ +# Copyright (c) 2015 Rackspace, Inc. +# Copyright (c) 2015 Hewlett Packard Enterprise +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============== +HTML formatter +============== + +This formatter outputs the issues as HTML. + +:Example: + +.. code-block:: html + + + + + + + + + Bandit Report + + + + + + + +
+
+
+ Metrics:
+
+ Total lines of code: 9
+ Total lines skipped (#nosec): 0 +
+
+ + + + +
+
+ + + + +.. versionadded:: 0.14.0 + +.. versionchanged:: 1.5.0 + New field `more_info` added to output + +.. versionchanged:: 1.7.3 + New field `CWE` added to output + +""" +import logging +import sys +from html import escape as html_escape + +from bandit.core import docs_utils +from bandit.core import test_properties +from bandit.formatters import utils + +LOG = logging.getLogger(__name__) + + +@test_properties.accepts_baseline +def report(manager, fileobj, sev_level, conf_level, lines=-1): + """Writes issues to 'fileobj' in HTML format + + :param manager: the bandit manager object + :param fileobj: The output file object, which may be sys.stdout + :param sev_level: Filtering severity level + :param conf_level: Filtering confidence level + :param lines: Number of lines to report, -1 for all + """ + + header_block = """ + + + + + + + + Bandit Report + + + + +""" + + report_block = """ + +{metrics} +{skipped} + +
+
+ {results} +
+ + + +""" + + issue_block = """ +
+
+ {test_name}: {test_text}
+ Test ID: {test_id}
+ Severity: {severity}
+ Confidence: {confidence}
+ CWE: CWE-{cwe.id}
+ File: {path}
+ Line number: {line_number}
+ More info: {url}
+{code} +{candidates} +
+
+""" + + code_block = """ +
+
+{code}
+
+
+""" + + candidate_block = """ +
+
+Candidates: +{candidate_list} +
+""" + + candidate_issue = """ +
+
+
{code}
+
+
+""" + + skipped_block = """ +
+
+
+Skipped files:

+{files_list} +
+
+""" + + metrics_block = """ +
+
+
+ Metrics:
+
+ Total lines of code: {loc}
+ Total lines skipped (#nosec): {nosec} +
+
+ +""" + + issues = manager.get_issue_list(sev_level=sev_level, conf_level=conf_level) + + baseline = not isinstance(issues, list) + + # build the skipped string to insert in the report + skipped_str = "".join( + f"{fname} reason: {reason}
" + for fname, reason in manager.get_skipped() + ) + if skipped_str: + skipped_text = skipped_block.format(files_list=skipped_str) + else: + skipped_text = "" + + # build the results string to insert in the report + results_str = "" + for index, issue in enumerate(issues): + if not baseline or len(issues[issue]) == 1: + candidates = "" + safe_code = html_escape( + issue.get_code(lines, True).strip("\n").lstrip(" ") + ) + code = code_block.format(code=safe_code) + else: + candidates_str = "" + code = "" + for candidate in issues[issue]: + candidate_code = html_escape( + candidate.get_code(lines, True).strip("\n").lstrip(" ") + ) + candidates_str += candidate_issue.format(code=candidate_code) + + candidates = candidate_block.format(candidate_list=candidates_str) + + url = docs_utils.get_url(issue.test_id) + results_str += issue_block.format( + issue_no=index, + issue_class=f"issue-sev-{issue.severity.lower()}", + test_name=issue.test, + test_id=issue.test_id, + test_text=issue.text, + severity=issue.severity, + confidence=issue.confidence, + cwe=issue.cwe, + cwe_link=issue.cwe.link(), + path=issue.fname, + code=code, + candidates=candidates, + url=url, + line_number=issue.lineno, + ) + + # build the metrics string to insert in the report + metrics_summary = metrics_block.format( + loc=manager.metrics.data["_totals"]["loc"], + nosec=manager.metrics.data["_totals"]["nosec"], + ) + + # build the report and output it + report_contents = report_block.format( + metrics=metrics_summary, skipped=skipped_text, results=results_str + ) + + with fileobj: + wrapped_file = utils.wrap_file_object(fileobj) + wrapped_file.write(header_block) + wrapped_file.write(report_contents) + + if fileobj.name != sys.stdout.name: + LOG.info("HTML output written to file: %s", fileobj.name) diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/json.py b/.venv/lib/python3.12/site-packages/bandit/formatters/json.py new file mode 100644 index 0000000..1fec6b0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/json.py @@ -0,0 +1,153 @@ +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============== +JSON formatter +============== + +This formatter outputs the issues in JSON. + +:Example: + +.. code-block:: javascript + + { + "errors": [], + "generated_at": "2015-12-16T22:27:34Z", + "metrics": { + "_totals": { + "CONFIDENCE.HIGH": 1, + "CONFIDENCE.LOW": 0, + "CONFIDENCE.MEDIUM": 0, + "CONFIDENCE.UNDEFINED": 0, + "SEVERITY.HIGH": 0, + "SEVERITY.LOW": 0, + "SEVERITY.MEDIUM": 1, + "SEVERITY.UNDEFINED": 0, + "loc": 5, + "nosec": 0 + }, + "examples/yaml_load.py": { + "CONFIDENCE.HIGH": 1, + "CONFIDENCE.LOW": 0, + "CONFIDENCE.MEDIUM": 0, + "CONFIDENCE.UNDEFINED": 0, + "SEVERITY.HIGH": 0, + "SEVERITY.LOW": 0, + "SEVERITY.MEDIUM": 1, + "SEVERITY.UNDEFINED": 0, + "loc": 5, + "nosec": 0 + } + }, + "results": [ + { + "code": "4 ystr = yaml.dump({'a' : 1, 'b' : 2, 'c' : 3})\n5 + y = yaml.load(ystr)\n6 yaml.dump(y)\n", + "filename": "examples/yaml_load.py", + "issue_confidence": "HIGH", + "issue_severity": "MEDIUM", + "issue_cwe": { + "id": 20, + "link": "https://cwe.mitre.org/data/definitions/20.html" + }, + "issue_text": "Use of unsafe yaml load. Allows instantiation of + arbitrary objects. Consider yaml.safe_load().\n", + "line_number": 5, + "line_range": [ + 5 + ], + "more_info": "https://bandit.readthedocs.io/en/latest/", + "test_name": "blacklist_calls", + "test_id": "B301" + } + ] + } + +.. versionadded:: 0.10.0 + +.. versionchanged:: 1.5.0 + New field `more_info` added to output + +.. versionchanged:: 1.7.3 + New field `CWE` added to output + +""" +# Necessary so we can import the standard library json module while continuing +# to name this file json.py. (Python 2 only) +import datetime +import json +import logging +import operator +import sys + +from bandit.core import docs_utils +from bandit.core import test_properties + +LOG = logging.getLogger(__name__) + + +@test_properties.accepts_baseline +def report(manager, fileobj, sev_level, conf_level, lines=-1): + """''Prints issues in JSON format + + :param manager: the bandit manager object + :param fileobj: The output file object, which may be sys.stdout + :param sev_level: Filtering severity level + :param conf_level: Filtering confidence level + :param lines: Number of lines to report, -1 for all + """ + + machine_output = {"results": [], "errors": []} + for fname, reason in manager.get_skipped(): + machine_output["errors"].append({"filename": fname, "reason": reason}) + + results = manager.get_issue_list( + sev_level=sev_level, conf_level=conf_level + ) + + baseline = not isinstance(results, list) + + if baseline: + collector = [] + for r in results: + d = r.as_dict(max_lines=lines) + d["more_info"] = docs_utils.get_url(d["test_id"]) + if len(results[r]) > 1: + d["candidates"] = [ + c.as_dict(max_lines=lines) for c in results[r] + ] + collector.append(d) + + else: + collector = [r.as_dict(max_lines=lines) for r in results] + for elem in collector: + elem["more_info"] = docs_utils.get_url(elem["test_id"]) + + itemgetter = operator.itemgetter + if manager.agg_type == "vuln": + machine_output["results"] = sorted( + collector, key=itemgetter("test_name") + ) + else: + machine_output["results"] = sorted( + collector, key=itemgetter("filename") + ) + + machine_output["metrics"] = manager.metrics.data + + # timezone agnostic format + TS_FORMAT = "%Y-%m-%dT%H:%M:%SZ" + + time_string = datetime.datetime.utcnow().strftime(TS_FORMAT) + machine_output["generated_at"] = time_string + + result = json.dumps( + machine_output, sort_keys=True, indent=2, separators=(",", ": ") + ) + + with fileobj: + fileobj.write(result) + + if fileobj.name != sys.stdout.name: + LOG.info("JSON output written to file: %s", fileobj.name) diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/sarif.py b/.venv/lib/python3.12/site-packages/bandit/formatters/sarif.py new file mode 100644 index 0000000..ce2f03b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/sarif.py @@ -0,0 +1,372 @@ +# Copyright (c) Microsoft. All Rights Reserved. +# +# SPDX-License-Identifier: Apache-2.0 +# +# Note: this code mostly incorporated from +# https://github.com/microsoft/bandit-sarif-formatter +# +r""" +=============== +SARIF formatter +=============== + +This formatter outputs the issues in SARIF formatted JSON. + +:Example: + +.. code-block:: javascript + + { + "runs": [ + { + "tool": { + "driver": { + "name": "Bandit", + "organization": "PyCQA", + "rules": [ + { + "id": "B101", + "name": "assert_used", + "properties": { + "tags": [ + "security", + "external/cwe/cwe-703" + ], + "precision": "high" + }, + "helpUri": "https://bandit.readthedocs.io/en/1.7.8/plugins/b101_assert_used.html" + } + ], + "version": "1.7.8", + "semanticVersion": "1.7.8" + } + }, + "invocations": [ + { + "executionSuccessful": true, + "endTimeUtc": "2024-03-05T03:28:48Z" + } + ], + "properties": { + "metrics": { + "_totals": { + "loc": 1, + "nosec": 0, + "skipped_tests": 0, + "SEVERITY.UNDEFINED": 0, + "CONFIDENCE.UNDEFINED": 0, + "SEVERITY.LOW": 1, + "CONFIDENCE.LOW": 0, + "SEVERITY.MEDIUM": 0, + "CONFIDENCE.MEDIUM": 0, + "SEVERITY.HIGH": 0, + "CONFIDENCE.HIGH": 1 + }, + "./examples/assert.py": { + "loc": 1, + "nosec": 0, + "skipped_tests": 0, + "SEVERITY.UNDEFINED": 0, + "SEVERITY.LOW": 1, + "SEVERITY.MEDIUM": 0, + "SEVERITY.HIGH": 0, + "CONFIDENCE.UNDEFINED": 0, + "CONFIDENCE.LOW": 0, + "CONFIDENCE.MEDIUM": 0, + "CONFIDENCE.HIGH": 1 + } + } + }, + "results": [ + { + "message": { + "text": "Use of assert detected. The enclosed code will be removed when compiling to optimised byte code." + }, + "level": "note", + "locations": [ + { + "physicalLocation": { + "region": { + "snippet": { + "text": "assert True\n" + }, + "endColumn": 11, + "endLine": 1, + "startColumn": 0, + "startLine": 1 + }, + "artifactLocation": { + "uri": "examples/assert.py" + }, + "contextRegion": { + "snippet": { + "text": "assert True\n" + }, + "endLine": 1, + "startLine": 1 + } + } + } + ], + "properties": { + "issue_confidence": "HIGH", + "issue_severity": "LOW" + }, + "ruleId": "B101", + "ruleIndex": 0 + } + ] + } + ], + "version": "2.1.0", + "$schema": "https://json.schemastore.org/sarif-2.1.0.json" + } + +.. versionadded:: 1.7.8 + +""" # noqa: E501 +import logging +import pathlib +import sys +import urllib.parse as urlparse +from datetime import datetime + +import sarif_om as om +from jschema_to_python.to_json import to_json + +import bandit +from bandit.core import docs_utils + +LOG = logging.getLogger(__name__) +SCHEMA_URI = "https://json.schemastore.org/sarif-2.1.0.json" +SCHEMA_VER = "2.1.0" +TS_FORMAT = "%Y-%m-%dT%H:%M:%SZ" + + +def report(manager, fileobj, sev_level, conf_level, lines=-1): + """Prints issues in SARIF format + + :param manager: the bandit manager object + :param fileobj: The output file object, which may be sys.stdout + :param sev_level: Filtering severity level + :param conf_level: Filtering confidence level + :param lines: Number of lines to report, -1 for all + """ + + log = om.SarifLog( + schema_uri=SCHEMA_URI, + version=SCHEMA_VER, + runs=[ + om.Run( + tool=om.Tool( + driver=om.ToolComponent( + name="Bandit", + organization=bandit.__author__, + semantic_version=bandit.__version__, + version=bandit.__version__, + ) + ), + invocations=[ + om.Invocation( + end_time_utc=datetime.utcnow().strftime(TS_FORMAT), + execution_successful=True, + ) + ], + properties={"metrics": manager.metrics.data}, + ) + ], + ) + + run = log.runs[0] + invocation = run.invocations[0] + + skips = manager.get_skipped() + add_skipped_file_notifications(skips, invocation) + + issues = manager.get_issue_list(sev_level=sev_level, conf_level=conf_level) + + add_results(issues, run) + + serializedLog = to_json(log) + + with fileobj: + fileobj.write(serializedLog) + + if fileobj.name != sys.stdout.name: + LOG.info("SARIF output written to file: %s", fileobj.name) + + +def add_skipped_file_notifications(skips, invocation): + if skips is None or len(skips) == 0: + return + + if invocation.tool_configuration_notifications is None: + invocation.tool_configuration_notifications = [] + + for skip in skips: + (file_name, reason) = skip + + notification = om.Notification( + level="error", + message=om.Message(text=reason), + locations=[ + om.Location( + physical_location=om.PhysicalLocation( + artifact_location=om.ArtifactLocation( + uri=to_uri(file_name) + ) + ) + ) + ], + ) + + invocation.tool_configuration_notifications.append(notification) + + +def add_results(issues, run): + if run.results is None: + run.results = [] + + rules = {} + rule_indices = {} + for issue in issues: + result = create_result(issue, rules, rule_indices) + run.results.append(result) + + if len(rules) > 0: + run.tool.driver.rules = list(rules.values()) + + +def create_result(issue, rules, rule_indices): + issue_dict = issue.as_dict() + + rule, rule_index = create_or_find_rule(issue_dict, rules, rule_indices) + + physical_location = om.PhysicalLocation( + artifact_location=om.ArtifactLocation( + uri=to_uri(issue_dict["filename"]) + ) + ) + + add_region_and_context_region( + physical_location, + issue_dict["line_range"], + issue_dict["col_offset"], + issue_dict["end_col_offset"], + issue_dict["code"], + ) + + return om.Result( + rule_id=rule.id, + rule_index=rule_index, + message=om.Message(text=issue_dict["issue_text"]), + level=level_from_severity(issue_dict["issue_severity"]), + locations=[om.Location(physical_location=physical_location)], + properties={ + "issue_confidence": issue_dict["issue_confidence"], + "issue_severity": issue_dict["issue_severity"], + }, + ) + + +def level_from_severity(severity): + if severity == "HIGH": + return "error" + elif severity == "MEDIUM": + return "warning" + elif severity == "LOW": + return "note" + else: + return "warning" + + +def add_region_and_context_region( + physical_location, line_range, col_offset, end_col_offset, code +): + if code: + first_line_number, snippet_lines = parse_code(code) + snippet_line = snippet_lines[line_range[0] - first_line_number] + snippet = om.ArtifactContent(text=snippet_line) + else: + snippet = None + + physical_location.region = om.Region( + start_line=line_range[0], + end_line=line_range[1] if len(line_range) > 1 else line_range[0], + start_column=col_offset + 1, + end_column=end_col_offset + 1, + snippet=snippet, + ) + + if code: + physical_location.context_region = om.Region( + start_line=first_line_number, + end_line=first_line_number + len(snippet_lines) - 1, + snippet=om.ArtifactContent(text="".join(snippet_lines)), + ) + + +def parse_code(code): + code_lines = code.split("\n") + + # The last line from the split has nothing in it; it's an artifact of the + # last "real" line ending in a newline. Unless, of course, it doesn't: + last_line = code_lines[len(code_lines) - 1] + + last_real_line_ends_in_newline = False + if len(last_line) == 0: + code_lines.pop() + last_real_line_ends_in_newline = True + + snippet_lines = [] + first_line_number = 0 + first = True + for code_line in code_lines: + number_and_snippet_line = code_line.split(" ", 1) + if first: + first_line_number = int(number_and_snippet_line[0]) + first = False + + snippet_line = number_and_snippet_line[1] + "\n" + snippet_lines.append(snippet_line) + + if not last_real_line_ends_in_newline: + last_line = snippet_lines[len(snippet_lines) - 1] + snippet_lines[len(snippet_lines) - 1] = last_line[: len(last_line) - 1] + + return first_line_number, snippet_lines + + +def create_or_find_rule(issue_dict, rules, rule_indices): + rule_id = issue_dict["test_id"] + if rule_id in rules: + return rules[rule_id], rule_indices[rule_id] + + rule = om.ReportingDescriptor( + id=rule_id, + name=issue_dict["test_name"], + help_uri=docs_utils.get_url(rule_id), + properties={ + "tags": [ + "security", + f"external/cwe/cwe-{issue_dict['issue_cwe'].get('id')}", + ], + "precision": issue_dict["issue_confidence"].lower(), + }, + ) + + index = len(rules) + rules[rule_id] = rule + rule_indices[rule_id] = index + return rule, index + + +def to_uri(file_path): + pure_path = pathlib.PurePath(file_path) + if pure_path.is_absolute(): + return pure_path.as_uri() + else: + # Replace backslashes with slashes. + posix_path = pure_path.as_posix() + # %-encode special characters. + return urlparse.quote(posix_path) diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/screen.py b/.venv/lib/python3.12/site-packages/bandit/formatters/screen.py new file mode 100644 index 0000000..906e86b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/screen.py @@ -0,0 +1,240 @@ +# Copyright (c) 2015 Hewlett Packard Enterprise +# +# SPDX-License-Identifier: Apache-2.0 +r""" +================ +Screen formatter +================ + +This formatter outputs the issues as color coded text to screen. + +:Example: + +.. code-block:: none + + >> Issue: [B506: yaml_load] Use of unsafe yaml load. Allows + instantiation of arbitrary objects. Consider yaml.safe_load(). + + Severity: Medium Confidence: High + CWE: CWE-20 (https://cwe.mitre.org/data/definitions/20.html) + More Info: https://bandit.readthedocs.io/en/latest/ + Location: examples/yaml_load.py:5 + 4 ystr = yaml.dump({'a' : 1, 'b' : 2, 'c' : 3}) + 5 y = yaml.load(ystr) + 6 yaml.dump(y) + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.5.0 + New field `more_info` added to output + +.. versionchanged:: 1.7.3 + New field `CWE` added to output + +""" +import datetime +import logging +import sys + +from bandit.core import constants +from bandit.core import docs_utils +from bandit.core import test_properties + +IS_WIN_PLATFORM = sys.platform.startswith("win32") +COLORAMA = False + +# This fixes terminal colors not displaying properly on Windows systems. +# Colorama will intercept any ANSI escape codes and convert them to the +# proper Windows console API calls to change text color. +if IS_WIN_PLATFORM: + try: + import colorama + except ImportError: + pass + else: + COLORAMA = True + + +LOG = logging.getLogger(__name__) + +COLOR = { + "DEFAULT": "\033[0m", + "HEADER": "\033[95m", + "LOW": "\033[94m", + "MEDIUM": "\033[93m", + "HIGH": "\033[91m", +} + + +def header(text, *args): + return f"{COLOR['HEADER']}{text % args}{COLOR['DEFAULT']}" + + +def get_verbose_details(manager): + bits = [] + bits.append(header("Files in scope (%i):", len(manager.files_list))) + tpl = "\t%s (score: {SEVERITY: %i, CONFIDENCE: %i})" + bits.extend( + [ + tpl % (item, sum(score["SEVERITY"]), sum(score["CONFIDENCE"])) + for (item, score) in zip(manager.files_list, manager.scores) + ] + ) + bits.append(header("Files excluded (%i):", len(manager.excluded_files))) + bits.extend([f"\t{fname}" for fname in manager.excluded_files]) + return "\n".join([str(bit) for bit in bits]) + + +def get_metrics(manager): + bits = [] + bits.append(header("\nRun metrics:")) + for criteria, _ in constants.CRITERIA: + bits.append(f"\tTotal issues (by {criteria.lower()}):") + for rank in constants.RANKING: + bits.append( + "\t\t%s: %s" + % ( + rank.capitalize(), + manager.metrics.data["_totals"][f"{criteria}.{rank}"], + ) + ) + return "\n".join([str(bit) for bit in bits]) + + +def _output_issue_str( + issue, indent, show_lineno=True, show_code=True, lines=-1 +): + # returns a list of lines that should be added to the existing lines list + bits = [] + bits.append( + "%s%s>> Issue: [%s:%s] %s" + % ( + indent, + COLOR[issue.severity], + issue.test_id, + issue.test, + issue.text, + ) + ) + + bits.append( + "%s Severity: %s Confidence: %s" + % ( + indent, + issue.severity.capitalize(), + issue.confidence.capitalize(), + ) + ) + + bits.append(f"{indent} CWE: {str(issue.cwe)}") + + bits.append(f"{indent} More Info: {docs_utils.get_url(issue.test_id)}") + + bits.append( + "%s Location: %s:%s:%s%s" + % ( + indent, + issue.fname, + issue.lineno if show_lineno else "", + issue.col_offset if show_lineno else "", + COLOR["DEFAULT"], + ) + ) + + if show_code: + bits.extend( + [indent + line for line in issue.get_code(lines, True).split("\n")] + ) + + return "\n".join([bit for bit in bits]) + + +def get_results(manager, sev_level, conf_level, lines): + bits = [] + issues = manager.get_issue_list(sev_level, conf_level) + baseline = not isinstance(issues, list) + candidate_indent = " " * 10 + + if not len(issues): + return "\tNo issues identified." + + for issue in issues: + # if not a baseline or only one candidate we know the issue + if not baseline or len(issues[issue]) == 1: + bits.append(_output_issue_str(issue, "", lines=lines)) + + # otherwise show the finding and the candidates + else: + bits.append( + _output_issue_str( + issue, "", show_lineno=False, show_code=False + ) + ) + + bits.append("\n-- Candidate Issues --") + for candidate in issues[issue]: + bits.append( + _output_issue_str(candidate, candidate_indent, lines=lines) + ) + bits.append("\n") + bits.append("-" * 50) + + return "\n".join([bit for bit in bits]) + + +def do_print(bits): + # needed so we can mock this stuff + print("\n".join([bit for bit in bits])) + + +@test_properties.accepts_baseline +def report(manager, fileobj, sev_level, conf_level, lines=-1): + """Prints discovered issues formatted for screen reading + + This makes use of VT100 terminal codes for colored text. + + :param manager: the bandit manager object + :param fileobj: The output file object, which may be sys.stdout + :param sev_level: Filtering severity level + :param conf_level: Filtering confidence level + :param lines: Number of lines to report, -1 for all + """ + + if IS_WIN_PLATFORM and COLORAMA: + colorama.init() + + bits = [] + if not manager.quiet or manager.results_count(sev_level, conf_level): + bits.append(header("Run started:%s", datetime.datetime.utcnow())) + + if manager.verbose: + bits.append(get_verbose_details(manager)) + + bits.append(header("\nTest results:")) + bits.append(get_results(manager, sev_level, conf_level, lines)) + bits.append(header("\nCode scanned:")) + bits.append( + "\tTotal lines of code: %i" + % (manager.metrics.data["_totals"]["loc"]) + ) + + bits.append( + "\tTotal lines skipped (#nosec): %i" + % (manager.metrics.data["_totals"]["nosec"]) + ) + + bits.append(get_metrics(manager)) + skipped = manager.get_skipped() + bits.append(header("Files skipped (%i):", len(skipped))) + bits.extend(["\t%s (%s)" % skip for skip in skipped]) + do_print(bits) + + if fileobj.name != sys.stdout.name: + LOG.info( + "Screen formatter output was not written to file: %s, " + "consider '-f txt'", + fileobj.name, + ) + + if IS_WIN_PLATFORM and COLORAMA: + colorama.deinit() diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/text.py b/.venv/lib/python3.12/site-packages/bandit/formatters/text.py new file mode 100644 index 0000000..e6918e3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/text.py @@ -0,0 +1,198 @@ +# Copyright (c) 2015 Hewlett Packard Enterprise +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============== +Text Formatter +============== + +This formatter outputs the issues as plain text. + +:Example: + +.. code-block:: none + + >> Issue: [B301:blacklist_calls] Use of unsafe yaml load. Allows + instantiation of arbitrary objects. Consider yaml.safe_load(). + + Severity: Medium Confidence: High + CWE: CWE-20 (https://cwe.mitre.org/data/definitions/20.html) + More Info: https://bandit.readthedocs.io/en/latest/ + Location: examples/yaml_load.py:5 + 4 ystr = yaml.dump({'a' : 1, 'b' : 2, 'c' : 3}) + 5 y = yaml.load(ystr) + 6 yaml.dump(y) + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.5.0 + New field `more_info` added to output + +.. versionchanged:: 1.7.3 + New field `CWE` added to output + +""" +import datetime +import logging +import sys + +from bandit.core import constants +from bandit.core import docs_utils +from bandit.core import test_properties +from bandit.formatters import utils + +LOG = logging.getLogger(__name__) + + +def get_verbose_details(manager): + bits = [] + bits.append(f"Files in scope ({len(manager.files_list)}):") + tpl = "\t%s (score: {SEVERITY: %i, CONFIDENCE: %i})" + bits.extend( + [ + tpl % (item, sum(score["SEVERITY"]), sum(score["CONFIDENCE"])) + for (item, score) in zip(manager.files_list, manager.scores) + ] + ) + bits.append(f"Files excluded ({len(manager.excluded_files)}):") + bits.extend([f"\t{fname}" for fname in manager.excluded_files]) + return "\n".join([bit for bit in bits]) + + +def get_metrics(manager): + bits = [] + bits.append("\nRun metrics:") + for criteria, _ in constants.CRITERIA: + bits.append(f"\tTotal issues (by {criteria.lower()}):") + for rank in constants.RANKING: + bits.append( + "\t\t%s: %s" + % ( + rank.capitalize(), + manager.metrics.data["_totals"][f"{criteria}.{rank}"], + ) + ) + return "\n".join([bit for bit in bits]) + + +def _output_issue_str( + issue, indent, show_lineno=True, show_code=True, lines=-1 +): + # returns a list of lines that should be added to the existing lines list + bits = [] + bits.append( + f"{indent}>> Issue: [{issue.test_id}:{issue.test}] {issue.text}" + ) + + bits.append( + "%s Severity: %s Confidence: %s" + % ( + indent, + issue.severity.capitalize(), + issue.confidence.capitalize(), + ) + ) + + bits.append(f"{indent} CWE: {str(issue.cwe)}") + + bits.append(f"{indent} More Info: {docs_utils.get_url(issue.test_id)}") + + bits.append( + "%s Location: %s:%s:%s" + % ( + indent, + issue.fname, + issue.lineno if show_lineno else "", + issue.col_offset if show_lineno else "", + ) + ) + + if show_code: + bits.extend( + [indent + line for line in issue.get_code(lines, True).split("\n")] + ) + + return "\n".join([bit for bit in bits]) + + +def get_results(manager, sev_level, conf_level, lines): + bits = [] + issues = manager.get_issue_list(sev_level, conf_level) + baseline = not isinstance(issues, list) + candidate_indent = " " * 10 + + if not len(issues): + return "\tNo issues identified." + + for issue in issues: + # if not a baseline or only one candidate we know the issue + if not baseline or len(issues[issue]) == 1: + bits.append(_output_issue_str(issue, "", lines=lines)) + + # otherwise show the finding and the candidates + else: + bits.append( + _output_issue_str( + issue, "", show_lineno=False, show_code=False + ) + ) + + bits.append("\n-- Candidate Issues --") + for candidate in issues[issue]: + bits.append( + _output_issue_str(candidate, candidate_indent, lines=lines) + ) + bits.append("\n") + bits.append("-" * 50) + return "\n".join([bit for bit in bits]) + + +@test_properties.accepts_baseline +def report(manager, fileobj, sev_level, conf_level, lines=-1): + """Prints discovered issues in the text format + + :param manager: the bandit manager object + :param fileobj: The output file object, which may be sys.stdout + :param sev_level: Filtering severity level + :param conf_level: Filtering confidence level + :param lines: Number of lines to report, -1 for all + """ + + bits = [] + + if not manager.quiet or manager.results_count(sev_level, conf_level): + bits.append(f"Run started:{datetime.datetime.utcnow()}") + + if manager.verbose: + bits.append(get_verbose_details(manager)) + + bits.append("\nTest results:") + bits.append(get_results(manager, sev_level, conf_level, lines)) + bits.append("\nCode scanned:") + bits.append( + "\tTotal lines of code: %i" + % (manager.metrics.data["_totals"]["loc"]) + ) + + bits.append( + "\tTotal lines skipped (#nosec): %i" + % (manager.metrics.data["_totals"]["nosec"]) + ) + bits.append( + "\tTotal potential issues skipped due to specifically being " + "disabled (e.g., #nosec BXXX): %i" + % (manager.metrics.data["_totals"]["skipped_tests"]) + ) + + skipped = manager.get_skipped() + bits.append(get_metrics(manager)) + bits.append(f"Files skipped ({len(skipped)}):") + bits.extend(["\t%s (%s)" % skip for skip in skipped]) + result = "\n".join([bit for bit in bits]) + "\n" + + with fileobj: + wrapped_file = utils.wrap_file_object(fileobj) + wrapped_file.write(result) + + if fileobj.name != sys.stdout.name: + LOG.info("Text output written to file: %s", fileobj.name) diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/utils.py b/.venv/lib/python3.12/site-packages/bandit/formatters/utils.py new file mode 100644 index 0000000..ebe9f92 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/utils.py @@ -0,0 +1,14 @@ +# Copyright (c) 2016 Rackspace, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +"""Utility functions for formatting plugins for Bandit.""" +import io + + +def wrap_file_object(fileobj): + """If the fileobj passed in cannot handle text, use TextIOWrapper + to handle the conversion. + """ + if isinstance(fileobj, io.TextIOBase): + return fileobj + return io.TextIOWrapper(fileobj) diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/xml.py b/.venv/lib/python3.12/site-packages/bandit/formatters/xml.py new file mode 100644 index 0000000..d2b2067 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/xml.py @@ -0,0 +1,97 @@ +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============= +XML Formatter +============= + +This formatter outputs the issues as XML. + +:Example: + +.. code-block:: xml + + + Test ID: B301 + Severity: MEDIUM Confidence: HIGH + CWE: CWE-20 (https://cwe.mitre.org/data/definitions/20.html) Use of unsafe + yaml load. + Allows instantiation of arbitrary objects. Consider yaml.safe_load(). + + Location examples/yaml_load.py:5 + +.. versionadded:: 0.12.0 + +.. versionchanged:: 1.5.0 + New field `more_info` added to output + +.. versionchanged:: 1.7.3 + New field `CWE` added to output + +""" +import logging +import sys +from xml.etree import ElementTree as ET # nosec: B405 + +from bandit.core import docs_utils + +LOG = logging.getLogger(__name__) + + +def report(manager, fileobj, sev_level, conf_level, lines=-1): + """Prints issues in XML format + + :param manager: the bandit manager object + :param fileobj: The output file object, which may be sys.stdout + :param sev_level: Filtering severity level + :param conf_level: Filtering confidence level + :param lines: Number of lines to report, -1 for all + """ + + issues = manager.get_issue_list(sev_level=sev_level, conf_level=conf_level) + root = ET.Element("testsuite", name="bandit", tests=str(len(issues))) + + for issue in issues: + test = issue.test + testcase = ET.SubElement( + root, "testcase", classname=issue.fname, name=test + ) + + text = ( + "Test ID: %s Severity: %s Confidence: %s\nCWE: %s\n%s\n" + "Location %s:%s" + ) + text %= ( + issue.test_id, + issue.severity, + issue.confidence, + issue.cwe, + issue.text, + issue.fname, + issue.lineno, + ) + ET.SubElement( + testcase, + "error", + more_info=docs_utils.get_url(issue.test_id), + type=issue.severity, + message=issue.text, + ).text = text + + tree = ET.ElementTree(root) + + if fileobj.name == sys.stdout.name: + fileobj = sys.stdout.buffer + elif fileobj.mode == "w": + fileobj.close() + fileobj = open(fileobj.name, "wb") + + with fileobj: + tree.write(fileobj, encoding="utf-8", xml_declaration=True) + + if fileobj.name != sys.stdout.name: + LOG.info("XML output written to file: %s", fileobj.name) diff --git a/.venv/lib/python3.12/site-packages/bandit/formatters/yaml.py b/.venv/lib/python3.12/site-packages/bandit/formatters/yaml.py new file mode 100644 index 0000000..bf8fcb9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/formatters/yaml.py @@ -0,0 +1,124 @@ +# Copyright (c) 2017 VMware, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============== +YAML Formatter +============== + +This formatter outputs the issues in a yaml format. + +:Example: + +.. code-block:: none + + errors: [] + generated_at: '2017-03-09T22:29:30Z' + metrics: + _totals: + CONFIDENCE.HIGH: 1 + CONFIDENCE.LOW: 0 + CONFIDENCE.MEDIUM: 0 + CONFIDENCE.UNDEFINED: 0 + SEVERITY.HIGH: 0 + SEVERITY.LOW: 0 + SEVERITY.MEDIUM: 1 + SEVERITY.UNDEFINED: 0 + loc: 9 + nosec: 0 + examples/yaml_load.py: + CONFIDENCE.HIGH: 1 + CONFIDENCE.LOW: 0 + CONFIDENCE.MEDIUM: 0 + CONFIDENCE.UNDEFINED: 0 + SEVERITY.HIGH: 0 + SEVERITY.LOW: 0 + SEVERITY.MEDIUM: 1 + SEVERITY.UNDEFINED: 0 + loc: 9 + nosec: 0 + results: + - code: '5 ystr = yaml.dump({''a'' : 1, ''b'' : 2, ''c'' : 3})\n + 6 y = yaml.load(ystr)\n7 yaml.dump(y)\n' + filename: examples/yaml_load.py + issue_confidence: HIGH + issue_severity: MEDIUM + issue_text: Use of unsafe yaml load. Allows instantiation of arbitrary + objects. + Consider yaml.safe_load(). + line_number: 6 + line_range: + - 6 + more_info: https://bandit.readthedocs.io/en/latest/ + test_id: B506 + test_name: yaml_load + +.. versionadded:: 1.5.0 + +.. versionchanged:: 1.7.3 + New field `CWE` added to output + +""" +# Necessary for this formatter to work when imported on Python 2. Importing +# the standard library's yaml module conflicts with the name of this module. +import datetime +import logging +import operator +import sys + +import yaml + +from bandit.core import docs_utils + +LOG = logging.getLogger(__name__) + + +def report(manager, fileobj, sev_level, conf_level, lines=-1): + """Prints issues in YAML format + + :param manager: the bandit manager object + :param fileobj: The output file object, which may be sys.stdout + :param sev_level: Filtering severity level + :param conf_level: Filtering confidence level + :param lines: Number of lines to report, -1 for all + """ + + machine_output = {"results": [], "errors": []} + for fname, reason in manager.get_skipped(): + machine_output["errors"].append({"filename": fname, "reason": reason}) + + results = manager.get_issue_list( + sev_level=sev_level, conf_level=conf_level + ) + + collector = [r.as_dict(max_lines=lines) for r in results] + for elem in collector: + elem["more_info"] = docs_utils.get_url(elem["test_id"]) + + itemgetter = operator.itemgetter + if manager.agg_type == "vuln": + machine_output["results"] = sorted( + collector, key=itemgetter("test_name") + ) + else: + machine_output["results"] = sorted( + collector, key=itemgetter("filename") + ) + + machine_output["metrics"] = manager.metrics.data + + for result in machine_output["results"]: + if "code" in result: + code = result["code"].replace("\n", "\\n") + result["code"] = code + + # timezone agnostic format + TS_FORMAT = "%Y-%m-%dT%H:%M:%SZ" + + time_string = datetime.datetime.utcnow().strftime(TS_FORMAT) + machine_output["generated_at"] = time_string + + yaml.safe_dump(machine_output, fileobj, default_flow_style=False) + + if fileobj.name != sys.stdout.name: + LOG.info("YAML output written to file: %s", fileobj.name) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__init__.py b/.venv/lib/python3.12/site-packages/bandit/plugins/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e70e83f461ded5b9df4d11f5addb95b676baf7ba GIT binary patch literal 199 zcmX@j%ge<81g6aYGeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!O4BdTFUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;uO3X{iEYUB>DNWDJE7p&X&&Q S5r~UHjE~HWjEqIhKo$Vb}*0pqd=l2X-A4c1nONoAwswi2|^&LAXH5XQX;e(?~d(_*SltB zHjWWgP*p95UV1{D=&@CL=&}DpPZ3B#t8nV6x1jXIrF}E&jRU1pOULqjzIpFA@BQY@ z{(9(;ra+la{#o71D#~wS5SLWDv-c%*9x1l6qS&gPaMcwR+N7JPCs&fHm`g!FwUSnq zghJA5y|IE$Yo|BWXe1^2IxBI{?usSs%vZ{0dpd4cvaQ5K7Eh%WMLYjaMY}keFBH)- zVH}lxiULNEUq)pYvl_yU25LIIifmE}Du@w|xQ{pu$h%t8J_|h0@ha$YY`}Fa%pKoj z$nn~C>b^}7B`k2coaI%5ZW3C%LjZ(?QXy0;5ut~8xa1OBN6S@52wQGo6NWG<6U+lj z5U*m6uxUR*Dm>1P$wRjP^2SDKAby3xmvhoBJ9~65UZ0g z!#MT5irYdgs8qmzOxn^SU&%ADsvo#E^2j=&s00Qhu*mmNgZg%03FC;h7$G!= zHt{TgDW+n<*_(4k1Xb?rX>_8>d4m-V!)g+}4pbnzPb-FvIW}xkc05Ni(KvfrukyM( z5$m|>M;t8zH0ds8$O~f1SnG{ev5=RtXVG{G+p=583)g{@ba2fHDJZ=XDJ>MF!xVL;T_YA}y5-jm;u!_Kpl=wr1IMZ{jwv_BrGcE_MWku6 zqp8`xI{&OJ56YwhBicOG+3eyH(`~}Rx>IgR`+`44A#da-jjG?wH6nuLDn8Fuu~j2> zt`U^rTDz@W6nZ-sL&!-haC;*|@mc>}IHboQ>I^OowryeqN%MMPTF)O`v8vds$hCrg zMxT5Un+7a}IPCtixY=XDpB65eYFeTDsn3{z!SnW(L zQ*bxbN%-&0!0aRCuCjJ;Rf;I^0&KQt>9-(}Xipz#)*x}eS?t9At_JMNytxi~lXhye zt&QH|0*fqb^394zQOn`=iptyGp98CJd3*Tb{k;QmuhXs#cKUJ8P6Ohhc+_d_WPGNd zx;EQqUQ$}}H<4Kk(~|9XQsSHg{>^^J`QPFig$@ zkiOaLm*&ic#ZTsDmlv)thC>y?!Lop50`2#;0>v|M2mzZ3YNA&aqv_KcYha5oV`(mT z^}@yJ+>&?)t=ueR6Z3+H-4=70p|2Bf-Ef_f(P;6i?@j52NrO3@KnAdC7+ydl0&6tf zpyGJUfaJHIA;ZH5GNvg$A?O$YD8Qe64b^>Rw@b;hpP7+ zRN4Fs-XOYOLt+FMi=weN*8_ChfLYNGG{;5VZWMjw`+sz;uy gy)YViF!J!mQ+4oVqE{W*ODc&YqB{CA1w(1+FN5m}B>(^b literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/asserts.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/asserts.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..02394460ac3603c030bb2af62ff964247c27c89b GIT binary patch literal 2933 zcmbtW&5smC6tA9ddS?L_Wkn#VL?g`NbTh2D&>{qe(cOsb#$5xhA2YSxH8VBSACs;c z)-jM^LgJE`5KeIPs9EDb;zc9|?7+#Bw}s{8MPF4<%culQ?95cXu6p(Az2E!QtNvkp zTu1O6PXE!?wjlJYd`X_{P}uw)gd4~~%gE83l&dXks!uJapijGLFSDG{~ap| z>=m?}r@7Ad#Mt9LgC8G$WP$D z{?=0-{Z!>(#llOJ3)~Ds+~*VrO-wkap?LaAeW}ej?z#OI^RbWy>^8N#T-gzAn%I)! z!a%eGA2%AY;YI^@>0mVo9Rtq^yh^z4Fm4AIXhQso2e)#Mn! z#~@rv97ER^TuLBmoKn3lM2}mh=>#?hA0^~Q5Vp)|Go(#`*0-t2nb&h^oeK|;Y75VO z8S+z((^BSw2kV zV0SGG4~XaLI)*1+TbD_()BwgDJm41oXx~&_k`?gT_Zr?eCFS~*eEUS#t=eZq!ejm0 zwjcO3wtf6Kp5wevE&RdgVZjcSIj2DBC15;&?FN!nicqV}bw_BR0v-AV3QuRFkti-o zQZq5I@R?v0f>b$hWL7Oa%UbP3uX?U#VQ9)T2dDA=gcSBFH9RIlswm+QK}?4>na@-P zP0&?zC?!_T1U8XV7B);8!@|uNS3t|ED7{LOB{yibs8eUY8a{;KIQLvKsLKU{?=LAp zfuqFbfd%m5GEN*@>9@GylD==Zd%$R)3bWJqS&xQ6j{?n!-8Bz@l398E@Eet*)6ZDj zrbG<&r;pAYIr2CC|9>(@cmI!&s@NfQ9MB|=1C+GzL8DSJ4vx;)ZQ=ujFjp~V4DecJ z_*_jLz|d2vz-qOw|0aw6*^(AznIs|z+Z2tV>;P(lQEm?}5p_GHpiRSnb0;)6&_%eU zy896dGft|7n6`)psFXe%jg1_dD65Xkw+L)!eBx0q4dUOa2}Qfhdr)$@xmYWoIeF@E zc@e4xv&&Veob{7FaR;1n)3`wW3#Q9f%(xIu8I*4~tl&tNg0+6{X=MMHxXq6D2)Lx2TBnO&>UKx1)l* zL?i>FT+Ej!tEz95J~MwV%FNEaGaJejMd>Qo*gN;$!u#_JwfF1Q*;@78`uyAV+WBg2 zVX0o7KYO~Aj`Fap+$YM#^olZy=+Xk5w@`u~%3P?X3Ib=)Tt*uO^xWhP{knd0=Ic|p zx9@w1QrQ>RGWW(NuAR7g;^xeq-3M;%KJd-b&tr#v*)h41h1o|1RGheW?CP<5u=1tr zFWuX*>&Bbc-@I3R?%LedxjV(_TgB;(j5c1=9*q@>xeZjv=0cg@QZdTc>rkrd_3#Dh z%Oo_>SRB4#!>z0$4rK-H;~vys*`?SWp=GMkQuv~9nl@%w1+ePlk&rL?^pI!fj4XcM=ziM!hP x<>$ZL^TnRE=56hTyIK+6c7L&Z?fh+R=Y!O^mfK9D)TC^7%4Wxd9E_>`{{;O7Ge7_U literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/crypto_request_no_cert_validation.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/crypto_request_no_cert_validation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fcc6eb692d33f81f760a036930005ab07070a23a GIT binary patch literal 3207 zcmbVOO-vlu9iQ26&+^d%Hnm9O=SwiLch-)9%4-J&6Iw`#W3gK&qN+xZd2e?HW@k3< zy#W?sm9&+bLl4QxjiM@*a!ExGKIWKP4?S&M3H0Phk$UP4mr9j z_x1n!{lEBYf4^nGm`eZ0Be43r+9V^>TO9og7WWKdtQf>3slZ$@;hPRp&GbszRA(7j zXI8SNkuqp@tuJA4{3Y2vv%AwT299r%70D$pNd7m*Uhg>ht`yp-i30w2)-bG>pJiA# zr!HTqpc>@@)gy+QKIeYeKrUs%ulp_*6m8(ZCs_DV_>8=*`OszUmZC&{h#EAc3P zNVHqPI|$myWxh~LBqAg{ia2#+IBKJ)j+!`ZTe#H1CsLp{9VM+~f8te@nSu+i@0h;AuI_zG?jvyc)is@Ks?91>pu zTtNUDstbhC!s1UBz>^zPdy+B++%3zh%x_@;kyb3rwgCe|ORGWTu2(83RDfCt#>@;_ zQMvg+$IgZ9(pg9O36*#?zTzgG(QKIYZmw$`{K$G|!uLcVHYIW%e z3tf-8>-^Gj)Is>i)YdFOmuk<13R>_R9vsX?VO>R$3+kz(7{E^=z=Fi zi&x5Jcaz#pUodJ%tWky(!ev71+Tjq)Wq50Qq8UsiT$ZA4oL2yA4HPdYmX$aUN?oH$ zU2`b0TkXoEro9TPB`@s;6&J=66&g+K2R6j+_$AcCq{d>}6*>7VWE#pY-PB3CR>Z%H zJmqmtDflC*fd5emB`PKvZ$~W}a)I4-4Ob%upuuUBmr28EMjN!G5G?8EG-zw+o|#XQ z8Ksk%`3+Xz(Q!JA0aXqef(fAn0{OCi&Axo{!u4?2&{tRNAK6#6zaUbeWI?@EsR_kV z6F;43N)yd02}nn*F4YRZE!2!i96;*)Lv@5(6Q<1S5QfE|fNJ5i7{Cg(oN}2_=^`_# z;=8?WquaH;G1m0sC#N+<_q9RNdp+(X za~AIIrgzdLyMDni*Z^=zy5FG7UK`)2&#@j7Kq%8I^Q0+rq;2WDe4V3M%uF?zDVHAuMxq zfe+0{<~YCK?h?~@TJH~;`a_C4x z4t?`pj_5pb^bKYW)iq)&bE~>r$*k@$GNbwwQz0zVb0GK!i?82ae&hE1vNJcoTyyTs zE-k(~TU&hNmK+5KI9-JtNZYUYPGn>r)Yl4Is!cn0=9h0)Wl^o)a%O9_<*Fs`I6#*_%_Ps!)x(GzWdrnGJE!<~}dm8#LS~2mWfg)rP(w zUbU~hROY^*B_LkM4WREDRc-}w!-uw_|K*CDo=3l>Z$jUY=aTEE^j3BWRGo%D{uh{b zjeq8hpJ>MC;vAb}XGfsW~ zz1Kc3Jb%zPyx;dir|*SNUhMQu9u$Y)+x)zE;`CytZ|ck9(0*~eQyl-KaDV)7#md9s zv-fVif8*iVb03X;F!pfl{72V6xc+eD?7hYJ7xzb|J0sHvqv!ru`2F^wVZJyG)0ycn zN1xvxo$icI-`{#L`pUoh^CJU?M!tXGFm3c*Kg=5a(`t3@2uv|1PRYFEkjQl$b{_V! z*u@W;B%?YQm`)&wLddaP_df)g*TvK)8kavAtOS(oB2149H@YQwhE2j&RX)A|(_z{) z%}3TnGjsHoX_y0F7(e{NC<8L7{@sz^j=eMX?wtqb$bqSL&%N{9yY&a==|`zybKod# Pq|T`6^rH-HwWR+7f+MoL literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/django_sql_injection.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/django_sql_injection.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..51baee97c6dc057be3bd6a683ee64972df5fd165 GIT binary patch literal 5671 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 CD@0xZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/django_xss.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/django_xss.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cfb4d78b30eb12d1cea7549a963a91ecf12ad1ca GIT binary patch literal 13346 zcmds8Z%`Y_m7kGD{}Dn6SzrW+e+Ge(@E?qgckLK32JeEC#rw~@KAo%?K(dgynZX!a zBu;8CCnr=bx}*w}xC)eW6*%iEo0RLkSC^{G_p7?HEV)po$d&i9A1?Rh6th)#mHTk_ zdPXyh#lU)VNj{`0_4G`4zwUnB{oe1rZvNS9HewLE)c-s2(*qdxYxE)pqLA47dq^x| zBu3(4?2_=rFX8a63acj7m()1=riL_eNrPi5>>NfCA7P~C6O};Wl9n`++K=!{I(X{f zsVDUxVV4Y~0b-*Hqcov?Vx!wn()bB3yzwO}w{yf4X%b72B_Cm*6h4d3OXgYJUHTjJ zb;ONxnjphWQ;@K*6vO(a=;#zhvq6dph~&_-&|_@N1uu&jg`sg?Qjr=`1^rf&YUnY6 zMt4aA)U}+YpQ5JDFidbf;%9@=$Vfnq$P@yihTaR*Vt5SmiFsH|1#g8BV%RKp4 zIQ=z0?Th#)DXs))Mrq0yiINoKR&xYHg~w^EPKBq(gAv9{hWwH7sP8(%c&27Kz0Vhn1X-W&MrF~kJz|a-^~?&{nT^>_~5c`Tkj1Xz!*!*cIV=5{DuP>GP1_5(7 ziqU$=fF)oGGCn`Q0w|I*1{vTR>yHE|jtB=Cmea7)Q(=nJQrB53LULOF)D%438X7eN ztCFQA8BQ+|fD{W{hKeN-YDOZ=XrMIAw#!AApn9dUMxpqP+Tsa$IUmgk^A1EXEjD{x zpR25SfoTng%y&9lvDawS`7#=Fy`Bhw3F!tSBD_5vj*d_E0 zpj)vsU+Ej{n|`!!WMfjx#-t!$#WBGys*R~b3i1`kx?iDng_2iWVSVBAy)jilg=3=_ z><}zev$HOYr*`MpSK^aPp`OSmKhSO1nGZbqI`D*Go5j2s5dtk&97q+3eNvDkbDEgu ztBsph$6$5OAN&1AJpYy;O=Rzm6o1EG?4r#>y z1N6SOGoSuXyX8-T>;bn}CPc5!P)1~^raq>;S( z4FcBgM&62`5i+C^2BB>baoXsW5EWoKHNa4gID37HrqL4QG}rv$X^JxqOh*F9&grMd zIKoelGaNAj#tQ936nNVNAqI}P5+!Fj;@u!SL8HyX>BcFrNLZRPN2gGIf7l0x4#TN0 z(z7&zIGlb0Oph=H-?U)$gc*u6j0K?_Psx1tdVrc@2ZbV>YG{m84@7BB^X^0tz_sDb z^tfPzaatC7MX{W=@U9cy8BTMN$KeDOW*N6$K;Hzit!M||W8UV{&p?k6BIVAj-}b5w6QTGEb| zHR6Hso-yM%5+BTei1RS~iw|(Dv~r2K6IhNWqgk^jSLs|fBn``@$Nq*y2oLW~FJhBh|6da5&v?IO90{ysqU(mb?MV=Z#pUbHmY=cC@V>eQ@I5 ziHxHQnj0xJH!L+bk(|hyTXIg<^7-WX7nsI;YC*qQKYS+&+8gD>JF#t4nI8l_{92&Ox^2=!Mq8m3V6#c{*G2wfs?m!$%7J*r@fUYrR=>=a=;)?-43?2o;&-YsqVOnbn!p z%p*1G?~~e|toh`ZQQ6rusnhubLIcerhbEJgS@S`Dg)O%y+o7@Rsq0xwXU^tWJefGT zcq(yf<>Kn))a8xlu5@$PQ(G6z!SapdjfKH{tw5_rq!mhrvS#-h`5^q$aL!(}_+jG1 zmHLD)K7hy{xZAkenrh8j+F@E3Pb5yP5Ub{tdBfG2c6C0rb#9Zb5XjoFa_7M@#cs%u%_Z&N&;F-$=dzi`H7R(66vepE?fb8e3L- zQa!7uQ>PyuNjG*cA*=Se#SypU)tJ3<=}=-Y(Fe=eS_8{ivQkB>9ef#R$NPMo(dV0t zlG9<7F7f&PYT6$ba%kktppiV|clteyH*5Qzba5#HNh!X5jd96ZiQI{>?bV^nWm(@ZI76q{u zeGD`TYQHEbeFIGf_8YQ>LXu^?T@CCD1uMB=1=ir$EKXpoWGBZk@Y@u|HK$e9YW>&( zez^=j3K6ndAH_B=nUy)PVn4y3(4D*e<)ZdF=E*Za!z%S)_m-t1? z+XGD(fwd5Ubrv(QjpF!XdT|AywMY|aE*J254~fqa!phlBK}}dm2pL`EVG)h^>Mj=$ zQ5~e|CKNTG2sHqhh#nV!4!`@6Q-RZlgAoecv^+>sj{?9cp%7H^vlIe29MR_whdHzK zEdZ}FxTOwL5x0rcfrFJVuATDJR0N!c(-Afp<`EjFWvIY3P0`3?14kk6%%y0$8@;O7 zC})gJPx^#1oQ{ctOk<-AaxRKsMZzon@R3H*+wfz408$5ViMjmNz^2Z+&~oR<^6}*H zXS$|M032fl3}FHcQM+tPnl>t1)0M3+FqOG}fk3L{c;fid3{o2zoBNm5uDk|vzR+V8 zjVs-2Z)R*K0PR%lUwk9+#unx>?2q^7EVhqt-oCj+J+(CE%Ix`5SV{S<;r#1Z`Th-S zbK2UxLT0S(@m|hiMIhx0D3_L0OV-wwtEo>6Y})HqR03|v+B-ID+-nVMV-K%94z34( z;mp*G>@3l?c6jaD!&s)KU(CCBziVYUYd@T;Z&)~=Yixdjnd}Wqy3Ok5mGS$`gPD6X z+3N0`^T1kt@svvp(+tiup>cvf=LNTKV6-`_yqTSKs_2?eqErOIpxQdA%@b4OZK@Fp#UL z%9*UdgFYNMl<&p)Ou?55x7%w&Pw=YtT34bwUc7Lbmf2^n@gX z-u*H@s`y=A29k_`S_-x@twNlNfefGzvB<#T1C&+p zs)~|hPD2u)r8K-of}YIjWTVx+;wZE+EveycFztNPF7@})LUP%tL+3_Hp4ga5)FmJr zx7!12AaZ|~HVKgj+fRw}c9~{DZK_1g@)Gs$1NFIGs7o40f%;#{>wL-jaBbHYQ!>6I ziCh$9dhH+}7RlecT@18~0*+Dg28-(e^o7Jz&>^~lw$ZX~k!nmMmPP9j&aBj+PqbiZ zYsaGWq@R`R6}wEYoCN|LF$ShISgv3c2d_-C6kQKr={`P-x0Ll)saZJLBN;(oG@|S# z6d?&t_o8S3B2EWqeKZYcPsE#W-b4e2!g!0CK88}~Aad(Df>%64=nG;4{RTvwUQ|oG zexpZF#u`gz|!4gbS% z_P}|hP{_q#BDfe$L}84^mt@_QsT3T{t`o)!5*>w|B%`y3bVnz=^hQiYXSaQEN|ODP0u$!c<6t}Zq@KO}Mxs3AbmD`u zREH8$Z)I&N$zG9;+9!8t3XutkR&!b zjZ~-|Qjm~xE+RRlTyq?HzRhh^ZkGRZt48Q=Ko8{bnA7wIBNwJPRdk9|4@W`%gsCx> zmtZuKaDq@lP*V_AqbT(jig-zP5mKCn4vtS0WEK)vZh})I*sO))YcR_Bvvow(2ZD{$ zqXTgy#~8FT5V|d#g|oCj!XS}*n3r-Sq{cLuPR{G5btc&+qx=fh2N6 zoJ*a{SP#avoBLqrBZ+bU$b;^C-I;wy;-+7ktck0ej{S?*6W4!m10<8PHa<8%EIwRK z@xg3KO|G_n8GIy=b79k2w>+F2{_zFASVJ>%jl>5(9=<)CEvd`ZyTx=ZFSwT7N%!5+ z)%R2HXD!~Gt8vwkGOU)SN*DA$G=mhWaK~?s5!Hsswj204Mo@v1d(bec2BX4N2{)tH(YW?MvlhG0(>2ljyYCDbOSwx6=xgWF%l z6e}H8hdRY?+s_a>M=A<2{Juss;E3hpK?sBdt93%;&1&`rV3)sIrWDB|@wZv%XQUcnQK(cm`3=)XWwABvFH<+K7_ zPBVlqTXNdrv;9MF4|Bxe(78bx2_jD22Yoa2o*5nL^T7z+M!}I~f;)}@I>?_5(u0T| zvQTJbuyA?+1JF_bB<}*F{V3xKiUJTZ2%jM=AOrys7y}bj;Hr-fGFNF9^8XPP{BKww z;O{Cwe(Q}~Y5B*&+rcILcKFu0=g0&0`L+ivt8030wQpFP($*%x25@BY4xs!{D)gxF zv3K43q`5a+-j}miZ`j+?_O|%I7itXrRmEkVmG>b%UKQ8x=}uFd_wRJ4!NJMG;4dqx z@;b!dCm)}dimo*&7{XshXxwUp_W=)&1 zdT(n*`tK*-&l*|~YC4C`_U@}6=)@qy1w)=i83hZV&aCY8tB^(W0?dfqvq7h2SL4{A9 za`6J7$MpfbGdEvfy&-S<= z>Nwu%YMo%&DW=Ek1)1oX46-!kiPGa<($D(6Bn3ANf=Hw?-s7E~33f8>83nbjq%rX?^4>Qr8!d$yLq(SiA7CHwP=+R9PParypMnO{7yliwT z7+}0SUqB~$8v``lo9N(gm=~mbWV{2;Iy#^-3zdQMLKk1P1)3W3PQ%Fv<82hqY&(R` zc=(T=?cx32WM86(R)k0J<@r#$nCh#oDT%M3su^_mg(N8w_RJwqm#4EhGXU3M#tYfq zo+Hu>!g7Xr75V}+Ts#q>@(ssJo!(}GTf-ToY3B5!F!>h&6mTY#dOH$CJD4+~mr;IA za0Zm_orU$tLyQq{96AI`9377bC#Rw`OOd{C@G8ZXBU{@iViNu^omb_>fTIsYAg_es zUl?=%QV=ZR%Kc+wF#kYHBmh@|U|}#w4#P?n)OeXNE}t|8`rDBG@9<+H5Z%JinTg)A zp*xV)9eC36wXE*U3zfFk_(Z=SE~b~*HcZWFQ}Yw|$+YQYuDojTVB+9Ld1Jb~apg?9 z`~bKRL2n1{9$D>9b!Tnuo1lkURu85QW*pupWnR!56$kSgtmL)471Q_Pf(p??yY5n& zhf-lkbEd++4#1A*5e|*SK0;rxt&l-3xNCXrM50%OM>s7HP#8|f|1Sz$GeQHSPooI= zi1^|EPXC&)#!u1Tg>OhFF+qs(Y8=P6j2LeEHD>-5R`V;&`(N4t9IyN>hT^TaRBd?q z)+M|FFMn|!x8lwht!=n5e+m9G$9${eZ>qmt9e*c-SLAT?=KQuZK9<4lzlBPjTWU8^p!AeW`)2F~7gcGWv@`F`yw7}293=4wJ?k9@`_4colpHWV3?rm|@>Wo9r|0G~c$+eg%dUrc zmEsno*ezqaN6r6|R=2Ab!%e$Yu^h~W60=IpI=iUriw>{4&Ib(N7h3P*1_hd6Fj%LZ zw(AiMZ&#_>Wy8cZ8D=fhv>cP$9ZV=QJ*z}@GMsEXsVi7-!mFbn`Ts1 z)3E6hnkw0@S2OCR;vL= zS=T9BggPe3ZdjFSz?%JPJ%eFMEiL1jD(6j>(RH&;wT8t#s<~c8Ck8ikLd%w8am#g> zzO<}WdBaWyI_|orA#O5Q(`h#f1_(8^W+yW*xzaKxGdGEg>8@qpOsXWA z6b{UbM+8yv?$Ut;-L^`e;dS(K3!YW@ARU;JdF~Tzx7+=4gzoB1+GJu$%`Gmb^{J9! z)+?Uda!9|yx63Up>r<>%sX&cTk}_Jv;;E|Z)>Duk88_?K_5a>ZMh{715R5?xC6MMh z?PG1O|H7;qPDNg&wIyvqJ|v_HTMpEFLz>1?SXF-)ZM2zG{HP`B1CU`+)5WIeHmS!g zD8r!t#2$kWIt-nD56dCqy_Q9&7J`Edz|ZJfFfPtc5bC=XS}y=k1P3)agaWF&*9QMd z3yLT|g`V~76i_m}`OVnB)_OAHCs?n}ebqcGZ$Atf@FSe=@nqbOl?(^+~?Nz^G9?l9C}mIq0Q^8X_%Dh zh4s|kwcCrS0*CiEQ(5TK;+kXF9cD3I+ojH~C|12&y$f1;US}4kDG;t3P(gavAH6$w z&bq``MJX3$?!2pDbQV6AhGiceT^f0^@_6NF&D=@+9{-_i}Ld z`QYrUq4)nBhz`b%Q8XI!MnKAsWDVQ)BVt6FXUT;NkzSejj{rGD4^R#Ei$Ik63__mD z1*e2yIu}p}B}1EjM7Wy_`PWP^Qw+MY=ok%J{JLe>G6pEZIOIiSf(ak6cLi2|K!ysF znt1O4y#OD(0n0u*j-kZx%lP#3`1B9czsBc|hOdA3;FrYsaTq1iGOncR$BRXn55=M< z>dC*T7Pj3<{4VScRy6R!L5YDnZ zEXQF*QBKqwO62rY1u2(bqsiAu|05PtV#ildXlQ@*+wq6v2VcHWMqep{ns_*IP=29| VorFTl#Az6X-WAK(Nd!n~?r;2*^M3#U literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_bad_file_permissions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_bad_file_permissions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..729f9dfb85c52c971686d8b9ffd3361a72e5b7cb GIT binary patch literal 3884 zcmcgu&2JmW72oBTsHIffk{qj+KPGHyi>Z zu+<&C7qvz#*NxA2DT?;afBk6hj-DDTpasG>D)|&K!nxy>QH{{5!> z|H~@c+{NO|WweADv5^nPv0Q~U7$;SR>fCXiHG**GI;iT~#6{dkHR^L>afB_4Fa|wZ z4O7mLUqZanaxgTdqlJpYS~FR_R`Z1(uTVk|^Pi+va3FI z?JOeLsz^Ol#SK)!5IshgUtMxMaM<_6idjmqE#|LMhm$M<(6ZzjvFh-lm0VnA0z{^x zxdyMm6mb5kW5dcZa>BRfkie z`?PG>m}A2xCC76F<(L7wdWBcrTx8`v-;!)BAl)EgjLh&^UeZgiH439=r0VFK2>DEx z-NPph!Y!lXGtN$qpi}<%_;_e=^vn(|Uac8^#jIdQs9hT^m0D_V?NAfOYM8NA8`K!b zTrZk4^Or8apWBV=q#*rvUTL3jU|bcm6?6(bL2ypw{tvH^hAE`n9so}}<;pI2MOOsN z{|nsl5ZrH!2e^zz$2-uAV%)h6KaezKgkYEX1t2ZTqlh7rkU%mWQl|%KTPu<(e#l44X5*z{zLs#=YUngURe%}>f`#D#2o`V^YGN>kyoTQtjJY}c~}bFZoF9d)N>bie4(ZfOqh(oA)zw8WNX z|1Qn+-kL=vr_Sb*K|-9{pi5u?afbqcA%)A^0t^8H2~muh2pfI1W%Ouh)V94kKwYUYH8-3D`*p+kDUYPimlQIo}ROdmaMFesaOn7jhnl^IJ=8ys$g zRgM{9g>lU#Y|A{*NkB+#L7yp{HXUZ#f)h}}8HKBw@?-e1X=rXJ&(b}=;JsDGsj-Wq2pO+M-n==QcBPMZJn*|WHR*%Y$-uv61#4Y5SOGK zdoJ#Ya?c+DByby4o6547uFX?(Cvx(m%kNB?YCeJJ;1l`q|1BUJ+H^S{T&(u?b(rZ zJ@z#*BqC3)$D8pRF*|uZ&JRShmS2mc_PZJDSZNPm_+X^Fd^nQY@8u(HIg;!YKOV_V zHS*^-s@>I$L!16x@=x6lTPLrmG`9b8+H8=Nb@REv__^2&Dx@`S_TmDXo0u<7om)fy zskE(W?ZUPe%jvm9kY=s>LZG!TD?uExWsuBRA%B56>;q97HXxF8{}V?ips zu zI8FrxgKh}VbRk4HNQ>$toM!@HQ3R=AV=xG}#XXNVg#)38Bg~#ab3=hcncjE%#WB2$c#U}%~ z&4Cji@h1Z#FfuUs+czGJ+#h+=e_|7z_(SI7%$=DpLFoOs_x8-Qq3qM4x7UZ>{_Di! zp|iKs8~sC{^?zsM`1fy5Zyq{&w|S?zarDII@$WwP;Qj}jgGV29-|v1pIPqw3;>$ya z@4fl!#_xx>;_Bg%e|Dz^`?i$SfxfLn%EA0rTsinXXb!x-)vfe^ijvM#aR_snpvyFE z-!jc`SB^nvkO_B1w|q+EE>MA*-~^O&v4cS>EL%aBtVND3;rgQ@ZAxUnO8*FwbloLq zsR0uNXW1My;GL?z&`zs~S0z=8;>a$Lhfsv2Uw=ui{GVHPIY=k$_LR;=ch>XB@8p literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_bind_all_interfaces.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/general_bind_all_interfaces.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0647ee4aac925d6b6b72da7fd0b3e5fe60245af9 GIT binary patch literal 1992 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 U;T=s;pBLS8q8oUYgEeXVM-@jv761SM literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/hashlib_insecure_functions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/hashlib_insecure_functions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a6c303967fca119f1e4560851671b01c4f15560 GIT binary patch literal 5684 zcmeHLTTC3+89uXDm}OZTuvr_3PhzmWc6Qc)FUbaDW59v<76nqb*y%Ft4D2kkmz){E zIP2DlB9%my;=I(RX=SWD7z;~|+C2EN4}I$k8zMnRM6%SUypcE$l~pPI&zU*9;NsK| zX&P^@2Ma#KTxggjzHe!3ZhnEzQ zk5B^dqXnm#=R;M~u1J-9&xeqB>__>;lkIJX;&@OsOgv$zI5tf3|+h>A1Hp%)=J z{36Z~Y^3B?oRWNep5!JqMKwgaqdcPNnmLWl98QArCYeZ@SjI4g89~dA;oL}Cg~kbkR_L6poKY1l z>ti{hnW+rjPBX-$oW&zlALyg25mh$VY4n7Vb!}V)1rIUFK~b!Y(zU0tOjI#18*~-f zC~v|xHR!@7wIx?Z62((s$k(UMR4$7rRbsFs%oB~8H;3D$mtVAJFtcNrYG@fvms#)0 z_Ji$sM3$N9n8JyQGy|4T`&0xo|K6u+pZ1w!0{O{ z+(6k7CAo)(9YGvtm30G-vh1;?&2w4qw4k)(cQ}(%CUkYLfu~e?ob99kXzob_z65`S<}9 z{0$5q$9>vZ3KoEAqcAO-1W9NUAJ~1NH;y5RwznO{`%Y{^ecQ4^H^KHko*ZZ|7eoblYTtu+E8udOXgs9aL zfUn@=rluMZkL3osp~+#(4P0Y+DB(ohR@K?w!M^i7iS9Rk_WGbDIyJZwR>&!zJahiS zss4e!q>Ga%|4nZdADyn|rE;F$QZDn7;w}j3T3##XJZ$&`DW2cE z!3LXzB@ zW&@vH@R*If%=^jhf+xL;x0Z9R&;Q7odH!=}HVx-CjUtujtk4t4Yp+! zW5C32^0Q+5U9VMPIJj0QG@6)Y=v^G*gYj z`u)ZF{oe)sb=7OgAFN(;qpD+THAt+!zU{*%CIl{q@QmlLJD-~|uXlYoHP?6N%lj_Yr%Q&0dMpGZ+HtX#pU3nJ6+-sz6wH$djn2Z@*cp+5|fm0 z@+!2J*aG;=G(&v+W;|h*_#|D!$CdMSy_@iaS>lP!I3T^VybdoZ9zgLXUMuGu#etQ) zjFp}%_wiC1^HMp#=UdN8jF@mkMDke!)&@0Y7Pn{Fzf zMCRn*Ms2v8|LOfpcP~BI^QY#e=&Kvy?#pOrv88hz0yoVzZH~avdF6ikZhAqV|M`RC zi`!1GYyjVYkAkm{f$yH<6v?(w{0)Cmx#LOH4L>-v)O_NE&G^v zTlFj);SbIPje-(yPsqCM_Ff|oe=RXyXD%3VGyk=MbO;+u|8-&RY)~6QG{U@>&?tZ< zZ$rT_A-RUW^P!5G>wA}LT8lNUpSOSMKe`g$wH!WL3?E$%A1j8BJxDHvPtF8aLX9`y zV1)fJPvAc+^&eVNe(P95@(n)$@7WE+GElAeff*^e3iwT}b!vYejzd}u4q1eOf z1J?p8b-jyd>$kogLd~}?)eF^YhmfoKTHUW2-))>3T@tpf2vtyPc(-BZCrd)zH?B${ S_Q;J~+i0@=8xK_3_WuO%uvo+Z literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/huggingface_unsafe_download.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/huggingface_unsafe_download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbe24f0e4cf46d6a4bd6d952178847d6945f5174 GIT binary patch literal 5666 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 IgK2WpUlXFpxc~qF literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_shell.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_shell.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d3acbc89111c748eb79d6bbe6fe53689ac113fc GIT binary patch literal 27504 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 G*cY=VDRf^1BSI>){Y$qVrW*n!!d&D>cq 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_wildcard.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/injection_wildcard.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..558b95bcf49c6d6c77f257b11d3b4fa2fc9fcda5 GIT binary patch literal 5288 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 UWGRG$uEj!qzpk$%@X96s2aS(&cmMzZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/jinja2_templates.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/jinja2_templates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b78fe6eaf63247f54380c48a4dccb5694657339d GIT binary patch literal 5455 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/pytorch_load.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/pytorch_load.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16a51950374029adedfff978966e51c196c03709 GIT binary patch literal 3135 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 AtN;K2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/ssh_no_host_key_verification.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/ssh_no_host_key_verification.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad43d5ac6385b6372cd713283dcf174b24e9f219 GIT binary patch literal 3384 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/try_except_continue.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/try_except_continue.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb80bd3733b740a343931157da14742c9085aeba GIT binary patch literal 3735 zcmcIn&2JmW72hQ(Qd&v2Y|D0SS@jf1Aj_4OmOpBQmJK*E9SKz|BNmWW7izgPBu85A zZfAy~S-6Fb2B>pss*~cA6QDp-s3`h>^rF}WA}kajKzhkdu6oL)eQ$PG6kHW;4jo7{ zv-9=d`@P?LGyKcopk+Y0mi=cVKVTSN<40P0lFr_rptE66W67W<&3NXLsoTs_2HLEb zZRVD8CeG!c-?Nm5e$NNSQi0`HhSI~jZN`A{2U zOuXJM^>;Gkea>jFVOTf6OR?Ubnz~#fi%cp~3j}e98~BR*Ek?LcRD%)r&}E?_RWEQ? zzvJ0fS%^SLJn4Q%H3AX0Gyw&DQUi|iP&YW$3+i?3I<5kRtTy*N#7m0_nE)`G zjM|np8?@OP6BC4Mb;CePUiHBC0F+X0L+hCus&$pz0}}ugUiSk)2{yJHFa|oJ(m@c~ zWU&FJ60XQrh)Br9mKY)xv%u=c5e@uAH5oFO*SLEiXkZzW6Ce|Knm~mS zj`2wLU1+(U17a?Kv3`JIz{bJG0Ch0@eV|i( z`mI}J4r2{>fkR`uOc2m8zAY$IkdTqxm{OoTz^n%$S|am78@{zIl=&_kG0W?XbluGR zx~J?*_N9XpF66v=GIia)qRjw6Ay?rg6vu$x zY+2vn`{CZW8TIJI37w-D!4MZ>4oq}q^cm(gA)eD9pax_D; z+v#&j@OY~7HzoM*NPsm7USFNiam9?2)UC@!sb<{4*RQcL333My%yZf|A_#R z1(^e51hSRr2PGEaUyeZa*w`-gZykN(Md6L@p|Q_SZXGRd^%i%tM(>+@Fl|JGG4E&b z9l%7C!`G9GD5WJ29gWy;z&b>1C7n6Y{vxArjV_NeE4j4aZ8sAyBzS-N2;QJ)U|NpB zdX({6c`~B<(xJmw&@44J6R9+}dL6uIb_|8)>vFgrvY9%5IvOXpS$b?ZAo(54bq(+@YqkPQYs7I&TC_BIKew3S?duLXl=c4Qk zh#8%G_x^he_sj29W@gJXKdvm?t(1Qna4&Q8I4diA5XK78v}zx?>vi^AEjhE8prwqFbt zw}*x|`qullhThy6I{k6(dEc|XPp*D8{Bp?t^ABGP-TZ3c_}}_Z{+4d=b^eLD?)`4& z_w%35|FwT==fs(f>GkQIGv}Y5eRg(dAeeR3l8=nu~*gkdrAALQ; zM|O>#!6OiG1DAJ?8NDL{nKwQV6)F`PxRr_+Ma|Dc74^qh*)BYhH9P{njb4EFFw#02 zP|hloNuUE7c>Bw!pc5XaF$nO3$%l+{{m+-98UlM literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/try_except_pass.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/try_except_pass.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc68aee2e13ac421aa0743eff8677e5231bf5166 GIT binary patch literal 3592 zcmb_f&u<&Y72YK&Qd&tiZOe9T+0Eoo$a1BnRM{{>%LW{ou7oOk6uL#gG?kQ`~b zyOFlV&_~$<%FTDFbcR z%eHb$ITPn{(C=BwL%-*JW2wOME5-D%gEnKp_{oFsv`6!sX57~+hSKqamKM?#wD)~u zGnsg^UFz>hnc!F(nhZ;aI1ia4GOh+v^$ z5{v`)TVbG}#~qJI=C%b_V6c>JW|Lds8PNdOC;*%Q1}#{$7IUPe48ktRz=$2RR{0N6*BLr%ZC;B%YV;5Rs6HEiptY z@$o@a(7;brlOc0?ox6uZ0G2U11~P$l2~-%X7+qxFd6w&89A5%s{QybLMuAKLuofdO zpg<(Bjl(&(S7G?KoGzLNj;-@X8yyRv#Z4H@?U1;9c}8PJ7PNY@eEIT!O6@u=Z$JDJjjI?^ z=~>#OHw}V}EZPvxR=E;K_7V2@K$7_6n>WcEMiA}-H^n3vBa6rY$`m9_fGm=_$63tH&x4vGYXtOA3(AL_{zjCC3KJ_Ak$$a?66zDqQy?3f><1KgG}n7EBF~Z zI!5d&4q%D%5+ppy7-pF=U_{1As%e^B>>y;mRF1ofDj#0)9c|G*1b zr|gNtGcKg8hMt?Wuh~;tcR&wP4c-VbjrDHJ`Wi3ryQ5~*qw^kgj$;5;;SPceL~$nF z7IUS7sM_{m|Yo*3JO{;lKWWr1uL zM?O8hb-c9ITiVSUy>IWqv=I%)#Gb{=n29KdPZt-_NlP9&8mZraWr);DI&-M~MMmKo zT^?sva%umd-AvF=aQ@^mJpRtXv>bu;DC3RtbXfJJLr1TmS!!%1QfY4W8hFp_8Vb$V zWX zb2jSHIW)@7FFcHLvvWV573i@jI|Cvv&b_yIZ(*@=uR1eZnfXa|;ZC*k)0xWRgX+w} z-P@ztr~pc#8c{x>_F32~@c_tF0{?3WWR9*L;?xFIPmJAOW8l<>(;rMfxxG`co?ZFy zoe$pm)h|Cf@v?CK%i@`>v-ZnkX}dVI(YM~WRs6wD@$5&r7k$tBKECql(5s^Tmmj_? z-uQChb^fur?)`q|53`@l{;hv}=hV54>GkQIb8o#k|NQ*U@Y^r0Kfk^+ zbZ%pAeeUz2>z@r>-##<-&%U0aW4lJr;4uia0ekm^(K{@VaiarKp<1PZTdj(VsQFt^ zMg1{WwhQl54Ua%CqX*z|igbrShe9+k-}FwygQV@T zn_?WskR`GT)o#`_&DU1NG;@3N8N=-V${75@xcG%p`bR!vPV8DnCjYs4@-y?~wmI-* v=-0zfho4nnnHRUsLHN4x^un|HEA#a0Owl~Hmo+kHu=+k$r(Wk_Oe^qj-RAF$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/weak_cryptographic_key.cpython-312.pyc b/.venv/lib/python3.12/site-packages/bandit/plugins/__pycache__/weak_cryptographic_key.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67a38c0703881b10bc5c49ddbf026df095358182 GIT binary patch literal 6072 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 Issue: A Flask app appears to be run with debug=True, which exposes + the Werkzeug debugger and allows the execution of arbitrary code. + Severity: High Confidence: High + CWE: CWE-94 (https://cwe.mitre.org/data/definitions/94.html) + Location: examples/flask_debug.py:10 + 9 #bad + 10 app.run(debug=True) + 11 + +.. seealso:: + + .. [1] https://flask.palletsprojects.com/en/1.1.x/quickstart/#debug-mode + .. [2] https://werkzeug.palletsprojects.com/en/1.0.x/debug/ + .. [3] https://labs.detectify.com/2015/10/02/how-patreon-got-hacked-publicly-exposed-werkzeug-debugger/ + .. https://cwe.mitre.org/data/definitions/94.html + +.. versionadded:: 0.15.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" # noqa: E501 +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.test_id("B201") +@test.checks("Call") +def flask_debug_true(context): + if context.is_module_imported_like("flask"): + if context.call_function_name_qual.endswith(".run"): + if context.check_call_arg_value("debug", "True"): + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.CODE_INJECTION, + text="A Flask app appears to be run with debug=True, " + "which exposes the Werkzeug debugger and allows " + "the execution of arbitrary code.", + lineno=context.get_lineno_for_call_arg("debug"), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/asserts.py b/.venv/lib/python3.12/site-packages/bandit/plugins/asserts.py new file mode 100644 index 0000000..b32007c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/asserts.py @@ -0,0 +1,83 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============================ +B101: Test for use of assert +============================ + +This plugin test checks for the use of the Python ``assert`` keyword. It was +discovered that some projects used assert to enforce interface constraints. +However, assert is removed with compiling to optimised byte code (`python -O` +producing \*.opt-1.pyc files). This caused various protections to be removed. +Consider raising a semantically meaningful error or ``AssertionError`` instead. + +Please see +https://docs.python.org/3/reference/simple_stmts.html#the-assert-statement for +more info on ``assert``. + +**Config Options:** + +You can configure files that skip this check. This is often useful when you +use assert statements in test cases. + +.. code-block:: yaml + + assert_used: + skips: ['*_test.py', '*test_*.py'] + +:Example: + +.. code-block:: none + + >> Issue: Use of assert detected. The enclosed code will be removed when + compiling to optimised byte code. + Severity: Low Confidence: High + CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html) + Location: ./examples/assert.py:1 + 1 assert logged_in + 2 display_assets() + +.. seealso:: + + - https://bugs.launchpad.net/juniperopenstack/+bug/1456193 + - https://bugs.launchpad.net/heat/+bug/1397883 + - https://docs.python.org/3/reference/simple_stmts.html#the-assert-statement + - https://cwe.mitre.org/data/definitions/703.html + +.. versionadded:: 0.11.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import fnmatch + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def gen_config(name): + if name == "assert_used": + return {"skips": []} + + +@test.takes_config +@test.test_id("B101") +@test.checks("Assert") +def assert_used(context, config): + for skip in config.get("skips", []): + if fnmatch.fnmatch(context.filename, skip): + return None + + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.HIGH, + cwe=issue.Cwe.IMPROPER_CHECK_OF_EXCEPT_COND, + text=( + "Use of assert detected. The enclosed code " + "will be removed when compiling to optimised byte code." + ), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/crypto_request_no_cert_validation.py b/.venv/lib/python3.12/site-packages/bandit/plugins/crypto_request_no_cert_validation.py new file mode 100644 index 0000000..11791ed --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/crypto_request_no_cert_validation.py @@ -0,0 +1,75 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============================================= +B501: Test for missing certificate validation +============================================= + +Encryption in general is typically critical to the security of many +applications. Using TLS can greatly increase security by guaranteeing the +identity of the party you are communicating with. This is accomplished by one +or both parties presenting trusted certificates during the connection +initialization phase of TLS. + +When HTTPS request methods are used, certificates are validated automatically +which is the desired behavior. If certificate validation is explicitly turned +off Bandit will return a HIGH severity error. + + +:Example: + +.. code-block:: none + + >> Issue: [request_with_no_cert_validation] Call to requests with + verify=False disabling SSL certificate checks, security issue. + Severity: High Confidence: High + CWE: CWE-295 (https://cwe.mitre.org/data/definitions/295.html) + Location: examples/requests-ssl-verify-disabled.py:4 + 3 requests.get('https://gmail.com', verify=True) + 4 requests.get('https://gmail.com', verify=False) + 5 requests.post('https://gmail.com', verify=True) + +.. seealso:: + + - https://security.openstack.org/guidelines/dg_move-data-securely.html + - https://security.openstack.org/guidelines/dg_validate-certificates.html + - https://cwe.mitre.org/data/definitions/295.html + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.7.3 + CWE information added + +.. versionchanged:: 1.7.5 + Added check for httpx module + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B501") +def request_with_no_cert_validation(context): + HTTP_VERBS = {"get", "options", "head", "post", "put", "patch", "delete"} + HTTPX_ATTRS = {"request", "stream", "Client", "AsyncClient"} | HTTP_VERBS + qualname = context.call_function_name_qual.split(".")[0] + + if ( + qualname == "requests" + and context.call_function_name in HTTP_VERBS + or qualname == "httpx" + and context.call_function_name in HTTPX_ATTRS + ): + if context.check_call_arg_value("verify", "False"): + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.IMPROPER_CERT_VALIDATION, + text=f"Call to {qualname} with verify=False disabling SSL " + "certificate checks, security issue.", + lineno=context.get_lineno_for_call_arg("verify"), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/django_sql_injection.py b/.venv/lib/python3.12/site-packages/bandit/plugins/django_sql_injection.py new file mode 100644 index 0000000..a57ff46 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/django_sql_injection.py @@ -0,0 +1,144 @@ +# +# Copyright (C) 2018 [Victor Torre](https://github.com/ehooo) +# +# SPDX-License-Identifier: Apache-2.0 +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def keywords2dict(keywords): + kwargs = {} + for node in keywords: + if isinstance(node, ast.keyword): + kwargs[node.arg] = node.value + return kwargs + + +@test.checks("Call") +@test.test_id("B610") +def django_extra_used(context): + """**B610: Potential SQL injection on extra function** + + :Example: + + .. code-block:: none + + >> Issue: [B610:django_extra_used] Use of extra potential SQL attack vector. + Severity: Medium Confidence: Medium + CWE: CWE-89 (https://cwe.mitre.org/data/definitions/89.html) + Location: examples/django_sql_injection_extra.py:29:0 + More Info: https://bandit.readthedocs.io/en/latest/plugins/b610_django_extra_used.html + 28 tables_str = 'django_content_type" WHERE "auth_user"."username"="admin' + 29 User.objects.all().extra(tables=[tables_str]).distinct() + + .. seealso:: + + - https://docs.djangoproject.com/en/dev/topics/security/\ +#sql-injection-protection + - https://cwe.mitre.org/data/definitions/89.html + + .. versionadded:: 1.5.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + description = "Use of extra potential SQL attack vector." + if context.call_function_name == "extra": + kwargs = keywords2dict(context.node.keywords) + args = context.node.args + if args: + if len(args) >= 1: + kwargs["select"] = args[0] + if len(args) >= 2: + kwargs["where"] = args[1] + if len(args) >= 3: + kwargs["params"] = args[2] + if len(args) >= 4: + kwargs["tables"] = args[3] + if len(args) >= 5: + kwargs["order_by"] = args[4] + if len(args) >= 6: + kwargs["select_params"] = args[5] + insecure = False + for key in ["where", "tables"]: + if key in kwargs: + if isinstance(kwargs[key], ast.List): + for val in kwargs[key].elts: + if not isinstance(val, ast.Str): + insecure = True + break + else: + insecure = True + break + if not insecure and "select" in kwargs: + if isinstance(kwargs["select"], ast.Dict): + for k in kwargs["select"].keys: + if not isinstance(k, ast.Str): + insecure = True + break + if not insecure: + for v in kwargs["select"].values: + if not isinstance(v, ast.Str): + insecure = True + break + else: + insecure = True + + if insecure: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.SQL_INJECTION, + text=description, + ) + + +@test.checks("Call") +@test.test_id("B611") +def django_rawsql_used(context): + """**B611: Potential SQL injection on RawSQL function** + + :Example: + + .. code-block:: none + + >> Issue: [B611:django_rawsql_used] Use of RawSQL potential SQL attack vector. + Severity: Medium Confidence: Medium + CWE: CWE-89 (https://cwe.mitre.org/data/definitions/89.html) + Location: examples/django_sql_injection_raw.py:11:26 + More Info: https://bandit.readthedocs.io/en/latest/plugins/b611_django_rawsql_used.html + 10 ' WHERE "username"="admin" OR 1=%s --' + 11 User.objects.annotate(val=RawSQL(raw, [0])) + + .. seealso:: + + - https://docs.djangoproject.com/en/dev/topics/security/\ +#sql-injection-protection + - https://cwe.mitre.org/data/definitions/89.html + + .. versionadded:: 1.5.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + description = "Use of RawSQL potential SQL attack vector." + if context.is_module_imported_like("django.db.models"): + if context.call_function_name == "RawSQL": + if context.node.args: + sql = context.node.args[0] + else: + kwargs = keywords2dict(context.node.keywords) + sql = kwargs["sql"] + + if not isinstance(sql, ast.Str): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.SQL_INJECTION, + text=description, + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/django_xss.py b/.venv/lib/python3.12/site-packages/bandit/plugins/django_xss.py new file mode 100644 index 0000000..e96522a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/django_xss.py @@ -0,0 +1,276 @@ +# +# Copyright 2018 Victor Torre +# +# SPDX-License-Identifier: Apache-2.0 +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +class DeepAssignation: + def __init__(self, var_name, ignore_nodes=None): + self.var_name = var_name + self.ignore_nodes = ignore_nodes + + def is_assigned_in(self, items): + assigned = [] + for ast_inst in items: + new_assigned = self.is_assigned(ast_inst) + if new_assigned: + if isinstance(new_assigned, (list, tuple)): + assigned.extend(new_assigned) + else: + assigned.append(new_assigned) + return assigned + + def is_assigned(self, node): + assigned = False + if self.ignore_nodes: + if isinstance(self.ignore_nodes, (list, tuple, object)): + if isinstance(node, self.ignore_nodes): + return assigned + + if isinstance(node, ast.Expr): + assigned = self.is_assigned(node.value) + elif isinstance(node, ast.FunctionDef): + for name in node.args.args: + if isinstance(name, ast.Name): + if name.id == self.var_name.id: + # If is param the assignations are not affected + return assigned + assigned = self.is_assigned_in(node.body) + elif isinstance(node, ast.With): + for withitem in node.items: + var_id = getattr(withitem.optional_vars, "id", None) + if var_id == self.var_name.id: + assigned = node + else: + assigned = self.is_assigned_in(node.body) + elif isinstance(node, ast.Try): + assigned = [] + assigned.extend(self.is_assigned_in(node.body)) + assigned.extend(self.is_assigned_in(node.handlers)) + assigned.extend(self.is_assigned_in(node.orelse)) + assigned.extend(self.is_assigned_in(node.finalbody)) + elif isinstance(node, ast.ExceptHandler): + assigned = [] + assigned.extend(self.is_assigned_in(node.body)) + elif isinstance(node, (ast.If, ast.For, ast.While)): + assigned = [] + assigned.extend(self.is_assigned_in(node.body)) + assigned.extend(self.is_assigned_in(node.orelse)) + elif isinstance(node, ast.AugAssign): + if isinstance(node.target, ast.Name): + if node.target.id == self.var_name.id: + assigned = node.value + elif isinstance(node, ast.Assign) and node.targets: + target = node.targets[0] + if isinstance(target, ast.Name): + if target.id == self.var_name.id: + assigned = node.value + elif isinstance(target, ast.Tuple) and isinstance( + node.value, ast.Tuple + ): + pos = 0 + for name in target.elts: + if name.id == self.var_name.id: + assigned = node.value.elts[pos] + break + pos += 1 + return assigned + + +def evaluate_var(xss_var, parent, until, ignore_nodes=None): + secure = False + if isinstance(xss_var, ast.Name): + if isinstance(parent, ast.FunctionDef): + for name in parent.args.args: + if name.arg == xss_var.id: + return False # Params are not secure + + analyser = DeepAssignation(xss_var, ignore_nodes) + for node in parent.body: + if node.lineno >= until: + break + to = analyser.is_assigned(node) + if to: + if isinstance(to, ast.Str): + secure = True + elif isinstance(to, ast.Name): + secure = evaluate_var(to, parent, to.lineno, ignore_nodes) + elif isinstance(to, ast.Call): + secure = evaluate_call(to, parent, ignore_nodes) + elif isinstance(to, (list, tuple)): + num_secure = 0 + for some_to in to: + if isinstance(some_to, ast.Str): + num_secure += 1 + elif isinstance(some_to, ast.Name): + if evaluate_var( + some_to, parent, node.lineno, ignore_nodes + ): + num_secure += 1 + else: + break + else: + break + if num_secure == len(to): + secure = True + else: + secure = False + break + else: + secure = False + break + return secure + + +def evaluate_call(call, parent, ignore_nodes=None): + secure = False + evaluate = False + if isinstance(call, ast.Call) and isinstance(call.func, ast.Attribute): + if isinstance(call.func.value, ast.Str) and call.func.attr == "format": + evaluate = True + if call.keywords: + evaluate = False # TODO(??) get support for this + + if evaluate: + args = list(call.args) + num_secure = 0 + for arg in args: + if isinstance(arg, ast.Str): + num_secure += 1 + elif isinstance(arg, ast.Name): + if evaluate_var(arg, parent, call.lineno, ignore_nodes): + num_secure += 1 + else: + break + elif isinstance(arg, ast.Call): + if evaluate_call(arg, parent, ignore_nodes): + num_secure += 1 + else: + break + elif isinstance(arg, ast.Starred) and isinstance( + arg.value, (ast.List, ast.Tuple) + ): + args.extend(arg.value.elts) + num_secure += 1 + else: + break + secure = num_secure == len(args) + + return secure + + +def transform2call(var): + if isinstance(var, ast.BinOp): + is_mod = isinstance(var.op, ast.Mod) + is_left_str = isinstance(var.left, ast.Str) + if is_mod and is_left_str: + new_call = ast.Call() + new_call.args = [] + new_call.args = [] + new_call.keywords = None + new_call.lineno = var.lineno + new_call.func = ast.Attribute() + new_call.func.value = var.left + new_call.func.attr = "format" + if isinstance(var.right, ast.Tuple): + new_call.args = var.right.elts + else: + new_call.args = [var.right] + return new_call + + +def check_risk(node): + description = "Potential XSS on mark_safe function." + xss_var = node.args[0] + + secure = False + + if isinstance(xss_var, ast.Name): + # Check if the var are secure + parent = node._bandit_parent + while not isinstance(parent, (ast.Module, ast.FunctionDef)): + parent = parent._bandit_parent + + is_param = False + if isinstance(parent, ast.FunctionDef): + for name in parent.args.args: + if name.arg == xss_var.id: + is_param = True + break + + if not is_param: + secure = evaluate_var(xss_var, parent, node.lineno) + elif isinstance(xss_var, ast.Call): + parent = node._bandit_parent + while not isinstance(parent, (ast.Module, ast.FunctionDef)): + parent = parent._bandit_parent + secure = evaluate_call(xss_var, parent) + elif isinstance(xss_var, ast.BinOp): + is_mod = isinstance(xss_var.op, ast.Mod) + is_left_str = isinstance(xss_var.left, ast.Str) + if is_mod and is_left_str: + parent = node._bandit_parent + while not isinstance(parent, (ast.Module, ast.FunctionDef)): + parent = parent._bandit_parent + new_call = transform2call(xss_var) + secure = evaluate_call(new_call, parent) + + if not secure: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.BASIC_XSS, + text=description, + ) + + +@test.checks("Call") +@test.test_id("B703") +def django_mark_safe(context): + """**B703: Potential XSS on mark_safe function** + + :Example: + + .. code-block:: none + + >> Issue: [B703:django_mark_safe] Potential XSS on mark_safe function. + Severity: Medium Confidence: High + CWE: CWE-80 (https://cwe.mitre.org/data/definitions/80.html) + Location: examples/mark_safe_insecure.py:159:4 + More Info: https://bandit.readthedocs.io/en/latest/plugins/b703_django_mark_safe.html + 158 str_arg = 'could be insecure' + 159 safestring.mark_safe(str_arg) + + .. seealso:: + + - https://docs.djangoproject.com/en/dev/topics/security/\ +#cross-site-scripting-xss-protection + - https://docs.djangoproject.com/en/dev/ref/utils/\ +#module-django.utils.safestring + - https://docs.djangoproject.com/en/dev/ref/utils/\ +#django.utils.html.format_html + - https://cwe.mitre.org/data/definitions/80.html + + .. versionadded:: 1.5.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + if context.is_module_imported_like("django.utils.safestring"): + affected_functions = [ + "mark_safe", + "SafeText", + "SafeUnicode", + "SafeString", + "SafeBytes", + ] + if context.call_function_name in affected_functions: + xss = context.node.args[0] + if not isinstance(xss, ast.Str): + return check_risk(context.node) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/exec.py b/.venv/lib/python3.12/site-packages/bandit/plugins/exec.py new file mode 100644 index 0000000..3e46247 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/exec.py @@ -0,0 +1,55 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============================== +B102: Test for the use of exec +============================== + +This plugin test checks for the use of Python's `exec` method or keyword. The +Python docs succinctly describe why the use of `exec` is risky. + +:Example: + +.. code-block:: none + + >> Issue: Use of exec detected. + Severity: Medium Confidence: High + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/exec.py:2 + 1 exec("do evil") + + +.. seealso:: + + - https://docs.python.org/3/library/functions.html#exec + - https://www.python.org/dev/peps/pep-0551/#background + - https://www.python.org/dev/peps/pep-0578/#suggested-audit-hook-locations + - https://cwe.mitre.org/data/definitions/78.html + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def exec_issue(): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="Use of exec detected.", + ) + + +@test.checks("Call") +@test.test_id("B102") +def exec_used(context): + if context.call_function_name_qual == "exec": + return exec_issue() diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/general_bad_file_permissions.py b/.venv/lib/python3.12/site-packages/bandit/plugins/general_bad_file_permissions.py new file mode 100644 index 0000000..7d3fce4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/general_bad_file_permissions.py @@ -0,0 +1,99 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +================================================== +B103: Test for setting permissive file permissions +================================================== + +POSIX based operating systems utilize a permissions model to protect access to +parts of the file system. This model supports three roles "owner", "group" +and "world" each role may have a combination of "read", "write" or "execute" +flags sets. Python provides ``chmod`` to manipulate POSIX style permissions. + +This plugin test looks for the use of ``chmod`` and will alert when it is used +to set particularly permissive control flags. A MEDIUM warning is generated if +a file is set to group write or executable and a HIGH warning is reported if a +file is set world write or executable. Warnings are given with HIGH confidence. + +:Example: + +.. code-block:: none + + >> Issue: Probable insecure usage of temp file/directory. + Severity: Medium Confidence: Medium + CWE: CWE-732 (https://cwe.mitre.org/data/definitions/732.html) + Location: ./examples/os-chmod.py:15 + 14 os.chmod('/etc/hosts', 0o777) + 15 os.chmod('/tmp/oh_hai', 0x1ff) + 16 os.chmod('/etc/passwd', stat.S_IRWXU) + + >> Issue: Chmod setting a permissive mask 0777 on file (key_file). + Severity: High Confidence: High + CWE: CWE-732 (https://cwe.mitre.org/data/definitions/732.html) + Location: ./examples/os-chmod.py:17 + 16 os.chmod('/etc/passwd', stat.S_IRWXU) + 17 os.chmod(key_file, 0o777) + 18 + +.. seealso:: + + - https://security.openstack.org/guidelines/dg_apply-restrictive-file-permissions.html + - https://en.wikipedia.org/wiki/File_system_permissions + - https://security.openstack.org + - https://cwe.mitre.org/data/definitions/732.html + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.7.3 + CWE information added + +.. versionchanged:: 1.7.5 + Added checks for S_IWGRP and S_IXOTH + +""" # noqa: E501 +import stat + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def _stat_is_dangerous(mode): + return ( + mode & stat.S_IWOTH + or mode & stat.S_IWGRP + or mode & stat.S_IXGRP + or mode & stat.S_IXOTH + ) + + +@test.checks("Call") +@test.test_id("B103") +def set_bad_file_permissions(context): + if "chmod" in context.call_function_name: + if context.call_args_count == 2: + mode = context.get_call_arg_at_position(1) + + if ( + mode is not None + and isinstance(mode, int) + and _stat_is_dangerous(mode) + ): + # world writable is an HIGH, group executable is a MEDIUM + if mode & stat.S_IWOTH: + sev_level = bandit.HIGH + else: + sev_level = bandit.MEDIUM + + filename = context.get_call_arg_at_position(0) + if filename is None: + filename = "NOT PARSED" + return bandit.Issue( + severity=sev_level, + confidence=bandit.HIGH, + cwe=issue.Cwe.INCORRECT_PERMISSION_ASSIGNMENT, + text="Chmod setting a permissive mask %s on file (%s)." + % (oct(mode), filename), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/general_bind_all_interfaces.py b/.venv/lib/python3.12/site-packages/bandit/plugins/general_bind_all_interfaces.py new file mode 100644 index 0000000..58b840e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/general_bind_all_interfaces.py @@ -0,0 +1,52 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +======================================== +B104: Test for binding to all interfaces +======================================== + +Binding to all network interfaces can potentially open up a service to traffic +on unintended interfaces, that may not be properly documented or secured. This +plugin test looks for a string pattern "0.0.0.0" that may indicate a hardcoded +binding to all network interfaces. + +:Example: + +.. code-block:: none + + >> Issue: Possible binding to all interfaces. + Severity: Medium Confidence: Medium + CWE: CWE-605 (https://cwe.mitre.org/data/definitions/605.html) + Location: ./examples/binding.py:4 + 3 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + 4 s.bind(('0.0.0.0', 31137)) + 5 s.bind(('192.168.0.1', 8080)) + +.. seealso:: + + - https://nvd.nist.gov/vuln/detail/CVE-2018-1281 + - https://cwe.mitre.org/data/definitions/605.html + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Str") +@test.test_id("B104") +def hardcoded_bind_all_interfaces(context): + if context.string_val == "0.0.0.0": # nosec: B104 + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.MULTIPLE_BINDS, + text="Possible binding to all interfaces.", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_password.py b/.venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_password.py new file mode 100644 index 0000000..9196beb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_password.py @@ -0,0 +1,254 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import ast +import re + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + +RE_WORDS = "(pas+wo?r?d|pass(phrase)?|pwd|token|secrete?)" +RE_CANDIDATES = re.compile( + "(^{0}$|_{0}_|^{0}_|_{0}$)".format(RE_WORDS), re.IGNORECASE +) + + +def _report(value): + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.HARD_CODED_PASSWORD, + text=f"Possible hardcoded password: '{value}'", + ) + + +@test.checks("Str") +@test.test_id("B105") +def hardcoded_password_string(context): + """**B105: Test for use of hard-coded password strings** + + The use of hard-coded passwords increases the possibility of password + guessing tremendously. This plugin test looks for all string literals and + checks the following conditions: + + - assigned to a variable that looks like a password + - assigned to a dict key that looks like a password + - assigned to a class attribute that looks like a password + - used in a comparison with a variable that looks like a password + + Variables are considered to look like a password if they have match any one + of: + + - "password" + - "pass" + - "passwd" + - "pwd" + - "secret" + - "token" + - "secrete" + + Note: this can be noisy and may generate false positives. + + **Config Options:** + + None + + :Example: + + .. code-block:: none + + >> Issue: Possible hardcoded password '(root)' + Severity: Low Confidence: Low + CWE: CWE-259 (https://cwe.mitre.org/data/definitions/259.html) + Location: ./examples/hardcoded-passwords.py:5 + 4 def someFunction2(password): + 5 if password == "root": + 6 print("OK, logged in") + + .. seealso:: + + - https://www.owasp.org/index.php/Use_of_hard-coded_password + - https://cwe.mitre.org/data/definitions/259.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ + node = context.node + if isinstance(node._bandit_parent, ast.Assign): + # looks for "candidate='some_string'" + for targ in node._bandit_parent.targets: + if isinstance(targ, ast.Name) and RE_CANDIDATES.search(targ.id): + return _report(node.s) + elif isinstance(targ, ast.Attribute) and RE_CANDIDATES.search( + targ.attr + ): + return _report(node.s) + + elif isinstance( + node._bandit_parent, ast.Subscript + ) and RE_CANDIDATES.search(node.s): + # Py39+: looks for "dict[candidate]='some_string'" + # subscript -> index -> string + assign = node._bandit_parent._bandit_parent + if isinstance(assign, ast.Assign) and isinstance( + assign.value, ast.Str + ): + return _report(assign.value.s) + + elif isinstance(node._bandit_parent, ast.Index) and RE_CANDIDATES.search( + node.s + ): + # looks for "dict[candidate]='some_string'" + # assign -> subscript -> index -> string + assign = node._bandit_parent._bandit_parent._bandit_parent + if isinstance(assign, ast.Assign) and isinstance( + assign.value, ast.Str + ): + return _report(assign.value.s) + + elif isinstance(node._bandit_parent, ast.Compare): + # looks for "candidate == 'some_string'" + comp = node._bandit_parent + if isinstance(comp.left, ast.Name): + if RE_CANDIDATES.search(comp.left.id): + if isinstance(comp.comparators[0], ast.Str): + return _report(comp.comparators[0].s) + elif isinstance(comp.left, ast.Attribute): + if RE_CANDIDATES.search(comp.left.attr): + if isinstance(comp.comparators[0], ast.Str): + return _report(comp.comparators[0].s) + + +@test.checks("Call") +@test.test_id("B106") +def hardcoded_password_funcarg(context): + """**B106: Test for use of hard-coded password function arguments** + + The use of hard-coded passwords increases the possibility of password + guessing tremendously. This plugin test looks for all function calls being + passed a keyword argument that is a string literal. It checks that the + assigned local variable does not look like a password. + + Variables are considered to look like a password if they have match any one + of: + + - "password" + - "pass" + - "passwd" + - "pwd" + - "secret" + - "token" + - "secrete" + + Note: this can be noisy and may generate false positives. + + **Config Options:** + + None + + :Example: + + .. code-block:: none + + >> Issue: [B106:hardcoded_password_funcarg] Possible hardcoded + password: 'blerg' + Severity: Low Confidence: Medium + CWE: CWE-259 (https://cwe.mitre.org/data/definitions/259.html) + Location: ./examples/hardcoded-passwords.py:16 + 15 + 16 doLogin(password="blerg") + + .. seealso:: + + - https://www.owasp.org/index.php/Use_of_hard-coded_password + - https://cwe.mitre.org/data/definitions/259.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ + # looks for "function(candidate='some_string')" + for kw in context.node.keywords: + if isinstance(kw.value, ast.Str) and RE_CANDIDATES.search(kw.arg): + return _report(kw.value.s) + + +@test.checks("FunctionDef") +@test.test_id("B107") +def hardcoded_password_default(context): + """**B107: Test for use of hard-coded password argument defaults** + + The use of hard-coded passwords increases the possibility of password + guessing tremendously. This plugin test looks for all function definitions + that specify a default string literal for some argument. It checks that + the argument does not look like a password. + + Variables are considered to look like a password if they have match any one + of: + + - "password" + - "pass" + - "passwd" + - "pwd" + - "secret" + - "token" + - "secrete" + + Note: this can be noisy and may generate false positives. We do not + report on None values which can be legitimately used as a default value, + when initializing a function or class. + + **Config Options:** + + None + + :Example: + + .. code-block:: none + + >> Issue: [B107:hardcoded_password_default] Possible hardcoded + password: 'Admin' + Severity: Low Confidence: Medium + CWE: CWE-259 (https://cwe.mitre.org/data/definitions/259.html) + Location: ./examples/hardcoded-passwords.py:1 + + 1 def someFunction(user, password="Admin"): + 2 print("Hi " + user) + + .. seealso:: + + - https://www.owasp.org/index.php/Use_of_hard-coded_password + - https://cwe.mitre.org/data/definitions/259.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ + # looks for "def function(candidate='some_string')" + + # this pads the list of default values with "None" if nothing is given + defs = [None] * ( + len(context.node.args.args) - len(context.node.args.defaults) + ) + defs.extend(context.node.args.defaults) + + # go through all (param, value)s and look for candidates + for key, val in zip(context.node.args.args, defs): + if isinstance(key, (ast.Name, ast.arg)): + # Skip if the default value is None + if val is None or ( + isinstance(val, (ast.Constant, ast.NameConstant)) + and val.value is None + ): + continue + if isinstance(val, ast.Str) and RE_CANDIDATES.search(key.arg): + return _report(val.s) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_tmp.py b/.venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_tmp.py new file mode 100644 index 0000000..ecf8995 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/general_hardcoded_tmp.py @@ -0,0 +1,79 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +=================================================== +B108: Test for insecure usage of tmp file/directory +=================================================== + +Safely creating a temporary file or directory means following a number of rules +(see the references for more details). This plugin test looks for strings +starting with (configurable) commonly used temporary paths, for example: + + - /tmp + - /var/tmp + - /dev/shm + +**Config Options:** + +This test plugin takes a similarly named config block, +`hardcoded_tmp_directory`. The config block provides a Python list, `tmp_dirs`, +that lists string fragments indicating possible temporary file paths. Any +string starting with one of these fragments will report a MEDIUM confidence +issue. + +.. code-block:: yaml + + hardcoded_tmp_directory: + tmp_dirs: ['/tmp', '/var/tmp', '/dev/shm'] + + +:Example: + +.. code-block: none + + >> Issue: Probable insecure usage of temp file/directory. + Severity: Medium Confidence: Medium + CWE: CWE-377 (https://cwe.mitre.org/data/definitions/377.html) + Location: ./examples/hardcoded-tmp.py:1 + 1 f = open('/tmp/abc', 'w') + 2 f.write('def') + +.. seealso:: + + - https://security.openstack.org/guidelines/dg_using-temporary-files-securely.html + - https://cwe.mitre.org/data/definitions/377.html + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" # noqa: E501 +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def gen_config(name): + if name == "hardcoded_tmp_directory": + return {"tmp_dirs": ["/tmp", "/var/tmp", "/dev/shm"]} # nosec: B108 + + +@test.takes_config +@test.checks("Str") +@test.test_id("B108") +def hardcoded_tmp_directory(context, config): + if config is not None and "tmp_dirs" in config: + tmp_dirs = config["tmp_dirs"] + else: + tmp_dirs = ["/tmp", "/var/tmp", "/dev/shm"] # nosec: B108 + + if any(context.string_val.startswith(s) for s in tmp_dirs): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.INSECURE_TEMP_FILE, + text="Probable insecure usage of temp file/directory.", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/hashlib_insecure_functions.py b/.venv/lib/python3.12/site-packages/bandit/plugins/hashlib_insecure_functions.py new file mode 100644 index 0000000..626c8ed --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/hashlib_insecure_functions.py @@ -0,0 +1,124 @@ +# +# SPDX-License-Identifier: Apache-2.0 +r""" +====================================================================== +B324: Test use of insecure md4, md5, or sha1 hash functions in hashlib +====================================================================== + +This plugin checks for the usage of the insecure MD4, MD5, or SHA1 hash +functions in ``hashlib`` and ``crypt``. The ``hashlib.new`` function provides +the ability to construct a new hashing object using the named algorithm. This +can be used to create insecure hash functions like MD4 and MD5 if they are +passed as algorithm names to this function. + +For Python versions prior to 3.9, this check is similar to B303 blacklist +except that this checks for insecure hash functions created using +``hashlib.new`` function. For Python version 3.9 and later, this check +does additional checking for usage of keyword usedforsecurity on all +function variations of hashlib. + +Similar to ``hashlib``, this plugin also checks for usage of one of the +``crypt`` module's weak hashes. ``crypt`` also permits MD5 among other weak +hash variants. + +:Example: + +.. code-block:: none + + >> Issue: [B324:hashlib] Use of weak MD4, MD5, or SHA1 hash for + security. Consider usedforsecurity=False + Severity: High Confidence: High + CWE: CWE-327 (https://cwe.mitre.org/data/definitions/327.html) + Location: examples/hashlib_new_insecure_functions.py:3:0 + More Info: https://bandit.readthedocs.io/en/latest/plugins/b324_hashlib.html + 2 + 3 hashlib.new('md5') + 4 + +.. seealso:: + + - https://cwe.mitre.org/data/definitions/327.html + +.. versionadded:: 1.5.0 + +.. versionchanged:: 1.7.3 + CWE information added + +.. versionchanged:: 1.7.6 + Added check for the crypt module weak hashes + +""" # noqa: E501 +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + +WEAK_HASHES = ("md4", "md5", "sha", "sha1") +WEAK_CRYPT_HASHES = ("METHOD_CRYPT", "METHOD_MD5", "METHOD_BLOWFISH") + + +def _hashlib_func(context, func): + keywords = context.call_keywords + + if func in WEAK_HASHES: + if keywords.get("usedforsecurity", "True") == "True": + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.BROKEN_CRYPTO, + text=f"Use of weak {func.upper()} hash for security. " + "Consider usedforsecurity=False", + lineno=context.node.lineno, + ) + elif func == "new": + args = context.call_args + name = args[0] if args else keywords.get("name", None) + if isinstance(name, str) and name.lower() in WEAK_HASHES: + if keywords.get("usedforsecurity", "True") == "True": + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.BROKEN_CRYPTO, + text=f"Use of weak {name.upper()} hash for " + "security. Consider usedforsecurity=False", + lineno=context.node.lineno, + ) + + +def _crypt_crypt(context, func): + args = context.call_args + keywords = context.call_keywords + + if func == "crypt": + name = args[1] if len(args) > 1 else keywords.get("salt", None) + if isinstance(name, str) and name in WEAK_CRYPT_HASHES: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.BROKEN_CRYPTO, + text=f"Use of insecure crypt.{name.upper()} hash function.", + lineno=context.node.lineno, + ) + elif func == "mksalt": + name = args[0] if args else keywords.get("method", None) + if isinstance(name, str) and name in WEAK_CRYPT_HASHES: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.BROKEN_CRYPTO, + text=f"Use of insecure crypt.{name.upper()} hash function.", + lineno=context.node.lineno, + ) + + +@test.test_id("B324") +@test.checks("Call") +def hashlib(context): + if isinstance(context.call_function_name_qual, str): + qualname_list = context.call_function_name_qual.split(".") + func = qualname_list[-1] + + if "hashlib" in qualname_list: + return _hashlib_func(context, func) + + elif "crypt" in qualname_list and func in ("crypt", "mksalt"): + return _crypt_crypt(context, func) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/huggingface_unsafe_download.py b/.venv/lib/python3.12/site-packages/bandit/plugins/huggingface_unsafe_download.py new file mode 100644 index 0000000..e51181a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/huggingface_unsafe_download.py @@ -0,0 +1,153 @@ +# SPDX-License-Identifier: Apache-2.0 +r""" +================================================ +B615: Test for unsafe Hugging Face Hub downloads +================================================ + +This plugin checks for unsafe downloads from Hugging Face Hub without proper +integrity verification. Downloading models, datasets, or files without +specifying a revision based on an immmutable revision (commit) can +lead to supply chain attacks where malicious actors could +replace model files and use an existing tag or branch name +to serve malicious content. + +The secure approach is to: + +1. Pin to specific revisions/commits when downloading models, files or datasets + +Common unsafe patterns: +- ``AutoModel.from_pretrained("org/model-name")`` +- ``AutoModel.from_pretrained("org/model-name", revision="main")`` +- ``AutoModel.from_pretrained("org/model-name", revision="v1.0.0")`` +- ``load_dataset("org/dataset-name")`` without revision +- ``load_dataset("org/dataset-name", revision="main")`` +- ``load_dataset("org/dataset-name", revision="v1.0")`` +- ``AutoTokenizer.from_pretrained("org/model-name")`` +- ``AutoTokenizer.from_pretrained("org/model-name", revision="main")`` +- ``AutoTokenizer.from_pretrained("org/model-name", revision="v3.3.0")`` +- ``hf_hub_download(repo_id="org/model_name", filename="file_name")`` +- ``hf_hub_download(repo_id="org/model_name", + filename="file_name", + revision="main" + )`` +- ``hf_hub_download(repo_id="org/model_name", + filename="file_name", + revision="v2.0.0" + )`` +- ``snapshot_download(repo_id="org/model_name")`` +- ``snapshot_download(repo_id="org/model_name", revision="main")`` +- ``snapshot_download(repo_id="org/model_name", revision="refs/pr/1")`` + + +:Example: + +.. code-block:: none + + >> Issue: Unsafe Hugging Face Hub download without revision pinning + Severity: Medium Confidence: High + CWE: CWE-494 (https://cwe.mitre.org/data/definitions/494.html) + Location: examples/huggingface_unsafe_download.py:8 + 7 # Unsafe: no revision specified + 8 model = AutoModel.from_pretrained("org/model_name") + 9 + +.. seealso:: + + - https://cwe.mitre.org/data/definitions/494.html + - https://huggingface.co/docs/huggingface_hub/en/guides/download + +.. versionadded:: 1.8.6 + +""" +import string + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B615") +def huggingface_unsafe_download(context): + """ + This plugin checks for unsafe artifact download from Hugging Face Hub + without immutable/reproducible revision pinning. + """ + # Check if any HuggingFace-related modules are imported + hf_modules = [ + "transformers", + "datasets", + "huggingface_hub", + ] + + # Check if any HF modules are imported + hf_imported = any( + context.is_module_imported_like(module) for module in hf_modules + ) + + if not hf_imported: + return + + qualname = context.call_function_name_qual + if not isinstance(qualname, str): + return + + unsafe_patterns = { + # transformers library patterns + "from_pretrained": ["transformers"], + # datasets library patterns + "load_dataset": ["datasets"], + # huggingface_hub patterns + "hf_hub_download": ["huggingface_hub"], + "snapshot_download": ["huggingface_hub"], + "repository_id": ["huggingface_hub"], + } + + qualname_parts = qualname.split(".") + func_name = qualname_parts[-1] + + if func_name not in unsafe_patterns: + return + + required_modules = unsafe_patterns[func_name] + if not any(module in qualname_parts for module in required_modules): + return + + # Check for revision parameter (the key security control) + revision_value = context.get_call_arg_value("revision") + commit_id_value = context.get_call_arg_value("commit_id") + + # Check if a revision or commit_id is specified + revision_to_check = revision_value or commit_id_value + + if revision_to_check is not None: + # Check if it's a secure revision (looks like a commit hash) + # Commit hashes: 40 chars (full SHA) or 7+ chars (short SHA) + if isinstance(revision_to_check, str): + # Remove quotes if present + revision_str = str(revision_to_check).strip("\"'") + + # Check if it looks like a commit hash (hexadecimal string) + # Must be at least 7 characters and all hexadecimal + is_hex = all(c in string.hexdigits for c in revision_str) + if len(revision_str) >= 7 and is_hex: + # This looks like a commit hash, which is secure + return + + # Edge case: check if this is a local path (starts with ./ or /) + first_arg = context.get_call_arg_at_position(0) + if first_arg and isinstance(first_arg, str): + if first_arg.startswith(("./", "/", "../")): + # Local paths are generally safer + return + + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + text=( + f"Unsafe Hugging Face Hub download without revision pinning " + f"in {func_name}()" + ), + cwe=issue.Cwe.DOWNLOAD_OF_CODE_WITHOUT_INTEGRITY_CHECK, + lineno=context.get_lineno_for_call_arg(func_name), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/injection_paramiko.py b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_paramiko.py new file mode 100644 index 0000000..674fe0b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_paramiko.py @@ -0,0 +1,63 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============================================== +B601: Test for shell injection within Paramiko +============================================== + +Paramiko is a Python library designed to work with the SSH2 protocol for secure +(encrypted and authenticated) connections to remote machines. It is intended to +run commands on a remote host. These commands are run within a shell on the +target and are thus vulnerable to various shell injection attacks. Bandit +reports a MEDIUM issue when it detects the use of Paramiko's "exec_command" +method advising the user to check inputs are correctly sanitized. + +:Example: + +.. code-block:: none + + >> Issue: Possible shell injection via Paramiko call, check inputs are + properly sanitized. + Severity: Medium Confidence: Medium + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/paramiko_injection.py:4 + 3 # this is not safe + 4 paramiko.exec_command('something; really; unsafe') + 5 + +.. seealso:: + + - https://security.openstack.org + - https://github.com/paramiko/paramiko + - https://www.owasp.org/index.php/Command_Injection + - https://cwe.mitre.org/data/definitions/78.html + +.. versionadded:: 0.12.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B601") +def paramiko_calls(context): + issue_text = ( + "Possible shell injection via Paramiko call, check inputs " + "are properly sanitized." + ) + for module in ["paramiko"]: + if context.is_module_imported_like(module): + if context.call_function_name in ["exec_command"]: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text=issue_text, + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/injection_shell.py b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_shell.py new file mode 100644 index 0000000..2293683 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_shell.py @@ -0,0 +1,696 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import ast +import re + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + +# yuck, regex: starts with a windows drive letter (eg C:) +# or one of our path delimeter characters (/, \, .) +full_path_match = re.compile(r"^(?:[A-Za-z](?=\:)|[\\\/\.])") + + +def _evaluate_shell_call(context): + no_formatting = isinstance(context.node.args[0], ast.Str) + + if no_formatting: + return bandit.LOW + else: + return bandit.HIGH + + +def gen_config(name): + if name == "shell_injection": + return { + # Start a process using the subprocess module, or one of its + # wrappers. + "subprocess": [ + "subprocess.Popen", + "subprocess.call", + "subprocess.check_call", + "subprocess.check_output", + "subprocess.run", + ], + # Start a process with a function vulnerable to shell injection. + "shell": [ + "os.system", + "os.popen", + "os.popen2", + "os.popen3", + "os.popen4", + "popen2.popen2", + "popen2.popen3", + "popen2.popen4", + "popen2.Popen3", + "popen2.Popen4", + "commands.getoutput", + "commands.getstatusoutput", + "subprocess.getoutput", + "subprocess.getstatusoutput", + ], + # Start a process with a function that is not vulnerable to shell + # injection. + "no_shell": [ + "os.execl", + "os.execle", + "os.execlp", + "os.execlpe", + "os.execv", + "os.execve", + "os.execvp", + "os.execvpe", + "os.spawnl", + "os.spawnle", + "os.spawnlp", + "os.spawnlpe", + "os.spawnv", + "os.spawnve", + "os.spawnvp", + "os.spawnvpe", + "os.startfile", + ], + } + + +def has_shell(context): + keywords = context.node.keywords + result = False + if "shell" in context.call_keywords: + for key in keywords: + if key.arg == "shell": + val = key.value + if isinstance(val, ast.Num): + result = bool(val.n) + elif isinstance(val, ast.List): + result = bool(val.elts) + elif isinstance(val, ast.Dict): + result = bool(val.keys) + elif isinstance(val, ast.Name) and val.id in ["False", "None"]: + result = False + elif isinstance(val, ast.NameConstant): + result = val.value + else: + result = True + return result + + +@test.takes_config("shell_injection") +@test.checks("Call") +@test.test_id("B602") +def subprocess_popen_with_shell_equals_true(context, config): + """**B602: Test for use of popen with shell equals true** + + Python possesses many mechanisms to invoke an external executable. However, + doing so may present a security issue if appropriate care is not taken to + sanitize any user provided or variable input. + + This plugin test is part of a family of tests built to check for process + spawning and warn appropriately. Specifically, this test looks for the + spawning of a subprocess using a command shell. This type of subprocess + invocation is dangerous as it is vulnerable to various shell injection + attacks. Great care should be taken to sanitize all input in order to + mitigate this risk. Calls of this type are identified by a parameter of + 'shell=True' being given. + + Additionally, this plugin scans the command string given and adjusts its + reported severity based on how it is presented. If the command string is a + simple static string containing no special shell characters, then the + resulting issue has low severity. If the string is static, but contains + shell formatting characters or wildcards, then the reported issue is + medium. Finally, if the string is computed using Python's string + manipulation or formatting operations, then the reported issue has high + severity. These severity levels reflect the likelihood that the code is + vulnerable to injection. + + See also: + + - :doc:`../plugins/linux_commands_wildcard_injection` + - :doc:`../plugins/subprocess_without_shell_equals_true` + - :doc:`../plugins/start_process_with_no_shell` + - :doc:`../plugins/start_process_with_a_shell` + - :doc:`../plugins/start_process_with_partial_path` + + **Config Options:** + + This plugin test shares a configuration with others in the same family, + namely `shell_injection`. This configuration is divided up into three + sections, `subprocess`, `shell` and `no_shell`. They each list Python calls + that spawn subprocesses, invoke commands within a shell, or invoke commands + without a shell (by replacing the calling process) respectively. + + This plugin specifically scans for methods listed in `subprocess` section + that have shell=True specified. + + .. code-block:: yaml + + shell_injection: + + # Start a process using the subprocess module, or one of its + wrappers. + subprocess: + - subprocess.Popen + - subprocess.call + + + :Example: + + .. code-block:: none + + >> Issue: subprocess call with shell=True seems safe, but may be + changed in the future, consider rewriting without shell + Severity: Low Confidence: High + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/subprocess_shell.py:21 + 20 subprocess.check_call(['/bin/ls', '-l'], shell=False) + 21 subprocess.check_call('/bin/ls -l', shell=True) + 22 + + >> Issue: call with shell=True contains special shell characters, + consider moving extra logic into Python code + Severity: Medium Confidence: High + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/subprocess_shell.py:26 + 25 + 26 subprocess.Popen('/bin/ls *', shell=True) + 27 subprocess.Popen('/bin/ls %s' % ('something',), shell=True) + + >> Issue: subprocess call with shell=True identified, security issue. + Severity: High Confidence: High + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/subprocess_shell.py:27 + 26 subprocess.Popen('/bin/ls *', shell=True) + 27 subprocess.Popen('/bin/ls %s' % ('something',), shell=True) + 28 subprocess.Popen('/bin/ls {}'.format('something'), shell=True) + + .. seealso:: + + - https://security.openstack.org + - https://docs.python.org/3/library/subprocess.html#frequently-used-arguments + - https://security.openstack.org/guidelines/dg_use-subprocess-securely.html + - https://security.openstack.org/guidelines/dg_avoid-shell-true.html + - https://cwe.mitre.org/data/definitions/78.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + if config and context.call_function_name_qual in config["subprocess"]: + if has_shell(context): + if len(context.call_args) > 0: + sev = _evaluate_shell_call(context) + if sev == bandit.LOW: + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.HIGH, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="subprocess call with shell=True seems safe, but " + "may be changed in the future, consider " + "rewriting without shell", + lineno=context.get_lineno_for_call_arg("shell"), + ) + else: + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="subprocess call with shell=True identified, " + "security issue.", + lineno=context.get_lineno_for_call_arg("shell"), + ) + + +@test.takes_config("shell_injection") +@test.checks("Call") +@test.test_id("B603") +def subprocess_without_shell_equals_true(context, config): + """**B603: Test for use of subprocess without shell equals true** + + Python possesses many mechanisms to invoke an external executable. However, + doing so may present a security issue if appropriate care is not taken to + sanitize any user provided or variable input. + + This plugin test is part of a family of tests built to check for process + spawning and warn appropriately. Specifically, this test looks for the + spawning of a subprocess without the use of a command shell. This type of + subprocess invocation is not vulnerable to shell injection attacks, but + care should still be taken to ensure validity of input. + + Because this is a lesser issue than that described in + `subprocess_popen_with_shell_equals_true` a LOW severity warning is + reported. + + See also: + + - :doc:`../plugins/linux_commands_wildcard_injection` + - :doc:`../plugins/subprocess_popen_with_shell_equals_true` + - :doc:`../plugins/start_process_with_no_shell` + - :doc:`../plugins/start_process_with_a_shell` + - :doc:`../plugins/start_process_with_partial_path` + + **Config Options:** + + This plugin test shares a configuration with others in the same family, + namely `shell_injection`. This configuration is divided up into three + sections, `subprocess`, `shell` and `no_shell`. They each list Python calls + that spawn subprocesses, invoke commands within a shell, or invoke commands + without a shell (by replacing the calling process) respectively. + + This plugin specifically scans for methods listed in `subprocess` section + that have shell=False specified. + + .. code-block:: yaml + + shell_injection: + # Start a process using the subprocess module, or one of its + wrappers. + subprocess: + - subprocess.Popen + - subprocess.call + + :Example: + + .. code-block:: none + + >> Issue: subprocess call - check for execution of untrusted input. + Severity: Low Confidence: High + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/subprocess_shell.py:23 + 22 + 23 subprocess.check_output(['/bin/ls', '-l']) + 24 + + .. seealso:: + + - https://security.openstack.org + - https://docs.python.org/3/library/subprocess.html#frequently-used-arguments + - https://security.openstack.org/guidelines/dg_avoid-shell-true.html + - https://security.openstack.org/guidelines/dg_use-subprocess-securely.html + - https://cwe.mitre.org/data/definitions/78.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + if config and context.call_function_name_qual in config["subprocess"]: + if not has_shell(context): + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.HIGH, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="subprocess call - check for execution of untrusted " + "input.", + lineno=context.get_lineno_for_call_arg("shell"), + ) + + +@test.takes_config("shell_injection") +@test.checks("Call") +@test.test_id("B604") +def any_other_function_with_shell_equals_true(context, config): + """**B604: Test for any function with shell equals true** + + Python possesses many mechanisms to invoke an external executable. However, + doing so may present a security issue if appropriate care is not taken to + sanitize any user provided or variable input. + + This plugin test is part of a family of tests built to check for process + spawning and warn appropriately. Specifically, this plugin test + interrogates method calls for the presence of a keyword parameter `shell` + equalling true. It is related to detection of shell injection issues and is + intended to catch custom wrappers to vulnerable methods that may have been + created. + + See also: + + - :doc:`../plugins/linux_commands_wildcard_injection` + - :doc:`../plugins/subprocess_popen_with_shell_equals_true` + - :doc:`../plugins/subprocess_without_shell_equals_true` + - :doc:`../plugins/start_process_with_no_shell` + - :doc:`../plugins/start_process_with_a_shell` + - :doc:`../plugins/start_process_with_partial_path` + + **Config Options:** + + This plugin test shares a configuration with others in the same family, + namely `shell_injection`. This configuration is divided up into three + sections, `subprocess`, `shell` and `no_shell`. They each list Python calls + that spawn subprocesses, invoke commands within a shell, or invoke commands + without a shell (by replacing the calling process) respectively. + + Specifically, this plugin excludes those functions listed under the + subprocess section, these methods are tested in a separate specific test + plugin and this exclusion prevents duplicate issue reporting. + + .. code-block:: yaml + + shell_injection: + # Start a process using the subprocess module, or one of its + wrappers. + subprocess: [subprocess.Popen, subprocess.call, + subprocess.check_call, subprocess.check_output + execute_with_timeout] + + + :Example: + + .. code-block:: none + + >> Issue: Function call with shell=True parameter identified, possible + security issue. + Severity: Medium Confidence: High + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/subprocess_shell.py:9 + 8 pop('/bin/gcc --version', shell=True) + 9 Popen('/bin/gcc --version', shell=True) + 10 + + .. seealso:: + + - https://security.openstack.org/guidelines/dg_avoid-shell-true.html + - https://security.openstack.org/guidelines/dg_use-subprocess-securely.html + - https://cwe.mitre.org/data/definitions/78.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + if config and context.call_function_name_qual not in config["subprocess"]: + if has_shell(context): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.LOW, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="Function call with shell=True parameter identified, " + "possible security issue.", + lineno=context.get_lineno_for_call_arg("shell"), + ) + + +@test.takes_config("shell_injection") +@test.checks("Call") +@test.test_id("B605") +def start_process_with_a_shell(context, config): + """**B605: Test for starting a process with a shell** + + Python possesses many mechanisms to invoke an external executable. However, + doing so may present a security issue if appropriate care is not taken to + sanitize any user provided or variable input. + + This plugin test is part of a family of tests built to check for process + spawning and warn appropriately. Specifically, this test looks for the + spawning of a subprocess using a command shell. This type of subprocess + invocation is dangerous as it is vulnerable to various shell injection + attacks. Great care should be taken to sanitize all input in order to + mitigate this risk. Calls of this type are identified by the use of certain + commands which are known to use shells. Bandit will report a LOW + severity warning. + + See also: + + - :doc:`../plugins/linux_commands_wildcard_injection` + - :doc:`../plugins/subprocess_without_shell_equals_true` + - :doc:`../plugins/start_process_with_no_shell` + - :doc:`../plugins/start_process_with_partial_path` + - :doc:`../plugins/subprocess_popen_with_shell_equals_true` + + **Config Options:** + + This plugin test shares a configuration with others in the same family, + namely `shell_injection`. This configuration is divided up into three + sections, `subprocess`, `shell` and `no_shell`. They each list Python calls + that spawn subprocesses, invoke commands within a shell, or invoke commands + without a shell (by replacing the calling process) respectively. + + This plugin specifically scans for methods listed in `shell` section. + + .. code-block:: yaml + + shell_injection: + shell: + - os.system + - os.popen + - os.popen2 + - os.popen3 + - os.popen4 + - popen2.popen2 + - popen2.popen3 + - popen2.popen4 + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + - subprocess.getoutput + - subprocess.getstatusoutput + + :Example: + + .. code-block:: none + + >> Issue: Starting a process with a shell: check for injection. + Severity: Low Confidence: Medium + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: examples/os_system.py:3 + 2 + 3 os.system('/bin/echo hi') + + .. seealso:: + + - https://security.openstack.org + - https://docs.python.org/3/library/os.html#os.system + - https://docs.python.org/3/library/subprocess.html#frequently-used-arguments + - https://security.openstack.org/guidelines/dg_use-subprocess-securely.html + - https://cwe.mitre.org/data/definitions/78.html + + .. versionadded:: 0.10.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + if config and context.call_function_name_qual in config["shell"]: + if len(context.call_args) > 0: + sev = _evaluate_shell_call(context) + if sev == bandit.LOW: + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.HIGH, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="Starting a process with a shell: " + "Seems safe, but may be changed in the future, " + "consider rewriting without shell", + ) + else: + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="Starting a process with a shell, possible injection" + " detected, security issue.", + ) + + +@test.takes_config("shell_injection") +@test.checks("Call") +@test.test_id("B606") +def start_process_with_no_shell(context, config): + """**B606: Test for starting a process with no shell** + + Python possesses many mechanisms to invoke an external executable. However, + doing so may present a security issue if appropriate care is not taken to + sanitize any user provided or variable input. + + This plugin test is part of a family of tests built to check for process + spawning and warn appropriately. Specifically, this test looks for the + spawning of a subprocess in a way that doesn't use a shell. Although this + is generally safe, it maybe useful for penetration testing workflows to + track where external system calls are used. As such a LOW severity message + is generated. + + See also: + + - :doc:`../plugins/linux_commands_wildcard_injection` + - :doc:`../plugins/subprocess_without_shell_equals_true` + - :doc:`../plugins/start_process_with_a_shell` + - :doc:`../plugins/start_process_with_partial_path` + - :doc:`../plugins/subprocess_popen_with_shell_equals_true` + + **Config Options:** + + This plugin test shares a configuration with others in the same family, + namely `shell_injection`. This configuration is divided up into three + sections, `subprocess`, `shell` and `no_shell`. They each list Python calls + that spawn subprocesses, invoke commands within a shell, or invoke commands + without a shell (by replacing the calling process) respectively. + + This plugin specifically scans for methods listed in `no_shell` section. + + .. code-block:: yaml + + shell_injection: + no_shell: + - os.execl + - os.execle + - os.execlp + - os.execlpe + - os.execv + - os.execve + - os.execvp + - os.execvpe + - os.spawnl + - os.spawnle + - os.spawnlp + - os.spawnlpe + - os.spawnv + - os.spawnve + - os.spawnvp + - os.spawnvpe + - os.startfile + + :Example: + + .. code-block:: none + + >> Issue: [start_process_with_no_shell] Starting a process without a + shell. + Severity: Low Confidence: Medium + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: examples/os-spawn.py:8 + 7 os.spawnv(mode, path, args) + 8 os.spawnve(mode, path, args, env) + 9 os.spawnvp(mode, file, args) + + .. seealso:: + + - https://security.openstack.org + - https://docs.python.org/3/library/os.html#os.system + - https://docs.python.org/3/library/subprocess.html#frequently-used-arguments + - https://security.openstack.org/guidelines/dg_use-subprocess-securely.html + - https://cwe.mitre.org/data/definitions/78.html + + .. versionadded:: 0.10.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + + if config and context.call_function_name_qual in config["no_shell"]: + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="Starting a process without a shell.", + ) + + +@test.takes_config("shell_injection") +@test.checks("Call") +@test.test_id("B607") +def start_process_with_partial_path(context, config): + """**B607: Test for starting a process with a partial path** + + Python possesses many mechanisms to invoke an external executable. If the + desired executable path is not fully qualified relative to the filesystem + root then this may present a potential security risk. + + In POSIX environments, the `PATH` environment variable is used to specify a + set of standard locations that will be searched for the first matching + named executable. While convenient, this behavior may allow a malicious + actor to exert control over a system. If they are able to adjust the + contents of the `PATH` variable, or manipulate the file system, then a + bogus executable may be discovered in place of the desired one. This + executable will be invoked with the user privileges of the Python process + that spawned it, potentially a highly privileged user. + + This test will scan the parameters of all configured Python methods, + looking for paths that do not start at the filesystem root, that is, do not + have a leading '/' character. + + **Config Options:** + + This plugin test shares a configuration with others in the same family, + namely `shell_injection`. This configuration is divided up into three + sections, `subprocess`, `shell` and `no_shell`. They each list Python calls + that spawn subprocesses, invoke commands within a shell, or invoke commands + without a shell (by replacing the calling process) respectively. + + This test will scan parameters of all methods in all sections. Note that + methods are fully qualified and de-aliased prior to checking. + + .. code-block:: yaml + + shell_injection: + # Start a process using the subprocess module, or one of its + wrappers. + subprocess: + - subprocess.Popen + - subprocess.call + + # Start a process with a function vulnerable to shell injection. + shell: + - os.system + - os.popen + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + # Start a process with a function that is not vulnerable to shell + injection. + no_shell: + - os.execl + - os.execle + + + :Example: + + .. code-block:: none + + >> Issue: Starting a process with a partial executable path + Severity: Low Confidence: High + CWE: CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/partial_path_process.py:3 + 2 from subprocess import Popen as pop + 3 pop('gcc --version', shell=False) + + .. seealso:: + + - https://security.openstack.org + - https://docs.python.org/3/library/os.html#process-management + - https://cwe.mitre.org/data/definitions/78.html + + .. versionadded:: 0.13.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ + + if config and len(context.call_args): + if ( + context.call_function_name_qual in config["subprocess"] + or context.call_function_name_qual in config["shell"] + or context.call_function_name_qual in config["no_shell"] + ): + node = context.node.args[0] + # some calls take an arg list, check the first part + if isinstance(node, ast.List) and node.elts: + node = node.elts[0] + + # make sure the param is a string literal and not a var name + if isinstance(node, ast.Str) and not full_path_match.match(node.s): + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.HIGH, + cwe=issue.Cwe.OS_COMMAND_INJECTION, + text="Starting a process with a partial executable path", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/injection_sql.py b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_sql.py new file mode 100644 index 0000000..bd7aa92 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_sql.py @@ -0,0 +1,143 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============================ +B608: Test for SQL injection +============================ + +An SQL injection attack consists of insertion or "injection" of a SQL query via +the input data given to an application. It is a very common attack vector. This +plugin test looks for strings that resemble SQL statements that are involved in +some form of string building operation. For example: + + - "SELECT %s FROM derp;" % var + - "SELECT thing FROM " + tab + - "SELECT " + val + " FROM " + tab + ... + - "SELECT {} FROM derp;".format(var) + - f"SELECT foo FROM bar WHERE id = {product}" + +Unless care is taken to sanitize and control the input data when building such +SQL statement strings, an injection attack becomes possible. If strings of this +nature are discovered, a LOW confidence issue is reported. In order to boost +result confidence, this plugin test will also check to see if the discovered +string is in use with standard Python DBAPI calls `execute` or `executemany`. +If so, a MEDIUM issue is reported. For example: + + - cursor.execute("SELECT %s FROM derp;" % var) + +Use of str.replace in the string construction can also be dangerous. +For example: + +- "SELECT * FROM foo WHERE id = '[VALUE]'".replace("[VALUE]", identifier) + +However, such cases are always reported with LOW confidence to compensate +for false positives, since valid uses of str.replace can be common. + +:Example: + +.. code-block:: none + + >> Issue: Possible SQL injection vector through string-based query + construction. + Severity: Medium Confidence: Low + CWE: CWE-89 (https://cwe.mitre.org/data/definitions/89.html) + Location: ./examples/sql_statements.py:4 + 3 query = "DELETE FROM foo WHERE id = '%s'" % identifier + 4 query = "UPDATE foo SET value = 'b' WHERE id = '%s'" % identifier + 5 + +.. seealso:: + + - https://www.owasp.org/index.php/SQL_Injection + - https://security.openstack.org/guidelines/dg_parameterize-database-queries.html + - https://cwe.mitre.org/data/definitions/89.html + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.7.3 + CWE information added + +.. versionchanged:: 1.7.7 + Flag when str.replace is used in the string construction + +""" # noqa: E501 +import ast +import re + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test +from bandit.core import utils + +SIMPLE_SQL_RE = re.compile( + r"(select\s.*from\s|" + r"delete\s+from\s|" + r"insert\s+into\s.*values\s|" + r"update\s.*set\s)", + re.IGNORECASE | re.DOTALL, +) + + +def _check_string(data): + return SIMPLE_SQL_RE.search(data) is not None + + +def _evaluate_ast(node): + wrapper = None + statement = "" + str_replace = False + + if isinstance(node._bandit_parent, ast.BinOp): + out = utils.concat_string(node, node._bandit_parent) + wrapper = out[0]._bandit_parent + statement = out[1] + elif isinstance( + node._bandit_parent, ast.Attribute + ) and node._bandit_parent.attr in ("format", "replace"): + statement = node.s + # Hierarchy for "".format() is Wrapper -> Call -> Attribute -> Str + wrapper = node._bandit_parent._bandit_parent._bandit_parent + if node._bandit_parent.attr == "replace": + str_replace = True + elif hasattr(ast, "JoinedStr") and isinstance( + node._bandit_parent, ast.JoinedStr + ): + substrings = [ + child + for child in node._bandit_parent.values + if isinstance(child, ast.Str) + ] + # JoinedStr consists of list of Constant and FormattedValue + # instances. Let's perform one test for the whole string + # and abandon all parts except the first one to raise one + # failed test instead of many for the same SQL statement. + if substrings and node == substrings[0]: + statement = "".join([str(child.s) for child in substrings]) + wrapper = node._bandit_parent._bandit_parent + + if isinstance(wrapper, ast.Call): # wrapped in "execute" call? + names = ["execute", "executemany"] + name = utils.get_called_name(wrapper) + return (name in names, statement, str_replace) + else: + return (False, statement, str_replace) + + +@test.checks("Str") +@test.test_id("B608") +def hardcoded_sql_expressions(context): + execute_call, statement, str_replace = _evaluate_ast(context.node) + if _check_string(statement): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=( + bandit.MEDIUM + if execute_call and not str_replace + else bandit.LOW + ), + cwe=issue.Cwe.SQL_INJECTION, + text="Possible SQL injection vector through string-based " + "query construction.", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/injection_wildcard.py b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_wildcard.py new file mode 100644 index 0000000..46f6b5b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/injection_wildcard.py @@ -0,0 +1,144 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +======================================== +B609: Test for use of wildcard injection +======================================== + +Python provides a number of methods that emulate the behavior of standard Linux +command line utilities. Like their Linux counterparts, these commands may take +a wildcard "\*" character in place of a file system path. This is interpreted +to mean "any and all files or folders" and can be used to build partially +qualified paths, such as "/home/user/\*". + +The use of partially qualified paths may result in unintended consequences if +an unexpected file or symlink is placed into the path location given. This +becomes particularly dangerous when combined with commands used to manipulate +file permissions or copy data off of a system. + +This test plugin looks for usage of the following commands in conjunction with +wild card parameters: + +- 'chown' +- 'chmod' +- 'tar' +- 'rsync' + +As well as any method configured in the shell or subprocess injection test +configurations. + + +**Config Options:** + +This plugin test shares a configuration with others in the same family, namely +`shell_injection`. This configuration is divided up into three sections, +`subprocess`, `shell` and `no_shell`. They each list Python calls that spawn +subprocesses, invoke commands within a shell, or invoke commands without a +shell (by replacing the calling process) respectively. + +This test will scan parameters of all methods in all sections. Note that +methods are fully qualified and de-aliased prior to checking. + + +.. code-block:: yaml + + shell_injection: + # Start a process using the subprocess module, or one of its wrappers. + subprocess: + - subprocess.Popen + - subprocess.call + + # Start a process with a function vulnerable to shell injection. + shell: + - os.system + - os.popen + - popen2.Popen3 + - popen2.Popen4 + - commands.getoutput + - commands.getstatusoutput + # Start a process with a function that is not vulnerable to shell + injection. + no_shell: + - os.execl + - os.execle + + +:Example: + +.. code-block:: none + + >> Issue: Possible wildcard injection in call: subprocess.Popen + Severity: High Confidence: Medium + CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/wildcard-injection.py:8 + 7 o.popen2('/bin/chmod *') + 8 subp.Popen('/bin/chown *', shell=True) + 9 + + >> Issue: subprocess call - check for execution of untrusted input. + Severity: Low Confidence: High + CWE-78 (https://cwe.mitre.org/data/definitions/78.html) + Location: ./examples/wildcard-injection.py:11 + 10 # Not vulnerable to wildcard injection + 11 subp.Popen('/bin/rsync *') + 12 subp.Popen("/bin/chmod *") + + +.. seealso:: + + - https://security.openstack.org + - https://en.wikipedia.org/wiki/Wildcard_character + - https://www.defensecode.com/public/DefenseCode_Unix_WildCards_Gone_Wild.txt + - https://cwe.mitre.org/data/definitions/78.html + +.. versionadded:: 0.9.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test +from bandit.plugins import injection_shell # NOTE(tkelsey): shared config + +gen_config = injection_shell.gen_config + + +@test.takes_config("shell_injection") +@test.checks("Call") +@test.test_id("B609") +def linux_commands_wildcard_injection(context, config): + if not ("shell" in config and "subprocess" in config): + return + + vulnerable_funcs = ["chown", "chmod", "tar", "rsync"] + if context.call_function_name_qual in config["shell"] or ( + context.call_function_name_qual in config["subprocess"] + and context.check_call_arg_value("shell", "True") + ): + if context.call_args_count >= 1: + call_argument = context.get_call_arg_at_position(0) + argument_string = "" + if isinstance(call_argument, list): + for li in call_argument: + argument_string += f" {li}" + elif isinstance(call_argument, str): + argument_string = call_argument + + if argument_string != "": + for vulnerable_func in vulnerable_funcs: + if ( + vulnerable_func in argument_string + and "*" in argument_string + ): + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.IMPROPER_WILDCARD_NEUTRALIZATION, + text="Possible wildcard injection in call: %s" + % context.call_function_name_qual, + lineno=context.get_lineno_for_call_arg("shell"), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/insecure_ssl_tls.py b/.venv/lib/python3.12/site-packages/bandit/plugins/insecure_ssl_tls.py new file mode 100644 index 0000000..319abcf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/insecure_ssl_tls.py @@ -0,0 +1,285 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def get_bad_proto_versions(config): + return config["bad_protocol_versions"] + + +def gen_config(name): + if name == "ssl_with_bad_version": + return { + "bad_protocol_versions": [ + "PROTOCOL_SSLv2", + "SSLv2_METHOD", + "SSLv23_METHOD", + "PROTOCOL_SSLv3", # strict option + "PROTOCOL_TLSv1", # strict option + "SSLv3_METHOD", # strict option + "TLSv1_METHOD", + "PROTOCOL_TLSv1_1", + "TLSv1_1_METHOD", + ] + } # strict option + + +@test.takes_config +@test.checks("Call") +@test.test_id("B502") +def ssl_with_bad_version(context, config): + """**B502: Test for SSL use with bad version used** + + Several highly publicized exploitable flaws have been discovered + in all versions of SSL and early versions of TLS. It is strongly + recommended that use of the following known broken protocol versions be + avoided: + + - SSL v2 + - SSL v3 + - TLS v1 + - TLS v1.1 + + This plugin test scans for calls to Python methods with parameters that + indicate the used broken SSL/TLS protocol versions. Currently, detection + supports methods using Python's native SSL/TLS support and the pyOpenSSL + module. A HIGH severity warning will be reported whenever known broken + protocol versions are detected. + + It is worth noting that native support for TLS 1.2 is only available in + more recent Python versions, specifically 2.7.9 and up, and 3.x + + A note on 'SSLv23': + + Amongst the available SSL/TLS versions provided by Python/pyOpenSSL there + exists the option to use SSLv23. This very poorly named option actually + means "use the highest version of SSL/TLS supported by both the server and + client". This may (and should be) a version well in advance of SSL v2 or + v3. Bandit can scan for the use of SSLv23 if desired, but its detection + does not necessarily indicate a problem. + + When using SSLv23 it is important to also provide flags to explicitly + exclude bad versions of SSL/TLS from the protocol versions considered. Both + the Python native and pyOpenSSL modules provide the ``OP_NO_SSLv2`` and + ``OP_NO_SSLv3`` flags for this purpose. + + **Config Options:** + + .. code-block:: yaml + + ssl_with_bad_version: + bad_protocol_versions: + - PROTOCOL_SSLv2 + - SSLv2_METHOD + - SSLv23_METHOD + - PROTOCOL_SSLv3 # strict option + - PROTOCOL_TLSv1 # strict option + - SSLv3_METHOD # strict option + - TLSv1_METHOD # strict option + + :Example: + + .. code-block:: none + + >> Issue: ssl.wrap_socket call with insecure SSL/TLS protocol version + identified, security issue. + Severity: High Confidence: High + CWE: CWE-327 (https://cwe.mitre.org/data/definitions/327.html) + Location: ./examples/ssl-insecure-version.py:13 + 12 # strict tests + 13 ssl.wrap_socket(ssl_version=ssl.PROTOCOL_SSLv3) + 14 ssl.wrap_socket(ssl_version=ssl.PROTOCOL_TLSv1) + + .. seealso:: + + - :func:`ssl_with_bad_defaults` + - :func:`ssl_with_no_version` + - https://heartbleed.com/ + - https://en.wikipedia.org/wiki/POODLE + - https://security.openstack.org/guidelines/dg_move-data-securely.html + - https://cwe.mitre.org/data/definitions/327.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + .. versionchanged:: 1.7.5 + Added TLS 1.1 + + """ + bad_ssl_versions = get_bad_proto_versions(config) + if context.call_function_name_qual == "ssl.wrap_socket": + if context.check_call_arg_value("ssl_version", bad_ssl_versions): + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.BROKEN_CRYPTO, + text="ssl.wrap_socket call with insecure SSL/TLS protocol " + "version identified, security issue.", + lineno=context.get_lineno_for_call_arg("ssl_version"), + ) + elif context.call_function_name_qual == "pyOpenSSL.SSL.Context": + if context.check_call_arg_value("method", bad_ssl_versions): + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.BROKEN_CRYPTO, + text="SSL.Context call with insecure SSL/TLS protocol " + "version identified, security issue.", + lineno=context.get_lineno_for_call_arg("method"), + ) + + elif ( + context.call_function_name_qual != "ssl.wrap_socket" + and context.call_function_name_qual != "pyOpenSSL.SSL.Context" + ): + if context.check_call_arg_value( + "method", bad_ssl_versions + ) or context.check_call_arg_value("ssl_version", bad_ssl_versions): + lineno = context.get_lineno_for_call_arg( + "method" + ) or context.get_lineno_for_call_arg("ssl_version") + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.BROKEN_CRYPTO, + text="Function call with insecure SSL/TLS protocol " + "identified, possible security issue.", + lineno=lineno, + ) + + +@test.takes_config("ssl_with_bad_version") +@test.checks("FunctionDef") +@test.test_id("B503") +def ssl_with_bad_defaults(context, config): + """**B503: Test for SSL use with bad defaults specified** + + This plugin is part of a family of tests that detect the use of known bad + versions of SSL/TLS, please see :doc:`../plugins/ssl_with_bad_version` for + a complete discussion. Specifically, this plugin test scans for Python + methods with default parameter values that specify the use of broken + SSL/TLS protocol versions. Currently, detection supports methods using + Python's native SSL/TLS support and the pyOpenSSL module. A MEDIUM severity + warning will be reported whenever known broken protocol versions are + detected. + + **Config Options:** + + This test shares the configuration provided for the standard + :doc:`../plugins/ssl_with_bad_version` test, please refer to its + documentation. + + :Example: + + .. code-block:: none + + >> Issue: Function definition identified with insecure SSL/TLS protocol + version by default, possible security issue. + Severity: Medium Confidence: Medium + CWE: CWE-327 (https://cwe.mitre.org/data/definitions/327.html) + Location: ./examples/ssl-insecure-version.py:28 + 27 + 28 def open_ssl_socket(version=SSL.SSLv2_METHOD): + 29 pass + + .. seealso:: + + - :func:`ssl_with_bad_version` + - :func:`ssl_with_no_version` + - https://heartbleed.com/ + - https://en.wikipedia.org/wiki/POODLE + - https://security.openstack.org/guidelines/dg_move-data-securely.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + .. versionchanged:: 1.7.5 + Added TLS 1.1 + + """ + + bad_ssl_versions = get_bad_proto_versions(config) + for default in context.function_def_defaults_qual: + val = default.split(".")[-1] + if val in bad_ssl_versions: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.BROKEN_CRYPTO, + text="Function definition identified with insecure SSL/TLS " + "protocol version by default, possible security " + "issue.", + ) + + +@test.checks("Call") +@test.test_id("B504") +def ssl_with_no_version(context): + """**B504: Test for SSL use with no version specified** + + This plugin is part of a family of tests that detect the use of known bad + versions of SSL/TLS, please see :doc:`../plugins/ssl_with_bad_version` for + a complete discussion. Specifically, This plugin test scans for specific + methods in Python's native SSL/TLS support and the pyOpenSSL module that + configure the version of SSL/TLS protocol to use. These methods are known + to provide default value that maximize compatibility, but permit use of the + aforementioned broken protocol versions. A LOW severity warning will be + reported whenever this is detected. + + **Config Options:** + + This test shares the configuration provided for the standard + :doc:`../plugins/ssl_with_bad_version` test, please refer to its + documentation. + + :Example: + + .. code-block:: none + + >> Issue: ssl.wrap_socket call with no SSL/TLS protocol version + specified, the default SSLv23 could be insecure, possible security + issue. + Severity: Low Confidence: Medium + CWE: CWE-327 (https://cwe.mitre.org/data/definitions/327.html) + Location: ./examples/ssl-insecure-version.py:23 + 22 + 23 ssl.wrap_socket() + 24 + + .. seealso:: + + - :func:`ssl_with_bad_version` + - :func:`ssl_with_bad_defaults` + - https://heartbleed.com/ + - https://en.wikipedia.org/wiki/POODLE + - https://security.openstack.org/guidelines/dg_move-data-securely.html + + .. versionadded:: 0.9.0 + + .. versionchanged:: 1.7.3 + CWE information added + + """ + if context.call_function_name_qual == "ssl.wrap_socket": + if context.check_call_arg_value("ssl_version") is None: + # check_call_arg_value() returns False if the argument is found + # but does not match the supplied value (or the default None). + # It returns None if the arg_name passed doesn't exist. This + # tests for that (ssl_version is not specified). + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.BROKEN_CRYPTO, + text="ssl.wrap_socket call with no SSL/TLS protocol version " + "specified, the default SSLv23 could be insecure, " + "possible security issue.", + lineno=context.get_lineno_for_call_arg("ssl_version"), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/jinja2_templates.py b/.venv/lib/python3.12/site-packages/bandit/plugins/jinja2_templates.py new file mode 100644 index 0000000..3374205 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/jinja2_templates.py @@ -0,0 +1,134 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +========================================== +B701: Test for not auto escaping in jinja2 +========================================== + +Jinja2 is a Python HTML templating system. It is typically used to build web +applications, though appears in other places well, notably the Ansible +automation system. When configuring the Jinja2 environment, the option to use +autoescaping on input can be specified. When autoescaping is enabled, Jinja2 +will filter input strings to escape any HTML content submitted via template +variables. Without escaping HTML input the application becomes vulnerable to +Cross Site Scripting (XSS) attacks. + +Unfortunately, autoescaping is False by default. Thus this plugin test will +warn on omission of an autoescape setting, as well as an explicit setting of +false. A HIGH severity warning is generated in either of these scenarios. + +:Example: + +.. code-block:: none + + >> Issue: Using jinja2 templates with autoescape=False is dangerous and can + lead to XSS. Use autoescape=True to mitigate XSS vulnerabilities. + Severity: High Confidence: High + CWE: CWE-94 (https://cwe.mitre.org/data/definitions/94.html) + Location: ./examples/jinja2_templating.py:11 + 10 templateEnv = jinja2.Environment(autoescape=False, + loader=templateLoader) + 11 Environment(loader=templateLoader, + 12 load=templateLoader, + 13 autoescape=False) + 14 + + >> Issue: By default, jinja2 sets autoescape to False. Consider using + autoescape=True or use the select_autoescape function to mitigate XSS + vulnerabilities. + Severity: High Confidence: High + CWE: CWE-94 (https://cwe.mitre.org/data/definitions/94.html) + Location: ./examples/jinja2_templating.py:15 + 14 + 15 Environment(loader=templateLoader, + 16 load=templateLoader) + 17 + 18 Environment(autoescape=select_autoescape(['html', 'htm', 'xml']), + 19 loader=templateLoader) + + +.. seealso:: + + - `OWASP XSS `__ + - https://realpython.com/primer-on-jinja-templating/ + - https://jinja.palletsprojects.com/en/2.11.x/api/#autoescaping + - https://security.openstack.org/guidelines/dg_cross-site-scripting-xss.html + - https://cwe.mitre.org/data/definitions/94.html + +.. versionadded:: 0.10.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B701") +def jinja2_autoescape_false(context): + # check type just to be safe + if isinstance(context.call_function_name_qual, str): + qualname_list = context.call_function_name_qual.split(".") + func = qualname_list[-1] + if "jinja2" in qualname_list and func == "Environment": + for node in ast.walk(context.node): + if isinstance(node, ast.keyword): + # definite autoescape = False + if getattr(node, "arg", None) == "autoescape" and ( + getattr(node.value, "id", None) == "False" + or getattr(node.value, "value", None) is False + ): + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.CODE_INJECTION, + text="Using jinja2 templates with autoescape=" + "False is dangerous and can lead to XSS. " + "Use autoescape=True or use the " + "select_autoescape function to mitigate XSS " + "vulnerabilities.", + ) + # found autoescape + if getattr(node, "arg", None) == "autoescape": + value = getattr(node, "value", None) + if ( + getattr(value, "id", None) == "True" + or getattr(value, "value", None) is True + ): + return + # Check if select_autoescape function is used. + elif isinstance(value, ast.Call) and ( + getattr(value.func, "attr", None) + == "select_autoescape" + or getattr(value.func, "id", None) + == "select_autoescape" + ): + return + else: + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.CODE_INJECTION, + text="Using jinja2 templates with autoescape=" + "False is dangerous and can lead to XSS. " + "Ensure autoescape=True or use the " + "select_autoescape function to mitigate " + "XSS vulnerabilities.", + ) + # We haven't found a keyword named autoescape, indicating default + # behavior + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.CODE_INJECTION, + text="By default, jinja2 sets autoescape to False. Consider " + "using autoescape=True or use the select_autoescape " + "function to mitigate XSS vulnerabilities.", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/logging_config_insecure_listen.py b/.venv/lib/python3.12/site-packages/bandit/plugins/logging_config_insecure_listen.py new file mode 100644 index 0000000..96815f0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/logging_config_insecure_listen.py @@ -0,0 +1,58 @@ +# Copyright (c) 2022 Rajesh Pangare +# +# SPDX-License-Identifier: Apache-2.0 +r""" +==================================================== +B612: Test for insecure use of logging.config.listen +==================================================== + +This plugin test checks for the unsafe usage of the +``logging.config.listen`` function. The logging.config.listen +function provides the ability to listen for external +configuration files on a socket server. Because portions of the +configuration are passed through eval(), use of this function +may open its users to a security risk. While the function only +binds to a socket on localhost, and so does not accept connections +from remote machines, there are scenarios where untrusted code +could be run under the account of the process which calls listen(). + +logging.config.listen provides the ability to verify bytes received +across the socket with signature verification or encryption/decryption. + +:Example: + +.. code-block:: none + + >> Issue: [B612:logging_config_listen] Use of insecure + logging.config.listen detected. + Severity: Medium Confidence: High + CWE: CWE-94 (https://cwe.mitre.org/data/definitions/94.html) + Location: examples/logging_config_insecure_listen.py:3:4 + 2 + 3 t = logging.config.listen(9999) + +.. seealso:: + + - https://docs.python.org/3/library/logging.config.html#logging.config.listen + +.. versionadded:: 1.7.5 + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B612") +def logging_config_insecure_listen(context): + if ( + context.call_function_name_qual == "logging.config.listen" + and "verify" not in context.call_keywords + ): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.CODE_INJECTION, + text="Use of insecure logging.config.listen detected.", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/mako_templates.py b/.venv/lib/python3.12/site-packages/bandit/plugins/mako_templates.py new file mode 100644 index 0000000..21e8151 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/mako_templates.py @@ -0,0 +1,69 @@ +# +# SPDX-License-Identifier: Apache-2.0 +r""" +==================================== +B702: Test for use of mako templates +==================================== + +Mako is a Python templating system often used to build web applications. It is +the default templating system used in Pylons and Pyramid. Unlike Jinja2 (an +alternative templating system), Mako has no environment wide variable escaping +mechanism. Because of this, all input variables must be carefully escaped +before use to prevent possible vulnerabilities to Cross Site Scripting (XSS) +attacks. + + +:Example: + +.. code-block:: none + + >> Issue: Mako templates allow HTML/JS rendering by default and are + inherently open to XSS attacks. Ensure variables in all templates are + properly sanitized via the 'n', 'h' or 'x' flags (depending on context). + For example, to HTML escape the variable 'data' do ${ data |h }. + Severity: Medium Confidence: High + CWE: CWE-80 (https://cwe.mitre.org/data/definitions/80.html) + Location: ./examples/mako_templating.py:10 + 9 + 10 mako.template.Template("hern") + 11 template.Template("hern") + + +.. seealso:: + + - https://www.makotemplates.org/ + - `OWASP XSS `__ + - https://security.openstack.org/guidelines/dg_cross-site-scripting-xss.html + - https://cwe.mitre.org/data/definitions/80.html + +.. versionadded:: 0.10.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B702") +def use_of_mako_templates(context): + # check type just to be safe + if isinstance(context.call_function_name_qual, str): + qualname_list = context.call_function_name_qual.split(".") + func = qualname_list[-1] + if "mako" in qualname_list and func == "Template": + # unlike Jinja2, mako does not have a template wide autoescape + # feature and thus each variable must be carefully sanitized. + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.BASIC_XSS, + text="Mako templates allow HTML/JS rendering by default and " + "are inherently open to XSS attacks. Ensure variables " + "in all templates are properly sanitized via the 'n', " + "'h' or 'x' flags (depending on context). For example, " + "to HTML escape the variable 'data' do ${ data |h }.", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/markupsafe_markup_xss.py b/.venv/lib/python3.12/site-packages/bandit/plugins/markupsafe_markup_xss.py new file mode 100644 index 0000000..7eae905 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/markupsafe_markup_xss.py @@ -0,0 +1,118 @@ +# Copyright (c) 2025 David Salvisberg +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============================================ +B704: Potential XSS on markupsafe.Markup use +============================================ + +``markupsafe.Markup`` does not perform any escaping, so passing dynamic +content, like f-strings, variables or interpolated strings will potentially +lead to XSS vulnerabilities, especially if that data was submitted by users. + +Instead you should interpolate the resulting ``markupsafe.Markup`` object, +which will perform escaping, or use ``markupsafe.escape``. + + +**Config Options:** + +This plugin allows you to specify additional callable that should be treated +like ``markupsafe.Markup``. By default we recognize ``flask.Markup`` as +an alias, but there are other subclasses or similar classes in the wild +that you may wish to treat the same. + +Additionally there is a whitelist for callable names, whose result may +be safely passed into ``markupsafe.Markup``. This is useful for escape +functions like e.g. ``bleach.clean`` which don't themselves return +``markupsafe.Markup``, so they need to be wrapped. Take care when using +this setting, since incorrect use may introduce false negatives. + +These two options can be set in a shared configuration section +`markupsafe_xss`. + + +.. code-block:: yaml + + markupsafe_xss: + # Recognize additional aliases + extend_markup_names: + - webhelpers.html.literal + - my_package.Markup + + # Allow the output of these functions to pass into Markup + allowed_calls: + - bleach.clean + - my_package.sanitize + + +:Example: + +.. code-block:: none + + >> Issue: [B704:markupsafe_markup_xss] Potential XSS with + ``markupsafe.Markup`` detected. Do not use ``Markup`` + on untrusted data. + Severity: Medium Confidence: High + CWE: CWE-79 (https://cwe.mitre.org/data/definitions/79.html) + Location: ./examples/markupsafe_markup_xss.py:5:0 + 4 content = "" + 5 Markup(f"unsafe {content}") + 6 flask.Markup("unsafe {}".format(content)) + +.. seealso:: + + - https://pypi.org/project/MarkupSafe/ + - https://markupsafe.palletsprojects.com/en/stable/escaping/#markupsafe.Markup + - https://cwe.mitre.org/data/definitions/79.html + +.. versionadded:: 1.8.3 + +""" +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test +from bandit.core.utils import get_call_name + + +def gen_config(name): + if name == "markupsafe_xss": + return { + "extend_markup_names": [], + "allowed_calls": [], + } + + +@test.takes_config("markupsafe_xss") +@test.checks("Call") +@test.test_id("B704") +def markupsafe_markup_xss(context, config): + + qualname = context.call_function_name_qual + if qualname not in ("markupsafe.Markup", "flask.Markup"): + if qualname not in config.get("extend_markup_names", []): + # not a Markup call + return None + + args = context.node.args + if not args or isinstance(args[0], ast.Constant): + # both no arguments and a constant are fine + return None + + allowed_calls = config.get("allowed_calls", []) + if ( + allowed_calls + and isinstance(args[0], ast.Call) + and get_call_name(args[0], context.import_aliases) in allowed_calls + ): + # the argument contains a whitelisted call + return None + + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.XSS, + text=f"Potential XSS with ``{qualname}`` detected. Do " + f"not use ``{context.call_function_name}`` on untrusted data.", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/pytorch_load.py b/.venv/lib/python3.12/site-packages/bandit/plugins/pytorch_load.py new file mode 100644 index 0000000..ef3e49f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/pytorch_load.py @@ -0,0 +1,81 @@ +# Copyright (c) 2024 Stacklok, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +================================== +B614: Test for unsafe PyTorch load +================================== + +This plugin checks for unsafe use of `torch.load`. Using `torch.load` with +untrusted data can lead to arbitrary code execution. There are two safe +alternatives: + +1. Use `torch.load` with `weights_only=True` where only tensor data is + extracted, and no arbitrary Python objects are deserialized +2. Use the `safetensors` library from huggingface, which provides a safe + deserialization mechanism + +With `weights_only=True`, PyTorch enforces a strict type check, ensuring +that only torch.Tensor objects are loaded. + +:Example: + +.. code-block:: none + + >> Issue: Use of unsafe PyTorch load + Severity: Medium Confidence: High + CWE: CWE-94 (https://cwe.mitre.org/data/definitions/94.html) + Location: examples/pytorch_load_save.py:8 + 7 loaded_model.load_state_dict(torch.load('model_weights.pth')) + 8 another_model.load_state_dict(torch.load('model_weights.pth', + map_location='cpu')) + 9 + 10 print("Model loaded successfully!") + +.. seealso:: + + - https://cwe.mitre.org/data/definitions/94.html + - https://pytorch.org/docs/stable/generated/torch.load.html#torch.load + - https://github.com/huggingface/safetensors + +.. versionadded:: 1.7.10 + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B614") +def pytorch_load(context): + """ + This plugin checks for unsafe use of `torch.load`. Using `torch.load` + with untrusted data can lead to arbitrary code execution. The safe + alternative is to use `weights_only=True` or the safetensors library. + """ + imported = context.is_module_imported_exact("torch") + qualname = context.call_function_name_qual + if not imported and isinstance(qualname, str): + return + + qualname_list = qualname.split(".") + func = qualname_list[-1] + if all( + [ + "torch" in qualname_list, + func == "load", + ] + ): + # For torch.load, check if weights_only=True is specified + weights_only = context.get_call_arg_value("weights_only") + if weights_only == "True" or weights_only is True: + return + + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + text="Use of unsafe PyTorch load", + cwe=issue.Cwe.DESERIALIZATION_OF_UNTRUSTED_DATA, + lineno=context.get_lineno_for_call_arg("load"), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/request_without_timeout.py b/.venv/lib/python3.12/site-packages/bandit/plugins/request_without_timeout.py new file mode 100644 index 0000000..c643900 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/request_without_timeout.py @@ -0,0 +1,84 @@ +# SPDX-License-Identifier: Apache-2.0 +r""" +======================================= +B113: Test for missing requests timeout +======================================= + +This plugin test checks for ``requests`` or ``httpx`` calls without a timeout +specified. + +Nearly all production code should use this parameter in nearly all requests, +Failure to do so can cause your program to hang indefinitely. + +When request methods are used without the timeout parameter set, +Bandit will return a MEDIUM severity error. + + +:Example: + +.. code-block:: none + + >> Issue: [B113:request_without_timeout] Call to requests without timeout + Severity: Medium Confidence: Low + CWE: CWE-400 (https://cwe.mitre.org/data/definitions/400.html) + More Info: https://bandit.readthedocs.io/en/latest/plugins/b113_request_without_timeout.html + Location: examples/requests-missing-timeout.py:3:0 + 2 + 3 requests.get('https://gmail.com') + 4 requests.get('https://gmail.com', timeout=None) + + -------------------------------------------------- + >> Issue: [B113:request_without_timeout] Call to requests with timeout set to None + Severity: Medium Confidence: Low + CWE: CWE-400 (https://cwe.mitre.org/data/definitions/400.html) + More Info: https://bandit.readthedocs.io/en/latest/plugins/b113_request_without_timeout.html + Location: examples/requests-missing-timeout.py:4:0 + 3 requests.get('https://gmail.com') + 4 requests.get('https://gmail.com', timeout=None) + 5 requests.get('https://gmail.com', timeout=5) + +.. seealso:: + + - https://requests.readthedocs.io/en/latest/user/advanced/#timeouts + +.. versionadded:: 1.7.5 + +.. versionchanged:: 1.7.10 + Added check for httpx module + +""" # noqa: E501 +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B113") +def request_without_timeout(context): + HTTP_VERBS = {"get", "options", "head", "post", "put", "patch", "delete"} + HTTPX_ATTRS = {"request", "stream", "Client", "AsyncClient"} | HTTP_VERBS + qualname = context.call_function_name_qual.split(".")[0] + + if qualname == "requests" and context.call_function_name in HTTP_VERBS: + # check for missing timeout + if context.check_call_arg_value("timeout") is None: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.LOW, + cwe=issue.Cwe.UNCONTROLLED_RESOURCE_CONSUMPTION, + text=f"Call to {qualname} without timeout", + ) + if ( + qualname == "requests" + and context.call_function_name in HTTP_VERBS + or qualname == "httpx" + and context.call_function_name in HTTPX_ATTRS + ): + # check for timeout=None + if context.check_call_arg_value("timeout", "None"): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.LOW, + cwe=issue.Cwe.UNCONTROLLED_RESOURCE_CONSUMPTION, + text=f"Call to {qualname} with timeout set to None", + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/snmp_security_check.py b/.venv/lib/python3.12/site-packages/bandit/plugins/snmp_security_check.py new file mode 100644 index 0000000..a915ed8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/snmp_security_check.py @@ -0,0 +1,110 @@ +# +# Copyright (c) 2018 SolarWinds, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B508") +def snmp_insecure_version_check(context): + """**B508: Checking for insecure SNMP versions** + + This test is for checking for the usage of insecure SNMP version like + v1, v2c + + Please update your code to use more secure versions of SNMP. + + :Example: + + .. code-block:: none + + >> Issue: [B508:snmp_insecure_version_check] The use of SNMPv1 and + SNMPv2 is insecure. You should use SNMPv3 if able. + Severity: Medium Confidence: High + CWE: CWE-319 (https://cwe.mitre.org/data/definitions/319.html) + Location: examples/snmp.py:4:4 + More Info: https://bandit.readthedocs.io/en/latest/plugins/b508_snmp_insecure_version_check.html + 3 # SHOULD FAIL + 4 a = CommunityData('public', mpModel=0) + 5 # SHOULD FAIL + + .. seealso:: + + - http://snmplabs.com/pysnmp/examples/hlapi/asyncore/sync/manager/cmdgen/snmp-versions.html + - https://cwe.mitre.org/data/definitions/319.html + + .. versionadded:: 1.7.2 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + + if context.call_function_name_qual == "pysnmp.hlapi.CommunityData": + # We called community data. Lets check our args + if context.check_call_arg_value( + "mpModel", 0 + ) or context.check_call_arg_value("mpModel", 1): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.CLEARTEXT_TRANSMISSION, + text="The use of SNMPv1 and SNMPv2 is insecure. " + "You should use SNMPv3 if able.", + lineno=context.get_lineno_for_call_arg("CommunityData"), + ) + + +@test.checks("Call") +@test.test_id("B509") +def snmp_crypto_check(context): + """**B509: Checking for weak cryptography** + + This test is for checking for the usage of insecure SNMP cryptography: + v3 using noAuthNoPriv. + + Please update your code to use more secure versions of SNMP. For example: + + Instead of: + `CommunityData('public', mpModel=0)` + + Use (Defaults to usmHMACMD5AuthProtocol and usmDESPrivProtocol + `UsmUserData("securityName", "authName", "privName")` + + :Example: + + .. code-block:: none + + >> Issue: [B509:snmp_crypto_check] You should not use SNMPv3 without encryption. noAuthNoPriv & authNoPriv is insecure + Severity: Medium CWE: CWE-319 (https://cwe.mitre.org/data/definitions/319.html) Confidence: High + Location: examples/snmp.py:6:11 + More Info: https://bandit.readthedocs.io/en/latest/plugins/b509_snmp_crypto_check.html + 5 # SHOULD FAIL + 6 insecure = UsmUserData("securityName") + 7 # SHOULD FAIL + + .. seealso:: + + - http://snmplabs.com/pysnmp/examples/hlapi/asyncore/sync/manager/cmdgen/snmp-versions.html + - https://cwe.mitre.org/data/definitions/319.html + + .. versionadded:: 1.7.2 + + .. versionchanged:: 1.7.3 + CWE information added + + """ # noqa: E501 + + if context.call_function_name_qual == "pysnmp.hlapi.UsmUserData": + if context.call_args_count < 3: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.CLEARTEXT_TRANSMISSION, + text="You should not use SNMPv3 without encryption. " + "noAuthNoPriv & authNoPriv is insecure", + lineno=context.get_lineno_for_call_arg("UsmUserData"), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/ssh_no_host_key_verification.py b/.venv/lib/python3.12/site-packages/bandit/plugins/ssh_no_host_key_verification.py new file mode 100644 index 0000000..51be2eb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/ssh_no_host_key_verification.py @@ -0,0 +1,76 @@ +# Copyright (c) 2018 VMware, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +========================================== +B507: Test for missing host key validation +========================================== + +Encryption in general is typically critical to the security of many +applications. Using SSH can greatly increase security by guaranteeing the +identity of the party you are communicating with. This is accomplished by one +or both parties presenting trusted host keys during the connection +initialization phase of SSH. + +When paramiko methods are used, host keys are verified by default. If host key +verification is disabled, Bandit will return a HIGH severity error. + +:Example: + +.. code-block:: none + + >> Issue: [B507:ssh_no_host_key_verification] Paramiko call with policy set + to automatically trust the unknown host key. + Severity: High Confidence: Medium + CWE: CWE-295 (https://cwe.mitre.org/data/definitions/295.html) + Location: examples/no_host_key_verification.py:4 + 3 ssh_client = client.SSHClient() + 4 ssh_client.set_missing_host_key_policy(client.AutoAddPolicy) + 5 ssh_client.set_missing_host_key_policy(client.WarningPolicy) + + +.. versionadded:: 1.5.1 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.checks("Call") +@test.test_id("B507") +def ssh_no_host_key_verification(context): + if ( + context.is_module_imported_like("paramiko") + and context.call_function_name == "set_missing_host_key_policy" + and context.node.args + ): + policy_argument = context.node.args[0] + + policy_argument_value = None + if isinstance(policy_argument, ast.Attribute): + policy_argument_value = policy_argument.attr + elif isinstance(policy_argument, ast.Name): + policy_argument_value = policy_argument.id + elif isinstance(policy_argument, ast.Call): + if isinstance(policy_argument.func, ast.Attribute): + policy_argument_value = policy_argument.func.attr + elif isinstance(policy_argument.func, ast.Name): + policy_argument_value = policy_argument.func.id + + if policy_argument_value in ["AutoAddPolicy", "WarningPolicy"]: + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.IMPROPER_CERT_VALIDATION, + text="Paramiko call with policy set to automatically trust " + "the unknown host key.", + lineno=context.get_lineno_for_call_arg( + "set_missing_host_key_policy" + ), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/tarfile_unsafe_members.py b/.venv/lib/python3.12/site-packages/bandit/plugins/tarfile_unsafe_members.py new file mode 100644 index 0000000..5ad145c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/tarfile_unsafe_members.py @@ -0,0 +1,121 @@ +# +# SPDX-License-Identifier: Apache-2.0 +# +r""" +================================= +B202: Test for tarfile.extractall +================================= + +This plugin will look for usage of ``tarfile.extractall()`` + +Severity are set as follows: + +* ``tarfile.extractalll(members=function(tarfile))`` - LOW +* ``tarfile.extractalll(members=?)`` - member is not a function - MEDIUM +* ``tarfile.extractall()`` - members from the archive is trusted - HIGH + +Use ``tarfile.extractall(members=function_name)`` and define a function +that will inspect each member. Discard files that contain a directory +traversal sequences such as ``../`` or ``\..`` along with all special filetypes +unless you explicitly need them. + +:Example: + +.. code-block:: none + + >> Issue: [B202:tarfile_unsafe_members] tarfile.extractall used without + any validation. You should check members and discard dangerous ones + Severity: High Confidence: High + CWE: CWE-22 (https://cwe.mitre.org/data/definitions/22.html) + Location: examples/tarfile_extractall.py:8 + More Info: + https://bandit.readthedocs.io/en/latest/plugins/b202_tarfile_unsafe_members.html + 7 tar = tarfile.open(filename) + 8 tar.extractall(path=tempfile.mkdtemp()) + 9 tar.close() + + +.. seealso:: + + - https://docs.python.org/3/library/tarfile.html#tarfile.TarFile.extractall + - https://docs.python.org/3/library/tarfile.html#tarfile.TarInfo + +.. versionadded:: 1.7.5 + +.. versionchanged:: 1.7.8 + Added check for filter parameter + +""" +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def exec_issue(level, members=""): + if level == bandit.LOW: + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.LOW, + cwe=issue.Cwe.PATH_TRAVERSAL, + text="Usage of tarfile.extractall(members=function(tarfile)). " + "Make sure your function properly discards dangerous members " + "{members}).".format(members=members), + ) + elif level == bandit.MEDIUM: + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.PATH_TRAVERSAL, + text="Found tarfile.extractall(members=?) but couldn't " + "identify the type of members. " + "Check if the members were properly validated " + "{members}).".format(members=members), + ) + else: + return bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.HIGH, + cwe=issue.Cwe.PATH_TRAVERSAL, + text="tarfile.extractall used without any validation. " + "Please check and discard dangerous members.", + ) + + +def get_members_value(context): + for keyword in context.node.keywords: + if keyword.arg == "members": + arg = keyword.value + if isinstance(arg, ast.Call): + return {"Function": arg.func.id} + else: + value = arg.id if isinstance(arg, ast.Name) else arg + return {"Other": value} + + +def is_filter_data(context): + for keyword in context.node.keywords: + if keyword.arg == "filter": + arg = keyword.value + return isinstance(arg, ast.Str) and arg.s == "data" + + +@test.test_id("B202") +@test.checks("Call") +def tarfile_unsafe_members(context): + if all( + [ + context.is_module_imported_exact("tarfile"), + "extractall" in context.call_function_name, + ] + ): + if "filter" in context.call_keywords and is_filter_data(context): + return None + if "members" in context.call_keywords: + members = get_members_value(context) + if "Function" in members: + return exec_issue(bandit.LOW, members) + else: + return exec_issue(bandit.MEDIUM, members) + return exec_issue(bandit.HIGH) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/trojansource.py b/.venv/lib/python3.12/site-packages/bandit/plugins/trojansource.py new file mode 100644 index 0000000..ddf2448 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/trojansource.py @@ -0,0 +1,79 @@ +# +# SPDX-License-Identifier: Apache-2.0 +r""" +===================================================== +B613: TrojanSource - Bidirectional control characters +===================================================== + +This plugin checks for the presence of unicode bidirectional control characters +in Python source files. Those characters can be embedded in comments and strings +to reorder source code characters in a way that changes its logic. + +:Example: + +.. code-block:: none + + >> Issue: [B613:trojansource] A Python source file contains bidirectional control characters ('\u202e'). + Severity: High Confidence: Medium + CWE: CWE-838 (https://cwe.mitre.org/data/definitions/838.html) + More Info: https://bandit.readthedocs.io/en/1.7.5/plugins/b113_trojansource.html + Location: examples/trojansource.py:4:25 + 3 access_level = "user" + 4 if access_level != 'none‮⁦': # Check if admin ⁩⁦' and access_level != 'user + 5 print("You are an admin.\n") + +.. seealso:: + + - https://trojansource.codes/ + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42574 + +.. versionadded:: 1.7.10 + +""" # noqa: E501 +from tokenize import detect_encoding + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +BIDI_CHARACTERS = ( + "\u202a", + "\u202b", + "\u202c", + "\u202d", + "\u202e", + "\u2066", + "\u2067", + "\u2068", + "\u2069", + "\u200f", +) + + +@test.test_id("B613") +@test.checks("File") +def trojansource(context): + with open(context.filename, "rb") as src_file: + encoding, _ = detect_encoding(src_file.readline) + with open(context.filename, encoding=encoding) as src_file: + for lineno, line in enumerate(src_file.readlines(), start=1): + for char in BIDI_CHARACTERS: + try: + col_offset = line.index(char) + 1 + except ValueError: + continue + text = ( + "A Python source file contains bidirectional" + " control characters (%r)." % char + ) + b_issue = bandit.Issue( + severity=bandit.HIGH, + confidence=bandit.MEDIUM, + cwe=issue.Cwe.INAPPROPRIATE_ENCODING_FOR_OUTPUT_CONTEXT, + text=text, + lineno=lineno, + col_offset=col_offset, + ) + b_issue.linerange = [lineno] + return b_issue diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/try_except_continue.py b/.venv/lib/python3.12/site-packages/bandit/plugins/try_except_continue.py new file mode 100644 index 0000000..c2e3ad4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/try_except_continue.py @@ -0,0 +1,108 @@ +# Copyright 2016 IBM Corp. +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +============================================= +B112: Test for a continue in the except block +============================================= + +Errors in Python code bases are typically communicated using ``Exceptions``. +An exception object is 'raised' in the event of an error and can be 'caught' at +a later point in the program, typically some error handling or logging action +will then be performed. + +However, it is possible to catch an exception and silently ignore it while in +a loop. This is illustrated with the following example + +.. code-block:: python + + while keep_going: + try: + do_some_stuff() + except Exception: + continue + +This pattern is considered bad practice in general, but also represents a +potential security issue. A larger than normal volume of errors from a service +can indicate an attempt is being made to disrupt or interfere with it. Thus +errors should, at the very least, be logged. + +There are rare situations where it is desirable to suppress errors, but this is +typically done with specific exception types, rather than the base Exception +class (or no type). To accommodate this, the test may be configured to ignore +'try, except, continue' where the exception is typed. For example, the +following would not generate a warning if the configuration option +``checked_typed_exception`` is set to False: + +.. code-block:: python + + while keep_going: + try: + do_some_stuff() + except ZeroDivisionError: + continue + +**Config Options:** + +.. code-block:: yaml + + try_except_continue: + check_typed_exception: True + + +:Example: + +.. code-block:: none + + >> Issue: Try, Except, Continue detected. + Severity: Low Confidence: High + CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html) + Location: ./examples/try_except_continue.py:5 + 4 a = i + 5 except: + 6 continue + +.. seealso:: + + - https://security.openstack.org + - https://cwe.mitre.org/data/definitions/703.html + +.. versionadded:: 1.0.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def gen_config(name): + if name == "try_except_continue": + return {"check_typed_exception": False} + + +@test.takes_config +@test.checks("ExceptHandler") +@test.test_id("B112") +def try_except_continue(context, config): + node = context.node + if len(node.body) == 1: + if ( + not config["check_typed_exception"] + and node.type is not None + and getattr(node.type, "id", None) != "Exception" + ): + return + + if isinstance(node.body[0], ast.Continue): + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.HIGH, + cwe=issue.Cwe.IMPROPER_CHECK_OF_EXCEPT_COND, + text=("Try, Except, Continue detected."), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/try_except_pass.py b/.venv/lib/python3.12/site-packages/bandit/plugins/try_except_pass.py new file mode 100644 index 0000000..eda0ef8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/try_except_pass.py @@ -0,0 +1,106 @@ +# +# Copyright 2014 Hewlett-Packard Development Company, L.P. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +========================================= +B110: Test for a pass in the except block +========================================= + +Errors in Python code bases are typically communicated using ``Exceptions``. +An exception object is 'raised' in the event of an error and can be 'caught' at +a later point in the program, typically some error handling or logging action +will then be performed. + +However, it is possible to catch an exception and silently ignore it. This is +illustrated with the following example + +.. code-block:: python + + try: + do_some_stuff() + except Exception: + pass + +This pattern is considered bad practice in general, but also represents a +potential security issue. A larger than normal volume of errors from a service +can indicate an attempt is being made to disrupt or interfere with it. Thus +errors should, at the very least, be logged. + +There are rare situations where it is desirable to suppress errors, but this is +typically done with specific exception types, rather than the base Exception +class (or no type). To accommodate this, the test may be configured to ignore +'try, except, pass' where the exception is typed. For example, the following +would not generate a warning if the configuration option +``checked_typed_exception`` is set to False: + +.. code-block:: python + + try: + do_some_stuff() + except ZeroDivisionError: + pass + +**Config Options:** + +.. code-block:: yaml + + try_except_pass: + check_typed_exception: True + + +:Example: + +.. code-block:: none + + >> Issue: Try, Except, Pass detected. + Severity: Low Confidence: High + CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html) + Location: ./examples/try_except_pass.py:4 + 3 a = 1 + 4 except: + 5 pass + +.. seealso:: + + - https://security.openstack.org + - https://cwe.mitre.org/data/definitions/703.html + +.. versionadded:: 0.13.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import ast + +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def gen_config(name): + if name == "try_except_pass": + return {"check_typed_exception": False} + + +@test.takes_config +@test.checks("ExceptHandler") +@test.test_id("B110") +def try_except_pass(context, config): + node = context.node + if len(node.body) == 1: + if ( + not config["check_typed_exception"] + and node.type is not None + and getattr(node.type, "id", None) != "Exception" + ): + return + + if isinstance(node.body[0], ast.Pass): + return bandit.Issue( + severity=bandit.LOW, + confidence=bandit.HIGH, + cwe=issue.Cwe.IMPROPER_CHECK_OF_EXCEPT_COND, + text=("Try, Except, Pass detected."), + ) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/weak_cryptographic_key.py b/.venv/lib/python3.12/site-packages/bandit/plugins/weak_cryptographic_key.py new file mode 100644 index 0000000..da73ced --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/weak_cryptographic_key.py @@ -0,0 +1,165 @@ +# Copyright (c) 2015 VMware, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +========================================= +B505: Test for weak cryptographic key use +========================================= + +As computational power increases, so does the ability to break ciphers with +smaller key lengths. The recommended key length size for RSA and DSA algorithms +is 2048 and higher. 1024 bits and below are now considered breakable. EC key +length sizes are recommended to be 224 and higher with 160 and below considered +breakable. This plugin test checks for use of any key less than those limits +and returns a high severity error if lower than the lower threshold and a +medium severity error for those lower than the higher threshold. + +:Example: + +.. code-block:: none + + >> Issue: DSA key sizes below 1024 bits are considered breakable. + Severity: High Confidence: High + CWE: CWE-326 (https://cwe.mitre.org/data/definitions/326.html) + Location: examples/weak_cryptographic_key_sizes.py:36 + 35 # Also incorrect: without keyword args + 36 dsa.generate_private_key(512, + 37 backends.default_backend()) + 38 rsa.generate_private_key(3, + +.. seealso:: + + - https://csrc.nist.gov/publications/detail/sp/800-131a/rev-2/final + - https://security.openstack.org/guidelines/dg_strong-crypto.html + - https://cwe.mitre.org/data/definitions/326.html + +.. versionadded:: 0.14.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +def gen_config(name): + if name == "weak_cryptographic_key": + return { + "weak_key_size_dsa_high": 1024, + "weak_key_size_dsa_medium": 2048, + "weak_key_size_rsa_high": 1024, + "weak_key_size_rsa_medium": 2048, + "weak_key_size_ec_high": 160, + "weak_key_size_ec_medium": 224, + } + + +def _classify_key_size(config, key_type, key_size): + if isinstance(key_size, str): + # size provided via a variable - can't process it at the moment + return + + key_sizes = { + "DSA": [ + (config["weak_key_size_dsa_high"], bandit.HIGH), + (config["weak_key_size_dsa_medium"], bandit.MEDIUM), + ], + "RSA": [ + (config["weak_key_size_rsa_high"], bandit.HIGH), + (config["weak_key_size_rsa_medium"], bandit.MEDIUM), + ], + "EC": [ + (config["weak_key_size_ec_high"], bandit.HIGH), + (config["weak_key_size_ec_medium"], bandit.MEDIUM), + ], + } + + for size, level in key_sizes[key_type]: + if key_size < size: + return bandit.Issue( + severity=level, + confidence=bandit.HIGH, + cwe=issue.Cwe.INADEQUATE_ENCRYPTION_STRENGTH, + text="%s key sizes below %d bits are considered breakable. " + % (key_type, size), + ) + + +def _weak_crypto_key_size_cryptography_io(context, config): + func_key_type = { + "cryptography.hazmat.primitives.asymmetric.dsa." + "generate_private_key": "DSA", + "cryptography.hazmat.primitives.asymmetric.rsa." + "generate_private_key": "RSA", + "cryptography.hazmat.primitives.asymmetric.ec." + "generate_private_key": "EC", + } + arg_position = { + "DSA": 0, + "RSA": 1, + "EC": 0, + } + key_type = func_key_type.get(context.call_function_name_qual) + if key_type in ["DSA", "RSA"]: + key_size = ( + context.get_call_arg_value("key_size") + or context.get_call_arg_at_position(arg_position[key_type]) + or 2048 + ) + return _classify_key_size(config, key_type, key_size) + elif key_type == "EC": + curve_key_sizes = { + "SECT571K1": 571, + "SECT571R1": 570, + "SECP521R1": 521, + "BrainpoolP512R1": 512, + "SECT409K1": 409, + "SECT409R1": 409, + "BrainpoolP384R1": 384, + "SECP384R1": 384, + "SECT283K1": 283, + "SECT283R1": 283, + "BrainpoolP256R1": 256, + "SECP256K1": 256, + "SECP256R1": 256, + "SECT233K1": 233, + "SECT233R1": 233, + "SECP224R1": 224, + "SECP192R1": 192, + "SECT163K1": 163, + "SECT163R2": 163, + } + curve = context.get_call_arg_value("curve") or ( + len(context.call_args) > arg_position[key_type] + and context.call_args[arg_position[key_type]] + ) + key_size = curve_key_sizes[curve] if curve in curve_key_sizes else 224 + return _classify_key_size(config, key_type, key_size) + + +def _weak_crypto_key_size_pycrypto(context, config): + func_key_type = { + "Crypto.PublicKey.DSA.generate": "DSA", + "Crypto.PublicKey.RSA.generate": "RSA", + "Cryptodome.PublicKey.DSA.generate": "DSA", + "Cryptodome.PublicKey.RSA.generate": "RSA", + } + key_type = func_key_type.get(context.call_function_name_qual) + if key_type: + key_size = ( + context.get_call_arg_value("bits") + or context.get_call_arg_at_position(0) + or 2048 + ) + return _classify_key_size(config, key_type, key_size) + + +@test.takes_config +@test.checks("Call") +@test.test_id("B505") +def weak_cryptographic_key(context, config): + return _weak_crypto_key_size_cryptography_io( + context, config + ) or _weak_crypto_key_size_pycrypto(context, config) diff --git a/.venv/lib/python3.12/site-packages/bandit/plugins/yaml_load.py b/.venv/lib/python3.12/site-packages/bandit/plugins/yaml_load.py new file mode 100644 index 0000000..2304c1d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/bandit/plugins/yaml_load.py @@ -0,0 +1,76 @@ +# +# Copyright (c) 2016 Rackspace, Inc. +# +# SPDX-License-Identifier: Apache-2.0 +r""" +=============================== +B506: Test for use of yaml load +=============================== + +This plugin test checks for the unsafe usage of the ``yaml.load`` function from +the PyYAML package. The yaml.load function provides the ability to construct +an arbitrary Python object, which may be dangerous if you receive a YAML +document from an untrusted source. The function yaml.safe_load limits this +ability to simple Python objects like integers or lists. + +Please see +https://pyyaml.org/wiki/PyYAMLDocumentation#LoadingYAML for more information +on ``yaml.load`` and yaml.safe_load + +:Example: + +.. code-block:: none + + >> Issue: [yaml_load] Use of unsafe yaml load. Allows instantiation of + arbitrary objects. Consider yaml.safe_load(). + Severity: Medium Confidence: High + CWE: CWE-20 (https://cwe.mitre.org/data/definitions/20.html) + Location: examples/yaml_load.py:5 + 4 ystr = yaml.dump({'a' : 1, 'b' : 2, 'c' : 3}) + 5 y = yaml.load(ystr) + 6 yaml.dump(y) + +.. seealso:: + + - https://pyyaml.org/wiki/PyYAMLDocumentation#LoadingYAML + - https://cwe.mitre.org/data/definitions/20.html + +.. versionadded:: 1.0.0 + +.. versionchanged:: 1.7.3 + CWE information added + +""" +import bandit +from bandit.core import issue +from bandit.core import test_properties as test + + +@test.test_id("B506") +@test.checks("Call") +def yaml_load(context): + imported = context.is_module_imported_exact("yaml") + qualname = context.call_function_name_qual + if not imported and isinstance(qualname, str): + return + + qualname_list = qualname.split(".") + func = qualname_list[-1] + if all( + [ + "yaml" in qualname_list, + func == "load", + not context.check_call_arg_value("Loader", "SafeLoader"), + not context.check_call_arg_value("Loader", "CSafeLoader"), + not context.get_call_arg_at_position(1) == "SafeLoader", + not context.get_call_arg_at_position(1) == "CSafeLoader", + ] + ): + return bandit.Issue( + severity=bandit.MEDIUM, + confidence=bandit.HIGH, + cwe=issue.Cwe.IMPROPER_INPUT_VALIDATION, + text="Use of unsafe yaml load. Allows instantiation of" + " arbitrary objects. Consider yaml.safe_load().", + lineno=context.node.lineno, + ) diff --git a/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/LICENSE new file mode 100644 index 0000000..648ba98 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/LICENSE @@ -0,0 +1,35 @@ +Copyright (c) 2004-2016 California Institute of Technology. +Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +All rights reserved. + +This software is available subject to the conditions and terms laid +out below. By downloading and using this software you are agreeing +to the following conditions. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the names of the copyright holders nor the names of any of + the contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/METADATA b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/METADATA new file mode 100644 index 0000000..6c3e255 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/METADATA @@ -0,0 +1,281 @@ +Metadata-Version: 2.1 +Name: dill +Version: 0.4.0 +Summary: serialize all of Python +Home-page: https://github.com/uqfoundation/dill +Download-URL: https://pypi.org/project/dill/#files +Author: Mike McKerns +Author-email: mmckerns@uqfoundation.org +Maintainer: Mike McKerns +Maintainer-email: mmckerns@uqfoundation.org +License: BSD-3-Clause +Project-URL: Documentation, http://dill.rtfd.io +Project-URL: Source Code, https://github.com/uqfoundation/dill +Project-URL: Bug Tracker, https://github.com/uqfoundation/dill/issues +Platform: Linux +Platform: Windows +Platform: Mac +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: Science/Research +Classifier: License :: OSI Approved :: BSD License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Scientific/Engineering +Classifier: Topic :: Software Development +Requires-Python: >=3.8 +License-File: LICENSE +Provides-Extra: graph +Requires-Dist: objgraph >=1.7.2 ; extra == 'graph' +Provides-Extra: profile +Requires-Dist: gprof2dot >=2022.7.29 ; extra == 'profile' +Provides-Extra: readline + +----------------------------- +dill: serialize all of Python +----------------------------- + +About Dill +========== + +``dill`` extends Python's ``pickle`` module for serializing and de-serializing +Python objects to the majority of the built-in Python types. Serialization +is the process of converting an object to a byte stream, and the inverse +of which is converting a byte stream back to a Python object hierarchy. + +``dill`` provides the user the same interface as the ``pickle`` module, and +also includes some additional features. In addition to pickling Python +objects, ``dill`` provides the ability to save the state of an interpreter +session in a single command. Hence, it would be feasible to save an +interpreter session, close the interpreter, ship the pickled file to +another computer, open a new interpreter, unpickle the session and +thus continue from the 'saved' state of the original interpreter +session. + +``dill`` can be used to store Python objects to a file, but the primary +usage is to send Python objects across the network as a byte stream. +``dill`` is quite flexible, and allows arbitrary user defined classes +and functions to be serialized. Thus ``dill`` is not intended to be +secure against erroneously or maliciously constructed data. It is +left to the user to decide whether the data they unpickle is from +a trustworthy source. + +``dill`` is part of ``pathos``, a Python framework for heterogeneous computing. +``dill`` is in active development, so any user feedback, bug reports, comments, +or suggestions are highly appreciated. A list of issues is located at +https://github.com/uqfoundation/dill/issues, with a legacy list maintained at +https://uqfoundation.github.io/project/pathos/query. + + +Major Features +============== + +``dill`` can pickle the following standard types: + + - none, type, bool, int, float, complex, bytes, str, + - tuple, list, dict, file, buffer, builtin, + - Python classes, namedtuples, dataclasses, metaclasses, + - instances of classes, + - set, frozenset, array, functions, exceptions + +``dill`` can also pickle more 'exotic' standard types: + + - functions with yields, nested functions, lambdas, + - cell, method, unboundmethod, module, code, methodwrapper, + - methoddescriptor, getsetdescriptor, memberdescriptor, wrapperdescriptor, + - dictproxy, slice, notimplemented, ellipsis, quit + +``dill`` cannot yet pickle these standard types: + + - frame, generator, traceback + +``dill`` also provides the capability to: + + - save and load Python interpreter sessions + - save and extract the source code from functions and classes + - interactively diagnose pickling errors + + +Current Release +=============== + +The latest released version of ``dill`` is available from: + + https://pypi.org/project/dill + +``dill`` is distributed under a 3-clause BSD license. + + +Development Version +=================== + +You can get the latest development version with all the shiny new features at: + + https://github.com/uqfoundation + +If you have a new contribution, please submit a pull request. + + +Installation +============ + +``dill`` can be installed with ``pip``:: + + $ pip install dill + +To optionally include the ``objgraph`` diagnostic tool in the install:: + + $ pip install dill[graph] + +To optionally include the ``gprof2dot`` diagnostic tool in the install:: + + $ pip install dill[profile] + +For windows users, to optionally install session history tools:: + + $ pip install dill[readline] + + +Requirements +============ + +``dill`` requires: + + - ``python`` (or ``pypy``), **>=3.8** + - ``setuptools``, **>=42** + +Optional requirements: + + - ``objgraph``, **>=1.7.2** + - ``gprof2dot``, **>=2022.7.29** + - ``pyreadline``, **>=1.7.1** (on windows) + + +Basic Usage +=========== + +``dill`` is a drop-in replacement for ``pickle``. Existing code can be +updated to allow complete pickling using:: + + >>> import dill as pickle + +or:: + + >>> from dill import dumps, loads + +``dumps`` converts the object to a unique byte string, and ``loads`` performs +the inverse operation:: + + >>> squared = lambda x: x**2 + >>> loads(dumps(squared))(3) + 9 + +There are a number of options to control serialization which are provided +as keyword arguments to several ``dill`` functions: + +* with *protocol*, the pickle protocol level can be set. This uses the + same value as the ``pickle`` module, *DEFAULT_PROTOCOL*. +* with *byref=True*, ``dill`` to behave a lot more like pickle with + certain objects (like modules) pickled by reference as opposed to + attempting to pickle the object itself. +* with *recurse=True*, objects referred to in the global dictionary are + recursively traced and pickled, instead of the default behavior of + attempting to store the entire global dictionary. +* with *fmode*, the contents of the file can be pickled along with the file + handle, which is useful if the object is being sent over the wire to a + remote system which does not have the original file on disk. Options are + *HANDLE_FMODE* for just the handle, *CONTENTS_FMODE* for the file content + and *FILE_FMODE* for content and handle. +* with *ignore=False*, objects reconstructed with types defined in the + top-level script environment use the existing type in the environment + rather than a possibly different reconstructed type. + +The default serialization can also be set globally in *dill.settings*. +Thus, we can modify how ``dill`` handles references to the global dictionary +locally or globally:: + + >>> import dill.settings + >>> dumps(absolute) == dumps(absolute, recurse=True) + False + >>> dill.settings['recurse'] = True + >>> dumps(absolute) == dumps(absolute, recurse=True) + True + +``dill`` also includes source code inspection, as an alternate to pickling:: + + >>> import dill.source + >>> print(dill.source.getsource(squared)) + squared = lambda x:x**2 + +To aid in debugging pickling issues, use *dill.detect* which provides +tools like pickle tracing:: + + >>> import dill.detect + >>> with dill.detect.trace(): + >>> dumps(squared) + ┬ F1: at 0x7fe074f8c280> + ├┬ F2: + │└ # F2 [34 B] + ├┬ Co: at 0x7fe07501eb30, file "", line 1> + │├┬ F2: + ││└ # F2 [19 B] + │└ # Co [87 B] + ├┬ D1: + │└ # D1 [22 B] + ├┬ D2: + │└ # D2 [2 B] + ├┬ D2: + │├┬ D2: + ││└ # D2 [2 B] + │└ # D2 [23 B] + └ # F1 [180 B] + +With trace, we see how ``dill`` stored the lambda (``F1``) by first storing +``_create_function``, the underlying code object (``Co``) and ``_create_code`` +(which is used to handle code objects), then we handle the reference to +the global dict (``D2``) plus other dictionaries (``D1`` and ``D2``) that +save the lambda object's state. A ``#`` marks when the object is actually stored. + + +More Information +================ + +Probably the best way to get started is to look at the documentation at +http://dill.rtfd.io. Also see ``dill.tests`` for a set of scripts that +demonstrate how ``dill`` can serialize different Python objects. You can +run the test suite with ``python -m dill.tests``. The contents of any +pickle file can be examined with ``undill``. As ``dill`` conforms to +the ``pickle`` interface, the examples and documentation found at +http://docs.python.org/library/pickle.html also apply to ``dill`` +if one will ``import dill as pickle``. The source code is also generally +well documented, so further questions may be resolved by inspecting the +code itself. Please feel free to submit a ticket on github, or ask a +question on stackoverflow (**@Mike McKerns**). +If you would like to share how you use ``dill`` in your work, please send +an email (to **mmckerns at uqfoundation dot org**). + + +Citation +======== + +If you use ``dill`` to do research that leads to publication, we ask that you +acknowledge use of ``dill`` by citing the following in your publication:: + + M.M. McKerns, L. Strand, T. Sullivan, A. Fang, M.A.G. Aivazis, + "Building a framework for predictive science", Proceedings of + the 10th Python in Science Conference, 2011; + http://arxiv.org/pdf/1202.1056 + + Michael McKerns and Michael Aivazis, + "pathos: a framework for heterogeneous computing", 2010- ; + https://uqfoundation.github.io/project/pathos + +Please see https://uqfoundation.github.io/project/pathos or +http://arxiv.org/pdf/1202.1056 for further information. diff --git a/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/RECORD b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/RECORD new file mode 100644 index 0000000..d8053fb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/RECORD @@ -0,0 +1,101 @@ +../../../bin/get_gprof,sha256=Yg8jY3VzDUd11vvnRenhtt2gD8iRbNy3dQzZKQpSgRs,2498 +../../../bin/get_objgraph,sha256=1L-Ow0sg2VtMN-1CZyE8JlWeFG4eifXL9jBvXD7q_Qo,1692 +../../../bin/undill,sha256=Hy897uUGMRgQBLKpToJAs69Q3UZBHwh6B6MBA1p-9Wk,628 +dill-0.4.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +dill-0.4.0.dist-info/LICENSE,sha256=mYpIzbuubSrNbyOVUajkpFDpZ-udj9jiQsNOnmTkDiY,1790 +dill-0.4.0.dist-info/METADATA,sha256=Zzr1eKtuTvrriL-H_4DmN7fxjB9tENzGRz0DwAI7u5Q,10174 +dill-0.4.0.dist-info/RECORD,, +dill-0.4.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92 +dill-0.4.0.dist-info/top_level.txt,sha256=HLSIyYIjQzJiBvs3_-16ntezE3j6mWGTW0DT1xDd7X0,5 +dill/__diff.py,sha256=yLCKcd0GkDxR86wdE0SG2qw5Yxhon6qHeOeI1li8Vrc,7146 +dill/__info__.py,sha256=sD2tcjIAuRmMAIqBtF4-JWK7VTCIoQx3axUNBQb-qPw,10756 +dill/__init__.py,sha256=u5X9cMJo3zAtpGN4MUATU71s5wNvnIbXsZXi29DyvXE,3798 +dill/__pycache__/__diff.cpython-312.pyc,, +dill/__pycache__/__info__.cpython-312.pyc,, +dill/__pycache__/__init__.cpython-312.pyc,, +dill/__pycache__/_dill.cpython-312.pyc,, +dill/__pycache__/_objects.cpython-312.pyc,, +dill/__pycache__/_shims.cpython-312.pyc,, +dill/__pycache__/detect.cpython-312.pyc,, +dill/__pycache__/logger.cpython-312.pyc,, +dill/__pycache__/objtypes.cpython-312.pyc,, +dill/__pycache__/pointers.cpython-312.pyc,, +dill/__pycache__/session.cpython-312.pyc,, +dill/__pycache__/settings.cpython-312.pyc,, +dill/__pycache__/source.cpython-312.pyc,, +dill/__pycache__/temp.cpython-312.pyc,, +dill/_dill.py,sha256=DX51DqW1DXL_5VdZ-zF5w9avxiVOsNh6cNwMkd39Fwo,91313 +dill/_objects.py,sha256=wPETr0_Gtj__cFAIEO6FRSC_vpBYexmlDiHl_d8geJU,19740 +dill/_shims.py,sha256=mGN22u7TeK-keDvhGvWZVvCm-GW0TY04MXW-Hncbh7c,6635 +dill/detect.py,sha256=L0eWBEVzqMV6nf8gd5R4G-cytzJEjBNTKAlsVVkJRlY,11207 +dill/logger.py,sha256=WNX59lxDHuZnSMKZ294i0uCDTmbneWPLu79Be7mOa-Q,11143 +dill/objtypes.py,sha256=NvSqfHX6AY2-QOVUv0hEda_GEcx_uiuGPQvILJu8TyY,736 +dill/pointers.py,sha256=Q8AYqhdcvdq9X4HZ46lihM2bnZqGZG2vVoGpRxTHRNE,4467 +dill/session.py,sha256=qc41kfzXT9MIx1KGSEIVbUsDKBHErhptpeQzwcGspkU,23541 +dill/settings.py,sha256=hmtpAbplWE-HHxRHLPEkOxpEqWoCMTMn_FRa-1seao4,630 +dill/source.py,sha256=aaK9d3J7yNQuVw15ESRXxVqE8DxYHf1TfSOBEQYcZmU,45507 +dill/temp.py,sha256=QhkBKO5eNsEwSHdhiw5nCzALchAsl1yWQ1apZlVXY7w,8027 +dill/tests/__init__.py,sha256=5z3npvfFh6Xw5xa8ML-AQk3PDyTc3MIngJlUVVf35vk,479 +dill/tests/__main__.py,sha256=i9A86Q2NGoEhO-080sgnv2-TXxTRoH-gN2RTaPvpGvA,899 +dill/tests/__pycache__/__init__.cpython-312.pyc,, +dill/tests/__pycache__/__main__.cpython-312.pyc,, +dill/tests/__pycache__/test_abc.cpython-312.pyc,, +dill/tests/__pycache__/test_check.cpython-312.pyc,, +dill/tests/__pycache__/test_classdef.cpython-312.pyc,, +dill/tests/__pycache__/test_dataclasses.cpython-312.pyc,, +dill/tests/__pycache__/test_detect.cpython-312.pyc,, +dill/tests/__pycache__/test_dictviews.cpython-312.pyc,, +dill/tests/__pycache__/test_diff.cpython-312.pyc,, +dill/tests/__pycache__/test_extendpickle.cpython-312.pyc,, +dill/tests/__pycache__/test_fglobals.cpython-312.pyc,, +dill/tests/__pycache__/test_file.cpython-312.pyc,, +dill/tests/__pycache__/test_functions.cpython-312.pyc,, +dill/tests/__pycache__/test_functors.cpython-312.pyc,, +dill/tests/__pycache__/test_logger.cpython-312.pyc,, +dill/tests/__pycache__/test_mixins.cpython-312.pyc,, +dill/tests/__pycache__/test_module.cpython-312.pyc,, +dill/tests/__pycache__/test_moduledict.cpython-312.pyc,, +dill/tests/__pycache__/test_nested.cpython-312.pyc,, +dill/tests/__pycache__/test_objects.cpython-312.pyc,, +dill/tests/__pycache__/test_properties.cpython-312.pyc,, +dill/tests/__pycache__/test_pycapsule.cpython-312.pyc,, +dill/tests/__pycache__/test_recursive.cpython-312.pyc,, +dill/tests/__pycache__/test_registered.cpython-312.pyc,, +dill/tests/__pycache__/test_restricted.cpython-312.pyc,, +dill/tests/__pycache__/test_selected.cpython-312.pyc,, +dill/tests/__pycache__/test_session.cpython-312.pyc,, +dill/tests/__pycache__/test_source.cpython-312.pyc,, +dill/tests/__pycache__/test_sources.cpython-312.pyc,, +dill/tests/__pycache__/test_temp.cpython-312.pyc,, +dill/tests/__pycache__/test_threads.cpython-312.pyc,, +dill/tests/__pycache__/test_weakref.cpython-312.pyc,, +dill/tests/test_abc.py,sha256=OT50obWxTiqk2eZLrbfHGPU9_Wr30wFTQ1Z8CfsdClU,4227 +dill/tests/test_check.py,sha256=OT6iu8R1BzZFQdiR3YgPoKKV7KJ2AYLJP62zTgsThdo,1396 +dill/tests/test_classdef.py,sha256=M3zzqKruuqIFTZDUqKYbjMtJmVkI59N0DxWZe019-qM,8600 +dill/tests/test_dataclasses.py,sha256=MPkDH5pfvYlYbwlGm-uFMN7svhPUImqKUYpROWO_Wak,890 +dill/tests/test_detect.py,sha256=wjgVFO8UMDLaM7A1cu1bQNXgYQCOpLGYqMYxID5CNsk,4144 +dill/tests/test_dictviews.py,sha256=qPAuqmp1yApPsARB6EKjmIWIAigK6P0L2Q68my02D-I,1337 +dill/tests/test_diff.py,sha256=TXCpiSPVTwEVR9-cs_sr_MYP9T7R2Pw2N2PAvnOvWFI,2667 +dill/tests/test_extendpickle.py,sha256=mcnPB0_YIqx6Ct678LUzWER1FRA1kVSRxE6PKhaN2oQ,1315 +dill/tests/test_fglobals.py,sha256=tbdBdLzW_7rx5mR-BzeThzEhH0KbtDZfAazLBYC_h94,1676 +dill/tests/test_file.py,sha256=XjW_EFSPsH7udEijchzef-OunBiJGJ-ieLRm8Vcai4Q,13578 +dill/tests/test_functions.py,sha256=AVBbHCDffw4Jca3Kijjae4rQfX0ZFTgurUjPeP2qqoM,4267 +dill/tests/test_functors.py,sha256=GSHR6UGBuiq0iUk4mk04Ly9ohSVdt9fBCrEYwByzSxk,930 +dill/tests/test_logger.py,sha256=PiZHr3bGIh6rW_Rx3uAQlVl5oFl-n2BQjXkpPzbmjng,2385 +dill/tests/test_mixins.py,sha256=GHO-GXeYvWzZeysJnsIDR8sTj_RADBs0-z23r_SfoNA,4007 +dill/tests/test_module.py,sha256=BOJ1mU4qaK680gEERfFXAIElTTuOg1nY4Ne26UhcpvU,1943 +dill/tests/test_moduledict.py,sha256=SlosX5tkmdfGLuhYweASu-WKIsrgphXrEm20veZmFJc,1182 +dill/tests/test_nested.py,sha256=dLgI3ZKWWAyZxXfTF131EHtph8yTS-e9Wqb8Mj3HA6A,3146 +dill/tests/test_objects.py,sha256=QyYSMiBZDyjhsGwDkdUeJH65rHODQMrLFajy-fUqzLI,1931 +dill/tests/test_properties.py,sha256=PinOM_C2Fzfj_3FlQm8OdjAmJ8WQ38nHWKkfHI4rCeA,1346 +dill/tests/test_pycapsule.py,sha256=XgT8VQZAAY3q7oV3N8726PnqU4GjuxSoT_FuFsoNsso,1417 +dill/tests/test_recursive.py,sha256=Bq2Q--Ro3Mb4CppYm5K5v0__5mGcFvSEjzmZOC81C64,4182 +dill/tests/test_registered.py,sha256=jgUBl_msBiqQTgvCC1bwKTGK-jmAz2FSE4pcJgEDRBw,1573 +dill/tests/test_restricted.py,sha256=mk93WLtNAEQr03h4N-NZO7Wr9xPWvzgMPOPEdi4Aku4,783 +dill/tests/test_selected.py,sha256=LjhZNntQ9KDJf9lhEYTHqzbFpsoeEFK2wobO1JT0FRg,3258 +dill/tests/test_session.py,sha256=-xmj46QxC60MaRIljv2eVrqIQYZrIcL54PsPaTLpoXc,10161 +dill/tests/test_source.py,sha256=EOTG_Fh0cWlICTRq04KH0Y5_G9BgGigkAOhr3CD1-dk,7059 +dill/tests/test_sources.py,sha256=sQXVRsv_u9i1kTyJYRtX_Ykb3TgaPrQ3sI2az8bNxQQ,8672 +dill/tests/test_temp.py,sha256=8NvuImVkYM1dw-j_nhaeDAb8Oan9whCOoehXktqurtw,2619 +dill/tests/test_threads.py,sha256=PD8RVdtu_kCkM7AVV8a81ywVWRi1g3GyDRocx04ZRFg,1257 +dill/tests/test_weakref.py,sha256=TfQHVMqgzeBywBiTjHj6ep8E6GF90y5SFzLgWbRbc2Q,1602 diff --git a/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/WHEEL new file mode 100644 index 0000000..bab98d6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.43.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/top_level.txt new file mode 100644 index 0000000..85eea70 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill-0.4.0.dist-info/top_level.txt @@ -0,0 +1 @@ +dill diff --git a/.venv/lib/python3.12/site-packages/dill/__diff.py b/.venv/lib/python3.12/site-packages/dill/__diff.py new file mode 100644 index 0000000..63e8182 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/__diff.py @@ -0,0 +1,234 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +""" +Module to show if an object has changed since it was memorised +""" + +import builtins +import os +import sys +import types +try: + import numpy.ma + HAS_NUMPY = True +except ImportError: + HAS_NUMPY = False + +# pypy doesn't use reference counting +getrefcount = getattr(sys, 'getrefcount', lambda x:0) + +# memo of objects indexed by id to a tuple (attributes, sequence items) +# attributes is a dict indexed by attribute name to attribute id +# sequence items is either a list of ids, of a dictionary of keys to ids +memo = {} +id_to_obj = {} +# types that cannot have changing attributes +builtins_types = set((str, list, dict, set, frozenset, int)) +dont_memo = set(id(i) for i in (memo, sys.modules, sys.path_importer_cache, + os.environ, id_to_obj)) + + +def get_attrs(obj): + """ + Gets all the attributes of an object though its __dict__ or return None + """ + if type(obj) in builtins_types \ + or type(obj) is type and obj in builtins_types: + return + return getattr(obj, '__dict__', None) + + +def get_seq(obj, cache={str: False, frozenset: False, list: True, set: True, + dict: True, tuple: True, type: False, + types.ModuleType: False, types.FunctionType: False, + types.BuiltinFunctionType: False}): + """ + Gets all the items in a sequence or return None + """ + try: + o_type = obj.__class__ + except AttributeError: + o_type = type(obj) + hsattr = hasattr + if o_type in cache: + if cache[o_type]: + if hsattr(obj, "copy"): + return obj.copy() + return obj + elif HAS_NUMPY and o_type in (numpy.ndarray, numpy.ma.core.MaskedConstant): + if obj.shape and obj.size: + return obj + else: + return [] + elif hsattr(obj, "__contains__") and hsattr(obj, "__iter__") \ + and hsattr(obj, "__len__") and hsattr(o_type, "__contains__") \ + and hsattr(o_type, "__iter__") and hsattr(o_type, "__len__"): + cache[o_type] = True + if hsattr(obj, "copy"): + return obj.copy() + return obj + else: + cache[o_type] = False + return None + + +def memorise(obj, force=False): + """ + Adds an object to the memo, and recursively adds all the objects + attributes, and if it is a container, its items. Use force=True to update + an object already in the memo. Updating is not recursively done. + """ + obj_id = id(obj) + if obj_id in memo and not force or obj_id in dont_memo: + return + id_ = id + g = get_attrs(obj) + if g is None: + attrs_id = None + else: + attrs_id = dict((key,id_(value)) for key, value in g.items()) + + s = get_seq(obj) + if s is None: + seq_id = None + elif hasattr(s, "items"): + seq_id = dict((id_(key),id_(value)) for key, value in s.items()) + elif not hasattr(s, "__len__"): #XXX: avoid TypeError from unexpected case + seq_id = None + else: + seq_id = [id_(i) for i in s] + + memo[obj_id] = attrs_id, seq_id + id_to_obj[obj_id] = obj + mem = memorise + if g is not None: + [mem(value) for key, value in g.items()] + + if s is not None: + if hasattr(s, "items"): + [(mem(key), mem(item)) + for key, item in s.items()] + else: + if hasattr(s, '__len__'): + [mem(item) for item in s] + else: mem(s) + + +def release_gone(): + itop, mp, src = id_to_obj.pop, memo.pop, getrefcount + [(itop(id_), mp(id_)) for id_, obj in list(id_to_obj.items()) + if src(obj) < 4] #XXX: correct for pypy? + + +def whats_changed(obj, seen=None, simple=False, first=True): + """ + Check an object against the memo. Returns a list in the form + (attribute changes, container changed). Attribute changes is a dict of + attribute name to attribute value. container changed is a boolean. + If simple is true, just returns a boolean. None for either item means + that it has not been checked yet + """ + # Special cases + if first: + # ignore the _ variable, which only appears in interactive sessions + if "_" in builtins.__dict__: + del builtins._ + if seen is None: + seen = {} + + obj_id = id(obj) + + if obj_id in seen: + if simple: + return any(seen[obj_id]) + return seen[obj_id] + + # Safety checks + if obj_id in dont_memo: + seen[obj_id] = [{}, False] + if simple: + return False + return seen[obj_id] + elif obj_id not in memo: + if simple: + return True + else: + raise RuntimeError("Object not memorised " + str(obj)) + + seen[obj_id] = ({}, False) + + chngd = whats_changed + id_ = id + + # compare attributes + attrs = get_attrs(obj) + if attrs is None: + changed = {} + else: + obj_attrs = memo[obj_id][0] + obj_get = obj_attrs.get + changed = dict((key,None) for key in obj_attrs if key not in attrs) + for key, o in attrs.items(): + if id_(o) != obj_get(key, None) or chngd(o, seen, True, False): + changed[key] = o + + # compare sequence + items = get_seq(obj) + seq_diff = False + if (items is not None) and (hasattr(items, '__len__')): + obj_seq = memo[obj_id][1] + if (len(items) != len(obj_seq)): + seq_diff = True + elif hasattr(obj, "items"): # dict type obj + obj_get = obj_seq.get + for key, item in items.items(): + if id_(item) != obj_get(id_(key)) \ + or chngd(key, seen, True, False) \ + or chngd(item, seen, True, False): + seq_diff = True + break + else: + for i, j in zip(items, obj_seq): # list type obj + if id_(i) != j or chngd(i, seen, True, False): + seq_diff = True + break + seen[obj_id] = changed, seq_diff + if simple: + return changed or seq_diff + return changed, seq_diff + + +def has_changed(*args, **kwds): + kwds['simple'] = True # ignore simple if passed in + return whats_changed(*args, **kwds) + +__import__ = __import__ + + +def _imp(*args, **kwds): + """ + Replaces the default __import__, to allow a module to be memorised + before the user can change it + """ + before = set(sys.modules.keys()) + mod = __import__(*args, **kwds) + after = set(sys.modules.keys()).difference(before) + for m in after: + memorise(sys.modules[m]) + return mod + +builtins.__import__ = _imp +if hasattr(builtins, "_"): + del builtins._ + +# memorise all already imported modules. This implies that this must be +# imported first for any changes to be recorded +for mod in list(sys.modules.values()): + memorise(mod) +release_gone() diff --git a/.venv/lib/python3.12/site-packages/dill/__info__.py b/.venv/lib/python3.12/site-packages/dill/__info__.py new file mode 100644 index 0000000..e71bdfa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/__info__.py @@ -0,0 +1,291 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +''' +----------------------------- +dill: serialize all of Python +----------------------------- + +About Dill +========== + +``dill`` extends Python's ``pickle`` module for serializing and de-serializing +Python objects to the majority of the built-in Python types. Serialization +is the process of converting an object to a byte stream, and the inverse +of which is converting a byte stream back to a Python object hierarchy. + +``dill`` provides the user the same interface as the ``pickle`` module, and +also includes some additional features. In addition to pickling Python +objects, ``dill`` provides the ability to save the state of an interpreter +session in a single command. Hence, it would be feasible to save an +interpreter session, close the interpreter, ship the pickled file to +another computer, open a new interpreter, unpickle the session and +thus continue from the 'saved' state of the original interpreter +session. + +``dill`` can be used to store Python objects to a file, but the primary +usage is to send Python objects across the network as a byte stream. +``dill`` is quite flexible, and allows arbitrary user defined classes +and functions to be serialized. Thus ``dill`` is not intended to be +secure against erroneously or maliciously constructed data. It is +left to the user to decide whether the data they unpickle is from +a trustworthy source. + +``dill`` is part of ``pathos``, a Python framework for heterogeneous computing. +``dill`` is in active development, so any user feedback, bug reports, comments, +or suggestions are highly appreciated. A list of issues is located at +https://github.com/uqfoundation/dill/issues, with a legacy list maintained at +https://uqfoundation.github.io/project/pathos/query. + + +Major Features +============== + +``dill`` can pickle the following standard types: + + - none, type, bool, int, float, complex, bytes, str, + - tuple, list, dict, file, buffer, builtin, + - Python classes, namedtuples, dataclasses, metaclasses, + - instances of classes, + - set, frozenset, array, functions, exceptions + +``dill`` can also pickle more 'exotic' standard types: + + - functions with yields, nested functions, lambdas, + - cell, method, unboundmethod, module, code, methodwrapper, + - methoddescriptor, getsetdescriptor, memberdescriptor, wrapperdescriptor, + - dictproxy, slice, notimplemented, ellipsis, quit + +``dill`` cannot yet pickle these standard types: + + - frame, generator, traceback + +``dill`` also provides the capability to: + + - save and load Python interpreter sessions + - save and extract the source code from functions and classes + - interactively diagnose pickling errors + + +Current Release +=============== + +The latest released version of ``dill`` is available from: + + https://pypi.org/project/dill + +``dill`` is distributed under a 3-clause BSD license. + + +Development Version +=================== + +You can get the latest development version with all the shiny new features at: + + https://github.com/uqfoundation + +If you have a new contribution, please submit a pull request. + + +Installation +============ + +``dill`` can be installed with ``pip``:: + + $ pip install dill + +To optionally include the ``objgraph`` diagnostic tool in the install:: + + $ pip install dill[graph] + +To optionally include the ``gprof2dot`` diagnostic tool in the install:: + + $ pip install dill[profile] + +For windows users, to optionally install session history tools:: + + $ pip install dill[readline] + + +Requirements +============ + +``dill`` requires: + + - ``python`` (or ``pypy``), **>=3.8** + - ``setuptools``, **>=42** + +Optional requirements: + + - ``objgraph``, **>=1.7.2** + - ``gprof2dot``, **>=2022.7.29** + - ``pyreadline``, **>=1.7.1** (on windows) + + +Basic Usage +=========== + +``dill`` is a drop-in replacement for ``pickle``. Existing code can be +updated to allow complete pickling using:: + + >>> import dill as pickle + +or:: + + >>> from dill import dumps, loads + +``dumps`` converts the object to a unique byte string, and ``loads`` performs +the inverse operation:: + + >>> squared = lambda x: x**2 + >>> loads(dumps(squared))(3) + 9 + +There are a number of options to control serialization which are provided +as keyword arguments to several ``dill`` functions: + +* with *protocol*, the pickle protocol level can be set. This uses the + same value as the ``pickle`` module, *DEFAULT_PROTOCOL*. +* with *byref=True*, ``dill`` to behave a lot more like pickle with + certain objects (like modules) pickled by reference as opposed to + attempting to pickle the object itself. +* with *recurse=True*, objects referred to in the global dictionary are + recursively traced and pickled, instead of the default behavior of + attempting to store the entire global dictionary. +* with *fmode*, the contents of the file can be pickled along with the file + handle, which is useful if the object is being sent over the wire to a + remote system which does not have the original file on disk. Options are + *HANDLE_FMODE* for just the handle, *CONTENTS_FMODE* for the file content + and *FILE_FMODE* for content and handle. +* with *ignore=False*, objects reconstructed with types defined in the + top-level script environment use the existing type in the environment + rather than a possibly different reconstructed type. + +The default serialization can also be set globally in *dill.settings*. +Thus, we can modify how ``dill`` handles references to the global dictionary +locally or globally:: + + >>> import dill.settings + >>> dumps(absolute) == dumps(absolute, recurse=True) + False + >>> dill.settings['recurse'] = True + >>> dumps(absolute) == dumps(absolute, recurse=True) + True + +``dill`` also includes source code inspection, as an alternate to pickling:: + + >>> import dill.source + >>> print(dill.source.getsource(squared)) + squared = lambda x:x**2 + +To aid in debugging pickling issues, use *dill.detect* which provides +tools like pickle tracing:: + + >>> import dill.detect + >>> with dill.detect.trace(): + >>> dumps(squared) + ┬ F1: at 0x7fe074f8c280> + ├┬ F2: + │└ # F2 [34 B] + ├┬ Co: at 0x7fe07501eb30, file "", line 1> + │├┬ F2: + ││└ # F2 [19 B] + │└ # Co [87 B] + ├┬ D1: + │└ # D1 [22 B] + ├┬ D2: + │└ # D2 [2 B] + ├┬ D2: + │├┬ D2: + ││└ # D2 [2 B] + │└ # D2 [23 B] + └ # F1 [180 B] + +With trace, we see how ``dill`` stored the lambda (``F1``) by first storing +``_create_function``, the underlying code object (``Co``) and ``_create_code`` +(which is used to handle code objects), then we handle the reference to +the global dict (``D2``) plus other dictionaries (``D1`` and ``D2``) that +save the lambda object's state. A ``#`` marks when the object is actually stored. + + +More Information +================ + +Probably the best way to get started is to look at the documentation at +http://dill.rtfd.io. Also see ``dill.tests`` for a set of scripts that +demonstrate how ``dill`` can serialize different Python objects. You can +run the test suite with ``python -m dill.tests``. The contents of any +pickle file can be examined with ``undill``. As ``dill`` conforms to +the ``pickle`` interface, the examples and documentation found at +http://docs.python.org/library/pickle.html also apply to ``dill`` +if one will ``import dill as pickle``. The source code is also generally +well documented, so further questions may be resolved by inspecting the +code itself. Please feel free to submit a ticket on github, or ask a +question on stackoverflow (**@Mike McKerns**). +If you would like to share how you use ``dill`` in your work, please send +an email (to **mmckerns at uqfoundation dot org**). + + +Citation +======== + +If you use ``dill`` to do research that leads to publication, we ask that you +acknowledge use of ``dill`` by citing the following in your publication:: + + M.M. McKerns, L. Strand, T. Sullivan, A. Fang, M.A.G. Aivazis, + "Building a framework for predictive science", Proceedings of + the 10th Python in Science Conference, 2011; + http://arxiv.org/pdf/1202.1056 + + Michael McKerns and Michael Aivazis, + "pathos: a framework for heterogeneous computing", 2010- ; + https://uqfoundation.github.io/project/pathos + +Please see https://uqfoundation.github.io/project/pathos or +http://arxiv.org/pdf/1202.1056 for further information. + +''' + +__version__ = '0.4.0' +__author__ = 'Mike McKerns' + +__license__ = ''' +Copyright (c) 2004-2016 California Institute of Technology. +Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +All rights reserved. + +This software is available subject to the conditions and terms laid +out below. By downloading and using this software you are agreeing +to the following conditions. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the names of the copyright holders nor the names of any of + the contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +''' diff --git a/.venv/lib/python3.12/site-packages/dill/__init__.py b/.venv/lib/python3.12/site-packages/dill/__init__.py new file mode 100644 index 0000000..7fc930c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/__init__.py @@ -0,0 +1,119 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +# author, version, license, and long description +try: # the package is installed + from .__info__ import __version__, __author__, __doc__, __license__ +except: # pragma: no cover + import os + import sys + parent = os.path.dirname(os.path.abspath(os.path.dirname(__file__))) + sys.path.append(parent) + # get distribution meta info + from version import (__version__, __author__, + get_license_text, get_readme_as_rst) + __license__ = get_license_text(os.path.join(parent, 'LICENSE')) + __license__ = "\n%s" % __license__ + __doc__ = get_readme_as_rst(os.path.join(parent, 'README.md')) + del os, sys, parent, get_license_text, get_readme_as_rst + + +from ._dill import ( + dump, dumps, load, loads, copy, + Pickler, Unpickler, register, pickle, pickles, check, + DEFAULT_PROTOCOL, HIGHEST_PROTOCOL, HANDLE_FMODE, CONTENTS_FMODE, FILE_FMODE, + PickleError, PickleWarning, PicklingError, PicklingWarning, UnpicklingError, + UnpicklingWarning, +) +from .session import ( + dump_module, load_module, load_module_asdict, + dump_session, load_session # backward compatibility +) +from . import detect, logger, session, source, temp + +# get global settings +from .settings import settings + +# make sure "trace" is turned off +logger.trace(False) + +objects = {} +# local import of dill._objects +#from . import _objects +#objects.update(_objects.succeeds) +#del _objects + +# local import of dill.objtypes +from . import objtypes as types + +def load_types(pickleable=True, unpickleable=True): + """load pickleable and/or unpickleable types to ``dill.types`` + + ``dill.types`` is meant to mimic the ``types`` module, providing a + registry of object types. By default, the module is empty (for import + speed purposes). Use the ``load_types`` function to load selected object + types to the ``dill.types`` module. + + Args: + pickleable (bool, default=True): if True, load pickleable types. + unpickleable (bool, default=True): if True, load unpickleable types. + + Returns: + None + """ + from importlib import reload + # local import of dill.objects + from . import _objects + if pickleable: + objects.update(_objects.succeeds) + else: + [objects.pop(obj,None) for obj in _objects.succeeds] + if unpickleable: + objects.update(_objects.failures) + else: + [objects.pop(obj,None) for obj in _objects.failures] + objects.update(_objects.registered) + del _objects + # reset contents of types to 'empty' + [types.__dict__.pop(obj) for obj in list(types.__dict__.keys()) \ + if obj.find('Type') != -1] + # add corresponding types from objects to types + reload(types) + +def extend(use_dill=True): + '''add (or remove) dill types to/from the pickle registry + + by default, ``dill`` populates its types to ``pickle.Pickler.dispatch``. + Thus, all ``dill`` types are available upon calling ``'import pickle'``. + To drop all ``dill`` types from the ``pickle`` dispatch, *use_dill=False*. + + Args: + use_dill (bool, default=True): if True, extend the dispatch table. + + Returns: + None + ''' + from ._dill import _revert_extension, _extend + if use_dill: _extend() + else: _revert_extension() + return + +extend() + + +def license(): + """print license""" + print (__license__) + return + +def citation(): + """print citation""" + print (__doc__[-491:-118]) + return + +# end of file diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/__diff.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/__diff.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29fe8d2a8b4cc0dfad5cf20e7f32e841cbe7816c GIT binary patch literal 8990 zcmbtZeQX;?cAw=g$>sN#L`jwvuRi=i$C9JiNo?oi;z)A*5i6I-P7x(JhUTs$$`YyU zu4Ge3CUoM%QE{%J&Q3))1tQ}DM24@Z0vviiq`;+@^soL=$x>o!qXItEe>6o=$d-eP z^H2NUESIEhHR+)P?r`SK$D4UG^WJaX{IkntClGeB|2^;@^@RKzW{gl(OsrO!2$>=x z=_Mi~nueHOhW?v+P4u7bW$8cH%h~iA=3a})_F7FuvPrCH7A>dAC06gP*B&Fi4)~l< z>XO`&NAkkIPxAL!E-}SA0W1@(r-|f{*ugEvfXe?s-CE8WDakar%}AI3C1;WmE0mH`QY=2EbwF{FMM_Itpgf2_;9%&BSq=Ej9mGj()X0}MoQ#j_C7|m zoo0IP6TPAx{x^sY;4O$g(FwUm(FM6CskygVbVI5|YLS?5v(X-8u~A|~&m~v|46;dL zUfl##&)TvXd{(bl8Q(qoPVx$@d+!$LWrMWEkO@QHadHG`f>EC#NmDbC_!c6Y86tAM z))&b;|9OI(WM3pFn2>+`N&Df1I65Q=YC=#35+{UMpAd-)iDQFOR22pyiVz)$#QP;t zP-5|@B*awV1Q3U%;e;GhB+>pg4zv5nKF!fDsj}1;O^n9XXmKNyrhuDgm4j%CB$<$@ zTSi%2Bq2s)PAXVg_^x;RiG+My8Hq$CWqVIo>oa?wdZ@KWji|9`Yezzq!h7S9p`;R1 zwzrK*@v-egv18julIlPrzN4-E!R<;+m0F?k@kl?k7h^+1+rwco*4NiIlKhT;Y$!5( zOpH7s^T4YXJ_QGGimXCR?iei&5|?iEL5L0!21cABuXqSaGiqs8DaH`_Uole*h~3AL zB>7wR1apz;hDn)XV#uVK+8)rD8091gvK9LK&h}Wp6qinp$WO@7C253D!QuQn`8Gpt z62`kR-+0cHYo9XTz|3t0hx2B24RgmB%|N6Ql_4=jD#k^OajC`4M#vaZ>ej3QZS^op zWLt_NKhk zx{Xx%zoOJzrW&b1zmY2c4;qG|Od@?I82Ne_9ZK`AAiIH%yY{Xin{c%K@D=B2D$Vn7 zk;0ZJoka>)qC83|Cb8V=!6K#HDpaJDTM42W<@*?nrP$-2DP7TGv`<=_D^3BZOgBR+ zPl0i^(k4)%-;|UnKfe3k(*W9NSP^1zAtET!YoikC&NX(u#zhk&NzEA!M-y>1f?GX| z2LYPPkg|ruLsC2(KC-Vn8Q^ot!**c6`p;SO^5O2Uo1bS@#W3 z?19|ahZ{d?z0mrb>fhFWT>IOGj~lMGAD(YNJlEJgU(;Q1xZmCV_U?S(gWA8Yr7f=o zszL^(hf3mo#6G@x$TNfQ0FK(I* zUani*+EJ)opEYOuCR}>;u|>yy(CgH$$z5mn%sCqh9)H$;t+qk0Q}6`7z12#b>p*{- z>z92no3nLqTUJ=eeW&<97H>K`TFGavRh=CBImJ-4ncdb!VKj?CVOKAYK6V8;?ILDJFgiC2l+M420mc9!4>iPt1Vo8JQ6t$#1(;%x; zp&ydhyS8`jQI_%tIlT<)m$s$tpr`nhyPeSn)RcB$FO-Yf z;DVGS69t6;<<=7rLyFF~lm_m_H1u$Sge>F#YDeX=R}=wZl<+8kRD>FcKDPl`1QZb+ zm6h0-G?Ww~v~CfN=m1usouE$Ck%`_2ATGez7<4QYwXP&@qX30!?Ka`4A_;v7IVwGV zL>{HkcyvUJs5($7k0vrCOA#@NTHY8Hw8fgSct7?ZPpEf{Pz12kMu*gW51!irhh%jZ zMDH;r)CszSt|9}cA7nZKh{BL*pQ(sE0|xSx@#M+~+AeZ3o=S~9E+sYdSY&8a(%6_7 zHdJAKiE(=)p|rp_T&Y2y6ac=#o+z()%%O{Y7iJ1F4iPuml1Yp912Xc!BVPW zDmw&78i&AEZigf_fHF!=vw_UjL>RWB#v5V|xr#=W?k_N^#|FbOQDgcwo}yQpQ8Wvf zQb@{(?=%(~%Wc><8di-%Da#K)Qo&`0$(O>D`pQ0nbuoGlE4>Pa7;YE0oW$+Tv1k5* z+TU|kr(QoVO^^MiZhrF~M8I}urem20<9NoM*;}yknPeeQGr?aE)GX9=U2gyVBfop( zliiCoT?>J(EPtH`!+OSPRPnO z?yAZ?m$xmtnhIF`T2u3vzLxxRlg+uvdzrWrZ z_RVwE%XWXJ0|%8ZY}))$|Aqcv#jf%XoVVxM{LzU(_UJFxE%Fas!*WFO?YVw1*w^mc z@In9i{`X^lVi{Lx$+s>S$cZ;t;_<^A2hOwk&i8FsTut8)CNt;xNX4=s9H3Y)il z=?&%8$w2PNdv%N6(2~Cz$GGAleD&>{KH}ead(}y7?YCEXXnOl5PkdYHCGHPfJzcHb zXIuSU4_ZENT-UYB@=sn**ArY6R-qJ1*8abM1h&3ZFj%tgB@!uH_ccq)cMVgTNt3co zt?2c8?75*!z)G_3az)D_6b~kw=0J;^Qk+psWRAlKWiL?S7GqE$$CPu_o-|Q=!lhZz z`-ZNE9B6e@_t$t_Llzm`G8#LQ7?Dx$$q0WmZYZYcXDDRGO`aG5pgN+liX5f8ogN$o z6&&5~I_`AJ(vTEUq;NmzR{3ct{3(3Oix6eVa#h3B;mN}v?)+%ig@YWIN9Ax%Ri6uurUx?2fl$lm1-C*_tcn zI@l-X;O$k66_oowS~u=(w?uJ1MnJfQGgj#-hNru}FawSH3(#OHYi5Y(H>Gad>5dewZYC zNA1$(a*UDJ(Q>W~3PiJtfR=_b;2Vd$!TU`HIrNn{R6r(k#pT$d;@yIVazAhTC;S-} zW^ax6m#?w<+(Zk`5MUR-)|E7EQ?ZzatRKLv6#yl_24J;L_yN~pwYsKo4dNlcfc=PoMq&Q2UXL*fr` zB;KYrm*<^w8*>0(D9DeF#hdm~&R&CK%2%;U-g|m)DE7{91Xjyc-nFprEh+0s25+$` z7n~wm3a&3lK zvaJkA4ZmxsP1tMTSEHJaT@iACtBrP5?kOG_riisnp#ZS$-k$YdjwKSHK;t?rJtFICL{K#z>px5-xhb*FeX!&_r1e zQ4vW74^2leH-CEc%ASJ&OFGYu&j%0PR?ytPWeYODfREzHuVMQTiWEbBjW-;eGHO-% z07evLvXOXF-icY9u;zRooa(V*i8_10BC4|Hx?_CQ>8Y{cgptwfc{dVe!HcA^w@R5hbQ}30bD$t*IkH20n=UspAukNaM&ydf;lz6Z!)zIXqj`ifO{slZz46v z*RNOz?><*IZ(UcYU6=35{WQyEUzl)0lR}`jT&-a9fP2_hPw6$+{rAmnc=#UzmwP^` zo!_u`!T;2p^Qmi9!Mr*5XokYn>(07N7sby2BVEB<^h|fAt6+5kSoK#;Sg%*r=7W>Z zO#3FE&Dsk7`l;5*)~t2eA6y6?nt5?Ccxb_YC~GYQ>!*%S9zQ#LlbCFc6Z^6qIo}dM z)%G)E=WC_|)8azi{Z~BqUmTr%?lN~-{Iu(f?FS1Rgq$_c{?fT(hBmkC1R!?DnP-5x zrz*3*z`N%7x(}^0=9%Q8up1cW#wNGrUz^+x+?}4B`OLw;Y0me*zwL^1Q=z7QVm~7E zp8RG+=)ndYO!nzQL(>N@oqy^5S8fusYu%&`ylF?4P`qb%U$9Jd# zKHo82HLcDZT@3EPT<3Jl3^yZv5!_kW(45=9R8@Dw0e#$Zle+c!uIWb>YVW^ESm>0? zF}Zf^^tH1O=b!uKqZc;LFf%)6t7b>PXnNdeyJCf^D?F*H&+nfLwCI9gvbqYM;1y3( ze#;!+Q~>0^f6lRfj$5z$?_nR60-{FrY^*jx1W%!$E=1}xu6!AZ0c`q^`AY_0IJ%F> zFF@50L-!;+=5P_YU(vYZCq$+4MMrah)78)tauk~U3w#Pfj0`DM*TG0@PjxRlYV$2~ zj?L38^N!7P+~)5Y;Cj#xl`g=t({Hd6YeN4R21_VW&tq(0nM3;8w8Ga4Alk%MQcu=bADj)-mP)Piz9%Xcm@+8IM!r@w_xLgl~n^ z-ilIRWOPV{7behX2^rp)w&9B=yiLKAW<(e+y>TAXy+``nB`Tt05*RVCnBZ0#Rltr# z!M~%cJuqLCQOF7!S5hHL!V{F<748HHvi34V&5rs{lF`*qFW+#@iNF-(V-RT;oe$jQ z6CxO$KJf2r%rL!4=;~0v&Tu$>IRP!cgijfP2yX6n;`W^jOw~`;U-dQ4`x+N~%?qxU z%)VuNRZg69mi%a2a# z#w@eUd-WdS3Vz=gynx>7M$ojGgLH3FQxszM!9mz}BoxAj2r&^2hvmaK8B;=$`!HeF z-{pAvzR)%tkp-a2h-Nj%0lEEG&ddn==g=>vpcTt zI5@xKV8P{iw|Am9Uk8kZmRtCq4A)oJ#*FPIZ)LWwRG}t5I(=YfbXL6F`Dyc~Dm;7S z#py0x`xa^&u7ZQFcFWAh+3Kt99rNuSpB|;e_W9cO*@r+S*X~&*89t zGQm~nA%C&Y!CU?20W1pY&n)LG S9gmaG9=CQ{+0QKu#Qy{99rTz0 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/__info__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/__info__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29db75c8b19809a38f76e1a22a148590afb2bbda GIT binary patch literal 10706 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..644ff7703a2a160207d57e24b74ec2466fa8e2be GIT binary patch literal 4722 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/_dill.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/_dill.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d35f195f8e9aef3ea7f97c3c6a604b0d91dc5ac GIT binary patch literal 103697 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 WtnPjP<@MaiV)jn_{8m=Dh5rE?=N!ub literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/detect.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/detect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e61f4c95d13ccebb5aea3b1691dafc37ef504570 GIT binary patch literal 13437 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/objtypes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/objtypes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6f575b46f5efbff377fb68035e09eb150c7f9a5 GIT binary patch literal 663 zcmY*W&1(}u6o0cHNp@)^=!0`OIC z&Z0OkPRF8n4nDNNN4^rGNNFhu6d=k$;SBt5J(`!dV7CI$(gaQ?+6&~XdDdQPN9ZpE z!PD~^v=sx|TB=_FQn(0AMX&>@K7z5j10!S=Chtu*4Dp>b>CqT(CvNP!%*UI-9&=fW z>D~eH5}c$1!g19bGDhMgOt0XL+qhn0wC@anxlXLi5 z&Zy2C?WKvjv}P09rgQFFv~etn;|@ zsPV9QqLp3^-`x9TtbEp1CAu*!fW9zQRAii#%D;|_6^S$iPM#Vwz93}ZqB^|O K*VGSaP5lFfBf2#J literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/pointers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/pointers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fcba078fa12e096f6eea4e40b25440ddbc519fd2 GIT binary patch literal 4968 zcmc&2TW=HD`HW|5$G6-GB(Td_LWms_C$KeLys5XeG7_n_4!9&#cfrwVxNBSH3(vVa&vs9|IMJjI*=|juQ_B(TN90CG$EA5H$ zoipdV%s1z|9{(v42_hIr_^&3l286z35AN_di;W+{VgaR*gnq+~BZ-qd3OCMKvuE5R z@sgnM)55ryL$LP3+Bfcpbx`tMGkmQFs0CNq@K`AT+U=9)gcsTEgMPgplmlY|= z=w^VD6oFNem>y9#{r0wI)+8roMFPZArqbwB4q%KkBZ(|kujCVxM9C5g8?^~VO^P~6 zs1s8psV8|x?hGHy?0MrHfCc!90;Bfon1u$_0Aqhy)TQmVxT*+F z;0hbY?O06eIZ;vaxKq|TyYWO$$C8@q)bXS^LjYtXg}`HQ4&wbv7FJdN^Kq3Ld1G53nXgFqSE5Q;KwI_I66G~ zK|hvLOd^&wCW-tk$E<~IG3;w%-FRBeV=#=A14J%Eu4KU!M8cG4IYkFq=PYC6l$?NUygsRB-i;qR+^d0+dw}_pmn2nom$+v)N!w6HQZMmEJqq|UbueY#wW$0vOiL4 zx>_jLHI+jR#qVzb8%jF9$=0ai&A)_)Pq_u8TiXmwxp7QBdF|{u(m))2QO@yzZ~?An<%)Gg2f0{=C27TY;e9Gkg#WzS-wP zU|Y**){!#{I+3kwI0X&{7K-Cj%pCYKoERoRep%KhEkw|=uVci1aBH>;K4g0=aBp=^ ztgGM~B27**(H5^|?|ygJdUAZrTAw(~+_y7LA#R)$(;2fEZHK9TXZ7oBH8l1@n-BuW zaZUDmOG2`eQ{X_D#hT!MV-J8|F)LND2D;9h=cTKpo?{2P_9a0?!Ke^uek+|L-P#+%A-HCg<|pG^0Mk?3Ok{6wkgW_l$O{m%wF z%%AVr$&Eh!3PwyYJ?W$wNfSL$@h#IoDQcpwQ!~i2OTzNLWxu75b(pjsgi!c0WCnTz-Si~7Fe z@IT(}SW4ZK*WP|_E_MCFgH&(CXo>p1xLn*CJ2T&9to23Bwr97~jEkjHD`egFO&Zc zfa)Yh+hJpN_e)fB^VbKAZ9fAnPs9Y;2~$;yVnIS<4By4TK>*seT*E3mW#AY?p8>#f zP22yNYaT#r@&1-1Q>p$SxsqfANUkjDr#a{ks%n&*@+D5@3ciLcj=4u?qdd*pv@iy;?FiA2)(y$f)+?E$=RbjF7=!f+|OI zptomJZXx_yzYM$I=+2-^_%ymW3T;%R>T4q|-l&;@`{R7WOL4v#PUGhH8X?Iu3tziM z=Zb{m3=`P$#anUSm!4LI2Aa5Y0<$AG|AfUpyT^`FmK3bZRV+X;tW91cy2*=@1gpGe z1`^P7rKmVf?EL0Ws)_>bIc45r`owG&y7^eG-E^^Lly);jU|PJAurFd^az&?N!o8ir z9WqDk&W!cCc6;W7z5(82HDsnww;Ao<2Ur?4eVUr1aARYQuGOhkfYou@8J4BlG5FVh z58hrx-Mb)?G-Y6dx=|Z+_zfS zz9#H{EcloP*G3)%>&gu+3$3?W7Z2UuGv|90YA&5$3+*ZI*j+j^H&|}mb+>VG=uX>8 z?6<*{)`KNqxqin&_*QuF{966~buVgat&pxX_O1I+bL-p)2>*;O z9=JWb(y(vN2lvg=@Waqsk9NJYbYOK?Y;L$5ZoGN+`dOff-7c(!JIZbC&yX(?EBPKb z?I@*g_b;`qGbQ4SPqs3@9tYXf2V7uxuYEGEe+j0yqLPvztVi5 z+}ye_a%*I%jw~+=%~{V$GBw#_j{HW>H7d;o~P_`V6P+WDg#YZ zB4K$UJqj4pn_%~E8emkcB2o6^7KPe|?0Yz?MpkXL+{600$-dKBGVPASxo1to?-vRg zpo74|Ql)kTz&g)y+_Od$`cBdRB?^3jf=^J--%#g<(7-irL~FT*jeX4k`Z3qAeuhJl Kx~l<8>VE-3D1Uqa literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/session.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba7c51ef8b47c2df0764849d9716dc08c8d82231 GIT binary patch literal 26363 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 O#;Z>~oZZdLF8?17%W}d1 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/settings.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/settings.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..539430518b888cfb87e18a09f5a423554864dfa4 GIT binary patch literal 391 zcmXv|%}&BV7~I{`(h#9U;b=mPF==9H{JR+wL^u&4f)_MtO1spCrQ7TlOg;G)UVH(c z#TOuZGV$aMLcDO%CCYsHzRVnE=6lcQb3o!$`FWTk06y1Z1MQzI4LUm+@)fBSIhj|ruiT+jHMOVRTtMi+B^8d7B#Z)H8B$j1gx-i?mit;~notz48qL~m ztLJoX+P!wY-D;Yu&|^ju>QN%pLCWw@sKYV!vB)y)O&G^Q3xkLKtSgqRSnbl3)B=oGh%yw##OHv+kyE?_u)F$D; zj??6UMkm#yW1EKwwxoIF2GZ|`gxH&gYMie0bNSzd;0tERGANfH$}?9Wgo`4AnQtAy h{kaad_hyBikAg8PmS;w3Vdz`vSznZZT4s4^_ytImaee>* literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/source.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/source.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6ce43cde3444d6b6f0ab4afae7fd8037d4cf461 GIT binary patch literal 41169 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 z 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/__pycache__/temp.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/__pycache__/temp.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5bccdd592b3f9f9c4b6cd3d59aa3585c3a14dc50 GIT binary patch literal 9471 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/_dill.py b/.venv/lib/python3.12/site-packages/dill/_dill.py new file mode 100644 index 0000000..aec297c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/_dill.py @@ -0,0 +1,2255 @@ +# -*- coding: utf-8 -*- +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2015 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +dill: a utility for serialization of python objects + +The primary functions in `dill` are :func:`dump` and +:func:`dumps` for serialization ("pickling") to a +file or to a string, respectively, and :func:`load` +and :func:`loads` for deserialization ("unpickling"), +similarly, from a file or from a string. Other notable +functions are :func:`~dill.dump_module` and +:func:`~dill.load_module`, which are used to save and +restore module objects, including an intepreter session. + +Based on code written by Oren Tirosh and Armin Ronacher. +Extended to a (near) full set of the builtin types (in types module), +and coded to the pickle interface, by . +Initial port to python3 by Jonathan Dobson, continued by mmckerns. +Tested against "all" python types (Std. Lib. CH 1-15 @ 2.7) by mmckerns. +Tested against CH16+ Std. Lib. ... TBD. +""" + +from __future__ import annotations + +__all__ = [ + 'dump','dumps','load','loads','copy', + 'Pickler','Unpickler','register','pickle','pickles','check', + 'DEFAULT_PROTOCOL','HIGHEST_PROTOCOL','HANDLE_FMODE','CONTENTS_FMODE','FILE_FMODE', + 'PickleError','PickleWarning','PicklingError','PicklingWarning','UnpicklingError', + 'UnpicklingWarning', +] + +__module__ = 'dill' + +import warnings +from .logger import adapter as logger +from .logger import trace as _trace +log = logger # backward compatibility (see issue #582) + +import os +import sys +diff = None +_use_diff = False +OLD38 = (sys.hexversion < 0x3080000) +OLD39 = (sys.hexversion < 0x3090000) +OLD310 = (sys.hexversion < 0x30a0000) +OLD312a7 = (sys.hexversion < 0x30c00a7) +#XXX: get types from .objtypes ? +import builtins as __builtin__ +from pickle import _Pickler as StockPickler, Unpickler as StockUnpickler +from pickle import GLOBAL, POP +from _thread import LockType +from _thread import RLock as RLockType +try: + from _thread import _ExceptHookArgs as ExceptHookArgsType +except ImportError: + ExceptHookArgsType = None +try: + from _thread import _ThreadHandle as ThreadHandleType +except ImportError: + ThreadHandleType = None +#from io import IOBase +from types import CodeType, FunctionType, MethodType, GeneratorType, \ + TracebackType, FrameType, ModuleType, BuiltinMethodType +BufferType = memoryview #XXX: unregistered +ClassType = type # no 'old-style' classes +EllipsisType = type(Ellipsis) +#FileType = IOBase +NotImplementedType = type(NotImplemented) +SliceType = slice +TypeType = type # 'new-style' classes #XXX: unregistered +XRangeType = range +from types import MappingProxyType as DictProxyType, new_class +from pickle import DEFAULT_PROTOCOL, HIGHEST_PROTOCOL, PickleError, PicklingError, UnpicklingError +import __main__ as _main_module +import marshal +import gc +# import zlib +import abc +import dataclasses +from weakref import ReferenceType, ProxyType, CallableProxyType +from collections import OrderedDict +from enum import Enum, EnumMeta +from functools import partial +from operator import itemgetter, attrgetter +GENERATOR_FAIL = False +import importlib.machinery +EXTENSION_SUFFIXES = tuple(importlib.machinery.EXTENSION_SUFFIXES) +try: + import ctypes + HAS_CTYPES = True + # if using `pypy`, pythonapi is not found + IS_PYPY = not hasattr(ctypes, 'pythonapi') +except ImportError: + HAS_CTYPES = False + IS_PYPY = False +NumpyUfuncType = None +NumpyDType = None +NumpyArrayType = None +try: + if not importlib.machinery.PathFinder().find_spec('numpy'): + raise ImportError("No module named 'numpy'") + NumpyUfuncType = True + NumpyDType = True + NumpyArrayType = True +except ImportError: + pass +def __hook__(): + global NumpyArrayType, NumpyDType, NumpyUfuncType + from numpy import ufunc as NumpyUfuncType + from numpy import ndarray as NumpyArrayType + from numpy import dtype as NumpyDType + return True +if NumpyArrayType: # then has numpy + def ndarraysubclassinstance(obj_type): + if all((c.__module__, c.__name__) != ('numpy', 'ndarray') for c in obj_type.__mro__): + return False + # anything below here is a numpy array (or subclass) instance + __hook__() # import numpy (so the following works!!!) + # verify that __reduce__ has not been overridden + if obj_type.__reduce_ex__ is not NumpyArrayType.__reduce_ex__ \ + or obj_type.__reduce__ is not NumpyArrayType.__reduce__: + return False + return True + def numpyufunc(obj_type): + return any((c.__module__, c.__name__) == ('numpy', 'ufunc') for c in obj_type.__mro__) + def numpydtype(obj_type): + if all((c.__module__, c.__name__) != ('numpy', 'dtype') for c in obj_type.__mro__): + return False + # anything below here is a numpy dtype + __hook__() # import numpy (so the following works!!!) + return obj_type is type(NumpyDType) # handles subclasses +else: + def ndarraysubclassinstance(obj): return False + def numpyufunc(obj): return False + def numpydtype(obj): return False + +from types import GetSetDescriptorType, ClassMethodDescriptorType, \ + WrapperDescriptorType, MethodDescriptorType, MemberDescriptorType, \ + MethodWrapperType #XXX: unused + +# make sure to add these 'hand-built' types to _typemap +CellType = type((lambda x: lambda y: x)(0).__closure__[0]) +PartialType = type(partial(int, base=2)) +SuperType = type(super(Exception, TypeError())) +ItemGetterType = type(itemgetter(0)) +AttrGetterType = type(attrgetter('__repr__')) + +try: + from functools import _lru_cache_wrapper as LRUCacheType +except ImportError: + LRUCacheType = None + +if not isinstance(LRUCacheType, type): + LRUCacheType = None + +def get_file_type(*args, **kwargs): + open = kwargs.pop("open", __builtin__.open) + f = open(os.devnull, *args, **kwargs) + t = type(f) + f.close() + return t + +IS_PYODIDE = sys.platform == 'emscripten' + +FileType = get_file_type('rb', buffering=0) +TextWrapperType = get_file_type('r', buffering=-1) +BufferedRandomType = None if IS_PYODIDE else get_file_type('r+b', buffering=-1) +BufferedReaderType = get_file_type('rb', buffering=-1) +BufferedWriterType = get_file_type('wb', buffering=-1) +try: + from _pyio import open as _open + PyTextWrapperType = get_file_type('r', buffering=-1, open=_open) + PyBufferedRandomType = None if IS_PYODIDE else get_file_type('r+b', buffering=-1, open=_open) + PyBufferedReaderType = get_file_type('rb', buffering=-1, open=_open) + PyBufferedWriterType = get_file_type('wb', buffering=-1, open=_open) +except ImportError: + PyTextWrapperType = PyBufferedRandomType = PyBufferedReaderType = PyBufferedWriterType = None +from io import BytesIO as StringIO +InputType = OutputType = None +from socket import socket as SocketType +#FIXME: additionally calls ForkingPickler.register several times +from multiprocessing.reduction import _reduce_socket as reduce_socket +try: #pragma: no cover + IS_IPYTHON = __IPYTHON__ # is True + ExitType = None # IPython.core.autocall.ExitAutocall + IPYTHON_SINGLETONS = ('exit', 'quit', 'get_ipython') +except NameError: + IS_IPYTHON = False + try: ExitType = type(exit) # apparently 'exit' can be removed + except NameError: ExitType = None + IPYTHON_SINGLETONS = () + +import inspect +import typing + + +### Shims for different versions of Python and dill +class Sentinel(object): + """ + Create a unique sentinel object that is pickled as a constant. + """ + def __init__(self, name, module_name=None): + self.name = name + if module_name is None: + # Use the calling frame's module + self.__module__ = inspect.currentframe().f_back.f_globals['__name__'] + else: + self.__module__ = module_name # pragma: no cover + def __repr__(self): + return self.__module__ + '.' + self.name # pragma: no cover + def __copy__(self): + return self # pragma: no cover + def __deepcopy__(self, memo): + return self # pragma: no cover + def __reduce__(self): + return self.name + def __reduce_ex__(self, protocol): + return self.name + +from . import _shims +from ._shims import Reduce, Getattr + +### File modes +#: Pickles the file handle, preserving mode. The position of the unpickled +#: object is as for a new file handle. +HANDLE_FMODE = 0 +#: Pickles the file contents, creating a new file if on load the file does +#: not exist. The position = min(pickled position, EOF) and mode is chosen +#: as such that "best" preserves behavior of the original file. +CONTENTS_FMODE = 1 +#: Pickles the entire file (handle and contents), preserving mode and position. +FILE_FMODE = 2 + +### Shorthands (modified from python2.5/lib/pickle.py) +def copy(obj, *args, **kwds): + """ + Use pickling to 'copy' an object (i.e. `loads(dumps(obj))`). + + See :func:`dumps` and :func:`loads` for keyword arguments. + """ + ignore = kwds.pop('ignore', Unpickler.settings['ignore']) + return loads(dumps(obj, *args, **kwds), ignore=ignore) + +def dump(obj, file, protocol=None, byref=None, fmode=None, recurse=None, **kwds):#, strictio=None): + """ + Pickle an object to a file. + + See :func:`dumps` for keyword arguments. + """ + from .settings import settings + protocol = settings['protocol'] if protocol is None else int(protocol) + _kwds = kwds.copy() + _kwds.update(dict(byref=byref, fmode=fmode, recurse=recurse)) + Pickler(file, protocol, **_kwds).dump(obj) + return + +def dumps(obj, protocol=None, byref=None, fmode=None, recurse=None, **kwds):#, strictio=None): + """ + Pickle an object to a string. + + *protocol* is the pickler protocol, as defined for Python *pickle*. + + If *byref=True*, then dill behaves a lot more like pickle as certain + objects (like modules) are pickled by reference as opposed to attempting + to pickle the object itself. + + If *recurse=True*, then objects referred to in the global dictionary + are recursively traced and pickled, instead of the default behavior + of attempting to store the entire global dictionary. This is needed for + functions defined via *exec()*. + + *fmode* (:const:`HANDLE_FMODE`, :const:`CONTENTS_FMODE`, + or :const:`FILE_FMODE`) indicates how file handles will be pickled. + For example, when pickling a data file handle for transfer to a remote + compute service, *FILE_FMODE* will include the file contents in the + pickle and cursor position so that a remote method can operate + transparently on an object with an open file handle. + + Default values for keyword arguments can be set in :mod:`dill.settings`. + """ + file = StringIO() + dump(obj, file, protocol, byref, fmode, recurse, **kwds)#, strictio) + return file.getvalue() + +def load(file, ignore=None, **kwds): + """ + Unpickle an object from a file. + + See :func:`loads` for keyword arguments. + """ + return Unpickler(file, ignore=ignore, **kwds).load() + +def loads(str, ignore=None, **kwds): + """ + Unpickle an object from a string. + + If *ignore=False* then objects whose class is defined in the module + *__main__* are updated to reference the existing class in *__main__*, + otherwise they are left to refer to the reconstructed type, which may + be different. + + Default values for keyword arguments can be set in :mod:`dill.settings`. + """ + file = StringIO(str) + return load(file, ignore, **kwds) + +# def dumpzs(obj, protocol=None): +# """pickle an object to a compressed string""" +# return zlib.compress(dumps(obj, protocol)) + +# def loadzs(str): +# """unpickle an object from a compressed string""" +# return loads(zlib.decompress(str)) + +### End: Shorthands ### + +class MetaCatchingDict(dict): + def get(self, key, default=None): + try: + return self[key] + except KeyError: + return default + + def __missing__(self, key): + if issubclass(key, type): + return save_type + else: + raise KeyError() + +class PickleWarning(Warning, PickleError): + pass + +class PicklingWarning(PickleWarning, PicklingError): + pass + +class UnpicklingWarning(PickleWarning, UnpicklingError): + pass + +### Extend the Picklers +class Pickler(StockPickler): + """python's Pickler extended to interpreter sessions""" + dispatch: typing.Dict[type, typing.Callable[[Pickler, typing.Any], None]] \ + = MetaCatchingDict(StockPickler.dispatch.copy()) + """The dispatch table, a dictionary of serializing functions used + by Pickler to save objects of specific types. Use :func:`pickle` + or :func:`register` to associate types to custom functions. + + :meta hide-value: + """ + _session = False + from .settings import settings + + def __init__(self, file, *args, **kwds): + settings = Pickler.settings + _byref = kwds.pop('byref', None) + #_strictio = kwds.pop('strictio', None) + _fmode = kwds.pop('fmode', None) + _recurse = kwds.pop('recurse', None) + StockPickler.__init__(self, file, *args, **kwds) + self._main = _main_module + self._diff_cache = {} + self._byref = settings['byref'] if _byref is None else _byref + self._strictio = False #_strictio + self._fmode = settings['fmode'] if _fmode is None else _fmode + self._recurse = settings['recurse'] if _recurse is None else _recurse + self._postproc = OrderedDict() + self._file = file + + def save(self, obj, save_persistent_id=True): + # numpy hack + obj_type = type(obj) + if NumpyArrayType and not (obj_type is type or obj_type in Pickler.dispatch): + # register if the object is a numpy ufunc + # thanks to Paul Kienzle for pointing out ufuncs didn't pickle + if numpyufunc(obj_type): + @register(obj_type) + def save_numpy_ufunc(pickler, obj): + logger.trace(pickler, "Nu: %s", obj) + name = getattr(obj, '__qualname__', getattr(obj, '__name__', None)) + StockPickler.save_global(pickler, obj, name=name) + logger.trace(pickler, "# Nu") + return + # NOTE: the above 'save' performs like: + # import copy_reg + # def udump(f): return f.__name__ + # def uload(name): return getattr(numpy, name) + # copy_reg.pickle(NumpyUfuncType, udump, uload) + # register if the object is a numpy dtype + if numpydtype(obj_type): + @register(obj_type) + def save_numpy_dtype(pickler, obj): + logger.trace(pickler, "Dt: %s", obj) + pickler.save_reduce(_create_dtypemeta, (obj.type,), obj=obj) + logger.trace(pickler, "# Dt") + return + # NOTE: the above 'save' performs like: + # import copy_reg + # def uload(name): return type(NumpyDType(name)) + # def udump(f): return uload, (f.type,) + # copy_reg.pickle(NumpyDTypeType, udump, uload) + # register if the object is a subclassed numpy array instance + if ndarraysubclassinstance(obj_type): + @register(obj_type) + def save_numpy_array(pickler, obj): + logger.trace(pickler, "Nu: (%s, %s)", obj.shape, obj.dtype) + npdict = getattr(obj, '__dict__', None) + f, args, state = obj.__reduce__() + pickler.save_reduce(_create_array, (f,args,state,npdict), obj=obj) + logger.trace(pickler, "# Nu") + return + # end numpy hack + + if GENERATOR_FAIL and obj_type is GeneratorType: + msg = "Can't pickle %s: attribute lookup builtins.generator failed" % GeneratorType + raise PicklingError(msg) + StockPickler.save(self, obj, save_persistent_id) + + save.__doc__ = StockPickler.save.__doc__ + + def dump(self, obj): #NOTE: if settings change, need to update attributes + logger.trace_setup(self) + StockPickler.dump(self, obj) + dump.__doc__ = StockPickler.dump.__doc__ + +class Unpickler(StockUnpickler): + """python's Unpickler extended to interpreter sessions and more types""" + from .settings import settings + _session = False + + def find_class(self, module, name): + if (module, name) == ('__builtin__', '__main__'): + return self._main.__dict__ #XXX: above set w/save_module_dict + elif (module, name) == ('__builtin__', 'NoneType'): + return type(None) #XXX: special case: NoneType missing + if module == 'dill.dill': module = 'dill._dill' + return StockUnpickler.find_class(self, module, name) + + def __init__(self, *args, **kwds): + settings = Pickler.settings + _ignore = kwds.pop('ignore', None) + StockUnpickler.__init__(self, *args, **kwds) + self._main = _main_module + self._ignore = settings['ignore'] if _ignore is None else _ignore + + def load(self): #NOTE: if settings change, need to update attributes + obj = StockUnpickler.load(self) + if type(obj).__module__ == getattr(_main_module, '__name__', '__main__'): + if not self._ignore: + # point obj class to main + try: obj.__class__ = getattr(self._main, type(obj).__name__) + except (AttributeError,TypeError): pass # defined in a file + #_main_module.__dict__.update(obj.__dict__) #XXX: should update globals ? + return obj + load.__doc__ = StockUnpickler.load.__doc__ + pass + +''' +def dispatch_table(): + """get the dispatch table of registered types""" + return Pickler.dispatch +''' + +pickle_dispatch_copy = StockPickler.dispatch.copy() + +def pickle(t, func): + """expose :attr:`~Pickler.dispatch` table for user-created extensions""" + Pickler.dispatch[t] = func + return + +def register(t): + """decorator to register types to Pickler's :attr:`~Pickler.dispatch` table""" + def proxy(func): + Pickler.dispatch[t] = func + return func + return proxy + +def _revert_extension(): + """drop dill-registered types from pickle's dispatch table""" + for type, func in list(StockPickler.dispatch.items()): + if func.__module__ == __name__: + del StockPickler.dispatch[type] + if type in pickle_dispatch_copy: + StockPickler.dispatch[type] = pickle_dispatch_copy[type] + +def use_diff(on=True): + """ + Reduces size of pickles by only including object which have changed. + + Decreases pickle size but increases CPU time needed. + Also helps avoid some unpickleable objects. + MUST be called at start of script, otherwise changes will not be recorded. + """ + global _use_diff, diff + _use_diff = on + if _use_diff and diff is None: + try: + from . import diff as d + except ImportError: + import diff as d + diff = d + +def _create_typemap(): + import types + d = dict(list(__builtin__.__dict__.items()) + \ + list(types.__dict__.items())).items() + for key, value in d: + if getattr(value, '__module__', None) == 'builtins' \ + and type(value) is type: + yield key, value + return +_reverse_typemap = dict(_create_typemap()) +_reverse_typemap.update({ + 'PartialType': PartialType, + 'SuperType': SuperType, + 'ItemGetterType': ItemGetterType, + 'AttrGetterType': AttrGetterType, +}) +if sys.hexversion < 0x30800a2: + _reverse_typemap.update({ + 'CellType': CellType, + }) + +# "Incidental" implementation specific types. Unpickling these types in another +# implementation of Python (PyPy -> CPython) is not guaranteed to work + +# This dictionary should contain all types that appear in Python implementations +# but are not defined in https://docs.python.org/3/library/types.html#standard-interpreter-types +x=OrderedDict() +_incedental_reverse_typemap = { + 'FileType': FileType, + 'BufferedRandomType': BufferedRandomType, + 'BufferedReaderType': BufferedReaderType, + 'BufferedWriterType': BufferedWriterType, + 'TextWrapperType': TextWrapperType, + 'PyBufferedRandomType': PyBufferedRandomType, + 'PyBufferedReaderType': PyBufferedReaderType, + 'PyBufferedWriterType': PyBufferedWriterType, + 'PyTextWrapperType': PyTextWrapperType, +} + +_incedental_reverse_typemap.update({ + "DictKeysType": type({}.keys()), + "DictValuesType": type({}.values()), + "DictItemsType": type({}.items()), + + "OdictKeysType": type(x.keys()), + "OdictValuesType": type(x.values()), + "OdictItemsType": type(x.items()), +}) + +if ExitType: + _incedental_reverse_typemap['ExitType'] = ExitType +if InputType: + _incedental_reverse_typemap['InputType'] = InputType + _incedental_reverse_typemap['OutputType'] = OutputType + +''' +try: + import symtable + _incedental_reverse_typemap["SymtableEntryType"] = type(symtable.symtable("", "string", "exec")._table) +except: #FIXME: fails to pickle + pass + +if sys.hexversion >= 0x30a00a0: + _incedental_reverse_typemap['LineIteratorType'] = type(compile('3', '', 'eval').co_lines()) +''' + +if sys.hexversion >= 0x30b00b0 and not IS_PYPY: + from types import GenericAlias + _incedental_reverse_typemap["GenericAliasIteratorType"] = type(iter(GenericAlias(list, (int,)))) + ''' + _incedental_reverse_typemap['PositionsIteratorType'] = type(compile('3', '', 'eval').co_positions()) + ''' + +try: + import winreg + _incedental_reverse_typemap["HKEYType"] = winreg.HKEYType +except ImportError: + pass + +_reverse_typemap.update(_incedental_reverse_typemap) +_incedental_types = set(_incedental_reverse_typemap.values()) + +del x + +_typemap = dict((v, k) for k, v in _reverse_typemap.items()) + +def _unmarshal(string): + return marshal.loads(string) + +def _load_type(name): + return _reverse_typemap[name] + +def _create_type(typeobj, *args): + return typeobj(*args) + +def _create_function(fcode, fglobals, fname=None, fdefaults=None, + fclosure=None, fdict=None, fkwdefaults=None): + # same as FunctionType, but enable passing __dict__ to new function, + # __dict__ is the storehouse for attributes added after function creation + func = FunctionType(fcode, fglobals or dict(), fname, fdefaults, fclosure) + if fdict is not None: + func.__dict__.update(fdict) #XXX: better copy? option to copy? + if fkwdefaults is not None: + func.__kwdefaults__ = fkwdefaults + # 'recurse' only stores referenced modules/objects in fglobals, + # thus we need to make sure that we have __builtins__ as well + if "__builtins__" not in func.__globals__: + func.__globals__["__builtins__"] = globals()["__builtins__"] + # assert id(fglobals) == id(func.__globals__) + return func + +class match: + """ + Make avaialable a limited structural pattern matching-like syntax for Python < 3.10 + + Patterns can be only tuples (without types) currently. + Inspired by the package pattern-matching-PEP634. + + Usage: + >>> with match(args) as m: + >>> if m.case(('x', 'y')): + >>> # use m.x and m.y + >>> elif m.case(('x', 'y', 'z')): + >>> # use m.x, m.y and m.z + + Equivalent native code for Python >= 3.10: + >>> match args: + >>> case (x, y): + >>> # use x and y + >>> case (x, y, z): + >>> # use x, y and z + """ + def __init__(self, value): + self.value = value + self._fields = None + def __enter__(self): + return self + def __exit__(self, *exc_info): + return False + def case(self, args): # *args, **kwargs): + """just handles tuple patterns""" + if len(self.value) != len(args): # + len(kwargs): + return False + #if not all(isinstance(arg, pat) for arg, pat in zip(self.value[len(args):], kwargs.values())): + # return False + self.args = args # (*args, *kwargs) + return True + @property + def fields(self): + # Only bind names to values if necessary. + if self._fields is None: + self._fields = dict(zip(self.args, self.value)) + return self._fields + def __getattr__(self, item): + return self.fields[item] + +ALL_CODE_PARAMS = [ + # Version New attribute CodeType parameters + ((3,11,'a'), 'co_endlinetable', 'argcount posonlyargcount kwonlyargcount nlocals stacksize flags code consts names varnames filename name qualname firstlineno linetable endlinetable columntable exceptiontable freevars cellvars'), + ((3,11), 'co_exceptiontable', 'argcount posonlyargcount kwonlyargcount nlocals stacksize flags code consts names varnames filename name qualname firstlineno linetable exceptiontable freevars cellvars'), + ((3,11,'p'), 'co_qualname', 'argcount posonlyargcount kwonlyargcount nlocals stacksize flags code consts names varnames filename name qualname firstlineno linetable freevars cellvars'), + ((3,10), 'co_linetable', 'argcount posonlyargcount kwonlyargcount nlocals stacksize flags code consts names varnames filename name firstlineno linetable freevars cellvars'), + ((3,8), 'co_posonlyargcount', 'argcount posonlyargcount kwonlyargcount nlocals stacksize flags code consts names varnames filename name firstlineno lnotab freevars cellvars'), + ((3,7), 'co_kwonlyargcount', 'argcount kwonlyargcount nlocals stacksize flags code consts names varnames filename name firstlineno lnotab freevars cellvars'), + ] +for version, new_attr, params in ALL_CODE_PARAMS: + if hasattr(CodeType, new_attr): + CODE_VERSION = version + CODE_PARAMS = params.split() + break +ENCODE_PARAMS = set(CODE_PARAMS).intersection( + ['code', 'lnotab', 'linetable', 'endlinetable', 'columntable', 'exceptiontable']) + +def _create_code(*args): + if not isinstance(args[0], int): # co_lnotab stored from >= 3.10 + LNOTAB, *args = args + else: # from < 3.10 (or pre-LNOTAB storage) + LNOTAB = b'' + + with match(args) as m: + # Python 3.11/3.12a (18 members) + if m.case(( + 'argcount', 'posonlyargcount', 'kwonlyargcount', 'nlocals', 'stacksize', 'flags', # args[0:6] + 'code', 'consts', 'names', 'varnames', 'filename', 'name', 'qualname', 'firstlineno', # args[6:14] + 'linetable', 'exceptiontable', 'freevars', 'cellvars' # args[14:] + )): + if CODE_VERSION == (3,11): + return CodeType( + *args[:6], + args[6].encode() if hasattr(args[6], 'encode') else args[6], # code + *args[7:14], + args[14].encode() if hasattr(args[14], 'encode') else args[14], # linetable + args[15].encode() if hasattr(args[15], 'encode') else args[15], # exceptiontable + args[16], + args[17], + ) + fields = m.fields + # PyPy 3.11 7.3.19+ (17 members) + elif m.case(( + 'argcount', 'posonlyargcount', 'kwonlyargcount', 'nlocals', 'stacksize', 'flags', # args[0:6] + 'code', 'consts', 'names', 'varnames', 'filename', 'name', 'qualname', # args[6:13] + 'firstlineno', 'linetable', 'freevars', 'cellvars' # args[13:] + )): + if CODE_VERSION == (3,11,'p'): + return CodeType( + *args[:6], + args[6].encode() if hasattr(args[6], 'encode') else args[6], # code + *args[7:14], + args[14].encode() if hasattr(args[14], 'encode') else args[14], # linetable + args[15], + args[16], + ) + fields = m.fields + # Python 3.10 or 3.8/3.9 (16 members) + elif m.case(( + 'argcount', 'posonlyargcount', 'kwonlyargcount', 'nlocals', 'stacksize', 'flags', # args[0:6] + 'code', 'consts', 'names', 'varnames', 'filename', 'name', 'firstlineno', # args[6:13] + 'LNOTAB_OR_LINETABLE', 'freevars', 'cellvars' # args[13:] + )): + if CODE_VERSION == (3,10) or CODE_VERSION == (3,8): + return CodeType( + *args[:6], + args[6].encode() if hasattr(args[6], 'encode') else args[6], # code + *args[7:13], + args[13].encode() if hasattr(args[13], 'encode') else args[13], # lnotab/linetable + args[14], + args[15], + ) + fields = m.fields + if CODE_VERSION >= (3,10): + fields['linetable'] = m.LNOTAB_OR_LINETABLE + else: + fields['lnotab'] = LNOTAB if LNOTAB else m.LNOTAB_OR_LINETABLE + # Python 3.7 (15 args) + elif m.case(( + 'argcount', 'kwonlyargcount', 'nlocals', 'stacksize', 'flags', # args[0:5] + 'code', 'consts', 'names', 'varnames', 'filename', 'name', 'firstlineno', # args[5:12] + 'lnotab', 'freevars', 'cellvars' # args[12:] + )): + if CODE_VERSION == (3,7): + return CodeType( + *args[:5], + args[5].encode() if hasattr(args[5], 'encode') else args[5], # code + *args[6:12], + args[12].encode() if hasattr(args[12], 'encode') else args[12], # lnotab + args[13], + args[14], + ) + fields = m.fields + # Python 3.11a (20 members) + elif m.case(( + 'argcount', 'posonlyargcount', 'kwonlyargcount', 'nlocals', 'stacksize', 'flags', # args[0:6] + 'code', 'consts', 'names', 'varnames', 'filename', 'name', 'qualname', 'firstlineno', # args[6:14] + 'linetable', 'endlinetable', 'columntable', 'exceptiontable', 'freevars', 'cellvars' # args[14:] + )): + if CODE_VERSION == (3,11,'a'): + return CodeType( + *args[:6], + args[6].encode() if hasattr(args[6], 'encode') else args[6], # code + *args[7:14], + *(a.encode() if hasattr(a, 'encode') else a for a in args[14:18]), # linetable-exceptiontable + args[18], + args[19], + ) + fields = m.fields + else: + raise UnpicklingError("pattern match for code object failed") + + # The args format doesn't match this version. + fields.setdefault('posonlyargcount', 0) # from python <= 3.7 + fields.setdefault('lnotab', LNOTAB) # from python >= 3.10 + fields.setdefault('linetable', b'') # from python <= 3.9 + fields.setdefault('qualname', fields['name']) # from python <= 3.10 + fields.setdefault('exceptiontable', b'') # from python <= 3.10 + fields.setdefault('endlinetable', None) # from python != 3.11a + fields.setdefault('columntable', None) # from python != 3.11a + + args = (fields[k].encode() if k in ENCODE_PARAMS and hasattr(fields[k], 'encode') else fields[k] + for k in CODE_PARAMS) + return CodeType(*args) + +def _create_ftype(ftypeobj, func, args, kwds): + if kwds is None: + kwds = {} + if args is None: + args = () + return ftypeobj(func, *args, **kwds) + +def _create_typing_tuple(argz, *args): #NOTE: workaround python/cpython#94245 + if not argz: + return typing.Tuple[()].copy_with(()) + if argz == ((),): + return typing.Tuple[()] + return typing.Tuple[argz] + +if ThreadHandleType: + def _create_thread_handle(ident, done, *args): #XXX: ignores 'blocking' + from threading import _make_thread_handle + handle = _make_thread_handle(ident) + if done: + handle._set_done() + return handle + +def _create_lock(locked, *args): #XXX: ignores 'blocking' + from threading import Lock + lock = Lock() + if locked: + if not lock.acquire(False): + raise UnpicklingError("Cannot acquire lock") + return lock + +def _create_rlock(count, owner, *args): #XXX: ignores 'blocking' + lock = RLockType() + if owner is not None: + lock._acquire_restore((count, owner)) + if owner and not lock._is_owned(): + raise UnpicklingError("Cannot acquire lock") + return lock + +# thanks to matsjoyce for adding all the different file modes +def _create_filehandle(name, mode, position, closed, open, strictio, fmode, fdata): # buffering=0 + # only pickles the handle, not the file contents... good? or StringIO(data)? + # (for file contents see: http://effbot.org/librarybook/copy-reg.htm) + # NOTE: handle special cases first (are there more special cases?) + names = {'':sys.__stdin__, '':sys.__stdout__, + '':sys.__stderr__} #XXX: better fileno=(0,1,2) ? + if name in list(names.keys()): + f = names[name] #XXX: safer "f=sys.stdin" + elif name == '': + f = os.tmpfile() + elif name == '': + import tempfile + f = tempfile.TemporaryFile(mode) + else: + try: + exists = os.path.exists(name) + except Exception: + exists = False + if not exists: + if strictio: + raise FileNotFoundError("[Errno 2] No such file or directory: '%s'" % name) + elif "r" in mode and fmode != FILE_FMODE: + name = '' # or os.devnull? + current_size = 0 # or maintain position? + else: + current_size = os.path.getsize(name) + + if position > current_size: + if strictio: + raise ValueError("invalid buffer size") + elif fmode == CONTENTS_FMODE: + position = current_size + # try to open the file by name + # NOTE: has different fileno + try: + #FIXME: missing: *buffering*, encoding, softspace + if fmode == FILE_FMODE: + f = open(name, mode if "w" in mode else "w") + f.write(fdata) + if "w" not in mode: + f.close() + f = open(name, mode) + elif name == '': # file did not exist + import tempfile + f = tempfile.TemporaryFile(mode) + # treat x mode as w mode + elif fmode == CONTENTS_FMODE \ + and ("w" in mode or "x" in mode): + # stop truncation when opening + flags = os.O_CREAT + if "+" in mode: + flags |= os.O_RDWR + else: + flags |= os.O_WRONLY + f = os.fdopen(os.open(name, flags), mode) + # set name to the correct value + r = getattr(f, "buffer", f) + r = getattr(r, "raw", r) + r.name = name + assert f.name == name + else: + f = open(name, mode) + except (IOError, FileNotFoundError): + err = sys.exc_info()[1] + raise UnpicklingError(err) + if closed: + f.close() + elif position >= 0 and fmode != HANDLE_FMODE: + f.seek(position) + return f + +def _create_stringi(value, position, closed): + f = StringIO(value) + if closed: f.close() + else: f.seek(position) + return f + +def _create_stringo(value, position, closed): + f = StringIO() + if closed: f.close() + else: + f.write(value) + f.seek(position) + return f + +class _itemgetter_helper(object): + def __init__(self): + self.items = [] + def __getitem__(self, item): + self.items.append(item) + return + +class _attrgetter_helper(object): + def __init__(self, attrs, index=None): + self.attrs = attrs + self.index = index + def __getattribute__(self, attr): + attrs = object.__getattribute__(self, "attrs") + index = object.__getattribute__(self, "index") + if index is None: + index = len(attrs) + attrs.append(attr) + else: + attrs[index] = ".".join([attrs[index], attr]) + return type(self)(attrs, index) + +class _dictproxy_helper(dict): + def __ror__(self, a): + return a + +_dictproxy_helper_instance = _dictproxy_helper() + +__d = {} +try: + # In CPython 3.9 and later, this trick can be used to exploit the + # implementation of the __or__ function of MappingProxyType to get the true + # mapping referenced by the proxy. It may work for other implementations, + # but is not guaranteed. + MAPPING_PROXY_TRICK = __d is (DictProxyType(__d) | _dictproxy_helper_instance) +except Exception: + MAPPING_PROXY_TRICK = False +del __d + +# _CELL_REF and _CELL_EMPTY are used to stay compatible with versions of dill +# whose _create_cell functions do not have a default value. +# _CELL_REF can be safely removed entirely (replaced by empty tuples for calls +# to _create_cell) once breaking changes are allowed. +_CELL_REF = None +_CELL_EMPTY = Sentinel('_CELL_EMPTY') + +def _create_cell(contents=None): + if contents is not _CELL_EMPTY: + value = contents + return (lambda: value).__closure__[0] + +def _create_weakref(obj, *args): + from weakref import ref + if obj is None: # it's dead + from collections import UserDict + return ref(UserDict(), *args) + return ref(obj, *args) + +def _create_weakproxy(obj, callable=False, *args): + from weakref import proxy + if obj is None: # it's dead + if callable: return proxy(lambda x:x, *args) + from collections import UserDict + return proxy(UserDict(), *args) + return proxy(obj, *args) + +def _eval_repr(repr_str): + return eval(repr_str) + +def _create_array(f, args, state, npdict=None): + #array = numpy.core.multiarray._reconstruct(*args) + array = f(*args) + array.__setstate__(state) + if npdict is not None: # we also have saved state in __dict__ + array.__dict__.update(npdict) + return array + +def _create_dtypemeta(scalar_type): + if NumpyDType is True: __hook__() # a bit hacky I think + if scalar_type is None: + return NumpyDType + return type(NumpyDType(scalar_type)) + +def _create_namedtuple(name, fieldnames, modulename, defaults=None): + class_ = _import_module(modulename + '.' + name, safe=True) + if class_ is not None: + return class_ + import collections + t = collections.namedtuple(name, fieldnames, defaults=defaults, module=modulename) + return t + +def _create_capsule(pointer, name, context, destructor): + attr_found = False + try: + # based on https://github.com/python/cpython/blob/f4095e53ab708d95e019c909d5928502775ba68f/Objects/capsule.c#L209-L231 + uname = name.decode('utf8') + for i in range(1, uname.count('.')+1): + names = uname.rsplit('.', i) + try: + module = __import__(names[0]) + except ImportError: + pass + obj = module + for attr in names[1:]: + obj = getattr(obj, attr) + capsule = obj + attr_found = True + break + except Exception: + pass + + if attr_found: + if _PyCapsule_IsValid(capsule, name): + return capsule + raise UnpicklingError("%s object exists at %s but a PyCapsule object was expected." % (type(capsule), name)) + else: + #warnings.warn('Creating a new PyCapsule %s for a C data structure that may not be present in memory. Segmentation faults or other memory errors are possible.' % (name,), UnpicklingWarning) + capsule = _PyCapsule_New(pointer, name, destructor) + _PyCapsule_SetContext(capsule, context) + return capsule + +def _getattr(objclass, name, repr_str): + # hack to grab the reference directly + try: #XXX: works only for __builtin__ ? + attr = repr_str.split("'")[3] + return eval(attr+'.__dict__["'+name+'"]') + except Exception: + try: + attr = objclass.__dict__ + if type(attr) is DictProxyType: + attr = attr[name] + else: + attr = getattr(objclass,name) + except (AttributeError, KeyError): + attr = getattr(objclass,name) + return attr + +def _get_attr(self, name): + # stop recursive pickling + return getattr(self, name, None) or getattr(__builtin__, name) + +def _import_module(import_name, safe=False): + try: + if import_name.startswith('__runtime__.'): + return sys.modules[import_name] + elif '.' in import_name: + items = import_name.split('.') + module = '.'.join(items[:-1]) + obj = items[-1] + submodule = getattr(__import__(module, None, None, [obj]), obj) + if isinstance(submodule, (ModuleType, type)): + return submodule + return __import__(import_name, None, None, [obj]) + else: + return __import__(import_name) + except (ImportError, AttributeError, KeyError): + if safe: + return None + raise + +# https://github.com/python/cpython/blob/a8912a0f8d9eba6d502c37d522221f9933e976db/Lib/pickle.py#L322-L333 +def _getattribute(obj, name): + for subpath in name.split('.'): + if subpath == '': + raise AttributeError("Can't get local attribute {!r} on {!r}" + .format(name, obj)) + try: + parent = obj + obj = getattr(obj, subpath) + except AttributeError: + raise AttributeError("Can't get attribute {!r} on {!r}" + .format(name, obj)) + return obj, parent + +def _locate_function(obj, pickler=None): + module_name = getattr(obj, '__module__', None) + if module_name in ['__main__', None] or \ + pickler and is_dill(pickler, child=False) and pickler._session and module_name == pickler._main.__name__: + return False + if hasattr(obj, '__qualname__'): + module = _import_module(module_name, safe=True) + try: + found, _ = _getattribute(module, obj.__qualname__) + return found is obj + except AttributeError: + return False + else: + found = _import_module(module_name + '.' + obj.__name__, safe=True) + return found is obj + + +def _setitems(dest, source): + for k, v in source.items(): + dest[k] = v + + +def _save_with_postproc(pickler, reduction, is_pickler_dill=None, obj=Getattr.NO_DEFAULT, postproc_list=None): + if obj is Getattr.NO_DEFAULT: + obj = Reduce(reduction) # pragma: no cover + + if is_pickler_dill is None: + is_pickler_dill = is_dill(pickler, child=True) + if is_pickler_dill: + # assert id(obj) not in pickler._postproc, str(obj) + ' already pushed on stack!' + # if not hasattr(pickler, 'x'): pickler.x = 0 + # print(pickler.x*' ', 'push', obj, id(obj), pickler._recurse) + # pickler.x += 1 + if postproc_list is None: + postproc_list = [] + + # Recursive object not supported. Default to a global instead. + if id(obj) in pickler._postproc: + name = '%s.%s ' % (obj.__module__, getattr(obj, '__qualname__', obj.__name__)) if hasattr(obj, '__module__') else '' + warnings.warn('Cannot pickle %r: %shas recursive self-references that trigger a RecursionError.' % (obj, name), PicklingWarning) + pickler.save_global(obj) + return + pickler._postproc[id(obj)] = postproc_list + + # TODO: Use state_setter in Python 3.8 to allow for faster cPickle implementations + pickler.save_reduce(*reduction, obj=obj) + + if is_pickler_dill: + # pickler.x -= 1 + # print(pickler.x*' ', 'pop', obj, id(obj)) + postproc = pickler._postproc.pop(id(obj)) + # assert postproc_list == postproc, 'Stack tampered!' + for reduction in reversed(postproc): + if reduction[0] is _setitems: + # use the internal machinery of pickle.py to speedup when + # updating a dictionary in postproc + dest, source = reduction[1] + if source: + pickler.write(pickler.get(pickler.memo[id(dest)][0])) + if sys.hexversion < 0x30e00a1: + pickler._batch_setitems(iter(source.items())) + else: + pickler._batch_setitems(iter(source.items()), obj=obj) + else: + # Updating with an empty dictionary. Same as doing nothing. + continue + else: + pickler.save_reduce(*reduction) + # pop None created by calling preprocessing step off stack + pickler.write(POP) + +#@register(CodeType) +#def save_code(pickler, obj): +# logger.trace(pickler, "Co: %s", obj) +# pickler.save_reduce(_unmarshal, (marshal.dumps(obj),), obj=obj) +# logger.trace(pickler, "# Co") +# return + +# The following function is based on 'save_codeobject' from 'cloudpickle' +# Copyright (c) 2012, Regents of the University of California. +# Copyright (c) 2009 `PiCloud, Inc. `_. +# License: https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE +@register(CodeType) +def save_code(pickler, obj): + logger.trace(pickler, "Co: %s", obj) + if hasattr(obj, "co_endlinetable"): # python 3.11a (20 args) + args = ( + obj.co_lnotab, # for < python 3.10 [not counted in args] + obj.co_argcount, obj.co_posonlyargcount, + obj.co_kwonlyargcount, obj.co_nlocals, obj.co_stacksize, + obj.co_flags, obj.co_code, obj.co_consts, obj.co_names, + obj.co_varnames, obj.co_filename, obj.co_name, obj.co_qualname, + obj.co_firstlineno, obj.co_linetable, obj.co_endlinetable, + obj.co_columntable, obj.co_exceptiontable, obj.co_freevars, + obj.co_cellvars + ) + elif hasattr(obj, "co_exceptiontable"): # python 3.11 (18 args) + with warnings.catch_warnings(): + if not OLD312a7: # issue 597 + warnings.filterwarnings('ignore', category=DeprecationWarning) + args = ( + obj.co_lnotab, # for < python 3.10 [not counted in args] + obj.co_argcount, obj.co_posonlyargcount, + obj.co_kwonlyargcount, obj.co_nlocals, obj.co_stacksize, + obj.co_flags, obj.co_code, obj.co_consts, obj.co_names, + obj.co_varnames, obj.co_filename, obj.co_name, obj.co_qualname, + obj.co_firstlineno, obj.co_linetable, obj.co_exceptiontable, + obj.co_freevars, obj.co_cellvars + ) + elif hasattr(obj, "co_qualname"): # pypy 3.11 7.3.19+ (17 args) + args = ( + obj.co_lnotab, obj.co_argcount, obj.co_posonlyargcount, + obj.co_kwonlyargcount, obj.co_nlocals, obj.co_stacksize, + obj.co_flags, obj.co_code, obj.co_consts, obj.co_names, + obj.co_varnames, obj.co_filename, obj.co_name, obj.co_qualname, + obj.co_firstlineno, obj.co_linetable, obj.co_freevars, + obj.co_cellvars + ) + elif hasattr(obj, "co_linetable"): # python 3.10 (16 args) + args = ( + obj.co_lnotab, # for < python 3.10 [not counted in args] + obj.co_argcount, obj.co_posonlyargcount, + obj.co_kwonlyargcount, obj.co_nlocals, obj.co_stacksize, + obj.co_flags, obj.co_code, obj.co_consts, obj.co_names, + obj.co_varnames, obj.co_filename, obj.co_name, + obj.co_firstlineno, obj.co_linetable, obj.co_freevars, + obj.co_cellvars + ) + elif hasattr(obj, "co_posonlyargcount"): # python 3.8 (16 args) + args = ( + obj.co_argcount, obj.co_posonlyargcount, + obj.co_kwonlyargcount, obj.co_nlocals, obj.co_stacksize, + obj.co_flags, obj.co_code, obj.co_consts, obj.co_names, + obj.co_varnames, obj.co_filename, obj.co_name, + obj.co_firstlineno, obj.co_lnotab, obj.co_freevars, + obj.co_cellvars + ) + else: # python 3.7 (15 args) + args = ( + obj.co_argcount, obj.co_kwonlyargcount, obj.co_nlocals, + obj.co_stacksize, obj.co_flags, obj.co_code, obj.co_consts, + obj.co_names, obj.co_varnames, obj.co_filename, + obj.co_name, obj.co_firstlineno, obj.co_lnotab, + obj.co_freevars, obj.co_cellvars + ) + + pickler.save_reduce(_create_code, args, obj=obj) + logger.trace(pickler, "# Co") + return + +def _repr_dict(obj): + """Make a short string representation of a dictionary.""" + return "<%s object at %#012x>" % (type(obj).__name__, id(obj)) + +@register(dict) +def save_module_dict(pickler, obj): + if is_dill(pickler, child=False) and obj == pickler._main.__dict__ and \ + not (pickler._session and pickler._first_pass): + logger.trace(pickler, "D1: %s", _repr_dict(obj)) # obj + pickler.write(bytes('c__builtin__\n__main__\n', 'UTF-8')) + logger.trace(pickler, "# D1") + elif (not is_dill(pickler, child=False)) and (obj == _main_module.__dict__): + logger.trace(pickler, "D3: %s", _repr_dict(obj)) # obj + pickler.write(bytes('c__main__\n__dict__\n', 'UTF-8')) #XXX: works in general? + logger.trace(pickler, "# D3") + elif '__name__' in obj and obj != _main_module.__dict__ \ + and type(obj['__name__']) is str \ + and obj is getattr(_import_module(obj['__name__'],True), '__dict__', None): + logger.trace(pickler, "D4: %s", _repr_dict(obj)) # obj + pickler.write(bytes('c%s\n__dict__\n' % obj['__name__'], 'UTF-8')) + logger.trace(pickler, "# D4") + else: + logger.trace(pickler, "D2: %s", _repr_dict(obj)) # obj + if is_dill(pickler, child=False) and pickler._session: + # we only care about session the first pass thru + pickler._first_pass = False + StockPickler.save_dict(pickler, obj) + logger.trace(pickler, "# D2") + return + + +if not OLD310 and MAPPING_PROXY_TRICK: + def save_dict_view(dicttype): + def save_dict_view_for_function(func): + def _save_dict_view(pickler, obj): + logger.trace(pickler, "Dkvi: <%s>", obj) + mapping = obj.mapping | _dictproxy_helper_instance + pickler.save_reduce(func, (mapping,), obj=obj) + logger.trace(pickler, "# Dkvi") + return _save_dict_view + return [ + (funcname, save_dict_view_for_function(getattr(dicttype, funcname))) + for funcname in ('keys', 'values', 'items') + ] +else: + # The following functions are based on 'cloudpickle' + # https://github.com/cloudpipe/cloudpickle/blob/5d89947288a18029672596a4d719093cc6d5a412/cloudpickle/cloudpickle.py#L922-L940 + # Copyright (c) 2012, Regents of the University of California. + # Copyright (c) 2009 `PiCloud, Inc. `_. + # License: https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE + def save_dict_view(dicttype): + def save_dict_keys(pickler, obj): + logger.trace(pickler, "Dk: <%s>", obj) + dict_constructor = _shims.Reduce(dicttype.fromkeys, (list(obj),)) + pickler.save_reduce(dicttype.keys, (dict_constructor,), obj=obj) + logger.trace(pickler, "# Dk") + + def save_dict_values(pickler, obj): + logger.trace(pickler, "Dv: <%s>", obj) + dict_constructor = _shims.Reduce(dicttype, (enumerate(obj),)) + pickler.save_reduce(dicttype.values, (dict_constructor,), obj=obj) + logger.trace(pickler, "# Dv") + + def save_dict_items(pickler, obj): + logger.trace(pickler, "Di: <%s>", obj) + pickler.save_reduce(dicttype.items, (dicttype(obj),), obj=obj) + logger.trace(pickler, "# Di") + + return ( + ('keys', save_dict_keys), + ('values', save_dict_values), + ('items', save_dict_items) + ) + +for __dicttype in ( + dict, + OrderedDict +): + __obj = __dicttype() + for __funcname, __savefunc in save_dict_view(__dicttype): + __tview = type(getattr(__obj, __funcname)()) + if __tview not in Pickler.dispatch: + Pickler.dispatch[__tview] = __savefunc +del __dicttype, __obj, __funcname, __tview, __savefunc + + +@register(ClassType) +def save_classobj(pickler, obj): #FIXME: enable pickler._byref + if not _locate_function(obj, pickler): + logger.trace(pickler, "C1: %s", obj) + pickler.save_reduce(ClassType, (obj.__name__, obj.__bases__, + obj.__dict__), obj=obj) + #XXX: or obj.__dict__.copy()), obj=obj) ? + logger.trace(pickler, "# C1") + else: + logger.trace(pickler, "C2: %s", obj) + name = getattr(obj, '__qualname__', getattr(obj, '__name__', None)) + StockPickler.save_global(pickler, obj, name=name) + logger.trace(pickler, "# C2") + return + +@register(typing._GenericAlias) +def save_generic_alias(pickler, obj): + args = obj.__args__ + if type(obj.__reduce__()) is str: + logger.trace(pickler, "Ga0: %s", obj) + StockPickler.save_global(pickler, obj, name=obj.__reduce__()) + logger.trace(pickler, "# Ga0") + elif obj.__origin__ is tuple and (not args or args == ((),)): + logger.trace(pickler, "Ga1: %s", obj) + pickler.save_reduce(_create_typing_tuple, (args,), obj=obj) + logger.trace(pickler, "# Ga1") + else: + logger.trace(pickler, "Ga2: %s", obj) + StockPickler.save_reduce(pickler, *obj.__reduce__(), obj=obj) + logger.trace(pickler, "# Ga2") + return + +if ThreadHandleType: + @register(ThreadHandleType) + def save_thread_handle(pickler, obj): + logger.trace(pickler, "Th: %s", obj) + pickler.save_reduce(_create_thread_handle, (obj.ident, obj.is_done()), obj=obj) + logger.trace(pickler, "# Th") + return + +@register(LockType) #XXX: copied Thread will have new Event (due to new Lock) +def save_lock(pickler, obj): + logger.trace(pickler, "Lo: %s", obj) + pickler.save_reduce(_create_lock, (obj.locked(),), obj=obj) + logger.trace(pickler, "# Lo") + return + +@register(RLockType) +def save_rlock(pickler, obj): + logger.trace(pickler, "RL: %s", obj) + r = obj.__repr__() # don't use _release_save as it unlocks the lock + count = int(r.split('count=')[1].split()[0].rstrip('>')) + owner = int(r.split('owner=')[1].split()[0]) + pickler.save_reduce(_create_rlock, (count,owner,), obj=obj) + logger.trace(pickler, "# RL") + return + +#@register(SocketType) #FIXME: causes multiprocess test_pickling FAIL +def save_socket(pickler, obj): + logger.trace(pickler, "So: %s", obj) + pickler.save_reduce(*reduce_socket(obj)) + logger.trace(pickler, "# So") + return + +def _save_file(pickler, obj, open_): + if obj.closed: + position = 0 + else: + obj.flush() + if obj in (sys.__stdout__, sys.__stderr__, sys.__stdin__): + position = -1 + else: + position = obj.tell() + if is_dill(pickler, child=True) and pickler._fmode == FILE_FMODE: + f = open_(obj.name, "r") + fdata = f.read() + f.close() + else: + fdata = "" + if is_dill(pickler, child=True): + strictio = pickler._strictio + fmode = pickler._fmode + else: + strictio = False + fmode = 0 # HANDLE_FMODE + pickler.save_reduce(_create_filehandle, (obj.name, obj.mode, position, + obj.closed, open_, strictio, + fmode, fdata), obj=obj) + return + + +@register(FileType) #XXX: in 3.x has buffer=0, needs different _create? +@register(BufferedReaderType) +@register(BufferedWriterType) +@register(TextWrapperType) +def save_file(pickler, obj): + logger.trace(pickler, "Fi: %s", obj) + f = _save_file(pickler, obj, open) + logger.trace(pickler, "# Fi") + return f + +if BufferedRandomType: + @register(BufferedRandomType) + def save_file(pickler, obj): + logger.trace(pickler, "Fi: %s", obj) + f = _save_file(pickler, obj, open) + logger.trace(pickler, "# Fi") + return f + +if PyTextWrapperType: + @register(PyBufferedReaderType) + @register(PyBufferedWriterType) + @register(PyTextWrapperType) + def save_file(pickler, obj): + logger.trace(pickler, "Fi: %s", obj) + f = _save_file(pickler, obj, _open) + logger.trace(pickler, "# Fi") + return f + + if PyBufferedRandomType: + @register(PyBufferedRandomType) + def save_file(pickler, obj): + logger.trace(pickler, "Fi: %s", obj) + f = _save_file(pickler, obj, _open) + logger.trace(pickler, "# Fi") + return f + + +# The following two functions are based on 'saveCStringIoInput' +# and 'saveCStringIoOutput' from spickle +# Copyright (c) 2011 by science+computing ag +# License: http://www.apache.org/licenses/LICENSE-2.0 +if InputType: + @register(InputType) + def save_stringi(pickler, obj): + logger.trace(pickler, "Io: %s", obj) + if obj.closed: + value = ''; position = 0 + else: + value = obj.getvalue(); position = obj.tell() + pickler.save_reduce(_create_stringi, (value, position, \ + obj.closed), obj=obj) + logger.trace(pickler, "# Io") + return + + @register(OutputType) + def save_stringo(pickler, obj): + logger.trace(pickler, "Io: %s", obj) + if obj.closed: + value = ''; position = 0 + else: + value = obj.getvalue(); position = obj.tell() + pickler.save_reduce(_create_stringo, (value, position, \ + obj.closed), obj=obj) + logger.trace(pickler, "# Io") + return + +if LRUCacheType is not None: + from functools import lru_cache + @register(LRUCacheType) + def save_lru_cache(pickler, obj): + logger.trace(pickler, "LRU: %s", obj) + if OLD39: + kwargs = obj.cache_info() + args = (kwargs.maxsize,) + else: + kwargs = obj.cache_parameters() + args = (kwargs['maxsize'], kwargs['typed']) + if args != lru_cache.__defaults__: + wrapper = Reduce(lru_cache, args, is_callable=True) + else: + wrapper = lru_cache + pickler.save_reduce(wrapper, (obj.__wrapped__,), obj=obj) + logger.trace(pickler, "# LRU") + return + +@register(SuperType) +def save_super(pickler, obj): + logger.trace(pickler, "Su: %s", obj) + pickler.save_reduce(super, (obj.__thisclass__, obj.__self__), obj=obj) + logger.trace(pickler, "# Su") + return + +if IS_PYPY: + @register(MethodType) + def save_instancemethod0(pickler, obj): + code = getattr(obj.__func__, '__code__', None) + if code is not None and type(code) is not CodeType \ + and getattr(obj.__self__, obj.__name__) == obj: + # Some PyPy builtin functions have no module name + logger.trace(pickler, "Me2: %s", obj) + # TODO: verify that this works for all PyPy builtin methods + pickler.save_reduce(getattr, (obj.__self__, obj.__name__), obj=obj) + logger.trace(pickler, "# Me2") + return + + logger.trace(pickler, "Me1: %s", obj) + pickler.save_reduce(MethodType, (obj.__func__, obj.__self__), obj=obj) + logger.trace(pickler, "# Me1") + return +else: + @register(MethodType) + def save_instancemethod0(pickler, obj): + logger.trace(pickler, "Me1: %s", obj) + pickler.save_reduce(MethodType, (obj.__func__, obj.__self__), obj=obj) + logger.trace(pickler, "# Me1") + return + +if not IS_PYPY: + @register(MemberDescriptorType) + @register(GetSetDescriptorType) + @register(MethodDescriptorType) + @register(WrapperDescriptorType) + @register(ClassMethodDescriptorType) + def save_wrapper_descriptor(pickler, obj): + logger.trace(pickler, "Wr: %s", obj) + pickler.save_reduce(_getattr, (obj.__objclass__, obj.__name__, + obj.__repr__()), obj=obj) + logger.trace(pickler, "# Wr") + return +else: + @register(MemberDescriptorType) + @register(GetSetDescriptorType) + def save_wrapper_descriptor(pickler, obj): + logger.trace(pickler, "Wr: %s", obj) + pickler.save_reduce(_getattr, (obj.__objclass__, obj.__name__, + obj.__repr__()), obj=obj) + logger.trace(pickler, "# Wr") + return + +@register(CellType) +def save_cell(pickler, obj): + try: + f = obj.cell_contents + except ValueError: # cell is empty + logger.trace(pickler, "Ce3: %s", obj) + # _shims._CELL_EMPTY is defined in _shims.py to support PyPy 2.7. + # It unpickles to a sentinel object _dill._CELL_EMPTY, also created in + # _shims.py. This object is not present in Python 3 because the cell's + # contents can be deleted in newer versions of Python. The reduce object + # will instead unpickle to None if unpickled in Python 3. + + # When breaking changes are made to dill, (_shims._CELL_EMPTY,) can + # be replaced by () OR the delattr function can be removed repending on + # whichever is more convienient. + pickler.save_reduce(_create_cell, (_shims._CELL_EMPTY,), obj=obj) + # Call the function _delattr on the cell's cell_contents attribute + # The result of this function call will be None + pickler.save_reduce(_shims._delattr, (obj, 'cell_contents')) + # pop None created by calling _delattr off stack + pickler.write(POP) + logger.trace(pickler, "# Ce3") + return + if is_dill(pickler, child=True): + if id(f) in pickler._postproc: + # Already seen. Add to its postprocessing. + postproc = pickler._postproc[id(f)] + else: + # Haven't seen it. Add to the highest possible object and set its + # value as late as possible to prevent cycle. + postproc = next(iter(pickler._postproc.values()), None) + if postproc is not None: + logger.trace(pickler, "Ce2: %s", obj) + # _CELL_REF is defined in _shims.py to support older versions of + # dill. When breaking changes are made to dill, (_CELL_REF,) can + # be replaced by () + pickler.save_reduce(_create_cell, (_CELL_REF,), obj=obj) + postproc.append((_shims._setattr, (obj, 'cell_contents', f))) + logger.trace(pickler, "# Ce2") + return + logger.trace(pickler, "Ce1: %s", obj) + pickler.save_reduce(_create_cell, (f,), obj=obj) + logger.trace(pickler, "# Ce1") + return + +if MAPPING_PROXY_TRICK: + @register(DictProxyType) + def save_dictproxy(pickler, obj): + logger.trace(pickler, "Mp: %s", _repr_dict(obj)) # obj + mapping = obj | _dictproxy_helper_instance + pickler.save_reduce(DictProxyType, (mapping,), obj=obj) + logger.trace(pickler, "# Mp") + return +else: + @register(DictProxyType) + def save_dictproxy(pickler, obj): + logger.trace(pickler, "Mp: %s", _repr_dict(obj)) # obj + pickler.save_reduce(DictProxyType, (obj.copy(),), obj=obj) + logger.trace(pickler, "# Mp") + return + +@register(SliceType) +def save_slice(pickler, obj): + logger.trace(pickler, "Sl: %s", obj) + pickler.save_reduce(slice, (obj.start, obj.stop, obj.step), obj=obj) + logger.trace(pickler, "# Sl") + return + +@register(XRangeType) +@register(EllipsisType) +@register(NotImplementedType) +def save_singleton(pickler, obj): + logger.trace(pickler, "Si: %s", obj) + pickler.save_reduce(_eval_repr, (obj.__repr__(),), obj=obj) + logger.trace(pickler, "# Si") + return + +def _proxy_helper(obj): # a dead proxy returns a reference to None + """get memory address of proxy's reference object""" + _repr = repr(obj) + try: _str = str(obj) + except ReferenceError: # it's a dead proxy + return id(None) + if _str == _repr: return id(obj) # it's a repr + try: # either way, it's a proxy from here + address = int(_str.rstrip('>').split(' at ')[-1], base=16) + except ValueError: # special case: proxy of a 'type' + if not IS_PYPY: + address = int(_repr.rstrip('>').split(' at ')[-1], base=16) + else: + objects = iter(gc.get_objects()) + for _obj in objects: + if repr(_obj) == _str: return id(_obj) + # all bad below... nothing found so throw ReferenceError + msg = "Cannot reference object for proxy at '%s'" % id(obj) + raise ReferenceError(msg) + return address + +def _locate_object(address, module=None): + """get object located at the given memory address (inverse of id(obj))""" + special = [None, True, False] #XXX: more...? + for obj in special: + if address == id(obj): return obj + if module: + objects = iter(module.__dict__.values()) + else: objects = iter(gc.get_objects()) + for obj in objects: + if address == id(obj): return obj + # all bad below... nothing found so throw ReferenceError or TypeError + try: address = hex(address) + except TypeError: + raise TypeError("'%s' is not a valid memory address" % str(address)) + raise ReferenceError("Cannot reference object at '%s'" % address) + +@register(ReferenceType) +def save_weakref(pickler, obj): + refobj = obj() + logger.trace(pickler, "R1: %s", obj) + #refobj = ctypes.pythonapi.PyWeakref_GetObject(obj) # dead returns "None" + pickler.save_reduce(_create_weakref, (refobj,), obj=obj) + logger.trace(pickler, "# R1") + return + +@register(ProxyType) +@register(CallableProxyType) +def save_weakproxy(pickler, obj): + # Must do string substitution here and use %r to avoid ReferenceError. + logger.trace(pickler, "R2: %r" % obj) + refobj = _locate_object(_proxy_helper(obj)) + pickler.save_reduce(_create_weakproxy, (refobj, callable(obj)), obj=obj) + logger.trace(pickler, "# R2") + return + +def _is_builtin_module(module): + if not hasattr(module, "__file__"): return True + if module.__file__ is None: return False + # If a module file name starts with prefix, it should be a builtin + # module, so should always be pickled as a reference. + names = ["base_prefix", "base_exec_prefix", "exec_prefix", "prefix", "real_prefix"] + rp = os.path.realpath + # See https://github.com/uqfoundation/dill/issues/566 + return ( + any( + module.__file__.startswith(getattr(sys, name)) + or rp(module.__file__).startswith(rp(getattr(sys, name))) + for name in names + if hasattr(sys, name) + ) + or module.__file__.endswith(EXTENSION_SUFFIXES) + or 'site-packages' in module.__file__ + ) + +def _is_imported_module(module): + return getattr(module, '__loader__', None) is not None or module in sys.modules.values() + +@register(ModuleType) +def save_module(pickler, obj): + if False: #_use_diff: + if obj.__name__.split('.', 1)[0] != "dill": + try: + changed = diff.whats_changed(obj, seen=pickler._diff_cache)[0] + except RuntimeError: # not memorised module, probably part of dill + pass + else: + logger.trace(pickler, "M2: %s with diff", obj) + logger.info("Diff: %s", changed.keys()) + pickler.save_reduce(_import_module, (obj.__name__,), obj=obj, + state=changed) + logger.trace(pickler, "# M2") + return + + logger.trace(pickler, "M1: %s", obj) + pickler.save_reduce(_import_module, (obj.__name__,), obj=obj) + logger.trace(pickler, "# M1") + else: + builtin_mod = _is_builtin_module(obj) + is_session_main = is_dill(pickler, child=True) and obj is pickler._main + if (obj.__name__ not in ("builtins", "dill", "dill._dill") and not builtin_mod + or is_session_main): + logger.trace(pickler, "M1: %s", obj) + # Hack for handling module-type objects in load_module(). + mod_name = obj.__name__ if _is_imported_module(obj) else '__runtime__.%s' % obj.__name__ + # Second references are saved as __builtin__.__main__ in save_module_dict(). + main_dict = obj.__dict__.copy() + for item in ('__builtins__', '__loader__'): + main_dict.pop(item, None) + for item in IPYTHON_SINGLETONS: #pragma: no cover + if getattr(main_dict.get(item), '__module__', '').startswith('IPython'): + del main_dict[item] + pickler.save_reduce(_import_module, (mod_name,), obj=obj, state=main_dict) + logger.trace(pickler, "# M1") + elif obj.__name__ == "dill._dill": + logger.trace(pickler, "M2: %s", obj) + pickler.save_global(obj, name="_dill") + logger.trace(pickler, "# M2") + else: + logger.trace(pickler, "M2: %s", obj) + pickler.save_reduce(_import_module, (obj.__name__,), obj=obj) + logger.trace(pickler, "# M2") + return + +# The following function is based on '_extract_class_dict' from 'cloudpickle' +# Copyright (c) 2012, Regents of the University of California. +# Copyright (c) 2009 `PiCloud, Inc. `_. +# License: https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE +def _get_typedict_type(cls, clsdict, attrs, postproc_list): + """Retrieve a copy of the dict of a class without the inherited methods""" + if len(cls.__bases__) == 1: + inherited_dict = cls.__bases__[0].__dict__ + else: + inherited_dict = {} + for base in reversed(cls.__bases__): + inherited_dict.update(base.__dict__) + to_remove = [] + for name, value in dict.items(clsdict): + try: + base_value = inherited_dict[name] + if value is base_value and hasattr(value, '__qualname__'): + to_remove.append(name) + except KeyError: + pass + for name in to_remove: + dict.pop(clsdict, name) + + if issubclass(type(cls), type): + clsdict.pop('__dict__', None) + clsdict.pop('__weakref__', None) + # clsdict.pop('__prepare__', None) + return clsdict, attrs + +def _get_typedict_abc(obj, _dict, attrs, postproc_list): + if hasattr(abc, '_get_dump'): + (registry, _, _, _) = abc._get_dump(obj) + register = obj.register + postproc_list.extend((register, (reg(),)) for reg in registry) + elif hasattr(obj, '_abc_registry'): + registry = obj._abc_registry + register = obj.register + postproc_list.extend((register, (reg,)) for reg in registry) + else: + raise PicklingError("Cannot find registry of ABC %s", obj) + + if '_abc_registry' in _dict: + _dict.pop('_abc_registry', None) + _dict.pop('_abc_cache', None) + _dict.pop('_abc_negative_cache', None) + # _dict.pop('_abc_negative_cache_version', None) + else: + _dict.pop('_abc_impl', None) + return _dict, attrs + +@register(TypeType) +def save_type(pickler, obj, postproc_list=None): + if obj in _typemap: + logger.trace(pickler, "T1: %s", obj) + # if obj in _incedental_types: + # warnings.warn('Type %r may only exist on this implementation of Python and cannot be unpickled in other implementations.' % (obj,), PicklingWarning) + pickler.save_reduce(_load_type, (_typemap[obj],), obj=obj) + logger.trace(pickler, "# T1") + elif obj.__bases__ == (tuple,) and all([hasattr(obj, attr) for attr in ('_fields','_asdict','_make','_replace')]): + # special case: namedtuples + logger.trace(pickler, "T6: %s", obj) + + obj_name = getattr(obj, '__qualname__', getattr(obj, '__name__', None)) + if obj.__name__ != obj_name: + if postproc_list is None: + postproc_list = [] + postproc_list.append((setattr, (obj, '__qualname__', obj_name))) + + if not obj._field_defaults: + _save_with_postproc(pickler, (_create_namedtuple, (obj.__name__, obj._fields, obj.__module__)), obj=obj, postproc_list=postproc_list) + else: + defaults = [obj._field_defaults[field] for field in obj._fields if field in obj._field_defaults] + _save_with_postproc(pickler, (_create_namedtuple, (obj.__name__, obj._fields, obj.__module__, defaults)), obj=obj, postproc_list=postproc_list) + logger.trace(pickler, "# T6") + return + + # special caes: NoneType, NotImplementedType, EllipsisType, EnumMeta, etc + elif obj is type(None): + logger.trace(pickler, "T7: %s", obj) + #XXX: pickler.save_reduce(type, (None,), obj=obj) + pickler.write(GLOBAL + b'__builtin__\nNoneType\n') + logger.trace(pickler, "# T7") + elif obj is NotImplementedType: + logger.trace(pickler, "T7: %s", obj) + pickler.save_reduce(type, (NotImplemented,), obj=obj) + logger.trace(pickler, "# T7") + elif obj is EllipsisType: + logger.trace(pickler, "T7: %s", obj) + pickler.save_reduce(type, (Ellipsis,), obj=obj) + logger.trace(pickler, "# T7") + elif obj is EnumMeta: + logger.trace(pickler, "T7: %s", obj) + pickler.write(GLOBAL + b'enum\nEnumMeta\n') + logger.trace(pickler, "# T7") + elif obj is ExceptHookArgsType: #NOTE: must be after NoneType for pypy + logger.trace(pickler, "T7: %s", obj) + pickler.write(GLOBAL + b'threading\nExceptHookArgs\n') + logger.trace(pickler, "# T7") + + else: + _byref = getattr(pickler, '_byref', None) + obj_recursive = id(obj) in getattr(pickler, '_postproc', ()) + incorrectly_named = not _locate_function(obj, pickler) + if not _byref and not obj_recursive and incorrectly_named: # not a function, but the name was held over + if postproc_list is None: + postproc_list = [] + + # thanks to Tom Stepleton pointing out pickler._session unneeded + logger.trace(pickler, "T2: %s", obj) + _dict, attrs = _get_typedict_type(obj, obj.__dict__.copy(), None, postproc_list) # copy dict proxy to a dict + + #print (_dict) + #print ("%s\n%s" % (type(obj), obj.__name__)) + #print ("%s\n%s" % (obj.__bases__, obj.__dict__)) + slots = _dict.get('__slots__', ()) + if type(slots) == str: + # __slots__ accepts a single string + slots = (slots,) + + for name in slots: + _dict.pop(name, None) + + if isinstance(obj, abc.ABCMeta): + logger.trace(pickler, "ABC: %s", obj) + _dict, attrs = _get_typedict_abc(obj, _dict, attrs, postproc_list) + logger.trace(pickler, "# ABC") + + qualname = getattr(obj, '__qualname__', None) + if attrs is not None: + for k, v in attrs.items(): + postproc_list.append((setattr, (obj, k, v))) + # TODO: Consider using the state argument to save_reduce? + if qualname is not None: + postproc_list.append((setattr, (obj, '__qualname__', qualname))) + + if not hasattr(obj, '__orig_bases__'): + _save_with_postproc(pickler, (_create_type, ( + type(obj), obj.__name__, obj.__bases__, _dict + )), obj=obj, postproc_list=postproc_list) + else: + # This case will always work, but might be overkill. + _metadict = { + 'metaclass': type(obj) + } + + if _dict: + _dict_update = PartialType(_setitems, source=_dict) + else: + _dict_update = None + + _save_with_postproc(pickler, (new_class, ( + obj.__name__, obj.__orig_bases__, _metadict, _dict_update + )), obj=obj, postproc_list=postproc_list) + logger.trace(pickler, "# T2") + else: + obj_name = getattr(obj, '__qualname__', getattr(obj, '__name__', None)) + logger.trace(pickler, "T4: %s", obj) + if incorrectly_named: + warnings.warn( + "Cannot locate reference to %r." % (obj,), + PicklingWarning, + stacklevel=3, + ) + if obj_recursive: + warnings.warn( + "Cannot pickle %r: %s.%s has recursive self-references that " + "trigger a RecursionError." % (obj, obj.__module__, obj_name), + PicklingWarning, + stacklevel=3, + ) + #print (obj.__dict__) + #print ("%s\n%s" % (type(obj), obj.__name__)) + #print ("%s\n%s" % (obj.__bases__, obj.__dict__)) + StockPickler.save_global(pickler, obj, name=obj_name) + logger.trace(pickler, "# T4") + return + +@register(property) +@register(abc.abstractproperty) +def save_property(pickler, obj): + logger.trace(pickler, "Pr: %s", obj) + pickler.save_reduce(type(obj), (obj.fget, obj.fset, obj.fdel, obj.__doc__), + obj=obj) + logger.trace(pickler, "# Pr") + +@register(staticmethod) +@register(classmethod) +@register(abc.abstractstaticmethod) +@register(abc.abstractclassmethod) +def save_classmethod(pickler, obj): + logger.trace(pickler, "Cm: %s", obj) + orig_func = obj.__func__ + + # if type(obj.__dict__) is dict: + # if obj.__dict__: + # state = obj.__dict__ + # else: + # state = None + # else: + # state = (None, {'__dict__', obj.__dict__}) + + pickler.save_reduce(type(obj), (orig_func,), obj=obj) + logger.trace(pickler, "# Cm") + +@register(FunctionType) +def save_function(pickler, obj): + if not _locate_function(obj, pickler): + if type(obj.__code__) is not CodeType: + # Some PyPy builtin functions have no module name, and thus are not + # able to be located + module_name = getattr(obj, '__module__', None) + if module_name is None: + module_name = __builtin__.__name__ + module = _import_module(module_name, safe=True) + _pypy_builtin = False + try: + found, _ = _getattribute(module, obj.__qualname__) + if getattr(found, '__func__', None) is obj: + _pypy_builtin = True + except AttributeError: + pass + + if _pypy_builtin: + logger.trace(pickler, "F3: %s", obj) + pickler.save_reduce(getattr, (found, '__func__'), obj=obj) + logger.trace(pickler, "# F3") + return + + logger.trace(pickler, "F1: %s", obj) + _recurse = getattr(pickler, '_recurse', None) + _postproc = getattr(pickler, '_postproc', None) + _main_modified = getattr(pickler, '_main_modified', None) + _original_main = getattr(pickler, '_original_main', __builtin__)#'None' + postproc_list = [] + if _recurse: + # recurse to get all globals referred to by obj + from .detect import globalvars + globs_copy = globalvars(obj, recurse=True, builtin=True) + + # Add the name of the module to the globs dictionary to prevent + # the duplication of the dictionary. Pickle the unpopulated + # globals dictionary and set the remaining items after the function + # is created to correctly handle recursion. + globs = {'__name__': obj.__module__} + else: + globs_copy = obj.__globals__ + + # If the globals is the __dict__ from the module being saved as a + # session, substitute it by the dictionary being actually saved. + if _main_modified and globs_copy is _original_main.__dict__: + globs_copy = getattr(pickler, '_main', _original_main).__dict__ + globs = globs_copy + # If the globals is a module __dict__, do not save it in the pickle. + elif globs_copy is not None and obj.__module__ is not None and \ + getattr(_import_module(obj.__module__, True), '__dict__', None) is globs_copy: + globs = globs_copy + else: + globs = {'__name__': obj.__module__} + + if globs_copy is not None and globs is not globs_copy: + # In the case that the globals are copied, we need to ensure that + # the globals dictionary is updated when all objects in the + # dictionary are already created. + glob_ids = {id(g) for g in globs_copy.values()} + for stack_element in _postproc: + if stack_element in glob_ids: + _postproc[stack_element].append((_setitems, (globs, globs_copy))) + break + else: + postproc_list.append((_setitems, (globs, globs_copy))) + + closure = obj.__closure__ + state_dict = {} + for fattrname in ('__doc__', '__kwdefaults__', '__annotations__'): + fattr = getattr(obj, fattrname, None) + if fattr is not None: + state_dict[fattrname] = fattr + if obj.__qualname__ != obj.__name__: + state_dict['__qualname__'] = obj.__qualname__ + if '__name__' not in globs or obj.__module__ != globs['__name__']: + state_dict['__module__'] = obj.__module__ + + state = obj.__dict__ + if type(state) is not dict: + state_dict['__dict__'] = state + state = None + if state_dict: + state = state, state_dict + + _save_with_postproc(pickler, (_create_function, ( + obj.__code__, globs, obj.__name__, obj.__defaults__, + closure + ), state), obj=obj, postproc_list=postproc_list) + + # Lift closure cell update to earliest function (#458) + if _postproc: + topmost_postproc = next(iter(_postproc.values()), None) + if closure and topmost_postproc: + for cell in closure: + possible_postproc = (setattr, (cell, 'cell_contents', obj)) + try: + topmost_postproc.remove(possible_postproc) + except ValueError: + continue + + # Change the value of the cell + pickler.save_reduce(*possible_postproc) + # pop None created by calling preprocessing step off stack + pickler.write(POP) + + logger.trace(pickler, "# F1") + else: + logger.trace(pickler, "F2: %s", obj) + name = getattr(obj, '__qualname__', getattr(obj, '__name__', None)) + StockPickler.save_global(pickler, obj, name=name) + logger.trace(pickler, "# F2") + return + +if HAS_CTYPES and hasattr(ctypes, 'pythonapi'): + _PyCapsule_New = ctypes.pythonapi.PyCapsule_New + _PyCapsule_New.argtypes = (ctypes.c_void_p, ctypes.c_char_p, ctypes.c_void_p) + _PyCapsule_New.restype = ctypes.py_object + _PyCapsule_GetPointer = ctypes.pythonapi.PyCapsule_GetPointer + _PyCapsule_GetPointer.argtypes = (ctypes.py_object, ctypes.c_char_p) + _PyCapsule_GetPointer.restype = ctypes.c_void_p + _PyCapsule_GetDestructor = ctypes.pythonapi.PyCapsule_GetDestructor + _PyCapsule_GetDestructor.argtypes = (ctypes.py_object,) + _PyCapsule_GetDestructor.restype = ctypes.c_void_p + _PyCapsule_GetContext = ctypes.pythonapi.PyCapsule_GetContext + _PyCapsule_GetContext.argtypes = (ctypes.py_object,) + _PyCapsule_GetContext.restype = ctypes.c_void_p + _PyCapsule_GetName = ctypes.pythonapi.PyCapsule_GetName + _PyCapsule_GetName.argtypes = (ctypes.py_object,) + _PyCapsule_GetName.restype = ctypes.c_char_p + _PyCapsule_IsValid = ctypes.pythonapi.PyCapsule_IsValid + _PyCapsule_IsValid.argtypes = (ctypes.py_object, ctypes.c_char_p) + _PyCapsule_IsValid.restype = ctypes.c_bool + _PyCapsule_SetContext = ctypes.pythonapi.PyCapsule_SetContext + _PyCapsule_SetContext.argtypes = (ctypes.py_object, ctypes.c_void_p) + _PyCapsule_SetDestructor = ctypes.pythonapi.PyCapsule_SetDestructor + _PyCapsule_SetDestructor.argtypes = (ctypes.py_object, ctypes.c_void_p) + _PyCapsule_SetName = ctypes.pythonapi.PyCapsule_SetName + _PyCapsule_SetName.argtypes = (ctypes.py_object, ctypes.c_char_p) + _PyCapsule_SetPointer = ctypes.pythonapi.PyCapsule_SetPointer + _PyCapsule_SetPointer.argtypes = (ctypes.py_object, ctypes.c_void_p) + #from _socket import CAPI as _testcapsule + _testcapsule_name = b'dill._dill._testcapsule' + _testcapsule = _PyCapsule_New( + ctypes.cast(_PyCapsule_New, ctypes.c_void_p), + ctypes.c_char_p(_testcapsule_name), + None + ) + PyCapsuleType = type(_testcapsule) + @register(PyCapsuleType) + def save_capsule(pickler, obj): + logger.trace(pickler, "Cap: %s", obj) + name = _PyCapsule_GetName(obj) + #warnings.warn('Pickling a PyCapsule (%s) does not pickle any C data structures and could cause segmentation faults or other memory errors when unpickling.' % (name,), PicklingWarning) + pointer = _PyCapsule_GetPointer(obj, name) + context = _PyCapsule_GetContext(obj) + destructor = _PyCapsule_GetDestructor(obj) + pickler.save_reduce(_create_capsule, (pointer, name, context, destructor), obj=obj) + logger.trace(pickler, "# Cap") + _incedental_reverse_typemap['PyCapsuleType'] = PyCapsuleType + _reverse_typemap['PyCapsuleType'] = PyCapsuleType + _incedental_types.add(PyCapsuleType) +else: + _testcapsule = None + + +############################# +# A quick fix for issue #500 +# This should be removed when a better solution is found. + +if hasattr(dataclasses, "_HAS_DEFAULT_FACTORY_CLASS"): + @register(dataclasses._HAS_DEFAULT_FACTORY_CLASS) + def save_dataclasses_HAS_DEFAULT_FACTORY_CLASS(pickler, obj): + logger.trace(pickler, "DcHDF: %s", obj) + pickler.write(GLOBAL + b"dataclasses\n_HAS_DEFAULT_FACTORY\n") + logger.trace(pickler, "# DcHDF") + +if hasattr(dataclasses, "MISSING"): + @register(type(dataclasses.MISSING)) + def save_dataclasses_MISSING_TYPE(pickler, obj): + logger.trace(pickler, "DcM: %s", obj) + pickler.write(GLOBAL + b"dataclasses\nMISSING\n") + logger.trace(pickler, "# DcM") + +if hasattr(dataclasses, "KW_ONLY"): + @register(type(dataclasses.KW_ONLY)) + def save_dataclasses_KW_ONLY_TYPE(pickler, obj): + logger.trace(pickler, "DcKWO: %s", obj) + pickler.write(GLOBAL + b"dataclasses\nKW_ONLY\n") + logger.trace(pickler, "# DcKWO") + +if hasattr(dataclasses, "_FIELD_BASE"): + @register(dataclasses._FIELD_BASE) + def save_dataclasses_FIELD_BASE(pickler, obj): + logger.trace(pickler, "DcFB: %s", obj) + pickler.write(GLOBAL + b"dataclasses\n" + obj.name.encode() + b"\n") + logger.trace(pickler, "# DcFB") + +############################# + +# quick sanity checking +def pickles(obj,exact=False,safe=False,**kwds): + """ + Quick check if object pickles with dill. + + If *exact=True* then an equality test is done to check if the reconstructed + object matches the original object. + + If *safe=True* then any exception will raised in copy signal that the + object is not picklable, otherwise only pickling errors will be trapped. + + Additional keyword arguments are as :func:`dumps` and :func:`loads`. + """ + if safe: exceptions = (Exception,) # RuntimeError, ValueError + else: + exceptions = (TypeError, AssertionError, NotImplementedError, PicklingError, UnpicklingError) + try: + pik = copy(obj, **kwds) + #FIXME: should check types match first, then check content if "exact" + try: + #FIXME: should be "(pik == obj).all()" for numpy comparison, though that'll fail if shapes differ + result = bool(pik.all() == obj.all()) + except (AttributeError, TypeError): + warnings.filterwarnings('ignore') #FIXME: be specific + result = pik == obj + if warnings.filters: del warnings.filters[0] + if hasattr(result, 'toarray'): # for unusual types like sparse matrix + result = result.toarray().all() + if result: return True + if not exact: + result = type(pik) == type(obj) + if result: return result + # class instances might have been dumped with byref=False + return repr(type(pik)) == repr(type(obj)) #XXX: InstanceType? + return False + except exceptions: + return False + +def check(obj, *args, **kwds): + """ + Check pickling of an object across another process. + + *python* is the path to the python interpreter (defaults to sys.executable) + + Set *verbose=True* to print the unpickled object in the other process. + + Additional keyword arguments are as :func:`dumps` and :func:`loads`. + """ + # == undocumented == + # python -- the string path or executable name of the selected python + # verbose -- if True, be verbose about printing warning messages + # all other args and kwds are passed to dill.dumps #FIXME: ignore on load + verbose = kwds.pop('verbose', False) + python = kwds.pop('python', None) + if python is None: + import sys + python = sys.executable + # type check + isinstance(python, str) + import subprocess + fail = True + try: + _obj = dumps(obj, *args, **kwds) + fail = False + finally: + if fail and verbose: + print("DUMP FAILED") + #FIXME: fails if python interpreter path contains spaces + # Use the following instead (which also processes the 'ignore' keyword): + # ignore = kwds.pop('ignore', None) + # unpickle = "dill.loads(%s, ignore=%s)"%(repr(_obj), repr(ignore)) + # cmd = [python, "-c", "import dill; print(%s)"%unpickle] + # msg = "SUCCESS" if not subprocess.call(cmd) else "LOAD FAILED" + msg = "%s -c import dill; print(dill.loads(%s))" % (python, repr(_obj)) + msg = "SUCCESS" if not subprocess.call(msg.split(None,2)) else "LOAD FAILED" + if verbose: + print(msg) + return + +# use to protect against missing attributes +def is_dill(pickler, child=None): + "check the dill-ness of your pickler" + if child is False or not hasattr(pickler.__class__, 'mro'): + return 'dill' in pickler.__module__ + return Pickler in pickler.__class__.mro() + +def _extend(): + """extend pickle with all of dill's registered types""" + # need to have pickle not choke on _main_module? use is_dill(pickler) + for t,func in Pickler.dispatch.items(): + try: + StockPickler.dispatch[t] = func + except Exception: #TypeError, PicklingError, UnpicklingError + logger.trace(pickler, "skip: %s", t) + return + +del diff, _use_diff, use_diff + +# EOF diff --git a/.venv/lib/python3.12/site-packages/dill/_objects.py b/.venv/lib/python3.12/site-packages/dill/_objects.py new file mode 100644 index 0000000..a37cd79 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/_objects.py @@ -0,0 +1,541 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +all Python Standard Library objects (currently: CH 1-15 @ 2.7) +and some other common objects (i.e. numpy.ndarray) +""" + +__all__ = ['registered','failures','succeeds'] + +# helper imports +import warnings; warnings.filterwarnings("ignore", category=DeprecationWarning) +import sys +import queue as Queue +#import dbm as anydbm #XXX: delete foo +from io import BytesIO as StringIO +import re +import array +import collections +import codecs +import struct +import dataclasses +import datetime +import calendar +import weakref +import pprint +import decimal +import numbers +import functools +import itertools +import operator +import tempfile +import shelve +import zlib +import gzip +import zipfile +import tarfile +import csv +import hashlib +import hmac +import os +import logging +import logging.handlers +import optparse +#import __hello__ +import threading +import socket +import contextlib +try: + import bz2 + import sqlite3 + import dbm.ndbm as dbm + HAS_ALL = True +except ImportError: # Ubuntu + HAS_ALL = False +try: + #import curses + #from curses import textpad, panel + HAS_CURSES = True +except ImportError: # Windows + HAS_CURSES = False +try: + import ctypes + HAS_CTYPES = True + # if using `pypy`, pythonapi is not found + IS_PYPY = not hasattr(ctypes, 'pythonapi') +except ImportError: # MacPorts + HAS_CTYPES = False + IS_PYPY = False + +IS_PYODIDE = sys.platform == 'emscripten' + +# helper objects +class _class: + def _method(self): + pass +# @classmethod +# def _clsmethod(cls): #XXX: test me +# pass +# @staticmethod +# def _static(self): #XXX: test me +# pass +class _class2: + def __call__(self): + pass +_instance2 = _class2() +class _newclass(object): + def _method(self): + pass +# @classmethod +# def _clsmethod(cls): #XXX: test me +# pass +# @staticmethod +# def _static(self): #XXX: test me +# pass +class _newclass2(object): + __slots__ = ['descriptor'] +def _function(x): yield x +def _function2(): + try: raise + except Exception: + from sys import exc_info + e, er, tb = exc_info() + return er, tb +if HAS_CTYPES: + class _Struct(ctypes.Structure): + pass + _Struct._fields_ = [("_field", ctypes.c_int),("next", ctypes.POINTER(_Struct))] +_filedescrip, _tempfile = tempfile.mkstemp('r') # deleted in cleanup +if sys.hexversion < 0x30d00a1: + _tmpf = tempfile.TemporaryFile('w') # emits OSError 9 in python 3.13 +else: + _tmpf = tempfile.NamedTemporaryFile('w').file # for > python 3.9 + +# objects used by dill for type declaration +registered = d = {} +# objects dill fails to pickle +failures = x = {} +# all other type objects +succeeds = a = {} + +# types module (part of CH 8) +a['BooleanType'] = bool(1) +a['BuiltinFunctionType'] = len +a['BuiltinMethodType'] = a['BuiltinFunctionType'] +a['BytesType'] = _bytes = codecs.latin_1_encode('\x00')[0] # bytes(1) +a['ClassType'] = _class +a['ComplexType'] = complex(1) +a['DictType'] = _dict = {} +a['DictionaryType'] = a['DictType'] +a['FloatType'] = float(1) +a['FunctionType'] = _function +a['InstanceType'] = _instance = _class() +a['IntType'] = _int = int(1) +a['ListType'] = _list = [] +a['NoneType'] = None +a['ObjectType'] = object() +a['StringType'] = _str = str(1) +a['TupleType'] = _tuple = () +a['TypeType'] = type +a['LongType'] = _int +a['UnicodeType'] = _str +# built-in constants (CH 4) +a['CopyrightType'] = copyright +# built-in types (CH 5) +a['ClassObjectType'] = _newclass # +a['ClassInstanceType'] = _newclass() # +a['SetType'] = _set = set() +a['FrozenSetType'] = frozenset() +# built-in exceptions (CH 6) +a['ExceptionType'] = _exception = _function2()[0] +# string services (CH 7) +a['SREPatternType'] = _srepattern = re.compile('') +# data types (CH 8) +a['ArrayType'] = array.array("f") +a['DequeType'] = collections.deque([0]) +a['DefaultDictType'] = collections.defaultdict(_function, _dict) +a['TZInfoType'] = datetime.tzinfo() +a['DateTimeType'] = datetime.datetime.today() +a['CalendarType'] = calendar.Calendar() +# numeric and mathematical types (CH 9) +a['DecimalType'] = decimal.Decimal(1) +# data compression and archiving (CH 12) +a['TarInfoType'] = tarfile.TarInfo() +# generic operating system services (CH 15) +a['LoggerType'] = _logger = logging.getLogger() +a['FormatterType'] = logging.Formatter() # pickle ok +a['FilterType'] = logging.Filter() # pickle ok +a['LogRecordType'] = logging.makeLogRecord(_dict) # pickle ok +a['OptionParserType'] = _oparser = optparse.OptionParser() # pickle ok +a['OptionGroupType'] = optparse.OptionGroup(_oparser,"foo") # pickle ok +a['OptionType'] = optparse.Option('--foo') # pickle ok +if HAS_CTYPES: + z = x if IS_PYPY else a + z['CCharType'] = _cchar = ctypes.c_char() + z['CWCharType'] = ctypes.c_wchar() # fail == 2.6 + z['CByteType'] = ctypes.c_byte() + z['CUByteType'] = ctypes.c_ubyte() + z['CShortType'] = ctypes.c_short() + z['CUShortType'] = ctypes.c_ushort() + z['CIntType'] = ctypes.c_int() + z['CUIntType'] = ctypes.c_uint() + z['CLongType'] = ctypes.c_long() + z['CULongType'] = ctypes.c_ulong() + z['CLongLongType'] = ctypes.c_longlong() + z['CULongLongType'] = ctypes.c_ulonglong() + z['CFloatType'] = ctypes.c_float() + z['CDoubleType'] = ctypes.c_double() + z['CSizeTType'] = ctypes.c_size_t() + del z + a['CLibraryLoaderType'] = ctypes.cdll + a['StructureType'] = _Struct + # if not IS_PYPY: + # a['BigEndianStructureType'] = ctypes.BigEndianStructure() +#NOTE: also LittleEndianStructureType and UnionType... abstract classes +#NOTE: remember for ctypesobj.contents creates a new python object +#NOTE: ctypes.c_int._objects is memberdescriptor for object's __dict__ +#NOTE: base class of all ctypes data types is non-public _CData + +import fractions +import io +from io import StringIO as TextIO +# built-in functions (CH 2) +a['ByteArrayType'] = bytearray([1]) +# numeric and mathematical types (CH 9) +a['FractionType'] = fractions.Fraction() +a['NumberType'] = numbers.Number() +# generic operating system services (CH 15) +a['IOBaseType'] = io.IOBase() +a['RawIOBaseType'] = io.RawIOBase() +a['TextIOBaseType'] = io.TextIOBase() +a['BufferedIOBaseType'] = io.BufferedIOBase() +a['UnicodeIOType'] = TextIO() # the new StringIO +a['LoggerAdapterType'] = logging.LoggerAdapter(_logger,_dict) # pickle ok +if HAS_CTYPES: + z = x if IS_PYPY else a + z['CBoolType'] = ctypes.c_bool(1) + z['CLongDoubleType'] = ctypes.c_longdouble() + del z +import argparse +# data types (CH 8) +a['OrderedDictType'] = collections.OrderedDict(_dict) +a['CounterType'] = collections.Counter(_dict) +if HAS_CTYPES: + z = x if IS_PYPY else a + z['CSSizeTType'] = ctypes.c_ssize_t() + del z +# generic operating system services (CH 15) +a['NullHandlerType'] = logging.NullHandler() # pickle ok # new 2.7 +a['ArgParseFileType'] = argparse.FileType() # pickle ok + +# -- pickle fails on all below here ----------------------------------------- +# types module (part of CH 8) +a['CodeType'] = compile('','','exec') +a['DictProxyType'] = type.__dict__ +a['DictProxyType2'] = _newclass.__dict__ +a['EllipsisType'] = Ellipsis +a['ClosedFileType'] = open(os.devnull, 'wb', buffering=0).close() +a['GetSetDescriptorType'] = array.array.typecode +a['LambdaType'] = _lambda = lambda x: lambda y: x #XXX: works when not imported! +a['MemberDescriptorType'] = _newclass2.descriptor +if not IS_PYPY: + a['MemberDescriptorType2'] = datetime.timedelta.days +a['MethodType'] = _method = _class()._method #XXX: works when not imported! +a['ModuleType'] = datetime +a['NotImplementedType'] = NotImplemented +a['SliceType'] = slice(1) +a['UnboundMethodType'] = _class._method #XXX: works when not imported! +d['TextWrapperType'] = open(os.devnull, 'r') # same as mode='w','w+','r+' +if not IS_PYODIDE: + d['BufferedRandomType'] = open(os.devnull, 'r+b') # same as mode='w+b' +d['BufferedReaderType'] = open(os.devnull, 'rb') # (default: buffering=-1) +d['BufferedWriterType'] = open(os.devnull, 'wb') +try: # oddities: deprecated + from _pyio import open as _open + d['PyTextWrapperType'] = _open(os.devnull, 'r', buffering=-1) + if not IS_PYODIDE: + d['PyBufferedRandomType'] = _open(os.devnull, 'r+b', buffering=-1) + d['PyBufferedReaderType'] = _open(os.devnull, 'rb', buffering=-1) + d['PyBufferedWriterType'] = _open(os.devnull, 'wb', buffering=-1) +except ImportError: + pass +# other (concrete) object types +z = d if sys.hexversion < 0x30800a2 else a +z['CellType'] = (_lambda)(0).__closure__[0] +del z +a['XRangeType'] = _xrange = range(1) +a['MethodDescriptorType'] = type.__dict__['mro'] +a['WrapperDescriptorType'] = type.__repr__ +#a['WrapperDescriptorType2'] = type.__dict__['__module__']#XXX: GetSetDescriptor +a['ClassMethodDescriptorType'] = type.__dict__['__prepare__'] +# built-in functions (CH 2) +_methodwrap = (1).__lt__ +a['MethodWrapperType'] = _methodwrap +a['StaticMethodType'] = staticmethod(_method) +a['ClassMethodType'] = classmethod(_method) +a['PropertyType'] = property() +d['SuperType'] = super(Exception, _exception) +# string services (CH 7) +_in = _bytes +a['InputType'] = _cstrI = StringIO(_in) +a['OutputType'] = _cstrO = StringIO() +# data types (CH 8) +a['WeakKeyDictionaryType'] = weakref.WeakKeyDictionary() +a['WeakValueDictionaryType'] = weakref.WeakValueDictionary() +a['ReferenceType'] = weakref.ref(_instance) +a['DeadReferenceType'] = weakref.ref(_class()) +a['ProxyType'] = weakref.proxy(_instance) +a['DeadProxyType'] = weakref.proxy(_class()) +a['CallableProxyType'] = weakref.proxy(_instance2) +a['DeadCallableProxyType'] = weakref.proxy(_class2()) +a['QueueType'] = Queue.Queue() +# numeric and mathematical types (CH 9) +d['PartialType'] = functools.partial(int,base=2) +a['IzipType'] = zip('0','1') +d['ItemGetterType'] = operator.itemgetter(0) +d['AttrGetterType'] = operator.attrgetter('__repr__') +# file and directory access (CH 10) +_fileW = _cstrO +# data persistence (CH 11) +if HAS_ALL: + x['ConnectionType'] = _conn = sqlite3.connect(':memory:') + x['CursorType'] = _conn.cursor() +a['ShelveType'] = shelve.Shelf({}) +# data compression and archiving (CH 12) +if HAS_ALL: + x['BZ2FileType'] = bz2.BZ2File(os.devnull) + x['BZ2CompressorType'] = bz2.BZ2Compressor() + x['BZ2DecompressorType'] = bz2.BZ2Decompressor() +#x['ZipFileType'] = _zip = zipfile.ZipFile(os.devnull,'w') +#_zip.write(_tempfile,'x') [causes annoying warning/error printed on import] +#a['ZipInfoType'] = _zip.getinfo('x') +a['TarFileType'] = tarfile.open(fileobj=_fileW,mode='w') +# file formats (CH 13) +x['DialectType'] = csv.get_dialect('excel') +if sys.hexversion < 0x30d00a1: + import xdrlib + a['PackerType'] = xdrlib.Packer() +# optional operating system services (CH 16) +a['LockType'] = threading.Lock() +a['RLockType'] = threading.RLock() +# generic operating system services (CH 15) # also closed/open and r/w/etc... +a['NamedLoggerType'] = _logger = logging.getLogger(__name__) +#a['FrozenModuleType'] = __hello__ #FIXME: prints "Hello world..." +# interprocess communication (CH 17) +x['SocketType'] = _socket = socket.socket() +x['SocketPairType'] = socket.socketpair()[0] +# python runtime services (CH 27) +a['GeneratorContextManagerType'] = contextlib.contextmanager(max)([1]) + +try: # ipython + __IPYTHON__ is True # is ipython +except NameError: + # built-in constants (CH 4) + a['QuitterType'] = quit + d['ExitType'] = a['QuitterType'] +try: # numpy #FIXME: slow... 0.05 to 0.1 sec to import numpy + from numpy import ufunc as _numpy_ufunc + from numpy import array as _numpy_array + from numpy import int32 as _numpy_int32 + a['NumpyUfuncType'] = _numpy_ufunc + a['NumpyArrayType'] = _numpy_array + a['NumpyInt32Type'] = _numpy_int32 +except ImportError: + pass +# generic operating system services (CH 15) +a['FileHandlerType'] = logging.FileHandler(os.devnull) +a['RotatingFileHandlerType'] = logging.handlers.RotatingFileHandler(os.devnull) +a['SocketHandlerType'] = logging.handlers.SocketHandler('localhost',514) +a['MemoryHandlerType'] = logging.handlers.MemoryHandler(1) +# data types (CH 8) +a['WeakSetType'] = weakref.WeakSet() # 2.7 +# generic operating system services (CH 15) [errors when dill is imported] +#a['ArgumentParserType'] = _parser = argparse.ArgumentParser('PROG') +#a['NamespaceType'] = _parser.parse_args() # pickle ok +#a['SubParsersActionType'] = _parser.add_subparsers() +#a['MutuallyExclusiveGroupType'] = _parser.add_mutually_exclusive_group() +#a['ArgumentGroupType'] = _parser.add_argument_group() + +# -- dill fails in some versions below here --------------------------------- +# types module (part of CH 8) +d['FileType'] = open(os.devnull, 'rb', buffering=0) # same 'wb','wb+','rb+' +# built-in functions (CH 2) +# Iterators: +a['ListIteratorType'] = iter(_list) # empty vs non-empty +a['SetIteratorType'] = iter(_set) #XXX: empty vs non-empty #FIXME: list_iterator +a['TupleIteratorType']= iter(_tuple) # empty vs non-empty +a['XRangeIteratorType'] = iter(_xrange) # empty vs non-empty +a["BytesIteratorType"] = iter(b'') +a["BytearrayIteratorType"] = iter(bytearray(b'')) +z = x if IS_PYPY else a +z["CallableIteratorType"] = iter(iter, None) +del z +x["MemoryIteratorType"] = iter(memoryview(b'')) +a["ListReverseiteratorType"] = reversed([]) +X = a['OrderedDictType'] +d["OdictKeysType"] = X.keys() +d["OdictValuesType"] = X.values() +d["OdictItemsType"] = X.items() +a["OdictIteratorType"] = iter(X.keys()) #FIXME: list_iterator +del X +#FIXME: list_iterator +a['DictionaryItemIteratorType'] = iter(type.__dict__.items()) +a['DictionaryKeyIteratorType'] = iter(type.__dict__.keys()) +a['DictionaryValueIteratorType'] = iter(type.__dict__.values()) +if sys.hexversion >= 0x30800a0: + a["DictReversekeyiteratorType"] = reversed({}.keys()) + a["DictReversevalueiteratorType"] = reversed({}.values()) + a["DictReverseitemiteratorType"] = reversed({}.items()) + +try: + import symtable + #FIXME: fails to pickle + x["SymtableEntryType"] = symtable.symtable("", "string", "exec")._table +except ImportError: + pass + +if sys.hexversion >= 0x30a00a0 and not IS_PYPY: + x['LineIteratorType'] = compile('3', '', 'eval').co_lines() + +if sys.hexversion >= 0x30b00b0 and not IS_PYPY: + from types import GenericAlias + d["GenericAliasIteratorType"] = iter(GenericAlias(list, (int,))) + x['PositionsIteratorType'] = compile('3', '', 'eval').co_positions() + +# data types (CH 8) +a['PrettyPrinterType'] = pprint.PrettyPrinter() +# file and directory access (CH 10) +a['TemporaryFileType'] = _tmpf +# data compression and archiving (CH 12) +x['GzipFileType'] = gzip.GzipFile(fileobj=_fileW) +# generic operating system services (CH 15) +a['StreamHandlerType'] = logging.StreamHandler() +# numeric and mathematical types (CH 9) +z = a if sys.hexversion < 0x30e00a1 else x +z['CountType'] = itertools.count(0) #FIXME: __reduce__ removed in 3.14.0a1 +z['ChainType'] = itertools.chain('0','1') +z['ProductType'] = itertools.product('0','1') +z['CycleType'] = itertools.cycle('0') +z['PermutationsType'] = itertools.permutations('0') +z['CombinationsType'] = itertools.combinations('0',1) +z['RepeatType'] = itertools.repeat(0) +z['CompressType'] = itertools.compress('0',[1]) +del z +#XXX: ...and etc + +# -- dill fails on all below here ------------------------------------------- +# types module (part of CH 8) +x['GeneratorType'] = _generator = _function(1) #XXX: priority +x['FrameType'] = _generator.gi_frame #XXX: inspect.currentframe() +x['TracebackType'] = _function2()[1] #(see: inspect.getouterframes,getframeinfo) +# other (concrete) object types +# (also: Capsule / CObject ?) +# built-in functions (CH 2) +# built-in types (CH 5) +# string services (CH 7) +x['StructType'] = struct.Struct('c') +x['CallableIteratorType'] = _srepattern.finditer('') +x['SREMatchType'] = _srepattern.match('') +x['SREScannerType'] = _srepattern.scanner('') +x['StreamReader'] = codecs.StreamReader(_cstrI) #XXX: ... and etc +# python object persistence (CH 11) +# x['DbShelveType'] = shelve.open('foo','n')#,protocol=2) #XXX: delete foo +if HAS_ALL: + z = a if IS_PYPY else x + z['DbmType'] = dbm.open(_tempfile,'n') + del z +# x['DbCursorType'] = _dbcursor = anydbm.open('foo','n') #XXX: delete foo +# x['DbType'] = _dbcursor.db +# data compression and archiving (CH 12) +x['ZlibCompressType'] = zlib.compressobj() +x['ZlibDecompressType'] = zlib.decompressobj() +# file formats (CH 13) +x['CSVReaderType'] = csv.reader(_cstrI) +x['CSVWriterType'] = csv.writer(_cstrO) +x['CSVDictReaderType'] = csv.DictReader(_cstrI) +x['CSVDictWriterType'] = csv.DictWriter(_cstrO,{}) +# cryptographic services (CH 14) +x['HashType'] = hashlib.md5() +if (sys.hexversion < 0x30800a1): + x['HMACType'] = hmac.new(_in) +else: + x['HMACType'] = hmac.new(_in, digestmod='md5') +# generic operating system services (CH 15) +if HAS_CURSES: pass + #x['CursesWindowType'] = _curwin = curses.initscr() #FIXME: messes up tty + #x['CursesTextPadType'] = textpad.Textbox(_curwin) + #x['CursesPanelType'] = panel.new_panel(_curwin) +if HAS_CTYPES: + x['CCharPType'] = ctypes.c_char_p() + x['CWCharPType'] = ctypes.c_wchar_p() + x['CVoidPType'] = ctypes.c_void_p() + if sys.platform[:3] == 'win': + x['CDLLType'] = _cdll = ctypes.cdll.msvcrt + else: + x['CDLLType'] = _cdll = ctypes.CDLL(None) + if not IS_PYPY: + x['PyDLLType'] = _pydll = ctypes.pythonapi + x['FuncPtrType'] = _cdll._FuncPtr() + x['CCharArrayType'] = ctypes.create_string_buffer(1) + x['CWCharArrayType'] = ctypes.create_unicode_buffer(1) + x['CParamType'] = ctypes.byref(_cchar) + x['LPCCharType'] = ctypes.pointer(_cchar) + x['LPCCharObjType'] = _lpchar = ctypes.POINTER(ctypes.c_char) + x['NullPtrType'] = _lpchar() + x['NullPyObjectType'] = ctypes.py_object() + x['PyObjectType'] = ctypes.py_object(lambda :None) + z = a if IS_PYPY else x + z['FieldType'] = _field = _Struct._field + z['CFUNCTYPEType'] = _cfunc = ctypes.CFUNCTYPE(ctypes.c_char) + if sys.hexversion < 0x30c00b3: + x['CFunctionType'] = _cfunc(str) + del z +# numeric and mathematical types (CH 9) +a['MethodCallerType'] = operator.methodcaller('mro') # 2.6 +# built-in types (CH 5) +x['MemoryType'] = memoryview(_in) # 2.7 +x['MemoryType2'] = memoryview(bytearray(_in)) # 2.7 +d['DictItemsType'] = _dict.items() # 2.7 +d['DictKeysType'] = _dict.keys() # 2.7 +d['DictValuesType'] = _dict.values() # 2.7 +# generic operating system services (CH 15) +a['RawTextHelpFormatterType'] = argparse.RawTextHelpFormatter('PROG') +a['RawDescriptionHelpFormatterType'] = argparse.RawDescriptionHelpFormatter('PROG') +a['ArgDefaultsHelpFormatterType'] = argparse.ArgumentDefaultsHelpFormatter('PROG') +z = a if IS_PYPY else x +z['CmpKeyType'] = _cmpkey = functools.cmp_to_key(_methodwrap) # 2.7, >=3.2 +z['CmpKeyObjType'] = _cmpkey('0') #2.7, >=3.2 +del z +# oddities: removed, etc +x['BufferType'] = x['MemoryType'] + +from dill._dill import _testcapsule +if _testcapsule is not None: + d['PyCapsuleType'] = _testcapsule +del _testcapsule + +if hasattr(dataclasses, '_HAS_DEFAULT_FACTORY'): + a['DataclassesHasDefaultFactoryType'] = dataclasses._HAS_DEFAULT_FACTORY + +if hasattr(dataclasses, 'MISSING'): + a['DataclassesMissingType'] = dataclasses.MISSING + +if hasattr(dataclasses, 'KW_ONLY'): + a['DataclassesKWOnlyType'] = dataclasses.KW_ONLY + +if hasattr(dataclasses, '_FIELD_BASE'): + a['DataclassesFieldBaseType'] = dataclasses._FIELD + +# -- cleanup ---------------------------------------------------------------- +a.update(d) # registered also succeed +if sys.platform[:3] == 'win': + os.close(_filedescrip) # required on win32 +os.remove(_tempfile) + + +# EOF diff --git a/.venv/lib/python3.12/site-packages/dill/_shims.py b/.venv/lib/python3.12/site-packages/dill/_shims.py new file mode 100644 index 0000000..bb0a9dc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/_shims.py @@ -0,0 +1,193 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Author: Anirudh Vegesana (avegesan@cs.stanford.edu) +# Copyright (c) 2021-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +Provides shims for compatibility between versions of dill and Python. + +Compatibility shims should be provided in this file. Here are two simple example +use cases. + +Deprecation of constructor function: +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Assume that we were transitioning _import_module in _dill.py to +the builtin function importlib.import_module when present. + +@move_to(_dill) +def _import_module(import_name): + ... # code already in _dill.py + +_import_module = Getattr(importlib, 'import_module', Getattr(_dill, '_import_module', None)) + +The code will attempt to find import_module in the importlib module. If not +present, it will use the _import_module function in _dill. + +Emulate new Python behavior in older Python versions: +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +CellType.cell_contents behaves differently in Python 3.6 and 3.7. It is +read-only in Python 3.6 and writable and deletable in 3.7. + +if _dill.OLD37 and _dill.HAS_CTYPES and ...: + @move_to(_dill) + def _setattr(object, name, value): + if type(object) is _dill.CellType and name == 'cell_contents': + _PyCell_Set.argtypes = (ctypes.py_object, ctypes.py_object) + _PyCell_Set(object, value) + else: + setattr(object, name, value) +... # more cases below + +_setattr = Getattr(_dill, '_setattr', setattr) + +_dill._setattr will be used when present to emulate Python 3.7 functionality in +older versions of Python while defaulting to the standard setattr in 3.7+. + +See this PR for the discussion that lead to this system: +https://github.com/uqfoundation/dill/pull/443 +""" + +import inspect +import sys + +_dill = sys.modules['dill._dill'] + + +class Reduce(object): + """ + Reduce objects are wrappers used for compatibility enforcement during + unpickle-time. They should only be used in calls to pickler.save and + other Reduce objects. They are only evaluated within unpickler.load. + + Pickling a Reduce object makes the two implementations equivalent: + + pickler.save(Reduce(*reduction)) + + pickler.save_reduce(*reduction, obj=reduction) + """ + __slots__ = ['reduction'] + def __new__(cls, *reduction, **kwargs): + """ + Args: + *reduction: a tuple that matches the format given here: + https://docs.python.org/3/library/pickle.html#object.__reduce__ + is_callable: a bool to indicate that the object created by + unpickling `reduction` is callable. If true, the current Reduce + is allowed to be used as the function in further save_reduce calls + or Reduce objects. + """ + is_callable = kwargs.get('is_callable', False) # Pleases Py2. Can be removed later + if is_callable: + self = object.__new__(_CallableReduce) + else: + self = object.__new__(Reduce) + self.reduction = reduction + return self + def __repr__(self): + return 'Reduce%s' % (self.reduction,) + def __copy__(self): + return self # pragma: no cover + def __deepcopy__(self, memo): + return self # pragma: no cover + def __reduce__(self): + return self.reduction + def __reduce_ex__(self, protocol): + return self.__reduce__() + +class _CallableReduce(Reduce): + # A version of Reduce for functions. Used to trick pickler.save_reduce into + # thinking that Reduce objects of functions are themselves meaningful functions. + def __call__(self, *args, **kwargs): + reduction = self.__reduce__() + func = reduction[0] + f_args = reduction[1] + obj = func(*f_args) + return obj(*args, **kwargs) + +__NO_DEFAULT = _dill.Sentinel('Getattr.NO_DEFAULT') + +def Getattr(object, name, default=__NO_DEFAULT): + """ + A Reduce object that represents the getattr operation. When unpickled, the + Getattr will access an attribute 'name' of 'object' and return the value + stored there. If the attribute doesn't exist, the default value will be + returned if present. + + The following statements are equivalent: + + Getattr(collections, 'OrderedDict') + Getattr(collections, 'spam', None) + Getattr(*args) + + Reduce(getattr, (collections, 'OrderedDict')) + Reduce(getattr, (collections, 'spam', None)) + Reduce(getattr, args) + + During unpickling, the first two will result in collections.OrderedDict and + None respectively because the first attribute exists and the second one does + not, forcing it to use the default value given in the third argument. + """ + + if default is Getattr.NO_DEFAULT: + reduction = (getattr, (object, name)) + else: + reduction = (getattr, (object, name, default)) + + return Reduce(*reduction, is_callable=callable(default)) + +Getattr.NO_DEFAULT = __NO_DEFAULT +del __NO_DEFAULT + +def move_to(module, name=None): + def decorator(func): + if name is None: + fname = func.__name__ + else: + fname = name + module.__dict__[fname] = func + func.__module__ = module.__name__ + return func + return decorator + +def register_shim(name, default): + """ + A easier to understand and more compact way of "softly" defining a function. + These two pieces of code are equivalent: + + if _dill.OLD3X: + def _create_class(): + ... + _create_class = register_shim('_create_class', types.new_class) + + if _dill.OLD3X: + @move_to(_dill) + def _create_class(): + ... + _create_class = Getattr(_dill, '_create_class', types.new_class) + + Intuitively, it creates a function or object in the versions of dill/python + that require special reimplementations, and use a core library or default + implementation if that function or object does not exist. + """ + func = globals().get(name) + if func is not None: + _dill.__dict__[name] = func + func.__module__ = _dill.__name__ + + if default is Getattr.NO_DEFAULT: + reduction = (getattr, (_dill, name)) + else: + reduction = (getattr, (_dill, name, default)) + + return Reduce(*reduction, is_callable=callable(default)) + +###################### +## Compatibility Shims are defined below +###################### + +_CELL_EMPTY = register_shim('_CELL_EMPTY', None) + +_setattr = register_shim('_setattr', setattr) +_delattr = register_shim('_delattr', delattr) diff --git a/.venv/lib/python3.12/site-packages/dill/detect.py b/.venv/lib/python3.12/site-packages/dill/detect.py new file mode 100644 index 0000000..2f0bea1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/detect.py @@ -0,0 +1,287 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +Methods for detecting objects leading to pickling failures. +""" + +import dis +from inspect import ismethod, isfunction, istraceback, isframe, iscode + +from .pointers import parent, reference, at, parents, children +from .logger import trace + +__all__ = ['baditems','badobjects','badtypes','code','errors','freevars', + 'getmodule','globalvars','nestedcode','nestedglobals','outermost', + 'referredglobals','referrednested','trace','varnames'] + +def getmodule(object, _filename=None, force=False): + """get the module of the object""" + from inspect import getmodule as getmod + module = getmod(object, _filename) + if module or not force: return module + import builtins + from .source import getname + name = getname(object, force=True) + return builtins if name in vars(builtins).keys() else None + +def outermost(func): # is analogous to getsource(func,enclosing=True) + """get outermost enclosing object (i.e. the outer function in a closure) + + NOTE: this is the object-equivalent of getsource(func, enclosing=True) + """ + if ismethod(func): + _globals = func.__func__.__globals__ or {} + elif isfunction(func): + _globals = func.__globals__ or {} + else: + return #XXX: or raise? no matches + _globals = _globals.items() + # get the enclosing source + from .source import getsourcelines + try: lines,lnum = getsourcelines(func, enclosing=True) + except Exception: #TypeError, IOError + lines,lnum = [],None + code = ''.join(lines) + # get all possible names,objects that are named in the enclosing source + _locals = ((name,obj) for (name,obj) in _globals if name in code) + # now only save the objects that generate the enclosing block + for name,obj in _locals: #XXX: don't really need 'name' + try: + if getsourcelines(obj) == (lines,lnum): return obj + except Exception: #TypeError, IOError + pass + return #XXX: or raise? no matches + +def nestedcode(func, recurse=True): #XXX: or return dict of {co_name: co} ? + """get the code objects for any nested functions (e.g. in a closure)""" + func = code(func) + if not iscode(func): return [] #XXX: or raise? no matches + nested = set() + for co in func.co_consts: + if co is None: continue + co = code(co) + if co: + nested.add(co) + if recurse: nested |= set(nestedcode(co, recurse=True)) + return list(nested) + +def code(func): + """get the code object for the given function or method + + NOTE: use dill.source.getsource(CODEOBJ) to get the source code + """ + if ismethod(func): func = func.__func__ + if isfunction(func): func = func.__code__ + if istraceback(func): func = func.tb_frame + if isframe(func): func = func.f_code + if iscode(func): return func + return + +#XXX: ugly: parse dis.dis for name after " len(referrednested(func)), try calling func(). + If possible, python builds code objects, but delays building functions + until func() is called. + """ + import gc + funcs = set() + # get the code objects, and try to track down by referrence + for co in nestedcode(func, recurse): + # look for function objects that refer to the code object + for obj in gc.get_referrers(co): + # get methods + _ = getattr(obj, '__func__', None) # ismethod + if getattr(_, '__code__', None) is co: funcs.add(obj) + # get functions + elif getattr(obj, '__code__', None) is co: funcs.add(obj) + # get frame objects + elif getattr(obj, 'f_code', None) is co: funcs.add(obj) + # get code objects + elif hasattr(obj, 'co_code') and obj is co: funcs.add(obj) +# frameobjs => func.__code__.co_varnames not in func.__code__.co_cellvars +# funcobjs => func.__code__.co_cellvars not in func.__code__.co_varnames +# frameobjs are not found, however funcobjs are... +# (see: test_mixins.quad ... and test_mixins.wtf) +# after execution, code objects get compiled, and then may be found by gc + return list(funcs) + + +def freevars(func): + """get objects defined in enclosing code that are referred to by func + + returns a dict of {name:object}""" + if ismethod(func): func = func.__func__ + if isfunction(func): + closures = func.__closure__ or () + func = func.__code__.co_freevars # get freevars + else: + return {} + + def get_cell_contents(): + for name, c in zip(func, closures): + try: + cell_contents = c.cell_contents + except ValueError: # cell is empty + continue + yield name, c.cell_contents + + return dict(get_cell_contents()) + +# thanks to Davies Liu for recursion of globals +def nestedglobals(func, recurse=True): + """get the names of any globals found within func""" + func = code(func) + if func is None: return list() + import sys + from .temp import capture + CAN_NULL = sys.hexversion >= 0x30b00a7 # NULL may be prepended >= 3.11a7 + names = set() + with capture('stdout') as out: + try: + dis.dis(func) #XXX: dis.dis(None) disassembles last traceback + except IndexError: + pass #FIXME: HACK for IS_PYPY (3.11) + for line in out.getvalue().splitlines(): + if '_GLOBAL' in line: + name = line.split('(')[-1].split(')')[0] + if CAN_NULL: + names.add(name.replace('NULL + ', '').replace(' + NULL', '')) + else: + names.add(name) + for co in getattr(func, 'co_consts', tuple()): + if co and recurse and iscode(co): + names.update(nestedglobals(co, recurse=True)) + return list(names) + +def referredglobals(func, recurse=True, builtin=False): + """get the names of objects in the global scope referred to by func""" + return globalvars(func, recurse, builtin).keys() + +def globalvars(func, recurse=True, builtin=False): + """get objects defined in global scope that are referred to by func + + return a dict of {name:object}""" + if ismethod(func): func = func.__func__ + if isfunction(func): + globs = vars(getmodule(sum)).copy() if builtin else {} + # get references from within closure + orig_func, func = func, set() + for obj in orig_func.__closure__ or {}: + try: + cell_contents = obj.cell_contents + except ValueError: # cell is empty + pass + else: + _vars = globalvars(cell_contents, recurse, builtin) or {} + func.update(_vars) #XXX: (above) be wary of infinte recursion? + globs.update(_vars) + # get globals + globs.update(orig_func.__globals__ or {}) + # get names of references + if not recurse: + func.update(orig_func.__code__.co_names) + else: + func.update(nestedglobals(orig_func.__code__)) + # find globals for all entries of func + for key in func.copy(): #XXX: unnecessary...? + nested_func = globs.get(key) + if nested_func is orig_func: + #func.remove(key) if key in func else None + continue #XXX: globalvars(func, False)? + func.update(globalvars(nested_func, True, builtin)) + elif iscode(func): + globs = vars(getmodule(sum)).copy() if builtin else {} + #globs.update(globals()) + if not recurse: + func = func.co_names # get names + else: + orig_func = func.co_name # to stop infinite recursion + func = set(nestedglobals(func)) + # find globals for all entries of func + for key in func.copy(): #XXX: unnecessary...? + if key is orig_func: + #func.remove(key) if key in func else None + continue #XXX: globalvars(func, False)? + nested_func = globs.get(key) + func.update(globalvars(nested_func, True, builtin)) + else: + return {} + #NOTE: if name not in __globals__, then we skip it... + return dict((name,globs[name]) for name in func if name in globs) + + +def varnames(func): + """get names of variables defined by func + + returns a tuple (local vars, local vars referrenced by nested functions)""" + func = code(func) + if not iscode(func): + return () #XXX: better ((),())? or None? + return func.co_varnames, func.co_cellvars + + +def baditems(obj, exact=False, safe=False): #XXX: obj=globals() ? + """get items in object that fail to pickle""" + if not hasattr(obj,'__iter__'): # is not iterable + return [j for j in (badobjects(obj,0,exact,safe),) if j is not None] + obj = obj.values() if getattr(obj,'values',None) else obj + _obj = [] # can't use a set, as items may be unhashable + [_obj.append(badobjects(i,0,exact,safe)) for i in obj if i not in _obj] + return [j for j in _obj if j is not None] + + +def badobjects(obj, depth=0, exact=False, safe=False): + """get objects that fail to pickle""" + from dill import pickles + if not depth: + if pickles(obj,exact,safe): return None + return obj + return dict(((attr, badobjects(getattr(obj,attr),depth-1,exact,safe)) \ + for attr in dir(obj) if not pickles(getattr(obj,attr),exact,safe))) + +def badtypes(obj, depth=0, exact=False, safe=False): + """get types for objects that fail to pickle""" + from dill import pickles + if not depth: + if pickles(obj,exact,safe): return None + return type(obj) + return dict(((attr, badtypes(getattr(obj,attr),depth-1,exact,safe)) \ + for attr in dir(obj) if not pickles(getattr(obj,attr),exact,safe))) + +def errors(obj, depth=0, exact=False, safe=False): + """get errors for objects that fail to pickle""" + from dill import pickles, copy + if not depth: + try: + pik = copy(obj) + if exact: + assert pik == obj, \ + "Unpickling produces %s instead of %s" % (pik,obj) + assert type(pik) == type(obj), \ + "Unpickling produces %s instead of %s" % (type(pik),type(obj)) + return None + except Exception: + import sys + return sys.exc_info()[1] + _dict = {} + for attr in dir(obj): + try: + _attr = getattr(obj,attr) + except Exception: + import sys + _dict[attr] = sys.exc_info()[1] + continue + if not pickles(_attr,exact,safe): + _dict[attr] = errors(_attr,depth-1,exact,safe) + return _dict + + +# EOF diff --git a/.venv/lib/python3.12/site-packages/dill/logger.py b/.venv/lib/python3.12/site-packages/dill/logger.py new file mode 100644 index 0000000..435f82b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/logger.py @@ -0,0 +1,285 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Author: Leonardo Gama (@leogama) +# Copyright (c) 2022-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +Logging utilities for dill. + +The 'logger' object is dill's top-level logger. + +The 'adapter' object wraps the logger and implements a 'trace()' method that +generates a detailed tree-style trace for the pickling call at log level INFO. + +The 'trace()' function sets and resets dill's logger log level, enabling and +disabling the pickling trace. + +The trace shows a tree structure depicting the depth of each object serialized +*with dill save functions*, but not the ones that use save functions from +'pickle._Pickler.dispatch'. If the information is available, it also displays +the size in bytes that the object contributed to the pickle stream (including +its child objects). Sample trace output: + + >>> import dill, dill.tests + >>> dill.detect.trace(True) + >>> dill.dump_session(main=dill.tests) + ┬ M1: + ├┬ F2: + │└ # F2 [32 B] + ├┬ D2: + │├┬ T4: + ││└ # T4 [35 B] + │├┬ D2: + ││├┬ T4: + │││└ # T4 [50 B] + ││├┬ D2: + │││└ # D2 [84 B] + ││└ # D2 [413 B] + │└ # D2 [763 B] + └ # M1 [813 B] +""" + +__all__ = ['adapter', 'logger', 'trace'] + +import codecs +import contextlib +import locale +import logging +import math +import os +from functools import partial +from typing import TextIO, Union + +import dill + +# Tree drawing characters: Unicode to ASCII map. +ASCII_MAP = str.maketrans({"│": "|", "├": "|", "┬": "+", "└": "`"}) + +## Notes about the design choices ## + +# Here is some domumentation of the Standard Library's logging internals that +# can't be found completely in the official documentation. dill's logger is +# obtained by calling logging.getLogger('dill') and therefore is an instance of +# logging.getLoggerClass() at the call time. As this is controlled by the user, +# in order to add some functionality to it it's necessary to use a LoggerAdapter +# to wrap it, overriding some of the adapter's methods and creating new ones. +# +# Basic calling sequence +# ====================== +# +# Python's logging functionality can be conceptually divided into five steps: +# 0. Check logging level -> abort if call level is greater than logger level +# 1. Gather information -> construct a LogRecord from passed arguments and context +# 2. Filter (optional) -> discard message if the record matches a filter +# 3. Format -> format message with args, then format output string with message plus record +# 4. Handle -> write the formatted string to output as defined in the handler +# +# dill.logging.logger.log -> # or logger.info, etc. +# Logger.log -> \ +# Logger._log -> }- accept 'extra' parameter for custom record entries +# Logger.makeRecord -> / +# LogRecord.__init__ +# Logger.handle -> +# Logger.callHandlers -> +# Handler.handle -> +# Filterer.filter -> +# Filter.filter +# StreamHandler.emit -> +# Handler.format -> +# Formatter.format -> +# LogRecord.getMessage # does: record.message = msg % args +# Formatter.formatMessage -> +# PercentStyle.format # does: self._fmt % vars(record) +# +# NOTE: All methods from the second line on are from logging.__init__.py + +class TraceAdapter(logging.LoggerAdapter): + """ + Tracks object tree depth and calculates pickled object size. + + A single instance of this wraps the module's logger, as the logging API + doesn't allow setting it directly with a custom Logger subclass. The added + 'trace()' method receives a pickle instance as the first argument and + creates extra values to be added in the LogRecord from it, then calls + 'info()'. + + Usage of logger with 'trace()' method: + + >>> from dill.logger import adapter as logger #NOTE: not dill.logger.logger + >>> ... + >>> def save_atype(pickler, obj): + >>> logger.trace(pickler, "Message with %s and %r etc. placeholders", 'text', obj) + >>> ... + """ + def __init__(self, logger): + self.logger = logger + def addHandler(self, handler): + formatter = TraceFormatter("%(prefix)s%(message)s%(suffix)s", handler=handler) + handler.setFormatter(formatter) + self.logger.addHandler(handler) + def removeHandler(self, handler): + self.logger.removeHandler(handler) + def process(self, msg, kwargs): + # A no-op override, as we don't have self.extra. + return msg, kwargs + def trace_setup(self, pickler): + # Called by Pickler.dump(). + if not dill._dill.is_dill(pickler, child=False): + return + if self.isEnabledFor(logging.INFO): + pickler._trace_depth = 1 + pickler._size_stack = [] + else: + pickler._trace_depth = None + def trace(self, pickler, msg, *args, **kwargs): + if not hasattr(pickler, '_trace_depth'): + logger.info(msg, *args, **kwargs) + return + if pickler._trace_depth is None: + return + extra = kwargs.get('extra', {}) + pushed_obj = msg.startswith('#') + size = None + try: + # Streams are not required to be tellable. + size = pickler._file.tell() + frame = pickler.framer.current_frame + try: + size += frame.tell() + except AttributeError: + # PyPy may use a BytesBuilder as frame + size += len(frame) + except (AttributeError, TypeError): + pass + if size is not None: + if not pushed_obj: + pickler._size_stack.append(size) + else: + size -= pickler._size_stack.pop() + extra['size'] = size + if pushed_obj: + pickler._trace_depth -= 1 + extra['depth'] = pickler._trace_depth + kwargs['extra'] = extra + self.info(msg, *args, **kwargs) + if not pushed_obj: + pickler._trace_depth += 1 + +class TraceFormatter(logging.Formatter): + """ + Generates message prefix and suffix from record. + + This Formatter adds prefix and suffix strings to the log message in trace + mode (an also provides empty string defaults for normal logs). + """ + def __init__(self, *args, handler=None, **kwargs): + super().__init__(*args, **kwargs) + try: + encoding = handler.stream.encoding + if encoding is None: + raise AttributeError + except AttributeError: + encoding = locale.getpreferredencoding() + try: + encoding = codecs.lookup(encoding).name + except LookupError: + self.is_utf8 = False + else: + self.is_utf8 = (encoding == codecs.lookup('utf-8').name) + def format(self, record): + fields = {'prefix': "", 'suffix': ""} + if getattr(record, 'depth', 0) > 0: + if record.msg.startswith("#"): + prefix = (record.depth - 1)*"│" + "└" + elif record.depth == 1: + prefix = "┬" + else: + prefix = (record.depth - 2)*"│" + "├┬" + if not self.is_utf8: + prefix = prefix.translate(ASCII_MAP) + "-" + fields['prefix'] = prefix + " " + if hasattr(record, 'size') and record.size is not None and record.size >= 1: + # Show object size in human-readable form. + power = int(math.log(record.size, 2)) // 10 + size = record.size >> power*10 + fields['suffix'] = " [%d %sB]" % (size, "KMGTP"[power] + "i" if power else "") + vars(record).update(fields) + return super().format(record) + +logger = logging.getLogger('dill') +logger.propagate = False +adapter = TraceAdapter(logger) +stderr_handler = logging._StderrHandler() +adapter.addHandler(stderr_handler) + +def trace(arg: Union[bool, TextIO, str, os.PathLike] = None, *, mode: str = 'a') -> None: + """print a trace through the stack when pickling; useful for debugging + + With a single boolean argument, enable or disable the tracing. + + Example usage: + + >>> import dill + >>> dill.detect.trace(True) + >>> dill.dump_session() + + Alternatively, ``trace()`` can be used as a context manager. With no + arguments, it just takes care of restoring the tracing state on exit. + Either a file handle, or a file name and (optionally) a file mode may be + specitfied to redirect the tracing output in the ``with`` block context. A + log function is yielded by the manager so the user can write extra + information to the file. + + Example usage: + + >>> from dill import detect + >>> D = {'a': 42, 'b': {'x': None}} + >>> with detect.trace(): + >>> dumps(D) + ┬ D2: + ├┬ D2: + │└ # D2 [8 B] + └ # D2 [22 B] + >>> squared = lambda x: x**2 + >>> with detect.trace('output.txt', mode='w') as log: + >>> log("> D = %r", D) + >>> dumps(D) + >>> log("> squared = %r", squared) + >>> dumps(squared) + + Arguments: + arg: a boolean value, or an optional file-like or path-like object for the context manager + mode: mode string for ``open()`` if a file name is passed as the first argument + """ + if repr(arg) not in ('False', 'True'): + return TraceManager(file=arg, mode=mode) + logger.setLevel(logging.INFO if arg else logging.WARNING) + +class TraceManager(contextlib.AbstractContextManager): + """context manager version of trace(); can redirect the trace to a file""" + def __init__(self, file, mode): + self.file = file + self.mode = mode + self.redirect = file is not None + self.file_is_stream = hasattr(file, 'write') + def __enter__(self): + if self.redirect: + stderr_handler.flush() + if self.file_is_stream: + self.handler = logging.StreamHandler(self.file) + else: + self.handler = logging.FileHandler(self.file, self.mode) + adapter.removeHandler(stderr_handler) + adapter.addHandler(self.handler) + self.old_level = adapter.getEffectiveLevel() + adapter.setLevel(logging.INFO) + return adapter.info + def __exit__(self, *exc_info): + adapter.setLevel(self.old_level) + if self.redirect: + adapter.removeHandler(self.handler) + adapter.addHandler(stderr_handler) + if not self.file_is_stream: + self.handler.close() diff --git a/.venv/lib/python3.12/site-packages/dill/objtypes.py b/.venv/lib/python3.12/site-packages/dill/objtypes.py new file mode 100644 index 0000000..0453fe3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/objtypes.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +all Python Standard Library object types (currently: CH 1-15 @ 2.7) +and some other common object types (i.e. numpy.ndarray) + +to load more objects and types, use dill.load_types() +""" + +# non-local import of dill.objects +from dill import objects +for _type in objects.keys(): + exec("%s = type(objects['%s'])" % (_type,_type)) + +del objects +try: + del _type +except NameError: + pass diff --git a/.venv/lib/python3.12/site-packages/dill/pointers.py b/.venv/lib/python3.12/site-packages/dill/pointers.py new file mode 100644 index 0000000..d3e2e31 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/pointers.py @@ -0,0 +1,122 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +__all__ = ['parent', 'reference', 'at', 'parents', 'children'] + +import gc +import sys + +from ._dill import _proxy_helper as reference +from ._dill import _locate_object as at + +def parent(obj, objtype, ignore=()): + """ +>>> listiter = iter([4,5,6,7]) +>>> obj = parent(listiter, list) +>>> obj == [4,5,6,7] # actually 'is', but don't have handle any longer +True + +NOTE: objtype can be a single type (e.g. int or list) or a tuple of types. + +WARNING: if obj is a sequence (e.g. list), may produce unexpected results. +Parent finds *one* parent (e.g. the last member of the sequence). + """ + depth = 1 #XXX: always looking for the parent (only, right?) + chain = parents(obj, objtype, depth, ignore) + parent = chain.pop() + if parent is obj: + return None + return parent + + +def parents(obj, objtype, depth=1, ignore=()): #XXX: objtype=object ? + """Find the chain of referents for obj. Chain will end with obj. + + objtype: an object type or tuple of types to search for + depth: search depth (e.g. depth=2 is 'grandparents') + ignore: an object or tuple of objects to ignore in the search + """ + edge_func = gc.get_referents # looking for refs, not back_refs + predicate = lambda x: isinstance(x, objtype) # looking for parent type + #if objtype is None: predicate = lambda x: True #XXX: in obj.mro() ? + ignore = (ignore,) if not hasattr(ignore, '__len__') else ignore + ignore = (id(obj) for obj in ignore) + chain = find_chain(obj, predicate, edge_func, depth)[::-1] + #XXX: should pop off obj... ? + return chain + + +def children(obj, objtype, depth=1, ignore=()): #XXX: objtype=object ? + """Find the chain of referrers for obj. Chain will start with obj. + + objtype: an object type or tuple of types to search for + depth: search depth (e.g. depth=2 is 'grandchildren') + ignore: an object or tuple of objects to ignore in the search + + NOTE: a common thing to ignore is all globals, 'ignore=(globals(),)' + + NOTE: repeated calls may yield different results, as python stores + the last value in the special variable '_'; thus, it is often good + to execute something to replace '_' (e.g. >>> 1+1). + """ + edge_func = gc.get_referrers # looking for back_refs, not refs + predicate = lambda x: isinstance(x, objtype) # looking for child type + #if objtype is None: predicate = lambda x: True #XXX: in obj.mro() ? + ignore = (ignore,) if not hasattr(ignore, '__len__') else ignore + ignore = (id(obj) for obj in ignore) + chain = find_chain(obj, predicate, edge_func, depth, ignore) + #XXX: should pop off obj... ? + return chain + + +# more generic helper function (cut-n-paste from objgraph) +# Source at http://mg.pov.lt/objgraph/ +# Copyright (c) 2008-2010 Marius Gedminas +# Copyright (c) 2010 Stefano Rivera +# Released under the MIT licence (see objgraph/objgrah.py) + +def find_chain(obj, predicate, edge_func, max_depth=20, extra_ignore=()): + queue = [obj] + depth = {id(obj): 0} + parent = {id(obj): None} + ignore = set(extra_ignore) + ignore.add(id(extra_ignore)) + ignore.add(id(queue)) + ignore.add(id(depth)) + ignore.add(id(parent)) + ignore.add(id(ignore)) + ignore.add(id(sys._getframe())) # this function + ignore.add(id(sys._getframe(1))) # find_chain/find_backref_chain, likely + gc.collect() + while queue: + target = queue.pop(0) + if predicate(target): + chain = [target] + while parent[id(target)] is not None: + target = parent[id(target)] + chain.append(target) + return chain + tdepth = depth[id(target)] + if tdepth < max_depth: + referrers = edge_func(target) + ignore.add(id(referrers)) + for source in referrers: + if id(source) in ignore: + continue + if id(source) not in depth: + depth[id(source)] = tdepth + 1 + parent[id(source)] = target + queue.append(source) + return [obj] # not found + + +# backward compatibility +refobject = at + + +# EOF diff --git a/.venv/lib/python3.12/site-packages/dill/session.py b/.venv/lib/python3.12/site-packages/dill/session.py new file mode 100644 index 0000000..8278ccd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/session.py @@ -0,0 +1,612 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Author: Leonardo Gama (@leogama) +# Copyright (c) 2008-2015 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +Pickle and restore the intepreter session. +""" + +__all__ = [ + 'dump_module', 'load_module', 'load_module_asdict', + 'dump_session', 'load_session' # backward compatibility +] + +import re +import os +import sys +import warnings +import pathlib +import tempfile + +TEMPDIR = pathlib.PurePath(tempfile.gettempdir()) + +# Type hints. +from typing import Optional, Union + +from dill import _dill, Pickler, Unpickler +from ._dill import ( + BuiltinMethodType, FunctionType, MethodType, ModuleType, TypeType, + _import_module, _is_builtin_module, _is_imported_module, _main_module, + _reverse_typemap, __builtin__, UnpicklingError, +) + +def _module_map(): + """get map of imported modules""" + from collections import defaultdict + from types import SimpleNamespace + modmap = SimpleNamespace( + by_name=defaultdict(list), + by_id=defaultdict(list), + top_level={}, + ) + for modname, module in sys.modules.items(): + if modname in ('__main__', '__mp_main__') or not isinstance(module, ModuleType): + continue + if '.' not in modname: + modmap.top_level[id(module)] = modname + for objname, modobj in module.__dict__.items(): + modmap.by_name[objname].append((modobj, modname)) + modmap.by_id[id(modobj)].append((modobj, objname, modname)) + return modmap + +IMPORTED_AS_TYPES = (ModuleType, TypeType, FunctionType, MethodType, BuiltinMethodType) +if 'PyCapsuleType' in _reverse_typemap: + IMPORTED_AS_TYPES += (_reverse_typemap['PyCapsuleType'],) +IMPORTED_AS_MODULES = ('ctypes', 'typing', 'subprocess', 'threading', + r'concurrent\.futures(\.\w+)?', r'multiprocessing(\.\w+)?') +IMPORTED_AS_MODULES = tuple(re.compile(x) for x in IMPORTED_AS_MODULES) + +def _lookup_module(modmap, name, obj, main_module): + """lookup name or id of obj if module is imported""" + for modobj, modname in modmap.by_name[name]: + if modobj is obj and sys.modules[modname] is not main_module: + return modname, name + __module__ = getattr(obj, '__module__', None) + if isinstance(obj, IMPORTED_AS_TYPES) or (__module__ is not None + and any(regex.fullmatch(__module__) for regex in IMPORTED_AS_MODULES)): + for modobj, objname, modname in modmap.by_id[id(obj)]: + if sys.modules[modname] is not main_module: + return modname, objname + return None, None + +def _stash_modules(main_module): + modmap = _module_map() + newmod = ModuleType(main_module.__name__) + + imported = [] + imported_as = [] + imported_top_level = [] # keep separated for backward compatibility + original = {} + for name, obj in main_module.__dict__.items(): + if obj is main_module: + original[name] = newmod # self-reference + elif obj is main_module.__dict__: + original[name] = newmod.__dict__ + # Avoid incorrectly matching a singleton value in another package (ex.: __doc__). + elif any(obj is singleton for singleton in (None, False, True)) \ + or isinstance(obj, ModuleType) and _is_builtin_module(obj): # always saved by ref + original[name] = obj + else: + source_module, objname = _lookup_module(modmap, name, obj, main_module) + if source_module is not None: + if objname == name: + imported.append((source_module, name)) + else: + imported_as.append((source_module, objname, name)) + else: + try: + imported_top_level.append((modmap.top_level[id(obj)], name)) + except KeyError: + original[name] = obj + + if len(original) < len(main_module.__dict__): + newmod.__dict__.update(original) + newmod.__dill_imported = imported + newmod.__dill_imported_as = imported_as + newmod.__dill_imported_top_level = imported_top_level + if getattr(newmod, '__loader__', None) is None and _is_imported_module(main_module): + # Trick _is_imported_module() to force saving as an imported module. + newmod.__loader__ = True # will be discarded by save_module() + return newmod + else: + return main_module + +def _restore_modules(unpickler, main_module): + try: + for modname, name in main_module.__dict__.pop('__dill_imported'): + main_module.__dict__[name] = unpickler.find_class(modname, name) + for modname, objname, name in main_module.__dict__.pop('__dill_imported_as'): + main_module.__dict__[name] = unpickler.find_class(modname, objname) + for modname, name in main_module.__dict__.pop('__dill_imported_top_level'): + main_module.__dict__[name] = __import__(modname) + except KeyError: + pass + +#NOTE: 06/03/15 renamed main_module to main +def dump_module( + filename: Union[str, os.PathLike] = None, + module: Optional[Union[ModuleType, str]] = None, + refimported: bool = False, + **kwds +) -> None: + """Pickle the current state of :py:mod:`__main__` or another module to a file. + + Save the contents of :py:mod:`__main__` (e.g. from an interactive + interpreter session), an imported module, or a module-type object (e.g. + built with :py:class:`~types.ModuleType`), to a file. The pickled + module can then be restored with the function :py:func:`load_module`. + + Args: + filename: a path-like object or a writable stream. If `None` + (the default), write to a named file in a temporary directory. + module: a module object or the name of an importable module. If `None` + (the default), :py:mod:`__main__` is saved. + refimported: if `True`, all objects identified as having been imported + into the module's namespace are saved by reference. *Note:* this is + similar but independent from ``dill.settings[`byref`]``, as + ``refimported`` refers to virtually all imported objects, while + ``byref`` only affects select objects. + **kwds: extra keyword arguments passed to :py:class:`Pickler()`. + + Raises: + :py:exc:`PicklingError`: if pickling fails. + + Examples: + + - Save current interpreter session state: + + >>> import dill + >>> squared = lambda x: x*x + >>> dill.dump_module() # save state of __main__ to /tmp/session.pkl + + - Save the state of an imported/importable module: + + >>> import dill + >>> import pox + >>> pox.plus_one = lambda x: x+1 + >>> dill.dump_module('pox_session.pkl', module=pox) + + - Save the state of a non-importable, module-type object: + + >>> import dill + >>> from types import ModuleType + >>> foo = ModuleType('foo') + >>> foo.values = [1,2,3] + >>> import math + >>> foo.sin = math.sin + >>> dill.dump_module('foo_session.pkl', module=foo, refimported=True) + + - Restore the state of the saved modules: + + >>> import dill + >>> dill.load_module() + >>> squared(2) + 4 + >>> pox = dill.load_module('pox_session.pkl') + >>> pox.plus_one(1) + 2 + >>> foo = dill.load_module('foo_session.pkl') + >>> [foo.sin(x) for x in foo.values] + [0.8414709848078965, 0.9092974268256817, 0.1411200080598672] + + - Use `refimported` to save imported objects by reference: + + >>> import dill + >>> from html.entities import html5 + >>> type(html5), len(html5) + (dict, 2231) + >>> import io + >>> buf = io.BytesIO() + >>> dill.dump_module(buf) # saves __main__, with html5 saved by value + >>> len(buf.getvalue()) # pickle size in bytes + 71665 + >>> buf = io.BytesIO() + >>> dill.dump_module(buf, refimported=True) # html5 saved by reference + >>> len(buf.getvalue()) + 438 + + *Changed in version 0.3.6:* Function ``dump_session()`` was renamed to + ``dump_module()``. Parameters ``main`` and ``byref`` were renamed to + ``module`` and ``refimported``, respectively. + + Note: + Currently, ``dill.settings['byref']`` and ``dill.settings['recurse']`` + don't apply to this function. + """ + for old_par, par in [('main', 'module'), ('byref', 'refimported')]: + if old_par in kwds: + message = "The argument %r has been renamed %r" % (old_par, par) + if old_par == 'byref': + message += " to distinguish it from dill.settings['byref']" + warnings.warn(message + ".", PendingDeprecationWarning) + if locals()[par]: # the defaults are None and False + raise TypeError("both %r and %r arguments were used" % (par, old_par)) + refimported = kwds.pop('byref', refimported) + module = kwds.pop('main', module) + + from .settings import settings + protocol = settings['protocol'] + main = module + if main is None: + main = _main_module + elif isinstance(main, str): + main = _import_module(main) + if not isinstance(main, ModuleType): + raise TypeError("%r is not a module" % main) + if hasattr(filename, 'write'): + file = filename + else: + if filename is None: + filename = str(TEMPDIR/'session.pkl') + file = open(filename, 'wb') + try: + pickler = Pickler(file, protocol, **kwds) + pickler._original_main = main + if refimported: + main = _stash_modules(main) + pickler._main = main #FIXME: dill.settings are disabled + pickler._byref = False # disable pickling by name reference + pickler._recurse = False # disable pickling recursion for globals + pickler._session = True # is best indicator of when pickling a session + pickler._first_pass = True + pickler._main_modified = main is not pickler._original_main + pickler.dump(main) + finally: + if file is not filename: # if newly opened file + file.close() + return + +# Backward compatibility. +def dump_session(filename=None, main=None, byref=False, **kwds): + warnings.warn("dump_session() has been renamed dump_module()", PendingDeprecationWarning) + dump_module(filename, module=main, refimported=byref, **kwds) +dump_session.__doc__ = dump_module.__doc__ + +class _PeekableReader: + """lightweight stream wrapper that implements peek()""" + def __init__(self, stream): + self.stream = stream + def read(self, n): + return self.stream.read(n) + def readline(self): + return self.stream.readline() + def tell(self): + return self.stream.tell() + def close(self): + return self.stream.close() + def peek(self, n): + stream = self.stream + try: + if hasattr(stream, 'flush'): stream.flush() + position = stream.tell() + stream.seek(position) # assert seek() works before reading + chunk = stream.read(n) + stream.seek(position) + return chunk + except (AttributeError, OSError): + raise NotImplementedError("stream is not peekable: %r", stream) from None + +def _make_peekable(stream): + """return stream as an object with a peek() method""" + import io + if hasattr(stream, 'peek'): + return stream + if not (hasattr(stream, 'tell') and hasattr(stream, 'seek')): + try: + return io.BufferedReader(stream) + except Exception: + pass + return _PeekableReader(stream) + +def _identify_module(file, main=None): + """identify the name of the module stored in the given file-type object""" + from pickletools import genops + UNICODE = {'UNICODE', 'BINUNICODE', 'SHORT_BINUNICODE'} + found_import = False + try: + for opcode, arg, pos in genops(file.peek(256)): + if not found_import: + if opcode.name in ('GLOBAL', 'SHORT_BINUNICODE') and \ + arg.endswith('_import_module'): + found_import = True + else: + if opcode.name in UNICODE: + return arg + else: + raise UnpicklingError("reached STOP without finding main module") + except (NotImplementedError, ValueError) as error: + # ValueError occours when the end of the chunk is reached (without a STOP). + if isinstance(error, NotImplementedError) and main is not None: + # file is not peekable, but we have main. + return None + raise UnpicklingError("unable to identify main module") from error + +def load_module( + filename: Union[str, os.PathLike] = None, + module: Optional[Union[ModuleType, str]] = None, + **kwds +) -> Optional[ModuleType]: + """Update the selected module (default is :py:mod:`__main__`) with + the state saved at ``filename``. + + Restore a module to the state saved with :py:func:`dump_module`. The + saved module can be :py:mod:`__main__` (e.g. an interpreter session), + an imported module, or a module-type object (e.g. created with + :py:class:`~types.ModuleType`). + + When restoring the state of a non-importable module-type object, the + current instance of this module may be passed as the argument ``main``. + Otherwise, a new instance is created with :py:class:`~types.ModuleType` + and returned. + + Args: + filename: a path-like object or a readable stream. If `None` + (the default), read from a named file in a temporary directory. + module: a module object or the name of an importable module; + the module name and kind (i.e. imported or non-imported) must + match the name and kind of the module stored at ``filename``. + **kwds: extra keyword arguments passed to :py:class:`Unpickler()`. + + Raises: + :py:exc:`UnpicklingError`: if unpickling fails. + :py:exc:`ValueError`: if the argument ``main`` and module saved + at ``filename`` are incompatible. + + Returns: + A module object, if the saved module is not :py:mod:`__main__` or + a module instance wasn't provided with the argument ``main``. + + Examples: + + - Save the state of some modules: + + >>> import dill + >>> squared = lambda x: x*x + >>> dill.dump_module() # save state of __main__ to /tmp/session.pkl + >>> + >>> import pox # an imported module + >>> pox.plus_one = lambda x: x+1 + >>> dill.dump_module('pox_session.pkl', module=pox) + >>> + >>> from types import ModuleType + >>> foo = ModuleType('foo') # a module-type object + >>> foo.values = [1,2,3] + >>> import math + >>> foo.sin = math.sin + >>> dill.dump_module('foo_session.pkl', module=foo, refimported=True) + + - Restore the state of the interpreter: + + >>> import dill + >>> dill.load_module() # updates __main__ from /tmp/session.pkl + >>> squared(2) + 4 + + - Load the saved state of an importable module: + + >>> import dill + >>> pox = dill.load_module('pox_session.pkl') + >>> pox.plus_one(1) + 2 + >>> import sys + >>> pox in sys.modules.values() + True + + - Load the saved state of a non-importable module-type object: + + >>> import dill + >>> foo = dill.load_module('foo_session.pkl') + >>> [foo.sin(x) for x in foo.values] + [0.8414709848078965, 0.9092974268256817, 0.1411200080598672] + >>> import math + >>> foo.sin is math.sin # foo.sin was saved by reference + True + >>> import sys + >>> foo in sys.modules.values() + False + + - Update the state of a non-importable module-type object: + + >>> import dill + >>> from types import ModuleType + >>> foo = ModuleType('foo') + >>> foo.values = ['a','b'] + >>> foo.sin = lambda x: x*x + >>> dill.load_module('foo_session.pkl', module=foo) + >>> [foo.sin(x) for x in foo.values] + [0.8414709848078965, 0.9092974268256817, 0.1411200080598672] + + *Changed in version 0.3.6:* Function ``load_session()`` was renamed to + ``load_module()``. Parameter ``main`` was renamed to ``module``. + + See also: + :py:func:`load_module_asdict` to load the contents of module saved + with :py:func:`dump_module` into a dictionary. + """ + if 'main' in kwds: + warnings.warn( + "The argument 'main' has been renamed 'module'.", + PendingDeprecationWarning + ) + if module is not None: + raise TypeError("both 'module' and 'main' arguments were used") + module = kwds.pop('main') + main = module + if hasattr(filename, 'read'): + file = filename + else: + if filename is None: + filename = str(TEMPDIR/'session.pkl') + file = open(filename, 'rb') + try: + file = _make_peekable(file) + #FIXME: dill.settings are disabled + unpickler = Unpickler(file, **kwds) + unpickler._session = True + + # Resolve unpickler._main + pickle_main = _identify_module(file, main) + if main is None and pickle_main is not None: + main = pickle_main + if isinstance(main, str): + if main.startswith('__runtime__.'): + # Create runtime module to load the session into. + main = ModuleType(main.partition('.')[-1]) + else: + main = _import_module(main) + if main is not None: + if not isinstance(main, ModuleType): + raise TypeError("%r is not a module" % main) + unpickler._main = main + else: + main = unpickler._main + + # Check against the pickle's main. + is_main_imported = _is_imported_module(main) + if pickle_main is not None: + is_runtime_mod = pickle_main.startswith('__runtime__.') + if is_runtime_mod: + pickle_main = pickle_main.partition('.')[-1] + error_msg = "can't update{} module{} %r with the saved state of{} module{} %r" + if is_runtime_mod and is_main_imported: + raise ValueError( + error_msg.format(" imported", "", "", "-type object") + % (main.__name__, pickle_main) + ) + if not is_runtime_mod and not is_main_imported: + raise ValueError( + error_msg.format("", "-type object", " imported", "") + % (pickle_main, main.__name__) + ) + if main.__name__ != pickle_main: + raise ValueError(error_msg.format("", "", "", "") % (main.__name__, pickle_main)) + + # This is for find_class() to be able to locate it. + if not is_main_imported: + runtime_main = '__runtime__.%s' % main.__name__ + sys.modules[runtime_main] = main + + loaded = unpickler.load() + finally: + if not hasattr(filename, 'read'): # if newly opened file + file.close() + try: + del sys.modules[runtime_main] + except (KeyError, NameError): + pass + assert loaded is main + _restore_modules(unpickler, main) + if main is _main_module or main is module: + return None + else: + return main + +# Backward compatibility. +def load_session(filename=None, main=None, **kwds): + warnings.warn("load_session() has been renamed load_module().", PendingDeprecationWarning) + load_module(filename, module=main, **kwds) +load_session.__doc__ = load_module.__doc__ + +def load_module_asdict( + filename: Union[str, os.PathLike] = None, + update: bool = False, + **kwds +) -> dict: + """ + Load the contents of a saved module into a dictionary. + + ``load_module_asdict()`` is the near-equivalent of:: + + lambda filename: vars(dill.load_module(filename)).copy() + + however, does not alter the original module. Also, the path of + the loaded module is stored in the ``__session__`` attribute. + + Args: + filename: a path-like object or a readable stream. If `None` + (the default), read from a named file in a temporary directory. + update: if `True`, initialize the dictionary with the current state + of the module prior to loading the state stored at filename. + **kwds: extra keyword arguments passed to :py:class:`Unpickler()` + + Raises: + :py:exc:`UnpicklingError`: if unpickling fails + + Returns: + A copy of the restored module's dictionary. + + Note: + If ``update`` is True, the corresponding module may first be imported + into the current namespace before the saved state is loaded from + filename to the dictionary. Note that any module that is imported into + the current namespace as a side-effect of using ``update`` will not be + modified by loading the saved module in filename to a dictionary. + + Example: + >>> import dill + >>> alist = [1, 2, 3] + >>> anum = 42 + >>> dill.dump_module() + >>> anum = 0 + >>> new_var = 'spam' + >>> main = dill.load_module_asdict() + >>> main['__name__'], main['__session__'] + ('__main__', '/tmp/session.pkl') + >>> main is globals() # loaded objects don't reference globals + False + >>> main['alist'] == alist + True + >>> main['alist'] is alist # was saved by value + False + >>> main['anum'] == anum # changed after the session was saved + False + >>> new_var in main # would be True if the option 'update' was set + False + """ + if 'module' in kwds: + raise TypeError("'module' is an invalid keyword argument for load_module_asdict()") + if hasattr(filename, 'read'): + file = filename + else: + if filename is None: + filename = str(TEMPDIR/'session.pkl') + file = open(filename, 'rb') + try: + file = _make_peekable(file) + main_name = _identify_module(file) + old_main = sys.modules.get(main_name) + main = ModuleType(main_name) + if update: + if old_main is None: + old_main = _import_module(main_name) + main.__dict__.update(old_main.__dict__) + else: + main.__builtins__ = __builtin__ + sys.modules[main_name] = main + load_module(file, **kwds) + finally: + if not hasattr(filename, 'read'): # if newly opened file + file.close() + try: + if old_main is None: + del sys.modules[main_name] + else: + sys.modules[main_name] = old_main + except NameError: # failed before setting old_main + pass + main.__session__ = str(filename) + return main.__dict__ + + +# Internal exports for backward compatibility with dill v0.3.5.1 +# Can't be placed in dill._dill because of circular import problems. +for name in ( + '_lookup_module', '_module_map', '_restore_modules', '_stash_modules', + 'dump_session', 'load_session' # backward compatibility functions +): + setattr(_dill, name, globals()[name]) +del name diff --git a/.venv/lib/python3.12/site-packages/dill/settings.py b/.venv/lib/python3.12/site-packages/dill/settings.py new file mode 100644 index 0000000..bba1ab9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/settings.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +global settings for Pickler +""" + +from pickle import DEFAULT_PROTOCOL + +settings = { + #'main' : None, + 'protocol' : DEFAULT_PROTOCOL, + 'byref' : False, + #'strictio' : False, + 'fmode' : 0, #HANDLE_FMODE + 'recurse' : False, + 'ignore' : False, +} + +del DEFAULT_PROTOCOL + diff --git a/.venv/lib/python3.12/site-packages/dill/source.py b/.venv/lib/python3.12/site-packages/dill/source.py new file mode 100644 index 0000000..4b538fa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/source.py @@ -0,0 +1,1023 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +# +# inspired by inspect.py from Python-2.7.6 +# inspect.py author: 'Ka-Ping Yee ' +# inspect.py merged into original dill.source by Mike McKerns 4/13/14 +""" +Extensions to python's 'inspect' module, which can be used +to retrieve information from live python objects. The methods +defined in this module are augmented to facilitate access to +source code of interactively defined functions and classes, +as well as provide access to source code for objects defined +in a file. +""" + +__all__ = ['findsource', 'getsourcelines', 'getsource', 'indent', 'outdent', \ + '_wrap', 'dumpsource', 'getname', '_namespace', 'getimport', \ + '_importable', 'importable','isdynamic', 'isfrommain'] + +import linecache +import re +from inspect import (getblock, getfile, getmodule, getsourcefile, indentsize, + isbuiltin, isclass, iscode, isframe, isfunction, ismethod, + ismodule, istraceback) +from tokenize import TokenError + +from ._dill import IS_IPYTHON + + +def isfrommain(obj): + "check if object was built in __main__" + module = getmodule(obj) + if module and module.__name__ == '__main__': + return True + return False + + +def isdynamic(obj): + "check if object was built in the interpreter" + try: file = getfile(obj) + except TypeError: file = None + if file == '' and isfrommain(obj): + return True + return False + + +def _matchlambda(func, line): + """check if lambda object 'func' matches raw line of code 'line'""" + from .detect import code as getcode + from .detect import freevars, globalvars, varnames + dummy = lambda : '__this_is_a_big_dummy_function__' + # process the line (removing leading whitespace, etc) + lhs,rhs = line.split('lambda ',1)[-1].split(":", 1) #FIXME: if !1 inputs + try: #FIXME: unsafe + _ = eval("lambda %s : %s" % (lhs,rhs), globals(),locals()) + except Exception: _ = dummy + # get code objects, for comparison + _, code = getcode(_).co_code, getcode(func).co_code + # check if func is in closure + _f = [line.count(i) for i in freevars(func).keys()] + if not _f: # not in closure + # check if code matches + if _ == code: return True + return False + # weak check on freevars + if not all(_f): return False #XXX: VERY WEAK + # weak check on varnames and globalvars + _f = varnames(func) + _f = [line.count(i) for i in _f[0]+_f[1]] + if _f and not all(_f): return False #XXX: VERY WEAK + _f = [line.count(i) for i in globalvars(func).keys()] + if _f and not all(_f): return False #XXX: VERY WEAK + # check if func is a double lambda + if (line.count('lambda ') > 1) and (lhs in freevars(func).keys()): + _lhs,_rhs = rhs.split('lambda ',1)[-1].split(":",1) #FIXME: if !1 inputs + try: #FIXME: unsafe + _f = eval("lambda %s : %s" % (_lhs,_rhs), globals(),locals()) + except Exception: _f = dummy + # get code objects, for comparison + _, code = getcode(_f).co_code, getcode(func).co_code + if len(_) != len(code): return False + #NOTE: should be same code same order, but except for 't' and '\x88' + _ = set((i,j) for (i,j) in zip(_,code) if i != j) + if len(_) != 1: return False #('t','\x88') + return True + # check indentsize + if not indentsize(line): return False #FIXME: is this a good check??? + # check if code 'pattern' matches + #XXX: or pattern match against dis.dis(code)? (or use uncompyle2?) + _ = _.split(_[0]) # 't' #XXX: remove matching values if starts the same? + _f = code.split(code[0]) # '\x88' + #NOTE: should be same code different order, with different first element + _ = dict(re.match(r'([\W\D\S])(.*)', _[i]).groups() for i in range(1,len(_))) + _f = dict(re.match(r'([\W\D\S])(.*)', _f[i]).groups() for i in range(1,len(_f))) + if (_.keys() == _f.keys()) and (sorted(_.values()) == sorted(_f.values())): + return True + return False + + +def findsource(object): + """Return the entire source file and starting line number for an object. + For interactively-defined objects, the 'file' is the interpreter's history. + + The argument may be a module, class, method, function, traceback, frame, + or code object. The source code is returned as a list of all the lines + in the file and the line number indexes a line in that list. An IOError + is raised if the source code cannot be retrieved, while a TypeError is + raised for objects where the source code is unavailable (e.g. builtins).""" + + module = getmodule(object) + try: file = getfile(module) + except TypeError: file = None + is_module_main = (module and module.__name__ == '__main__' and not file) + if IS_IPYTHON and is_module_main: + #FIXME: quick fix for functions and classes in IPython interpreter + try: + file = getfile(object) + sourcefile = getsourcefile(object) + except TypeError: + if isclass(object): + for object_method in filter(isfunction, object.__dict__.values()): + # look for a method of the class + file_candidate = getfile(object_method) + if not file_candidate.startswith('': pat1 = r'(.*(?': + pat1 = r'(.*(?' + if stdin: + lnum = len(lines) - 1 # can't get lnum easily, so leverage pat + if not pat1: pat1 = r'^(\s*def\s)|(.*(? 0: #XXX: won't find decorators in ? + line = lines[lnum] + if pat1.match(line): + if not stdin: break # co_firstlineno does the job + if name == '': # hackery needed to confirm a match + if _matchlambda(obj, line): break + else: # not a lambda, just look for the name + if name in line: # need to check for decorator... + hats = 0 + for _lnum in range(lnum-1,-1,-1): + if pat2.match(lines[_lnum]): hats += 1 + else: break + lnum = lnum - hats + break + lnum = lnum - 1 + return lines, lnum + + try: # turn instances into classes + if not isclass(object) and isclass(type(object)): # __class__ + object = object.__class__ #XXX: sometimes type(class) is better? + #XXX: we don't find how the instance was built + except AttributeError: pass + if isclass(object): + name = object.__name__ + pat = re.compile(r'^(\s*)class\s*' + name + r'\b') + # make some effort to find the best matching class definition: + # use the one with the least indentation, which is the one + # that's most probably not inside a function definition. + candidates = [] + for i in range(len(lines)-1,-1,-1): + match = pat.match(lines[i]) + if match: + # if it's at toplevel, it's already the best one + if lines[i][0] == 'c': + return lines, i + # else add whitespace to candidate list + candidates.append((match.group(1), i)) + if candidates: + # this will sort by whitespace, and by line number, + # less whitespace first #XXX: should sort high lnum before low + candidates.sort() + return lines, candidates[0][1] + else: + raise IOError('could not find class definition') + raise IOError('could not find code object') + + +def getblocks(object, lstrip=False, enclosing=False, locate=False): + """Return a list of source lines and starting line number for an object. + Interactively-defined objects refer to lines in the interpreter's history. + + If enclosing=True, then also return any enclosing code. + If lstrip=True, ensure there is no indentation in the first line of code. + If locate=True, then also return the line number for the block of code. + + DEPRECATED: use 'getsourcelines' instead + """ + lines, lnum = findsource(object) + + if ismodule(object): + if lstrip: lines = _outdent(lines) + return ([lines], [0]) if locate is True else [lines] + + #XXX: 'enclosing' means: closures only? or classes and files? + indent = indentsize(lines[lnum]) + block = getblock(lines[lnum:]) #XXX: catch any TokenError here? + + if not enclosing or not indent: + if lstrip: block = _outdent(block) + return ([block], [lnum]) if locate is True else [block] + + pat1 = r'^(\s*def\s)|(.*(? indent: #XXX: should be >= ? + line += len(code) - skip + elif target in ''.join(code): + blocks.append(code) # save code block as the potential winner + _lnum.append(line - skip) # save the line number for the match + line += len(code) - skip + else: + line += 1 + skip = 0 + # find skip: the number of consecutive decorators + elif pat2.match(lines[line]): + try: code = getblock(lines[line:]) + except TokenError: code = [lines[line]] + skip = 1 + for _line in code[1:]: # skip lines that are decorators + if not pat2.match(_line): break + skip += 1 + line += skip + # no match: reset skip and go to the next line + else: + line +=1 + skip = 0 + + if not blocks: + blocks = [block] + _lnum = [lnum] + if lstrip: blocks = [_outdent(block) for block in blocks] + # return last match + return (blocks, _lnum) if locate is True else blocks + + +def getsourcelines(object, lstrip=False, enclosing=False): + """Return a list of source lines and starting line number for an object. + Interactively-defined objects refer to lines in the interpreter's history. + + The argument may be a module, class, method, function, traceback, frame, + or code object. The source code is returned as a list of the lines + corresponding to the object and the line number indicates where in the + original source file the first line of code was found. An IOError is + raised if the source code cannot be retrieved, while a TypeError is + raised for objects where the source code is unavailable (e.g. builtins). + + If lstrip=True, ensure there is no indentation in the first line of code. + If enclosing=True, then also return any enclosing code.""" + code, n = getblocks(object, lstrip=lstrip, enclosing=enclosing, locate=True) + return code[-1], n[-1] + + +#NOTE: broke backward compatibility 4/16/14 (was lstrip=True, force=True) +def getsource(object, alias='', lstrip=False, enclosing=False, \ + force=False, builtin=False): + """Return the text of the source code for an object. The source code for + interactively-defined objects are extracted from the interpreter's history. + + The argument may be a module, class, method, function, traceback, frame, + or code object. The source code is returned as a single string. An + IOError is raised if the source code cannot be retrieved, while a + TypeError is raised for objects where the source code is unavailable + (e.g. builtins). + + If alias is provided, then add a line of code that renames the object. + If lstrip=True, ensure there is no indentation in the first line of code. + If enclosing=True, then also return any enclosing code. + If force=True, catch (TypeError,IOError) and try to use import hooks. + If builtin=True, force an import for any builtins + """ + # hascode denotes a callable + hascode = _hascode(object) + # is a class instance type (and not in builtins) + instance = _isinstance(object) + + # get source lines; if fail, try to 'force' an import + try: # fails for builtins, and other assorted object types + lines, lnum = getsourcelines(object, enclosing=enclosing) + except (TypeError, IOError): # failed to get source, resort to import hooks + if not force: # don't try to get types that findsource can't get + raise + if not getmodule(object): # get things like 'None' and '1' + if not instance: return getimport(object, alias, builtin=builtin) + # special handling (numpy arrays, ...) + _import = getimport(object, builtin=builtin) + name = getname(object, force=True) + _alias = "%s = " % alias if alias else "" + if alias == name: _alias = "" + return _import+_alias+"%s\n" % name + else: #FIXME: could use a good bit of cleanup, since using getimport... + if not instance: return getimport(object, alias, builtin=builtin) + # now we are dealing with an instance... + name = object.__class__.__name__ + module = object.__module__ + if module in ['builtins','__builtin__']: + return getimport(object, alias, builtin=builtin) + else: #FIXME: leverage getimport? use 'from module import name'? + lines, lnum = ["%s = __import__('%s', fromlist=['%s']).%s\n" % (name,module,name,name)], 0 + obj = eval(lines[0].lstrip(name + ' = ')) + lines, lnum = getsourcelines(obj, enclosing=enclosing) + + # strip leading indent (helps ensure can be imported) + if lstrip or alias: + lines = _outdent(lines) + + # instantiate, if there's a nice repr #XXX: BAD IDEA??? + if instance: #and force: #XXX: move into findsource or getsourcelines ? + if '(' in repr(object): lines.append('%r\n' % object) + #else: #XXX: better to somehow to leverage __reduce__ ? + # reconstructor,args = object.__reduce__() + # _ = reconstructor(*args) + else: # fall back to serialization #XXX: bad idea? + #XXX: better not duplicate work? #XXX: better new/enclose=True? + lines = dumpsource(object, alias='', new=force, enclose=False) + lines, lnum = [line+'\n' for line in lines.split('\n')][:-1], 0 + #else: object.__code__ # raise AttributeError + + # add an alias to the source code + if alias: + if hascode: + skip = 0 + for line in lines: # skip lines that are decorators + if not line.startswith('@'): break + skip += 1 + #XXX: use regex from findsource / getsourcelines ? + if lines[skip].lstrip().startswith('def '): # we have a function + if alias != object.__name__: + lines.append('\n%s = %s\n' % (alias, object.__name__)) + elif 'lambda ' in lines[skip]: # we have a lambda + if alias != lines[skip].split('=')[0].strip(): + lines[skip] = '%s = %s' % (alias, lines[skip]) + else: # ...try to use the object's name + if alias != object.__name__: + lines.append('\n%s = %s\n' % (alias, object.__name__)) + else: # class or class instance + if instance: + if alias != lines[-1].split('=')[0].strip(): + lines[-1] = ('%s = ' % alias) + lines[-1] + else: + name = getname(object, force=True) or object.__name__ + if alias != name: + lines.append('\n%s = %s\n' % (alias, name)) + return ''.join(lines) + + +def _hascode(object): + '''True if object has an attribute that stores it's __code__''' + return getattr(object,'__code__',None) or getattr(object,'func_code',None) + +def _isinstance(object): + '''True if object is a class instance type (and is not a builtin)''' + if _hascode(object) or isclass(object) or ismodule(object): + return False + if istraceback(object) or isframe(object) or iscode(object): + return False + # special handling (numpy arrays, ...) + if not getmodule(object) and getmodule(type(object)).__name__ in ['numpy']: + return True +# # check if is instance of a builtin +# if not getmodule(object) and getmodule(type(object)).__name__ in ['__builtin__','builtins']: +# return False + _types = ('") + if not repr(type(object)).startswith(_types): #FIXME: weak hack + return False + if not getmodule(object) or object.__module__ in ['builtins','__builtin__'] or getname(object, force=True) in ['array']: + return False + return True # by process of elimination... it's what we want + + +def _intypes(object): + '''check if object is in the 'types' module''' + import types + # allow user to pass in object or object.__name__ + if type(object) is not type(''): + object = getname(object, force=True) + if object == 'ellipsis': object = 'EllipsisType' + return True if hasattr(types, object) else False + + +def _isstring(object): #XXX: isstringlike better? + '''check if object is a string-like type''' + return isinstance(object, (str, bytes)) + + +def indent(code, spaces=4): + '''indent a block of code with whitespace (default is 4 spaces)''' + indent = indentsize(code) + from numbers import Integral + if isinstance(spaces, Integral): spaces = ' '*spaces + # if '\t' is provided, will indent with a tab + nspaces = indentsize(spaces) + # blank lines (etc) need to be ignored + lines = code.split('\n') +## stq = "'''"; dtq = '"""' +## in_stq = in_dtq = False + for i in range(len(lines)): + #FIXME: works... but shouldn't indent 2nd+ lines of multiline doc + _indent = indentsize(lines[i]) + if indent > _indent: continue + lines[i] = spaces+lines[i] +## #FIXME: may fail when stq and dtq in same line (depends on ordering) +## nstq, ndtq = lines[i].count(stq), lines[i].count(dtq) +## if not in_dtq and not in_stq: +## lines[i] = spaces+lines[i] # we indent +## # entering a comment block +## if nstq%2: in_stq = not in_stq +## if ndtq%2: in_dtq = not in_dtq +## # leaving a comment block +## elif in_dtq and ndtq%2: in_dtq = not in_dtq +## elif in_stq and nstq%2: in_stq = not in_stq +## else: pass + if lines[-1].strip() == '': lines[-1] = '' + return '\n'.join(lines) + + +def _outdent(lines, spaces=None, all=True): + '''outdent lines of code, accounting for docs and line continuations''' + indent = indentsize(lines[0]) + if spaces is None or spaces > indent or spaces < 0: spaces = indent + for i in range(len(lines) if all else 1): + #FIXME: works... but shouldn't outdent 2nd+ lines of multiline doc + _indent = indentsize(lines[i]) + if spaces > _indent: _spaces = _indent + else: _spaces = spaces + lines[i] = lines[i][_spaces:] + return lines + +def outdent(code, spaces=None, all=True): + '''outdent a block of code (default is to strip all leading whitespace)''' + indent = indentsize(code) + if spaces is None or spaces > indent or spaces < 0: spaces = indent + #XXX: will this delete '\n' in some cases? + if not all: return code[spaces:] + return '\n'.join(_outdent(code.split('\n'), spaces=spaces, all=all)) + + +# _wrap provides an wrapper to correctly exec and load into locals +__globals__ = globals() +__locals__ = locals() +def _wrap(f): + """ encapsulate a function and it's __import__ """ + def func(*args, **kwds): + try: + # _ = eval(getsource(f, force=True)) #XXX: safer but less robust + exec(getimportable(f, alias='_'), __globals__, __locals__) + except Exception: + raise ImportError('cannot import name ' + f.__name__) + return _(*args, **kwds) + func.__name__ = f.__name__ + func.__doc__ = f.__doc__ + return func + + +def _enclose(object, alias=''): #FIXME: needs alias to hold returned object + """create a function enclosure around the source of some object""" + #XXX: dummy and stub should append a random string + dummy = '__this_is_a_big_dummy_enclosing_function__' + stub = '__this_is_a_stub_variable__' + code = 'def %s():\n' % dummy + code += indent(getsource(object, alias=stub, lstrip=True, force=True)) + code += indent('return %s\n' % stub) + if alias: code += '%s = ' % alias + code += '%s(); del %s\n' % (dummy, dummy) + #code += "globals().pop('%s',lambda :None)()\n" % dummy + return code + + +def dumpsource(object, alias='', new=False, enclose=True): + """'dump to source', where the code includes a pickled object. + + If new=True and object is a class instance, then create a new + instance using the unpacked class source code. If enclose, then + create the object inside a function enclosure (thus minimizing + any global namespace pollution). + """ + from dill import dumps + pik = repr(dumps(object)) + code = 'import dill\n' + if enclose: + stub = '__this_is_a_stub_variable__' #XXX: *must* be same _enclose.stub + pre = '%s = ' % stub + new = False #FIXME: new=True doesn't work with enclose=True + else: + stub = alias + pre = '%s = ' % stub if alias else alias + + # if a 'new' instance is not needed, then just dump and load + if not new or not _isinstance(object): + code += pre + 'dill.loads(%s)\n' % pik + else: #XXX: other cases where source code is needed??? + code += getsource(object.__class__, alias='', lstrip=True, force=True) + mod = repr(object.__module__) # should have a module (no builtins here) + code += pre + 'dill.loads(%s.replace(b%s,bytes(__name__,"UTF-8")))\n' % (pik,mod) + #code += 'del %s' % object.__class__.__name__ #NOTE: kills any existing! + + if enclose: + # generation of the 'enclosure' + dummy = '__this_is_a_big_dummy_object__' + dummy = _enclose(dummy, alias=alias) + # hack to replace the 'dummy' with the 'real' code + dummy = dummy.split('\n') + code = dummy[0]+'\n' + indent(code) + '\n'.join(dummy[-3:]) + + return code #XXX: better 'dumpsourcelines', returning list of lines? + + +def getname(obj, force=False, fqn=False): #XXX: throw(?) to raise error on fail? + """get the name of the object. for lambdas, get the name of the pointer """ + if fqn: return '.'.join(_namespace(obj)) #NOTE: returns 'type' + module = getmodule(obj) + if not module: # things like "None" and "1" + if not force: return None #NOTE: returns 'instance' NOT 'type' #FIXME? + # handle some special cases + if hasattr(obj, 'dtype') and not obj.shape: + return getname(obj.__class__) + "(" + repr(obj.tolist()) + ")" + return repr(obj) + try: + #XXX: 'wrong' for decorators and curried functions ? + # if obj.func_closure: ...use logic from getimportable, etc ? + name = obj.__name__ + if name == '': + return getsource(obj).split('=',1)[0].strip() + # handle some special cases + if module.__name__ in ['builtins','__builtin__']: + if name == 'ellipsis': name = 'EllipsisType' + return name + except AttributeError: #XXX: better to just throw AttributeError ? + if not force: return None + name = repr(obj) + if name.startswith('<'): # or name.split('('): + return None + return name + + +def _namespace(obj): + """_namespace(obj); return namespace hierarchy (as a list of names) + for the given object. For an instance, find the class hierarchy. + + For example: + + >>> from functools import partial + >>> p = partial(int, base=2) + >>> _namespace(p) + [\'functools\', \'partial\'] + """ + # mostly for functions and modules and such + #FIXME: 'wrong' for decorators and curried functions + try: #XXX: needs some work and testing on different types + module = qual = str(getmodule(obj)).split()[1].strip('>').strip('"').strip("'") + qual = qual.split('.') + if ismodule(obj): + return qual + # get name of a lambda, function, etc + name = getname(obj) or obj.__name__ # failing, raise AttributeError + # check special cases (NoneType, ...) + if module in ['builtins','__builtin__']: # BuiltinFunctionType + if _intypes(name): return ['types'] + [name] + return qual + [name] #XXX: can be wrong for some aliased objects + except Exception: pass + # special case: numpy.inf and numpy.nan (we don't want them as floats) + if str(obj) in ['inf','nan','Inf','NaN']: # is more, but are they needed? + return ['numpy'] + [str(obj)] + # mostly for classes and class instances and such + module = getattr(obj.__class__, '__module__', None) + qual = str(obj.__class__) + try: qual = qual[qual.index("'")+1:-2] + except ValueError: pass # str(obj.__class__) made the 'try' unnecessary + qual = qual.split(".") + if module in ['builtins','__builtin__']: + # check special cases (NoneType, Ellipsis, ...) + if qual[-1] == 'ellipsis': qual[-1] = 'EllipsisType' + if _intypes(qual[-1]): module = 'types' #XXX: BuiltinFunctionType + qual = [module] + qual + return qual + + +#NOTE: 05/25/14 broke backward compatibility: added 'alias' as 3rd argument +def _getimport(head, tail, alias='', verify=True, builtin=False): + """helper to build a likely import string from head and tail of namespace. + ('head','tail') are used in the following context: "from head import tail" + + If verify=True, then test the import string before returning it. + If builtin=True, then force an import for builtins where possible. + If alias is provided, then rename the object on import. + """ + # special handling for a few common types + if tail in ['Ellipsis', 'NotImplemented'] and head in ['types']: + head = len.__module__ + elif tail in ['None'] and head in ['types']: + _alias = '%s = ' % alias if alias else '' + if alias == tail: _alias = '' + return _alias+'%s\n' % tail + # we don't need to import from builtins, so return '' +# elif tail in ['NoneType','int','float','long','complex']: return '' #XXX: ? + if head in ['builtins','__builtin__']: + # special cases (NoneType, Ellipsis, ...) #XXX: BuiltinFunctionType + if tail == 'ellipsis': tail = 'EllipsisType' + if _intypes(tail): head = 'types' + elif not builtin: + _alias = '%s = ' % alias if alias else '' + if alias == tail: _alias = '' + return _alias+'%s\n' % tail + else: pass # handle builtins below + # get likely import string + if not head: _str = "import %s" % tail + else: _str = "from %s import %s" % (head, tail) + _alias = " as %s\n" % alias if alias else "\n" + if alias == tail: _alias = "\n" + _str += _alias + # FIXME: fails on most decorators, currying, and such... + # (could look for magic __wrapped__ or __func__ attr) + # (could fix in 'namespace' to check obj for closure) + if verify and not head.startswith('dill.'):# weird behavior for dill + #print(_str) + try: exec(_str) #XXX: check if == obj? (name collision) + except ImportError: #XXX: better top-down or bottom-up recursion? + _head = head.rsplit(".",1)[0] #(or get all, then compare == obj?) + if not _head: raise + if _head != head: + _str = _getimport(_head, tail, alias, verify) + return _str + + +#XXX: rename builtin to force? vice versa? verify to force? (as in getsource) +#NOTE: 05/25/14 broke backward compatibility: added 'alias' as 2nd argument +def getimport(obj, alias='', verify=True, builtin=False, enclosing=False): + """get the likely import string for the given object + + obj is the object to inspect + If verify=True, then test the import string before returning it. + If builtin=True, then force an import for builtins where possible. + If enclosing=True, get the import for the outermost enclosing callable. + If alias is provided, then rename the object on import. + """ + if enclosing: + from .detect import outermost + _obj = outermost(obj) + obj = _obj if _obj else obj + # get the namespace + qual = _namespace(obj) + head = '.'.join(qual[:-1]) + tail = qual[-1] + # for named things... with a nice repr #XXX: move into _namespace? + try: # look for '<...>' and be mindful it might be in lists, dicts, etc... + name = repr(obj).split('<',1)[1].split('>',1)[1] + name = None # we have a 'object'-style repr + except Exception: # it's probably something 'importable' + if head in ['builtins','__builtin__']: + name = repr(obj) #XXX: catch [1,2], (1,2), set([1,2])... others? + elif _isinstance(obj): + name = getname(obj, force=True).split('(')[0] + else: + name = repr(obj).split('(')[0] + #if not repr(obj).startswith('<'): name = repr(obj).split('(')[0] + #else: name = None + if name: # try using name instead of tail + try: return _getimport(head, name, alias, verify, builtin) + except ImportError: pass + except SyntaxError: + if head in ['builtins','__builtin__']: + _alias = '%s = ' % alias if alias else '' + if alias == name: _alias = '' + return _alias+'%s\n' % name + else: pass + try: + #if type(obj) is type(abs): _builtin = builtin # BuiltinFunctionType + #else: _builtin = False + return _getimport(head, tail, alias, verify, builtin) + except ImportError: + raise # could do some checking against obj + except SyntaxError: + if head in ['builtins','__builtin__']: + _alias = '%s = ' % alias if alias else '' + if alias == tail: _alias = '' + return _alias+'%s\n' % tail + raise # could do some checking against obj + + +def _importable(obj, alias='', source=None, enclosing=False, force=True, \ + builtin=True, lstrip=True): + """get an import string (or the source code) for the given object + + This function will attempt to discover the name of the object, or the repr + of the object, or the source code for the object. To attempt to force + discovery of the source code, use source=True, to attempt to force the + use of an import, use source=False; otherwise an import will be sought + for objects not defined in __main__. The intent is to build a string + that can be imported from a python file. obj is the object to inspect. + If alias is provided, then rename the object with the given alias. + + If source=True, use these options: + If enclosing=True, then also return any enclosing code. + If force=True, catch (TypeError,IOError) and try to use import hooks. + If lstrip=True, ensure there is no indentation in the first line of code. + + If source=False, use these options: + If enclosing=True, get the import for the outermost enclosing callable. + If force=True, then don't test the import string before returning it. + If builtin=True, then force an import for builtins where possible. + """ + if source is None: + source = True if isfrommain(obj) else False + if source: # first try to get the source + try: + return getsource(obj, alias, enclosing=enclosing, \ + force=force, lstrip=lstrip, builtin=builtin) + except Exception: pass + try: + if not _isinstance(obj): + return getimport(obj, alias, enclosing=enclosing, \ + verify=(not force), builtin=builtin) + # first 'get the import', then 'get the instance' + _import = getimport(obj, enclosing=enclosing, \ + verify=(not force), builtin=builtin) + name = getname(obj, force=True) + if not name: + raise AttributeError("object has no atribute '__name__'") + _alias = "%s = " % alias if alias else "" + if alias == name: _alias = "" + return _import+_alias+"%s\n" % name + + except Exception: pass + if not source: # try getsource, only if it hasn't been tried yet + try: + return getsource(obj, alias, enclosing=enclosing, \ + force=force, lstrip=lstrip, builtin=builtin) + except Exception: pass + # get the name (of functions, lambdas, and classes) + # or hope that obj can be built from the __repr__ + #XXX: what to do about class instances and such? + obj = getname(obj, force=force) + # we either have __repr__ or __name__ (or None) + if not obj or obj.startswith('<'): + raise AttributeError("object has no atribute '__name__'") + _alias = '%s = ' % alias if alias else '' + if alias == obj: _alias = '' + return _alias+'%s\n' % obj + #XXX: possible failsafe... (for example, for instances when source=False) + # "import dill; result = dill.loads(); # repr()" + +def _closuredimport(func, alias='', builtin=False): + """get import for closured objects; return a dict of 'name' and 'import'""" + import re + from .detect import freevars, outermost + free_vars = freevars(func) + func_vars = {} + # split into 'funcs' and 'non-funcs' + for name,obj in list(free_vars.items()): + if not isfunction(obj): continue + # get import for 'funcs' + fobj = free_vars.pop(name) + src = getsource(fobj) + if src.lstrip().startswith('@'): # we have a decorator + src = getimport(fobj, alias=alias, builtin=builtin) + else: # we have to "hack" a bit... and maybe be lucky + encl = outermost(func) + # pattern: 'func = enclosing(fobj' + pat = r'.*[\w\s]=\s*'+getname(encl)+r'\('+getname(fobj) + mod = getname(getmodule(encl)) + #HACK: get file containing 'outer' function; is func there? + lines,_ = findsource(encl) + candidate = [line for line in lines if getname(encl) in line and \ + re.match(pat, line)] + if not candidate: + mod = getname(getmodule(fobj)) + #HACK: get file containing 'inner' function; is func there? + lines,_ = findsource(fobj) + candidate = [line for line in lines \ + if getname(fobj) in line and re.match(pat, line)] + if not len(candidate): raise TypeError('import could not be found') + candidate = candidate[-1] + name = candidate.split('=',1)[0].split()[-1].strip() + src = _getimport(mod, name, alias=alias, builtin=builtin) + func_vars[name] = src + if not func_vars: + name = outermost(func) + mod = getname(getmodule(name)) + if not mod or name is func: # then it can be handled by getimport + name = getname(func, force=True) #XXX: better key? + src = getimport(func, alias=alias, builtin=builtin) + else: + lines,_ = findsource(name) + # pattern: 'func = enclosing(' + candidate = [line for line in lines if getname(name) in line and \ + re.match(r'.*[\w\s]=\s*'+getname(name)+r'\(', line)] + if not len(candidate): raise TypeError('import could not be found') + candidate = candidate[-1] + name = candidate.split('=',1)[0].split()[-1].strip() + src = _getimport(mod, name, alias=alias, builtin=builtin) + func_vars[name] = src + return func_vars + +#XXX: should be able to use __qualname__ +def _closuredsource(func, alias=''): + """get source code for closured objects; return a dict of 'name' + and 'code blocks'""" + #FIXME: this entire function is a messy messy HACK + # - pollutes global namespace + # - fails if name of freevars are reused + # - can unnecessarily duplicate function code + from .detect import freevars + free_vars = freevars(func) + func_vars = {} + # split into 'funcs' and 'non-funcs' + for name,obj in list(free_vars.items()): + if not isfunction(obj): + # get source for 'non-funcs' + free_vars[name] = getsource(obj, force=True, alias=name) + continue + # get source for 'funcs' + fobj = free_vars.pop(name) + src = getsource(fobj, alias) # DO NOT include dependencies + # if source doesn't start with '@', use name as the alias + if not src.lstrip().startswith('@'): #FIXME: 'enclose' in dummy; + src = importable(fobj,alias=name)# wrong ref 'name' + org = getsource(func, alias, enclosing=False, lstrip=True) + src = (src, org) # undecorated first, then target + else: #NOTE: reproduces the code! + org = getsource(func, enclosing=True, lstrip=False) + src = importable(fobj, alias, source=True) # include dependencies + src = (org, src) # target first, then decorated + func_vars[name] = src + src = ''.join(free_vars.values()) + if not func_vars: #FIXME: 'enclose' in dummy; wrong ref 'name' + org = getsource(func, alias, force=True, enclosing=False, lstrip=True) + src = (src, org) # variables first, then target + else: + src = (src, None) # just variables (better '' instead of None?) + func_vars[None] = src + # FIXME: remove duplicates (however, order is important...) + return func_vars + +def importable(obj, alias='', source=None, builtin=True): + """get an importable string (i.e. source code or the import string) + for the given object, including any required objects from the enclosing + and global scope + + This function will attempt to discover the name of the object, or the repr + of the object, or the source code for the object. To attempt to force + discovery of the source code, use source=True, to attempt to force the + use of an import, use source=False; otherwise an import will be sought + for objects not defined in __main__. The intent is to build a string + that can be imported from a python file. + + obj is the object to inspect. If alias is provided, then rename the + object with the given alias. If builtin=True, then force an import for + builtins where possible. + """ + #NOTE: we always 'force', and 'lstrip' as necessary + #NOTE: for 'enclosing', use importable(outermost(obj)) + if source is None: + source = True if isfrommain(obj) else False + elif builtin and isbuiltin(obj): + source = False + tried_source = tried_import = False + while True: + if not source: # we want an import + try: + if _isinstance(obj): # for instances, punt to _importable + return _importable(obj, alias, source=False, builtin=builtin) + src = _closuredimport(obj, alias=alias, builtin=builtin) + if len(src) == 0: + raise NotImplementedError('not implemented') + if len(src) > 1: + raise NotImplementedError('not implemented') + return list(src.values())[0] + except Exception: + if tried_source: raise + tried_import = True + # we want the source + try: + src = _closuredsource(obj, alias=alias) + if len(src) == 0: + raise NotImplementedError('not implemented') + # groan... an inline code stitcher + def _code_stitcher(block): + "stitch together the strings in tuple 'block'" + if block[0] and block[-1]: block = '\n'.join(block) + elif block[0]: block = block[0] + elif block[-1]: block = block[-1] + else: block = '' + return block + # get free_vars first + _src = _code_stitcher(src.pop(None)) + _src = [_src] if _src else [] + # get func_vars + for xxx in src.values(): + xxx = _code_stitcher(xxx) + if xxx: _src.append(xxx) + # make a single source string + if not len(_src): + src = '' + elif len(_src) == 1: + src = _src[0] + else: + src = '\n'.join(_src) + # get source code of objects referred to by obj in global scope + from .detect import globalvars + obj = globalvars(obj) #XXX: don't worry about alias? recurse? etc? + obj = list(getsource(_obj,name,force=True) for (name,_obj) in obj.items() if not isbuiltin(_obj)) + obj = '\n'.join(obj) if obj else '' + # combine all referred-to source (global then enclosing) + if not obj: return src + if not src: return obj + return obj + src + except Exception: + if tried_import: raise + tried_source = True + source = not source + # should never get here + return + + +# backward compatibility +def getimportable(obj, alias='', byname=True, explicit=False): + return importable(obj,alias,source=(not byname),builtin=explicit) + #return outdent(_importable(obj,alias,source=(not byname),builtin=explicit)) +def likely_import(obj, passive=False, explicit=False): + return getimport(obj, verify=(not passive), builtin=explicit) +def _likely_import(first, last, passive=False, explicit=True): + return _getimport(first, last, verify=(not passive), builtin=explicit) +_get_name = getname +getblocks_from_history = getblocks + + + +# EOF diff --git a/.venv/lib/python3.12/site-packages/dill/temp.py b/.venv/lib/python3.12/site-packages/dill/temp.py new file mode 100644 index 0000000..c272877 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/temp.py @@ -0,0 +1,252 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +Methods for serialized objects (or source code) stored in temporary files +and file-like objects. +""" +#XXX: better instead to have functions write to any given file-like object ? +#XXX: currently, all file-like objects are created by the function... + +__all__ = ['dump_source', 'dump', 'dumpIO_source', 'dumpIO',\ + 'load_source', 'load', 'loadIO_source', 'loadIO',\ + 'capture'] + +import contextlib + + +@contextlib.contextmanager +def capture(stream='stdout'): + """builds a context that temporarily replaces the given stream name + + >>> with capture('stdout') as out: + ... print ("foo!") + ... + >>> print (out.getvalue()) + foo! + + """ + import sys + from io import StringIO + orig = getattr(sys, stream) + setattr(sys, stream, StringIO()) + try: + yield getattr(sys, stream) + finally: + setattr(sys, stream, orig) + + +def b(x): # deal with b'foo' versus 'foo' + import codecs + return codecs.latin_1_encode(x)[0] + +def load_source(file, **kwds): + """load an object that was stored with dill.temp.dump_source + + file: filehandle + alias: string name of stored object + mode: mode to open the file, one of: {'r', 'rb'} + + >>> f = lambda x: x**2 + >>> pyfile = dill.temp.dump_source(f, alias='_f') + >>> _f = dill.temp.load_source(pyfile) + >>> _f(4) + 16 + """ + alias = kwds.pop('alias', None) + mode = kwds.pop('mode', 'r') + fname = getattr(file, 'name', file) # fname=file.name or fname=file (if str) + source = open(fname, mode=mode, **kwds).read() + if not alias: + tag = source.strip().splitlines()[-1].split() + if tag[0] != '#NAME:': + stub = source.splitlines()[0] + raise IOError("unknown name for code: %s" % stub) + alias = tag[-1] + local = {} + exec(source, local) + _ = eval("%s" % alias, local) + return _ + +def dump_source(object, **kwds): + """write object source to a NamedTemporaryFile (instead of dill.dump) +Loads with "import" or "dill.temp.load_source". Returns the filehandle. + + >>> f = lambda x: x**2 + >>> pyfile = dill.temp.dump_source(f, alias='_f') + >>> _f = dill.temp.load_source(pyfile) + >>> _f(4) + 16 + + >>> f = lambda x: x**2 + >>> pyfile = dill.temp.dump_source(f, dir='.') + >>> modulename = os.path.basename(pyfile.name).split('.py')[0] + >>> exec('from %s import f as _f' % modulename) + >>> _f(4) + 16 + +Optional kwds: + If 'alias' is specified, the object will be renamed to the given string. + + If 'prefix' is specified, the file name will begin with that prefix, + otherwise a default prefix is used. + + If 'dir' is specified, the file will be created in that directory, + otherwise a default directory is used. + + If 'text' is specified and true, the file is opened in text + mode. Else (the default) the file is opened in binary mode. On + some operating systems, this makes no difference. + +NOTE: Keep the return value for as long as you want your file to exist ! + """ #XXX: write a "load_source"? + from .source import importable, getname + import tempfile + kwds.setdefault('delete', True) + kwds.pop('suffix', '') # this is *always* '.py' + alias = kwds.pop('alias', '') #XXX: include an alias so a name is known + name = str(alias) or getname(object) + name = "\n#NAME: %s\n" % name + #XXX: assumes kwds['dir'] is writable and on $PYTHONPATH + file = tempfile.NamedTemporaryFile(suffix='.py', **kwds) + file.write(b(''.join([importable(object, alias=alias),name]))) + file.flush() + return file + +def load(file, **kwds): + """load an object that was stored with dill.temp.dump + + file: filehandle + mode: mode to open the file, one of: {'r', 'rb'} + + >>> dumpfile = dill.temp.dump([1, 2, 3, 4, 5]) + >>> dill.temp.load(dumpfile) + [1, 2, 3, 4, 5] + """ + import dill as pickle + mode = kwds.pop('mode', 'rb') + name = getattr(file, 'name', file) # name=file.name or name=file (if str) + return pickle.load(open(name, mode=mode, **kwds)) + +def dump(object, **kwds): + """dill.dump of object to a NamedTemporaryFile. +Loads with "dill.temp.load". Returns the filehandle. + + >>> dumpfile = dill.temp.dump([1, 2, 3, 4, 5]) + >>> dill.temp.load(dumpfile) + [1, 2, 3, 4, 5] + +Optional kwds: + If 'suffix' is specified, the file name will end with that suffix, + otherwise there will be no suffix. + + If 'prefix' is specified, the file name will begin with that prefix, + otherwise a default prefix is used. + + If 'dir' is specified, the file will be created in that directory, + otherwise a default directory is used. + + If 'text' is specified and true, the file is opened in text + mode. Else (the default) the file is opened in binary mode. On + some operating systems, this makes no difference. + +NOTE: Keep the return value for as long as you want your file to exist ! + """ + import dill as pickle + import tempfile + kwds.setdefault('delete', True) + file = tempfile.NamedTemporaryFile(**kwds) + pickle.dump(object, file) + file.flush() + return file + +def loadIO(buffer, **kwds): + """load an object that was stored with dill.temp.dumpIO + + buffer: buffer object + + >>> dumpfile = dill.temp.dumpIO([1, 2, 3, 4, 5]) + >>> dill.temp.loadIO(dumpfile) + [1, 2, 3, 4, 5] + """ + import dill as pickle + from io import BytesIO as StringIO + value = getattr(buffer, 'getvalue', buffer) # value or buffer.getvalue + if value != buffer: value = value() # buffer.getvalue() + return pickle.load(StringIO(value)) + +def dumpIO(object, **kwds): + """dill.dump of object to a buffer. +Loads with "dill.temp.loadIO". Returns the buffer object. + + >>> dumpfile = dill.temp.dumpIO([1, 2, 3, 4, 5]) + >>> dill.temp.loadIO(dumpfile) + [1, 2, 3, 4, 5] + """ + import dill as pickle + from io import BytesIO as StringIO + file = StringIO() + pickle.dump(object, file) + file.flush() + return file + +def loadIO_source(buffer, **kwds): + """load an object that was stored with dill.temp.dumpIO_source + + buffer: buffer object + alias: string name of stored object + + >>> f = lambda x:x**2 + >>> pyfile = dill.temp.dumpIO_source(f, alias='_f') + >>> _f = dill.temp.loadIO_source(pyfile) + >>> _f(4) + 16 + """ + alias = kwds.pop('alias', None) + source = getattr(buffer, 'getvalue', buffer) # source or buffer.getvalue + if source != buffer: source = source() # buffer.getvalue() + source = source.decode() # buffer to string + if not alias: + tag = source.strip().splitlines()[-1].split() + if tag[0] != '#NAME:': + stub = source.splitlines()[0] + raise IOError("unknown name for code: %s" % stub) + alias = tag[-1] + local = {} + exec(source, local) + _ = eval("%s" % alias, local) + return _ + +def dumpIO_source(object, **kwds): + """write object source to a buffer (instead of dill.dump) +Loads by with dill.temp.loadIO_source. Returns the buffer object. + + >>> f = lambda x:x**2 + >>> pyfile = dill.temp.dumpIO_source(f, alias='_f') + >>> _f = dill.temp.loadIO_source(pyfile) + >>> _f(4) + 16 + +Optional kwds: + If 'alias' is specified, the object will be renamed to the given string. + """ + from .source import importable, getname + from io import BytesIO as StringIO + alias = kwds.pop('alias', '') #XXX: include an alias so a name is known + name = str(alias) or getname(object) + name = "\n#NAME: %s\n" % name + #XXX: assumes kwds['dir'] is writable and on $PYTHONPATH + file = StringIO() + file.write(b(''.join([importable(object, alias=alias),name]))) + file.flush() + return file + + +del contextlib + + +# EOF diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__init__.py b/.venv/lib/python3.12/site-packages/dill/tests/__init__.py new file mode 100644 index 0000000..809bc6d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/__init__.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2018-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +to run this test suite, first build and install `dill`. + + $ python -m pip install ../.. + + +then run the tests with: + + $ python -m dill.tests + + +or, if `nose` is installed: + + $ nosetests + +""" diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__main__.py b/.venv/lib/python3.12/site-packages/dill/tests/__main__.py new file mode 100644 index 0000000..17b3fab --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/__main__.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2018-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import glob +import os +import sys +import subprocess as sp +python = sys.executable +try: + import pox + python = pox.which_python(version=True) or python +except ImportError: + pass +shell = sys.platform[:3] == 'win' + +suite = os.path.dirname(__file__) or os.path.curdir +tests = glob.glob(suite + os.path.sep + 'test_*.py') + + +if __name__ == '__main__': + + failed = 0 + for test in tests: + p = sp.Popen([python, test], shell=shell).wait() + if p: + print('F', end='', flush=True) + failed = 1 + else: + print('.', end='', flush=True) + print('') + exit(failed) diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29bae48ddb0f896c8531d88b202ee36f7cfca780 GIT binary patch literal 403 zcmZ8dJ5B>J5M7f9B1?fQOhJQ`wZ*SN2q_>sM3aujyNMlk6vtkzy@{5Ka0X7n0k{DT z1s6c1O9S>2D4522^83u2mwulnVNN<<#T!YI_XvI`;C5EM@H{3mxl0;yu=Vgvy@jea z;0tu%mGj_g^lAW8tO6LSykk=g{q@4)yl&oUM z^_VYhHFIS?QI3zU)0^StX*%+`$4Po+r4mDv>&BtuY@y78YaH{RBFF6Th`Uff4dPjT tAM|lI-o|ku(4ZHBmCd?$KDV;g>Y~~Xk@31N9{;052>IOIBi*VS;5YDPceVfk literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee76d3c45da838183da3d280ad754203eff4013a GIT binary patch literal 1320 zcmZ`%%}*Ow5PxsKyld||h8V(!KniJ;fD2YaNPDO%kpN1hsH#Gwh?R=9_It)_*1N0S zHMTifYAe|il6|XlX~-#5|dF0Spa_bot_96A7?ii0Db@nAZP%!YoQ7|KBF=n%c>k^vYlSN@~%|{sap|H z0}Q}{Y~5OHGw@tZdRP(v7INBS|@@%|VNf50$I z89rV)*5KT1jd$&bdjG;vNAQRfroBdygo53 zw{xEZolLMdDfIm@9R0^H!4kX%u=ELVSP0g@&QSpr*)>pr)8SK};;SdqkOa1{hlt|pqty0hg~l*GiR5Gm`LO_-Ap7Xl6N!MFbG^BV45K;HWA^|M&8Yw`oG0FoSPme z+=gK#31hj0bxSS@y7{E-SSjqfgmG;W#6_ISds@=KM6gR<#xe(%VB@Ov~J);f(WU+L!)%eyzXJjk8Q&H zo47v62m7G3M$w3HeuD5{TQ)WcSI~5iKnk}V-Sh~Di@Ns{IHPpnJQ*)o&ZcW?bcy)t z^6aCGvryi^Upg^L>0i?wrMk^R2+tw_$|pcN0l^b+r6tL=$?9ZTXfqs? zPPlMOnW(HDDHBa)Vi&zpVh75?-d1^~EdYv?t8)EuUHe5GX)HIzt7ZP37_0@Vf!d|& zrG|JYUOf=!cOSoe`r_%!^%v`9z9kM+xSCXz>em}n&u=`t@jUh{)*QUP7itd9ABuO% zJnhTLmF)v|^qmqeue2gV?}5O_DqKsBR_@gvR3FsS4OCy>TX-YiI+E`;<-3RS=M{Jy zl8@zq`nAUG-6wD5nby#7b>+8S;8%I3tT1?ExTO geh(m&XxKlAbnXt&6a6^8B!Slwzcj$UjzFsa2EYhBo&W#< literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_abc.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_abc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2a2ca980e80949a6ab27f808012b943c67116b6 GIT binary patch literal 7875 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 bZ(8KrZu3oxe9LWq>mT`TOCiGBam;@J9_JVc literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_check.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a85dc5d8be44e4bc4600921fe3684b1fb608d3b4 GIT binary patch literal 2136 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 g1D<A^b?BuFuRtG5| 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 L9tVij!6)=5mmuxc literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_dictviews.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_dictviews.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..738ccd9ff4c7f763a30474f4a3075fc0c6fefc0a GIT binary patch literal 2166 zcmb_dO-vg{6rR~#|6#zG-#SvjQ~}jd?F}V~f{LQJgcMprAc+!UsakEk+hSP%ban$c zGAgQiaN0wSs6=|I+f*tMm73mq?7bHj(~7Q8d+3Rt5ZrP}-wggm4MS_($G+cK+f|orUz^Y{Y57w;flt=G#IN$K?>GTgpQns<6MM`^ASESLWvfmiH+TVB1YPlYs zm>3;@Tbj6eW9puC`{wA-yH>;1Sk#yx$%XXobV`jD@!4Pp&BJpr0%{c*n5}}EDZNo? z0Y(Gf`cM?Ca521Ij4q8j_YV3Pr%`|(x3IiR5#X;0N=(x%A(~932?cnH4k*a;X>mSD zX7!XDRdw;!aBwXA)`j3LLpEa3;80RgrEo&l(t1o6Lvw0kPSj%e#Z=muPA2+8eQ$_* z%us`{c~<@a_R}*&L)8tPX-R=Mo{OpTdMK5)8mWUVrDzgJBOG53kA51|654TlJ|B2A z@Wp%ip*3&*QlahjEqBlqf*bB2p~AoDXqJe@6B3s}Gv(C5wxX2CtWDqX z6abQ=w7)X`M!6mX&jq_N6} z%07f;ww>UM1KL-IJ^6#36OVRfDk8G7QS!c=q_yrgta;sVK(g$q?xJ~s^~#g<-%)f zg0{q{5fDf#_$-&KX%Z_7t5H`|Dv=GfIJYI#d1*nXh<=d6T57HBW|Bc-(OKe$7+O_& z8`8m8P4x7&5|1+p1H~Ls!9xHgd^OKvN zUenpT<7vr_=ljgoo`R=$t!L9Cnoe=UBkuW7$Jy*f))_3PB*o=eLXrY5#)?%(KOG_X zI%rxIf3#h*?*waAEW31TLXNAFL}>XkIL63x=U_akJkZq3;B$MONT|;~+~j?~3(Z?XYe~QIt8i-1frL}+gnt0w=eg1V literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_diff.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_diff.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3270ef338f01bb8affdc351d356785ae45c90c7 GIT binary patch literal 3453 zcmeHK-%r~{9KW+Ku@fip>d;mNtx#YU5rU{ccv#g<3#dZv3a!R8sd;gYZ6G8h)Hbbx z5-FXSns$>K_Cg-fo;r2^$zEoXiqy@+q;3zqv9W1VrD?l!Vh7rcAJwG2>?GfPznAZ? z``mr+zWF{F^aI>3(tph*G4+x#PD4#%=QbwRfC3bl0t+xsK|)h0I!;qSMJlb(PpO7% z0K`2M7zYYk0gA_&je8aE3Wzf*t1!s{05lfsF;AQ3A;?l$D#C6NJ_0STC@P7WnMsSA zRSiv@kuytaLv9M&18g!o0Zgm`6~v(e;#3w!C=13WBecbeVp>{IMbYw$;zCAQN)b9B zig%WzRO6R#!45I=N{-&kXi0rhl2tuAb!F&!Y;ATTXVmi8*HRdwu3&ZEmNA-lE4q@e_G>i3>L@E_ERNc_+-d@P?Vpj8FPj(l=gzmxJ z3aBAgm$I^_}lr2A?q`o^#TX7e7iZ=MvltC91vao9Ohe`LE^C6Jc;kMmIF_l zdJycAWM31*Y)ew3u7S^?0&`SbFZ=51w(c%Z?P8)7>O1$a9XT%auf%01%w7~)2;^xa z==_$W70)Tm%=6AnYjk$f!C3LmLXsK{6tE^FnhiW>K_2DMEX;dy9^88mz{u;^JP;pO zvf(F(=8v@^bSMQL-QF8}*$y+;d!BZXN`N;pXxK`CJcG{_lYn^^k1QU22jJj4blk3_ zdw#L6%NT%N9@?EQuuxLX>XuhpTvXGF#ax{dZ{E6j%c7-e zStGe@(aX!r5l*ws!)Xi37ULMCr1KUvjXxQG(gjT8PrjgaVLhFc2tBQ)k>s;{q{gtT z3+*iCiBbJeyrKfAv%W9sLTv9)^K*sR%2;!#Blf|>{fW|N9jxRA~xawcySNY02 zXDVFpy1uS%aDyfqtnnvGcOEU9=+uust}t5j2Z|l;-~`ZHMaNt2sVd)RqP`mPKDc`S zYEfFbjy*IZAFXoTChD%cAqbUFe__1F38ixnFO`K2yg<}tvyU#B=y=m9SNx=SlDKUW z`#TN<3!{ZQ_piLY+n+h%1uOi-1|A0=221il8>=@e9q(26vrpcC zGPuEynCwU`+*v;N^(B*icN+;F_O}7x^ZzG@hV>Qc7I4l|hFN$nicaIFnAQm8bla*}7S*vpMS4d)>4I%tp0I=sJ@IMb7FUjQ(Dxt^^{z!rO13~Ef1>o*i?`IHpZsVH<1&YfX S^r`14_{GQDG(erUi@yO}Np8*n literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_extendpickle.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_extendpickle.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b43ae2bcb931b3acac46426b9f6b421d96d5a94 GIT binary patch literal 2194 zcmbtVO-vhC5PolW{m0r~;_#ECjY1((VkyRu#!;g>D40J{0jcVyQn*;gyMeXWUTb#^ z7#Yc}sEWe@s#YRLj#T8(W6sU7QkAVM0b5sURW7+9xKte4&RctJ2T)ZhBkkUQZ5sxJ_jp0p6RGOYwf*EpuBYKSb_3f) z1-O0*T#O<=HTC)eeESZ8DPB~GQP)W-xF9PjH5*R|YA`wym>7(N0#PlliHX3F%nPx> zOkB#Vq8jX-7c%ofNt_90^V*!8dB3;+c2E^HAppjy_$=7-q9g^uB~3MXOjy)}44)Mf zDM{$f<_%jqAA6EfTyV1o9+d@FM0>1zRVm#qP9DP&B?z;K1Y!nr1-yk^;uW+E5f+e@ z6P_YjQ>l;87g(#O!O|{cjaZwMWGt!iF5sP-%`#P>l8%PPlHjJ=4vY#oNjyJA^}FcC z{RP^xT4tI&FfsF{d4Z|#v=wYgl9f|bKi>{<*OAd2cOLoasWWN228IH0)I%7>=6Y9p7(x zw>Y%Vde=f5Lr=px(|O=&Uz;wDR=jQNnNsH2XJzm8;@BR;el_v=#Ky&6nD*a6BbVf| z_gZo6z}vC0U`mzNj@{NSy|rtrv)t-0j_jR~MGW$+(_z#v_ySov6dS7QQt==~i z{YK3QJWZ(oZ9=_KvpN7!6O_&aa~-Mxdus@xBq{4DIuFK;R^V~YYN-D{g*|mFEF10e zmOfCH4=xy%Jd*5YgL=>2m?UL9MQ`f`kDoI;wb=i6HqIFh1_qPe&Ev08DCIVosEJe~ZGwT4^PWglyPiWZD`IQLPH@s3s>; zR%^M_IY|?(RNMt+DU#yyAMw+y^g)b?$-gd~jMFGS&B9Jkq&{?u@+RB7arbwj+dXo_(kLkcRh( zO6KMd_CfzpA9~s68Vb`dKg7TdXDpVEia9aF;~n{@-MXJy;J}I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_fglobals.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_fglobals.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9cd74ab63f41f2c7e91c67b55e80cb7d7fa7456f GIT binary patch literal 2907 zcmb7G-A~(A6u)*HV&V{&P(BMKv}A48B!oggU~K)MQ>(74G%=}aHOULH0S70Jt{o6j z=-AY0piZhLO)AwUmB&{72l_bebuTetN^twOr@kS0LzA|19fyRFZQ21J-|KVkIrpA( ze&^=5mKHYx8g=|N_k9yWe~?Lq9QI)ER~S4+A`&SDJwPHYp#)t~s=h_X1WZKc5qdz2 zPT&r)2{1?k4^` zL=7CSYDqiAoS_1R^auUfBUmIBNvaRO=Uq%xv+n3< zI65329vdCWvH>w1NQMLV_ge$^t&!*t+!_yjIv$t`I!soK>5?udC6m>3oIV)MkkLyD zyTG1CJoxu#hZa>lucc#gNgJB_IDF^Y^$X!CJ*La?@T4kA!nIUPS<+-}D6$}>7KRjg zdMLf5 @A$ng0gP1dC_ES`_e!g^6wlp$Txbj{+z%&ekL#}qA+UNT!}GAUtE*5?G+ zlC_a+bXL-ZBcCG^iW-MSA4QIcNMf`Iuod)%?JV(~Mc!}l{vsbV_~47sYj=U4Eb?~@ z{!Yo$zvrNjxpxrV?B0VF=p_nL*fL-p9CPr^Y;U*&%!7=`H8NO1yENl;@3@htFVFPi z7Wj6k97ux6v-brsQaAs%94d9%uoUQ;QgD<@0Rv7^&|#&~bfnZp+zcNu!ErgO<->I} zJluIq&~}{Yz6T5<$+VTYwj$SSaJ@y&Z*cwscdE#pGq`j4(3JvrHP2i(GC~ z;3?AWdPNNzLyeSRr;c<|juuq{Q8{wuy$o>9p^8+bNCVO6+vppr#&Uy(R3mNVmp$-n z@BY9a1^%dtKb=I^qRN-5|0U8KvTX#E1f0=Pe>6I7{Rf>UL-1fa6*VSmrc=x$)0$OU zRtAE!>6!-M2s0^A%%l~K9Ki1{=dP2WND$SyKx_!Ire!4I{O}ki9gjTPJzy*7t=IP? zv6lGx`177;JzIlgg~1OB-4g}xhbuR?Ip5>4d{=mr3mZ)MEyq6@UmO2Xe46+nu{Ch1 z&~drIjji0+=J>}Kx7yDY+HJ)=7e1P85+5tu|J53alGPeRFgSz-BB>*>L2d6-gAf@S zOQtKXCeyMa0c`tVVQppe2c1Dqrd6zGFB~d$Ii*V&+Lln3HfShi!2mH!c1zkxYl&}t zl3mNLpMLyRo;_*B0DD0Q{`>3v_x_tZ><4Y~9CQ!b*}v0-JSXx@&(Y8x0O=M4xf(J3 zAYO?^rCXJf^>uW#U@L`Pc`s8|mvS!CI%#JXj$0{#OIwB?;z{IkZMAHQtX(_IouDO^N({+qbk@YV7 zS~HtdYN~u$;gdwb34$#GyG+?`C$Tn2qzu`CMzZM#D&st4;XEn9g({YB$GYMbv^h1S zfDCSF{64Hb1CRDCFw(hO>hOQHFnGPtJz4PHSh@Lz@x66&& z6pOYDY{x-S)ZQ^fc}gexSD5cwzHV8S4b-*EG*NxKKAO5l?YbE%vg>826T9AKYIvs$ zF`m`zrlb1}<1MjVk?k_ru65t~K%VX0U^m&bFD8qj2_rP|`ZFVR<(EsFq1)SR{}wy2 T&5r)gUfgk_@Fx^-8|Hrl&0tuN literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_file.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17d00ea4bd0548c713bdd27049f2cb6ee834e37f GIT binary patch literal 18992 zcmeG^U2qf0nKRNz8vS`}$u`(vEUz(+mVg(tyM%+=1=cn{MZCL#CBdmZmC%f_j4b(P z#uzy=CsL%a*VNhGb;Z8QR>k+m)^641F|YTQs(bOsrYt7DDsrJJ#Ty0tkmBX;>-m>7 z9?75(;OMe?db;Q9`TG0o?`wC@fBF3$4AQ&y{~hwYhhcw4H)t!xk|bqwxeb zAYbtTT)MXn*rcm{z%E^h0fM$M#IV$>+L3&v?MIUaBX2by89O1gc9wz zjML5u2Zl|+-GCb)JhV$~9q_`vk0u%Cgj0tZ@Y4a>eG?z3p*=UT0gCoQUQ7ERucQ5t z2k08egER$sJzWcV1Jg*?UHJiqv5nAU@LTEK7=~kTS6^_~px>qOG#(BGHU25?c?cb26Tx`$YBUk2Lzl(|2N^cR#V44F@Xvc$Hkk@_ ze;(>jg}AZUPzV8rQf!EhLyvrlP5(ovvxDo5DHM@VgVADk_&sTqIKpdfyiIC{jK;rJ z%9A(`^pjIYqihfM`P&#aY0KclF11y^@@}Ri~UO zzBV0SfUncx)RGE6X)o7*#(oY9+xta)T*TS1TO?AWOj2|VCZi*a=wPGC%WxTI<2)le z;f_v?h|bthDjs7*54w-UhN3JdI%0_w$A|>WMCmXgI+J4~ml#&W2Sq$ClCe~hXOcX} zA@vABdK&8*PqA0H(P)g}y3Y0PJA3@Zd;8AuQ9d5q_fd*wBFB@_M4F3pUHh*x$*Wz7 z_@%DVG(VI|9^8MRyNd&S_5tvf=w*PXV5gD!Dy-e8V4@dw=Hh#~AL|JB8;-_pEE$wcuRz&-=d~Uabw^CEtEz zhqn8KxNGm>X0*1A_anp!8|H-7tiVO%?9l z7<&N6c&(RVH0+|J4urNfLCY{w)S{HJnbjiW6SG~!&SB%&HTy+u90vjJdx#VpM33Op zql{?h(ws;#*J6=)axf(lQT8$ywu`pZDBA|liFRn>5OyGpGLfA85Stq3*xjfb_;IHo z%VLjg4oAa1(lgaF?S4dJwGDs$-i7&U=j=0wk*IWUP=VRZbY|xIQdFQq>r{t8b=(R5 z$M$cw3)F!ec>u{w_frn(_%9tKHg)v4%l@BE9P$`cX$hf%eowAL22!Cl3~N?OtHR8r zg4f8WvVd*YWoww!q193;1d=F_DZD@I07`KpF&gEEL??4C4yq-|7T5r0Bz2WxkrEjs zjN+LnOQ*(@k&zTVmS9-0msmIaxOT`u%v|nU<2S}{UB7XCfmw6y+#o%(?rHZz$6a#! zBRfX6lnR|@w^#N`GbzlS2@LF+jjhkvhY_uck}git?1ZN=-Il9uAd;E|=QWzpcFmp= zyjSgZShL(}4Tc$7YxG*Rlp!+scZAxP%7;lu#$h&ZX9%-egga+DgZ&Z*sG!=jepN>T z&=#!)y&z35N`_u6S`EDr!^m_NCAAkE16(cJO{wlsDK$yJXpjvkO0-j@A@EJ-OIgZK zI?ZW2>9VHUBnj=-@V;DOs3 z_YBT!9_H}Qq8Greq&4rDaZ2UFu!XG9E`zjqGR8YEjZ1C+E=jc!i(Q*wapak?AUDS% zV{G&3+Al$zE5R+a32x6$A>;dtD5T(4i?HC4$&?c9&frFG9oo>;EhSy|%xFb>-sn~_ zr6k>YUL7jrTP3m_Hseo48fBChuOcB+C33o%CRg{pXG`82Qt7K-ktVU#eQ$Y<&^+Wa z8ey2@!OB}$vPu8TG1t)E$r{~*$<%!3Q>A8-%3y3e->FjGVAoA&r9qqr&dBLo#dDg& zIZ2ibV>N}<-nq$)R$%EX(FewQ2F%nLEV$c>Pqe?_$-U|b^((~nO0+M{jut%6Pz8Ni z%+LycVu?O%riUL|k5`!+WslEtyj#Yx)K-La+NdQ-XUp-#Xo)OwtSV0m`D?`!8Naf& zqMV1MYg-vx@+x|+CUK9d9adTf*3bl!E>D3PwRg}x%UETyww%{p6>E1y@~yn8+?z#r zRr24T*T<;Diaxs+YP58P-i$X>D_Ox`S8Us!9SdW8P=tkI5nmCHysS-mojrCF%b;rg z{|lS4@0GDBg*sM=g?V;A-e_S|n^NkFZ00Xj_q{J|+)~zVytZ)-zfYTk_p2rSs;|qa zmIVBVtwuZVsQnqD9j+R>y5(r+6X3H&+)+(`xu`D-e_5GfOJkUjN;m!b8pQ{fD)wut z7PD=cCoe9Bsr{R-5L!r|w90O>k3m|Uw_bh!`&f>>)vz2Dt^B{-kwbycPRp@^yl$bc z@V|*1@Qk`rTUL`_lC}KTNmE;18BKkW{n{;s0>NNUao?5`#1js&~}F@|EDO`^Vi$QFFWg&jk`_Ov?^Hb z)^>ipsGTZitMY2ZY!z`%`eC)*%+Cy{(9geK|GZY^HSm>#2D?-^*Q@^F8((<~zH(Wu zeT7%q-)OSF+N74~t?X+n)UUto+IGD`uT@Phonx!Nwq5vMIre^Oed%)A3VVzj`dPHG zStLG5f0Aa=PTVjKrw(BEFe7bf7ac=PB9WSKh2We(f^M7eN%!hq<7de$N!V^Ip8!En z(!mcAk3Rgh)E65-y<;LiG(irjP`2^C51&H)gg*o)7ebd)Df&{HX`2Wb`&R0j? zYi+)tj3xQ_2m|M1QmnMYU)sek`sCv?5eC(Z1jjH}*gfb~Xn(utrjv}^6s{9Vj%VXB zz@0^FY;b!eK02BnO|$Q!=aI)Q+9HD@IT%6MGqmU&JRl9gF^EPW+6KF!s#~gpt5gS9 zX&}TPbS^p~g9&u9BqH58BN7~kMh;u>3zNJd-*Jga#)jBW;fX`=cx6Xfa{)WtXLjn=ntXezeK{#)nx^e2} zneR!=?bl9|D5pTCPOcI48&q(1VtQh!ZTY=5Dhww?{57)|rY~gs@;?7;-*n&1scf%y zYGgx3dG6GzyCr+#zMq=?>GV(GQMoX4Q7b}0e)ZJFHDa4mzIo=p%eO$R*R~0@Z8=vP zyn3N`<`?T!t3b7`QfnIC0)wj_diAC>Lh@aW(TGRmdI6q+mtO&)yN|7Z&U~<8 z@zDICuMRIea={M4*P&O~zWh+|y_NUX%$}S+Id}Z_8NI3GS+&9+SfJM%JB7y1oZrwl z{^bXPudPD(#ngN%=QkjtcCMjnffD{sFZOQhSDal7S&nlK?=4Z%QD96?+WM^G)aoha1 zDQ8|TeANU+c`$QLYvc}XV1Di9-fk zU!au_Dqxm1hfKIzAz#Weql)(I0hspFH%{MXU@k6^{`6hyus|N(f-!sK#OfOrb7o;9 zlqSubDAvh9pAz$-S6KABneCA@q5`XEj+eDs=$5Nzm2Ao$x3pXar$%#hRO9mutf-P9 zG8mKd$~;kEOEk)rSQ7)J!Gu-Y3~klh`Fl}$Gh<>!HUq6HBD3N73QYVaro=2BsFFtn zyzdznl;<`Y#==Y_sG{7s~rp41IWar)tvmV9IlifajbS0jt7MTFmo+Chd zP%@(`2l1yqUW4FGwloEfP6?OHVktAP-`dq*={TH|rVR5ysDLpgVM5vPtAYr?5Vvg- z3>ZoNydl)a3#5Cc(bh`Gu^e?wAdevyR1$6#0I2kqLfNDJ#LqD{SWh;J@K$6o-x)qmMwir#cqu*X!OA>fVB=k9d272;LdV;TB3#rcA9 z{o`iiYAGI<`rQ;{JQfKbi}=K%0U<=uDq$p2B*9O~qp+F? z-;(%%y#&v}xH0ZK$l!w-IQ}Gn;hsNY@aKoWKVx2S%6Epc#4Y~~|5RMSw%>*n^X2lfboJ*)oCJMZ4v^SkbE_6q*@vYtOtO)Je^tJFJL-#uT;%C6IY=oNN-y6XE$ z*8Rju;`NUkalGX*>BJiz2W)uLV^7S9Q;*O3ZFu8jkD5KI#|YolM9$uHk7!*Z+U^l8 UYeefkqU|ox{>X(9&5{EBA1gAL761SM literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_functions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_functions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8559b4f8d5a63a1f15c75c915e980815bff49c9c GIT binary patch literal 7087 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_logger.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_logger.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c40b4cf68f51ab258c29a0e733908efa02b440c GIT binary patch literal 3675 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 VndB<({a&d4!v`BY5t^7D{{uFkxb6S| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_module.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_module.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a9afe3706fe5f4a6ea16b033d8769689770ffbc GIT binary patch literal 3192 zcmd5;T}&HS7QXXid+^vEew{#^Vh0LwMers~AZ4?x$fjZYM-j)#vq)^2mBcsE#7TB)jYz&iwd@1!VspUn9b6n$0{2#)C>Q+3R?2 zbIGeV=gf*|BSI(^!Q?gP%;p>!hDw~J`Gzg)%s(O7??~9(*%@a0h5dF;#X~=#^Q?D; z?E9qCeAj?&&6$;B8O?e-EsRsck%73=s%ww8;{aeC2CZQ%DeX_{kNu0_1~|E-)Z@nK z%LtJm$TT{61FPnjR+pSrj>$0{NNMRr#0{2wG@1|4NBi?=fqQ`FnP}5K^=u@{7;d7Z zG70>?;UUWSEYTFhE6d}F@hJt%@(ZSSpBB*~-i@9*#kjh}oHZ6we_(BbcatRwxX z;1Eh4HG-4En87UO9#eT3nAI%?XcF|E9*dxxK3ikoMjtXc6y-+<^f9zgHSbd;QOj0Nw|;IR4S$`ny#5twoC&q zhD3Megsu~HY!-MzJKRP1v~D1I^l!1@sTit=p^f`xrhK(3zPj1)!$s(?5D|eyU4~~Wp;4F!ZQi7r5)rpCd z$Ohr)b@;Sj0?DKAq~OPM8``ea@x=X^uqAwcXXoLwTtDhpH6a zy#HnJFRfp+ZvAdY8mI^Z+tR>~5eJ=CI@5eyM>({`j97lX>>QzPnB*of8m)pnstG<* zqan&N6br2&D5T?x02wMrkvI$iIT_H0=pp>*+K`VTavlVrHhE<(k&3bgr|HCSP0uID zq();O4qF&`Cly^zC1%EOg3w>IVfZwP9v~x1C9d?FjXPB_vdu?K&lX!O+3>ETJoxac#0?;I`qA~`8-+JM9{uCsMx-i+{>+t!{^Z^fyDEIww%BEbSOD`0H7(20 z4hT+8BORd15G`x!f|}OM6gTSBnQVsW&{qfr(-1U8*VXi-M(960gu-Qjt_c--mu$GS zY)aJ)x7B^k`Y>F0b|$MCo~$}eUu<}+$7u9gIx%Bjqy5`zI)*T-DKae@GdqpIklmEt zBqT!&HlrDQ7GiCwF&*|H}HO{r# zzudn%xI9?u+T~hnygz??^{wT%)+ToOmYUaB>@IW{dkQ@zvOfQ4etqfDQhDyvrB9Zs z=lcJ8vFaVpdrqq8-sRfL1LbR<4tz4OIl0@>NBzD{{VsLy@@kBxYlQU6Ig%7pNBio_;cUztp^^&xBchf1`>kL5zF|0 hU>TSHfCKJ@)&wE_DmL`Wa1Z*rM;PwszV2gy{tp8pbK?L2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_moduledict.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_moduledict.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4cf78f7c808aa3f4d324b26f8f86ec627f37fc75 GIT binary patch literal 2122 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 JQWIb1zW{?kX)FK$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_objects.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_objects.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e31507b4def12213998f9c8bd1ae6cb4ec3b3fb6 GIT binary patch literal 2695 zcmbVNO>7&-6@IfnT#_QGU)%a|D6h@On5FqKX7tu)_Y3o~a=}is;BybPyna<<)v+)Hz;u82?TL1b(mt>I=8qApb3Y2&L~*xW`;wwml#BzV--a!k&F8qw zOqc4G?Kmg6Zl-LIqQ-kdEt77X3C*nWHGltOScxIQBJ6Jp>!Q6 zBnVz0$s#L|kg*W57f7ZZlk;@bvgs`&QxkV@9g6S{nRy2c;whXu87@rqN12hOJX_!e zGfnx(>~#F{`3uj)ar3U7j!)$+nmnH~og%mS$nZ6qyEfw3sgZgSzc+kpbcEY3jid8| zc?JE&0gQ;Ma-Sv}8y+qcJuR7~SbD1zt7kggm>K#_&0C9(;3LW83yY>x*RT$>Wl=#o1!)&VG@wrgkm1;bumUxSsL{HOP(M~9(LR2S zV#wUUDy>3>U|oZ=U`R8MnTmRK<5vqJd5x^YO)?8Cf)hUpJWNvb$TAlp^@^X)qu_*N zW>c0qS?X_c!xK(EZ904snY!*MI{2x6U4cKFmBx0&#tg!Gg;Fg2tNI4}kY$3jdTsus z;pK%d`!VP6etY4c`W5&2&Y$N}`Nf>IFG`DTH%AB=zYM>}rPjf1%ApKmt?P0K+&%mG zCYJ44L96x&NLH4co!k6hSIUHiLQq!9vcLl_{TO~tii+FT47%^rB2$|Ftv<)V6-VNa z?^7F7nFc)!? z{DHX~CGd^N^8XvzP)jFXSVXYW(^n}{JJW!q2FP)J$#$>$7+4A{QFCEje?;_>mN9LI zkLxo=kcl?)0(Fe>RDn#~Q?12pfqSv@oKxo7`P?*PdFCksvOKlG?40X`rkB&SAe4sc zDWdy4l`flU*VC?1mdbPL$=K?iT(B4XUe?9%@2jWPm*ecaxcIm6<9Cr%;PY_j+VPw5 z%G9pZrk;Bc>-n8?)A_@hw)4f)=q0j!sDC5f6{?WZd@oGnW zr@Q~n>Azh3;Q0Ie17qvh#rub+Um4p~h4p_hWaPjXK-6G$QkXSW8v zf4^t)=Gd-`nn(OBCjRnwE<6Q))z0_AhkeL>)H``$K>qk3LH^@jpY{_W8IXnKsi&uc z^4~Oq^f4$AE#kM^&yc}(6aDRv`NnhJoQr?+vAzhuM8vyJTyc#4C?isp;azF7(V7H) z)1@HJ8}bakE$jpuG3+gz*NkYEB=a+o zF3lNa&gjJVAZg{(XrPEkgB=ms1UYqGe2O^}2;=9>M5%m0_cUIhY1?$rwGN#A1KGzBOKPlW} Aa{vGU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_properties.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_properties.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44a00d1bfc6a7531b46ea0a541cacd296456dc28 GIT binary patch literal 2443 zcmb_eO-vg{6rR~1d;Np?D}N?!pn<5a0xoGdL`soJL#kGY3stM4N-M`Zh6S_h&MW~F zBSC~zJG3H)N<>Nzy+*nA+G{SoK$A+a;+9i-qQIfz(!RIr1w&B|X`ke8=Iy*UZ{~e( z-}=|Ox+np;CjUKkQzhgjDuICR$-zSyHi$tCnkN(fNGGTvF*>bOZE6NXz5$v=l|np{}YM87Bi1MX-EM;M1-nGd*wf8Bxe&nMjY1 z^o99U_b#Bn#5E(rAL>I&kE)A0kf6&>plFy>fF!z@{u zS*Gi5RM%&1V=j;LxUPRQm&yApJb?~)bdLV6R?TzKRXm3M&AiAQ-xUuqh`0!_O7N#*oMiQun~chE|H*fotNn)TA~KU z4k)VmxgpdDbdBso}uo;Z!ctRw{$5{&ohJXw&xBJ-4o z!RkqbzXJou%B^81GP00m1;?~4R~AL#YHT43-6dzciD4nI=h)T==Qf9Bho@wI3H)7| zGvQJuFm+wQyV-og;hdG7%2<=k;Qe5MF5+u|GbHXwA+>!c(X^IZpQ+50<-I6rXnvS^ zuu!QlFZ^{FA@P=dBB{N*@%r`A%IMnIqk*mX+hw|&xbWlnPmPbic%JCl)Oz+*usIUg zuO2sEBR>xgr{pXs$8t>aAMohEle`3UmZ*+*_oPJ6rCln)$LN2dUGiv`&!t@s=nlpc z+EenFNuYsnEH-`_Af@>9(Hy^m&-wraSRjYh2HSW-VnE>l7$A+p1o#()n%cP&Z&9_YKE$FdWKf$8K_b@ z&Vjf*SGVi-iL}brao!oP0zU>A$tui3F95~~6|QnLP~m0+K!Gw%o<7fVx8G7tD_+#( zg}hdnk4y2(=)MjJ+ z2Cx`sAV+Mx&~m;P6u8@B`z0~|jlGv-&T1}^IY5DynPGQ^BPq0#2|N@3563MRaU_?oG;>B_PsrnVMu8Q|jT)VBFfA+p4}4Tw zcG~sP*P5UI=%t&3T+GRV%iV1K`#f7+jy(lB`*w>;f?;4%C7J?P@qSa__V?G}RZ#k~ z{?=dUUw8B^5xnB8xH>VnE!HTPfp&NaI?Uk)^Q8n#|Y^ai@BGWSPiAS^7$V8hVW^E6uvmk0# z0W__aY(|z$%jRUXq-zQ)+FVI83K(qKL0PioENb?7Q(G+N)j2J15u>tREZh7aoE0uN zYRyN-HtgWIX{v^$>4hocsV#h1aLQ3#(MQ`%L0VL8wh^yM4rx4olueg(W5Fy+vTCNU zObxt0e&O7}6-%--d0;|UR5V_Y@?}#q(}PQDVJV&0X4A#8mDLMx4i3MOHZ@Bfz~BXG z9^*;eX_8d4PEoPkSZxqT5F`Vx$~cJ~Xv3d5i7VSpP!rm#LaHL9w)@9+g!k5%S~$9q zx|^zo`zzu88XvxMY5md{%$NSp{nglTB{qEj?Qh1u9^2t39`Pc6_gSXRzs4T;K`>ek z^i%>pJAt#$0PQBTk7j*iwNOVj)LRMl?u1f!;Xtw`#;W3(ig@N;_C8Y`nyd^>?ut`2F|y&i>-+4r zU9lTG5J(>Ipe?bTcy}i}y3LOso+dsKzmE<%SM=kFSQ|+Gdf)|Oq$(sULh?DFe4)p@ zxCb#mGB4n4e(UL|n0=dp literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_recursive.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_recursive.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b8d4271f2c48ff899d74ffaf8a17ef73fd4915a GIT binary patch literal 8817 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 Jj*Jm?!#@-BA=Cf> literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_selected.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_selected.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4b6c2a46929bece0a931342166958d4299afb91e GIT binary patch literal 5924 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 KfJmL(VE+YUJZjVc literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_session.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..56325301955ce7b5eb0189057946a60034003416 GIT binary patch literal 14407 zcmd6Ne{d65o@ckzEw!v)wk7}mf&3E-8#y5c#}1e{#(_XE*?};LlblYt+eSu~Jl!(J zE;*xQ*&2JouFWPpm8Efgh&43tnP7)I+e@w7KR zw)xbXp!x0mT0B<)5qJwpt^aFu3W$ysbq0$eM{cxP%O&#^>_YLh3DPoMvuWjp7P3Qm z-4Mqu6l*1-Dfl*wZp*~g-abmdq+7Ohu$1&b*u8QzNmTX{OrGD7jie@zFxybDUVjdz1= zHBkF0zT_;$mujUCv_)UnN*4W=_Qq4#8qopmTi4!BQYeEI%A+snp)kJC1$@!B)HjOK zY8hx3jDe>}tO|%#siiddG+zZJ+5xRZjSg$EGEZTLutn2_I#q*i2VVnnCtnM47rzB$ zC+`9IEMEt*OCK-okmgRl{#wJPzSzk(=J@Q=%1HXEbJN$eo4&d-UsLoH?QQx33p(JX z6;7HM9~T8lf_L)^Q&B;B>Bw}Y1RlXic)KVJ2gk-EVpQO_H%Y$nQ=y@BQ;~|ALE`s= zzXt&m6sBZ|nlZ+VquE+SHPfJ@+O$sl<3lSRZ@_LF#dLEVZ{(S%Me~f&TGLE}7tf;9 z8heJ}O);qO2KeM91BGK!kHnZ zKpGDPqoH6}kQB2hjE6u;VcZr=)R6NoqgZzy0Oj7j|wx8Vy8)L)-fzyx{K*2SQU)P-^#`7Q(07L%|d6<5SU- zk?=FVr+2hV!KknuBA*J3Kzu$J3bkYPBqIIkUiXbpDONuzmLIbh-H<(EpL7^RoVvrf zQ&xA#A&8;?&D22%QxOKC1%}~1>aA9anxUh*p4RCxnhY>ZG{;35 z&0`c(%yFkFkv`XYkb0M9V3qks-D2MOO*)bRQ{x$!GR%yDJlPo|&qCRsep1<=oNjso z*>Z{xpK8q~upUpV^@ut&tWuMq zYLfPv2ClLSGb%;Gig7{=DV9)VC=l|)NK=eb;EZDABV!5&UP71;hzdId)B7aB46i}q z`ZRx2Pzniwaj#P`kAxy80wD>tgXWF zfhiJ2DS#rhWvl1vl< z?JM1Du067C&uwSrM%k8RS&LlOvV0)fwnv74QVrdw!RMPL{>(RxZR<^*a<$+BkqNeqZpdb zsczwq&Ns#>H7D@bod&cIkYQf{N`&+rs5uS9#yDkw1~I)Nh%m=C@dv#XJS0{OrmbI3 zGG>4;EnR8~+G7AF9D_4TF~a%rPzF&R3?;RT1zsFtFh zMTSuAqvq)$!w5BGcnhcytcd!`r>+O*4d?6(gwD`MLDJ-Hk`ntMDQIjP&;@Z)5KaLu zN$My!h%Z8zLI)*GNpEXSX}Th}>^?1M5cH)65YXyP-el7*xoKCT>DhmEb}i8#aEnFn zTi2Xjt6bM_;UO`g_kLkBv#B%01K=wnr_b$!gXo6>w*q<}&}_Hb2N<%c542WzfGK8% zEAVck#uP?%vI#0_r-co&WMG?k0}O97Zv@FrF+k?*#{g3YV1yEewyE1NOXvbB-R+yl z`c%5fX`q8=fJ}PTW){gT&uVBg0H;eg<)RPk6Og)urG^GBsf6)dpw83m;ei7Oe-HjA zhzr!?1nEi49pA(cD?D3eMIFijoeX3-0I zDa=p=IIjr_{KPn{@UV~rMV}bw15qKpPNvs%(jx%%I0>>KQ?dB{LKr3spiNnB@1z5G zjG{8=jnbO;gBQZ*!->*nfFJ7y=X}pH@0@e4a~0%0$(74o`Jy{nu}!Ynw$8O~^1WPn zv2vYjOgUY%c|ae#7rWxYG>Cs|7w2taM4TK49hHYAXPQ_W&UcbJc$ol91{_#Hp`sxXV=+t8Q^kX+XDR0A0lp>~#_GT6_%! zfpvrq5sWa8fy*oChvMJEPuc?FEOpye`F_`hp7T8kS3~^e`v#h=y3eqz`+?2CHmjh6 zF*YFpb_$t${{%CV05^E#x_t8w_SFV$cgq`b1H&`exd7*S*8qcHH678Gzk9-TjD|SC zGgOyvu8rEY(9H82Vj#K9agcwG4}NOHgEwgGf3Rt4 zqNq0koo0-%6~M)rxTwB~(DL3%p|K=pj4_%IF+RbzKr0hXo!iO)-)NwohABP?i{k4L z2Yh#=Hw@;1N3>7G?FZQfOf#@yhRwd;KNJ``De%bH{eJMmFTdYwLzX`bmIMf3iA6v$ zpA1NWXjBxD?I?zbq%h;KseoNbBp6oAd{87T$0Q14k<)@wpgzG{5^(@2<|9W5@dvhF zgWo1KXT_Y(RXmBl3}%|k`kj76x3GU=TrI8`237n?D+j{-p+2cuj?V7#z#&Pg<6wZ&#jm(GULYH=2?!4G} zdGE!&%ey|_dv$N3>bdK0B^-z1`!_19FMBU~myWMiv|STFp1C@6ePq@5;%fPRpyzDG zoNd;$z--t{J{U>ZYrmvuOT}$l@j}PBmmeD8{T_OJX#~ZG2JQ2aggF1{9!p;l`?Dgp zuhO!KULrz~3AX_Q11$ql@KD{TzL04?ICON&0h5_n+7cFHh~*#;>cLX}wPD0!n`JqG zfeO=QhQR@d>1lD(dd{?k!3cV=smSP!>XSB8-k4F_532)O1qN+cgI~H_V3|%+fOIat z^!{I8YDe=dmsxFlW9$@&xj4fqlFV21{-bA zzGLinnV2EVhQa#vRv|VF_H8!HhG8BMab1E<>27!ci5we`PAM#+hy<%GZWw{qOq_tt zBX0W?(>U3TDMm1BcwNN!AZ~{Mb+z7xDu7{W&I8toUJPqT?}DHd3`@~KcnDHJ-~P0( zl-{cl8m{h*vC@RDD`v7$6Nbed=;cQ73U(3D*JHb^z=Upox)MF;eGjU&>XDF_zw3 zX~4~kYnN=>g<74c)PhEaJ-SlTwOw{?U#XB?-LkDa<*HjCxh>TtT#c(OUCXwWqjF2v z^}0mM?u2W%Y}<`?h&^9%RAFh->5-kDD+iK|JLSfmYtEfAw{yc;ajE%A^SaY3bKVVS z$^7)(^x~V#Epp8>$(l~NrgP2NDRZ57ofYeq+pZm0*CREoZ)sn5J|%NcZ8(ePV{@_h z-d?I+7Ua5)WZfRQZcn0a@0xS3%ND@ri2($WKju26)`GSo&LyH;di<&BmL} zEWB@GL&*LKI2VGvKm~!#fJxDcTqi`0(KE2_f(3x)jX0t+aLn6+0Bl$2Kcja7U<0J< zyN=O35Sam@7=_1PG3uIrOb6>e01h4!&M;%#3_E6-F+rZDdX4y@B4dfxY4JwuwYSVOx0YH= zs3C`cTB#r%U`eXe0BweQatp?|&21LrMz?BdWS+c!9s_w~dIT1UTo>bb%e8_`iE!!4 zcgV=CPW!0_ zYp^d2hXNy#_%^ibRhl3z+UC?FBA}-yg-}Q_NaG^5KJ0VffyaQlK2*aiL0DpZ@s^3L z=z$55&5^?3agt)i5~mBR*wQCTg#IcnRPbT7B(PbiCq7~v<6|!3yC7gE9tefR0KOXG zgiK*@%STABh&u`qH_?RMiVRVgz&NE?vl@tOFiC;E7Ih)96N`#pTO+W*iXklJHS#Cg#A3;0PrG%h=zyG!GTZ<~w%8&{L6Yo4_) zjL2N=T}!EK*}7N*;vQAV_S4Hd?io1CuDiCvq^(-ERbP5@`4GVPjW=%D{^(aWG#kjt$P1wlLJLym5=`O>w13 zu1e;r7JJvZ+U(GRTikOgu71`qZ<(_!w8PqP<=N$Lef;{>*RNaGxqT1ouqtYW9u`6t zz|!rze)mE7Hx=a}>XD-UuZKmMG#*LEpdCM?`*$1vvbSMhr{Pn|3GbgeYxcFWpSJbx zf{&lKvimwLKYz-M@12GHUF=PBP5*Yw%|;8pZ)f{=*>CPJ<9nA8bZ+iuUu4Zgkgo2K zMv%4Vzd(n5&qz+LVb%G*F^ay#jpF#qaZ#NJ&lxiaHfNkO`gQF&;~%=K)({v>v|x56 zCR*67&Y(e8r>&U+@J0>Q;Q+5BMuFkBoPjlShKk~e194i4u&Z`yexpdXa$L-iUH%vz zmqLy+RQ|HZs6EuVA_i9DQRI#}ZWHona@7y#GU}Ui%^cUw8i(N+^el(v&}yL7Ri)-o zt~_h|oWA{;GNet{)FkC)r=NWiat1u=xta%XQxE|*17RIa2}TYm2H45NxX>Mr31q7e zxKiksWnH>a>J~& zFnl3$KC-b{d4c9MfKdD`P<=Cy>SO2_k)pb1nGKjk+)$hL^AJ|~HB;%GD_rkv; z34QLY0&dUN%^Fj-;`t+UM;7~Jn+G^OTL+w;btRcHnJHVO*O|)PsCTW7grjGrdfm~p zZtanoo|Ls{zGtpy@wjYlkeP;6Yr}8vS5WS6)5J>giLtb=p82Gb0XYQK(w%M=tb~E4 zK@kvO7-qb2h6aKJgjbsocvB!|$TGw0kd$wVJ!vrnvj_O7~o&}=i z(95R3fUmxH*FBNC>ATX5Z&Zhzd}sLAOdq92YK|A!OuKd{DH&1Ve%ztnPy@)oEUwcwsw!C`VW z;@H%|;>^d2U zdZd$)i4Y&&8ugqIx`FVHK@!KnWP(VgUZp_Z>vbz^6ta`Vze4}rC=mY8ut9FhDGoot zqjXZcPoc2mVlW(4oOr<_6!L4g=#=6d4}U;XDsugzk#T=WI4y(-$5u>Ilm}E+Q5OMM z;YNh$=|E^gAgHUJZs1l)F%e&hAhOp?N=xpY5PPyY-BOAX)<6*fIm6JAwxgjrIw6Mr zkO(N#&}YWs`&ofj`GE_grhFLKUG*9-+%U{ zy9JKJ8ziRiw?vOrmQ8a)*6|qNm+}N)+*UrwK%zEZI+p4@R;wK>smB? zf3M6`!q=sS%dHn%la+09Wm}@sCtH0o<9lpQm2dp=ou8un9{9^}u0BFBEv&QoVHv=Q`x}r2!TQyoG55a5v;T!iJNiH2j~T0c;Dj z)bp8uc>@mg7@coH7}Z&)mI6SV5v(ie)T8>s;Mem2W~-maWMaYfEZzJJ3rb$l&s^Zj zq??!7GJc&qXKW@KWX`Zzyf_cs#@HCcv#>y6D}#f@h0O=SU&DEu)mYgwvxt0iTkoNw zXiXyyKpn9x$7yYQlH$#OleN$QIHqs0;!zWsrhalh1z2ev3!L%eol)4$9uvO{DfVFP zt{PSRf+JXAXd((1P_01g1h6xp$5k*10NlZ?SH;yUO@)X0B5=5UCVDs!hKo0%Vpcs5 zgC1N?3&DjcmlQr zAu9d{2=SWKA{AtclvR|!#kh!zj~SY)Rq)GPht?4t09?EYQSM^2{|W*x$d=w=YVI(F zcbKA7qc_>uAvboc3?>?%UuB+;_nm8)Z=Gvh7?lg^QtsNMyIFQOC*57LyX!_^)!mhF zA2_@3?BSHNGU;rPoelB6vj*W)bKZr4L;)nX!CB|6bJm4}tK1eKv9nSVwg}FqgthrT#k870*i2ti3~RcFZ;#^; zQci+HH(;*kyI?>pmgzZ^xrzik)im*g8{Rr?g|yNxV@pNL>=`=11lSX%%<+;oi}N9m z7KS$DQGFMxr3}cV6KEivnNsLPHKUm+1(Kh~bDv1luE#?*Q$O`0E^o{xdptSv%UF`1 z6sF|^be9~8WzNY@b;3YXFAu{#cZ~+ZZFj@zv_D*dCVv`frSqI-Pifa*)5xK62!vho{#@EPT1UKEi^2fy$_)9vz|ihL8`XILjypbA%k^V9IbtMVN61Ahe!J%0zEZSC z4p~yp;zcjaZ<%XIIZL(IRcFIPFVx~8R)y3@J>-7xg}r@lnWaSxNZOiOM@ll!#dQy4&o8X09|aPC1r5k)Tw3B^GaQ53{*@e00$QCvU~Lotuy z5{eZRH&Ng)%DGJl_g__Z+aunBPyjhf`T*vm*`N_FSJYQRU;qv~A`!654cx3rNqI&0Q=h1}oSlo8sW~5)G?-c;1&Q7lxD=rQ# zHTTeMKM4qTS8#rwW@;GF|!55h%5+IEL>e@3}} zMb)fQHFv1`hbD@CN~YRBqZ*OEn&Whev&C73s{=t*-R4T;>_dZ*F8h)K0ruj8!VlPm zz6_mN1pajj4j-xcQ;UMmK*+fw*67qATt}I~B%F z-*dj>TyQQ`tW&M`nJU_Gzq_37r|)+Z(T(?;J#_p1eRK(Jy6-EY8}IqFrn$|OEH&L? pTJYI;i`jacDP3pEZ!=}7Gi>z@oL?W29WPxKt#zk4*|j|3-o9|=nVU(bv`6jg#s zd)t-3%$4>~@Iw1+G;%3C)6wSL+pYv7f!#p-q5mS#OTkd6JrYnN3WGjfu(sLgnzJk9 zpS~dZ-;>K>So{=J$2eK`uU1@>;^YOCh(!<-f(f!2GB-)Y5OR@xk~4bsJdWs8Dvx3MY#rkE3mp0K%CsDSoQw8`WAP+Zn<5?`t`qxW z>x@Lf1$4X9!d;Tp)-MXMhR;<9(8dX>9Y7f%ZaO-9O0;tM3WNdjbolgI=` zK__fc>anG4N5kRCwBa!_L!opMm%$Lr@E!QUu^Cc|kc_g+7xyz5?QZQU!z8l=FK`(n$2=UulPh|I||?kOm^ce@wFm>1hF zVVmf7=ix0tWts%(8HtQLD%&;Lmh%MX{0W-X6Q=s8sQQ+H+Pzje8S*QN8*Bv!n1#H! z)~VOQzSR=Ga5*p;F$RZitOd8aU2dHrWAugAg|`+&k5fkL$l*Xn4rDZ~?6^5*m@387 z(`Wbu@@~N137_(x0OI63q4I`zr72P0t_kfbZ8ypXG~s|s4;bYkO&C(?(04-ljf$0q zRYemTRNAn9@sUvRS`nqIZdcnY5fl{R@F+=tr|_(tkTUmmZeyE zqhn=rqS31fUX^;0Q&v8!31?M$HX)qN-_~#v**3EaGL~%y%6c+X+qBJqiqXN?)+sqW z?M9cRP4`3Gx(nro+0}ERhm+B&au>nH79kj6hgmxyyaS)I34p!=?>rRVNNnlVgkF{Q zCWPL6#&M+?pn0dc5Y*FHkcJuyav}boEiNEK_IMPy4)(*3Ku|zF6 zuNcpQQ*cbl@XI9AzGoVTSo$#Gz=8>bF@82YFFuiA>ehJgo;~7N%swX11z?p@MHl9R zp-6BhR?ikST~abDiiB(S!SD5py{!pb zRk{`Qb2X>9Z)MA^0ZrJh((O!pZ}Umv&4i~<6Z%xz#|T)}omx%UqtZQCv+s6wQrK~) zMHBX_bng#XW9cOaAtCI|S0=*>_5h<0opBOIVcZhoNF)=vfxl@eglPd`V);QCbq;)f zn*tM9!zOUrAGws7Jg61H@8hvfMorgkq7!mvSGq(u3Kow9B>891{63tmNr-`&7E;|v{-H=;MFn$V8(gbm^1o@Q4tR3nT5V3H z0-mNEkVFr!&&4)imibSqqI6SX)smv%o(3o7Lx4X7pMoo9s21#fUk#{@U7FCP(k{@2 z8*e`p8WUUI`Q3oJ?rvfzKsnn@%nBgcmbk3IN^N#RE<@0ln@z{{O75hN{Da9!Y55I0m zdKjngO3c*=DDrV=I|ZL213afBZ~nfx>V|Uj?r;8 za=aOLmClDk(``72n^oG3h6ql=tqT1FM@7?5UX%6#&JEa!5>0!*I;%EyYeKh5yAwip zzQy7W!;Ug1*jizWmAHG3yvvB$R4n!Ltiwlh}r2cv<7C}f{s7%XT~YWU)IzuxP=3R z>?)f3H3bPKnGD>5Gi|0XD|kYzPj8<0jja3ny_LfnRb=isrOFNHk z$Sdn(L9{H&`>@%IU@w5NSR)4U;C;0$?259uIvu|+ycHE=b!j)td`ZCW2;{f02Mh;e z&DcS1AfD-jh2h}S2ByPs1!nh$f__CFM6$+w=G=b8jhJFyBX|MX#w|IN86FMlE!YXL zoM|xKaOf8tJJ*p}OcSF+8Y@m0SV$9drArtTL44DJQ-HF-H3QyqvYSZ#dhZ|>nIFO~ zNC&XE0|Dv~JKJ@iqs-*YI0X*5jIRT&2gc zzW;V#QfN)I4g9H7Z5!2uQI(FahkxW||Md(_?>7r-n{hW$b))y@!1aOKr;@^3iT1uf zIo0-IO&C_`F!Z<57>nAS@eD>445&Z&L6ic4w=g zCvy;{^QzMw)P#d7J!r0)(u66MPO&P+x!&DLO*pC2li6y05^@F7g+1`)n@OQF(KV4g z7f`zbnh;QFfRWz1awm`!_9Z$`C&&G2r(YBND)nPi|LqLb`J_Lnb_F#dsM27jX?s$5 zJMpt~ns82~=Q3SMNueY0wxkJ?N+qZSNga10(ErzEn$WM(eylqJV>(UZv-CwzuDzOA7nHuG54bmG&^U(=2{nq_0szIGFF8;t|N4(>m~}ZxR86V-g}u z5YJpTjt;;{C;ctwB0OXMhRehjOVkuZQ^|IZH(XisEk`!c<}5glMeee35NF1LZ3gO0 z$6l72N<|wO!Hlz^5kOwUmB@0T%PVa}R?}^aX+Es73V)ZZuNuKD>xM=ESqr%E`LZ%y za4gvtZI|)6DJNy(-TiQl0vPxbl9MDc8;Ra?Wwc@)Y`k!0$&4Mr*C>|YDYiJ%i(Cs* z;MGY^iWqfs5T8pW5T6$>@iUNH;^E+izf2F7%O9)Wmi~hOXHF_xL|FbW8`0v5!Yd2( zm8_StSM*}l=29K^C&o3e_iK$CCEJJ>?xf}^N5)~*IP%#i3$}4G&ut?SJoH%FPGlRl zN69?VTRm0j8v@%C41Z)7fG40#Fy>+B`pn$)Y&3IU;Fo28RAjK_AH2KVdw01z z&UwW2?OE2d(ecJ&&G}sfXCepoi43;vDL|^XryRkHGhrFu^qrIbNZ?{vj;8nv;czHr zN9c=H=6Aiui7{u(QFu2FK*x555OZdD_mrmWOc-!`Pz>Eiz=yw-oee6V#k_OgFVDc` zgpw+SfhRBdvgIkbYYoUox#Z{^JjMjh==iD1-oUIJ02;Ue$^Vli;YUhd=@A=MEv+4&o#RYE48O?P@<mCKW(n+x!?2P#P3h2o?*>3tn$O=@s^ucc z`N7v4?=O56yuW-axK+XZP}us6@b-pB&hl@aTU6(k+s?1L6V5G3XOF2W+0n=9j(+E= zT;02RCF$CHNB-^n-TB{bzx#{N`|lt9oO@JRzwG}}fUaJOq<9lf;GbPPw2_nA=vbol zl;%36@~6^bLBoCTgRVbxX~QFl){~m+q{^R6%kXE{n^3Er98Gw}G}oBQk7XO~H$T|* zhh6{iQNoj+`h;ub#|jwoDT?slFDr>yqtS-zQi3+DDd^6B(%aDAO}=UBsqXjM{%y}; z0;LCDd;hyd4-OPzzFQa&Z2#`$0HUL6BslnW7XY2zpT3{EY#hZ#4@5GqG4=S9-I|Z- zo5N80(Fos>#Q*DiAbW%gh5eG!0uS-bXGd;Rq7w1T5oJCIH}5$fx|7)hTqDXs!2BFO zr4@kgn(GejxA2fAc%Kr|F+g7uA|9j9U@DGLsDV6lmhgWmrv1SgpU<;7F<*` zclv`Qx-g8fl*q7r2-&5l+=os52&@mPDTn?js>d5F)YyhtEC$&DIk*Oe@QgiS%J_=L zUR>D2fqV#y#}Q!Q!3>_ssYfx^seu0-(*FtMJvj`>xP>c!1n|_xaomrUgzJ7ty1pk{ zzbBjjM#M)#W!&*szB10GNd0r3a+NQgl&e_Y@shyLGY4_HKAns6&v}k3dFCXpx_Hr# zkS}^h0Q|K`WQ~qeZk&6*o#Xnr=T3p^c-}y{ea}T3mWxI1z2{ADaEG|(hqy+r@p%`= z!JIn?U%VXCZ1s=%$|PU?m@m8f^T&Mo)xpPn#nqv7juoqte9dFN^y-PneDOcN|Fnwm I4Q#Fc7y11mQ~&?~ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_sources.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_sources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3fd3d546eaed9010c8aa492ef9656c764206edb9 GIT binary patch literal 17500 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 UFZCZvHimwC_hpbsyh~4acj$Xet*_Co z3ka>)vdcuP;;OyV_<{mI?w09xD{ok>$Upp&`0)iDo1hBXwr98wl_e@pJ+@E|6bZZq zreZ#2fmF%Blm0SueVR?Eq@3f-qkb@};y1#fBGfOH6e*M!E6VYO>y^M;CFVTgNy$}W zmPtL>CR~G}uvC_G74`+tg3duZx|6$G=JR6FD=?9}{>{*}$*D_2*I}1m82YMAnL8PH zrHb%HZg`mm%ej(&JGWSobLC)kcqE?_zGOqNdET3a{W_bRWI~Ei-Fm`e7_vK|&2GT% zHjKOvGDyKA?trYK|447mIr*>Czw7irb26)wd&%^ZfrkT|BahCkPSv_nPsSdOJsRK2 z|9bi7%fC!K?Hb%AgSB-209moo4ZPQNYI9`M`(a|QC$lxO<^4GE`}7}Ef8yU}p7rE+ zQ~8%Ma65#PPET26vAA>*fE)*yf{1%`kO zSoMl1gR~)_Mq&@9*QVFM{RAlR&*04VD2#nn6abYb3~*$lnF|I~npLV8)^g)f?^{r5 zUT)-NA^|ELR@jAAArl-C@Dd+YB#XK%lem zh_+aH{tC*;Vo&y_VkacTxXAJb_0KPB|dGNj$pW dk4S3c{!@G4IqCVEoHp9~59!-aAd(4BdJUDjk5K>s literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_weakref.cpython-312.pyc b/.venv/lib/python3.12/site-packages/dill/tests/__pycache__/test_weakref.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0f0cf2b03b114f701c421b8abb70a7c6f2ba7e7 GIT binary patch literal 2813 zcmb6b-*3}q@IKo~9LG-6mO@ho?aDUDP+L(zAOxGzg3!jO*x;p|CM&faNSj}Lc4<>N zQkW{OStqs9Cbe6c#$F~6e+AEb0m3xu6=~9*_EuUXCSJDt>?Cc&RJMzJx%=*i?>pb! z_x-FW5+EGo|GqZh2l#_AH4v)A#!pBrf(|-K!wBe{0b^WEY4cy_Pb1@MaU&cD=Rp@{ zK=<9N>W=X4njhB!^)*2kXJEvq2NC;q330#>_0aes0NT!h;lEdX0b!oybTA{0NCXVY z6j2)3lokm4#gspp{?HXCKn-nznub=jcmGJ0*=Rvx5eyh1I*f2S!T0h7F2*~4RZAyK zQ>$s#ta&6hSV9(|0C&mIT||yx8tJ6TRJ&d#`zCXA+{`C5!|c0!uIHop!112TR>DeY zJ%c&jP~+J|x?rZvzTO)~_C{YiHQJXiSl4pdqrFG^`^=PO^q}#0;wswfsdT!}GEB>K zu{voa#;K9)%@>@2nlaEypALJG_Ez~Y3($wC1W!bH0|^+4367|$*+j-rRYy|QOirIj zGg?;F>l2BzC!sRxQjsC%goYSmo?N6Lu@OKt0~;LiDV`1!|If@esahhPPK;sz{~^Vc zz0wORh?JLPH#D{-=1Enj+Z$Z=)+FrnQWm)zE#`qXF($%LGef%>YS{8Fw#JaF;kt11 z!Irk|6?xcJ4_kuW?$ZgX$%(9HrE*!?j#h2>nAMLYh;DG(JhNVOJ>S8eSp=(Ig|#{_ zg2m)6)Yphr>r^OmR!s~=-eO5~VT{Gq05;sK`Y#GQYrYys-O{(SrOnkf{jbsF>zaWr zn(lPk9{85H#ho>Gh&#BmrA_M5NIPr3`aSBFp`9(a5wUhP>0u5>TpSXrl>>mjL$oqmPbD-VlIi#RNe{X zM#s`A({gwu*!xVA?X;^Aycr_1;aVH3v>z3t_?Q7~h!U)d;W@DsUk$cbf*qxSRk0Zv zF%x#yODS*%EJmIhIdzV?;(El}^3p_chG?@jLa zrpQ9;!Y51IQhZ6f-G5uZ(|>35LHJ1N{F)ykd)C44Yn$a)<;eVn@`YdJ{SW2+OJ+qr zP|{X{@~WtOr~P>JLDRv<;-Pgvw6xvKK2y-*)#1d3j60kjBZ1ceqH}4;kRlKW0tYte zye_0R8;4lzBynM^UXryHfGsV?+1wZ#&<#)cy3BF@@&RCg2lA)fYQ-iRp~w^7qlFn+de$tGiHqUY)Ho8GI^7w6ARR<$*^0K z%+l=>`aTLz;bVS^s02@iLu(xG>sXPaOUG}&z0_NgW3z-+PIx|AjxHRTd!sb)B&5ur zET5b^wbcB>o^SUoM<0c{9}3+MLfwBo4}jdZ4#d~NO5tMp;+JHNNA9KDC$myK1ouPH z_(A^uI|MP?MJAETsw$=<@WEyE((t9>SjgLwXd0H4%3d{T2gcUW^=>=4(R-&Z4ke&* zhPEG$FU8Z|h2%Xth*EYInK~kjiV(b^5&6m9&XVwja#NX2J%sk(ApAn$i1G{&y%1~E zx=2WHUF;-n>jNY}4y^40L7ts{#79?z$js1Fp?f9NvLf#OMQmT=L2g|OfY9Mq_diTi B9{K

    + # .LocalABC'> + + class Real(labc): + def foo(self): + return "True!" + + def baz(self): + return "My " + super(Real, self).baz() + + real = Real() + assert real.foo() == "True!" + + try: + labc() + except TypeError as e: + # Expected error + pass + else: + print('Failed to raise type error') + assert False + + labc2, pik = dill.copy((labc, Real())) + assert 'Real' == type(pik).__name__ + assert '.Real' in type(pik).__qualname__ + assert type(pik) is not Real + assert labc2 is not LocalABC + assert labc2 is not labc + assert isinstance(pik, labc2) + assert not isinstance(pik, labc) + assert not isinstance(pik, LocalABC) + assert pik.baz() == "My " + repr(pik) + +def test_meta_local_no_cache(): + """ + Test calling metaclass and cache registration + """ + LocalMetaABC = abc.ABCMeta('LocalMetaABC', (), {}) + + class ClassyClass: + pass + + class KlassyClass: + pass + + LocalMetaABC.register(ClassyClass) + + assert not issubclass(KlassyClass, LocalMetaABC) + assert issubclass(ClassyClass, LocalMetaABC) + + res = dill.dumps((LocalMetaABC, ClassyClass, KlassyClass)) + + lmabc, cc, kc = dill.loads(res) + assert type(lmabc) == type(LocalMetaABC) + assert not issubclass(kc, lmabc) + assert issubclass(cc, lmabc) + +if __name__ == '__main__': + test_abc_non_local() + test_abc_local() + test_meta_local_no_cache() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_check.py b/.venv/lib/python3.12/site-packages/dill/tests/test_check.py new file mode 100644 index 0000000..9daef72 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_check.py @@ -0,0 +1,62 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +from dill import check +import sys + +from dill.temp import capture + + +#FIXME: this doesn't catch output... it's from the internal call +def raise_check(func, **kwds): + try: + with capture('stdout') as out: + check(func, **kwds) + except Exception: + e = sys.exc_info()[1] + raise AssertionError(str(e)) + else: + assert 'Traceback' not in out.getvalue() + finally: + out.close() + + +f = lambda x:x**2 + + +def test_simple(verbose=None): + raise_check(f, verbose=verbose) + + +def test_recurse(verbose=None): + raise_check(f, recurse=True, verbose=verbose) + + +def test_byref(verbose=None): + raise_check(f, byref=True, verbose=verbose) + + +def test_protocol(verbose=None): + raise_check(f, protocol=True, verbose=verbose) + + +def test_python(verbose=None): + raise_check(f, python=None, verbose=verbose) + + +#TODO: test incompatible versions +#TODO: test dump failure +#TODO: test load failure + + +if __name__ == '__main__': + test_simple() + test_recurse() + test_byref() + test_protocol() + test_python() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_classdef.py b/.venv/lib/python3.12/site-packages/dill/tests/test_classdef.py new file mode 100644 index 0000000..e3110cd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_classdef.py @@ -0,0 +1,340 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +from enum import EnumMeta +import sys +dill.settings['recurse'] = True + +# test classdefs +class _class: + def _method(self): + pass + def ok(self): + return True + +class _class2: + def __call__(self): + pass + def ok(self): + return True + +class _newclass(object): + def _method(self): + pass + def ok(self): + return True + +class _newclass2(object): + def __call__(self): + pass + def ok(self): + return True + +class _meta(type): + pass + +def __call__(self): + pass +def ok(self): + return True + +_mclass = _meta("_mclass", (object,), {"__call__": __call__, "ok": ok}) + +del __call__ +del ok + +o = _class() +oc = _class2() +n = _newclass() +nc = _newclass2() +m = _mclass() + +if sys.hexversion < 0x03090000: + import typing + class customIntList(typing.List[int]): + pass +else: + class customIntList(list[int]): + pass + +# test pickles for class instances +def test_class_instances(): + assert dill.pickles(o) + assert dill.pickles(oc) + assert dill.pickles(n) + assert dill.pickles(nc) + assert dill.pickles(m) + +def test_class_objects(): + clslist = [_class,_class2,_newclass,_newclass2,_mclass] + objlist = [o,oc,n,nc,m] + _clslist = [dill.dumps(obj) for obj in clslist] + _objlist = [dill.dumps(obj) for obj in objlist] + + for obj in clslist: + globals().pop(obj.__name__) + del clslist + for obj in ['o','oc','n','nc']: + globals().pop(obj) + del objlist + del obj + + for obj,cls in zip(_objlist,_clslist): + _cls = dill.loads(cls) + _obj = dill.loads(obj) + assert _obj.ok() + assert _cls.ok(_cls()) + if _cls.__name__ == "_mclass": + assert type(_cls).__name__ == "_meta" + +# test NoneType +def test_specialtypes(): + assert dill.pickles(type(None)) + assert dill.pickles(type(NotImplemented)) + assert dill.pickles(type(Ellipsis)) + assert dill.pickles(type(EnumMeta)) + +from collections import namedtuple +Z = namedtuple("Z", ['a','b']) +Zi = Z(0,1) +X = namedtuple("Y", ['a','b']) +X.__name__ = "X" +X.__qualname__ = "X" #XXX: name must 'match' or fails to pickle +Xi = X(0,1) +Bad = namedtuple("FakeName", ['a','b']) +Badi = Bad(0,1) +Defaults = namedtuple('Defaults', ['x', 'y'], defaults=[1]) +Defaultsi = Defaults(2) + +# test namedtuple +def test_namedtuple(): + assert Z is dill.loads(dill.dumps(Z)) + assert Zi == dill.loads(dill.dumps(Zi)) + assert X is dill.loads(dill.dumps(X)) + assert Xi == dill.loads(dill.dumps(Xi)) + assert Defaults is dill.loads(dill.dumps(Defaults)) + assert Defaultsi == dill.loads(dill.dumps(Defaultsi)) + assert Bad is not dill.loads(dill.dumps(Bad)) + assert Bad._fields == dill.loads(dill.dumps(Bad))._fields + assert tuple(Badi) == tuple(dill.loads(dill.dumps(Badi))) + + class A: + class B(namedtuple("C", ["one", "two"])): + '''docstring''' + B.__module__ = 'testing' + + a = A() + assert dill.copy(a) + + assert dill.copy(A.B).__name__ == 'B' + assert dill.copy(A.B).__qualname__.endswith('..A.B') + assert dill.copy(A.B).__doc__ == 'docstring' + assert dill.copy(A.B).__module__ == 'testing' + + from typing import NamedTuple + + def A(): + class B(NamedTuple): + x: int + return B + + assert type(dill.copy(A()(8))).__qualname__ == type(A()(8)).__qualname__ + +def test_dtype(): + try: + import numpy as np + + dti = np.dtype('int') + assert np.dtype == dill.copy(np.dtype) + assert dti == dill.copy(dti) + except ImportError: pass + + +def test_array_nested(): + try: + import numpy as np + + x = np.array([1]) + y = (x,) + assert y == dill.copy(y) + + except ImportError: pass + + +def test_array_subclass(): + try: + import numpy as np + + class TestArray(np.ndarray): + def __new__(cls, input_array, color): + obj = np.asarray(input_array).view(cls) + obj.color = color + return obj + def __array_finalize__(self, obj): + if obj is None: + return + if isinstance(obj, type(self)): + self.color = obj.color + def __getnewargs__(self): + return np.asarray(self), self.color + + a1 = TestArray(np.zeros(100), color='green') + if not dill._dill.IS_PYPY: + assert dill.pickles(a1) + assert a1.__dict__ == dill.copy(a1).__dict__ + + a2 = a1[0:9] + if not dill._dill.IS_PYPY: + assert dill.pickles(a2) + assert a2.__dict__ == dill.copy(a2).__dict__ + + class TestArray2(np.ndarray): + color = 'blue' + + a3 = TestArray2([1,2,3,4,5]) + a3.color = 'green' + if not dill._dill.IS_PYPY: + assert dill.pickles(a3) + assert a3.__dict__ == dill.copy(a3).__dict__ + + except ImportError: pass + + +def test_method_decorator(): + class A(object): + @classmethod + def test(cls): + pass + + a = A() + + res = dill.dumps(a) + new_obj = dill.loads(res) + new_obj.__class__.test() + +# test slots +class Y(object): + __slots__ = ('y', '__weakref__') + def __init__(self, y): + self.y = y + +value = 123 +y = Y(value) + +class Y2(object): + __slots__ = 'y' + def __init__(self, y): + self.y = y + +def test_slots(): + assert dill.pickles(Y) + assert dill.pickles(y) + assert dill.pickles(Y.y) + assert dill.copy(y).y == value + assert dill.copy(Y2(value)).y == value + +def test_origbases(): + assert dill.copy(customIntList).__orig_bases__ == customIntList.__orig_bases__ + +def test_attr(): + import attr + @attr.s + class A: + a = attr.ib() + + v = A(1) + assert dill.copy(v) == v + +def test_metaclass(): + class metaclass_with_new(type): + def __new__(mcls, name, bases, ns, **kwds): + cls = super().__new__(mcls, name, bases, ns, **kwds) + assert mcls is not None + assert cls.method(mcls) + return cls + def method(cls, mcls): + return isinstance(cls, mcls) + + l = locals() + exec("""class subclass_with_new(metaclass=metaclass_with_new): + def __new__(cls): + self = super().__new__(cls) + return self""", None, l) + subclass_with_new = l['subclass_with_new'] + + assert dill.copy(subclass_with_new()) + +def test_enummeta(): + from http import HTTPStatus + import enum + assert dill.copy(HTTPStatus.OK) is HTTPStatus.OK + assert dill.copy(enum.EnumMeta) is enum.EnumMeta + +def test_inherit(): #NOTE: see issue #612 + class Foo: + w = 0 + x = 1 + y = 1.1 + a = () + b = (1,) + n = None + + class Bar(Foo): + w = 2 + x = 1 + y = 1.1 + z = 0.2 + a = () + b = (1,) + c = (2,) + n = None + + Baz = dill.copy(Bar) + + import platform + is_pypy = platform.python_implementation() == 'PyPy' + assert Bar.__dict__ == Baz.__dict__ + # ints + assert 'w' in Bar.__dict__ and 'w' in Baz.__dict__ + assert Bar.__dict__['w'] is Baz.__dict__['w'] + assert 'x' in Bar.__dict__ and 'x' in Baz.__dict__ + assert Bar.__dict__['x'] is Baz.__dict__['x'] + # floats + assert 'y' in Bar.__dict__ and 'y' in Baz.__dict__ + same = Bar.__dict__['y'] is Baz.__dict__['y'] + assert same if is_pypy else not same + assert 'z' in Bar.__dict__ and 'z' in Baz.__dict__ + same = Bar.__dict__['z'] is Baz.__dict__['z'] + assert same if is_pypy else not same + # tuples + assert 'a' in Bar.__dict__ and 'a' in Baz.__dict__ + assert Bar.__dict__['a'] is Baz.__dict__['a'] + assert 'b' in Bar.__dict__ and 'b' in Baz.__dict__ + assert Bar.__dict__['b'] is not Baz.__dict__['b'] + assert 'c' in Bar.__dict__ and 'c' in Baz.__dict__ + assert Bar.__dict__['c'] is not Baz.__dict__['c'] + # None + assert 'n' in Bar.__dict__ and 'n' in Baz.__dict__ + assert Bar.__dict__['n'] is Baz.__dict__['n'] + + +if __name__ == '__main__': + test_class_instances() + test_class_objects() + test_specialtypes() + test_namedtuple() + test_dtype() + test_array_nested() + test_array_subclass() + test_method_decorator() + test_slots() + test_origbases() + test_metaclass() + test_enummeta() + test_inherit() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_dataclasses.py b/.venv/lib/python3.12/site-packages/dill/tests/test_dataclasses.py new file mode 100644 index 0000000..0da145c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_dataclasses.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Author: Anirudh Vegesana (avegesan@cs.stanford.edu) +# Copyright (c) 2022-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +test pickling a dataclass +""" + +import dill +import dataclasses + +def test_dataclasses(): + # Issue #500 + @dataclasses.dataclass + class A: + x: int + y: str + + @dataclasses.dataclass + class B: + a: A + + a = A(1, "test") + before = B(a) + save = dill.dumps(before) + after = dill.loads(save) + assert before != after # classes don't match + assert before == B(A(**dataclasses.asdict(after.a))) + assert dataclasses.asdict(before) == dataclasses.asdict(after) + +if __name__ == '__main__': + test_dataclasses() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_detect.py b/.venv/lib/python3.12/site-packages/dill/tests/test_detect.py new file mode 100644 index 0000000..b0a71c2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_detect.py @@ -0,0 +1,160 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +from dill.detect import baditems, badobjects, badtypes, errors, parent, at, globalvars +from dill import settings +from dill._dill import IS_PYPY +from pickle import PicklingError + +import inspect +import sys +import os + +def test_bad_things(): + f = inspect.currentframe() + assert baditems(f) == [f] + #assert baditems(globals()) == [f] #XXX + assert badobjects(f) is f + assert badtypes(f) == type(f) + assert type(errors(f)) is TypeError + d = badtypes(f, 1) + assert isinstance(d, dict) + assert list(badobjects(f, 1).keys()) == list(d.keys()) + assert list(errors(f, 1).keys()) == list(d.keys()) + s = set([(err.__class__.__name__,err.args[0]) for err in list(errors(f, 1).values())]) + a = dict(s) + if not os.environ.get('COVERAGE'): #XXX: travis-ci + proxy = 0 if type(f.f_locals) is dict else 1 + assert len(s) == len(a) + proxy # TypeError (and possibly PicklingError) + n = 2 + assert len(a) is n if 'PicklingError' in a.keys() else n-1 + +def test_parent(): + x = [4,5,6,7] + listiter = iter(x) + obj = parent(listiter, list) + assert obj is x + + if IS_PYPY: assert parent(obj, int) is None + else: assert parent(obj, int) is x[-1] # python oddly? finds last int + assert at(id(at)) is at + +a, b, c = 1, 2, 3 + +def squared(x): + return a+x**2 + +def foo(x): + def bar(y): + return squared(x)+y + return bar + +class _class: + def _method(self): + pass + def ok(self): + return True + +def test_globals(): + def f(): + a + def g(): + b + def h(): + c + assert globalvars(f) == dict(a=1, b=2, c=3) + + res = globalvars(foo, recurse=True) + assert set(res) == set(['squared', 'a']) + res = globalvars(foo, recurse=False) + assert res == {} + zap = foo(2) + res = globalvars(zap, recurse=True) + assert set(res) == set(['squared', 'a']) + res = globalvars(zap, recurse=False) + assert set(res) == set(['squared']) + del zap + res = globalvars(squared) + assert set(res) == set(['a']) + # FIXME: should find referenced __builtins__ + #res = globalvars(_class, recurse=True) + #assert set(res) == set(['True']) + #res = globalvars(_class, recurse=False) + #assert res == {} + #res = globalvars(_class.ok, recurse=True) + #assert set(res) == set(['True']) + #res = globalvars(_class.ok, recurse=False) + #assert set(res) == set(['True']) + + +#98 dill ignores __getstate__ in interactive lambdas +bar = [0] + +class Foo(object): + def __init__(self): + pass + def __getstate__(self): + bar[0] = bar[0]+1 + return {} + def __setstate__(self, data): + pass + +f = Foo() + +def test_getstate(): + from dill import dumps, loads + dumps(f) + b = bar[0] + dumps(lambda: f, recurse=False) # doesn't call __getstate__ + assert bar[0] == b + dumps(lambda: f, recurse=True) # calls __getstate__ + assert bar[0] == b + 1 + +#97 serialize lambdas in test files +def test_deleted(): + global sin + from dill import dumps, loads + from math import sin, pi + + def sinc(x): + return sin(x)/x + + settings['recurse'] = True + _sinc = dumps(sinc) + sin = globals().pop('sin') + sin = 1 + del sin + sinc_ = loads(_sinc) # no NameError... pickling preserves 'sin' + res = sinc_(1) + from math import sin + assert sinc(1) == res + + +def test_lambdify(): + try: + from sympy import symbols, lambdify + except ImportError: + return + settings['recurse'] = True + x = symbols("x") + y = x**2 + f = lambdify([x], y) + z = min + d = globals() + globalvars(f, recurse=True, builtin=True) + assert z is min + assert d is globals() + + +if __name__ == '__main__': + test_bad_things() + test_parent() + test_globals() + test_getstate() + test_deleted() + test_lambdify() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_dictviews.py b/.venv/lib/python3.12/site-packages/dill/tests/test_dictviews.py new file mode 100644 index 0000000..bb904b1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_dictviews.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Author: Anirudh Vegesana (avegesan@cs.stanford.edu) +# Copyright (c) 2021-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +from dill._dill import OLD310, MAPPING_PROXY_TRICK, DictProxyType + +def test_dictproxy(): + assert dill.copy(DictProxyType({'a': 2})) + +def test_dictviews(): + x = {'a': 1} + assert dill.copy(x.keys()) + assert dill.copy(x.values()) + assert dill.copy(x.items()) + +def test_dictproxy_trick(): + if not OLD310 and MAPPING_PROXY_TRICK: + x = {'a': 1} + all_views = (x.values(), x.items(), x.keys(), x) + seperate_views = dill.copy(all_views) + new_x = seperate_views[-1] + new_x['b'] = 2 + new_x['c'] = 1 + assert len(new_x) == 3 and len(x) == 1 + assert len(seperate_views[0]) == 3 and len(all_views[0]) == 1 + assert len(seperate_views[1]) == 3 and len(all_views[1]) == 1 + assert len(seperate_views[2]) == 3 and len(all_views[2]) == 1 + assert dict(all_views[1]) == x + assert dict(seperate_views[1]) == new_x + +if __name__ == '__main__': + test_dictproxy() + test_dictviews() + test_dictproxy_trick() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_diff.py b/.venv/lib/python3.12/site-packages/dill/tests/test_diff.py new file mode 100644 index 0000000..16d821d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_diff.py @@ -0,0 +1,107 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +from dill import __diff as diff + +import sys +IS_PYPY = not hasattr(sys, 'getrefcount') + +class A: + pass + +def test_diff(): + a = A() + b = A() + c = A() + a.a = b + b.a = c + diff.memorise(a) + assert not diff.has_changed(a) + c.a = 1 + assert diff.has_changed(a) + diff.memorise(c, force=True) + assert not diff.has_changed(a) + c.a = 2 + assert diff.has_changed(a) + changed = diff.whats_changed(a) + assert list(changed[0].keys()) == ["a"] + assert not changed[1] + + a2 = [] + b2 = [a2] + c2 = [b2] + diff.memorise(c2) + assert not diff.has_changed(c2) + a2.append(1) + assert diff.has_changed(c2) + changed = diff.whats_changed(c2) + assert changed[0] == {} + assert changed[1] + + a3 = {} + b3 = {1: a3} + c3 = {1: b3} + diff.memorise(c3) + assert not diff.has_changed(c3) + a3[1] = 1 + assert diff.has_changed(c3) + changed = diff.whats_changed(c3) + assert changed[0] == {} + assert changed[1] + + if not IS_PYPY: + import abc + # make sure the "_abc_invaldation_counter" doesn't make test fail + diff.memorise(abc.ABCMeta, force=True) + assert not diff.has_changed(abc) + abc.ABCMeta.zzz = 1 + assert diff.has_changed(abc) + changed = diff.whats_changed(abc) + assert list(changed[0].keys()) == ["ABCMeta"] + assert not changed[1] + + ''' + import Queue + diff.memorise(Queue, force=True) + assert not diff.has_changed(Queue) + Queue.Queue.zzz = 1 + assert diff.has_changed(Queue) + changed = diff.whats_changed(Queue) + assert list(changed[0].keys()) == ["Queue"] + assert not changed[1] + + import math + diff.memorise(math, force=True) + assert not diff.has_changed(math) + math.zzz = 1 + assert diff.has_changed(math) + changed = diff.whats_changed(math) + assert list(changed[0].keys()) == ["zzz"] + assert not changed[1] + ''' + + a = A() + b = A() + c = A() + a.a = b + b.a = c + diff.memorise(a) + assert not diff.has_changed(a) + c.a = 1 + assert diff.has_changed(a) + diff.memorise(c, force=True) + assert not diff.has_changed(a) + del c.a + assert diff.has_changed(a) + changed = diff.whats_changed(a) + assert list(changed[0].keys()) == ["a"] + assert not changed[1] + + +if __name__ == '__main__': + test_diff() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_extendpickle.py b/.venv/lib/python3.12/site-packages/dill/tests/test_extendpickle.py new file mode 100644 index 0000000..2d66e54 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_extendpickle.py @@ -0,0 +1,53 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill as pickle +from io import BytesIO as StringIO + + +def my_fn(x): + return x * 17 + + +def test_extend(): + obj = lambda : my_fn(34) + assert obj() == 578 + + obj_io = StringIO() + pickler = pickle.Pickler(obj_io) + pickler.dump(obj) + + obj_str = obj_io.getvalue() + + obj2_io = StringIO(obj_str) + unpickler = pickle.Unpickler(obj2_io) + obj2 = unpickler.load() + + assert obj2() == 578 + + +def test_isdill(): + obj_io = StringIO() + pickler = pickle.Pickler(obj_io) + assert pickle._dill.is_dill(pickler) is True + + pickler = pickle._dill.StockPickler(obj_io) + assert pickle._dill.is_dill(pickler) is False + + try: + import multiprocess as mp + pickler = mp.reduction.ForkingPickler(obj_io) + assert pickle._dill.is_dill(pickler, child=True) is True + assert pickle._dill.is_dill(pickler, child=False) is False + except Exception: + pass + + +if __name__ == '__main__': + test_extend() + test_isdill() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_fglobals.py b/.venv/lib/python3.12/site-packages/dill/tests/test_fglobals.py new file mode 100644 index 0000000..45e4166 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_fglobals.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2021-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +dill.settings['recurse'] = True + +def get_fun_with_strftime(): + def fun_with_strftime(): + import datetime + return datetime.datetime.strptime("04-01-1943", "%d-%m-%Y").strftime( + "%Y-%m-%d %H:%M:%S" + ) + return fun_with_strftime + + +def get_fun_with_strftime2(): + import datetime + return datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') + + +def test_doc_dill_issue_219(): + back_fn = dill.loads(dill.dumps(get_fun_with_strftime())) + assert back_fn() == "1943-01-04 00:00:00" + dupl = dill.loads(dill.dumps(get_fun_with_strftime2)) + assert dupl() == get_fun_with_strftime2() + + +def get_fun_with_internal_import(): + def fun_with_import(): + import re + return re.compile("$") + return fun_with_import + + +def test_method_with_internal_import_should_work(): + import re + back_fn = dill.loads(dill.dumps(get_fun_with_internal_import())) + import inspect + if hasattr(inspect, 'getclosurevars'): + vars = inspect.getclosurevars(back_fn) + assert vars.globals == {} + assert vars.nonlocals == {} + assert back_fn() == re.compile("$") + assert "__builtins__" in back_fn.__globals__ + + +if __name__ == "__main__": + import sys + if (sys.version_info[:3] != (3,10,0) or sys.version_info[3] != 'alpha'): + test_doc_dill_issue_219() + test_method_with_internal_import_should_work() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_file.py b/.venv/lib/python3.12/site-packages/dill/tests/test_file.py new file mode 100644 index 0000000..4a9bac3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_file.py @@ -0,0 +1,500 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import os +import sys +import string +import random + +import dill + + +dill.settings['recurse'] = True + +fname = "_test_file.txt" +rand_chars = list(string.ascii_letters) + ["\n"] * 40 # bias newline + +buffer_error = ValueError("invalid buffer size") +dne_error = FileNotFoundError("[Errno 2] No such file or directory: '%s'" % fname) + + +def write_randomness(number=200): + f = open(fname, "w") + for i in range(number): + f.write(random.choice(rand_chars)) + f.close() + f = open(fname, "r") + contents = f.read() + f.close() + return contents + + +def trunc_file(): + open(fname, "w").close() + + +def throws(op, args, exc): + try: + op(*args) + except type(exc): + return sys.exc_info()[1].args == exc.args + else: + return False + + +def teardown_module(): + if os.path.exists(fname): + os.remove(fname) + + +def bench(strictio, fmode, skippypy): + import platform + if skippypy and platform.python_implementation() == 'PyPy': + # Skip for PyPy... + return + + # file exists, with same contents + # read + + write_randomness() + + f = open(fname, "r") + _f = dill.loads(dill.dumps(f, fmode=fmode))#, strictio=strictio)) + assert _f.mode == f.mode + assert _f.tell() == f.tell() + assert _f.read() == f.read() + f.close() + _f.close() + + # write + + f = open(fname, "w") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + f.close() + f2 = dill.loads(f_dumped) #FIXME: fails due to pypy/issues/1233 + # TypeError: expected py_object instance instead of str + f2mode = f2.mode + f2tell = f2.tell() + f2name = f2.name + f2.write(" world!") + f2.close() + + if fmode == dill.HANDLE_FMODE: + assert open(fname).read() == " world!" + assert f2mode == f1mode + assert f2tell == 0 + elif fmode == dill.CONTENTS_FMODE: + assert open(fname).read() == "hello world!" + assert f2mode == f1mode + assert f2tell == ftell + assert f2name == fname + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2mode == f1mode + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + + # append + + trunc_file() + + f = open(fname, "a") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + f.close() + f2 = dill.loads(f_dumped) + f2mode = f2.mode + f2tell = f2.tell() + f2.write(" world!") + f2.close() + + assert f2mode == f1mode + if fmode == dill.CONTENTS_FMODE: + assert open(fname).read() == "hello world!" + assert f2tell == ftell + elif fmode == dill.HANDLE_FMODE: + assert open(fname).read() == "hello world!" + assert f2tell == ftell + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + + # file exists, with different contents (smaller size) + # read + + write_randomness() + + f = open(fname, "r") + fstr = f.read() + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + f.close() + _flen = 150 + _fstr = write_randomness(number=_flen) + + if strictio: # throw error if ftell > EOF + assert throws(dill.loads, (f_dumped,), buffer_error) + else: + f2 = dill.loads(f_dumped) + assert f2.mode == f1mode + if fmode == dill.CONTENTS_FMODE: + assert f2.tell() == _flen + assert f2.read() == "" + f2.seek(0) + assert f2.read() == _fstr + assert f2.tell() == _flen # 150 + elif fmode == dill.HANDLE_FMODE: + assert f2.tell() == 0 + assert f2.read() == _fstr + assert f2.tell() == _flen # 150 + elif fmode == dill.FILE_FMODE: + assert f2.tell() == ftell # 200 + assert f2.read() == "" + f2.seek(0) + assert f2.read() == fstr + assert f2.tell() == ftell # 200 + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + f2.close() + + # write + + write_randomness() + + f = open(fname, "w") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + f.close() + fstr = open(fname).read() + + f = open(fname, "w") + f.write("h") + _ftell = f.tell() + f.close() + + if strictio: # throw error if ftell > EOF + assert throws(dill.loads, (f_dumped,), buffer_error) + else: + f2 = dill.loads(f_dumped) + f2mode = f2.mode + f2tell = f2.tell() + f2.write(" world!") + f2.close() + if fmode == dill.CONTENTS_FMODE: + assert open(fname).read() == "h world!" + assert f2mode == f1mode + assert f2tell == _ftell + elif fmode == dill.HANDLE_FMODE: + assert open(fname).read() == " world!" + assert f2mode == f1mode + assert f2tell == 0 + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2mode == f1mode + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + f2.close() + + # append + + trunc_file() + + f = open(fname, "a") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + f.close() + fstr = open(fname).read() + + f = open(fname, "w") + f.write("h") + _ftell = f.tell() + f.close() + + if strictio: # throw error if ftell > EOF + assert throws(dill.loads, (f_dumped,), buffer_error) + else: + f2 = dill.loads(f_dumped) + f2mode = f2.mode + f2tell = f2.tell() + f2.write(" world!") + f2.close() + assert f2mode == f1mode + if fmode == dill.CONTENTS_FMODE: + # position of writes cannot be changed on some OSs + assert open(fname).read() == "h world!" + assert f2tell == _ftell + elif fmode == dill.HANDLE_FMODE: + assert open(fname).read() == "h world!" + assert f2tell == _ftell + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + f2.close() + + # file does not exist + # read + + write_randomness() + + f = open(fname, "r") + fstr = f.read() + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + f.close() + + os.remove(fname) + + if strictio: # throw error if file DNE + assert throws(dill.loads, (f_dumped,), dne_error) + else: + f2 = dill.loads(f_dumped) + assert f2.mode == f1mode + if fmode == dill.CONTENTS_FMODE: + # FIXME: this fails on systems where f2.tell() always returns 0 + # assert f2.tell() == ftell # 200 + assert f2.read() == "" + f2.seek(0) + assert f2.read() == "" + assert f2.tell() == 0 + elif fmode == dill.FILE_FMODE: + assert f2.tell() == ftell # 200 + assert f2.read() == "" + f2.seek(0) + assert f2.read() == fstr + assert f2.tell() == ftell # 200 + elif fmode == dill.HANDLE_FMODE: + assert f2.tell() == 0 + assert f2.read() == "" + assert f2.tell() == 0 + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + f2.close() + + # write + + write_randomness() + + f = open(fname, "w+") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + ftell = f.tell() + f1mode = f.mode + f.close() + + os.remove(fname) + + if strictio: # throw error if file DNE + assert throws(dill.loads, (f_dumped,), dne_error) + else: + f2 = dill.loads(f_dumped) + f2mode = f2.mode + f2tell = f2.tell() + f2.write(" world!") + f2.close() + if fmode == dill.CONTENTS_FMODE: + assert open(fname).read() == " world!" + assert f2mode == 'w+' + assert f2tell == 0 + elif fmode == dill.HANDLE_FMODE: + assert open(fname).read() == " world!" + assert f2mode == f1mode + assert f2tell == 0 + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2mode == f1mode + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + + # append + + trunc_file() + + f = open(fname, "a") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + ftell = f.tell() + f1mode = f.mode + f.close() + + os.remove(fname) + + if strictio: # throw error if file DNE + assert throws(dill.loads, (f_dumped,), dne_error) + else: + f2 = dill.loads(f_dumped) + f2mode = f2.mode + f2tell = f2.tell() + f2.write(" world!") + f2.close() + assert f2mode == f1mode + if fmode == dill.CONTENTS_FMODE: + assert open(fname).read() == " world!" + assert f2tell == 0 + elif fmode == dill.HANDLE_FMODE: + assert open(fname).read() == " world!" + assert f2tell == 0 + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + + # file exists, with different contents (larger size) + # read + + write_randomness() + + f = open(fname, "r") + fstr = f.read() + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + f.close() + _flen = 250 + _fstr = write_randomness(number=_flen) + + # XXX: no safe_file: no way to be 'safe'? + + f2 = dill.loads(f_dumped) + assert f2.mode == f1mode + if fmode == dill.CONTENTS_FMODE: + assert f2.tell() == ftell # 200 + assert f2.read() == _fstr[ftell:] + f2.seek(0) + assert f2.read() == _fstr + assert f2.tell() == _flen # 250 + elif fmode == dill.HANDLE_FMODE: + assert f2.tell() == 0 + assert f2.read() == _fstr + assert f2.tell() == _flen # 250 + elif fmode == dill.FILE_FMODE: + assert f2.tell() == ftell # 200 + assert f2.read() == "" + f2.seek(0) + assert f2.read() == fstr + assert f2.tell() == ftell # 200 + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + f2.close() # XXX: other alternatives? + + # write + + f = open(fname, "w") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + + fstr = open(fname).read() + + f.write(" and goodbye!") + _ftell = f.tell() + f.close() + + # XXX: no safe_file: no way to be 'safe'? + + f2 = dill.loads(f_dumped) + f2mode = f2.mode + f2tell = f2.tell() + f2.write(" world!") + f2.close() + if fmode == dill.CONTENTS_FMODE: + assert open(fname).read() == "hello world!odbye!" + assert f2mode == f1mode + assert f2tell == ftell + elif fmode == dill.HANDLE_FMODE: + assert open(fname).read() == " world!" + assert f2mode == f1mode + assert f2tell == 0 + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2mode == f1mode + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + f2.close() + + # append + + trunc_file() + + f = open(fname, "a") + f.write("hello") + f_dumped = dill.dumps(f, fmode=fmode)#, strictio=strictio) + f1mode = f.mode + ftell = f.tell() + fstr = open(fname).read() + + f.write(" and goodbye!") + _ftell = f.tell() + f.close() + + # XXX: no safe_file: no way to be 'safe'? + + f2 = dill.loads(f_dumped) + f2mode = f2.mode + f2tell = f2.tell() + f2.write(" world!") + f2.close() + assert f2mode == f1mode + if fmode == dill.CONTENTS_FMODE: + assert open(fname).read() == "hello and goodbye! world!" + assert f2tell == ftell + elif fmode == dill.HANDLE_FMODE: + assert open(fname).read() == "hello and goodbye! world!" + assert f2tell == _ftell + elif fmode == dill.FILE_FMODE: + assert open(fname).read() == "hello world!" + assert f2tell == ftell + else: + raise RuntimeError("Unknown file mode '%s'" % fmode) + f2.close() + + +def test_nostrictio_handlefmode(): + bench(False, dill.HANDLE_FMODE, False) + teardown_module() + + +def test_nostrictio_filefmode(): + bench(False, dill.FILE_FMODE, False) + teardown_module() + + +def test_nostrictio_contentsfmode(): + bench(False, dill.CONTENTS_FMODE, True) + teardown_module() + + +#bench(True, dill.HANDLE_FMODE, False) +#bench(True, dill.FILE_FMODE, False) +#bench(True, dill.CONTENTS_FMODE, True) + + +if __name__ == '__main__': + test_nostrictio_handlefmode() + test_nostrictio_filefmode() + test_nostrictio_contentsfmode() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_functions.py b/.venv/lib/python3.12/site-packages/dill/tests/test_functions.py new file mode 100644 index 0000000..463b135 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_functions.py @@ -0,0 +1,141 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2019-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import functools +import dill +import sys +dill.settings['recurse'] = True + + +def function_a(a): + return a + + +def function_b(b, b1): + return b + b1 + + +def function_c(c, c1=1): + return c + c1 + + +def function_d(d, d1, d2=1): + """doc string""" + return d + d1 + d2 + +function_d.__module__ = 'a module' + + +exec(''' +def function_e(e, *e1, e2=1, e3=2): + return e + sum(e1) + e2 + e3''') + +globalvar = 0 + +@functools.lru_cache(None) +def function_with_cache(x): + global globalvar + globalvar += x + return globalvar + + +def function_with_unassigned_variable(): + if False: + value = None + return (lambda: value) + + +def test_issue_510(): + # A very bizzare use of functions and methods that pickle doesn't get + # correctly for odd reasons. + class Foo: + def __init__(self): + def f2(self): + return self + self.f2 = f2.__get__(self) + + import dill, pickletools + f = Foo() + f1 = dill.copy(f) + assert f1.f2() is f1 + + +def test_functions(): + dumped_func_a = dill.dumps(function_a) + assert dill.loads(dumped_func_a)(0) == 0 + + dumped_func_b = dill.dumps(function_b) + assert dill.loads(dumped_func_b)(1,2) == 3 + + dumped_func_c = dill.dumps(function_c) + assert dill.loads(dumped_func_c)(1) == 2 + assert dill.loads(dumped_func_c)(1, 2) == 3 + + dumped_func_d = dill.dumps(function_d) + assert dill.loads(dumped_func_d).__doc__ == function_d.__doc__ + assert dill.loads(dumped_func_d).__module__ == function_d.__module__ + assert dill.loads(dumped_func_d)(1, 2) == 4 + assert dill.loads(dumped_func_d)(1, 2, 3) == 6 + assert dill.loads(dumped_func_d)(1, 2, d2=3) == 6 + + function_with_cache(1) + globalvar = 0 + dumped_func_cache = dill.dumps(function_with_cache) + assert function_with_cache(2) == 3 + assert function_with_cache(1) == 1 + assert function_with_cache(3) == 6 + assert function_with_cache(2) == 3 + + empty_cell = function_with_unassigned_variable() + cell_copy = dill.loads(dill.dumps(empty_cell)) + assert 'empty' in str(cell_copy.__closure__[0]) + try: + cell_copy() + except Exception: + # this is good + pass + else: + raise AssertionError('cell_copy() did not read an empty cell') + + exec(''' +dumped_func_e = dill.dumps(function_e) +assert dill.loads(dumped_func_e)(1, 2) == 6 +assert dill.loads(dumped_func_e)(1, 2, 3) == 9 +assert dill.loads(dumped_func_e)(1, 2, e2=3) == 8 +assert dill.loads(dumped_func_e)(1, 2, e2=3, e3=4) == 10 +assert dill.loads(dumped_func_e)(1, 2, 3, e2=4) == 12 +assert dill.loads(dumped_func_e)(1, 2, 3, e2=4, e3=5) == 15''') + +def test_code_object(): + import warnings + from dill._dill import ALL_CODE_PARAMS, CODE_PARAMS, CODE_VERSION, _create_code + code = function_c.__code__ + warnings.filterwarnings('ignore', category=DeprecationWarning) # issue 597 + LNOTAB = getattr(code, 'co_lnotab', b'') + if warnings.filters: del warnings.filters[0] + fields = {f: getattr(code, 'co_'+f) for f in CODE_PARAMS} + fields.setdefault('posonlyargcount', 0) # python >= 3.8 + fields.setdefault('lnotab', LNOTAB) # python <= 3.9 + fields.setdefault('linetable', b'') # python >= 3.10 + fields.setdefault('qualname', fields['name']) # python >= 3.11 + fields.setdefault('exceptiontable', b'') # python >= 3.11 + fields.setdefault('endlinetable', None) # python == 3.11a + fields.setdefault('columntable', None) # python == 3.11a + + for version, _, params in ALL_CODE_PARAMS: + args = tuple(fields[p] for p in params.split()) + try: + _create_code(*args) + if version >= (3,10): + _create_code(fields['lnotab'], *args) + except Exception as error: + raise Exception("failed to construct code object with format version {}".format(version)) from error + +if __name__ == '__main__': + test_functions() + test_issue_510() + test_code_object() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_functors.py b/.venv/lib/python3.12/site-packages/dill/tests/test_functors.py new file mode 100644 index 0000000..8bc4124 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_functors.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import functools +import dill +dill.settings['recurse'] = True + + +def f(a, b, c): # without keywords + pass + + +def g(a, b, c=2): # with keywords + pass + + +def h(a=1, b=2, c=3): # without args + pass + + +def test_functools(): + fp = functools.partial(f, 1, 2) + gp = functools.partial(g, 1, c=2) + hp = functools.partial(h, 1, c=2) + bp = functools.partial(int, base=2) + + assert dill.pickles(fp, safe=True) + assert dill.pickles(gp, safe=True) + assert dill.pickles(hp, safe=True) + assert dill.pickles(bp, safe=True) + + +if __name__ == '__main__': + test_functools() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_logger.py b/.venv/lib/python3.12/site-packages/dill/tests/test_logger.py new file mode 100644 index 0000000..b46a96a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_logger.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python + +# Author: Leonardo Gama (@leogama) +# Copyright (c) 2022-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import logging +import re +import tempfile + +import dill +from dill import detect +from dill.logger import stderr_handler, adapter as logger + +try: + from StringIO import StringIO +except ImportError: + from io import StringIO + +test_obj = {'a': (1, 2), 'b': object(), 'f': lambda x: x**2, 'big': list(range(10))} + +def test_logging(should_trace): + buffer = StringIO() + handler = logging.StreamHandler(buffer) + logger.addHandler(handler) + try: + dill.dumps(test_obj) + if should_trace: + regex = re.compile(r'(\S*┬ \w.*[^)]' # begin pickling object + r'|│*└ # \w.* \[\d+ (\wi)?B])' # object written (with size) + ) + for line in buffer.getvalue().splitlines(): + assert regex.fullmatch(line) + return buffer.getvalue() + else: + assert buffer.getvalue() == "" + finally: + logger.removeHandler(handler) + buffer.close() + +def test_trace_to_file(stream_trace): + file = tempfile.NamedTemporaryFile(mode='r') + with detect.trace(file.name, mode='w'): + dill.dumps(test_obj) + file_trace = file.read() + file.close() + # Apparently, objects can change location in memory... + reghex = re.compile(r'0x[0-9A-Za-z]+') + file_trace, stream_trace = reghex.sub('0x', file_trace), reghex.sub('0x', stream_trace) + # PyPy prints dictionary contents with repr(dict)... + regdict = re.compile(r'(dict\.__repr__ of ).*') + file_trace, stream_trace = regdict.sub(r'\1{}>', file_trace), regdict.sub(r'\1{}>', stream_trace) + assert file_trace == stream_trace + +if __name__ == '__main__': + logger.removeHandler(stderr_handler) + test_logging(should_trace=False) + detect.trace(True) + test_logging(should_trace=True) + detect.trace(False) + test_logging(should_trace=False) + + loglevel = logging.ERROR + logger.setLevel(loglevel) + with detect.trace(): + stream_trace = test_logging(should_trace=True) + test_logging(should_trace=False) + assert logger.getEffectiveLevel() == loglevel + test_trace_to_file(stream_trace) diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_mixins.py b/.venv/lib/python3.12/site-packages/dill/tests/test_mixins.py new file mode 100644 index 0000000..9a54bad --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_mixins.py @@ -0,0 +1,121 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +dill.settings['recurse'] = True + + +def wtf(x,y,z): + def zzz(): + return x + def yyy(): + return y + def xxx(): + return z + return zzz,yyy + + +def quad(a=1, b=1, c=0): + inverted = [False] + def invert(): + inverted[0] = not inverted[0] + def dec(f): + def func(*args, **kwds): + x = f(*args, **kwds) + if inverted[0]: x = -x + return a*x**2 + b*x + c + func.__wrapped__ = f + func.invert = invert + func.inverted = inverted + return func + return dec + + +@quad(a=0,b=2) +def double_add(*args): + return sum(args) + + +fx = sum([1,2,3]) + + +### to make it interesting... +def quad_factory(a=1,b=1,c=0): + def dec(f): + def func(*args,**kwds): + fx = f(*args,**kwds) + return a*fx**2 + b*fx + c + return func + return dec + + +@quad_factory(a=0,b=4,c=0) +def quadish(x): + return x+1 + + +quadratic = quad_factory() + + +def doubler(f): + def inner(*args, **kwds): + fx = f(*args, **kwds) + return 2*fx + return inner + + +@doubler +def quadruple(x): + return 2*x + + +def test_mixins(): + # test mixins + assert double_add(1,2,3) == 2*fx + double_add.invert() + assert double_add(1,2,3) == -2*fx + + _d = dill.copy(double_add) + assert _d(1,2,3) == -2*fx + #_d.invert() #FIXME: fails seemingly randomly + #assert _d(1,2,3) == 2*fx + + assert _d.__wrapped__(1,2,3) == fx + + # XXX: issue or feature? in python3.4, inverted is linked through copy + if not double_add.inverted[0]: + double_add.invert() + + # test some stuff from source and pointers + ds = dill.source + dd = dill.detect + assert ds.getsource(dd.freevars(quadish)['f']) == '@quad_factory(a=0,b=4,c=0)\ndef quadish(x):\n return x+1\n' + assert ds.getsource(dd.freevars(quadruple)['f']) == '@doubler\ndef quadruple(x):\n return 2*x\n' + assert ds.importable(quadish, source=False) == 'from %s import quadish\n' % __name__ + assert ds.importable(quadruple, source=False) == 'from %s import quadruple\n' % __name__ + assert ds.importable(quadratic, source=False) == 'from %s import quadratic\n' % __name__ + assert ds.importable(double_add, source=False) == 'from %s import double_add\n' % __name__ + assert ds.importable(quadruple, source=True) == 'def doubler(f):\n def inner(*args, **kwds):\n fx = f(*args, **kwds)\n return 2*fx\n return inner\n\n@doubler\ndef quadruple(x):\n return 2*x\n' + #***** #FIXME: this needs work + result = ds.importable(quadish, source=True) + a,b,c,_,result = result.split('\n',4) + assert result == 'def quad_factory(a=1,b=1,c=0):\n def dec(f):\n def func(*args,**kwds):\n fx = f(*args,**kwds)\n return a*fx**2 + b*fx + c\n return func\n return dec\n\n@quad_factory(a=0,b=4,c=0)\ndef quadish(x):\n return x+1\n' + assert set([a,b,c]) == set(['a = 0', 'c = 0', 'b = 4']) + result = ds.importable(quadratic, source=True) + a,b,c,result = result.split('\n',3) + assert result == '\ndef dec(f):\n def func(*args,**kwds):\n fx = f(*args,**kwds)\n return a*fx**2 + b*fx + c\n return func\n' + assert set([a,b,c]) == set(['a = 1', 'c = 0', 'b = 1']) + result = ds.importable(double_add, source=True) + a,b,c,d,_,result = result.split('\n',5) + assert result == 'def quad(a=1, b=1, c=0):\n inverted = [False]\n def invert():\n inverted[0] = not inverted[0]\n def dec(f):\n def func(*args, **kwds):\n x = f(*args, **kwds)\n if inverted[0]: x = -x\n return a*x**2 + b*x + c\n func.__wrapped__ = f\n func.invert = invert\n func.inverted = inverted\n return func\n return dec\n\n@quad(a=0,b=2)\ndef double_add(*args):\n return sum(args)\n' + assert set([a,b,c,d]) == set(['a = 0', 'c = 0', 'b = 2', 'inverted = [True]']) + #***** + + +if __name__ == '__main__': + test_mixins() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_module.py b/.venv/lib/python3.12/site-packages/dill/tests/test_module.py new file mode 100644 index 0000000..beec0c6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_module.py @@ -0,0 +1,84 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import sys +import dill +import test_mixins as module +from importlib import reload +dill.settings['recurse'] = True + +cached = (module.__cached__ if hasattr(module, "__cached__") + else module.__file__.split(".", 1)[0] + ".pyc") + +module.a = 1234 + +pik_mod = dill.dumps(module) + +module.a = 0 + +# remove module +del sys.modules[module.__name__] +del module + +module = dill.loads(pik_mod) +def test_attributes(): + #assert hasattr(module, "a") and module.a == 1234 #FIXME: -m dill.tests + assert module.double_add(1, 2, 3) == 2 * module.fx + +# Restart, and test use_diff + +reload(module) + +try: + dill.use_diff() + + module.a = 1234 + + pik_mod = dill.dumps(module) + + module.a = 0 + + # remove module + del sys.modules[module.__name__] + del module + + module = dill.loads(pik_mod) + def test_diff_attributes(): + assert hasattr(module, "a") and module.a == 1234 + assert module.double_add(1, 2, 3) == 2 * module.fx + +except AttributeError: + def test_diff_attributes(): + pass + +# clean up +import os +if os.path.exists(cached): + os.remove(cached) +pycache = os.path.join(os.path.dirname(module.__file__), "__pycache__") +if os.path.exists(pycache) and not os.listdir(pycache): + os.removedirs(pycache) + + +# test when module is None +import math + +def get_lambda(str, **kwarg): + return eval(str, kwarg, None) + +obj = get_lambda('lambda x: math.exp(x)', math=math) + +def test_module_is_none(): + assert obj.__module__ is None + assert dill.copy(obj)(3) == obj(3) + + +if __name__ == '__main__': + test_attributes() + test_diff_attributes() + test_module_is_none() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_moduledict.py b/.venv/lib/python3.12/site-packages/dill/tests/test_moduledict.py new file mode 100644 index 0000000..477ba1b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_moduledict.py @@ -0,0 +1,54 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +dill.settings['recurse'] = True + +def f(func): + def w(*args): + return f(*args) + return w + +@f +def f2(): pass + +# check when __main__ and on import +def test_decorated(): + assert dill.pickles(f2) + + +import doctest +import logging +logging.basicConfig(level=logging.DEBUG) + +class SomeUnreferencedUnpicklableClass(object): + def __reduce__(self): + raise Exception + +unpicklable = SomeUnreferencedUnpicklableClass() + +# This works fine outside of Doctest: +def test_normal(): + serialized = dill.dumps(lambda x: x) + +# should not try to pickle unpicklable object in __globals__ +def tests(): + """ + >>> serialized = dill.dumps(lambda x: x) + """ + return + +#print("\n\nRunning Doctest:") +def test_doctest(): + doctest.testmod() + + +if __name__ == '__main__': + test_decorated() + test_normal() + test_doctest() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_nested.py b/.venv/lib/python3.12/site-packages/dill/tests/test_nested.py new file mode 100644 index 0000000..6fd435c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_nested.py @@ -0,0 +1,135 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +test dill's ability to handle nested functions +""" + +import os +import math + +import dill as pickle +pickle.settings['recurse'] = True + + +# the nested function: pickle should fail here, but dill is ok. +def adder(augend): + zero = [0] + + def inner(addend): + return addend + augend + zero[0] + return inner + + +# rewrite the nested function using a class: standard pickle should work here. +class cadder(object): + def __init__(self, augend): + self.augend = augend + self.zero = [0] + + def __call__(self, addend): + return addend + self.augend + self.zero[0] + + +# rewrite again, but as an old-style class +class c2adder: + def __init__(self, augend): + self.augend = augend + self.zero = [0] + + def __call__(self, addend): + return addend + self.augend + self.zero[0] + + +# some basic class stuff +class basic(object): + pass + + +class basic2: + pass + + +x = 5 +y = 1 + + +def test_basic(): + a = [0, 1, 2] + pa = pickle.dumps(a) + pmath = pickle.dumps(math) #XXX: FAILS in pickle + pmap = pickle.dumps(map) + # ... + la = pickle.loads(pa) + lmath = pickle.loads(pmath) + lmap = pickle.loads(pmap) + assert list(map(math.sin, a)) == list(lmap(lmath.sin, la)) + + +def test_basic_class(): + pbasic2 = pickle.dumps(basic2) + _pbasic2 = pickle.loads(pbasic2)() + pbasic = pickle.dumps(basic) + _pbasic = pickle.loads(pbasic)() + + +def test_c2adder(): + pc2adder = pickle.dumps(c2adder) + pc2add5 = pickle.loads(pc2adder)(x) + assert pc2add5(y) == x+y + + +def test_pickled_cadder(): + pcadder = pickle.dumps(cadder) + pcadd5 = pickle.loads(pcadder)(x) + assert pcadd5(y) == x+y + + +def test_raw_adder_and_inner(): + add5 = adder(x) + assert add5(y) == x+y + + +def test_pickled_adder(): + padder = pickle.dumps(adder) + padd5 = pickle.loads(padder)(x) + assert padd5(y) == x+y + + +def test_pickled_inner(): + add5 = adder(x) + pinner = pickle.dumps(add5) #XXX: FAILS in pickle + p5add = pickle.loads(pinner) + assert p5add(y) == x+y + + +def test_moduledict_where_not_main(): + try: + from . import test_moduledict + except ImportError: + import test_moduledict + name = 'test_moduledict.py' + if os.path.exists(name) and os.path.exists(name+'c'): + os.remove(name+'c') + + if os.path.exists(name) and hasattr(test_moduledict, "__cached__") \ + and os.path.exists(test_moduledict.__cached__): + os.remove(getattr(test_moduledict, "__cached__")) + + if os.path.exists("__pycache__") and not os.listdir("__pycache__"): + os.removedirs("__pycache__") + + +if __name__ == '__main__': + test_basic() + test_basic_class() + test_c2adder() + test_pickled_cadder() + test_raw_adder_and_inner() + test_pickled_adder() + test_pickled_inner() + test_moduledict_where_not_main() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_objects.py b/.venv/lib/python3.12/site-packages/dill/tests/test_objects.py new file mode 100644 index 0000000..d26a7e8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_objects.py @@ -0,0 +1,63 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +demonstrate dill's ability to pickle different python types +test pickling of all Python Standard Library objects (currently: CH 1-14 @ 2.7) +""" + +import dill as pickle +pickle.settings['recurse'] = True +#pickle.detect.trace(True) +#import pickle + +# get all objects for testing +from dill import load_types, objects, extend +load_types(pickleable=True,unpickleable=False) + +# uncomment the next two lines to test cloudpickle +#extend(False) +#import cloudpickle as pickle + +# helper objects +class _class: + def _method(self): + pass + +# objects that *fail* if imported +special = {} +special['LambdaType'] = _lambda = lambda x: lambda y: x +special['MethodType'] = _method = _class()._method +special['UnboundMethodType'] = _class._method +objects.update(special) + +def pickles(name, exact=False, verbose=True): + """quick check if object pickles with dill""" + obj = objects[name] + try: + pik = pickle.loads(pickle.dumps(obj)) + if exact: + try: + assert pik == obj + except AssertionError: + assert type(obj) == type(pik) + if verbose: print ("weak: %s %s" % (name, type(obj))) + else: + assert type(obj) == type(pik) + except Exception: + if verbose: print ("fails: %s %s" % (name, type(obj))) + + +def test_objects(verbose=True): + for member in objects.keys(): + #pickles(member, exact=True, verbose=verbose) + pickles(member, exact=False, verbose=verbose) + +if __name__ == '__main__': + import warnings + warnings.simplefilter('ignore') + test_objects(verbose=False) diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_properties.py b/.venv/lib/python3.12/site-packages/dill/tests/test_properties.py new file mode 100644 index 0000000..b19bce5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_properties.py @@ -0,0 +1,62 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import sys + +import dill +dill.settings['recurse'] = True + + +class Foo(object): + def __init__(self): + self._data = 1 + + def _get_data(self): + return self._data + + def _set_data(self, x): + self._data = x + + data = property(_get_data, _set_data) + + +def test_data_not_none(): + FooS = dill.copy(Foo) + assert FooS.data.fget is not None + assert FooS.data.fset is not None + assert FooS.data.fdel is None + + +def test_data_unchanged(): + FooS = dill.copy(Foo) + try: + res = FooS().data + except Exception: + e = sys.exc_info()[1] + raise AssertionError(str(e)) + else: + assert res == 1 + + +def test_data_changed(): + FooS = dill.copy(Foo) + try: + f = FooS() + f.data = 1024 + res = f.data + except Exception: + e = sys.exc_info()[1] + raise AssertionError(str(e)) + else: + assert res == 1024 + + +if __name__ == '__main__': + test_data_not_none() + test_data_unchanged() + test_data_changed() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_pycapsule.py b/.venv/lib/python3.12/site-packages/dill/tests/test_pycapsule.py new file mode 100644 index 0000000..aa315ba --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_pycapsule.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Author: Anirudh Vegesana (avegesan@cs.stanford.edu) +# Copyright (c) 2022-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +test pickling a PyCapsule object +""" + +import dill +import warnings + +test_pycapsule = None + +if dill._dill._testcapsule is not None: + import ctypes + def test_pycapsule(): + name = ctypes.create_string_buffer(b'dill._testcapsule') + capsule = dill._dill._PyCapsule_New( + ctypes.cast(dill._dill._PyCapsule_New, ctypes.c_void_p), + name, + None + ) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + dill.copy(capsule) + dill._testcapsule = capsule + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + dill.copy(capsule) + dill._testcapsule = None + try: + with warnings.catch_warnings(): + warnings.simplefilter("ignore", dill.PicklingWarning) + dill.copy(capsule) + except dill.UnpicklingError: + pass + else: + raise AssertionError("Expected a different error") + +if __name__ == '__main__': + if test_pycapsule is not None: + test_pycapsule() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_recursive.py b/.venv/lib/python3.12/site-packages/dill/tests/test_recursive.py new file mode 100644 index 0000000..d7542ff --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_recursive.py @@ -0,0 +1,177 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2019-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +from functools import partial +import warnings + + +def copy(obj, byref=False, recurse=False): + if byref: + try: + return dill.copy(obj, byref=byref, recurse=recurse) + except Exception: + pass + else: + raise AssertionError('Copy of %s with byref=True should have given a warning!' % (obj,)) + + warnings.simplefilter('ignore') + val = dill.copy(obj, byref=byref, recurse=recurse) + warnings.simplefilter('error') + return val + else: + return dill.copy(obj, byref=byref, recurse=recurse) + + +class obj1(object): + def __init__(self): + super(obj1, self).__init__() + +class obj2(object): + def __init__(self): + super(obj2, self).__init__() + +class obj3(object): + super_ = super + def __init__(self): + obj3.super_(obj3, self).__init__() + + +def test_super(): + assert copy(obj1(), byref=True) + assert copy(obj1(), byref=True, recurse=True) + assert copy(obj1(), recurse=True) + assert copy(obj1()) + + assert copy(obj2(), byref=True) + assert copy(obj2(), byref=True, recurse=True) + assert copy(obj2(), recurse=True) + assert copy(obj2()) + + assert copy(obj3(), byref=True) + assert copy(obj3(), byref=True, recurse=True) + assert copy(obj3(), recurse=True) + assert copy(obj3()) + + +def get_trigger(model): + pass + +class Machine(object): + def __init__(self): + self.child = Model() + self.trigger = partial(get_trigger, self) + self.child.trigger = partial(get_trigger, self.child) + +class Model(object): + pass + + + +def test_partial(): + assert copy(Machine(), byref=True) + assert copy(Machine(), byref=True, recurse=True) + assert copy(Machine(), recurse=True) + assert copy(Machine()) + + +class Machine2(object): + def __init__(self): + self.go = partial(self.member, self) + def member(self, model): + pass + + +class SubMachine(Machine2): + def __init__(self): + super(SubMachine, self).__init__() + + +def test_partials(): + assert copy(SubMachine(), byref=True) + assert copy(SubMachine(), byref=True, recurse=True) + assert copy(SubMachine(), recurse=True) + assert copy(SubMachine()) + + +class obj4(object): + def __init__(self): + super(obj4, self).__init__() + a = self + class obj5(object): + def __init__(self): + super(obj5, self).__init__() + self.a = a + self.b = obj5() + + +def test_circular_reference(): + assert copy(obj4()) + obj4_copy = dill.loads(dill.dumps(obj4())) + assert type(obj4_copy) is type(obj4_copy).__init__.__closure__[0].cell_contents + assert type(obj4_copy.b) is type(obj4_copy.b).__init__.__closure__[0].cell_contents + + +def f(): + def g(): + return g + return g + + +def test_function_cells(): + assert copy(f()) + + +def fib(n): + assert n >= 0 + if n <= 1: + return n + else: + return fib(n-1) + fib(n-2) + + +def test_recursive_function(): + global fib + fib2 = copy(fib, recurse=True) + fib3 = copy(fib) + fib4 = fib + del fib + assert fib2(5) == 5 + for _fib in (fib3, fib4): + try: + _fib(5) + except Exception: + # This is expected to fail because fib no longer exists + pass + else: + raise AssertionError("Function fib shouldn't have been found") + fib = fib4 + + +def collection_function_recursion(): + d = {} + def g(): + return d + d['g'] = g + return g + + +def test_collection_function_recursion(): + g = copy(collection_function_recursion()) + assert g()['g'] is g + + +if __name__ == '__main__': + with warnings.catch_warnings(): + warnings.simplefilter('error') + test_super() + test_partial() + test_partials() + test_circular_reference() + test_function_cells() + test_recursive_function() + test_collection_function_recursion() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_registered.py b/.venv/lib/python3.12/site-packages/dill/tests/test_registered.py new file mode 100644 index 0000000..92c3703 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_registered.py @@ -0,0 +1,64 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2022-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +test pickling registered objects +""" + +import dill +from dill._objects import failures, registered, succeeds +import warnings +warnings.filterwarnings('ignore') + +def check(d, ok=True): + res = [] + for k,v in d.items(): + try: + z = dill.copy(v) + if ok: res.append(k) + except: + if not ok: res.append(k) + return res + +fails = check(failures) +try: + assert not bool(fails) +except AssertionError as e: + print("FAILS: %s" % fails) + raise e from None + +register = check(registered, ok=False) +try: + assert not bool(register) +except AssertionError as e: + print("REGISTER: %s" % register) + raise e from None + +success = check(succeeds, ok=False) +try: + assert not bool(success) +except AssertionError as e: + print("SUCCESS: %s" % success) + raise e from None + +import builtins +import types +q = dill._dill._reverse_typemap +p = {k:v for k,v in q.items() if k not in vars(builtins) and k not in vars(types)} + +diff = set(p.keys()).difference(registered.keys()) +try: + assert not bool(diff) +except AssertionError as e: + print("DIFF: %s" % diff) + raise e from None + +miss = set(registered.keys()).difference(p.keys()) +try: + assert not bool(miss) +except AssertionError as e: + print("MISS: %s" % miss) + raise e from None diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_restricted.py b/.venv/lib/python3.12/site-packages/dill/tests/test_restricted.py new file mode 100644 index 0000000..ea4857b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_restricted.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +# +# Author: Kirill Makhonin (@kirillmakhonin) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill + +class RestrictedType: + def __bool__(*args, **kwargs): + raise Exception('Restricted function') + + __eq__ = __lt__ = __le__ = __ne__ = __gt__ = __ge__ = __hash__ = __bool__ + +glob_obj = RestrictedType() + +def restricted_func(): + a = glob_obj + +def test_function_with_restricted_object(): + deserialized = dill.loads(dill.dumps(restricted_func, recurse=True)) + + +if __name__ == '__main__': + test_function_with_restricted_object() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_selected.py b/.venv/lib/python3.12/site-packages/dill/tests/test_selected.py new file mode 100644 index 0000000..ea0fafa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_selected.py @@ -0,0 +1,126 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +testing some selected object types +""" + +import dill +dill.settings['recurse'] = True + +verbose = False + +def test_dict_contents(): + c = type.__dict__ + for i,j in c.items(): + #try: + ok = dill.pickles(j) + #except Exception: + # print ("FAIL: %s with %s" % (i, dill.detect.errors(j))) + if verbose: print ("%s: %s, %s" % (ok, type(j), j)) + assert ok + if verbose: print ("") + +def _g(x): yield x; + +def _f(): + try: raise + except Exception: + from sys import exc_info + e, er, tb = exc_info() + return er, tb + +class _d(object): + def _method(self): + pass + +from dill import objects +from dill import load_types +load_types(pickleable=True,unpickleable=False) +_newclass = objects['ClassObjectType'] +# some clean-up #FIXME: should happen internal to dill +objects['TemporaryFileType'].close() +objects['TextWrapperType'].close() +if 'BufferedRandomType' in objects: + objects['BufferedRandomType'].close() +objects['BufferedReaderType'].close() +objects['BufferedWriterType'].close() +objects['FileType'].close() +del objects + +# getset_descriptor for new-style classes (fails on '_method', if not __main__) +def test_class_descriptors(): + d = _d.__dict__ + for i in d.values(): + ok = dill.pickles(i) + if verbose: print ("%s: %s, %s" % (ok, type(i), i)) + assert ok + if verbose: print ("") + od = _newclass.__dict__ + for i in od.values(): + ok = dill.pickles(i) + if verbose: print ("%s: %s, %s" % (ok, type(i), i)) + assert ok + if verbose: print ("") + +# (__main__) class instance for new-style classes +def test_class(): + o = _d() + oo = _newclass() + ok = dill.pickles(o) + if verbose: print ("%s: %s, %s" % (ok, type(o), o)) + assert ok + ok = dill.pickles(oo) + if verbose: print ("%s: %s, %s" % (ok, type(oo), oo)) + assert ok + if verbose: print ("") + +# frames, generators, and tracebacks (all depend on frame) +def test_frame_related(): + g = _g(1) + f = g.gi_frame + e,t = _f() + _is = lambda ok: ok + ok = dill.pickles(f) + if verbose: print ("%s: %s, %s" % (ok, type(f), f)) + assert not ok + ok = dill.pickles(g) + if verbose: print ("%s: %s, %s" % (ok, type(g), g)) + assert _is(not ok) #XXX: dill fails + ok = dill.pickles(t) + if verbose: print ("%s: %s, %s" % (ok, type(t), t)) + assert not ok #XXX: dill fails + ok = dill.pickles(e) + if verbose: print ("%s: %s, %s" % (ok, type(e), e)) + assert ok + if verbose: print ("") + +def test_typing(): + import typing + x = typing.Any + assert x == dill.copy(x) + x = typing.Dict[int, str] + assert x == dill.copy(x) + x = typing.List[int] + assert x == dill.copy(x) + x = typing.Tuple[int, str] + assert x == dill.copy(x) + x = typing.Tuple[int] + assert x == dill.copy(x) + x = typing.Tuple[()] + assert x == dill.copy(x) + x = typing.Tuple[()].copy_with(()) + assert x == dill.copy(x) + return + + +if __name__ == '__main__': + test_frame_related() + test_dict_contents() + test_class() + test_class_descriptors() + test_typing() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_session.py b/.venv/lib/python3.12/site-packages/dill/tests/test_session.py new file mode 100644 index 0000000..891eaf8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_session.py @@ -0,0 +1,280 @@ +#!/usr/bin/env python + +# Author: Leonardo Gama (@leogama) +# Copyright (c) 2022-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import atexit +import os +import sys +import __main__ +from contextlib import suppress +from io import BytesIO + +import dill + +session_file = os.path.join(os.path.dirname(__file__), 'session-refimported-%s.pkl') + +################### +# Child process # +################### + +def _error_line(error, obj, refimported): + import traceback + line = traceback.format_exc().splitlines()[-2].replace('[obj]', '['+repr(obj)+']') + return "while testing (with refimported=%s): %s" % (refimported, line.lstrip()) + +if __name__ == '__main__' and len(sys.argv) >= 3 and sys.argv[1] == '--child': + # Test session loading in a fresh interpreter session. + refimported = (sys.argv[2] == 'True') + dill.load_module(session_file % refimported, module='__main__') + + def test_modules(refimported): + # FIXME: In this test setting with CPython 3.7, 'calendar' is not included + # in sys.modules, independent of the value of refimported. Tried to + # run garbage collection just before loading the session with no luck. It + # fails even when preceding them with 'import calendar'. Needed to run + # these kinds of tests in a supbrocess. Failing test sample: + # assert globals()['day_name'] is sys.modules['calendar'].__dict__['day_name'] + try: + for obj in ('json', 'url', 'local_mod', 'sax', 'dom'): + assert globals()[obj].__name__ in sys.modules + assert 'calendar' in sys.modules and 'cmath' in sys.modules + import calendar, cmath + + for obj in ('Calendar', 'isleap'): + assert globals()[obj] is sys.modules['calendar'].__dict__[obj] + assert __main__.day_name.__module__ == 'calendar' + if refimported: + assert __main__.day_name is calendar.day_name + + assert __main__.complex_log is cmath.log + + except AssertionError as error: + error.args = (_error_line(error, obj, refimported),) + raise + + test_modules(refimported) + sys.exit() + +#################### +# Parent process # +#################### + +# Create various kinds of objects to test different internal logics. + +## Modules. +import json # top-level module +import urllib as url # top-level module under alias +from xml import sax # submodule +import xml.dom.minidom as dom # submodule under alias +import test_dictviews as local_mod # non-builtin top-level module + +## Imported objects. +from calendar import Calendar, isleap, day_name # class, function, other object +from cmath import log as complex_log # imported with alias + +## Local objects. +x = 17 +empty = None +names = ['Alice', 'Bob', 'Carol'] +def squared(x): return x**2 +cubed = lambda x: x**3 +class Person: + def __init__(self, name, age): + self.name = name + self.age = age +person = Person(names[0], x) +class CalendarSubclass(Calendar): + def weekdays(self): + return [day_name[i] for i in self.iterweekdays()] +cal = CalendarSubclass() +selfref = __main__ + +# Setup global namespace for session saving tests. +class TestNamespace: + test_globals = globals().copy() + def __init__(self, **extra): + self.extra = extra + def __enter__(self): + self.backup = globals().copy() + globals().clear() + globals().update(self.test_globals) + globals().update(self.extra) + return self + def __exit__(self, *exc_info): + globals().clear() + globals().update(self.backup) + +def _clean_up_cache(module): + cached = module.__file__.split('.', 1)[0] + '.pyc' + cached = module.__cached__ if hasattr(module, '__cached__') else cached + pycache = os.path.join(os.path.dirname(module.__file__), '__pycache__') + for remove, file in [(os.remove, cached), (os.removedirs, pycache)]: + with suppress(OSError): + remove(file) + +atexit.register(_clean_up_cache, local_mod) + +def _test_objects(main, globals_copy, refimported): + try: + main_dict = __main__.__dict__ + global Person, person, Calendar, CalendarSubclass, cal, selfref + + for obj in ('json', 'url', 'local_mod', 'sax', 'dom'): + assert globals()[obj].__name__ == globals_copy[obj].__name__ + + for obj in ('x', 'empty', 'names'): + assert main_dict[obj] == globals_copy[obj] + + for obj in ['squared', 'cubed']: + assert main_dict[obj].__globals__ is main_dict + assert main_dict[obj](3) == globals_copy[obj](3) + + assert Person.__module__ == __main__.__name__ + assert isinstance(person, Person) + assert person.age == globals_copy['person'].age + + assert issubclass(CalendarSubclass, Calendar) + assert isinstance(cal, CalendarSubclass) + assert cal.weekdays() == globals_copy['cal'].weekdays() + + assert selfref is __main__ + + except AssertionError as error: + error.args = (_error_line(error, obj, refimported),) + raise + +def test_session_main(refimported): + """test dump/load_module() for __main__, both in this process and in a subprocess""" + extra_objects = {} + if refimported: + # Test unpickleable imported object in main. + from sys import flags + extra_objects['flags'] = flags + + with TestNamespace(**extra_objects) as ns: + try: + # Test session loading in a new session. + dill.dump_module(session_file % refimported, refimported=refimported) + from dill.tests.__main__ import python, shell, sp + error = sp.call([python, __file__, '--child', str(refimported)], shell=shell) + if error: sys.exit(error) + finally: + with suppress(OSError): + os.remove(session_file % refimported) + + # Test session loading in the same session. + session_buffer = BytesIO() + dill.dump_module(session_buffer, refimported=refimported) + session_buffer.seek(0) + dill.load_module(session_buffer, module='__main__') + ns.backup['_test_objects'](__main__, ns.backup, refimported) + +def test_session_other(): + """test dump/load_module() for a module other than __main__""" + import test_classdef as module + atexit.register(_clean_up_cache, module) + module.selfref = module + dict_objects = [obj for obj in module.__dict__.keys() if not obj.startswith('__')] + + session_buffer = BytesIO() + dill.dump_module(session_buffer, module) + + for obj in dict_objects: + del module.__dict__[obj] + + session_buffer.seek(0) + dill.load_module(session_buffer, module) + + assert all(obj in module.__dict__ for obj in dict_objects) + assert module.selfref is module + +def test_runtime_module(): + from types import ModuleType + modname = '__runtime__' + runtime = ModuleType(modname) + runtime.x = 42 + + mod = dill.session._stash_modules(runtime) + if mod is not runtime: + print("There are objects to save by referenece that shouldn't be:", + mod.__dill_imported, mod.__dill_imported_as, mod.__dill_imported_top_level, + file=sys.stderr) + + # This is also for code coverage, tests the use case of dump_module(refimported=True) + # without imported objects in the namespace. It's a contrived example because + # even dill can't be in it. This should work after fixing #462. + session_buffer = BytesIO() + dill.dump_module(session_buffer, module=runtime, refimported=True) + session_dump = session_buffer.getvalue() + + # Pass a new runtime created module with the same name. + runtime = ModuleType(modname) # empty + return_val = dill.load_module(BytesIO(session_dump), module=runtime) + assert return_val is None + assert runtime.__name__ == modname + assert runtime.x == 42 + assert runtime not in sys.modules.values() + + # Pass nothing as main. load_module() must create it. + session_buffer.seek(0) + runtime = dill.load_module(BytesIO(session_dump)) + assert runtime.__name__ == modname + assert runtime.x == 42 + assert runtime not in sys.modules.values() + +def test_refimported_imported_as(): + import collections + import concurrent.futures + import types + import typing + mod = sys.modules['__test__'] = types.ModuleType('__test__') + dill.executor = concurrent.futures.ThreadPoolExecutor(max_workers=1) + mod.Dict = collections.UserDict # select by type + mod.AsyncCM = typing.AsyncContextManager # select by __module__ + mod.thread_exec = dill.executor # select by __module__ with regex + + session_buffer = BytesIO() + dill.dump_module(session_buffer, mod, refimported=True) + session_buffer.seek(0) + mod = dill.load(session_buffer) + del sys.modules['__test__'] + + assert set(mod.__dill_imported_as) == { + ('collections', 'UserDict', 'Dict'), + ('typing', 'AsyncContextManager', 'AsyncCM'), + ('dill', 'executor', 'thread_exec'), + } + +def test_load_module_asdict(): + with TestNamespace(): + session_buffer = BytesIO() + dill.dump_module(session_buffer) + + global empty, names, x, y + x = y = 0 # change x and create y + del empty + globals_state = globals().copy() + + session_buffer.seek(0) + main_vars = dill.load_module_asdict(session_buffer) + + assert main_vars is not globals() + assert globals() == globals_state + + assert main_vars['__name__'] == '__main__' + assert main_vars['names'] == names + assert main_vars['names'] is not names + assert main_vars['x'] != x + assert 'y' not in main_vars + assert 'empty' in main_vars + +if __name__ == '__main__': + test_session_main(refimported=False) + test_session_main(refimported=True) + test_session_other() + test_runtime_module() + test_refimported_imported_as() + test_load_module_asdict() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_source.py b/.venv/lib/python3.12/site-packages/dill/tests/test_source.py new file mode 100644 index 0000000..12b4519 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_source.py @@ -0,0 +1,173 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +from dill.source import getsource, getname, _wrap, getimport +from dill.source import importable +from dill._dill import IS_PYPY + +import sys +PY310b = 0x30a00b1 + +f = lambda x: x**2 +def g(x): return f(x) - x + +def h(x): + def g(x): return x + return g(x) - x + +class Foo(object): + def bar(self, x): + return x*x+x +_foo = Foo() + +def add(x,y): + return x+y + +# yes, same as 'f', but things are tricky when it comes to pointers +squared = lambda x:x**2 + +class Bar: + pass +_bar = Bar() + + # inspect.getsourcelines # dill.source.getblocks +def test_getsource(): + assert getsource(f) == 'f = lambda x: x**2\n' + assert getsource(g) == 'def g(x): return f(x) - x\n' + assert getsource(h) == 'def h(x):\n def g(x): return x\n return g(x) - x\n' + assert getname(f) == 'f' + assert getname(g) == 'g' + assert getname(h) == 'h' + assert _wrap(f)(4) == 16 + assert _wrap(g)(4) == 12 + assert _wrap(h)(4) == 0 + + assert getname(Foo) == 'Foo' + assert getname(Bar) == 'Bar' + assert getsource(Bar) == 'class Bar:\n pass\n' + assert getsource(Foo) == 'class Foo(object):\n def bar(self, x):\n return x*x+x\n' + #XXX: add getsource for _foo, _bar + +# test itself +def test_itself(): + assert getimport(getimport)=='from dill.source import getimport\n' + +# builtin functions and objects +def test_builtin(): + assert getimport(pow) == 'pow\n' + assert getimport(100) == '100\n' + assert getimport(True) == 'True\n' + assert getimport(pow, builtin=True) == 'from builtins import pow\n' + assert getimport(100, builtin=True) == '100\n' + assert getimport(True, builtin=True) == 'True\n' + # this is kinda BS... you can't import a None + assert getimport(None) == 'None\n' + assert getimport(None, builtin=True) == 'None\n' + + +# other imported functions +def test_imported(): + from math import sin + assert getimport(sin) == 'from math import sin\n' + +# interactively defined functions +def test_dynamic(): + assert getimport(add) == 'from %s import add\n' % __name__ + # interactive lambdas + assert getimport(squared) == 'from %s import squared\n' % __name__ + +# classes and class instances +def test_classes(): + from io import BytesIO as StringIO + y = "from _io import BytesIO\n" + x = y if (IS_PYPY or sys.hexversion >= PY310b) else "from io import BytesIO\n" + s = StringIO() + + assert getimport(StringIO) == x + assert getimport(s) == y + # interactively defined classes and class instances + assert getimport(Foo) == 'from %s import Foo\n' % __name__ + assert getimport(_foo) == 'from %s import Foo\n' % __name__ + + +# test importable +def test_importable(): + assert importable(add, source=False) == 'from %s import add\n' % __name__ + assert importable(squared, source=False) == 'from %s import squared\n' % __name__ + assert importable(Foo, source=False) == 'from %s import Foo\n' % __name__ + assert importable(Foo.bar, source=False) == 'from %s import bar\n' % __name__ + assert importable(_foo.bar, source=False) == 'from %s import bar\n' % __name__ + assert importable(None, source=False) == 'None\n' + assert importable(100, source=False) == '100\n' + + assert importable(add, source=True) == 'def add(x,y):\n return x+y\n' + assert importable(squared, source=True) == 'squared = lambda x:x**2\n' + assert importable(None, source=True) == 'None\n' + assert importable(Bar, source=True) == 'class Bar:\n pass\n' + assert importable(Foo, source=True) == 'class Foo(object):\n def bar(self, x):\n return x*x+x\n' + assert importable(Foo.bar, source=True) == 'def bar(self, x):\n return x*x+x\n' + assert importable(Foo.bar, source=False) == 'from %s import bar\n' % __name__ + assert importable(Foo.bar, alias='memo', source=False) == 'from %s import bar as memo\n' % __name__ + assert importable(Foo, alias='memo', source=False) == 'from %s import Foo as memo\n' % __name__ + assert importable(squared, alias='memo', source=False) == 'from %s import squared as memo\n' % __name__ + assert importable(squared, alias='memo', source=True) == 'memo = squared = lambda x:x**2\n' + assert importable(add, alias='memo', source=True) == 'def add(x,y):\n return x+y\n\nmemo = add\n' + assert importable(None, alias='memo', source=True) == 'memo = None\n' + assert importable(100, alias='memo', source=True) == 'memo = 100\n' + assert importable(add, builtin=True, source=False) == 'from %s import add\n' % __name__ + assert importable(squared, builtin=True, source=False) == 'from %s import squared\n' % __name__ + assert importable(Foo, builtin=True, source=False) == 'from %s import Foo\n' % __name__ + assert importable(Foo.bar, builtin=True, source=False) == 'from %s import bar\n' % __name__ + assert importable(_foo.bar, builtin=True, source=False) == 'from %s import bar\n' % __name__ + assert importable(None, builtin=True, source=False) == 'None\n' + assert importable(100, builtin=True, source=False) == '100\n' + + +def test_numpy(): + try: + import numpy as np + y = np.array + x = y([1,2,3]) + assert importable(x, source=False) == 'from numpy import array\narray([1, 2, 3])\n' + assert importable(y, source=False) == 'from %s import array\n' % y.__module__ + assert importable(x, source=True) == 'from numpy import array\narray([1, 2, 3])\n' + assert importable(y, source=True) == 'from %s import array\n' % y.__module__ + y = np.int64 + x = y(0) + assert importable(x, source=False) == 'from numpy import int64\nint64(0)\n' + assert importable(y, source=False) == 'from %s import int64\n' % y.__module__ + assert importable(x, source=True) == 'from numpy import int64\nint64(0)\n' + assert importable(y, source=True) == 'from %s import int64\n' % y.__module__ + y = np.bool_ + x = y(0) + import warnings + with warnings.catch_warnings(): + warnings.filterwarnings('ignore', category=FutureWarning) + warnings.filterwarnings('ignore', category=DeprecationWarning) + if hasattr(np, 'bool'): b = 'bool_' if np.bool is bool else 'bool' + else: b = 'bool_' + assert importable(x, source=False) == 'from numpy import %s\n%s(False)\n' % (b,b) + assert importable(y, source=False) == 'from %s import %s\n' % (y.__module__,b) + assert importable(x, source=True) == 'from numpy import %s\n%s(False)\n' % (b,b) + assert importable(y, source=True) == 'from %s import %s\n' % (y.__module__,b) + except ImportError: pass + +#NOTE: if before getimport(pow), will cause pow to throw AssertionError +def test_foo(): + assert importable(_foo, source=True).startswith("import dill\nclass Foo(object):\n def bar(self, x):\n return x*x+x\ndill.loads(") + +if __name__ == '__main__': + test_getsource() + test_itself() + test_builtin() + test_imported() + test_dynamic() + test_classes() + test_importable() + test_numpy() + test_foo() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_sources.py b/.venv/lib/python3.12/site-packages/dill/tests/test_sources.py new file mode 100644 index 0000000..478b967 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_sources.py @@ -0,0 +1,190 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @uqfoundation) +# Copyright (c) 2024-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE +""" +check that dill.source performs as expected with changes to locals in 3.13.0b1 +see: https://github.com/python/cpython/issues/118888 +""" +# repeat functions from test_source.py +f = lambda x: x**2 +def g(x): return f(x) - x + +def h(x): + def g(x): return x + return g(x) - x + +class Foo(object): + def bar(self, x): + return x*x+x +_foo = Foo() + +def add(x,y): + return x+y + +squared = lambda x:x**2 + +class Bar: + pass +_bar = Bar() + +# repeat, but from test_source.py +import test_source as ts + +# test objects created in other test modules +import test_mixins as tm + +import dill.source as ds + + +def test_isfrommain(): + assert ds.isfrommain(add) == True + assert ds.isfrommain(squared) == True + assert ds.isfrommain(Bar) == True + assert ds.isfrommain(_bar) == True + assert ds.isfrommain(ts.add) == False + assert ds.isfrommain(ts.squared) == False + assert ds.isfrommain(ts.Bar) == False + assert ds.isfrommain(ts._bar) == False + assert ds.isfrommain(tm.quad) == False + assert ds.isfrommain(tm.double_add) == False + assert ds.isfrommain(tm.quadratic) == False + assert ds.isdynamic(add) == False + assert ds.isdynamic(squared) == False + assert ds.isdynamic(ts.add) == False + assert ds.isdynamic(ts.squared) == False + assert ds.isdynamic(tm.double_add) == False + assert ds.isdynamic(tm.quadratic) == False + + +def test_matchlambda(): + assert ds._matchlambda(f, 'f = lambda x: x**2\n') + assert ds._matchlambda(squared, 'squared = lambda x:x**2\n') + assert ds._matchlambda(ts.f, 'f = lambda x: x**2\n') + assert ds._matchlambda(ts.squared, 'squared = lambda x:x**2\n') + + +def test_findsource(): + lines, lineno = ds.findsource(add) + assert lines[lineno] == 'def add(x,y):\n' + lines, lineno = ds.findsource(ts.add) + assert lines[lineno] == 'def add(x,y):\n' + lines, lineno = ds.findsource(squared) + assert lines[lineno] == 'squared = lambda x:x**2\n' + lines, lineno = ds.findsource(ts.squared) + assert lines[lineno] == 'squared = lambda x:x**2\n' + lines, lineno = ds.findsource(Bar) + assert lines[lineno] == 'class Bar:\n' + lines, lineno = ds.findsource(ts.Bar) + assert lines[lineno] == 'class Bar:\n' + lines, lineno = ds.findsource(_bar) + assert lines[lineno] == 'class Bar:\n' + lines, lineno = ds.findsource(ts._bar) + assert lines[lineno] == 'class Bar:\n' + lines, lineno = ds.findsource(tm.quad) + assert lines[lineno] == 'def quad(a=1, b=1, c=0):\n' + lines, lineno = ds.findsource(tm.double_add) + assert lines[lineno] == ' def func(*args, **kwds):\n' + lines, lineno = ds.findsource(tm.quadratic) + assert lines[lineno] == ' def dec(f):\n' + + +def test_getsourcelines(): + assert ''.join(ds.getsourcelines(add)[0]) == 'def add(x,y):\n return x+y\n' + assert ''.join(ds.getsourcelines(ts.add)[0]) == 'def add(x,y):\n return x+y\n' + assert ''.join(ds.getsourcelines(squared)[0]) == 'squared = lambda x:x**2\n' + assert ''.join(ds.getsourcelines(ts.squared)[0]) == 'squared = lambda x:x**2\n' + assert ''.join(ds.getsourcelines(Bar)[0]) == 'class Bar:\n pass\n' + assert ''.join(ds.getsourcelines(ts.Bar)[0]) == 'class Bar:\n pass\n' + assert ''.join(ds.getsourcelines(_bar)[0]) == 'class Bar:\n pass\n' #XXX: ? + assert ''.join(ds.getsourcelines(ts._bar)[0]) == 'class Bar:\n pass\n' #XXX: ? + assert ''.join(ds.getsourcelines(tm.quad)[0]) == 'def quad(a=1, b=1, c=0):\n inverted = [False]\n def invert():\n inverted[0] = not inverted[0]\n def dec(f):\n def func(*args, **kwds):\n x = f(*args, **kwds)\n if inverted[0]: x = -x\n return a*x**2 + b*x + c\n func.__wrapped__ = f\n func.invert = invert\n func.inverted = inverted\n return func\n return dec\n' + assert ''.join(ds.getsourcelines(tm.quadratic)[0]) == ' def dec(f):\n def func(*args,**kwds):\n fx = f(*args,**kwds)\n return a*fx**2 + b*fx + c\n return func\n' + assert ''.join(ds.getsourcelines(tm.quadratic, lstrip=True)[0]) == 'def dec(f):\n def func(*args,**kwds):\n fx = f(*args,**kwds)\n return a*fx**2 + b*fx + c\n return func\n' + assert ''.join(ds.getsourcelines(tm.quadratic, enclosing=True)[0]) == 'def quad_factory(a=1,b=1,c=0):\n def dec(f):\n def func(*args,**kwds):\n fx = f(*args,**kwds)\n return a*fx**2 + b*fx + c\n return func\n return dec\n' + assert ''.join(ds.getsourcelines(tm.double_add)[0]) == ' def func(*args, **kwds):\n x = f(*args, **kwds)\n if inverted[0]: x = -x\n return a*x**2 + b*x + c\n' + assert ''.join(ds.getsourcelines(tm.double_add, enclosing=True)[0]) == 'def quad(a=1, b=1, c=0):\n inverted = [False]\n def invert():\n inverted[0] = not inverted[0]\n def dec(f):\n def func(*args, **kwds):\n x = f(*args, **kwds)\n if inverted[0]: x = -x\n return a*x**2 + b*x + c\n func.__wrapped__ = f\n func.invert = invert\n func.inverted = inverted\n return func\n return dec\n' + + +def test_indent(): + assert ds.outdent(''.join(ds.getsourcelines(tm.quadratic)[0])) == ''.join(ds.getsourcelines(tm.quadratic, lstrip=True)[0]) + assert ds.indent(''.join(ds.getsourcelines(tm.quadratic, lstrip=True)[0]), 2) == ''.join(ds.getsourcelines(tm.quadratic)[0]) + + +def test_dumpsource(): + local = {} + exec(ds.dumpsource(add, alias='raw'), {}, local) + exec(ds.dumpsource(ts.add, alias='mod'), {}, local) + assert local['raw'](1,2) == local['mod'](1,2) + exec(ds.dumpsource(squared, alias='raw'), {}, local) + exec(ds.dumpsource(ts.squared, alias='mod'), {}, local) + assert local['raw'](3) == local['mod'](3) + assert ds._wrap(add)(1,2) == ds._wrap(ts.add)(1,2) + assert ds._wrap(squared)(3) == ds._wrap(ts.squared)(3) + + +def test_name(): + assert ds._namespace(add) == ds.getname(add, fqn=True).split('.') + assert ds._namespace(ts.add) == ds.getname(ts.add, fqn=True).split('.') + assert ds._namespace(squared) == ds.getname(squared, fqn=True).split('.') + assert ds._namespace(ts.squared) == ds.getname(ts.squared, fqn=True).split('.') + assert ds._namespace(Bar) == ds.getname(Bar, fqn=True).split('.') + assert ds._namespace(ts.Bar) == ds.getname(ts.Bar, fqn=True).split('.') + assert ds._namespace(tm.quad) == ds.getname(tm.quad, fqn=True).split('.') + #XXX: the following also works, however behavior may be wrong for nested functions + #assert ds._namespace(tm.double_add) == ds.getname(tm.double_add, fqn=True).split('.') + #assert ds._namespace(tm.quadratic) == ds.getname(tm.quadratic, fqn=True).split('.') + assert ds.getname(add) == 'add' + assert ds.getname(ts.add) == 'add' + assert ds.getname(squared) == 'squared' + assert ds.getname(ts.squared) == 'squared' + assert ds.getname(Bar) == 'Bar' + assert ds.getname(ts.Bar) == 'Bar' + assert ds.getname(tm.quad) == 'quad' + assert ds.getname(tm.double_add) == 'func' #XXX: ? + assert ds.getname(tm.quadratic) == 'dec' #XXX: ? + + +def test_getimport(): + local = {} + exec(ds.getimport(add, alias='raw'), {}, local) + exec(ds.getimport(ts.add, alias='mod'), {}, local) + assert local['raw'](1,2) == local['mod'](1,2) + exec(ds.getimport(squared, alias='raw'), {}, local) + exec(ds.getimport(ts.squared, alias='mod'), {}, local) + assert local['raw'](3) == local['mod'](3) + exec(ds.getimport(Bar, alias='raw'), {}, local) + exec(ds.getimport(ts.Bar, alias='mod'), {}, local) + assert ds.getname(local['raw']) == ds.getname(local['mod']) + exec(ds.getimport(tm.quad, alias='mod'), {}, local) + assert local['mod']()(sum)([1,2,3]) == tm.quad()(sum)([1,2,3]) + #FIXME: wrong results for nested functions (e.g. tm.double_add, tm.quadratic) + + +def test_importable(): + assert ds.importable(add, source=False) == ds.getimport(add) + assert ds.importable(add) == ds.getsource(add) + assert ds.importable(squared, source=False) == ds.getimport(squared) + assert ds.importable(squared) == ds.getsource(squared) + assert ds.importable(Bar, source=False) == ds.getimport(Bar) + assert ds.importable(Bar) == ds.getsource(Bar) + assert ds.importable(ts.add) == ds.getimport(ts.add) + assert ds.importable(ts.add, source=True) == ds.getsource(ts.add) + assert ds.importable(ts.squared) == ds.getimport(ts.squared) + assert ds.importable(ts.squared, source=True) == ds.getsource(ts.squared) + assert ds.importable(ts.Bar) == ds.getimport(ts.Bar) + assert ds.importable(ts.Bar, source=True) == ds.getsource(ts.Bar) + + +if __name__ == '__main__': + test_isfrommain() + test_matchlambda() + test_findsource() + test_getsourcelines() + test_indent() + test_dumpsource() + test_name() + test_getimport() + test_importable() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_temp.py b/.venv/lib/python3.12/site-packages/dill/tests/test_temp.py new file mode 100644 index 0000000..e9201f4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_temp.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import sys +from dill.temp import dump, dump_source, dumpIO, dumpIO_source +from dill.temp import load, load_source, loadIO, loadIO_source +WINDOWS = sys.platform[:3] == 'win' + + +f = lambda x: x**2 +x = [1,2,3,4,5] + +# source code to tempfile +def test_code_to_tempfile(): + if not WINDOWS: #see: https://bugs.python.org/issue14243 + pyfile = dump_source(f, alias='_f') + _f = load_source(pyfile) + assert _f(4) == f(4) + +# source code to stream +def test_code_to_stream(): + pyfile = dumpIO_source(f, alias='_f') + _f = loadIO_source(pyfile) + assert _f(4) == f(4) + +# pickle to tempfile +def test_pickle_to_tempfile(): + if not WINDOWS: #see: https://bugs.python.org/issue14243 + dumpfile = dump(x) + _x = load(dumpfile) + assert _x == x + +# pickle to stream +def test_pickle_to_stream(): + dumpfile = dumpIO(x) + _x = loadIO(dumpfile) + assert _x == x + +### now testing the objects ### +f = lambda x: x**2 +def g(x): return f(x) - x + +def h(x): + def g(x): return x + return g(x) - x + +class Foo(object): + def bar(self, x): + return x*x+x +_foo = Foo() + +def add(x,y): + return x+y + +# yes, same as 'f', but things are tricky when it comes to pointers +squared = lambda x:x**2 + +class Bar: + pass +_bar = Bar() + + +# test function-type objects that take 2 args +def test_two_arg_functions(): + for obj in [add]: + pyfile = dumpIO_source(obj, alias='_obj') + _obj = loadIO_source(pyfile) + assert _obj(4,2) == obj(4,2) + +# test function-type objects that take 1 arg +def test_one_arg_functions(): + for obj in [g, h, squared]: + pyfile = dumpIO_source(obj, alias='_obj') + _obj = loadIO_source(pyfile) + assert _obj(4) == obj(4) + +# test instance-type objects +#for obj in [_bar, _foo]: +# pyfile = dumpIO_source(obj, alias='_obj') +# _obj = loadIO_source(pyfile) +# assert type(_obj) == type(obj) + +# test the rest of the objects +def test_the_rest(): + for obj in [Bar, Foo, Foo.bar, _foo.bar]: + pyfile = dumpIO_source(obj, alias='_obj') + _obj = loadIO_source(pyfile) + assert _obj.__name__ == obj.__name__ + + +if __name__ == '__main__': + test_code_to_tempfile() + test_code_to_stream() + test_pickle_to_tempfile() + test_pickle_to_stream() + test_two_arg_functions() + test_one_arg_functions() + test_the_rest() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_threads.py b/.venv/lib/python3.12/site-packages/dill/tests/test_threads.py new file mode 100644 index 0000000..debc5e1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_threads.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2024-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +dill.settings['recurse'] = True + + +def test_new_thread(): + import threading + t = threading.Thread() + t_ = dill.copy(t) + assert t.is_alive() == t_.is_alive() + for i in ['daemon','name','ident','native_id']: + if hasattr(t, i): + assert getattr(t, i) == getattr(t_, i) + +def test_run_thread(): + import threading + t = threading.Thread() + t.start() + t_ = dill.copy(t) + assert t.is_alive() == t_.is_alive() + for i in ['daemon','name','ident','native_id']: + if hasattr(t, i): + assert getattr(t, i) == getattr(t_, i) + +def test_join_thread(): + import threading + t = threading.Thread() + t.start() + t.join() + t_ = dill.copy(t) + assert t.is_alive() == t_.is_alive() + for i in ['daemon','name','ident','native_id']: + if hasattr(t, i): + assert getattr(t, i) == getattr(t_, i) + + +if __name__ == '__main__': + test_new_thread() + test_run_thread() + test_join_thread() diff --git a/.venv/lib/python3.12/site-packages/dill/tests/test_weakref.py b/.venv/lib/python3.12/site-packages/dill/tests/test_weakref.py new file mode 100644 index 0000000..378a21a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/dill/tests/test_weakref.py @@ -0,0 +1,72 @@ +#!/usr/bin/env python +# +# Author: Mike McKerns (mmckerns @caltech and @uqfoundation) +# Copyright (c) 2008-2016 California Institute of Technology. +# Copyright (c) 2016-2025 The Uncertainty Quantification Foundation. +# License: 3-clause BSD. The full license text is available at: +# - https://github.com/uqfoundation/dill/blob/master/LICENSE + +import dill +dill.settings['recurse'] = True +import weakref + +class _class: + def _method(self): + pass + +class _callable_class: + def __call__(self): + pass + +def _function(): + pass + + +def test_weakref(): + o = _class() + oc = _callable_class() + f = _function + x = _class + + # ReferenceType + r = weakref.ref(o) + d_r = weakref.ref(_class()) + fr = weakref.ref(f) + xr = weakref.ref(x) + + # ProxyType + p = weakref.proxy(o) + d_p = weakref.proxy(_class()) + + # CallableProxyType + cp = weakref.proxy(oc) + d_cp = weakref.proxy(_callable_class()) + fp = weakref.proxy(f) + xp = weakref.proxy(x) + + objlist = [r,d_r,fr,xr, p,d_p, cp,d_cp,fp,xp] + #dill.detect.trace(True) + + for obj in objlist: + res = dill.detect.errors(obj) + if res: + print ("%r:\n %s" % (obj, res)) + # else: + # print ("PASS: %s" % obj) + assert not res + +def test_dictproxy(): + from dill._dill import DictProxyType + try: + m = DictProxyType({"foo": "bar"}) + except Exception: + m = type.__dict__ + mp = dill.copy(m) + assert mp.items() == m.items() + + +if __name__ == '__main__': + test_weakref() + from dill._dill import IS_PYPY + if not IS_PYPY: + test_dictproxy() diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/LICENSE new file mode 100644 index 0000000..e5e3d6f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/LICENSE @@ -0,0 +1,22 @@ +== Flake8 License (MIT) == + +Copyright (C) 2011-2013 Tarek Ziade +Copyright (C) 2012-2016 Ian Cordasco + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/METADATA b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/METADATA new file mode 100644 index 0000000..cad1a45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/METADATA @@ -0,0 +1,119 @@ +Metadata-Version: 2.1 +Name: flake8 +Version: 7.3.0 +Summary: the modular source code checker: pep8 pyflakes and co +Home-page: https://github.com/pycqa/flake8 +Author: Tarek Ziade +Author-email: tarek@ziade.org +Maintainer: Ian Stapleton Cordasco +Maintainer-email: graffatcolmingov@gmail.com +License: MIT +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Console +Classifier: Framework :: Flake8 +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Software Development :: Quality Assurance +Requires-Python: >=3.9 +Description-Content-Type: text/x-rst +License-File: LICENSE +Requires-Dist: mccabe<0.8.0,>=0.7.0 +Requires-Dist: pycodestyle<2.15.0,>=2.14.0 +Requires-Dist: pyflakes<3.5.0,>=3.4.0 + +.. image:: https://github.com/PyCQA/flake8/workflows/main/badge.svg + :target: https://github.com/PyCQA/flake8/actions?query=workflow%3Amain + :alt: build status + +.. image:: https://results.pre-commit.ci/badge/github/PyCQA/flake8/main.svg + :target: https://results.pre-commit.ci/latest/github/PyCQA/flake8/main + :alt: pre-commit.ci status + +.. image:: https://img.shields.io/discord/825463413634891776.svg + :target: https://discord.gg/qYxpadCgkx + :alt: Discord + +======== + Flake8 +======== + +Flake8 is a wrapper around these tools: + +- PyFlakes +- pycodestyle +- Ned Batchelder's McCabe script + +Flake8 runs all the tools by launching the single ``flake8`` command. +It displays the warnings in a per-file, merged output. + +It also adds a few features: + +- files that contain this line are skipped:: + + # flake8: noqa + +- lines that contain a ``# noqa`` comment at the end will not issue warnings. +- you can ignore specific errors on a line with ``# noqa: ``, e.g., + ``# noqa: E234``. Multiple codes can be given, separated by comma. The ``noqa`` token is case insensitive, the colon before the list of codes is required otherwise the part after ``noqa`` is ignored +- Git and Mercurial hooks +- extendable through ``flake8.extension`` and ``flake8.formatting`` entry + points + + +Quickstart +========== + +See our `quickstart documentation +`_ for how to install +and get started with Flake8. + + +Frequently Asked Questions +========================== + +Flake8 maintains an `FAQ `_ in its +documentation. + + +Questions or Feedback +===================== + +If you have questions you'd like to ask the developers, or feedback you'd like +to provide, feel free to use the mailing list: code-quality@python.org + +We would love to hear from you. Additionally, if you have a feature you'd like +to suggest, the mailing list would be the best place for it. + + +Links +===== + +* `Flake8 Documentation `_ + +* `GitHub Project `_ + +* `All (Open and Closed) Issues + `_ + +* `Code-Quality Archives + `_ + +* `Code of Conduct + `_ + +* `Getting Started Contributing + `_ + + +Maintenance +=========== + +Flake8 was created by Tarek Ziadé and is currently maintained by `anthony sottile +`_ and `Ian Cordasco +`_ diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/RECORD b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/RECORD new file mode 100644 index 0000000..674f2c0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/RECORD @@ -0,0 +1,75 @@ +../../../bin/flake8,sha256=avsk_V4NHOHYG4E_irpp1jk6DK8Zp_MJfUbWnX2lY_Y,228 +flake8-7.3.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +flake8-7.3.0.dist-info/LICENSE,sha256=5G355Zzr--CxRJLlzeNB6OxC0lKpm2pYP8RgiGOl2r4,1172 +flake8-7.3.0.dist-info/METADATA,sha256=wuYh3RXlnqyIobVsLw2lvTKNXZV57AIdcCYGYoHMQdQ,3805 +flake8-7.3.0.dist-info/RECORD,, +flake8-7.3.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +flake8-7.3.0.dist-info/WHEEL,sha256=qUzzGenXXuJTzyjFah76kDVqDvnk-YDzY00svnrl84w,109 +flake8-7.3.0.dist-info/entry_points.txt,sha256=DL_4PPVWWudFtPjS-7AX_wtyFGt0Y9VN0KvNjCejS7s,422 +flake8-7.3.0.dist-info/top_level.txt,sha256=6Tlo_i7chAhjqQkybdwPfClaqi0-dkJh_2o1PSn1aBM,7 +flake8/__init__.py,sha256=oSIIIRdtdw4u8BDJxdkzW4sVgB2UIXqQ19tYIUP07Ks,1943 +flake8/__main__.py,sha256=lkxpQWWXjApgesUxZVYW3xTGTT9u0lj2DpFeQO1-dWs,178 +flake8/__pycache__/__init__.cpython-312.pyc,, +flake8/__pycache__/__main__.cpython-312.pyc,, +flake8/__pycache__/_compat.cpython-312.pyc,, +flake8/__pycache__/checker.cpython-312.pyc,, +flake8/__pycache__/defaults.cpython-312.pyc,, +flake8/__pycache__/discover_files.cpython-312.pyc,, +flake8/__pycache__/exceptions.cpython-312.pyc,, +flake8/__pycache__/processor.cpython-312.pyc,, +flake8/__pycache__/statistics.cpython-312.pyc,, +flake8/__pycache__/style_guide.cpython-312.pyc,, +flake8/__pycache__/utils.cpython-312.pyc,, +flake8/__pycache__/violation.cpython-312.pyc,, +flake8/_compat.py,sha256=1D_azjYP3Bulb4qt8BHRnzPo-VjvMx81jLc7CZ8Ey0o,597 +flake8/api/__init__.py,sha256=xgaqH5ehF5EeZ6I35bP5uj9OzASv9a4AcFNHxB4oXuQ,241 +flake8/api/__pycache__/__init__.cpython-312.pyc,, +flake8/api/__pycache__/legacy.cpython-312.pyc,, +flake8/api/legacy.py,sha256=U2czkZScuVhnMJ9MzDBlng4qfg9LGsEI0vjosXvrXPY,6898 +flake8/checker.py,sha256=DvYImOnKzCSYcQG0iu8Jy5W_OXhvitFNsaUHygxCNZI,22779 +flake8/defaults.py,sha256=al0IFZ6rOdIva_XgueGGGqdMaf9fTtHwlY3dsAd_2Fo,1109 +flake8/discover_files.py,sha256=VaJ3ysdbUhPH1m3g5i1Vn08SzIPKnzs8_t25zL_V3F4,2575 +flake8/exceptions.py,sha256=klokjovJklHojNwn-NFTlMp_PEVLMAYXzc9umIQ-bI8,2393 +flake8/formatting/__init__.py,sha256=GeU-7Iwf3TnGHiGdt3ksVMbbs6a6xa2f3k9wkqY-6WA,97 +flake8/formatting/__pycache__/__init__.cpython-312.pyc,, +flake8/formatting/__pycache__/_windows_color.cpython-312.pyc,, +flake8/formatting/__pycache__/base.cpython-312.pyc,, +flake8/formatting/__pycache__/default.cpython-312.pyc,, +flake8/formatting/_windows_color.py,sha256=Z0z0fsKONjmb9Z15D8BCdBGm9nJ5amfvCBdsy1FVO1s,2022 +flake8/formatting/base.py,sha256=CdEVQBWYpEyV9NxarXFvcMpopmADT4LMv2dWlmPwSwU,7356 +flake8/formatting/default.py,sha256=ubZCBQswdz-cq661BMzHRCIU5yGpeGo_5kKqmhqPVXs,3057 +flake8/main/__init__.py,sha256=mr4YPJVODVERm_0nz7smskE1RuVopp1LS7N-BFVGwuk,98 +flake8/main/__pycache__/__init__.cpython-312.pyc,, +flake8/main/__pycache__/application.cpython-312.pyc,, +flake8/main/__pycache__/cli.cpython-312.pyc,, +flake8/main/__pycache__/debug.cpython-312.pyc,, +flake8/main/__pycache__/options.cpython-312.pyc,, +flake8/main/application.py,sha256=yyn8DGJiKg_9ZDfNn2Fo6njQCnWbracl_U3ICbgFRN4,7958 +flake8/main/cli.py,sha256=L8KfBy5AKgAi37IIao2BMd37GfSjpttj2KN1iZJ3T70,608 +flake8/main/debug.py,sha256=Wcn1ENm_xrCopsv8_w744kt-5wcA5czo4kyW18MBjrw,911 +flake8/main/options.py,sha256=Dl-7_GubDoeGj1UNb5KDZk4qwTpDpN-etp-Z3U9mp00,11008 +flake8/options/__init__.py,sha256=cpxQPjG8gcBygJ4CB8bRgDhShPncwOT5Zq535479B00,496 +flake8/options/__pycache__/__init__.cpython-312.pyc,, +flake8/options/__pycache__/aggregator.cpython-312.pyc,, +flake8/options/__pycache__/config.cpython-312.pyc,, +flake8/options/__pycache__/manager.cpython-312.pyc,, +flake8/options/__pycache__/parse_args.cpython-312.pyc,, +flake8/options/aggregator.py,sha256=aSBpKP8J0KmqsoylKE-fG709zEkQA2sIZ66sT3OUgww,1972 +flake8/options/config.py,sha256=Oj-OO89ZbNQtFUHcHDZ24xeIT2gTfAXrcut2cneVhz4,4572 +flake8/options/manager.py,sha256=xd4xoHJurOxr_nlni3UqW5V9Uf7xcixnik1-k4E9Npo,11534 +flake8/options/parse_args.py,sha256=BDZopPAGcSterch6zZLkP_Z48u0OzYQ9wGZcqaxwR1k,2171 +flake8/plugins/__init__.py,sha256=9EaF2MX-tp9U9byByvmF05RsggH041H6yPH31Q4O-lc,92 +flake8/plugins/__pycache__/__init__.cpython-312.pyc,, +flake8/plugins/__pycache__/finder.cpython-312.pyc,, +flake8/plugins/__pycache__/pycodestyle.cpython-312.pyc,, +flake8/plugins/__pycache__/pyflakes.cpython-312.pyc,, +flake8/plugins/__pycache__/reporter.cpython-312.pyc,, +flake8/plugins/finder.py,sha256=HPvXPWOh0RHtiMR6X0Lx9Od7WQUjZr0jfdId2ejThDY,11124 +flake8/plugins/pycodestyle.py,sha256=XSCIhIrpTZy9qm_7iVi2a1IW2su8zmABz9To4Z87UgQ,5665 +flake8/plugins/pyflakes.py,sha256=DGCSL5hOQVOLk4IedrWdmXccBbGxeu-i74BSmTij7PU,3893 +flake8/plugins/reporter.py,sha256=0jr3UKehzAakdX9sx-Z8t0hAcKPGtTTwNh4hdijKqgE,1241 +flake8/processor.py,sha256=tBTyhj4GNCFcYlt39s94yQQRZH68lF4ex2FTKAcwlFc,16856 +flake8/statistics.py,sha256=wf7j0j0Ve5UPNBlMCdmJuIQKl0ZHU5y86tOET19AX10,4355 +flake8/style_guide.py,sha256=MytZ0QnWQ9AQ80EerDG6_x0sbL6RJ5HAbsaLVYZrbA0,14346 +flake8/utils.py,sha256=0LsB48sRgGlsJKcm5qJB2HI1DO3pHprmmemxRnjAGAs,8173 +flake8/violation.py,sha256=qyoU_lxzh3lXQW-gZUHTEiySIOrRqKD4iZlQsaQBj1E,2035 diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/REQUESTED b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/WHEEL new file mode 100644 index 0000000..de294b9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: setuptools (74.1.2) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/entry_points.txt new file mode 100644 index 0000000..9365984 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/entry_points.txt @@ -0,0 +1,13 @@ +[console_scripts] +flake8 = flake8.main.cli:main + +[flake8.extension] +E = flake8.plugins.pycodestyle:pycodestyle_logical +F = flake8.plugins.pyflakes:FlakesChecker +W = flake8.plugins.pycodestyle:pycodestyle_physical + +[flake8.report] +default = flake8.formatting.default:Default +pylint = flake8.formatting.default:Pylint +quiet-filename = flake8.formatting.default:FilenameOnly +quiet-nothing = flake8.formatting.default:Nothing diff --git a/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/top_level.txt new file mode 100644 index 0000000..3930480 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8-7.3.0.dist-info/top_level.txt @@ -0,0 +1 @@ +flake8 diff --git a/.venv/lib/python3.12/site-packages/flake8/__init__.py b/.venv/lib/python3.12/site-packages/flake8/__init__.py new file mode 100644 index 0000000..db29166 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/__init__.py @@ -0,0 +1,70 @@ +"""Top-level module for Flake8. + +This module + +- initializes logging for the command-line tool +- tracks the version of the package +- provides a way to configure logging for the command-line tool + +.. autofunction:: flake8.configure_logging + +""" +from __future__ import annotations + +import logging +import sys + +LOG = logging.getLogger(__name__) +LOG.addHandler(logging.NullHandler()) + +__version__ = "7.3.0" +__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit()) + +_VERBOSITY_TO_LOG_LEVEL = { + # output more than warnings but not debugging info + 1: logging.INFO, # INFO is a numerical level of 20 + # output debugging information + 2: logging.DEBUG, # DEBUG is a numerical level of 10 +} + +LOG_FORMAT = ( + "%(name)-25s %(processName)-11s %(relativeCreated)6d " + "%(levelname)-8s %(message)s" +) + + +def configure_logging( + verbosity: int, + filename: str | None = None, + logformat: str = LOG_FORMAT, +) -> None: + """Configure logging for flake8. + + :param verbosity: + How verbose to be in logging information. + :param filename: + Name of the file to append log information to. + If ``None`` this will log to ``sys.stderr``. + If the name is "stdout" or "stderr" this will log to the appropriate + stream. + """ + if verbosity <= 0: + return + + verbosity = min(verbosity, max(_VERBOSITY_TO_LOG_LEVEL)) + log_level = _VERBOSITY_TO_LOG_LEVEL[verbosity] + + if not filename or filename in ("stderr", "stdout"): + fileobj = getattr(sys, filename or "stderr") + handler_cls: type[logging.Handler] = logging.StreamHandler + else: + fileobj = filename + handler_cls = logging.FileHandler + + handler = handler_cls(fileobj) + handler.setFormatter(logging.Formatter(logformat)) + LOG.addHandler(handler) + LOG.setLevel(log_level) + LOG.debug( + "Added a %s logging handler to logger root at %s", filename, __name__ + ) diff --git a/.venv/lib/python3.12/site-packages/flake8/__main__.py b/.venv/lib/python3.12/site-packages/flake8/__main__.py new file mode 100644 index 0000000..8f7e7c9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/__main__.py @@ -0,0 +1,7 @@ +"""Module allowing for ``python -m flake8 ...``.""" +from __future__ import annotations + +from flake8.main.cli import main + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e05b091483ca94bbff7375abc6e4b6d81dd1661f GIT binary patch literal 2760 zcma)8O>7&-6`t8${w-sQl4AYXX}qB#SQ~(3Y{#*z7%3!2a)_!T8mmD|pk1xBLu%#a zE-|~5L}6J-K>)iz4m#C32xyNkjG_f{$uR|5^w5hL3Xr<>K|y+`fgTvR0a{<$H%l(5 zR62A7&b)a)-@cvq=3D*w+&K}!xX%A)^ej}4Qrf%%UprO zOy&)~!27FE5I98mH6JYiXs;yv7~ zj&J>A(W;~kvQ7-CY-v@4NJWcEbB214OlCxJaaFfF22o5)x~V(5YUo?UmJF*@(#?|Z z@2nDO#VVIoQ%f7VNhHUz4DffTx^mB!n0cL0TenQfD*D?B7}OF0p9;0sbqxSjX+y0+ zBp{hZy;P;-|9FO&$w+F|v5Hl5#R2@ODXG{_zKf!CG8M&V?5Jey#Z}X^9F_Uo3tOQZ znQNIhS2~sUPg8(-3?ck{5rpp{3_awcpGXMRv5VJEdiw6DTQ3`b^0LEsl*q+F{eOWU zVvIgX38;pC!*5_2FUXu1(QQpH>5j+irUQE}^QMP&n}c{sdhyfjhDGn$a8kt1-knX) zPtROW-(_j9q;FdqQKn7RsM)%m&8!o1J!|O8*-Fh>wajaoD_66&?vQlnnC)!)P_l}` zN~kEAO6^7LR*9HovqImctoP5u&t@(5cl57q^u!(a3JxEgpTK*`3H$M0JQJzpa7N@4j~6By%c55VVGDuXGO*(AkxSJ%0W>cpxi>hVNZKh~gUObPM95 z-r+l}i2ewQ@R(%@qmFtu7qOdI=Uq$%7ieJ}(Qyapq&*z=y8dwSCbk)M2wfDx=~Bkp zOMzc+t%uA37uQdEC3@CCs)sn_hFl@Yu^x8AXAzAP4ebVi#@DB(n2nFx+L|uQ$37ooE%njP^8;uUhK|&6-5cgR7Is~nX$#P z1sz4@r6u4mAjJ*cF#HIJUs|$jcE)xzLg~`dw}Ke;u>>RtNr8t| zby5;AER(@IbsCICKtj~2P#rEw_x)`LE={=&PFW{21_`%e{1u>SALzHT)0##!NtMQX zEWHZUY!J%cmeC9-EkGmZ4j&*R4f z7hpg1ox>ryF(f~Tf0-EFyWC8qw(lGX@k3#xA&l$~ACA7!7=7c>&F1L!1L5tbLgfC! z&cg1E1K}c*=Xd6JM>}$ECwCOR`Pt+je)J8`g~HDvWh6(b1Pf)1Nne9$ON8E$T#2K{?}!()r#4T*#?b4C00CiUFUxWY5Iz8rX&0!d%`9y*E4a!#i}4VTr8k z=JFqWe|pg`$FC8cU=Ly?dl9|W{zv6qItg1w{r0CYwRnv2*PMujZ-x*a`wAugip1ma z@OJ4iJlqHm??s#8*S7g1#NSWsB%bu89&8-;r5b&yX5Z@vX#6;Femnk`!4de#J-T=( zPc`JJ&#pD)?;ecgn}hi$DA|glXy1Kz$32cD?$>wfU&lfhxhH72mBgV`i$^%#N}^Y! nqw|+qkrWOe^$oOmSdSAUtq`oOFiH;k761y1|BQjof2schy#BQO literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c687b77816de0bb5bf4fd17061b37290352b39e0 GIT binary patch literal 442 zcmXv~ze~eF7`K^)u)-MZ+Vu^$}Y`{2Fr-S?gg1p~;cXg}R2*+12=EIk2mek{QQa6kh% z&`B}qr5Y)yu*Nh`Z|D%vw4?X70q_ecKr`~`lm9Ifn1CA?rAwKybt;?zqb6ZYj9lI^ z+rl@S&3+Vi1vf3vY%|iMdnQ7t*+kz;TY_<(a4td;x`GFC)IH+zIES(77@w80aTa4o zv@nhhjN5~7;8To!O{(LyWFt~s)MBo$&QfAdJV}a;dK84zt6jU{BbY10#iczGelO^g z77grr%{r+bR;;@6Z&^pep}5Kkivl;W(U9_?&D<+HxuA@8cJ06osU^id(vkYa-d=td z^`k{@-}_79z+aViDxg4S2WA?Ca0<%rVCxH*A6ou){HkqCjrF_p`-?ZD_@WnQ8qhcW H6-oXD&BT3& literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/_compat.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32a56e934a8ca55378c7961e15b97d8c3addc964 GIT binary patch literal 763 zcmbtSzi-n(6u$E%uA4Lk<;PM10}_>7HL;+I#DI`O6HrCtp$Ur%vP^uTt{pq_IVomJ z*G}D7VdQUNAuNdwAyw*>4XIm~@-E1zmBPf6?%jRgeeZqur2Cr7We`M_TphfU5IPqi z3BV%og@O_Kh-_qI5B0Etu{cYfWJvR!7=%iP${+RhY!ml2Lg52S4(Be{?+`N5z^~lo z1TtjcR~PV0zHF!7VU~{Kl-)-=0f*X3B=h`>52~4yJ2JIJg0oLg9 zjdm1-F6&zz%CuIayjy!#Ew{udo$_{IQ?uq&MYS;BQqPKGK*I z(J~af);p;0dX`HcYi1|t^{uGVk1v%cy}%xL^l4ZEH~2ey<=IyCTdF#0LORty O?f*~p=l!q%&-o4HC%10^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/checker.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/checker.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3214a0273133cf195e69fce5699e7352b542ff9d GIT binary patch literal 24917 zcmb_^32+-%dS*9n5RHrAeW`hhpm>Oqtjm&Y-KGx8mNcFbePAF0q9}m?-2g2SAsyM{ zBxF_-QIpAv+HuO%#8sx&p0#Exsc5pv#`4tcrYfl|LZkvr552`yCbjWaZ51SHcN}?Z zv)}*v07yY{DoIOx{rdIm_g=q#|Nnpg@$i>UXAy_v8RI{m{pwpB_qTMR9X2JyFS`sJ zca8f77vlQ35Fau`_#s1|fv3DNV(c@rv#HO-&gMQdJ6rlJ>}>6`v9rC;&dx=BMeOY8 zbKq=>2t&?3Cu_@$ysOW}@|K8u$kXRxc`NeXJ}=ALBE>_#J|D~5kuT{hVfiBDOZ!S$ z-hq5sUm42_k@BI6z6zFiB4628$?~p9)lhX`HOsprHAA(1wJh(6)D5laTf_2RZH-($SE%?_Q_J*4)F-d34l+s_{S_2ohoO@B3x%@Qj|A<$v``W_h zb1&!LQ}So|zV?tW+z~3-fr3yea%GeYo6f!Zcx^kE`xg>JYG?OdoaREK9btte{>twGr{qeg#o zvT5(xaR2$RBpwY$g9A7Rqajf%>yHHE@o>EJ3+l|z%Z^|)8cPHdgRyA57uWWK;b>S2 zCSnpUY$w8RjD(~8VdRawqoY)GY?$f>Ba{z?&jd#zi8%5_;fwuYc8jj;!&0n29FMbB z%p-}x2$ebyoH%*Br}tps#L3;qPg23jRRu!$;xI-V7!D@RvQ~$KQal_8N&|FdQ(uDe z!jV`o6b`)@85tOi;@W#6F&YUU92pFS)z_9hcthC{7#a=?vs&>-#b}7N*x4H#3de_o z{b8j-Oc{B<`VnYuI1~OFIgVf6fXrcz2ceB|V|>3M$OUJ`|=W(6*zJ2taZ**bLsF@b=F`s zH~+%sToTH!SARKi_438z+f zjMFIoRrEg2j~mALb1v;}?mT9|$2JB{r_i4EX{B=9_uFJkd~g6?MYf#iIoQ*CQnun8 z=sDP%`{J^l7TJDDib;|i56L$5o5cM_*@Tt&rc{AqiMUf7Gl!KRN>!{Pt=YloU_!$B z<95^iZz8$GJ+yIV$8Q~d`{?&uu611P_@L~=x*K&1ruA8q*}U_YHsAMOxoZ=@Ty&H? z;0)%Si`C6Dq50}{DO<&ab*enm*p_bGm}=a3>zi{nal-MvSF&c*dKCAf?LQQD^V}W2 zWp|tLj-N-m;@g^0gMHgW$mD<9F)pEhzl8p+KIT87_rY<_s+{vvjT@c-P4wP0%C<9u zk#H1Km75N~Np>7SsY>s8b6O;gL<4Ld<2QMU)^MB_nmTb-nmE*u+E8|kZq_2X#4S3? zGTzD$p8ZqDL!&{k{11!g?Q`FW(Chn_QGx5HL_5?M;+Ka}a*YdfeLTdgA;k9?^I0zC zL(Y%^Y}XWWg^W0xL++3XXG_QvGUIFwc|#VQZMbj6*^aXf=OUc#I6H7I!dbxCfwOZ| z@E6Ngm45|~VmiU|hjSBpexx4>69et|oCX8czhlqvIk7Tnq>M&x#78VYO&- zJBy02w#1WX2je2+|Kf$gNJKmx79}u2F#f^QkuZCj`Z*JeL}C{PqXXNO$2!D);Y3&( z!h(zrJT{Wp8Swz)IPGG%bD&dwMikq`eKGMuSR9Fm#qC3}(DrW+K~fB=ase%UTf}HF zpuvPV5)Hl?9E=1piszI*bI%7y60srTgn0K+F%<3xgBN2_Hje1X&}oP_4B=etbX-it zSZ`=HG#H`^?5*j|F$hUS*Kg9piL=3k+D(Ue0L{{Cod)})27)504hAFQh2SVPoExu5 zGl}7zp|`>s!@N`dsM^V~6O7U^qmf`DjP7Gkcx`P`k4Xc;=wMQtQ+x@Mq|_(-gxc4Q zvsvs9M#TXsHZsiKJ2sLS9!aPjCt?F(ysIMRhrs*A*a+r?Rl$6zUoMUr>|{^$>tu@M ztrNBlR0R3Pk8uHw4scb7IirTo+Q$sI(iymg#4cN7o0ijGuu?O52%V036Os9sVG+OJF z=&iw~%xqOWaz3b^TFr71s5&u7-z_d%0j?q=p|I=e|6@O!08!jIpKAQ&xW8Zmupup&O{8;wV2|@_xkm+MU2 zRI{ueF2rF1#&f#)%r?!{N^~CjSnHY z#AU>$4}}{7z=eGupAu>&c2B%9)wWpMoUVN)Rr|~Xj(6_kr|cO|$u;*?_l$ks(>8nV zc4ew_Z_2ZG!P9o%NENb1dOU04?9MChN%ypM-X?yqch>ZY>!xeIX-mqsWx*ysz7Xg& z*g|MxtSS#*>I?`q)B}@V;KLXCWZH+2%5n(uoI`6TcMkDdO`uD#y@Kr*U{m9KVQeXt z0=*LQV#m2+Etfmza1vT5%av=n6NGUInzI8K*T{1~ss;_I`i;HG*G@v9cXTlEs3;vI za-r~v{jnh^SxoR>7)+cM<0Hevkx`OHgHZ?G#m+2Z{ZM=ud*ddoH7p8iq<=8O;w{9dy_VyG+C^#XPv8l2j%g%kN`!yIKi8C ztVuc6%$R6Fr^U@Far1&>%c9`Ea(MD^*1&srJ~SGguB?qKDP3~=u8d8NrQKr6El!xg z*#ys(9lyN;s*-_Gyu2cd z#b5a-P9OSCqi>Iq`^;$H<2HWg;*s`aW$OpA3%1e~0E)Gy-^yjiVcQuujTykqz~ofYcq9CnbOKk-MXxkTl?HHXI<;M&sm*#upw(i1KDEE(=umk zew?4_g6%TnXAm7sbQS*Eg}!D&hfRg}T8>}gORK_$f3oQRWpjv2LaKEq+81n+c>U3-qi^O)WbTe*D5O#igL@uVR^>NY!2SABO@ z*Km0Rs~p{&?-8fv95kxT@%>aL3xP137pR0z1pPq1XI-%I)EON>k9@n5Jr)@ zz{S&}3}A{1A?9_nT?!{gq-cD*UX>o%Eha|5KDF^DVCRdF%EuH9I%Cx9aEXHqF^87i`aDnp!_Ra^uJY&SY;( z3F5>HQv=g)WCY)pBa=to`&PPkeX4f-E$^+}^R=5Njw}dUGTzd(w?5^qPkXyl-tJqi z^WJCggXtgPGahkfU%F{)s%h)(ich!9HyuuS4$pbSUqKWc;g^KU_fE`||KQb>;GaC2 zwWGUi5$CO&Thle?UO#7B|0^q1%d(~(#R*${W-HsX-Tc{h^IoHU1xltVVIsqWkF(N1 zQ%FZD3|}-7BJxYY>E#Uc!LDat1^$SF1x*#z5E0zhymI2;%OXoTPnhnOu+A|R+R z40C@Z77vq>I|v0vF;9Rw`i%-RFj4!mgVF%28Cq!@703XnjXYVRlYCz39rP9dDhs^Rh`6Z(QOlxOW3g?XK4r56A@lhuXRsIsy; zrDinR3xUDb(OO*OR;tuWm!vOiN&x}P6-q$}1v#aFR*=%}J*s#V2}Fd4tF3>(_j>RD zaat>i0OP%tfbY%~@=0@MxM-_FYVnqSs(O#*Ct9^%3IF@5B4}^S($yWmDsBYJK9aI?v9vseJ)( zS6JH4J>?rwja5#Qb&vzPN_$S{%DL7Cd%4|pnckk$4GQT<4NI(m$iBMKPd&+}0 z3_&q_H4Ls{SZfEM4dzV27tSiyPuN@WU2~1VQk&y&Ix2!~`0)pZsH(cqH1o44_MD*x zb(=S1oGTg?`-8A6$HgESiD9}P5?jdv-mZ7HeJ~y$32*;)clVZW`!Oc^K>z<~-S;7}{Z)rg0F!8W|>2Gf*MT9T~ZkYxV~vOwJo4FsolU z3%I4fgz^F~K`P9f0GL8e5y}yT$lk-@(bKV@6zb7hm-f@m1C-Fxk?pMcm(V)AF9hE5 zy)Q=0SJIKkk(a2#AQD1gR{J4715J8#a&)@;x5q#5&7A!3^&79x*KfM@#@+g@V0>v$ zeacgR&(pZ17?AFH>c3oci)3y(#H*_LT*ZzBVdr9TO}e-xRopVS_J#T4o;jfhz8q9~ z6epkWJ6m=;xIghAx#QTh`?)7@#}^qD=D8Ym4u~eyBd0`x5{RnV@pag!5HbSo6+lsi z?AlMLS-`4|n)JG>4k%y5X>e#9BA@3be9AqbDDq0P1ML*Ta+n`FaJPW*NyAwA*os-s zfB!@xD8al$?q@O@G5dHPId3P~Jp}9l2meZKU%$P~e6V^bdsz1e1A5ja4rWlmM z{Y3qVm`-M-2y7n$7uf#ox3tAaeh|e?7?$GS&Jj}5eKg31#hS-GGU2na$i>WT6$lN+ zha=fXFzLspnBMMTr9#>RlrT*Kw z`j6b~i@$=W+KCgt=6A`q09!JF09-i%_&Y~n^$N&BAn?XWFhYw7SJprv6zdNJq-W8V zG7Ds`R5aos<#b*wNpzW{WDLnoj=i*E;_RSOO1^==co@mM+=?!SRTkbVamk$GLB+a5rjp>mfD|5py22!`YNhDZVIIu|F<(Y0m#}(4DdcKI zk#aBxE6UZY74B2!hE!)0QD&Nhl%A(H*#Tzk(DJ#nHYccQ(MnlQIv@9oA{} zIqvPVh06;Y5CVGJPk2ffG`SwMaS9MBIrr-dK~!K|1;vj#hv>V2SPhxURX1uHHTf;c znpLh`V(FS1ta>nv(gxI*)>G1ryse zNDo*1Y-}WgU^XQd4iZMWM&M9P3M0F(0xUcM*+%@NDCLf^dhAS;@Nr_t~_K||z()MBWMl{`WFx7H!zNKfbp@+)X zEUw>pYu_LD{4ns$7v|Tam~`s7n)bUwN7l*-El-g%BHrX0r~qFWxz)!HxZj5b z7c$2Gq8in4HXIo~GZI0>!|9O$gai)2q&W-%g|YxQS1j6@^yJMNqie~JW*?J7VC3{9 z{Nt;pSt)I%X{NOendGgXY5K6^M#s#WId}J*t^4uUA<)d2!6GuG^Zj$&mY4#atkH~m zXb6nC0d*pP8*npe*@f5ySc)NJ$P0thU7Cf0-+sV>Y4Dh6qlPERP#%J<;4OYsJzvP_ za;9F{w13HfH6HuzC_+P^L3-!|8}{dU9cmu~N!Yk7V_*uCg0|0?Un zBaf7DNPj!`v3>VC;~%x}ZZY0zF(ccrYX}$wu}Ajhmym%N;4hWJt%4!0KJZP9+P750 z5l#8Jf6lEUwc@+#q9E7K+ckyD3)ut4bd7!797RkUoIM3uXrc83k%EW_I2X-l%$jaN zjv5f6Il1Au>Mw~ZeiG73f#{gy7`iAl?0h!^845dlAMv7e3h%)dir*re0lfzkvh{2* z4!EuIRA)5yMvyrb1Bh=^keMYoJd7|H)qxH)V|tSL?vnQqDQ5Z4v4^4bspoePqKq2q zRsQK*{xVf>z+7E`#bB|hJ&Yst(Le!Vgt1p0A?qLv)*tX=#t-=4!D4_BDW4s+jGGd8 zALS^7JJ4z&<<1`~S=-bwl) zC4WH4Boe=qksrGym%_=1So9D@+$%vIM09cyQ`#w(FfO}xgER+Ek0iqTS!gqfI9XH% zbey&e#4&ZL(+B%C`z=gUqY-Mg5~5=rIq~`!~NJY z5Q`o_P-s}Aa@nFxhHTfzh9c@9E*pYj*$Pt{#l@|rdD#xLlwu1=mad?Dt@tnz|KDPK z5a}>by*2sPoZCNV+p5To1>4rF!D@HG&42CntFNa^x1~zAWjtkywQ6SDve8iHnmCYk z38>?%o!WeD`_=6!-=-P+oNv?Y%gD_Mn9=q{QWBneJ z@iUVd`OgIV-d5vhrMq2w8;w70G~+_oZ}2Qf0*DE=-vM=gy{l0Z6snnePhlzw@dOE^ zjX8Mqw0e4*24*U+cv@YGzXI?vR&h+Y8pe%??9@3R;@5S)S4fl4IFR(h*NrT1Os#m6 z^E11W+@bl5wdCHKUc^(px+(0=JjaRo(b_uj14_m zLl)MPEw5JYSvw$yoxPi3%#NTY-0hti2jv}PEzPDV|B9Q#3;0hi^_#X zf}sfU?C+s17}bfN!V*Z8Wup|kz@Ug8Diu3(CLT`6MYs`A@+^Q!nxdx!HF%hT9NCwD z6+n3B04$~S5gCkOi4y2k4Q`i^g8hj=oDGZdc!^@=W6|W=d`|b2iXq~CeMn$pv~W(( zl${)v^TL{$`ny77##2d`({J4M)GvB`Q$5#uulCM#r%IaVJuS1|yPmeCl3KlNVt=M; z4PbQrblc?NiM?0LekqhqjegLYZg?iu@XUg+S#M(A(>Q}RTlE6H&HB5ZbxS2>)Kug9 zo!2{Oy{W2oN^5GdNLN#3Fm5@0Q!oAYp`Uw77d=(e+deqI;MqV8?*HAQ>EQR=h^45l zn>d=OteQB4_>bC#nfmK5OdLhAr*_WWigRU4x}rT*(LQ@}zG6eVVr!~m>+O>Hid|FY z#aeNu^ap*j_19mYD$1;BntAE^#VKL2#Xs9V-?C*6EZA2$SJQRZ*OjSVKXo7@xTm(K zgxZO{a28JurG&%|c08fL3jJ@bAFZX02 z=7-S2gN)D$YLgU3m4j#m5D|3f%(bZH^qx&)CbU?CKr@h^7OaRjC=lTRwckvEiXZ3c zo-FdZ$Al;mfIl5D0{oewgCK0}6nD8>4}CQyy9r>CTaj7%$RI2`K{Ue*LqEgYN@M_4?6x0LE{FsVk(W$1 zQq3Px&Z>GIV3dY;5k5T9TV#vM6kf!I^gNO{!782N6@qsWkU>N0{-%u_dby| zjps>_CgUo;5}k~uT`ehB%e<>~!nmY46V|565VY#D7h@5lEP6FM^YX36spx#!=81z@ zi_ux1sTAL@zFz%<+9?ajuzSk`&f+XidD^EO(=X4Qob9F{2FFzgG^mWYE>n&AwOKpo zt@+=a*;{r=3lUi^f)ToePGp6g?jZyb6;iRa zF=(Kqhdvc)0kk}G*;E7%cqBUjq=dXTA$25#QeQJoxRE8BYAs&wu=qT@do&~ z?w}v0UopgyY#feZn=T|X+u%it6K&C=i_;WN8s83GPWmr+#_v+hX2lAJ$p-_nFfts1 z?}6>y2rJ5ynb|v~Kc(InC!&7k3bmrjYm^6=`Gk0a>^L)sJwz(YIY5sRuadn`AQOT7 z9@U6#>|Bivv5*X>}w=ObbB^kErSdALSjF1H{Sntqw~8 zEL{$bC3Vw7AD>w8buZO5O`n=N zu++Q`v3%aLsiT>;Evb^VQ%7euWw7fJ&u75TxH`2J#*!qKsnyZpO?@sAg{IysK&gf-SAnvd(STOXFGYMD=-e( zD43G)=xa$DVbg?C3XnClG21Hw)58G$w2LA_^LR)POc>!{h>(S{g^$G@YH?HT z;%IC{RQ%8sFsQQ+HGoR_@sLgxH*~HhQKh%Mcq(PDn9L~-^iy~{iEJ;@A0heTA8}~b zWwvM4jnGZD6DFX%iCoMY%&~?rLd$=GM`gpY7iBNo4NbA$@Zp|?CpRv8*mD7F9*l-B zkb_5dse8KAYh@hdY-Oeu>93K4m51qIWGu$?DgJxc8JLze&pa&LPWX!7)CVH{84aRH z>5Vxi3EIR-%4+;pRmp}G$ENy1D^;?U_x>00vxjH_{ETf9RP4;e&%DJG7BVjft_CKG z$ckHcy>7ylsi>N8W=b2=r5jVF8|O>0zt(PVhGhg+m5cL&II}w?G~*1`mlhgfbeP#c zyK_O<#_Sa{Z%ijupA{TU?|tk2SFXQu*WJ2U*^sW>l&aix>*d=g=PUPIwPd{I)7{^z zX3o-%l&@np4737Hmo8Zgwl`a}P_i*oQ%|-N>{0Py0NFB5s7gD;yAE-QdTvSyO*5~j zo42K!x7}_?HDd_7^da37n#s{$|F{i=Bq?KWx52iagjn7dKwbsdTD%eECbY2XK&h^F z6N;!0py;oiMQ<1#m;tLA1EC=NeHq2xi5PN4S6N zo^wApXM66;hhEr|wB2}!zM>8kCi zs_nPC=c{%q=3|V7g?*T&`)4+P9J^UvUKNI(~a-X$U?yofdl;7jrUt;{3i^s*!O3X-C{Jt2t zpTYqtD&$EVP&H!lPya;=2AbAkwHJV6D|i{YTzwQWPvxE&<#SGPw7>dcTo(dp8pKgy z*)vagvVhYl*YgveDFE7X&oE=%Q|ADH%9z~v0^60&=#<$SXj2H{R-z1X;P-#XN-V07 zLP1?134W@GQpZqfwV}jO`d&r4 z(x0mI-*xzP*}Nb$6BRHkM@LHNxF>Wi!U0rrt?p`F+S`)yw#+-%&UW8*wnNS<)er{L zy&!B{{TRamgg_wf6-iHPTRTWj!({eaw4`z?SE{;Bsia?q_wo+3E$zDzcQKk7ef>a_mM2 z$Z9Gjlo)*a#a zSrzU3Hz-9{+j-a7`s7-_be5%^jVULTj0I;KbyRvKIhmY3e%DQVR@0u=l&5vJ z_MT@8HgBm{rJq#Yth(pfv`EjkrJQZE&n!5*vlY7J-;%1>a@!1#EBS!BrcAkpO73|& z>DPj~vXz``1LG;Q;iCnwDZN7pGinhNlQ^gv|5m z{=HuMF6AyE!L64l&t8c&`0G@v>`HmmsO&Pqh}y;D%2t$i?11V|yuylT7if#ifT zxLgYsrokqQnFfn6hR%~@I_N8z(SQP8Tj`R7mPG4VafYm;Toom2wS-LjY`gZm+|Nz>v!-(F zI)Pi!SC+N1tc`ZD*jcuSD{jgH*l8X2ZpWK31dVq%W?_cXD(iD zt1z!y-c)NYTi#WPJu;g;=I5~~#$j&BR;@92WlGm(jdb4nEITjRoe#~pW=od6;|k12 z<~Ak^KS1W65)Yn}efZH5KDXPNg;~<-Vh1eHwe-6Lg`{0hioMB8{5urGjbB-K%PZBM%`ZZIEvgw6A`2~zwHoZu{BhZMfbd9dfFla|(vhT$H<2}2N1di`NdHhsh|MBC! z$4%q`01uk*DkmZ&Djp&CsT{*CsT_v4%d}!liL;$m*?op2wtoPVLeuj;Q8ty>=@-> zRAwhUOVEU}R%9Q=X)V7~vxa-$zT0h__3h@2cQ^srJ1!pSijQwXRU-i*qP~@pb2)gQ zQ?JLk6NtD~1tdPM5&=e{a?E%h-NyOLE|fAbGmfotQL71n0MT3YOF|@4kt3jkGpjSk zCF#mYQCBQl%9Lz707oE$!HP3b{k<5)SD}WZDtDBfG71JZDAE&CORS3Nq!%e~R=j}s zkXH<7f?_~ZT99p;3zY4TXLdA&6WpZ-C^akg zZ*G_{XUc1)U%Gm6LdZD0Q?JfD>a~IwelB>kcGLlJmsCyIGGhIlt$xBXRg)1)rd~pj ze+BGV)iZD6#|Uo;smdL5j-7L+os3k$#GfQml5YJcv0oukK|HsChD^VVmnU>gdE$w2 z;(x$>w9A9PDg1fmQ%TjCqgW6D5;}>dI*Becp=42Jl*u5P)?{T)iUp1+Zs((_FP3%r zE_Jz?v2WUkcxD9q9bqpQMurgh>o=m8y5JtE!)VI*DzWinEQja;17t{VDBE_G0XZ z!j&Ie)}B>@hU1;&@&=z^kbxw%T&y;b|9hOp)ODB=TF{DEW|RLNdcuyMHNvFB?5>E* z{Zwe#4-WO>Ug;m{!W{_Y{hT^>e7e+$9#VdZUHOfbMryl_k`79kAnd0cBZNuH>0BWL6=UXpL5Nhb4{Of zWuJ4^f5%mS&eeX-)qKuXe9pD9|DB(6>p!O!D6>@Lni!cnG2J*FpV>QGajWrW?Of^R zlzU66XzL~GlBN98K-yBCvXoET<}LM?jM);-T=ZK<-aeA`I?D}noG)9)xyt6b(u{M> zJhukI*C3?%suW+9HQ4#)jI%Urq_enzotMld56rj*e>LDI$0=9g;CC+97C;79QSYiZU~_lLGaoj4ve|{8}JAjNJ9o=uokn=YAh3Q&f+xA2x%cBtc8t;7BQk) zltt!%G4Pb>iIEmFVj2%Q?(>m;=1nws$dA35>GP*--)o7tD&wI1;2p~3Ta{NpnSO_I zsKW^fe_V2G*VAp!O?!3SOB?2H!!`q_w=K`jo(CNShQ@W{Rt?-6RB3p7Rx;4H(XvwVLaPuLoWjpdma{nCanc59a|3 zg?Y;1!cCwHdBFQ~c_;$jJl}v(&V%3Ov+0}CRxl}HWwm^V#${y%D`ld}8m6(`mgB?xrbqev zcjPiwH$@3VYFRAHYFUJdewAuD$bO|<++R+ zT!Csvg7p#6)-71Lo68=U_Cd~SJjyjYUfr>0vonR9+wjZ`i1+jw==)pD{dcXJotFc* z_8p^bnMkycB2<#h?kjeOS-*ULaD+WZsf#p9jDElTLL@_@l$+qqQe%$KwmXrJj#H8#@_Z{sRrQCSa6T#`+!I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/discover_files.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/discover_files.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..89555f987d9ba71ba2c53b867f01fede90f6936a GIT binary patch literal 3157 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 QFYA04$j?0`F!A*K3%`O?@c;k- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/processor.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/processor.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0dd7517e0a52d204794086fd398651f66e62b89b GIT binary patch literal 20242 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 F_&j>vg^yS5MZcAc3$ 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c91c78c07d9338ef10a743147f63d9c425301bbd GIT binary patch literal 12274 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/__pycache__/violation.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/__pycache__/violation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a0b575c00e0425439dc5ff624acf27e96390b74b GIT binary patch literal 2908 zcmai0O>7&-6`tkp@^4A~SSyQ)rFNA@fvJR45=TfZ$Y~r~HUwBqTf1q?qFAlCLvrcm zE;F-~LxKVXBmv};dnjNZlT#eHKmw!(AA4>uB4~ij)&^3EWg0dw3uY3?e=v&qairg23gTH}r8<{ANOu-Dv)Fc zP|Yi2?LEu24bO5N4HM!Ltza9JYITZD&2l_U9K*I7*?+SLX~9~l+B)POm!eI7KTiGHhbcA)hn%dH z8`LTowr*PvrVNnwy}o$ECD&=qC}6sHbv1M4{5wmTt8B%E%mvrP`gzz87)BSfTiDrJ zw5`p>TEi>5&YA41uPsu`!xzc_ds(SVU!nupP^p^D}j+A zEScg8Shyr{Nd{ebC`E?WD3@YjjdLjpoRRW!Bat5QV?$~*U%S9rL2!*=iXG2#N}8b! z*QJ5MB_2>_v!Pw$i_ZEY^@uMOV9)$$(Xz1v1o1`Sl&`S;)}4BF6B9pKaP4~43A&Pp zKk%Ay7^}6koaA_)H8M|+(LjX;5ll@&+v~N^B2<5=64q{^S*hID9Ajd3#@k86XnTr-GK)l7>Tn>LUZuI=*B$b5cN#*jvd2B{M= zBTJlw!W3Irs}Xn0Vl!-PWHN&Q85Uq;BRdSSOt4oc4t+Z4HB#rG`zaYv^%1g^oM8Z8 z)-D+~#hS~ezF|>7900!5OwAJwhA=di!@PshzRYeTZO-={f|zh;4Q8oRZJusyG+#b4Ki^meo8$Nq@AN3Y;C_rb6pTU{ z`;ij%SdXYcAi_Ay6QwU+dH1p}n|QNc@?$09)@!C!@F34%kHG7V{O91TDAw6I8#=}8 z`7yq8Is_u@v8F6z z^mm*jS>$nx>itFPgKce|8m7jp6#X<+Np)z9jac5`j- zg!+ruA~0EGxqkb+*3wxoxOSXj@(veKT$uM{&c!Kx740n`U}3l`j!1)?!q8WZ|rh! zOzn+LKZ!`mk^MMQQ;(y{t=P?2FR^_8;$PEG#8520A4X%7gr&n=S|an%`qHNB+J3lC zf071OI_yVvojnt}4$q`sby|fucei5;>i!!dL!c>uJ^{(j->V`PIjb|J+7UY?MSmvq zET@wbtXhDoInF4yj=>^btoUZVyI!rnDM-2Z0a-!FYu$KX0#fiaK^*a`?st8iUNUFX+@-;MrCUtwmp z$$a(SM_2kg_!c<}I`(-(4XE}-K@h%1XCI;GzeQvJV84+^NPUE6|AkIHLMb?_NNT6l z4NtYhQ+J}B@Z63Fy3pj#bXQQ@f_mrb17YsJAwf8IAfnLo`%HQgT@)t&82=7I!y)`1 D8D+$C literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/_compat.py b/.venv/lib/python3.12/site-packages/flake8/_compat.py new file mode 100644 index 0000000..22bb84e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/_compat.py @@ -0,0 +1,18 @@ +from __future__ import annotations + +import sys +import tokenize + +if sys.version_info >= (3, 12): # pragma: >=3.12 cover + FSTRING_START = tokenize.FSTRING_START + FSTRING_MIDDLE = tokenize.FSTRING_MIDDLE + FSTRING_END = tokenize.FSTRING_END +else: # pragma: <3.12 cover + FSTRING_START = FSTRING_MIDDLE = FSTRING_END = -1 + +if sys.version_info >= (3, 14): # pragma: >=3.14 cover + TSTRING_START = tokenize.TSTRING_START + TSTRING_MIDDLE = tokenize.TSTRING_MIDDLE + TSTRING_END = tokenize.TSTRING_END +else: # pragma: <3.14 cover + TSTRING_START = TSTRING_MIDDLE = TSTRING_END = -1 diff --git a/.venv/lib/python3.12/site-packages/flake8/api/__init__.py b/.venv/lib/python3.12/site-packages/flake8/api/__init__.py new file mode 100644 index 0000000..c5f9711 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/api/__init__.py @@ -0,0 +1,6 @@ +"""Module containing all public entry-points for Flake8. + +This is the only submodule in Flake8 with a guaranteed stable API. All other +submodules are considered internal only and are subject to change. +""" +from __future__ import annotations diff --git a/.venv/lib/python3.12/site-packages/flake8/api/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/api/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc8a22a91c1a58378684eef918ccabeeb907edf8 GIT binary patch literal 465 zcmX|-&q@O^5XLvVh3ZQ2;sXqL>S1?LDR>Z}ih`gb)Kf1ZyGgsT+hj?ymGwn@2A{-( zZ_ukJZeCeI%Ch8`!}FUZs% z`oyb)ZtLmwM)Rr=kZI+ZR8ozB6$O-4TF4B9a;A<-EtRt{(grRIHW9~h7~bd70uGl8 z(5k4xR_Sz8N~&KB9;M5H!MI|EDJKL6>sX3z{ky9e`skxkZ^D1A1!mT7v62geJQ@q5 z7=n!lQ+y2|{~$64PD7S6H5PIB(fqYb<~vL&?U<8V+1qX~Z&S*3M(I4HbX2*@2ue+W z?2ET-B&#%e)MjE!mI<2-E~4xHSuYwi6|(4Db3yxPUt4LDcqY^=DP)?Iwac|SiVqGG zE1if?JYi$hkJjx;SSb@qv73(4xU5%OC!5xsnr*ZsIPESjp8+9c;kQWZEA+^|Y2)1w D5kruV literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/api/__pycache__/legacy.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/api/__pycache__/legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6257fd70411e49447d9361f9e64db0a1fb753109 GIT binary patch literal 9310 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 None: + """Initialize the Report for the user. + + .. warning:: This should not be instantiated by users. + """ + assert application.guide is not None + self._application = application + self._style_guide = application.guide + self._stats = self._style_guide.stats + + @property + def total_errors(self) -> int: + """Return the total number of errors.""" + return self._application.result_count + + def get_statistics(self, violation: str) -> list[str]: + """Get the list of occurrences of a violation. + + :returns: + List of occurrences of a violation formatted as: + {Count} {Error Code} {Message}, e.g., + ``8 E531 Some error message about the error`` + """ + return [ + f"{s.count} {s.error_code} {s.message}" + for s in self._stats.statistics_for(violation) + ] + + +class StyleGuide: + """Public facing object that mimic's Flake8 2.0's StyleGuide. + + .. note:: + + There are important changes in how this object behaves compared to + the StyleGuide object provided in Flake8 2.x. + + .. warning:: + + This object should not be instantiated directly by users. + + .. versionchanged:: 3.0.0 + """ + + def __init__(self, application: app.Application) -> None: + """Initialize our StyleGuide.""" + self._application = application + self._file_checker_manager = application.file_checker_manager + + @property + def options(self) -> argparse.Namespace: + """Return application's options. + + An instance of :class:`argparse.Namespace` containing parsed options. + """ + assert self._application.options is not None + return self._application.options + + @property + def paths(self) -> list[str]: + """Return the extra arguments passed as paths.""" + assert self._application.options is not None + return self._application.options.filenames + + def check_files(self, paths: list[str] | None = None) -> Report: + """Run collected checks on the files provided. + + This will check the files passed in and return a :class:`Report` + instance. + + :param paths: + List of filenames (or paths) to check. + :returns: + Object that mimic's Flake8 2.0's Reporter class. + """ + assert self._application.options is not None + self._application.options.filenames = paths + self._application.run_checks() + self._application.report_errors() + return Report(self._application) + + def excluded(self, filename: str, parent: str | None = None) -> bool: + """Determine if a file is excluded. + + :param filename: + Path to the file to check if it is excluded. + :param parent: + Name of the parent directory containing the file. + :returns: + True if the filename is excluded, False otherwise. + """ + + def excluded(path: str) -> bool: + paths = tuple( + expand_paths( + paths=[path], + stdin_display_name=self.options.stdin_display_name, + filename_patterns=self.options.filename, + exclude=self.options.exclude, + ) + ) + return not paths + + return excluded(filename) or ( + parent is not None and excluded(os.path.join(parent, filename)) + ) + + def init_report( + self, + reporter: type[formatter.BaseFormatter] | None = None, + ) -> None: + """Set up a formatter for this run of Flake8.""" + if reporter is None: + return + if not issubclass(reporter, formatter.BaseFormatter): + raise ValueError( + "Report should be subclass of " + "flake8.formatter.BaseFormatter." + ) + self._application.formatter = reporter(self.options) + self._application.guide = None + # NOTE(sigmavirus24): This isn't the intended use of + # Application#make_guide but it works pretty well. + # Stop cringing... I know it's gross. + self._application.make_guide() + self._application.file_checker_manager = None + self._application.make_file_checker_manager([]) + + def input_file( + self, + filename: str, + lines: Any | None = None, + expected: Any | None = None, + line_offset: Any | None = 0, + ) -> Report: + """Run collected checks on a single file. + + This will check the file passed in and return a :class:`Report` + instance. + + :param filename: + The path to the file to check. + :param lines: + Ignored since Flake8 3.0. + :param expected: + Ignored since Flake8 3.0. + :param line_offset: + Ignored since Flake8 3.0. + :returns: + Object that mimic's Flake8 2.0's Reporter class. + """ + return self.check_files([filename]) + + +def get_style_guide(**kwargs: Any) -> StyleGuide: + r"""Provision a StyleGuide for use. + + :param \*\*kwargs: + Keyword arguments that provide some options for the StyleGuide. + :returns: + An initialized StyleGuide + """ + application = app.Application() + application.plugins, application.options = parse_args([]) + # We basically want application.initialize to be called but with these + # options set instead before we make our formatter, notifier, internal + # style guide and file checker manager. + options = application.options + for key, value in kwargs.items(): + try: + getattr(options, key) + setattr(options, key, value) + except AttributeError: + LOG.error('Could not update option "%s"', key) + application.make_formatter() + application.make_guide() + application.make_file_checker_manager([]) + return StyleGuide(application) diff --git a/.venv/lib/python3.12/site-packages/flake8/checker.py b/.venv/lib/python3.12/site-packages/flake8/checker.py new file mode 100644 index 0000000..84d45aa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/checker.py @@ -0,0 +1,616 @@ +"""Checker Manager and Checker classes.""" +from __future__ import annotations + +import argparse +import contextlib +import errno +import logging +import multiprocessing.pool +import operator +import signal +import tokenize +from collections.abc import Generator +from collections.abc import Sequence +from typing import Any +from typing import Optional + +from flake8 import defaults +from flake8 import exceptions +from flake8 import processor +from flake8 import utils +from flake8._compat import FSTRING_START +from flake8._compat import TSTRING_START +from flake8.discover_files import expand_paths +from flake8.options.parse_args import parse_args +from flake8.plugins.finder import Checkers +from flake8.plugins.finder import LoadedPlugin +from flake8.style_guide import StyleGuideManager + +Results = list[tuple[str, int, int, str, Optional[str]]] + +LOG = logging.getLogger(__name__) + +SERIAL_RETRY_ERRNOS = { + # ENOSPC: Added by sigmavirus24 + # > On some operating systems (OSX), multiprocessing may cause an + # > ENOSPC error while trying to create a Semaphore. + # > In those cases, we should replace the customized Queue Report + # > class with pep8's StandardReport class to ensure users don't run + # > into this problem. + # > (See also: https://github.com/pycqa/flake8/issues/117) + errno.ENOSPC, + # NOTE(sigmavirus24): When adding to this list, include the reasoning + # on the lines before the error code and always append your error + # code. Further, please always add a trailing `,` to reduce the visual + # noise in diffs. +} + +_mp_plugins: Checkers +_mp_options: argparse.Namespace + + +@contextlib.contextmanager +def _mp_prefork( + plugins: Checkers, options: argparse.Namespace +) -> Generator[None]: + # we can save significant startup work w/ `fork` multiprocessing + global _mp_plugins, _mp_options + _mp_plugins, _mp_options = plugins, options + try: + yield + finally: + del _mp_plugins, _mp_options + + +def _mp_init(argv: Sequence[str]) -> None: + global _mp_plugins, _mp_options + + # Ensure correct signaling of ^C using multiprocessing.Pool. + signal.signal(signal.SIGINT, signal.SIG_IGN) + + try: + # for `fork` this'll already be set + _mp_plugins, _mp_options # noqa: B018 + except NameError: + plugins, options = parse_args(argv) + _mp_plugins, _mp_options = plugins.checkers, options + + +def _mp_run(filename: str) -> tuple[str, Results, dict[str, int]]: + return FileChecker( + filename=filename, plugins=_mp_plugins, options=_mp_options + ).run_checks() + + +class Manager: + """Manage the parallelism and checker instances for each plugin and file. + + This class will be responsible for the following: + + - Determining the parallelism of Flake8, e.g.: + + * Do we use :mod:`multiprocessing` or is it unavailable? + + * Do we automatically decide on the number of jobs to use or did the + user provide that? + + - Falling back to a serial way of processing files if we run into an + OSError related to :mod:`multiprocessing` + + - Organizing the results of each checker so we can group the output + together and make our output deterministic. + """ + + def __init__( + self, + style_guide: StyleGuideManager, + plugins: Checkers, + argv: Sequence[str], + ) -> None: + """Initialize our Manager instance.""" + self.style_guide = style_guide + self.options = style_guide.options + self.plugins = plugins + self.jobs = self._job_count() + self.statistics = { + "files": 0, + "logical lines": 0, + "physical lines": 0, + "tokens": 0, + } + self.exclude = (*self.options.exclude, *self.options.extend_exclude) + self.argv = argv + self.results: list[tuple[str, Results, dict[str, int]]] = [] + + def _process_statistics(self) -> None: + for _, _, statistics in self.results: + for statistic in defaults.STATISTIC_NAMES: + self.statistics[statistic] += statistics[statistic] + self.statistics["files"] += len(self.filenames) + + def _job_count(self) -> int: + # First we walk through all of our error cases: + # - multiprocessing library is not present + # - the user provided stdin and that's not something we can handle + # well + # - the user provided some awful input + + if utils.is_using_stdin(self.options.filenames): + LOG.warning( + "The --jobs option is not compatible with supplying " + "input using - . Ignoring --jobs arguments." + ) + return 0 + + jobs = self.options.jobs + + # If the value is "auto", we want to let the multiprocessing library + # decide the number based on the number of CPUs. However, if that + # function is not implemented for this particular value of Python we + # default to 1 + if jobs.is_auto: + try: + return multiprocessing.cpu_count() + except NotImplementedError: + return 0 + + # Otherwise, we know jobs should be an integer and we can just convert + # it to an integer + return jobs.n_jobs + + def _handle_results(self, filename: str, results: Results) -> int: + style_guide = self.style_guide + reported_results_count = 0 + for error_code, line_number, column, text, physical_line in results: + reported_results_count += style_guide.handle_error( + code=error_code, + filename=filename, + line_number=line_number, + column_number=column, + text=text, + physical_line=physical_line, + ) + return reported_results_count + + def report(self) -> tuple[int, int]: + """Report all of the errors found in the managed file checkers. + + This iterates over each of the checkers and reports the errors sorted + by line number. + + :returns: + A tuple of the total results found and the results reported. + """ + results_reported = results_found = 0 + self.results.sort(key=operator.itemgetter(0)) + for filename, results, _ in self.results: + results.sort(key=operator.itemgetter(1, 2)) + with self.style_guide.processing_file(filename): + results_reported += self._handle_results(filename, results) + results_found += len(results) + return (results_found, results_reported) + + def run_parallel(self) -> None: + """Run the checkers in parallel.""" + with _mp_prefork(self.plugins, self.options): + pool = _try_initialize_processpool(self.jobs, self.argv) + + if pool is None: + self.run_serial() + return + + pool_closed = False + try: + self.results = list(pool.imap_unordered(_mp_run, self.filenames)) + pool.close() + pool.join() + pool_closed = True + finally: + if not pool_closed: + pool.terminate() + pool.join() + + def run_serial(self) -> None: + """Run the checkers in serial.""" + self.results = [ + FileChecker( + filename=filename, + plugins=self.plugins, + options=self.options, + ).run_checks() + for filename in self.filenames + ] + + def run(self) -> None: + """Run all the checkers. + + This will intelligently decide whether to run the checks in parallel + or whether to run them in serial. + + If running the checks in parallel causes a problem (e.g., + :issue:`117`) this also implements fallback to serial processing. + """ + try: + if self.jobs > 1 and len(self.filenames) > 1: + self.run_parallel() + else: + self.run_serial() + except KeyboardInterrupt: + LOG.warning("Flake8 was interrupted by the user") + raise exceptions.EarlyQuit("Early quit while running checks") + + def start(self) -> None: + """Start checking files. + + :param paths: + Path names to check. This is passed directly to + :meth:`~Manager.make_checkers`. + """ + LOG.info("Making checkers") + self.filenames = tuple( + expand_paths( + paths=self.options.filenames, + stdin_display_name=self.options.stdin_display_name, + filename_patterns=self.options.filename, + exclude=self.exclude, + ) + ) + self.jobs = min(len(self.filenames), self.jobs) + + def stop(self) -> None: + """Stop checking files.""" + self._process_statistics() + + +class FileChecker: + """Manage running checks for a file and aggregate the results.""" + + def __init__( + self, + *, + filename: str, + plugins: Checkers, + options: argparse.Namespace, + ) -> None: + """Initialize our file checker.""" + self.options = options + self.filename = filename + self.plugins = plugins + self.results: Results = [] + self.statistics = { + "tokens": 0, + "logical lines": 0, + "physical lines": 0, + } + self.processor = self._make_processor() + self.display_name = filename + self.should_process = False + if self.processor is not None: + self.display_name = self.processor.filename + self.should_process = not self.processor.should_ignore_file() + self.statistics["physical lines"] = len(self.processor.lines) + + def __repr__(self) -> str: + """Provide helpful debugging representation.""" + return f"FileChecker for {self.filename}" + + def _make_processor(self) -> processor.FileProcessor | None: + try: + return processor.FileProcessor(self.filename, self.options) + except OSError as e: + # If we can not read the file due to an IOError (e.g., the file + # does not exist or we do not have the permissions to open it) + # then we need to format that exception for the user. + # NOTE(sigmavirus24): Historically, pep8 has always reported this + # as an E902. We probably *want* a better error code for this + # going forward. + self.report("E902", 0, 0, f"{type(e).__name__}: {e}") + return None + + def report( + self, + error_code: str | None, + line_number: int, + column: int, + text: str, + ) -> str: + """Report an error by storing it in the results list.""" + if error_code is None: + error_code, text = text.split(" ", 1) + + # If we're recovering from a problem in _make_processor, we will not + # have this attribute. + if hasattr(self, "processor") and self.processor is not None: + line = self.processor.noqa_line_for(line_number) + else: + line = None + + self.results.append((error_code, line_number, column, text, line)) + return error_code + + def run_check(self, plugin: LoadedPlugin, **arguments: Any) -> Any: + """Run the check in a single plugin.""" + assert self.processor is not None, self.filename + try: + params = self.processor.keyword_arguments_for( + plugin.parameters, arguments + ) + except AttributeError as ae: + raise exceptions.PluginRequestedUnknownParameters( + plugin_name=plugin.display_name, exception=ae + ) + try: + return plugin.obj(**arguments, **params) + except Exception as all_exc: + LOG.critical( + "Plugin %s raised an unexpected exception", + plugin.display_name, + exc_info=True, + ) + raise exceptions.PluginExecutionFailed( + filename=self.filename, + plugin_name=plugin.display_name, + exception=all_exc, + ) + + @staticmethod + def _extract_syntax_information(exception: Exception) -> tuple[int, int]: + if ( + len(exception.args) > 1 + and exception.args[1] + and len(exception.args[1]) > 2 + ): + token = exception.args[1] + row, column = token[1:3] + elif ( + isinstance(exception, tokenize.TokenError) + and len(exception.args) == 2 + and len(exception.args[1]) == 2 + ): + token = () + row, column = exception.args[1] + else: + token = () + row, column = (1, 0) + + if ( + column > 0 + and token + and isinstance(exception, SyntaxError) + and len(token) == 4 # Python 3.9 or earlier + ): + # NOTE(sigmavirus24): SyntaxErrors report 1-indexed column + # numbers. We need to decrement the column number by 1 at + # least. + column_offset = 1 + row_offset = 0 + # See also: https://github.com/pycqa/flake8/issues/169, + # https://github.com/PyCQA/flake8/issues/1372 + # On Python 3.9 and earlier, token will be a 4-item tuple with the + # last item being the string. Starting with 3.10, they added to + # the tuple so now instead of it ending with the code that failed + # to parse, it ends with the end of the section of code that + # failed to parse. Luckily the absolute position in the tuple is + # stable across versions so we can use that here + physical_line = token[3] + + # NOTE(sigmavirus24): Not all "tokens" have a string as the last + # argument. In this event, let's skip trying to find the correct + # column and row values. + if physical_line is not None: + # NOTE(sigmavirus24): SyntaxErrors also don't exactly have a + # "physical" line so much as what was accumulated by the point + # tokenizing failed. + # See also: https://github.com/pycqa/flake8/issues/169 + lines = physical_line.rstrip("\n").split("\n") + row_offset = len(lines) - 1 + logical_line = lines[0] + logical_line_length = len(logical_line) + if column > logical_line_length: + column = logical_line_length + row -= row_offset + column -= column_offset + return row, column + + def run_ast_checks(self) -> None: + """Run all checks expecting an abstract syntax tree.""" + assert self.processor is not None, self.filename + ast = self.processor.build_ast() + + for plugin in self.plugins.tree: + checker = self.run_check(plugin, tree=ast) + # If the plugin uses a class, call the run method of it, otherwise + # the call should return something iterable itself + try: + runner = checker.run() + except AttributeError: + runner = checker + for line_number, offset, text, _ in runner: + self.report( + error_code=None, + line_number=line_number, + column=offset, + text=text, + ) + + def run_logical_checks(self) -> None: + """Run all checks expecting a logical line.""" + assert self.processor is not None + comments, logical_line, mapping = self.processor.build_logical_line() + if not mapping: + return + self.processor.update_state(mapping) + + LOG.debug('Logical line: "%s"', logical_line.rstrip()) + + for plugin in self.plugins.logical_line: + self.processor.update_checker_state_for(plugin) + results = self.run_check(plugin, logical_line=logical_line) or () + for offset, text in results: + line_number, column_offset = find_offset(offset, mapping) + if line_number == column_offset == 0: + LOG.warning("position of error out of bounds: %s", plugin) + self.report( + error_code=None, + line_number=line_number, + column=column_offset, + text=text, + ) + + self.processor.next_logical_line() + + def run_physical_checks(self, physical_line: str) -> None: + """Run all checks for a given physical line. + + A single physical check may return multiple errors. + """ + assert self.processor is not None + for plugin in self.plugins.physical_line: + self.processor.update_checker_state_for(plugin) + result = self.run_check(plugin, physical_line=physical_line) + + if result is not None: + # This is a single result if first element is an int + column_offset = None + try: + column_offset = result[0] + except (IndexError, TypeError): + pass + + if isinstance(column_offset, int): + # If we only have a single result, convert to a collection + result = (result,) + + for result_single in result: + column_offset, text = result_single + self.report( + error_code=None, + line_number=self.processor.line_number, + column=column_offset, + text=text, + ) + + def process_tokens(self) -> None: + """Process tokens and trigger checks. + + Instead of using this directly, you should use + :meth:`flake8.checker.FileChecker.run_checks`. + """ + assert self.processor is not None + parens = 0 + statistics = self.statistics + file_processor = self.processor + prev_physical = "" + for token in file_processor.generate_tokens(): + statistics["tokens"] += 1 + self.check_physical_eol(token, prev_physical) + token_type, text = token[0:2] + if token_type == tokenize.OP: + parens = processor.count_parentheses(parens, text) + elif parens == 0: + if processor.token_is_newline(token): + self.handle_newline(token_type) + prev_physical = token[4] + + if file_processor.tokens: + # If any tokens are left over, process them + self.run_physical_checks(file_processor.lines[-1]) + self.run_logical_checks() + + def run_checks(self) -> tuple[str, Results, dict[str, int]]: + """Run checks against the file.""" + if self.processor is None or not self.should_process: + return self.display_name, self.results, self.statistics + + try: + self.run_ast_checks() + self.process_tokens() + except (SyntaxError, tokenize.TokenError) as e: + code = "E902" if isinstance(e, tokenize.TokenError) else "E999" + row, column = self._extract_syntax_information(e) + self.report(code, row, column, f"{type(e).__name__}: {e.args[0]}") + return self.display_name, self.results, self.statistics + + logical_lines = self.processor.statistics["logical lines"] + self.statistics["logical lines"] = logical_lines + return self.display_name, self.results, self.statistics + + def handle_newline(self, token_type: int) -> None: + """Handle the logic when encountering a newline token.""" + assert self.processor is not None + if token_type == tokenize.NEWLINE: + self.run_logical_checks() + self.processor.reset_blank_before() + elif len(self.processor.tokens) == 1: + # The physical line contains only this token. + self.processor.visited_new_blank_line() + self.processor.delete_first_token() + else: + self.run_logical_checks() + + def check_physical_eol( + self, token: tokenize.TokenInfo, prev_physical: str + ) -> None: + """Run physical checks if and only if it is at the end of the line.""" + assert self.processor is not None + if token.type == FSTRING_START: # pragma: >=3.12 cover + self.processor.fstring_start(token.start[0]) + elif token.type == TSTRING_START: # pragma: >=3.14 cover + self.processor.tstring_start(token.start[0]) + # a newline token ends a single physical line. + elif processor.is_eol_token(token): + # if the file does not end with a newline, the NEWLINE + # token is inserted by the parser, but it does not contain + # the previous physical line in `token[4]` + if token.line == "": + self.run_physical_checks(prev_physical) + else: + self.run_physical_checks(token.line) + elif processor.is_multiline_string(token): + # Less obviously, a string that contains newlines is a + # multiline string, either triple-quoted or with internal + # newlines backslash-escaped. Check every physical line in the + # string *except* for the last one: its newline is outside of + # the multiline string, so we consider it a regular physical + # line, and will check it like any other physical line. + # + # Subtleties: + # - have to wind self.line_number back because initially it + # points to the last line of the string, and we want + # check_physical() to give accurate feedback + for line in self.processor.multiline_string(token): + self.run_physical_checks(line) + + +def _try_initialize_processpool( + job_count: int, + argv: Sequence[str], +) -> multiprocessing.pool.Pool | None: + """Return a new process pool instance if we are able to create one.""" + try: + return multiprocessing.Pool(job_count, _mp_init, initargs=(argv,)) + except OSError as err: + if err.errno not in SERIAL_RETRY_ERRNOS: + raise + except ImportError: + pass + + return None + + +def find_offset( + offset: int, mapping: processor._LogicalMapping +) -> tuple[int, int]: + """Find the offset tuple for a single offset.""" + if isinstance(offset, tuple): + return offset + + for token in mapping: + token_offset = token[0] + if offset <= token_offset: + position = token[1] + break + else: + position = (0, 0) + offset = token_offset = 0 + return (position[0], position[1] + offset - token_offset) diff --git a/.venv/lib/python3.12/site-packages/flake8/defaults.py b/.venv/lib/python3.12/site-packages/flake8/defaults.py new file mode 100644 index 0000000..57abda1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/defaults.py @@ -0,0 +1,45 @@ +"""Constants that define defaults.""" +from __future__ import annotations + +import re + +EXCLUDE = ( + ".svn", + "CVS", + ".bzr", + ".hg", + ".git", + "__pycache__", + ".tox", + ".nox", + ".eggs", + "*.egg", +) +IGNORE = ("E121", "E123", "E126", "E226", "E24", "E704", "W503", "W504") +MAX_LINE_LENGTH = 79 +INDENT_SIZE = 4 + +# Other constants +WHITESPACE = frozenset(" \t") + +STATISTIC_NAMES = ("logical lines", "physical lines", "tokens") + +NOQA_INLINE_REGEXP = re.compile( + # We're looking for items that look like this: + # ``# noqa`` + # ``# noqa: E123`` + # ``# noqa: E123,W451,F921`` + # ``# noqa:E123,W451,F921`` + # ``# NoQA: E123,W451,F921`` + # ``# NOQA: E123,W451,F921`` + # ``# NOQA:E123,W451,F921`` + # We do not want to capture the ``: `` that follows ``noqa`` + # We do not care about the casing of ``noqa`` + # We want a comma-separated list of errors + r"# noqa(?::[\s]?(?P([A-Z]+[0-9]+(?:[,\s]+)?)+))?", + re.IGNORECASE, +) + +NOQA_FILE = re.compile(r"\s*# flake8[:=]\s*noqa", re.I) + +VALID_CODE_PREFIX = re.compile("^[A-Z]{1,3}[0-9]{0,3}$", re.ASCII) diff --git a/.venv/lib/python3.12/site-packages/flake8/discover_files.py b/.venv/lib/python3.12/site-packages/flake8/discover_files.py new file mode 100644 index 0000000..da28ba5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/discover_files.py @@ -0,0 +1,89 @@ +"""Functions related to discovering paths.""" +from __future__ import annotations + +import logging +import os.path +from collections.abc import Generator +from collections.abc import Sequence +from typing import Callable + +from flake8 import utils + +LOG = logging.getLogger(__name__) + + +def _filenames_from( + arg: str, + *, + predicate: Callable[[str], bool], +) -> Generator[str]: + """Generate filenames from an argument. + + :param arg: + Parameter from the command-line. + :param predicate: + Predicate to use to filter out filenames. If the predicate + returns ``True`` we will exclude the filename, otherwise we + will yield it. By default, we include every filename + generated. + :returns: + Generator of paths + """ + if predicate(arg): + return + + if os.path.isdir(arg): + for root, sub_directories, files in os.walk(arg): + # NOTE(sigmavirus24): os.walk() will skip a directory if you + # remove it from the list of sub-directories. + for directory in tuple(sub_directories): + joined = os.path.join(root, directory) + if predicate(joined): + sub_directories.remove(directory) + + for filename in files: + joined = os.path.join(root, filename) + if not predicate(joined): + yield joined + else: + yield arg + + +def expand_paths( + *, + paths: Sequence[str], + stdin_display_name: str, + filename_patterns: Sequence[str], + exclude: Sequence[str], +) -> Generator[str]: + """Expand out ``paths`` from commandline to the lintable files.""" + if not paths: + paths = ["."] + + def is_excluded(arg: str) -> bool: + if arg == "-": + # if the stdin_display_name is the default, always include it + if stdin_display_name == "stdin": + return False + arg = stdin_display_name + + return utils.matches_filename( + arg, + patterns=exclude, + log_message='"%(path)s" has %(whether)sbeen excluded', + logger=LOG, + ) + + return ( + filename + for path in paths + for filename in _filenames_from(path, predicate=is_excluded) + if ( + # always lint `-` + filename == "-" + # always lint explicitly passed (even if not matching filter) + or path == filename + # otherwise, check the file against filtered patterns + or utils.fnmatch(filename, filename_patterns) + ) + ) diff --git a/.venv/lib/python3.12/site-packages/flake8/exceptions.py b/.venv/lib/python3.12/site-packages/flake8/exceptions.py new file mode 100644 index 0000000..18646e7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/exceptions.py @@ -0,0 +1,78 @@ +"""Exception classes for all of Flake8.""" +from __future__ import annotations + + +class Flake8Exception(Exception): + """Plain Flake8 exception.""" + + +class EarlyQuit(Flake8Exception): + """Except raised when encountering a KeyboardInterrupt.""" + + +class ExecutionError(Flake8Exception): + """Exception raised during execution of Flake8.""" + + +class FailedToLoadPlugin(Flake8Exception): + """Exception raised when a plugin fails to load.""" + + FORMAT = 'Flake8 failed to load plugin "%(name)s" due to %(exc)s.' + + def __init__(self, plugin_name: str, exception: Exception) -> None: + """Initialize our FailedToLoadPlugin exception.""" + self.plugin_name = plugin_name + self.original_exception = exception + super().__init__(plugin_name, exception) + + def __str__(self) -> str: + """Format our exception message.""" + return self.FORMAT % { + "name": self.plugin_name, + "exc": self.original_exception, + } + + +class PluginRequestedUnknownParameters(Flake8Exception): + """The plugin requested unknown parameters.""" + + FORMAT = '"%(name)s" requested unknown parameters causing %(exc)s' + + def __init__(self, plugin_name: str, exception: Exception) -> None: + """Pop certain keyword arguments for initialization.""" + self.plugin_name = plugin_name + self.original_exception = exception + super().__init__(plugin_name, exception) + + def __str__(self) -> str: + """Format our exception message.""" + return self.FORMAT % { + "name": self.plugin_name, + "exc": self.original_exception, + } + + +class PluginExecutionFailed(Flake8Exception): + """The plugin failed during execution.""" + + FORMAT = '{fname}: "{plugin}" failed during execution due to {exc!r}' + + def __init__( + self, + filename: str, + plugin_name: str, + exception: Exception, + ) -> None: + """Utilize keyword arguments for message generation.""" + self.filename = filename + self.plugin_name = plugin_name + self.original_exception = exception + super().__init__(filename, plugin_name, exception) + + def __str__(self) -> str: + """Format our exception message.""" + return self.FORMAT.format( + fname=self.filename, + plugin=self.plugin_name, + exc=self.original_exception, + ) diff --git a/.venv/lib/python3.12/site-packages/flake8/formatting/__init__.py b/.venv/lib/python3.12/site-packages/flake8/formatting/__init__.py new file mode 100644 index 0000000..732d0b6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/formatting/__init__.py @@ -0,0 +1,2 @@ +"""Submodule containing the default formatters for Flake8.""" +from __future__ import annotations diff --git a/.venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bf7f9acbbc00af1d5ecdb7a2bd904136fd12b9b GIT binary patch literal 324 zcmXv}u};G<5VaGeLaT0kK*W|Iu>e&t08&9PA(m`iPHyZpRvbIBoucp~d;{OY7m$I4 zi4Cb+7jP(?ba(Hhd+*-8PN!q!V-|jw)c22J_>W)*@aE8iXT;C~G0Xyq>tGRJ)P?ch z(^=LoYt358qg*RTg%WBNxspeW7qpcwDzvGobKKYgMt71{{5<^}v}4>)s8ZTdC$zE; zaoCRln9c$EF+kC})^Gq5`rQ|_87Nyp9<`}#LvwCPcAMPKuV+a%DCEhFW*p{<%FYT) z(lu9WBE^z4oh!9EO^;8A6^s@PhonUGU zTA|`reW0qUh9~G72&rn-hxR}8#gJBYRyGAkx=Jh_Uz0#-<jD`I<;%+@sqq1!&-jdF(aOa-+$LwUBsG;JQ%xi5W9TL7D{ zw0IRYAum?A=DGuHM}=?N7;IdjJUJ_(;;J~Rz6C~c-@+Bl0>5RpER^|2Y%3kbQ)aI2 z-JM#?USJh($EV_K$8lu=;t@nc)^t3A8t71bZ$;_aL2;FF*(EoXL}OlK0$vBF`>i;8 zc5vK)7dn+>7n) z?G4%!nRZFERHzl99(vsaV0_Db2PB#f7Jb2Wr2ZLGW)qM|>>&#Bwn$X7s983@P}DOv zpCXGUp^7mna3B!4`O1)146fZ}r?3EF;@< zMzs=_ayA8At3f8nZcs_tE`4Xw_JPYZG?1aG=b@w^`;a9R*!E@H%k5}(gYs*OT7ml6 zzQh}Ggt8uN2aC!|6U}Xltv7>+uuDK1sL3&LQmn4lUKn_2J}iXFmbmHUq5BwK8C}(m zjM=!uNw8}d5(RlPraO_Gkt1_+@j1CA7JDcXo1B`B$d{sX$%~V-G6?W|GzP|nx%hM> zk%-35kasB3K05W&$q$n)nwA2`+5+5MM;cwQ0n*qtJ|gr6Y)AX52)wk2R$%@K6I@IK z4>j=n4Lsby2O4;^frAZv@adqxhWqNFa19@P!E?^OO&97L`}&jnM<0x@^&YN!2UjoM zlkdtkPpIw*YzbVStLg!tfobOM;Qi!-qdy({b^Pa3YyDGo?|ZAu_io(1QS(T3<E4 zxT?NQjD`p$^--p_q#ufOIGukDel;(E7#b$PA(Kvh`B`|d2S z7HcEX$NQsy;E&0>P+RhJkfl9j6^U;1F+*2_7-*0cBO}YUOO_Xku%*f}p*?DIX34a1 zK}%V*1DZ71y_QPyIp`tTEEWm|vCLL0*p7Ij`6Lj^ck{F+%dhZ6-cX8~dWsx|4XR}` z3DYLWFwAq7WB7kCVuqg~*HccsJ@M(ponue9fh|5LoMSdGF@i9%j=R2cQg%ij12_Jm q$Nb>SO*iuN{EZl4v_3TQ1n&nlVf2+r75Kd)jDBz&=YC<1bN>SCTJ^L5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b225cbb0cc9dde3602e22fc474089e38ee04d4cc GIT binary patch literal 9542 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/default.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/formatting/__pycache__/default.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..052dc2f2020b8a6684da7e754fc046ecf06e0f9c GIT binary patch literal 4756 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 None: + from ctypes import POINTER + from ctypes import windll + from ctypes import WinError + from ctypes import WINFUNCTYPE + from ctypes.wintypes import BOOL + from ctypes.wintypes import DWORD + from ctypes.wintypes import HANDLE + + STD_ERROR_HANDLE = -12 + ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 + + def bool_errcheck(result, func, args): + if not result: + raise WinError() + return args + + GetStdHandle = WINFUNCTYPE(HANDLE, DWORD)( + ("GetStdHandle", windll.kernel32), + ((1, "nStdHandle"),), + ) + + GetConsoleMode = WINFUNCTYPE(BOOL, HANDLE, POINTER(DWORD))( + ("GetConsoleMode", windll.kernel32), + ((1, "hConsoleHandle"), (2, "lpMode")), + ) + GetConsoleMode.errcheck = bool_errcheck + + SetConsoleMode = WINFUNCTYPE(BOOL, HANDLE, DWORD)( + ("SetConsoleMode", windll.kernel32), + ((1, "hConsoleHandle"), (1, "dwMode")), + ) + SetConsoleMode.errcheck = bool_errcheck + + # As of Windows 10, the Windows console supports (some) ANSI escape + # sequences, but it needs to be enabled using `SetConsoleMode` first. + # + # More info on the escape sequences supported: + # https://msdn.microsoft.com/en-us/library/windows/desktop/mt638032(v=vs.85).aspx + stderr = GetStdHandle(STD_ERROR_HANDLE) + flags = GetConsoleMode(stderr) + SetConsoleMode(stderr, flags | ENABLE_VIRTUAL_TERMINAL_PROCESSING) + + try: + _enable() + except OSError: + terminal_supports_color = False + else: + terminal_supports_color = True +else: # pragma: win32 no cover + terminal_supports_color = True diff --git a/.venv/lib/python3.12/site-packages/flake8/formatting/base.py b/.venv/lib/python3.12/site-packages/flake8/formatting/base.py new file mode 100644 index 0000000..d986d65 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/formatting/base.py @@ -0,0 +1,202 @@ +"""The base class and interface for all formatting plugins.""" +from __future__ import annotations + +import argparse +import os +import sys +from typing import IO + +from flake8.formatting import _windows_color +from flake8.statistics import Statistics +from flake8.violation import Violation + + +class BaseFormatter: + """Class defining the formatter interface. + + .. attribute:: options + + The options parsed from both configuration files and the command-line. + + .. attribute:: filename + + If specified by the user, the path to store the results of the run. + + .. attribute:: output_fd + + Initialized when the :meth:`start` is called. This will be a file + object opened for writing. + + .. attribute:: newline + + The string to add to the end of a line. This is only used when the + output filename has been specified. + """ + + def __init__(self, options: argparse.Namespace) -> None: + """Initialize with the options parsed from config and cli. + + This also calls a hook, :meth:`after_init`, so subclasses do not need + to call super to call this method. + + :param options: + User specified configuration parsed from both configuration files + and the command-line interface. + """ + self.options = options + self.filename = options.output_file + self.output_fd: IO[str] | None = None + self.newline = "\n" + self.color = options.color == "always" or ( + options.color == "auto" + and sys.stdout.isatty() + and _windows_color.terminal_supports_color + ) + self.after_init() + + def after_init(self) -> None: + """Initialize the formatter further.""" + + def beginning(self, filename: str) -> None: + """Notify the formatter that we're starting to process a file. + + :param filename: + The name of the file that Flake8 is beginning to report results + from. + """ + + def finished(self, filename: str) -> None: + """Notify the formatter that we've finished processing a file. + + :param filename: + The name of the file that Flake8 has finished reporting results + from. + """ + + def start(self) -> None: + """Prepare the formatter to receive input. + + This defaults to initializing :attr:`output_fd` if :attr:`filename` + """ + if self.filename: + dirname = os.path.dirname(os.path.abspath(self.filename)) + os.makedirs(dirname, exist_ok=True) + self.output_fd = open(self.filename, "a") + + def handle(self, error: Violation) -> None: + """Handle an error reported by Flake8. + + This defaults to calling :meth:`format`, :meth:`show_source`, and + then :meth:`write`. To extend how errors are handled, override this + method. + + :param error: + This will be an instance of + :class:`~flake8.violation.Violation`. + """ + line = self.format(error) + source = self.show_source(error) + self.write(line, source) + + def format(self, error: Violation) -> str | None: + """Format an error reported by Flake8. + + This method **must** be implemented by subclasses. + + :param error: + This will be an instance of + :class:`~flake8.violation.Violation`. + :returns: + The formatted error string. + """ + raise NotImplementedError( + "Subclass of BaseFormatter did not implement" " format." + ) + + def show_statistics(self, statistics: Statistics) -> None: + """Format and print the statistics.""" + for error_code in statistics.error_codes(): + stats_for_error_code = statistics.statistics_for(error_code) + statistic = next(stats_for_error_code) + count = statistic.count + count += sum(stat.count for stat in stats_for_error_code) + self._write(f"{count:<5} {error_code} {statistic.message}") + + def show_benchmarks(self, benchmarks: list[tuple[str, float]]) -> None: + """Format and print the benchmarks.""" + # NOTE(sigmavirus24): The format strings are a little confusing, even + # to me, so here's a quick explanation: + # We specify the named value first followed by a ':' to indicate we're + # formatting the value. + # Next we use '<' to indicate we want the value left aligned. + # Then '10' is the width of the area. + # For floats, finally, we only want only want at most 3 digits after + # the decimal point to be displayed. This is the precision and it + # can not be specified for integers which is why we need two separate + # format strings. + float_format = "{value:<10.3} {statistic}".format + int_format = "{value:<10} {statistic}".format + for statistic, value in benchmarks: + if isinstance(value, int): + benchmark = int_format(statistic=statistic, value=value) + else: + benchmark = float_format(statistic=statistic, value=value) + self._write(benchmark) + + def show_source(self, error: Violation) -> str | None: + """Show the physical line generating the error. + + This also adds an indicator for the particular part of the line that + is reported as generating the problem. + + :param error: + This will be an instance of + :class:`~flake8.violation.Violation`. + :returns: + The formatted error string if the user wants to show the source. + If the user does not want to show the source, this will return + ``None``. + """ + if not self.options.show_source or error.physical_line is None: + return "" + + # Because column numbers are 1-indexed, we need to remove one to get + # the proper number of space characters. + indent = "".join( + c if c.isspace() else " " + for c in error.physical_line[: error.column_number - 1] + ) + # Physical lines have a newline at the end, no need to add an extra + # one + return f"{error.physical_line}{indent}^" + + def _write(self, output: str) -> None: + """Handle logic of whether to use an output file or print().""" + if self.output_fd is not None: + self.output_fd.write(output + self.newline) + if self.output_fd is None or self.options.tee: + sys.stdout.buffer.write(output.encode() + self.newline.encode()) + + def write(self, line: str | None, source: str | None) -> None: + """Write the line either to the output file or stdout. + + This handles deciding whether to write to a file or print to standard + out for subclasses. Override this if you want behaviour that differs + from the default. + + :param line: + The formatted string to print or write. + :param source: + The source code that has been formatted and associated with the + line of output. + """ + if line: + self._write(line) + if source: + self._write(source) + + def stop(self) -> None: + """Clean up after reporting is finished.""" + if self.output_fd is not None: + self.output_fd.close() + self.output_fd = None diff --git a/.venv/lib/python3.12/site-packages/flake8/formatting/default.py b/.venv/lib/python3.12/site-packages/flake8/formatting/default.py new file mode 100644 index 0000000..b5d08ff --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/formatting/default.py @@ -0,0 +1,109 @@ +"""Default formatting class for Flake8.""" +from __future__ import annotations + +from flake8.formatting import base +from flake8.violation import Violation + +COLORS = { + "bold": "\033[1m", + "black": "\033[30m", + "red": "\033[31m", + "green": "\033[32m", + "yellow": "\033[33m", + "blue": "\033[34m", + "magenta": "\033[35m", + "cyan": "\033[36m", + "white": "\033[37m", + "reset": "\033[m", +} +COLORS_OFF = {k: "" for k in COLORS} + + +class SimpleFormatter(base.BaseFormatter): + """Simple abstraction for Default and Pylint formatter commonality. + + Sub-classes of this need to define an ``error_format`` attribute in order + to succeed. The ``format`` method relies on that attribute and expects the + ``error_format`` string to use the old-style formatting strings with named + parameters: + + * code + * text + * path + * row + * col + + """ + + error_format: str + + def format(self, error: Violation) -> str | None: + """Format and write error out. + + If an output filename is specified, write formatted errors to that + file. Otherwise, print the formatted error to standard out. + """ + return self.error_format % { + "code": error.code, + "text": error.text, + "path": error.filename, + "row": error.line_number, + "col": error.column_number, + **(COLORS if self.color else COLORS_OFF), + } + + +class Default(SimpleFormatter): + """Default formatter for Flake8. + + This also handles backwards compatibility for people specifying a custom + format string. + """ + + error_format = ( + "%(bold)s%(path)s%(reset)s" + "%(cyan)s:%(reset)s%(row)d%(cyan)s:%(reset)s%(col)d%(cyan)s:%(reset)s " + "%(bold)s%(red)s%(code)s%(reset)s %(text)s" + ) + + def after_init(self) -> None: + """Check for a custom format string.""" + if self.options.format.lower() != "default": + self.error_format = self.options.format + + +class Pylint(SimpleFormatter): + """Pylint formatter for Flake8.""" + + error_format = "%(path)s:%(row)d: [%(code)s] %(text)s" + + +class FilenameOnly(SimpleFormatter): + """Only print filenames, e.g., flake8 -q.""" + + error_format = "%(path)s" + + def after_init(self) -> None: + """Initialize our set of filenames.""" + self.filenames_already_printed: set[str] = set() + + def show_source(self, error: Violation) -> str | None: + """Do not include the source code.""" + + def format(self, error: Violation) -> str | None: + """Ensure we only print each error once.""" + if error.filename not in self.filenames_already_printed: + self.filenames_already_printed.add(error.filename) + return super().format(error) + else: + return None + + +class Nothing(base.BaseFormatter): + """Print absolutely nothing.""" + + def format(self, error: Violation) -> str | None: + """Do nothing.""" + + def show_source(self, error: Violation) -> str | None: + """Do not print the source.""" diff --git a/.venv/lib/python3.12/site-packages/flake8/main/__init__.py b/.venv/lib/python3.12/site-packages/flake8/main/__init__.py new file mode 100644 index 0000000..85bcff4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/main/__init__.py @@ -0,0 +1,2 @@ +"""Module containing the logic for the Flake8 entry-points.""" +from __future__ import annotations diff --git a/.venv/lib/python3.12/site-packages/flake8/main/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/main/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa53207d65cde5be1fd373780f94bb42ab3f22a7 GIT binary patch literal 319 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/main/__pycache__/cli.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/main/__pycache__/cli.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00758dd7d7e2f08911c7739741659b5dc5ecbc0d GIT binary patch literal 1063 zcmZWo%}*0S6rbsCzqSGfHBr0_VoaLQZq$&NMlgtki}r%28eOKl({^BYcAeQ`OG;7` z5+NSA3IBrOPw}GhAa3M@9=MSZJ$TWXEu{u0**EXa+xMH_`f5>V-yt5r0)>#pu4E6MmQ>88ANB`x)|lW|fT$x5cJ z<+E$I=6uh?%qh5(5k$SfB_3fR4yn(OUqdw)uaJAiBXwyWMmfxw-}8#Hv@?t3Ws@+Q z#J(VKsU3&fu*Wi%in09Q$vdg+fDY(h3eVijGQac7NjPu}tb;Jw_bjLS+F;*1Ro7t$ zE@ubleXRrbPFX-8|H$>v2YVl35#+VCU-KXs7$Pki_5lCC zvlL*CJ%o9EwG>D7h)8<8-c)Uqfj+7d6v*p{1oY37M>U^IFBg>6i!ns`NEIociZsy{ zk*=`0Dtnashi#-uvQbuXvuxiX`2<%5k2J|qs0JeR`-S<+=PM$>HWB9HeBtrz!>Pie zniab+Cu6KxhTXQH!Yr;5wraYxY6k7F;j_EN+jmSsLsF2zE4VJ>dt+y+Hkh_ci$Ocm zmBB~kW$JB+X(_tkcobwVbUWWhMz>pAtzEdA*z9cT-;FC@jPXy#_-A9HJGZZ=-z>ad z*nG6{WIs2&J-s#k_Q6Me>_h^{kuK-;IG44{{ZW1ueInEn9jqn}FKu{M+aZeSxq)H3w%bsG9ilj1!#0(=M-{J46^m@Q8x0nV z{FOf#0hJ3=hUQw4)aOlp2buiV4TO4pm){jmViDSv{^_&0eU7gDfBb(S8SfKP=Rf1`-V}gSkAFD5 zM-O*V7Xw?Nk4)TPe4&6JLk4<64|RnuviKwZ9)C9t>u?XeL29<`ZhB@NkF)!~hMGT) z&a8hy7<=Sxl@Fy>)C{4#PpA)#qT(>$>I6HU ztJ}?%Lz)B{k9ANuKXp%mq2zb`fHYN1*;5GRcq2bdv>YQ~#MC*!z|q8lPIMf73ZQc_ z+%Wfy28kBaEVw93IAyt}8BnSihge!e$?*&e_DM_+_oGdG5n>9Hm$$S7kM8*`!z8}8 zdA#pH+eB0M5`^4SX9D7@f?{l$o{(|P)0V%^`#>m&=eKdM(?u00*;M``?1Pjeg7K#}YcdG+HbV7R$p$?N3pdOa788{FKf2dv|)H zY-x}!{jhRvki9k*(fmSx>(16Fvoy#oeR1QfjW0JwrOSiT4>o%vLHAdfLRRs8zgFnwWy!TUUk&Q?at)xmOgxP1Ll@$9I$Iw-CV zi*G$D6z_ZYykX(oQ(4F-pJq~NX^c{$^x|0t4tX)j!E&GF`@wpuiW1+wnXQTmRf@}r z{eV)Id&-g=N|Xd`>K@Kpwi$c`u@wbAlPxH*tm~F%>Ux;e^?DmXMAs?%F`}Y|QqXC^ z&qUd;5a#2|R;Ha$soSnaXmmo9(r?fNV2I{Hy-ZwbMt|Q`dIqNK9s6&98e@**enxAL W(b5x?eT)jfBlWqoz)7?S(Z2z^(oyUH literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/main/__pycache__/options.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/main/__pycache__/options.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20ea25ef814ba9a4bfdeb20ce61fc76e8987f842 GIT binary patch literal 9900 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/main/application.py b/.venv/lib/python3.12/site-packages/flake8/main/application.py new file mode 100644 index 0000000..4704cbd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/main/application.py @@ -0,0 +1,215 @@ +"""Module containing the application logic for Flake8.""" +from __future__ import annotations + +import argparse +import json +import logging +import time +from collections.abc import Sequence + +import flake8 +from flake8 import checker +from flake8 import defaults +from flake8 import exceptions +from flake8 import style_guide +from flake8.formatting.base import BaseFormatter +from flake8.main import debug +from flake8.options.parse_args import parse_args +from flake8.plugins import finder +from flake8.plugins import reporter + + +LOG = logging.getLogger(__name__) + + +class Application: + """Abstract our application into a class.""" + + def __init__(self) -> None: + """Initialize our application.""" + #: The timestamp when the Application instance was instantiated. + self.start_time = time.time() + #: The timestamp when the Application finished reported errors. + self.end_time: float | None = None + + self.plugins: finder.Plugins | None = None + #: The user-selected formatter from :attr:`formatting_plugins` + self.formatter: BaseFormatter | None = None + #: The :class:`flake8.style_guide.StyleGuideManager` built from the + #: user's options + self.guide: style_guide.StyleGuideManager | None = None + #: The :class:`flake8.checker.Manager` that will handle running all of + #: the checks selected by the user. + self.file_checker_manager: checker.Manager | None = None + + #: The user-supplied options parsed into an instance of + #: :class:`argparse.Namespace` + self.options: argparse.Namespace | None = None + #: The number of errors, warnings, and other messages after running + #: flake8 and taking into account ignored errors and lines. + self.result_count = 0 + #: The total number of errors before accounting for ignored errors and + #: lines. + self.total_result_count = 0 + #: Whether or not something catastrophic happened and we should exit + #: with a non-zero status code + self.catastrophic_failure = False + + def exit_code(self) -> int: + """Return the program exit code.""" + if self.catastrophic_failure: + return 1 + assert self.options is not None + if self.options.exit_zero: + return 0 + else: + return int(self.result_count > 0) + + def make_formatter(self) -> None: + """Initialize a formatter based on the parsed options.""" + assert self.plugins is not None + assert self.options is not None + self.formatter = reporter.make(self.plugins.reporters, self.options) + + def make_guide(self) -> None: + """Initialize our StyleGuide.""" + assert self.formatter is not None + assert self.options is not None + self.guide = style_guide.StyleGuideManager( + self.options, self.formatter + ) + + def make_file_checker_manager(self, argv: Sequence[str]) -> None: + """Initialize our FileChecker Manager.""" + assert self.guide is not None + assert self.plugins is not None + self.file_checker_manager = checker.Manager( + style_guide=self.guide, + plugins=self.plugins.checkers, + argv=argv, + ) + + def run_checks(self) -> None: + """Run the actual checks with the FileChecker Manager. + + This method encapsulates the logic to make a + :class:`~flake8.checker.Manger` instance run the checks it is + managing. + """ + assert self.file_checker_manager is not None + + self.file_checker_manager.start() + try: + self.file_checker_manager.run() + except exceptions.PluginExecutionFailed as plugin_failed: + print(str(plugin_failed)) + print("Run flake8 with greater verbosity to see more details") + self.catastrophic_failure = True + LOG.info("Finished running") + self.file_checker_manager.stop() + self.end_time = time.time() + + def report_benchmarks(self) -> None: + """Aggregate, calculate, and report benchmarks for this run.""" + assert self.options is not None + if not self.options.benchmark: + return + + assert self.file_checker_manager is not None + assert self.end_time is not None + time_elapsed = self.end_time - self.start_time + statistics = [("seconds elapsed", time_elapsed)] + add_statistic = statistics.append + for statistic in defaults.STATISTIC_NAMES + ("files",): + value = self.file_checker_manager.statistics[statistic] + total_description = f"total {statistic} processed" + add_statistic((total_description, value)) + per_second_description = f"{statistic} processed per second" + add_statistic((per_second_description, int(value / time_elapsed))) + + assert self.formatter is not None + self.formatter.show_benchmarks(statistics) + + def report_errors(self) -> None: + """Report all the errors found by flake8 3.0. + + This also updates the :attr:`result_count` attribute with the total + number of errors, warnings, and other messages found. + """ + LOG.info("Reporting errors") + assert self.file_checker_manager is not None + results = self.file_checker_manager.report() + self.total_result_count, self.result_count = results + LOG.info( + "Found a total of %d violations and reported %d", + self.total_result_count, + self.result_count, + ) + + def report_statistics(self) -> None: + """Aggregate and report statistics from this run.""" + assert self.options is not None + if not self.options.statistics: + return + + assert self.formatter is not None + assert self.guide is not None + self.formatter.show_statistics(self.guide.stats) + + def initialize(self, argv: Sequence[str]) -> None: + """Initialize the application to be run. + + This finds the plugins, registers their options, and parses the + command-line arguments. + """ + self.plugins, self.options = parse_args(argv) + + if self.options.bug_report: + info = debug.information(flake8.__version__, self.plugins) + print(json.dumps(info, indent=2, sort_keys=True)) + raise SystemExit(0) + + self.make_formatter() + self.make_guide() + self.make_file_checker_manager(argv) + + def report(self) -> None: + """Report errors, statistics, and benchmarks.""" + assert self.formatter is not None + self.formatter.start() + self.report_errors() + self.report_statistics() + self.report_benchmarks() + self.formatter.stop() + + def _run(self, argv: Sequence[str]) -> None: + self.initialize(argv) + self.run_checks() + self.report() + + def run(self, argv: Sequence[str]) -> None: + """Run our application. + + This method will also handle KeyboardInterrupt exceptions for the + entirety of the flake8 application. If it sees a KeyboardInterrupt it + will forcibly clean up the :class:`~flake8.checker.Manager`. + """ + try: + self._run(argv) + except KeyboardInterrupt as exc: + print("... stopped") + LOG.critical("Caught keyboard interrupt from user") + LOG.exception(exc) + self.catastrophic_failure = True + except exceptions.ExecutionError as exc: + print("There was a critical error during execution of Flake8:") + print(exc) + LOG.exception(exc) + self.catastrophic_failure = True + except exceptions.EarlyQuit: + self.catastrophic_failure = True + print("... stopped while processing files") + else: + assert self.options is not None + if self.options.count: + print(self.result_count) diff --git a/.venv/lib/python3.12/site-packages/flake8/main/cli.py b/.venv/lib/python3.12/site-packages/flake8/main/cli.py new file mode 100644 index 0000000..1a52f36 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/main/cli.py @@ -0,0 +1,24 @@ +"""Command-line implementation of flake8.""" +from __future__ import annotations + +import sys +from collections.abc import Sequence + +from flake8.main import application + + +def main(argv: Sequence[str] | None = None) -> int: + """Execute the main bit of the application. + + This handles the creation of an instance of :class:`Application`, runs it, + and then exits the application. + + :param argv: + The arguments to be passed to the application for parsing. + """ + if argv is None: + argv = sys.argv[1:] + + app = application.Application() + app.run(argv) + return app.exit_code() diff --git a/.venv/lib/python3.12/site-packages/flake8/main/debug.py b/.venv/lib/python3.12/site-packages/flake8/main/debug.py new file mode 100644 index 0000000..c3a8b0b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/main/debug.py @@ -0,0 +1,30 @@ +"""Module containing the logic for our debugging logic.""" +from __future__ import annotations + +import platform +from typing import Any + +from flake8.plugins.finder import Plugins + + +def information(version: str, plugins: Plugins) -> dict[str, Any]: + """Generate the information to be printed for the bug report.""" + versions = sorted( + { + (loaded.plugin.package, loaded.plugin.version) + for loaded in plugins.all_plugins() + if loaded.plugin.package not in {"flake8", "local"} + } + ) + return { + "version": version, + "plugins": [ + {"plugin": plugin, "version": version} + for plugin, version in versions + ], + "platform": { + "python_implementation": platform.python_implementation(), + "python_version": platform.python_version(), + "system": platform.system(), + }, + } diff --git a/.venv/lib/python3.12/site-packages/flake8/main/options.py b/.venv/lib/python3.12/site-packages/flake8/main/options.py new file mode 100644 index 0000000..9d57321 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/main/options.py @@ -0,0 +1,396 @@ +"""Contains the logic for all of the default options for Flake8.""" +from __future__ import annotations + +import argparse + +from flake8 import defaults +from flake8.options.manager import OptionManager + + +def stage1_arg_parser() -> argparse.ArgumentParser: + """Register the preliminary options on our OptionManager. + + The preliminary options include: + + - ``-v``/``--verbose`` + - ``--output-file`` + - ``--append-config`` + - ``--config`` + - ``--isolated`` + - ``--enable-extensions`` + """ + parser = argparse.ArgumentParser(add_help=False) + + parser.add_argument( + "-v", + "--verbose", + default=0, + action="count", + help="Print more information about what is happening in flake8. " + "This option is repeatable and will increase verbosity each " + "time it is repeated.", + ) + + parser.add_argument( + "--output-file", default=None, help="Redirect report to a file." + ) + + # Config file options + + parser.add_argument( + "--append-config", + action="append", + default=[], + help="Provide extra config files to parse in addition to the files " + "found by Flake8 by default. These files are the last ones read " + "and so they take the highest precedence when multiple files " + "provide the same option.", + ) + + parser.add_argument( + "--config", + default=None, + help="Path to the config file that will be the authoritative config " + "source. This will cause Flake8 to ignore all other " + "configuration files.", + ) + + parser.add_argument( + "--isolated", + default=False, + action="store_true", + help="Ignore all configuration files.", + ) + + # Plugin enablement options + + parser.add_argument( + "--enable-extensions", + help="Enable plugins and extensions that are otherwise disabled " + "by default", + ) + + parser.add_argument( + "--require-plugins", + help="Require specific plugins to be installed before running", + ) + + return parser + + +class JobsArgument: + """Type callback for the --jobs argument.""" + + def __init__(self, arg: str) -> None: + """Parse and validate the --jobs argument. + + :param arg: The argument passed by argparse for validation + """ + self.is_auto = False + self.n_jobs = -1 + if arg == "auto": + self.is_auto = True + elif arg.isdigit(): + self.n_jobs = int(arg) + else: + raise argparse.ArgumentTypeError( + f"{arg!r} must be 'auto' or an integer.", + ) + + def __repr__(self) -> str: + """Representation for debugging.""" + return f"{type(self).__name__}({str(self)!r})" + + def __str__(self) -> str: + """Format our JobsArgument class.""" + return "auto" if self.is_auto else str(self.n_jobs) + + +def register_default_options(option_manager: OptionManager) -> None: + """Register the default options on our OptionManager. + + The default options include: + + - ``-q``/``--quiet`` + - ``--color`` + - ``--count`` + - ``--exclude`` + - ``--extend-exclude`` + - ``--filename`` + - ``--format`` + - ``--hang-closing`` + - ``--ignore`` + - ``--extend-ignore`` + - ``--per-file-ignores`` + - ``--max-line-length`` + - ``--max-doc-length`` + - ``--indent-size`` + - ``--select`` + - ``--extend-select`` + - ``--disable-noqa`` + - ``--show-source`` + - ``--statistics`` + - ``--exit-zero`` + - ``-j``/``--jobs`` + - ``--tee`` + - ``--benchmark`` + - ``--bug-report`` + """ + add_option = option_manager.add_option + + add_option( + "-q", + "--quiet", + default=0, + action="count", + parse_from_config=True, + help="Report only file names, or nothing. This option is repeatable.", + ) + + add_option( + "--color", + choices=("auto", "always", "never"), + default="auto", + help="Whether to use color in output. Defaults to `%(default)s`.", + ) + + add_option( + "--count", + action="store_true", + parse_from_config=True, + help="Print total number of errors to standard output after " + "all other output.", + ) + + add_option( + "--exclude", + metavar="patterns", + default=",".join(defaults.EXCLUDE), + comma_separated_list=True, + parse_from_config=True, + normalize_paths=True, + help="Comma-separated list of files or directories to exclude. " + "(Default: %(default)s)", + ) + + add_option( + "--extend-exclude", + metavar="patterns", + default="", + parse_from_config=True, + comma_separated_list=True, + normalize_paths=True, + help="Comma-separated list of files or directories to add to the list " + "of excluded ones.", + ) + + add_option( + "--filename", + metavar="patterns", + default="*.py", + parse_from_config=True, + comma_separated_list=True, + help="Only check for filenames matching the patterns in this comma-" + "separated list. (Default: %(default)s)", + ) + + add_option( + "--stdin-display-name", + default="stdin", + help="The name used when reporting errors from code passed via stdin. " + "This is useful for editors piping the file contents to flake8. " + "(Default: %(default)s)", + ) + + # TODO(sigmavirus24): Figure out --first/--repeat + + # NOTE(sigmavirus24): We can't use choices for this option since users can + # freely provide a format string and that will break if we restrict their + # choices. + add_option( + "--format", + metavar="format", + default="default", + parse_from_config=True, + help=( + f"Format errors according to the chosen formatter " + f"({', '.join(sorted(option_manager.formatter_names))}) " + f"or a format string containing %%-style " + f"mapping keys (code, col, path, row, text). " + f"For example, " + f"``--format=pylint`` or ``--format='%%(path)s %%(code)s'``. " + f"(Default: %(default)s)" + ), + ) + + add_option( + "--hang-closing", + action="store_true", + parse_from_config=True, + help="Hang closing bracket instead of matching indentation of opening " + "bracket's line.", + ) + + add_option( + "--ignore", + metavar="errors", + parse_from_config=True, + comma_separated_list=True, + help=( + f"Comma-separated list of error codes to ignore (or skip). " + f"For example, ``--ignore=E4,E51,W234``. " + f"(Default: {','.join(defaults.IGNORE)})" + ), + ) + + add_option( + "--extend-ignore", + metavar="errors", + parse_from_config=True, + comma_separated_list=True, + help="Comma-separated list of error codes to add to the list of " + "ignored ones. For example, ``--extend-ignore=E4,E51,W234``.", + ) + + add_option( + "--per-file-ignores", + default="", + parse_from_config=True, + help="A pairing of filenames and violation codes that defines which " + "violations to ignore in a particular file. The filenames can be " + "specified in a manner similar to the ``--exclude`` option and the " + "violations work similarly to the ``--ignore`` and ``--select`` " + "options.", + ) + + add_option( + "--max-line-length", + type=int, + metavar="n", + default=defaults.MAX_LINE_LENGTH, + parse_from_config=True, + help="Maximum allowed line length for the entirety of this run. " + "(Default: %(default)s)", + ) + + add_option( + "--max-doc-length", + type=int, + metavar="n", + default=None, + parse_from_config=True, + help="Maximum allowed doc line length for the entirety of this run. " + "(Default: %(default)s)", + ) + add_option( + "--indent-size", + type=int, + metavar="n", + default=defaults.INDENT_SIZE, + parse_from_config=True, + help="Number of spaces used for indentation (Default: %(default)s)", + ) + + add_option( + "--select", + metavar="errors", + parse_from_config=True, + comma_separated_list=True, + help=( + "Limit the reported error codes to codes prefix-matched by this " + "list. " + "You usually do not need to specify this option as the default " + "includes all installed plugin codes. " + "For example, ``--select=E4,E51,W234``." + ), + ) + + add_option( + "--extend-select", + metavar="errors", + parse_from_config=True, + comma_separated_list=True, + help=( + "Add additional error codes to the default ``--select``. " + "You usually do not need to specify this option as the default " + "includes all installed plugin codes. " + "For example, ``--extend-select=E4,E51,W234``." + ), + ) + + add_option( + "--disable-noqa", + default=False, + parse_from_config=True, + action="store_true", + help='Disable the effect of "# noqa". This will report errors on ' + 'lines with "# noqa" at the end.', + ) + + # TODO(sigmavirus24): Decide what to do about --show-pep8 + + add_option( + "--show-source", + action="store_true", + parse_from_config=True, + help="Show the source generate each error or warning.", + ) + add_option( + "--no-show-source", + action="store_false", + dest="show_source", + parse_from_config=False, + help="Negate --show-source", + ) + + add_option( + "--statistics", + action="store_true", + parse_from_config=True, + help="Count errors.", + ) + + # Flake8 options + + add_option( + "--exit-zero", + action="store_true", + help='Exit with status code "0" even if there are errors.', + ) + + add_option( + "-j", + "--jobs", + default="auto", + parse_from_config=True, + type=JobsArgument, + help="Number of subprocesses to use to run checks in parallel. " + 'This is ignored on Windows. The default, "auto", will ' + "auto-detect the number of processors available to use. " + "(Default: %(default)s)", + ) + + add_option( + "--tee", + default=False, + parse_from_config=True, + action="store_true", + help="Write to stdout and output-file.", + ) + + # Benchmarking + + add_option( + "--benchmark", + default=False, + action="store_true", + help="Print benchmark information about this run of Flake8", + ) + + # Debugging + + add_option( + "--bug-report", + action="store_true", + help="Print information necessary when preparing a bug report", + ) diff --git a/.venv/lib/python3.12/site-packages/flake8/options/__init__.py b/.venv/lib/python3.12/site-packages/flake8/options/__init__.py new file mode 100644 index 0000000..3578223 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/options/__init__.py @@ -0,0 +1,13 @@ +"""Package containing the option manager and config management logic. + +- :mod:`flake8.options.config` contains the logic for finding, parsing, and + merging configuration files. + +- :mod:`flake8.options.manager` contains the logic for managing customized + Flake8 command-line and configuration options. + +- :mod:`flake8.options.aggregator` uses objects from both of the above modules + to aggregate configuration into one object used by plugins and Flake8. + +""" +from __future__ import annotations diff --git a/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9cff5dc3e8600b66fc97f26415acfef70479077 GIT binary patch literal 727 zcmZ`%Ka12r6rV{BPIDYK7M2gJ7EFT5fgB>7qLqkn-8Hk5WRe{>nHOdzE9)2WGx$ZW zxo@zomEFmK#Wnge*?`SX5nkra@6Y>lb9$OEI%o0U)h%c2=lC<9XbSkeJXrPmZk`|%y)1B}fSNT>HDtge%-}ErYVfS84JDBbO=Kf+1;rNncA)mS;B)d% zUHLUmd%<@n(irriWA4);-W>~3VJXBe5uzUaV3iOyrnf)X-3Ym_^RH;vu9u~9`Q`ic zLTyAeud^`_WVWev{xyC#}#tn literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/aggregator.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/aggregator.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc8a24c84950881ce8f5f78f4c6e5a9955068ed4 GIT binary patch literal 2126 zcmZ`)&2Jk;6rc63*Sr2oQYUq3NxCV7V5sdTX(S|2QD_kqr7j|HF;uIqcf8(oy=!LH zDG3`CAr3)8BDeOKV^BEs&_94X7pxR)ZCj~Q%YmDr;nEAd{YngNXQi3nym|BH&3nH$ z`*S9fM9}8he;T(F2tD*BQDXzZJl+Cu1F5KrR7Q;%Ofy!EF&<_Ow#xb=SLOUMUX8=Z z8GJKQP53%-LuiUs(Z{@zY^JIy2E`DLFCU8zIvjCkmkDOotcafeR6$LA!&Qe?*@C$C z+k&PMtSPo`nNq!N)&gJ=>HOkFiMDV}uj^Qqtd_SxCB;;wnq}5?O{(h#j^w3e^5ce1 zrG{mwRI(dbGAvE60a9$KO>rQrS%!gYHkk9wG%?Wt4p{TeCzV#q(8C?Dl@t%Xs9DV> zY%LnPiNlR;68H}8+g3}m>XL4kl7DysC@^kHF-^<%HE0Fq!V>oafFr!?S$$Mau_GJ8|tjb z!5%+oDZmaVA6Nkm;h7o-)}8or>S>MLP;>!ZX(9Ak454*?J>l@{f}M%99nRr*Va02- z2q$F&JlH$@3ous&UiQVv?46?@uwO}QT5re)X+;cMHunrgbvxExl+L?&&_>hA>)t^V~wYkeHm=Imn zO-)j9U1=M(w4xYo;C@|tb&3|GI#kQ4DSAq}uG5*w1PwqT=_a78Jnp+}tqvN{fjQ!G;Qfl5jXd

    &CHf5grf+XuYupRTsM?!_>FQH zi?R~FY8ENAR^5?kilbnWN$|yEFMR~v2I>!^qvPGN>CV{nPHb=N^^M9tkH$`PN2fcZ z(>sYqqK-Wi(fC?Sq(&oiSLh5_*Td|j3xR=gtRkkng*n8=-z4TZwJ+d#x#pHe#iNjmjZE%6*M8;xGiPk~ccBuA=PCU$v(?KUyjjsRJFJEaOR!Ov@9*iFc?YSm=f zP0Dh;4T@NniC4L<5b3+=K_}b<{5mwKHg_oeUwA*Bl5({MRSw&-L8?n(s)O1(`d?uw zq_clfR|LW@f=!^eAp4{Q7mj$h@>uW#BBwkoLH9&>t7)li1D_*hn0ik=twYym8HV{Y z#xdOANyNPL5Dnc$xw|NPAHDoLn!JzBJmB*iT9?mv`20;_kDuIN`}`DhwwF2HXJLFG fPW9t30ztAP{e*`ElsefLJ(NWJvHcVv-;aL*x@kLz literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/config.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/config.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87face7db8adf77098710b7c996991df307ad8ac GIT binary patch literal 5415 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 H)9il(6z&ri literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/manager.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/manager.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a280758da4688282b3e73cbfda78168df7194350 GIT binary patch literal 14139 zcmd^GYiwKBeLt6Pk(5Zi-`2GyS)wgbj-QDiNnFcz6T3=t{r1$uZt+VMkfC?h=do%vvox&yT!%Gp}{d8feT6y)>JOB@^PAa3UIy zC8k8YMLlmOoCr@zGg2ZY#*H7}Bm2((7p{5s?tL9!$(p z)}e4b9zGqXEPFZ?iz|pYUyi4zVhKgHg$}-QRJDw~bmV=D+7wC7%!EUVG#i$~DJdF? z$CQ-nOC;r)a6FcgLbKu286~3A38Z9Z(>HCCivMQ#(K_MG94=TwNvQ3J-ToKMPUmDzAaQbtZ39zK5XbGwF5&{{`^4<(~g=wKoopHpJW zNbsDLI5!fHogSH;OPxt3b_Ac=KBB}@(l9EY1>-0qlkxCb>FJRqXE9|&<0m;dJEzu% zv~MAEta2O1(1L$u8o@j(dRf=T`9t@eo$tCAcl@LEp1AWtU1Pp3n5zperkCq>Em;4{ z+48{Cd@b_Uj(eV-2Mw+HhRwN#&9{`LhV6?d?>1~-I8<~ouW$avM|RfOmTwryH4H3T zml}2~M(;N4SU9xeshfXs6}_-*610cJwaMSE7rvXF^+SqoBTOZaA)w2ZQ={)lCYMJ%VV z3orV!{wI$sEy$Lv|4qx4HXG`oJPVm4%36`C(fVetC#g4Rd1H`BGq7~*t8ip@=%{mH) z5kak#w65$zXuh|RrMm_N&B7GB+lV}w$O?(=Z zf>XgEabjZl!o)-%h{7>NJRieQPD@m-qNT~0tfb1}i4PX&G%;~d$E=s>c$b5KtB?U> z6BA}5`herf#MG0=OC_E>+~Er;IXq0|hPA1f!#8`Q$(KzNhBD6o9PDHpge?FEv18xfQ)PYTW-Vhei+op+$ z^&>lzj6vM1oa@U;MTtRv*T$yk(=!-;T^nbl_-thZpGS_Ek}jmM4VBq=c#aR5Z<@3M z@etz&$!4^fnKRK>b4E&q&xPg67RPAcfk>D=Dk~`|j8)XOA!l@bFY@h4t3hMpBUm?D z8TtyaAzIn~m(NJpsuim!Vm*z*BASHSQwAIa2_^8+x>v-R@Eq;>Ct%RtnPhbD1bB#Z zPHA6*S$XY*1X?Lc%ytGq7KX|+Ro1IcqSV~%8iYD1Ms%f%sANjkoa9tm91JToA;PUl zm=n>YJ8{sOVFlKaP2;CZqCwpgwR}R}lsU{1%3;kR+4c- zTb@%IY{oJ?ER(<&aH|fDQ&gu8_o|KfQneAtsdkRIs-5GM>WpZpq}pg3t4=Vs7~}qVhUGY)%tZ3gz8`0vFg!Sf{t}X?xqe% zG?aTN5GmM50f~TeF9js_$^8_NX-KWrtDikj4XE|&rd+1rdo)JovW)8f5~=@(WjQIU zPFVsV!=PXzngr@qn2s;^2x$CYe)pg+ejNccDSUbNlu2H^&S5tFnlmYU_HZ_Gay;&7NI+Tph(Ob6$N<(?~ZKdV=)sS{c~N zM}FVaRq*w^yYsz0xA)|HTOPECMT^jUP*}BETN{eZTHgSJiMZ{KaL2OLvm@WLFW0m0 zqeDMxT<$r%FnZ71wL&xfcFk`dzAAti3h9$S-rsrTX`5-BLk^>CD=E^~5Fz8-H07>& zrcq+;W9a`-MTM)Dh&4vaXeVP|#iqOnH5e+2&8Sn&fR`2&;YvHHv){2?>4sWrCDr)^ zT7h!G<4`Yz%-|~$^nZw0+R4Qws$mlXN}^pbV3W6@Kh+MS){Ig@gMd}uP5HuERXC^6 zM8M-3XSd+cz-a~}X2m|ubnARx{qsMd3FQz1aJ`Fd*p%-c$#sw9yLaWfcP)4C`IXh; zci(SrzxKr&!bea2+vvX^{qfPe`;ILfTzLKR=qi0IGE0s7H>(U$h4AWcI}TbL|7=H4 zePw=*GS}G@s9Jq>M%gJSm7us#ZJn}~4|GGTz^*jgXobynLBskpZ5kMi9GGJDDB3sH z)k>z@s=Zjh3zK}-_Fc={*0TPvuCP5>r%m%hsr9UBR6$MK+tw2>dyYL84rH7f^#?PS zA@Q*g2-xKj)WT^5(@`QSA3#FhOF6dbWGsQte0l8z?l6!7XytuWWIuwEsnmorfT>&o zWm?8RQRz7Z^Q_=+Sg;owTl0;*xyIgyOsLtgaH!y|zk2-g@f(dFd%KHPWMOyZn?`a? zBl)IXxu#vqO?#;1z~xa|XruJO8#``QeV}^r)3&ffV zb{b+al!^q;(zdWJ4yGZr!QT-KxU^%Aj88J1aoiv;lZ{C?tCKt>lTAj)37IT1YME7@ zPVP$Bs4+#kj9*6zGv{AXTS+3AXDc3G-qUy2)AwP=ox}gK<6hvo2Tkqyrk%N_op)Yc zZrZnSn3w3e3v;-y{YL-0P4|48AGCGn+lF&(!;8{V+u=KjyKRTB*#R^D<^?Ydo3vmv z3Yq5)B@^c)8IqSS<{OqBk{=DbE%eq3vqw21Tlmi9J2oKjZK}`+b@cV5k|bAgnJCks z6S6GtCn&1WrT{5@jd@=W4))WS{DkRuFc9Vjnw?RT)rrq$2y%r3@WQ5OV1(BNPeQczX z{uoRHSy(O1L2$9~3skC?3N#shx7W&B=`&m5Vk2*lWXFu>G=x@TEF`e0HpVR7ahoov7gVGhS$S)x?Qx}azQmYA04@CT&kG*mxK{l7rLF$C{3zP=o}WgI|^2LVKs{a~X@?7rN2UaC@N8CBAd? z=F!675U;0y(<_L5B*3n08YuK{DTw{W{^u?B_La{5qMag;JP~#BsGHUAD0+C*%Nn|h zwLDtKe1kt&6(gNvfH127GF*w(-Bfz1MQ)fELk_28y`p;C`7KS)qbM(I?LkS0R&1 zY8X5ekzoFU*~OHfY?uHYMVOJWdIa1803;(ivb3jkq*arKaCyLzwMMO3%Xit^mJe+o zPjDB^3{F|C~9MiMOmvSu1zAmeI0j`Mt0yLPZw4A@i~Rl}78GC^|v z9oHKa)gjHsaK|B2Gdzs*Nx?y{I`v4#B0_Ksh(Iu|7SoEu1^}KRC{k2mi|R5`C_~82 z_4P3znNPEDLL=aarl>CCtWfI?R+#!#2S2rB)mwh}Y0mzJDJd1woa`ZEbd9=huTMTi zD5^U3l-dfjDzWOASE?#`W8Z0Emr`n6t)R^j9=+tMksGA9XCb#CxveE4#U_EEf6)(3Q8a zeJ2g9&v>sq`?&?%$F5FI8Y-7;Of~m7z~GzgoA&E0#=d2b+868#kawcOB`;T?@OAA| zrUv~f)GTWWIu607pz}l=LMPQ0!zXSUaISuG{;SF@+2i2 z%J;gy@qkc-E2^FEL)F1wiYDsP1VwRvUQ<2YxH6@0*Ua|HJtynr3+c!g+#gTEH=sNl zEY##JI@oVTE zj9yaYx+)|O!7IZ?1(4BU@rMQ4J?g-8@eW7;}M_NDDPiO z-^_+5)Bh2*@>d9c1I=UCo(0D*ZT6ad#X8ms_zUD(0?RF19|EYJ7Z#2@=-7B`^Ltxv zZ&{rA=;U(8=N69L_jTO&ciha(n zw4}e2_lUd5(e{~Sw9J1o>$YBYYv9m znoZ(zA|MCA0*@v4g5nLQBX^b?a+&Tnjn9=FSYtA2h%!z(mT5H(CbAM~S3frOE1QCW zT1}rkMkNXAhG#4pKlmw@k(pIYz-w1giD;OGj0ER63oW3OG3&$;1SzL-+7F zv~D!J2brTeU@9bf)2#65r$Gs5Gi};}7(#RDiwCTr{3oi;vqw-CVK-c=AH3C)s~=o& z6#BR3`}gGf_bm56lXGoa@LW4pAbZn>oM*$5XG_65v@n|Y_T;=hdGAopJG6Lq$$RXh zQ_J3CE8f0^(W}QUAIp3Da^AjM_;BdXsk`1o1()}#_p&$d>dd)1ZydSj>MeNc^Pb+j zp58)Zd%m$h*Vw->3d86U45QxO!tf62g12!p=iO3x4sHh{{oYq^fAvo99c8(HU(UP# zfy;BX=5oza!`8(weeBw~UOJl~5Nb~~*n*i^Ft!+1i>UURr>ZPaCdtfM z0@jRrn9JSVdZuw6k4qh&f`#YBXkF)(DsBtz>4cG4o{C3iW}n zR|n7*__~hOcs1U5=A(W0Tt~r#c~@V~)t7f|&AGNN9{bq!^dB<6XtK&548K$`3-G%N zzm$#m$^24QP($6d{1PXo`4$C#iJ+W24`5<^feuLVe<8drfE~XG_a#Z*W zL}0+N$o*WPKx*w%&59j`093lgUvh(K!U>N2wT&SCWZZyN+>+V-vYfntONvQ;e}^_0 zL4?NknvDv#VYqpK-x?70(^LKun#Xn{gj2nw3+Ve2zpudEDMfXc>KLvF?P%e?j!GAV z{2jEi_TVVhf0_=CJt#8IKJ_whL!lD#bKafrrWTKUFMHR!v*2sI`nAhn%lrCszW!U$ zW#85%*H*q30XMfNXu^I1jcGBmCS{JHkbFzrbe@)ff&GC+r zDTsbFVSJ~qG7am$g9cxuQM^LI2?|b9K(=f78x$;1@NEi+S7(;#Tp)UvxbqPhey4vqqkVgqjhBC^-*+nRA{#M zt_EA}yH>Zm?9Z$=At<)7&07jX+lo$?eQ2d_Q_+q$I;h{mb6_fWcRi{>o;Eld66V*0 zm$tIRZCZ@1lH9RSaxrjfXM7+kXlAZ#pp6rREdP^fx~2~kKkZ;Sia@nViS&%Tm7-3V z>*!*f>Wkp|FI{TF^~PZMbVRn%X9qkp_^PeDgBlp8fB-;k*2P#uIi8HcR3>v4Qfr`U z9!JYa^L4sJ6>Nv8Te4{Ki$0pD$5(;2U}78YKw#+4fJ^ zrk^q2PnqYZ%>PqX_X+F!gtdIaI{%xseZm4Oj@J39yrVVeXuaWDc5Ixtg21l&`P4V( zzCL%YWWsp@k^GX9dB|c^c0;GbFr3=B9*~)6-V=` e2eDsm#!ZL=pVEDZ1HU?Me_arU9x@8~4E_&kvKgQN literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/parse_args.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/options/__pycache__/parse_args.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a05069bf39a7bed0cea22e7c2177613d6a785ea9 GIT binary patch literal 2922 zcmZuzO>7&-6`m!R%b(?+DB7V6{m`~#mx)M9wH-TgY&3}#ACx!&oFWKQb+O_OY0}GG zc6Mn+&I(|F9u&YpoRi&C)l*f-haL^&(wh&xn59uN0}C)^qeXD33xzw=>WKgG*m&FpapcH6{rLRhJ$*r z5(FvgVk=Y$jcigy0$WHAw<48@Ym@Y7D^`iQI1E^>$S#fmj#uI?j_Qe4vXT@~boA3? zE%tk{l3EWI;;+trLd+`GIt1ryCds!|Vl|9%v zZ?=GfKxNf1Ok1@ZreR$JJ#roYu7iy#1{^lqt{q@Zt=9>ztF}o%le|%xOG`D>I(Ch< zhM{3n6};5AEu;+v5fWbh3)*|gKIm(X5_rfL?TnNS!4aCF!#y5$(9S6SHxRuM*a$j- zru0)kGUWuD(VyBi;phEp0Y0vPY?;S3;~e=C;*-9{(a(>%!%GC&W8AZu;mDT|o%S`3 zz?$XQmtZ~WYaBfY>_B$e!j!^R$N4|7KCj=u+`WBABI?b^!9|U(qPuq|V zjhy#AID(NSzV40iA>R|+!aw5$)IQAv4CP%0X zc9Gk`x5Tk8`Tjo;4^|pIRI3ZVCr3_{#|X%YHqUUoFP(_*VV~pn=9?V((uuk|;%7Mq zvwX|%=ZLT93R+o&`j_pCyvLE7?{Mr(Eu=}jGB)B)yer(9ilP8=;_$|p6Kh`feL3R( z0=jcXL{7ws)dJViNo4La@ zXv(uGBi*85pge5Y5C#0#Qf(U(#ZX(=q6tQZSQ+uywZd`2_=1jEHjvh$0u-sZ9)zYn z&zpw1W-z-&WpDBdn>>}=xoK3Y>FP~*`Bb}9NJkAqUnPk{;n{4*BCzo4iXBdhprz? zFI>lPkie^g=4z8hS>C)|h<>`>#!H02*^!_kB=;6<48eM%#j_t`8DF3x!7#^QwFcRQ zM$sCC%6@WSPl&qazi%`g!g+Dwl3y<5pR3td`sB_6^fGQ(F9G*=pFh2*Ed@ zkgT#-73I+emc3nNYbv$ZY0Os%`()Y9THnJ_)sc(#J`olk?$&7cyQ``@6`Fn*$Yo1Z@my>197q^ zPTv3ZA6Ndcvb{8zzto$*^hCV;VtisSKGz$c8>X_~I^Q_MQ0=4<ZV*xE~FTOWoy>=Ugu{ zw^iM~*w38rE z0XY=W2PXCA!q5P)wG&i#){WBX4J(RfR^dC2DN3ya@mNs^JBVq7 z2hdd2)OB2SZ)qiUwMy8viLle3%3e*DT57}aST8xUjH;BdkJ=?Gk4ktq|K=G%x%K)N z^b#N7$E*v`Kvo3d2lVzXI`JH(cG2u}l-NZxyJ&6~9S0+{ Yd(wGfVi argparse.Namespace: + """Aggregate and merge CLI and config file options.""" + # Get defaults from the option parser + default_values = manager.parse_args([]) + + # Get the parsed config + parsed_config = config.parse_config(manager, cfg, cfg_dir) + + # store the plugin-set extended default ignore / select + default_values.extended_default_ignore = manager.extended_default_ignore + default_values.extended_default_select = manager.extended_default_select + + # Merge values parsed from config onto the default values returned + for config_name, value in parsed_config.items(): + dest_name = config_name + # If the config name is somehow different from the destination name, + # fetch the destination name from our Option + if not hasattr(default_values, config_name): + dest_val = manager.config_options_dict[config_name].dest + assert isinstance(dest_val, str) + dest_name = dest_val + + LOG.debug( + 'Overriding default value of (%s) for "%s" with (%s)', + getattr(default_values, dest_name, None), + dest_name, + value, + ) + # Override the default values with the config values + setattr(default_values, dest_name, value) + + # Finally parse the command-line options + return manager.parse_args(argv, default_values) diff --git a/.venv/lib/python3.12/site-packages/flake8/options/config.py b/.venv/lib/python3.12/site-packages/flake8/options/config.py new file mode 100644 index 0000000..b51949c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/options/config.py @@ -0,0 +1,140 @@ +"""Config handling logic for Flake8.""" +from __future__ import annotations + +import configparser +import logging +import os.path +from typing import Any + +from flake8 import exceptions +from flake8.defaults import VALID_CODE_PREFIX +from flake8.options.manager import OptionManager + +LOG = logging.getLogger(__name__) + + +def _stat_key(s: str) -> tuple[int, int]: + # same as what's used by samefile / samestat + st = os.stat(s) + return st.st_ino, st.st_dev + + +def _find_config_file(path: str) -> str | None: + # on windows if the homedir isn't detected this returns back `~` + home = os.path.expanduser("~") + try: + home_stat = _stat_key(home) if home != "~" else None + except OSError: # FileNotFoundError / PermissionError / etc. + home_stat = None + + dir_stat = _stat_key(path) + while True: + for candidate in ("setup.cfg", "tox.ini", ".flake8"): + cfg = configparser.RawConfigParser() + cfg_path = os.path.join(path, candidate) + try: + cfg.read(cfg_path, encoding="UTF-8") + except (UnicodeDecodeError, configparser.ParsingError) as e: + LOG.warning("ignoring unparseable config %s: %s", cfg_path, e) + else: + # only consider it a config if it contains flake8 sections + if "flake8" in cfg or "flake8:local-plugins" in cfg: + return cfg_path + + new_path = os.path.dirname(path) + new_dir_stat = _stat_key(new_path) + if new_dir_stat == dir_stat or new_dir_stat == home_stat: + break + else: + path = new_path + dir_stat = new_dir_stat + + # did not find any configuration file + return None + + +def load_config( + config: str | None, + extra: list[str], + *, + isolated: bool = False, +) -> tuple[configparser.RawConfigParser, str]: + """Load the configuration given the user options. + + - in ``isolated`` mode, return an empty configuration + - if a config file is given in ``config`` use that, otherwise attempt to + discover a configuration using ``tox.ini`` / ``setup.cfg`` / ``.flake8`` + - finally, load any ``extra`` configuration files + """ + pwd = os.path.abspath(".") + + if isolated: + return configparser.RawConfigParser(), pwd + + if config is None: + config = _find_config_file(pwd) + + cfg = configparser.RawConfigParser() + if config is not None: + if not cfg.read(config, encoding="UTF-8"): + raise exceptions.ExecutionError( + f"The specified config file does not exist: {config}" + ) + cfg_dir = os.path.dirname(config) + else: + cfg_dir = pwd + + # TODO: remove this and replace it with configuration modifying plugins + # read the additional configs afterwards + for filename in extra: + if not cfg.read(filename, encoding="UTF-8"): + raise exceptions.ExecutionError( + f"The specified config file does not exist: {filename}" + ) + + return cfg, cfg_dir + + +def parse_config( + option_manager: OptionManager, + cfg: configparser.RawConfigParser, + cfg_dir: str, +) -> dict[str, Any]: + """Parse and normalize the typed configuration options.""" + if "flake8" not in cfg: + return {} + + config_dict = {} + + for option_name in cfg["flake8"]: + option = option_manager.config_options_dict.get(option_name) + if option is None: + LOG.debug('Option "%s" is not registered. Ignoring.', option_name) + continue + + # Use the appropriate method to parse the config value + value: Any + if option.type is int or option.action == "count": + value = cfg.getint("flake8", option_name) + elif option.action in {"store_true", "store_false"}: + value = cfg.getboolean("flake8", option_name) + else: + value = cfg.get("flake8", option_name) + + LOG.debug('Option "%s" returned value: %r', option_name, value) + + final_value = option.normalize(value, cfg_dir) + + if option_name in {"ignore", "extend-ignore"}: + for error_code in final_value: + if not VALID_CODE_PREFIX.match(error_code): + raise ValueError( + f"Error code {error_code!r} " + f"supplied to {option_name!r} option " + f"does not match {VALID_CODE_PREFIX.pattern!r}" + ) + + assert option.config_name is not None + config_dict[option.config_name] = final_value + + return config_dict diff --git a/.venv/lib/python3.12/site-packages/flake8/options/manager.py b/.venv/lib/python3.12/site-packages/flake8/options/manager.py new file mode 100644 index 0000000..cb195fe --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/options/manager.py @@ -0,0 +1,320 @@ +"""Option handling and Option management logic.""" +from __future__ import annotations + +import argparse +import enum +import functools +import logging +from collections.abc import Sequence +from typing import Any +from typing import Callable + +from flake8 import utils +from flake8.plugins.finder import Plugins + +LOG = logging.getLogger(__name__) + +# represent a singleton of "not passed arguments". +# an enum is chosen to trick mypy +_ARG = enum.Enum("_ARG", "NO") + + +def _flake8_normalize( + value: str, + *args: str, + comma_separated_list: bool = False, + normalize_paths: bool = False, +) -> str | list[str]: + ret: str | list[str] = value + if comma_separated_list and isinstance(ret, str): + ret = utils.parse_comma_separated_list(value) + + if normalize_paths: + if isinstance(ret, str): + ret = utils.normalize_path(ret, *args) + else: + ret = utils.normalize_paths(ret, *args) + + return ret + + +class Option: + """Our wrapper around an argparse argument parsers to add features.""" + + def __init__( + self, + short_option_name: str | _ARG = _ARG.NO, + long_option_name: str | _ARG = _ARG.NO, + # Options below are taken from argparse.ArgumentParser.add_argument + action: str | type[argparse.Action] | _ARG = _ARG.NO, + default: Any | _ARG = _ARG.NO, + type: Callable[..., Any] | _ARG = _ARG.NO, + dest: str | _ARG = _ARG.NO, + nargs: int | str | _ARG = _ARG.NO, + const: Any | _ARG = _ARG.NO, + choices: Sequence[Any] | _ARG = _ARG.NO, + help: str | _ARG = _ARG.NO, + metavar: str | _ARG = _ARG.NO, + required: bool | _ARG = _ARG.NO, + # Options below here are specific to Flake8 + parse_from_config: bool = False, + comma_separated_list: bool = False, + normalize_paths: bool = False, + ) -> None: + """Initialize an Option instance. + + The following are all passed directly through to argparse. + + :param short_option_name: + The short name of the option (e.g., ``-x``). This will be the + first argument passed to ``ArgumentParser.add_argument`` + :param long_option_name: + The long name of the option (e.g., ``--xtra-long-option``). This + will be the second argument passed to + ``ArgumentParser.add_argument`` + :param default: + Default value of the option. + :param dest: + Attribute name to store parsed option value as. + :param nargs: + Number of arguments to parse for this option. + :param const: + Constant value to store on a common destination. Usually used in + conjunction with ``action="store_const"``. + :param choices: + Possible values for the option. + :param help: + Help text displayed in the usage information. + :param metavar: + Name to use instead of the long option name for help text. + :param required: + Whether this option is required or not. + + The following options may be passed directly through to :mod:`argparse` + but may need some massaging. + + :param type: + A callable to normalize the type (as is the case in + :mod:`argparse`). + :param action: + Any action allowed by :mod:`argparse`. + + The following parameters are for Flake8's option handling alone. + + :param parse_from_config: + Whether or not this option should be parsed out of config files. + :param comma_separated_list: + Whether the option is a comma separated list when parsing from a + config file. + :param normalize_paths: + Whether the option is expecting a path or list of paths and should + attempt to normalize the paths to absolute paths. + """ + if ( + long_option_name is _ARG.NO + and short_option_name is not _ARG.NO + and short_option_name.startswith("--") + ): + short_option_name, long_option_name = _ARG.NO, short_option_name + + # flake8 special type normalization + if comma_separated_list or normalize_paths: + type = functools.partial( + _flake8_normalize, + comma_separated_list=comma_separated_list, + normalize_paths=normalize_paths, + ) + + self.short_option_name = short_option_name + self.long_option_name = long_option_name + self.option_args = [ + x + for x in (short_option_name, long_option_name) + if x is not _ARG.NO + ] + self.action = action + self.default = default + self.type = type + self.dest = dest + self.nargs = nargs + self.const = const + self.choices = choices + self.help = help + self.metavar = metavar + self.required = required + self.option_kwargs: dict[str, Any | _ARG] = { + "action": self.action, + "default": self.default, + "type": self.type, + "dest": self.dest, + "nargs": self.nargs, + "const": self.const, + "choices": self.choices, + "help": self.help, + "metavar": self.metavar, + "required": self.required, + } + + # Set our custom attributes + self.parse_from_config = parse_from_config + self.comma_separated_list = comma_separated_list + self.normalize_paths = normalize_paths + + self.config_name: str | None = None + if parse_from_config: + if long_option_name is _ARG.NO: + raise ValueError( + "When specifying parse_from_config=True, " + "a long_option_name must also be specified." + ) + self.config_name = long_option_name[2:].replace("-", "_") + + self._opt = None + + @property + def filtered_option_kwargs(self) -> dict[str, Any]: + """Return any actually-specified arguments.""" + return { + k: v for k, v in self.option_kwargs.items() if v is not _ARG.NO + } + + def __repr__(self) -> str: # noqa: D105 + parts = [] + for arg in self.option_args: + parts.append(arg) + for k, v in self.filtered_option_kwargs.items(): + parts.append(f"{k}={v!r}") + return f"Option({', '.join(parts)})" + + def normalize(self, value: Any, *normalize_args: str) -> Any: + """Normalize the value based on the option configuration.""" + if self.comma_separated_list and isinstance(value, str): + value = utils.parse_comma_separated_list(value) + + if self.normalize_paths: + if isinstance(value, list): + value = utils.normalize_paths(value, *normalize_args) + else: + value = utils.normalize_path(value, *normalize_args) + + return value + + def to_argparse(self) -> tuple[list[str], dict[str, Any]]: + """Convert a Flake8 Option to argparse ``add_argument`` arguments.""" + return self.option_args, self.filtered_option_kwargs + + +class OptionManager: + """Manage Options and OptionParser while adding post-processing.""" + + def __init__( + self, + *, + version: str, + plugin_versions: str, + parents: list[argparse.ArgumentParser], + formatter_names: list[str], + ) -> None: + """Initialize an instance of an OptionManager.""" + self.formatter_names = formatter_names + self.parser = argparse.ArgumentParser( + prog="flake8", + usage="%(prog)s [options] file file ...", + parents=parents, + epilog=f"Installed plugins: {plugin_versions}", + ) + self.parser.add_argument( + "--version", + action="version", + version=( + f"{version} ({plugin_versions}) " + f"{utils.get_python_version()}" + ), + ) + self.parser.add_argument("filenames", nargs="*", metavar="filename") + + self.config_options_dict: dict[str, Option] = {} + self.options: list[Option] = [] + self.extended_default_ignore: list[str] = [] + self.extended_default_select: list[str] = [] + + self._current_group: argparse._ArgumentGroup | None = None + + # TODO: maybe make this a free function to reduce api surface area + def register_plugins(self, plugins: Plugins) -> None: + """Register the plugin options (if needed).""" + groups: dict[str, argparse._ArgumentGroup] = {} + + def _set_group(name: str) -> None: + try: + self._current_group = groups[name] + except KeyError: + group = self.parser.add_argument_group(name) + self._current_group = groups[name] = group + + for loaded in plugins.all_plugins(): + add_options = getattr(loaded.obj, "add_options", None) + if add_options: + _set_group(loaded.plugin.package) + add_options(self) + + if loaded.plugin.entry_point.group == "flake8.extension": + self.extend_default_select([loaded.entry_name]) + + # isn't strictly necessary, but seems cleaner + self._current_group = None + + def add_option(self, *args: Any, **kwargs: Any) -> None: + """Create and register a new option. + + See parameters for :class:`~flake8.options.manager.Option` for + acceptable arguments to this method. + + .. note:: + + ``short_option_name`` and ``long_option_name`` may be specified + positionally as they are with argparse normally. + """ + option = Option(*args, **kwargs) + option_args, option_kwargs = option.to_argparse() + if self._current_group is not None: + self._current_group.add_argument(*option_args, **option_kwargs) + else: + self.parser.add_argument(*option_args, **option_kwargs) + self.options.append(option) + if option.parse_from_config: + name = option.config_name + assert name is not None + self.config_options_dict[name] = option + self.config_options_dict[name.replace("_", "-")] = option + LOG.debug('Registered option "%s".', option) + + def extend_default_ignore(self, error_codes: Sequence[str]) -> None: + """Extend the default ignore list with the error codes provided. + + :param error_codes: + List of strings that are the error/warning codes with which to + extend the default ignore list. + """ + LOG.debug("Extending default ignore list with %r", error_codes) + self.extended_default_ignore.extend(error_codes) + + def extend_default_select(self, error_codes: Sequence[str]) -> None: + """Extend the default select list with the error codes provided. + + :param error_codes: + List of strings that are the error/warning codes with which + to extend the default select list. + """ + LOG.debug("Extending default select list with %r", error_codes) + self.extended_default_select.extend(error_codes) + + def parse_args( + self, + args: Sequence[str] | None = None, + values: argparse.Namespace | None = None, + ) -> argparse.Namespace: + """Proxy to calling the OptionParser's parse_args method.""" + if values: + self.parser.set_defaults(**vars(values)) + return self.parser.parse_args(args) diff --git a/.venv/lib/python3.12/site-packages/flake8/options/parse_args.py b/.venv/lib/python3.12/site-packages/flake8/options/parse_args.py new file mode 100644 index 0000000..ff5e08f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/options/parse_args.py @@ -0,0 +1,70 @@ +"""Procedure for parsing args, config, loading plugins.""" +from __future__ import annotations + +import argparse +from collections.abc import Sequence + +import flake8 +from flake8.main import options +from flake8.options import aggregator +from flake8.options import config +from flake8.options import manager +from flake8.plugins import finder + + +def parse_args( + argv: Sequence[str], +) -> tuple[finder.Plugins, argparse.Namespace]: + """Procedure for parsing args, config, loading plugins.""" + prelim_parser = options.stage1_arg_parser() + + args0, rest = prelim_parser.parse_known_args(argv) + # XXX (ericvw): Special case "forwarding" the output file option so + # that it can be reparsed again for the BaseFormatter.filename. + if args0.output_file: + rest.extend(("--output-file", args0.output_file)) + + flake8.configure_logging(args0.verbose, args0.output_file) + + cfg, cfg_dir = config.load_config( + config=args0.config, + extra=args0.append_config, + isolated=args0.isolated, + ) + + plugin_opts = finder.parse_plugin_options( + cfg, + cfg_dir, + enable_extensions=args0.enable_extensions, + require_plugins=args0.require_plugins, + ) + raw_plugins = finder.find_plugins(cfg, plugin_opts) + plugins = finder.load_plugins(raw_plugins, plugin_opts) + + option_manager = manager.OptionManager( + version=flake8.__version__, + plugin_versions=plugins.versions_str(), + parents=[prelim_parser], + formatter_names=list(plugins.reporters), + ) + options.register_default_options(option_manager) + option_manager.register_plugins(plugins) + + opts = aggregator.aggregate_options(option_manager, cfg, cfg_dir, rest) + + for loaded in plugins.all_plugins(): + parse_options = getattr(loaded.obj, "parse_options", None) + if parse_options is None: + continue + + # XXX: ideally we wouldn't have two forms of parse_options + try: + parse_options( + option_manager, + opts, + opts.filenames, + ) + except TypeError: + parse_options(opts) + + return plugins, opts diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/__init__.py b/.venv/lib/python3.12/site-packages/flake8/plugins/__init__.py new file mode 100644 index 0000000..b540313 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/plugins/__init__.py @@ -0,0 +1,2 @@ +"""Submodule of built-in plugins and plugin managers.""" +from __future__ import annotations diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04cdccaa76e58924466b71765b1e592d5bd0fa5e GIT binary patch literal 316 zcmXv}y-ve05VjMfLaS~(K*W|Iu_&t40U;H{hFG#yNGB(DS}Tqn*-lY-5uSl(;R(pV z!o-HutqVA6`J}u1KIy*ud7n1Hrp=J*oU3?^b=x? MKhWY6U6_&Af15g7ivR!s literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/finder.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/finder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..332b1e0a7851abc111ef79c502aaca1f69e06024 GIT binary patch literal 15575 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 MDr*+XGA{Z50DIzTy#N3J literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/pycodestyle.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/pycodestyle.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ee35ccb1b21638535a6d3162de1814595c0852f GIT binary patch literal 6522 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 P&EWj=7GQc19?X9M!2I}- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/pyflakes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/flake8/plugins/__pycache__/pyflakes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e50b69b6094d44088fef8a98ae200d792751ad1 GIT binary patch literal 5402 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 M`P88T7Q+Dc7k47(z5oCK literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/finder.py b/.venv/lib/python3.12/site-packages/flake8/plugins/finder.py new file mode 100644 index 0000000..88b66a0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/plugins/finder.py @@ -0,0 +1,365 @@ +"""Functions related to finding and loading plugins.""" +from __future__ import annotations + +import configparser +import importlib.metadata +import inspect +import itertools +import logging +import sys +from collections.abc import Generator +from collections.abc import Iterable +from typing import Any +from typing import NamedTuple + +from flake8 import utils +from flake8.defaults import VALID_CODE_PREFIX +from flake8.exceptions import ExecutionError +from flake8.exceptions import FailedToLoadPlugin + +LOG = logging.getLogger(__name__) + +FLAKE8_GROUPS = frozenset(("flake8.extension", "flake8.report")) + +BANNED_PLUGINS = { + "flake8-colors": "5.0", + "flake8-per-file-ignores": "3.7", +} + + +class Plugin(NamedTuple): + """A plugin before loading.""" + + package: str + version: str + entry_point: importlib.metadata.EntryPoint + + +class LoadedPlugin(NamedTuple): + """Represents a plugin after being imported.""" + + plugin: Plugin + obj: Any + parameters: dict[str, bool] + + @property + def entry_name(self) -> str: + """Return the name given in the packaging metadata.""" + return self.plugin.entry_point.name + + @property + def display_name(self) -> str: + """Return the name for use in user-facing / error messages.""" + return f"{self.plugin.package}[{self.entry_name}]" + + +class Checkers(NamedTuple): + """Classified plugins needed for checking.""" + + tree: list[LoadedPlugin] + logical_line: list[LoadedPlugin] + physical_line: list[LoadedPlugin] + + +class Plugins(NamedTuple): + """Classified plugins.""" + + checkers: Checkers + reporters: dict[str, LoadedPlugin] + disabled: list[LoadedPlugin] + + def all_plugins(self) -> Generator[LoadedPlugin]: + """Return an iterator over all :class:`LoadedPlugin`s.""" + yield from self.checkers.tree + yield from self.checkers.logical_line + yield from self.checkers.physical_line + yield from self.reporters.values() + + def versions_str(self) -> str: + """Return a user-displayed list of plugin versions.""" + return ", ".join( + sorted( + { + f"{loaded.plugin.package}: {loaded.plugin.version}" + for loaded in self.all_plugins() + if loaded.plugin.package not in {"flake8", "local"} + } + ) + ) + + +class PluginOptions(NamedTuple): + """Options related to plugin loading.""" + + local_plugin_paths: tuple[str, ...] + enable_extensions: frozenset[str] + require_plugins: frozenset[str] + + @classmethod + def blank(cls) -> PluginOptions: + """Make a blank PluginOptions, mostly used for tests.""" + return cls( + local_plugin_paths=(), + enable_extensions=frozenset(), + require_plugins=frozenset(), + ) + + +def _parse_option( + cfg: configparser.RawConfigParser, + cfg_opt_name: str, + opt: str | None, +) -> list[str]: + # specified on commandline: use that + if opt is not None: + return utils.parse_comma_separated_list(opt) + else: + # ideally this would reuse our config parsing framework but we need to + # parse this from preliminary options before plugins are enabled + for opt_name in (cfg_opt_name, cfg_opt_name.replace("_", "-")): + val = cfg.get("flake8", opt_name, fallback=None) + if val is not None: + return utils.parse_comma_separated_list(val) + else: + return [] + + +def parse_plugin_options( + cfg: configparser.RawConfigParser, + cfg_dir: str, + *, + enable_extensions: str | None, + require_plugins: str | None, +) -> PluginOptions: + """Parse plugin loading related options.""" + paths_s = cfg.get("flake8:local-plugins", "paths", fallback="").strip() + paths = utils.parse_comma_separated_list(paths_s) + paths = utils.normalize_paths(paths, cfg_dir) + + return PluginOptions( + local_plugin_paths=tuple(paths), + enable_extensions=frozenset( + _parse_option(cfg, "enable_extensions", enable_extensions), + ), + require_plugins=frozenset( + _parse_option(cfg, "require_plugins", require_plugins), + ), + ) + + +def _flake8_plugins( + eps: Iterable[importlib.metadata.EntryPoint], + name: str, + version: str, +) -> Generator[Plugin]: + pyflakes_meta = importlib.metadata.distribution("pyflakes").metadata + pycodestyle_meta = importlib.metadata.distribution("pycodestyle").metadata + + for ep in eps: + if ep.group not in FLAKE8_GROUPS: + continue + + if ep.name == "F": + yield Plugin(pyflakes_meta["name"], pyflakes_meta["version"], ep) + elif ep.name in "EW": + # pycodestyle provides both `E` and `W` -- but our default select + # handles those + # ideally pycodestyle's plugin entrypoints would exactly represent + # the codes they produce... + yield Plugin( + pycodestyle_meta["name"], pycodestyle_meta["version"], ep + ) + else: + yield Plugin(name, version, ep) + + +def _find_importlib_plugins() -> Generator[Plugin]: + # some misconfigured pythons (RHEL) have things on `sys.path` twice + seen = set() + for dist in importlib.metadata.distributions(): + # assigned to prevent continual reparsing + eps = dist.entry_points + + # perf: skip parsing `.metadata` (slow) if no entry points match + if not any(ep.group in FLAKE8_GROUPS for ep in eps): + continue + + # assigned to prevent continual reparsing + meta = dist.metadata + + if meta["name"] in seen: + continue + else: + seen.add(meta["name"]) + + if meta["name"] in BANNED_PLUGINS: + LOG.warning( + "%s plugin is obsolete in flake8>=%s", + meta["name"], + BANNED_PLUGINS[meta["name"]], + ) + continue + elif meta["name"] == "flake8": + # special case flake8 which provides plugins for pyflakes / + # pycodestyle + yield from _flake8_plugins(eps, meta["name"], meta["version"]) + continue + + for ep in eps: + if ep.group in FLAKE8_GROUPS: + yield Plugin(meta["name"], meta["version"], ep) + + +def _find_local_plugins( + cfg: configparser.RawConfigParser, +) -> Generator[Plugin]: + for plugin_type in ("extension", "report"): + group = f"flake8.{plugin_type}" + for plugin_s in utils.parse_comma_separated_list( + cfg.get("flake8:local-plugins", plugin_type, fallback="").strip(), + regexp=utils.LOCAL_PLUGIN_LIST_RE, + ): + name, _, entry_str = plugin_s.partition("=") + name, entry_str = name.strip(), entry_str.strip() + ep = importlib.metadata.EntryPoint(name, entry_str, group) + yield Plugin("local", "local", ep) + + +def _check_required_plugins( + plugins: list[Plugin], + expected: frozenset[str], +) -> None: + plugin_names = { + utils.normalize_pypi_name(plugin.package) for plugin in plugins + } + expected_names = {utils.normalize_pypi_name(name) for name in expected} + missing_plugins = expected_names - plugin_names + + if missing_plugins: + raise ExecutionError( + f"required plugins were not installed!\n" + f"- installed: {', '.join(sorted(plugin_names))}\n" + f"- expected: {', '.join(sorted(expected_names))}\n" + f"- missing: {', '.join(sorted(missing_plugins))}" + ) + + +def find_plugins( + cfg: configparser.RawConfigParser, + opts: PluginOptions, +) -> list[Plugin]: + """Discovers all plugins (but does not load them).""" + ret = [*_find_importlib_plugins(), *_find_local_plugins(cfg)] + + # for determinism, sort the list + ret.sort() + + _check_required_plugins(ret, opts.require_plugins) + + return ret + + +def _parameters_for(func: Any) -> dict[str, bool]: + """Return the parameters for the plugin. + + This will inspect the plugin and return either the function parameters + if the plugin is a function or the parameters for ``__init__`` after + ``self`` if the plugin is a class. + + :returns: + A dictionary mapping the parameter name to whether or not it is + required (a.k.a., is positional only/does not have a default). + """ + is_class = not inspect.isfunction(func) + if is_class: + func = func.__init__ + + parameters = { + parameter.name: parameter.default is inspect.Parameter.empty + for parameter in inspect.signature(func).parameters.values() + if parameter.kind is inspect.Parameter.POSITIONAL_OR_KEYWORD + } + + if is_class: + parameters.pop("self", None) + + return parameters + + +def _load_plugin(plugin: Plugin) -> LoadedPlugin: + try: + obj = plugin.entry_point.load() + except Exception as e: + raise FailedToLoadPlugin(plugin.package, e) + + if not callable(obj): + err = TypeError("expected loaded plugin to be callable") + raise FailedToLoadPlugin(plugin.package, err) + + return LoadedPlugin(plugin, obj, _parameters_for(obj)) + + +def _import_plugins( + plugins: list[Plugin], + opts: PluginOptions, +) -> list[LoadedPlugin]: + sys.path.extend(opts.local_plugin_paths) + return [_load_plugin(p) for p in plugins] + + +def _classify_plugins( + plugins: list[LoadedPlugin], + opts: PluginOptions, +) -> Plugins: + tree = [] + logical_line = [] + physical_line = [] + reporters = {} + disabled = [] + + for loaded in plugins: + if ( + getattr(loaded.obj, "off_by_default", False) + and loaded.plugin.entry_point.name not in opts.enable_extensions + ): + disabled.append(loaded) + elif loaded.plugin.entry_point.group == "flake8.report": + reporters[loaded.entry_name] = loaded + elif "tree" in loaded.parameters: + tree.append(loaded) + elif "logical_line" in loaded.parameters: + logical_line.append(loaded) + elif "physical_line" in loaded.parameters: + physical_line.append(loaded) + else: + raise NotImplementedError(f"what plugin type? {loaded}") + + for loaded in itertools.chain(tree, logical_line, physical_line): + if not VALID_CODE_PREFIX.match(loaded.entry_name): + raise ExecutionError( + f"plugin code for `{loaded.display_name}` does not match " + f"{VALID_CODE_PREFIX.pattern}" + ) + + return Plugins( + checkers=Checkers( + tree=tree, + logical_line=logical_line, + physical_line=physical_line, + ), + reporters=reporters, + disabled=disabled, + ) + + +def load_plugins( + plugins: list[Plugin], + opts: PluginOptions, +) -> Plugins: + """Load and classify all flake8 plugins. + + - first: extends ``sys.path`` with ``paths`` (to import local plugins) + - next: converts the ``Plugin``s to ``LoadedPlugins`` + - finally: classifies plugins into their specific types + """ + return _classify_plugins(_import_plugins(plugins, opts), opts) diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/pycodestyle.py b/.venv/lib/python3.12/site-packages/flake8/plugins/pycodestyle.py new file mode 100644 index 0000000..cd760dc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/plugins/pycodestyle.py @@ -0,0 +1,112 @@ +"""Generated using ./bin/gen-pycodestyle-plugin.""" +# fmt: off +from __future__ import annotations + +from collections.abc import Generator +from typing import Any + +from pycodestyle import ambiguous_identifier as _ambiguous_identifier +from pycodestyle import bare_except as _bare_except +from pycodestyle import blank_lines as _blank_lines +from pycodestyle import break_after_binary_operator as _break_after_binary_operator # noqa: E501 +from pycodestyle import break_before_binary_operator as _break_before_binary_operator # noqa: E501 +from pycodestyle import comparison_negative as _comparison_negative +from pycodestyle import comparison_to_singleton as _comparison_to_singleton +from pycodestyle import comparison_type as _comparison_type +from pycodestyle import compound_statements as _compound_statements +from pycodestyle import continued_indentation as _continued_indentation +from pycodestyle import explicit_line_join as _explicit_line_join +from pycodestyle import extraneous_whitespace as _extraneous_whitespace +from pycodestyle import imports_on_separate_lines as _imports_on_separate_lines +from pycodestyle import indentation as _indentation +from pycodestyle import maximum_doc_length as _maximum_doc_length +from pycodestyle import maximum_line_length as _maximum_line_length +from pycodestyle import missing_whitespace as _missing_whitespace +from pycodestyle import missing_whitespace_after_keyword as _missing_whitespace_after_keyword # noqa: E501 +from pycodestyle import module_imports_on_top_of_file as _module_imports_on_top_of_file # noqa: E501 +from pycodestyle import python_3000_invalid_escape_sequence as _python_3000_invalid_escape_sequence # noqa: E501 +from pycodestyle import tabs_obsolete as _tabs_obsolete +from pycodestyle import tabs_or_spaces as _tabs_or_spaces +from pycodestyle import trailing_blank_lines as _trailing_blank_lines +from pycodestyle import trailing_whitespace as _trailing_whitespace +from pycodestyle import whitespace_around_comma as _whitespace_around_comma +from pycodestyle import whitespace_around_keywords as _whitespace_around_keywords # noqa: E501 +from pycodestyle import whitespace_around_named_parameter_equals as _whitespace_around_named_parameter_equals # noqa: E501 +from pycodestyle import whitespace_around_operator as _whitespace_around_operator # noqa: E501 +from pycodestyle import whitespace_before_comment as _whitespace_before_comment +from pycodestyle import whitespace_before_parameters as _whitespace_before_parameters # noqa: E501 + + +def pycodestyle_logical( + blank_before: Any, + blank_lines: Any, + checker_state: Any, + hang_closing: Any, + indent_char: Any, + indent_level: Any, + indent_size: Any, + line_number: Any, + lines: Any, + logical_line: Any, + max_doc_length: Any, + noqa: Any, + previous_indent_level: Any, + previous_logical: Any, + previous_unindented_logical_line: Any, + tokens: Any, + verbose: Any, +) -> Generator[tuple[int, str]]: + """Run pycodestyle logical checks.""" + yield from _ambiguous_identifier(logical_line, tokens) + yield from _bare_except(logical_line, noqa) + yield from _blank_lines(logical_line, blank_lines, indent_level, line_number, blank_before, previous_logical, previous_unindented_logical_line, previous_indent_level, lines) # noqa: E501 + yield from _break_after_binary_operator(logical_line, tokens) + yield from _break_before_binary_operator(logical_line, tokens) + yield from _comparison_negative(logical_line) + yield from _comparison_to_singleton(logical_line, noqa) + yield from _comparison_type(logical_line, noqa) + yield from _compound_statements(logical_line) + yield from _continued_indentation(logical_line, tokens, indent_level, hang_closing, indent_char, indent_size, noqa, verbose) # noqa: E501 + yield from _explicit_line_join(logical_line, tokens) + yield from _extraneous_whitespace(logical_line) + yield from _imports_on_separate_lines(logical_line) + yield from _indentation(logical_line, previous_logical, indent_char, indent_level, previous_indent_level, indent_size) # noqa: E501 + yield from _maximum_doc_length(logical_line, max_doc_length, noqa, tokens) + yield from _missing_whitespace(logical_line, tokens) + yield from _missing_whitespace_after_keyword(logical_line, tokens) + yield from _module_imports_on_top_of_file(logical_line, indent_level, checker_state, noqa) # noqa: E501 + yield from _python_3000_invalid_escape_sequence(logical_line, tokens, noqa) + yield from _whitespace_around_comma(logical_line) + yield from _whitespace_around_keywords(logical_line) + yield from _whitespace_around_named_parameter_equals(logical_line, tokens) + yield from _whitespace_around_operator(logical_line) + yield from _whitespace_before_comment(logical_line, tokens) + yield from _whitespace_before_parameters(logical_line, tokens) + + +def pycodestyle_physical( + indent_char: Any, + line_number: Any, + lines: Any, + max_line_length: Any, + multiline: Any, + noqa: Any, + physical_line: Any, + total_lines: Any, +) -> Generator[tuple[int, str]]: + """Run pycodestyle physical checks.""" + ret = _maximum_line_length(physical_line, max_line_length, multiline, line_number, noqa) # noqa: E501 + if ret is not None: + yield ret + ret = _tabs_obsolete(physical_line) + if ret is not None: + yield ret + ret = _tabs_or_spaces(physical_line, indent_char) + if ret is not None: + yield ret + ret = _trailing_blank_lines(physical_line, lines, line_number, total_lines) + if ret is not None: + yield ret + ret = _trailing_whitespace(physical_line) + if ret is not None: + yield ret diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/pyflakes.py b/.venv/lib/python3.12/site-packages/flake8/plugins/pyflakes.py new file mode 100644 index 0000000..66d8c1c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/plugins/pyflakes.py @@ -0,0 +1,114 @@ +"""Plugin built-in to Flake8 to treat pyflakes as a plugin.""" +from __future__ import annotations + +import argparse +import ast +import logging +from collections.abc import Generator +from typing import Any + +import pyflakes.checker + +from flake8.options.manager import OptionManager + +LOG = logging.getLogger(__name__) + +FLAKE8_PYFLAKES_CODES = { + "UnusedImport": "F401", + "ImportShadowedByLoopVar": "F402", + "ImportStarUsed": "F403", + "LateFutureImport": "F404", + "ImportStarUsage": "F405", + "ImportStarNotPermitted": "F406", + "FutureFeatureNotDefined": "F407", + "PercentFormatInvalidFormat": "F501", + "PercentFormatExpectedMapping": "F502", + "PercentFormatExpectedSequence": "F503", + "PercentFormatExtraNamedArguments": "F504", + "PercentFormatMissingArgument": "F505", + "PercentFormatMixedPositionalAndNamed": "F506", + "PercentFormatPositionalCountMismatch": "F507", + "PercentFormatStarRequiresSequence": "F508", + "PercentFormatUnsupportedFormatCharacter": "F509", + "StringDotFormatInvalidFormat": "F521", + "StringDotFormatExtraNamedArguments": "F522", + "StringDotFormatExtraPositionalArguments": "F523", + "StringDotFormatMissingArgument": "F524", + "StringDotFormatMixingAutomatic": "F525", + "FStringMissingPlaceholders": "F541", + "TStringMissingPlaceholders": "F542", + "MultiValueRepeatedKeyLiteral": "F601", + "MultiValueRepeatedKeyVariable": "F602", + "TooManyExpressionsInStarredAssignment": "F621", + "TwoStarredExpressions": "F622", + "AssertTuple": "F631", + "IsLiteral": "F632", + "InvalidPrintSyntax": "F633", + "IfTuple": "F634", + "BreakOutsideLoop": "F701", + "ContinueOutsideLoop": "F702", + "YieldOutsideFunction": "F704", + "ReturnOutsideFunction": "F706", + "DefaultExceptNotLast": "F707", + "DoctestSyntaxError": "F721", + "ForwardAnnotationSyntaxError": "F722", + "RedefinedWhileUnused": "F811", + "UndefinedName": "F821", + "UndefinedExport": "F822", + "UndefinedLocal": "F823", + "UnusedIndirectAssignment": "F824", + "DuplicateArgument": "F831", + "UnusedVariable": "F841", + "UnusedAnnotation": "F842", + "RaiseNotImplemented": "F901", +} + + +class FlakesChecker(pyflakes.checker.Checker): + """Subclass the Pyflakes checker to conform with the flake8 API.""" + + with_doctest = False + + def __init__(self, tree: ast.AST, filename: str) -> None: + """Initialize the PyFlakes plugin with an AST tree and filename.""" + super().__init__( + tree, filename=filename, withDoctest=self.with_doctest + ) + + @classmethod + def add_options(cls, parser: OptionManager) -> None: + """Register options for PyFlakes on the Flake8 OptionManager.""" + parser.add_option( + "--builtins", + parse_from_config=True, + comma_separated_list=True, + help="define more built-ins, comma separated", + ) + parser.add_option( + "--doctests", + default=False, + action="store_true", + parse_from_config=True, + help="also check syntax of the doctests", + ) + + @classmethod + def parse_options(cls, options: argparse.Namespace) -> None: + """Parse option values from Flake8's OptionManager.""" + if options.builtins: + cls.builtIns = cls.builtIns.union(options.builtins) + cls.with_doctest = options.doctests + + def run(self) -> Generator[tuple[int, int, str, type[Any]]]: + """Run the plugin.""" + for message in self.messages: + col = getattr(message, "col", 0) + yield ( + message.lineno, + col, + "{} {}".format( + FLAKE8_PYFLAKES_CODES.get(type(message).__name__, "F999"), + message.message % message.message_args, + ), + message.__class__, + ) diff --git a/.venv/lib/python3.12/site-packages/flake8/plugins/reporter.py b/.venv/lib/python3.12/site-packages/flake8/plugins/reporter.py new file mode 100644 index 0000000..a5749c0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/plugins/reporter.py @@ -0,0 +1,42 @@ +"""Functions for constructing the requested report plugin.""" +from __future__ import annotations + +import argparse +import logging + +from flake8.formatting.base import BaseFormatter +from flake8.plugins.finder import LoadedPlugin + +LOG = logging.getLogger(__name__) + + +def make( + reporters: dict[str, LoadedPlugin], + options: argparse.Namespace, +) -> BaseFormatter: + """Make the formatter from the requested user options. + + - if :option:`flake8 --quiet` is specified, return the ``quiet-filename`` + formatter. + - if :option:`flake8 --quiet` is specified at least twice, return the + ``quiet-nothing`` formatter. + - otherwise attempt to return the formatter by name. + - failing that, assume it is a format string and return the ``default`` + formatter. + """ + format_name = options.format + if options.quiet == 1: + format_name = "quiet-filename" + elif options.quiet >= 2: + format_name = "quiet-nothing" + + try: + format_plugin = reporters[format_name] + except KeyError: + LOG.warning( + "%r is an unknown formatter. Falling back to default.", + format_name, + ) + format_plugin = reporters["default"] + + return format_plugin.obj(options) diff --git a/.venv/lib/python3.12/site-packages/flake8/processor.py b/.venv/lib/python3.12/site-packages/flake8/processor.py new file mode 100644 index 0000000..ccb4c57 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/processor.py @@ -0,0 +1,454 @@ +"""Module containing our file processor that tokenizes a file for checks.""" +from __future__ import annotations + +import argparse +import ast +import functools +import logging +import tokenize +from collections.abc import Generator +from typing import Any + +from flake8 import defaults +from flake8 import utils +from flake8._compat import FSTRING_END +from flake8._compat import FSTRING_MIDDLE +from flake8._compat import TSTRING_END +from flake8._compat import TSTRING_MIDDLE +from flake8.plugins.finder import LoadedPlugin + +LOG = logging.getLogger(__name__) +NEWLINE = frozenset([tokenize.NL, tokenize.NEWLINE]) + +SKIP_TOKENS = frozenset( + [tokenize.NL, tokenize.NEWLINE, tokenize.INDENT, tokenize.DEDENT] +) + +_LogicalMapping = list[tuple[int, tuple[int, int]]] +_Logical = tuple[list[str], list[str], _LogicalMapping] + + +class FileProcessor: + """Processes a file and holds state. + + This processes a file by generating tokens, logical and physical lines, + and AST trees. This also provides a way of passing state about the file + to checks expecting that state. Any public attribute on this object can + be requested by a plugin. The known public attributes are: + + - :attr:`blank_before` + - :attr:`blank_lines` + - :attr:`checker_state` + - :attr:`indent_char` + - :attr:`indent_level` + - :attr:`line_number` + - :attr:`logical_line` + - :attr:`max_line_length` + - :attr:`max_doc_length` + - :attr:`multiline` + - :attr:`noqa` + - :attr:`previous_indent_level` + - :attr:`previous_logical` + - :attr:`previous_unindented_logical_line` + - :attr:`tokens` + - :attr:`file_tokens` + - :attr:`total_lines` + - :attr:`verbose` + """ + + #: always ``False``, included for compatibility + noqa = False + + def __init__( + self, + filename: str, + options: argparse.Namespace, + lines: list[str] | None = None, + ) -> None: + """Initialize our file processor. + + :param filename: Name of the file to process + """ + self.options = options + self.filename = filename + self.lines = lines if lines is not None else self.read_lines() + self.strip_utf_bom() + + # Defaults for public attributes + #: Number of preceding blank lines + self.blank_before = 0 + #: Number of blank lines + self.blank_lines = 0 + #: Checker states for each plugin? + self._checker_states: dict[str, dict[Any, Any]] = {} + #: Current checker state + self.checker_state: dict[Any, Any] = {} + #: User provided option for hang closing + self.hang_closing = options.hang_closing + #: Character used for indentation + self.indent_char: str | None = None + #: Current level of indentation + self.indent_level = 0 + #: Number of spaces used for indentation + self.indent_size = options.indent_size + #: Line number in the file + self.line_number = 0 + #: Current logical line + self.logical_line = "" + #: Maximum line length as configured by the user + self.max_line_length = options.max_line_length + #: Maximum docstring / comment line length as configured by the user + self.max_doc_length = options.max_doc_length + #: Whether the current physical line is multiline + self.multiline = False + #: Previous level of indentation + self.previous_indent_level = 0 + #: Previous logical line + self.previous_logical = "" + #: Previous unindented (i.e. top-level) logical line + self.previous_unindented_logical_line = "" + #: Current set of tokens + self.tokens: list[tokenize.TokenInfo] = [] + #: Total number of lines in the file + self.total_lines = len(self.lines) + #: Verbosity level of Flake8 + self.verbose = options.verbose + #: Statistics dictionary + self.statistics = {"logical lines": 0} + self._fstring_start = self._tstring_start = -1 + + @functools.cached_property + def file_tokens(self) -> list[tokenize.TokenInfo]: + """Return the complete set of tokens for a file.""" + line_iter = iter(self.lines) + return list(tokenize.generate_tokens(lambda: next(line_iter))) + + def fstring_start(self, lineno: int) -> None: # pragma: >=3.12 cover + """Signal the beginning of an fstring.""" + self._fstring_start = lineno + + def tstring_start(self, lineno: int) -> None: # pragma: >=3.14 cover + """Signal the beginning of an tstring.""" + self._tstring_start = lineno + + def multiline_string(self, token: tokenize.TokenInfo) -> Generator[str]: + """Iterate through the lines of a multiline string.""" + if token.type == FSTRING_END: # pragma: >=3.12 cover + start = self._fstring_start + elif token.type == TSTRING_END: # pragma: >=3.14 cover + start = self._tstring_start + else: + start = token.start[0] + + self.multiline = True + self.line_number = start + # intentionally don't include the last line, that line will be + # terminated later by a future end-of-line + for _ in range(start, token.end[0]): + yield self.lines[self.line_number - 1] + self.line_number += 1 + self.multiline = False + + def reset_blank_before(self) -> None: + """Reset the blank_before attribute to zero.""" + self.blank_before = 0 + + def delete_first_token(self) -> None: + """Delete the first token in the list of tokens.""" + del self.tokens[0] + + def visited_new_blank_line(self) -> None: + """Note that we visited a new blank line.""" + self.blank_lines += 1 + + def update_state(self, mapping: _LogicalMapping) -> None: + """Update the indent level based on the logical line mapping.""" + (start_row, start_col) = mapping[0][1] + start_line = self.lines[start_row - 1] + self.indent_level = expand_indent(start_line[:start_col]) + if self.blank_before < self.blank_lines: + self.blank_before = self.blank_lines + + def update_checker_state_for(self, plugin: LoadedPlugin) -> None: + """Update the checker_state attribute for the plugin.""" + if "checker_state" in plugin.parameters: + self.checker_state = self._checker_states.setdefault( + plugin.entry_name, {} + ) + + def next_logical_line(self) -> None: + """Record the previous logical line. + + This also resets the tokens list and the blank_lines count. + """ + if self.logical_line: + self.previous_indent_level = self.indent_level + self.previous_logical = self.logical_line + if not self.indent_level: + self.previous_unindented_logical_line = self.logical_line + self.blank_lines = 0 + self.tokens = [] + + def build_logical_line_tokens(self) -> _Logical: # noqa: C901 + """Build the mapping, comments, and logical line lists.""" + logical = [] + comments = [] + mapping: _LogicalMapping = [] + length = 0 + previous_row = previous_column = None + for token_type, text, start, end, line in self.tokens: + if token_type in SKIP_TOKENS: + continue + if not mapping: + mapping = [(0, start)] + if token_type == tokenize.COMMENT: + comments.append(text) + continue + if token_type == tokenize.STRING: + text = mutate_string(text) + elif token_type in { + FSTRING_MIDDLE, + TSTRING_MIDDLE, + }: # pragma: >=3.12 cover # noqa: E501 + # A curly brace in an FSTRING_MIDDLE token must be an escaped + # curly brace. Both 'text' and 'end' will account for the + # escaped version of the token (i.e. a single brace) rather + # than the raw double brace version, so we must counteract this + brace_offset = text.count("{") + text.count("}") + text = "x" * (len(text) + brace_offset) + end = (end[0], end[1] + brace_offset) + if previous_row is not None and previous_column is not None: + (start_row, start_column) = start + if previous_row != start_row: + row_index = previous_row - 1 + column_index = previous_column - 1 + previous_text = self.lines[row_index][column_index] + if previous_text == "," or ( + previous_text not in "{[(" and text not in "}])" + ): + text = f" {text}" + elif previous_column != start_column: + text = line[previous_column:start_column] + text + logical.append(text) + length += len(text) + mapping.append((length, end)) + (previous_row, previous_column) = end + return comments, logical, mapping + + def build_ast(self) -> ast.AST: + """Build an abstract syntax tree from the list of lines.""" + return ast.parse("".join(self.lines)) + + def build_logical_line(self) -> tuple[str, str, _LogicalMapping]: + """Build a logical line from the current tokens list.""" + comments, logical, mapping_list = self.build_logical_line_tokens() + joined_comments = "".join(comments) + self.logical_line = "".join(logical) + self.statistics["logical lines"] += 1 + return joined_comments, self.logical_line, mapping_list + + def keyword_arguments_for( + self, + parameters: dict[str, bool], + arguments: dict[str, Any], + ) -> dict[str, Any]: + """Generate the keyword arguments for a list of parameters.""" + ret = {} + for param, required in parameters.items(): + if param in arguments: + continue + try: + ret[param] = getattr(self, param) + except AttributeError: + if required: + raise + else: + LOG.warning( + 'Plugin requested optional parameter "%s" ' + "but this is not an available parameter.", + param, + ) + return ret + + def generate_tokens(self) -> Generator[tokenize.TokenInfo]: + """Tokenize the file and yield the tokens.""" + for token in tokenize.generate_tokens(self.next_line): + if token[2][0] > self.total_lines: + break + self.tokens.append(token) + yield token + + def _noqa_line_range(self, min_line: int, max_line: int) -> dict[int, str]: + line_range = range(min_line, max_line + 1) + joined = "".join(self.lines[min_line - 1 : max_line]) + return dict.fromkeys(line_range, joined) + + @functools.cached_property + def _noqa_line_mapping(self) -> dict[int, str]: + """Map from line number to the line we'll search for `noqa` in.""" + try: + file_tokens = self.file_tokens + except (tokenize.TokenError, SyntaxError): + # if we failed to parse the file tokens, we'll always fail in + # the future, so set this so the code does not try again + return {} + else: + ret = {} + + min_line = len(self.lines) + 2 + max_line = -1 + for tp, _, (s_line, _), (e_line, _), _ in file_tokens: + if tp == tokenize.ENDMARKER or tp == tokenize.DEDENT: + continue + + min_line = min(min_line, s_line) + max_line = max(max_line, e_line) + + if tp in (tokenize.NL, tokenize.NEWLINE): + ret.update(self._noqa_line_range(min_line, max_line)) + + min_line = len(self.lines) + 2 + max_line = -1 + + return ret + + def noqa_line_for(self, line_number: int) -> str | None: + """Retrieve the line which will be used to determine noqa.""" + # NOTE(sigmavirus24): Some plugins choose to report errors for empty + # files on Line 1. In those cases, we shouldn't bother trying to + # retrieve a physical line (since none exist). + return self._noqa_line_mapping.get(line_number) + + def next_line(self) -> str: + """Get the next line from the list.""" + if self.line_number >= self.total_lines: + return "" + line = self.lines[self.line_number] + self.line_number += 1 + if self.indent_char is None and line[:1] in defaults.WHITESPACE: + self.indent_char = line[0] + return line + + def read_lines(self) -> list[str]: + """Read the lines for this file checker.""" + if self.filename == "-": + self.filename = self.options.stdin_display_name or "stdin" + lines = self.read_lines_from_stdin() + else: + lines = self.read_lines_from_filename() + return lines + + def read_lines_from_filename(self) -> list[str]: + """Read the lines for a file.""" + try: + with tokenize.open(self.filename) as fd: + return fd.readlines() + except (SyntaxError, UnicodeError): + # If we can't detect the codec with tokenize.detect_encoding, or + # the detected encoding is incorrect, just fallback to latin-1. + with open(self.filename, encoding="latin-1") as fd: + return fd.readlines() + + def read_lines_from_stdin(self) -> list[str]: + """Read the lines from standard in.""" + return utils.stdin_get_lines() + + def should_ignore_file(self) -> bool: + """Check if ``flake8: noqa`` is in the file to be ignored. + + :returns: + True if a line matches :attr:`defaults.NOQA_FILE`, + otherwise False + """ + if not self.options.disable_noqa and any( + defaults.NOQA_FILE.match(line) for line in self.lines + ): + return True + elif any(defaults.NOQA_FILE.search(line) for line in self.lines): + LOG.warning( + "Detected `flake8: noqa` on line with code. To ignore an " + "error on a line use `noqa` instead." + ) + return False + else: + return False + + def strip_utf_bom(self) -> None: + """Strip the UTF bom from the lines of the file.""" + if not self.lines: + # If we have nothing to analyze quit early + return + + # If the first byte of the file is a UTF-8 BOM, strip it + if self.lines[0][:1] == "\uFEFF": + self.lines[0] = self.lines[0][1:] + elif self.lines[0][:3] == "\xEF\xBB\xBF": + self.lines[0] = self.lines[0][3:] + + +def is_eol_token(token: tokenize.TokenInfo) -> bool: + """Check if the token is an end-of-line token.""" + return token[0] in NEWLINE or token[4][token[3][1] :].lstrip() == "\\\n" + + +def is_multiline_string(token: tokenize.TokenInfo) -> bool: + """Check if this is a multiline string.""" + return token.type in {FSTRING_END, TSTRING_END} or ( + token.type == tokenize.STRING and "\n" in token.string + ) + + +def token_is_newline(token: tokenize.TokenInfo) -> bool: + """Check if the token type is a newline token type.""" + return token[0] in NEWLINE + + +def count_parentheses(current_parentheses_count: int, token_text: str) -> int: + """Count the number of parentheses.""" + if token_text in "([{": # nosec + return current_parentheses_count + 1 + elif token_text in "}])": # nosec + return current_parentheses_count - 1 + return current_parentheses_count + + +def expand_indent(line: str) -> int: + r"""Return the amount of indentation. + + Tabs are expanded to the next multiple of 8. + + >>> expand_indent(' ') + 4 + >>> expand_indent('\t') + 8 + >>> expand_indent(' \t') + 8 + >>> expand_indent(' \t') + 16 + """ + return len(line.expandtabs(8)) + + +# NOTE(sigmavirus24): This was taken wholesale from +# https://github.com/PyCQA/pycodestyle. The in-line comments were edited to be +# more descriptive. +def mutate_string(text: str) -> str: + """Replace contents with 'xxx' to prevent syntax matching. + + >>> mutate_string('"abc"') + '"xxx"' + >>> mutate_string("'''abc'''") + "'''xxx'''" + >>> mutate_string("r'abc'") + "r'xxx'" + """ + # NOTE(sigmavirus24): If there are string modifiers (e.g., b, u, r) + # use the last "character" to determine if we're using single or double + # quotes and then find the first instance of it + start = text.index(text[-1]) + 1 + end = len(text) - 1 + # Check for triple-quoted strings + if text[-3:] in ('"""', "'''"): + start += 2 + end -= 2 + return text[:start] + "x" * (end - start) + text[end:] diff --git a/.venv/lib/python3.12/site-packages/flake8/statistics.py b/.venv/lib/python3.12/site-packages/flake8/statistics.py new file mode 100644 index 0000000..5a22254 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/statistics.py @@ -0,0 +1,131 @@ +"""Statistic collection logic for Flake8.""" +from __future__ import annotations + +from collections.abc import Generator +from typing import NamedTuple + +from flake8.violation import Violation + + +class Statistics: + """Manager of aggregated statistics for a run of Flake8.""" + + def __init__(self) -> None: + """Initialize the underlying dictionary for our statistics.""" + self._store: dict[Key, Statistic] = {} + + def error_codes(self) -> list[str]: + """Return all unique error codes stored. + + :returns: + Sorted list of error codes. + """ + return sorted({key.code for key in self._store}) + + def record(self, error: Violation) -> None: + """Add the fact that the error was seen in the file. + + :param error: + The Violation instance containing the information about the + violation. + """ + key = Key.create_from(error) + if key not in self._store: + self._store[key] = Statistic.create_from(error) + self._store[key].increment() + + def statistics_for( + self, prefix: str, filename: str | None = None + ) -> Generator[Statistic]: + """Generate statistics for the prefix and filename. + + If you have a :class:`Statistics` object that has recorded errors, + you can generate the statistics for a prefix (e.g., ``E``, ``E1``, + ``W50``, ``W503``) with the optional filter of a filename as well. + + .. code-block:: python + + >>> stats = Statistics() + >>> stats.statistics_for('E12', + filename='src/flake8/statistics.py') + + >>> stats.statistics_for('W') + + + :param prefix: + The error class or specific error code to find statistics for. + :param filename: + (Optional) The filename to further filter results by. + :returns: + Generator of instances of :class:`Statistic` + """ + matching_errors = sorted( + key for key in self._store if key.matches(prefix, filename) + ) + for error_code in matching_errors: + yield self._store[error_code] + + +class Key(NamedTuple): + """Simple key structure for the Statistics dictionary. + + To make things clearer, easier to read, and more understandable, we use a + namedtuple here for all Keys in the underlying dictionary for the + Statistics object. + """ + + filename: str + code: str + + @classmethod + def create_from(cls, error: Violation) -> Key: + """Create a Key from :class:`flake8.violation.Violation`.""" + return cls(filename=error.filename, code=error.code) + + def matches(self, prefix: str, filename: str | None) -> bool: + """Determine if this key matches some constraints. + + :param prefix: + The error code prefix that this key's error code should start with. + :param filename: + The filename that we potentially want to match on. This can be + None to only match on error prefix. + :returns: + True if the Key's code starts with the prefix and either filename + is None, or the Key's filename matches the value passed in. + """ + return self.code.startswith(prefix) and ( + filename is None or self.filename == filename + ) + + +class Statistic: + """Simple wrapper around the logic of each statistic. + + Instead of maintaining a simple but potentially hard to reason about + tuple, we create a class which has attributes and a couple + convenience methods on it. + """ + + def __init__( + self, error_code: str, filename: str, message: str, count: int + ) -> None: + """Initialize our Statistic.""" + self.error_code = error_code + self.filename = filename + self.message = message + self.count = count + + @classmethod + def create_from(cls, error: Violation) -> Statistic: + """Create a Statistic from a :class:`flake8.violation.Violation`.""" + return cls( + error_code=error.code, + filename=error.filename, + message=error.text, + count=0, + ) + + def increment(self) -> None: + """Increment the number of times we've seen this error in this file.""" + self.count += 1 diff --git a/.venv/lib/python3.12/site-packages/flake8/style_guide.py b/.venv/lib/python3.12/site-packages/flake8/style_guide.py new file mode 100644 index 0000000..f72e6d8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/style_guide.py @@ -0,0 +1,425 @@ +"""Implementation of the StyleGuide used by Flake8.""" +from __future__ import annotations + +import argparse +import contextlib +import copy +import enum +import functools +import logging +from collections.abc import Generator +from collections.abc import Sequence + +from flake8 import defaults +from flake8 import statistics +from flake8 import utils +from flake8.formatting import base as base_formatter +from flake8.violation import Violation + +__all__ = ("StyleGuide",) + +LOG = logging.getLogger(__name__) + + +class Selected(enum.Enum): + """Enum representing an explicitly or implicitly selected code.""" + + Explicitly = "explicitly selected" + Implicitly = "implicitly selected" + + +class Ignored(enum.Enum): + """Enum representing an explicitly or implicitly ignored code.""" + + Explicitly = "explicitly ignored" + Implicitly = "implicitly ignored" + + +class Decision(enum.Enum): + """Enum representing whether a code should be ignored or selected.""" + + Ignored = "ignored error" + Selected = "selected error" + + +def _explicitly_chosen( + *, + option: list[str] | None, + extend: list[str] | None, +) -> tuple[str, ...]: + ret = [*(option or []), *(extend or [])] + return tuple(sorted(ret, reverse=True)) + + +def _select_ignore( + *, + option: list[str] | None, + default: tuple[str, ...], + extended_default: list[str], + extend: list[str] | None, +) -> tuple[str, ...]: + # option was explicitly set, ignore the default and extended default + if option is not None: + ret = [*option, *(extend or [])] + else: + ret = [*default, *extended_default, *(extend or [])] + return tuple(sorted(ret, reverse=True)) + + +class DecisionEngine: + """A class for managing the decision process around violations. + + This contains the logic for whether a violation should be reported or + ignored. + """ + + def __init__(self, options: argparse.Namespace) -> None: + """Initialize the engine.""" + self.cache: dict[str, Decision] = {} + + self.selected_explicitly = _explicitly_chosen( + option=options.select, + extend=options.extend_select, + ) + self.ignored_explicitly = _explicitly_chosen( + option=options.ignore, + extend=options.extend_ignore, + ) + + self.selected = _select_ignore( + option=options.select, + default=(), + extended_default=options.extended_default_select, + extend=options.extend_select, + ) + self.ignored = _select_ignore( + option=options.ignore, + default=defaults.IGNORE, + extended_default=options.extended_default_ignore, + extend=options.extend_ignore, + ) + + def was_selected(self, code: str) -> Selected | Ignored: + """Determine if the code has been selected by the user. + + :param code: The code for the check that has been run. + :returns: + Selected.Implicitly if the selected list is empty, + Selected.Explicitly if the selected list is not empty and a match + was found, + Ignored.Implicitly if the selected list is not empty but no match + was found. + """ + if code.startswith(self.selected_explicitly): + return Selected.Explicitly + elif code.startswith(self.selected): + return Selected.Implicitly + else: + return Ignored.Implicitly + + def was_ignored(self, code: str) -> Selected | Ignored: + """Determine if the code has been ignored by the user. + + :param code: + The code for the check that has been run. + :returns: + Selected.Implicitly if the ignored list is empty, + Ignored.Explicitly if the ignored list is not empty and a match was + found, + Selected.Implicitly if the ignored list is not empty but no match + was found. + """ + if code.startswith(self.ignored_explicitly): + return Ignored.Explicitly + elif code.startswith(self.ignored): + return Ignored.Implicitly + else: + return Selected.Implicitly + + def make_decision(self, code: str) -> Decision: + """Decide if code should be ignored or selected.""" + selected = self.was_selected(code) + ignored = self.was_ignored(code) + LOG.debug( + "The user configured %r to be %r, %r", + code, + selected, + ignored, + ) + + if isinstance(selected, Selected) and isinstance(ignored, Selected): + return Decision.Selected + elif isinstance(selected, Ignored) and isinstance(ignored, Ignored): + return Decision.Ignored + elif ( + selected is Selected.Explicitly + and ignored is not Ignored.Explicitly + ): + return Decision.Selected + elif ( + selected is not Selected.Explicitly + and ignored is Ignored.Explicitly + ): + return Decision.Ignored + elif selected is Ignored.Implicitly and ignored is Selected.Implicitly: + return Decision.Ignored + elif ( + selected is Selected.Explicitly and ignored is Ignored.Explicitly + ) or ( + selected is Selected.Implicitly and ignored is Ignored.Implicitly + ): + # we only get here if it was in both lists: longest prefix wins + select = next(s for s in self.selected if code.startswith(s)) + ignore = next(s for s in self.ignored if code.startswith(s)) + if len(select) > len(ignore): + return Decision.Selected + else: + return Decision.Ignored + else: + raise AssertionError(f"unreachable {code} {selected} {ignored}") + + def decision_for(self, code: str) -> Decision: + """Return the decision for a specific code. + + This method caches the decisions for codes to avoid retracing the same + logic over and over again. We only care about the select and ignore + rules as specified by the user in their configuration files and + command-line flags. + + This method does not look at whether the specific line is being + ignored in the file itself. + + :param code: The code for the check that has been run. + """ + decision = self.cache.get(code) + if decision is None: + decision = self.make_decision(code) + self.cache[code] = decision + LOG.debug('"%s" will be "%s"', code, decision) + return decision + + +class StyleGuideManager: + """Manage multiple style guides for a single run.""" + + def __init__( + self, + options: argparse.Namespace, + formatter: base_formatter.BaseFormatter, + decider: DecisionEngine | None = None, + ) -> None: + """Initialize our StyleGuide. + + .. todo:: Add parameter documentation. + """ + self.options = options + self.formatter = formatter + self.stats = statistics.Statistics() + self.decider = decider or DecisionEngine(options) + self.style_guides: list[StyleGuide] = [] + self.default_style_guide = StyleGuide( + options, formatter, self.stats, decider=decider + ) + self.style_guides = [ + self.default_style_guide, + *self.populate_style_guides_with(options), + ] + + self.style_guide_for = functools.cache(self._style_guide_for) + + def populate_style_guides_with( + self, options: argparse.Namespace + ) -> Generator[StyleGuide]: + """Generate style guides from the per-file-ignores option. + + :param options: + The original options parsed from the CLI and config file. + :returns: + A copy of the default style guide with overridden values. + """ + per_file = utils.parse_files_to_codes_mapping(options.per_file_ignores) + for filename, violations in per_file: + yield self.default_style_guide.copy( + filename=filename, extend_ignore_with=violations + ) + + def _style_guide_for(self, filename: str) -> StyleGuide: + """Find the StyleGuide for the filename in particular.""" + return max( + (g for g in self.style_guides if g.applies_to(filename)), + key=lambda g: len(g.filename or ""), + ) + + @contextlib.contextmanager + def processing_file(self, filename: str) -> Generator[StyleGuide]: + """Record the fact that we're processing the file's results.""" + guide = self.style_guide_for(filename) + with guide.processing_file(filename): + yield guide + + def handle_error( + self, + code: str, + filename: str, + line_number: int, + column_number: int, + text: str, + physical_line: str | None = None, + ) -> int: + """Handle an error reported by a check. + + :param code: + The error code found, e.g., E123. + :param filename: + The file in which the error was found. + :param line_number: + The line number (where counting starts at 1) at which the error + occurs. + :param column_number: + The column number (where counting starts at 1) at which the error + occurs. + :param text: + The text of the error message. + :param physical_line: + The actual physical line causing the error. + :returns: + 1 if the error was reported. 0 if it was ignored. This is to allow + for counting of the number of errors found that were not ignored. + """ + guide = self.style_guide_for(filename) + return guide.handle_error( + code, filename, line_number, column_number, text, physical_line + ) + + +class StyleGuide: + """Manage a Flake8 user's style guide.""" + + def __init__( + self, + options: argparse.Namespace, + formatter: base_formatter.BaseFormatter, + stats: statistics.Statistics, + filename: str | None = None, + decider: DecisionEngine | None = None, + ): + """Initialize our StyleGuide. + + .. todo:: Add parameter documentation. + """ + self.options = options + self.formatter = formatter + self.stats = stats + self.decider = decider or DecisionEngine(options) + self.filename = filename + if self.filename: + self.filename = utils.normalize_path(self.filename) + + def __repr__(self) -> str: + """Make it easier to debug which StyleGuide we're using.""" + return f"" + + def copy( + self, + filename: str | None = None, + extend_ignore_with: Sequence[str] | None = None, + ) -> StyleGuide: + """Create a copy of this style guide with different values.""" + filename = filename or self.filename + options = copy.deepcopy(self.options) + options.extend_ignore = options.extend_ignore or [] + options.extend_ignore.extend(extend_ignore_with or []) + return StyleGuide( + options, self.formatter, self.stats, filename=filename + ) + + @contextlib.contextmanager + def processing_file(self, filename: str) -> Generator[StyleGuide]: + """Record the fact that we're processing the file's results.""" + self.formatter.beginning(filename) + yield self + self.formatter.finished(filename) + + def applies_to(self, filename: str) -> bool: + """Check if this StyleGuide applies to the file. + + :param filename: + The name of the file with violations that we're potentially + applying this StyleGuide to. + :returns: + True if this applies, False otherwise + """ + if self.filename is None: + return True + return utils.matches_filename( + filename, + patterns=[self.filename], + log_message=f'{self!r} does %(whether)smatch "%(path)s"', + logger=LOG, + ) + + def should_report_error(self, code: str) -> Decision: + """Determine if the error code should be reported or ignored. + + This method only cares about the select and ignore rules as specified + by the user in their configuration files and command-line flags. + + This method does not look at whether the specific line is being + ignored in the file itself. + + :param code: + The code for the check that has been run. + """ + return self.decider.decision_for(code) + + def handle_error( + self, + code: str, + filename: str, + line_number: int, + column_number: int, + text: str, + physical_line: str | None = None, + ) -> int: + """Handle an error reported by a check. + + :param code: + The error code found, e.g., E123. + :param filename: + The file in which the error was found. + :param line_number: + The line number (where counting starts at 1) at which the error + occurs. + :param column_number: + The column number (where counting starts at 1) at which the error + occurs. + :param text: + The text of the error message. + :param physical_line: + The actual physical line causing the error. + :returns: + 1 if the error was reported. 0 if it was ignored. This is to allow + for counting of the number of errors found that were not ignored. + """ + disable_noqa = self.options.disable_noqa + # NOTE(sigmavirus24): Apparently we're provided with 0-indexed column + # numbers so we have to offset that here. + if not column_number: + column_number = 0 + error = Violation( + code, + filename, + line_number, + column_number + 1, + text, + physical_line, + ) + error_is_selected = ( + self.should_report_error(error.code) is Decision.Selected + ) + is_not_inline_ignored = error.is_inline_ignored(disable_noqa) is False + if error_is_selected and is_not_inline_ignored: + self.formatter.handle(error) + self.stats.record(error) + return 1 + return 0 diff --git a/.venv/lib/python3.12/site-packages/flake8/utils.py b/.venv/lib/python3.12/site-packages/flake8/utils.py new file mode 100644 index 0000000..67db33f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/utils.py @@ -0,0 +1,280 @@ +"""Utility methods for flake8.""" +from __future__ import annotations + +import fnmatch as _fnmatch +import functools +import io +import logging +import os +import platform +import re +import sys +import textwrap +import tokenize +from collections.abc import Sequence +from re import Pattern +from typing import NamedTuple + +from flake8 import exceptions + +COMMA_SEPARATED_LIST_RE = re.compile(r"[,\s]") +LOCAL_PLUGIN_LIST_RE = re.compile(r"[,\t\n\r\f\v]") +NORMALIZE_PACKAGE_NAME_RE = re.compile(r"[-_.]+") + + +def parse_comma_separated_list( + value: str, regexp: Pattern[str] = COMMA_SEPARATED_LIST_RE +) -> list[str]: + """Parse a comma-separated list. + + :param value: + String to be parsed and normalized. + :param regexp: + Compiled regular expression used to split the value when it is a + string. + :returns: + List of values with whitespace stripped. + """ + assert isinstance(value, str), value + + separated = regexp.split(value) + item_gen = (item.strip() for item in separated) + return [item for item in item_gen if item] + + +class _Token(NamedTuple): + tp: str + src: str + + +_CODE, _FILE, _COLON, _COMMA, _WS = "code", "file", "colon", "comma", "ws" +_EOF = "eof" +_FILE_LIST_TOKEN_TYPES = [ + (re.compile(r"[A-Z]+[0-9]*(?=$|\s|,)"), _CODE), + (re.compile(r"[^\s:,]+"), _FILE), + (re.compile(r"\s*:\s*"), _COLON), + (re.compile(r"\s*,\s*"), _COMMA), + (re.compile(r"\s+"), _WS), +] + + +def _tokenize_files_to_codes_mapping(value: str) -> list[_Token]: + tokens = [] + i = 0 + while i < len(value): + for token_re, token_name in _FILE_LIST_TOKEN_TYPES: + match = token_re.match(value, i) + if match: + tokens.append(_Token(token_name, match.group().strip())) + i = match.end() + break + else: + raise AssertionError("unreachable", value, i) + tokens.append(_Token(_EOF, "")) + + return tokens + + +def parse_files_to_codes_mapping( # noqa: C901 + value_: Sequence[str] | str, +) -> list[tuple[str, list[str]]]: + """Parse a files-to-codes mapping. + + A files-to-codes mapping a sequence of values specified as + `filenames list:codes list ...`. Each of the lists may be separated by + either comma or whitespace tokens. + + :param value: String to be parsed and normalized. + """ + if not isinstance(value_, str): + value = "\n".join(value_) + else: + value = value_ + + ret: list[tuple[str, list[str]]] = [] + if not value.strip(): + return ret + + class State: + seen_sep = True + seen_colon = False + filenames: list[str] = [] + codes: list[str] = [] + + def _reset() -> None: + if State.codes: + for filename in State.filenames: + ret.append((filename, State.codes)) + State.seen_sep = True + State.seen_colon = False + State.filenames = [] + State.codes = [] + + def _unexpected_token() -> exceptions.ExecutionError: + return exceptions.ExecutionError( + f"Expected `per-file-ignores` to be a mapping from file exclude " + f"patterns to ignore codes.\n\n" + f"Configured `per-file-ignores` setting:\n\n" + f"{textwrap.indent(value.strip(), ' ')}" + ) + + for token in _tokenize_files_to_codes_mapping(value): + # legal in any state: separator sets the sep bit + if token.tp in {_COMMA, _WS}: + State.seen_sep = True + # looking for filenames + elif not State.seen_colon: + if token.tp == _COLON: + State.seen_colon = True + State.seen_sep = True + elif State.seen_sep and token.tp == _FILE: + State.filenames.append(token.src) + State.seen_sep = False + else: + raise _unexpected_token() + # looking for codes + else: + if token.tp == _EOF: + _reset() + elif State.seen_sep and token.tp == _CODE: + State.codes.append(token.src) + State.seen_sep = False + elif State.seen_sep and token.tp == _FILE: + _reset() + State.filenames.append(token.src) + State.seen_sep = False + else: + raise _unexpected_token() + + return ret + + +def normalize_paths( + paths: Sequence[str], parent: str = os.curdir +) -> list[str]: + """Normalize a list of paths relative to a parent directory. + + :returns: + The normalized paths. + """ + assert isinstance(paths, list), paths + return [normalize_path(p, parent) for p in paths] + + +def normalize_path(path: str, parent: str = os.curdir) -> str: + """Normalize a single-path. + + :returns: + The normalized path. + """ + # NOTE(sigmavirus24): Using os.path.sep and os.path.altsep allow for + # Windows compatibility with both Windows-style paths (c:\foo\bar) and + # Unix style paths (/foo/bar). + separator = os.path.sep + # NOTE(sigmavirus24): os.path.altsep may be None + alternate_separator = os.path.altsep or "" + if ( + path == "." + or separator in path + or (alternate_separator and alternate_separator in path) + ): + path = os.path.abspath(os.path.join(parent, path)) + return path.rstrip(separator + alternate_separator) + + +@functools.lru_cache(maxsize=1) +def stdin_get_value() -> str: + """Get and cache it so plugins can use it.""" + stdin_value = sys.stdin.buffer.read() + fd = io.BytesIO(stdin_value) + try: + coding, _ = tokenize.detect_encoding(fd.readline) + fd.seek(0) + return io.TextIOWrapper(fd, coding).read() + except (LookupError, SyntaxError, UnicodeError): + return stdin_value.decode("utf-8") + + +def stdin_get_lines() -> list[str]: + """Return lines of stdin split according to file splitting.""" + return list(io.StringIO(stdin_get_value())) + + +def is_using_stdin(paths: list[str]) -> bool: + """Determine if we're going to read from stdin. + + :param paths: + The paths that we're going to check. + :returns: + True if stdin (-) is in the path, otherwise False + """ + return "-" in paths + + +def fnmatch(filename: str, patterns: Sequence[str]) -> bool: + """Wrap :func:`fnmatch.fnmatch` to add some functionality. + + :param filename: + Name of the file we're trying to match. + :param patterns: + Patterns we're using to try to match the filename. + :param default: + The default value if patterns is empty + :returns: + True if a pattern matches the filename, False if it doesn't. + ``True`` if patterns is empty. + """ + if not patterns: + return True + return any(_fnmatch.fnmatch(filename, pattern) for pattern in patterns) + + +def matches_filename( + path: str, + patterns: Sequence[str], + log_message: str, + logger: logging.Logger, +) -> bool: + """Use fnmatch to discern if a path exists in patterns. + + :param path: + The path to the file under question + :param patterns: + The patterns to match the path against. + :param log_message: + The message used for logging purposes. + :returns: + True if path matches patterns, False otherwise + """ + if not patterns: + return False + basename = os.path.basename(path) + if basename not in {".", ".."} and fnmatch(basename, patterns): + logger.debug(log_message, {"path": basename, "whether": ""}) + return True + + absolute_path = os.path.abspath(path) + match = fnmatch(absolute_path, patterns) + logger.debug( + log_message, + {"path": absolute_path, "whether": "" if match else "not "}, + ) + return match + + +def get_python_version() -> str: + """Find and format the python implementation and version. + + :returns: + Implementation name, version, and platform as a string. + """ + return "{} {} on {}".format( + platform.python_implementation(), + platform.python_version(), + platform.system(), + ) + + +def normalize_pypi_name(s: str) -> str: + """Normalize a distribution name according to PEP 503.""" + return NORMALIZE_PACKAGE_NAME_RE.sub("-", s).lower() diff --git a/.venv/lib/python3.12/site-packages/flake8/violation.py b/.venv/lib/python3.12/site-packages/flake8/violation.py new file mode 100644 index 0000000..ae1631a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/flake8/violation.py @@ -0,0 +1,69 @@ +"""Contains the Violation error class used internally.""" +from __future__ import annotations + +import functools +import linecache +import logging +from re import Match +from typing import NamedTuple + +from flake8 import defaults +from flake8 import utils + + +LOG = logging.getLogger(__name__) + + +@functools.lru_cache(maxsize=512) +def _find_noqa(physical_line: str) -> Match[str] | None: + return defaults.NOQA_INLINE_REGEXP.search(physical_line) + + +class Violation(NamedTuple): + """Class representing a violation reported by Flake8.""" + + code: str + filename: str + line_number: int + column_number: int + text: str + physical_line: str | None + + def is_inline_ignored(self, disable_noqa: bool) -> bool: + """Determine if a comment has been added to ignore this line. + + :param disable_noqa: + Whether or not users have provided ``--disable-noqa``. + :returns: + True if error is ignored in-line, False otherwise. + """ + physical_line = self.physical_line + # TODO(sigmavirus24): Determine how to handle stdin with linecache + if disable_noqa: + return False + + if physical_line is None: + physical_line = linecache.getline(self.filename, self.line_number) + noqa_match = _find_noqa(physical_line) + if noqa_match is None: + LOG.debug("%r is not inline ignored", self) + return False + + codes_str = noqa_match.groupdict()["codes"] + if codes_str is None: + LOG.debug("%r is ignored by a blanket ``# noqa``", self) + return True + + codes = set(utils.parse_comma_separated_list(codes_str)) + if self.code in codes or self.code.startswith(tuple(codes)): + LOG.debug( + "%r is ignored specifically inline with ``# noqa: %s``", + self, + codes_str, + ) + return True + + LOG.debug( + "%r is not ignored inline with ``# noqa: %s``", self, codes_str + ) + return False diff --git a/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/METADATA b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/METADATA new file mode 100644 index 0000000..1785ba1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/METADATA @@ -0,0 +1,375 @@ +Metadata-Version: 2.4 +Name: isort +Version: 7.0.0 +Summary: A Python utility / library to sort Python imports. +Project-URL: Homepage, https://pycqa.github.io/isort/index.html +Project-URL: Documentation, https://pycqa.github.io/isort/index.html +Project-URL: Repository, https://github.com/PyCQA/isort +Project-URL: Changelog, https://github.com/PyCQA/isort/releases +Author-email: Timothy Crosley , staticdev +License-Expression: MIT +License-File: LICENSE +Keywords: Clean,Imports,Lint,Refactor,Sort +Classifier: Development Status :: 6 - Mature +Classifier: Environment :: Console +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Natural Language :: English +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries +Classifier: Topic :: Utilities +Requires-Python: >=3.10.0 +Provides-Extra: colors +Requires-Dist: colorama; extra == 'colors' +Provides-Extra: plugins +Requires-Dist: setuptools; extra == 'plugins' +Description-Content-Type: text/markdown + +[![isort - isort your imports, so you don't have to.](https://raw.githubusercontent.com/pycqa/isort/main/art/logo_large.png)](https://pycqa.github.io/isort/) + +------------------------------------------------------------------------ + +[![PyPI version](https://badge.fury.io/py/isort.svg)](https://badge.fury.io/py/isort) +[![Python Version](https://img.shields.io/pypi/pyversions/isort)][pypi status] +[![Test](https://github.com/PyCQA/isort/actions/workflows/test.yml/badge.svg)](https://github.com/PyCQA/isort/actions/workflows/test.yml) +[![Lint](https://github.com/PyCQA/isort/actions/workflows/lint.yml/badge.svg)](https://github.com/PyCQA/isort/actions/workflows/lint.yml) +[![Code coverage Status](https://codecov.io/gh/pycqa/isort/branch/main/graph/badge.svg)](https://codecov.io/gh/pycqa/isort) +[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://pypi.org/project/isort/) +[![Downloads](https://pepy.tech/badge/isort)](https://pepy.tech/project/isort) +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) +[![DeepSource](https://static.deepsource.io/deepsource-badge-light-mini.svg)](https://deepsource.io/gh/pycqa/isort/?ref=repository-badge) + +[pypi status]: https://pypi.org/project/isort/ +_________________ + +[Read Latest Documentation](https://pycqa.github.io/isort/) - [Browse GitHub Code Repository](https://github.com/pycqa/isort/) +_________________ + +isort your imports, so you don't have to. + +isort is a Python utility / library to sort imports alphabetically and +automatically separate into sections and by type. It provides a command line +utility, Python library and [plugins for various +editors](https://github.com/pycqa/isort/wiki/isort-Plugins) to +quickly sort all your imports. It requires Python 3.9+ to run but +supports formatting Python 2 code too. + +- [Try isort now from your browser!](https://pycqa.github.io/isort/docs/quick_start/0.-try.html) +- [Using black? See the isort and black compatibility guide.](https://pycqa.github.io/isort/docs/configuration/black_compatibility.html) +- [isort has official support for pre-commit!](https://pycqa.github.io/isort/docs/configuration/pre-commit.html) + +![Example Usage](https://raw.github.com/pycqa/isort/main/example.gif) + +Before isort: + +```python +from my_lib import Object + +import os + +from my_lib import Object3 + +from my_lib import Object2 + +import sys + +from third_party import lib15, lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8, lib9, lib10, lib11, lib12, lib13, lib14 + +import sys + +from __future__ import absolute_import + +from third_party import lib3 + +print("Hey") +print("yo") +``` + +After isort: + +```python +from __future__ import absolute_import + +import os +import sys + +from third_party import (lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8, + lib9, lib10, lib11, lib12, lib13, lib14, lib15) + +from my_lib import Object, Object2, Object3 + +print("Hey") +print("yo") +``` + +## Installing isort + +Installing isort is as simple as: + +```bash +pip install isort +``` + +## Using isort + +**From the command line**: + +To run on specific files: + +```bash +isort mypythonfile.py mypythonfile2.py +``` + +To apply recursively: + +```bash +isort . +``` + +If [globstar](https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html) +is enabled, `isort .` is equivalent to: + +```bash +isort **/*.py +``` + +To view proposed changes without applying them: + +```bash +isort mypythonfile.py --diff +``` + +Finally, to atomically run isort against a project, only applying +changes if they don't introduce syntax errors: + +```bash +isort --atomic . +``` + +(Note: this is disabled by default, as it prevents isort from +running against code written using a different version of Python.) + +**From within Python**: + +```python +import isort + +isort.file("pythonfile.py") +``` + +or: + +```python +import isort + +sorted_code = isort.code("import b\nimport a\n") +``` + +## Installing isort's for your preferred text editor + +Several plugins have been written that enable to use isort from within a +variety of text-editors. You can find a full list of them [on the isort +wiki](https://github.com/pycqa/isort/wiki/isort-Plugins). +Additionally, I will enthusiastically accept pull requests that include +plugins for other text editors and add documentation for them as I am +notified. + +## Multi line output modes + +You will notice above the \"multi\_line\_output\" setting. This setting +defines how from imports wrap when they extend past the line\_length +limit and has [12 possible settings](https://pycqa.github.io/isort/docs/configuration/multi_line_output_modes.html). + +## Indentation + +To change the how constant indents appear - simply change the +indent property with the following accepted formats: + +- Number of spaces you would like. For example: 4 would cause standard + 4 space indentation. +- Tab +- A verbatim string with quotes around it. + +For example: + +```python +" " +``` + +is equivalent to 4. + +For the import styles that use parentheses, you can control whether or +not to include a trailing comma after the last import with the +`include_trailing_comma` option (defaults to `False`). + +## Intelligently Balanced Multi-line Imports + +As of isort 3.1.0 support for balanced multi-line imports has been +added. With this enabled isort will dynamically change the import length +to the one that produces the most balanced grid, while staying below the +maximum import length defined. + +Example: + +```python +from __future__ import (absolute_import, division, + print_function, unicode_literals) +``` + +Will be produced instead of: + +```python +from __future__ import (absolute_import, division, print_function, + unicode_literals) +``` + +To enable this set `balanced_wrapping` to `True` in your config or pass +the `-e` option into the command line utility. + +## Custom Sections and Ordering + +isort provides configuration options to change almost every aspect of how +imports are organized, ordered, or grouped together in sections. + +[Click here](https://pycqa.github.io/isort/docs/configuration/custom_sections_and_ordering.html) for an overview of all these options. + +## Skip processing of imports (outside of configuration) + +To make isort ignore a single import simply add a comment at the end of +the import line containing the text `isort:skip`: + +```python +import module # isort:skip +``` + +or: + +```python +from xyz import (abc, # isort:skip + yo, + hey) +``` + +To make isort skip an entire file simply add `isort:skip_file` to the +module's doc string: + +```python +""" my_module.py + Best module ever + + isort:skip_file +""" + +import b +import a +``` + +## Adding or removing an import from multiple files + +isort can be ran or configured to add / remove imports automatically. + +[See a complete guide here.](https://pycqa.github.io/isort/docs/configuration/add_or_remove_imports.html) + +## Using isort to verify code + +The `--check-only` option +------------------------- + +isort can also be used to verify that code is correctly formatted +by running it with `-c`. Any files that contain incorrectly sorted +and/or formatted imports will be outputted to `stderr`. + +```bash +isort **/*.py -c -v + +SUCCESS: /home/timothy/Projects/Open_Source/isort/isort_kate_plugin.py Everything Looks Good! +ERROR: /home/timothy/Projects/Open_Source/isort/isort/isort.py Imports are incorrectly sorted. +``` + +One great place this can be used is with a pre-commit git hook, such as +this one by \@acdha: + + + +This can help to ensure a certain level of code quality throughout a +project. + +## Git hook + +isort provides a hook function that can be integrated into your Git +pre-commit script to check Python code before committing. + +[More info here.](https://pycqa.github.io/isort/docs/configuration/git_hook.html) + +## Setuptools integration + +Upon installation, isort enables a `setuptools` command that checks +Python files declared by your project. + +[More info here.](https://pycqa.github.io/isort/docs/configuration/setuptools_integration.html) + +## Spread the word + +[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) + +Place this badge at the top of your repository to let others know your project uses isort. + +For README.md: + +```markdown +[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) +``` + +Or README.rst: + +```rst +.. image:: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336 + :target: https://pycqa.github.io/isort/ +``` + +## Security contact information + +To report a security vulnerability, please use the [Tidelift security +contact](https://tidelift.com/security). Tidelift will coordinate the +fix and disclosure. + +## Why isort? + +isort simply stands for import sort. It was originally called +"sortImports" however I got tired of typing the extra characters and +came to the realization camelCase is not pythonic. + +I wrote isort because in an organization I used to work in the manager +came in one day and decided all code must have alphabetically sorted +imports. The code base was huge - and he meant for us to do it by hand. +However, being a programmer - I\'m too lazy to spend 8 hours mindlessly +performing a function, but not too lazy to spend 16 hours automating it. +I was given permission to open source sortImports and here we are :) + +------------------------------------------------------------------------ + +[Get professionally supported isort with the Tidelift +Subscription](https://tidelift.com/subscription/pkg/pypi-isort?utm_source=pypi-isort&utm_medium=referral&utm_campaign=readme) + +Professional support for isort is available as part of the [Tidelift +Subscription](https://tidelift.com/subscription/pkg/pypi-isort?utm_source=pypi-isort&utm_medium=referral&utm_campaign=readme). +Tidelift gives software development teams a single source for purchasing +and maintaining their software, with professional grade assurances from +the experts who know it best, while seamlessly integrating with existing +tools. + +------------------------------------------------------------------------ + +Thanks and I hope you find isort useful! + +~Timothy Crosley diff --git a/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/RECORD b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/RECORD new file mode 100644 index 0000000..9daaf2e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/RECORD @@ -0,0 +1,101 @@ +../../../bin/isort,sha256=y6slRGpwwjJbG7THwKaspNnATyj64ngiyIZE7pHfYAs,223 +../../../bin/isort-identify-imports,sha256=45eQltleEDMM2yd8raYt6NhbrtQw7VXoJnfzMdtGZhs,257 +isort-7.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +isort-7.0.0.dist-info/METADATA,sha256=nm4sPm5TimI06E1lXwKPjPWDHNTzJ1LVFn93VYM6NbQ,11986 +isort-7.0.0.dist-info/RECORD,, +isort-7.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87 +isort-7.0.0.dist-info/entry_points.txt,sha256=3EUwrc2fZP9efifU_6TBNChjhWtdYNaSBga6R5VfiSs,169 +isort-7.0.0.dist-info/licenses/LICENSE,sha256=BjKUABw9Uj26y6ud1UrCKZgnVsyvWSylMkCysM3YIGU,1089 +isort/__init__.py,sha256=izMCmePBol7NDXEMXZvMEXCvZ_Rfzli-kt6dOilU1N0,872 +isort/__main__.py,sha256=iK0trzN9CCXpQX-XPZDZ9JVkm2Lc0q0oiAgsa6FkJb4,36 +isort/__pycache__/__init__.cpython-312.pyc,, +isort/__pycache__/__main__.cpython-312.pyc,, +isort/__pycache__/_version.cpython-312.pyc,, +isort/__pycache__/api.cpython-312.pyc,, +isort/__pycache__/comments.cpython-312.pyc,, +isort/__pycache__/core.cpython-312.pyc,, +isort/__pycache__/exceptions.cpython-312.pyc,, +isort/__pycache__/files.cpython-312.pyc,, +isort/__pycache__/format.cpython-312.pyc,, +isort/__pycache__/hooks.cpython-312.pyc,, +isort/__pycache__/identify.cpython-312.pyc,, +isort/__pycache__/io.cpython-312.pyc,, +isort/__pycache__/literal.cpython-312.pyc,, +isort/__pycache__/logo.cpython-312.pyc,, +isort/__pycache__/main.cpython-312.pyc,, +isort/__pycache__/output.cpython-312.pyc,, +isort/__pycache__/parse.cpython-312.pyc,, +isort/__pycache__/place.cpython-312.pyc,, +isort/__pycache__/profiles.cpython-312.pyc,, +isort/__pycache__/sections.cpython-312.pyc,, +isort/__pycache__/settings.cpython-312.pyc,, +isort/__pycache__/setuptools_commands.cpython-312.pyc,, +isort/__pycache__/sorting.cpython-312.pyc,, +isort/__pycache__/utils.cpython-312.pyc,, +isort/__pycache__/wrap.cpython-312.pyc,, +isort/__pycache__/wrap_modes.cpython-312.pyc,, +isort/_vendored/tomli/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072 +isort/_vendored/tomli/__init__.py,sha256=Y3N65pvphV_EF4k2qKiq_vYcohIUHhT05GzdRc0TOy8,213 +isort/_vendored/tomli/__pycache__/__init__.cpython-312.pyc,, +isort/_vendored/tomli/__pycache__/_parser.cpython-312.pyc,, +isort/_vendored/tomli/__pycache__/_re.cpython-312.pyc,, +isort/_vendored/tomli/_parser.py,sha256=ZbnCfybF5Assq8i1hPmIhP0ey1_u9BT5UloqDdCTyew,21397 +isort/_vendored/tomli/_re.py,sha256=3r6TD3gNGFjgOsfpy8aLpxgvasL__pvaN2m1R5DTxeQ,2833 +isort/_vendored/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +isort/_version.py,sha256=pXTtYi-S-p8e00o2Ad-PNREL9wAQaPgQzk_c_jndLOw,72 +isort/api.py,sha256=RkB3sLfVhSEiBEsFkztUTuwOdaegqlgHT83Ips17vFY,26280 +isort/comments.py,sha256=cFvf-vofTEz3neRY5mQa9jwVb3bY_QRlU8G8f9vTvw4,887 +isort/core.py,sha256=mcHPy9ds8ijyL1sX02CktPJ1-PnPaiCgumrCoMrwDRI,22684 +isort/deprecated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +isort/deprecated/__pycache__/__init__.cpython-312.pyc,, +isort/deprecated/__pycache__/finders.cpython-312.pyc,, +isort/deprecated/finders.py,sha256=tbDwxTz-xbUS5C1lEi6KB7lif9IkXfNUf8VEY7dlRHQ,14176 +isort/exceptions.py,sha256=v3S4LVEQ0QOQK054fEnrUcJyJBTRPmkrrjrWMh1sHBY,7008 +isort/files.py,sha256=EJm_fmPxOqX8-ZFvvXR7Vas6BQ3Tzd-u1LnXuKlhrKg,1611 +isort/format.py,sha256=pY8zyf2Eh_o9h26_re-f8NxoSd00sKjbrjyNaO5yWsg,5455 +isort/hooks.py,sha256=9KJoPNALP1MIRrvj-oxRsksl04Ezam93Yec0FAJP5QM,3268 +isort/identify.py,sha256=6_SAcXcWVcOueuC1Yr0wV5OeKlbyg-GAlqpLLpG0bBE,8342 +isort/io.py,sha256=oG_-VRTBJn54kmlmtxBE_ix6wloWDnN5rnlLoj4WnpE,2219 +isort/literal.py,sha256=B48IZqL5gZWtkuN6gEb__kw_mP3-GUrC2auqSOiOoIg,3699 +isort/logo.py,sha256=cL3al79O7O0G2viqRMRfBPp0qtRZmJw2nHSCZw8XWdQ,388 +isort/main.py,sha256=zqAFDpJ7RlFVNjS9d9QgQRFiEEE7sID724F0dO4uJZQ,47137 +isort/output.py,sha256=IrxpyGnzQYYsFh1cMBAb6-2dMpfb7Q-EOQkh_MsFWvg,28631 +isort/parse.py,sha256=rKLrGg4D1UKoS1svk3ARWhKnqbAnq-qGuM2ZeFLLo-E,25519 +isort/place.py,sha256=7sQ2k12AI3MXebW1cDDOghC0QEh1BZXmXGWNxjcFoIg,5137 +isort/profiles.py,sha256=7vCdA-KVBLL2dr0o2ZMMV-yZbJYhMlwv9QKfCpLoFiw,2292 +isort/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +isort/sections.py,sha256=e3fmTIPb5xzeOoiaHEoKNcSEx1qNja_Z2beuJ_0cjVE,272 +isort/settings.py,sha256=Uq38k0caWCKzJaaSr3Jof7KB97oJ8nU3D_igD7al-8Y,35637 +isort/setuptools_commands.py,sha256=Haxx62_HNqZONZyc4pS5VixILKaME4mhioBh--1CPqs,2383 +isort/sorting.py,sha256=2TiXU3uHhPCIeXlDf9LslN9AaUnQFOQwsY4s9nlmE-U,4495 +isort/stdlibs/__init__.py,sha256=qOZAOAgHwqSKmUe87NzCZc9xI9GWPhRUE_Ot1RidpVw,288 +isort/stdlibs/__pycache__/__init__.cpython-312.pyc,, +isort/stdlibs/__pycache__/all.cpython-312.pyc,, +isort/stdlibs/__pycache__/py2.cpython-312.pyc,, +isort/stdlibs/__pycache__/py27.cpython-312.pyc,, +isort/stdlibs/__pycache__/py3.cpython-312.pyc,, +isort/stdlibs/__pycache__/py310.cpython-312.pyc,, +isort/stdlibs/__pycache__/py311.cpython-312.pyc,, +isort/stdlibs/__pycache__/py312.cpython-312.pyc,, +isort/stdlibs/__pycache__/py313.cpython-312.pyc,, +isort/stdlibs/__pycache__/py314.cpython-312.pyc,, +isort/stdlibs/__pycache__/py36.cpython-312.pyc,, +isort/stdlibs/__pycache__/py37.cpython-312.pyc,, +isort/stdlibs/__pycache__/py38.cpython-312.pyc,, +isort/stdlibs/__pycache__/py39.cpython-312.pyc,, +isort/stdlibs/all.py,sha256=n8Es1WK6UlupYyVvf1PDjGbionqix-afC3LkY8nzTcw,57 +isort/stdlibs/py2.py,sha256=dTgWTa7ggz1cwN8fuI9eIs9-5nTmkRxG_uO61CGwfXI,41 +isort/stdlibs/py27.py,sha256=QriKfttNSHsjaRtDfR5WXytjzf7Xi7p9lxiOOcmA2JM,4504 +isort/stdlibs/py3.py,sha256=e1Y2e7UjCe8NVJWSN75hr3KsG2DhFI2bvVGrL-Hqqm0,251 +isort/stdlibs/py310.py,sha256=eSmafU9DNrMhXpzgnJQs9DHqxjXU6bKWCSodw4H7GXM,3440 +isort/stdlibs/py311.py,sha256=tOI3W9oHIaelXuXhHHYmPP7Put83R0s4FDFyq-_Y4vU,3441 +isort/stdlibs/py312.py,sha256=gTInIvuBpNzWXsrXAuOwzib0BKumEPP6AsF9ed9AYdM,3368 +isort/stdlibs/py313.py,sha256=qCQF8fqOVwemGdssKq5dZ3P_SLqKjBrlF4VvRCcKUgo,3095 +isort/stdlibs/py314.py,sha256=XLtbO3Egu-DqJXXo47TAUWeD7LRihxula_nfVV1gVeE,3116 +isort/stdlibs/py36.py,sha256=iuXIDLcFrSviMMSOP4PoKWCG5BveMnZbFravpduSUss,3310 +isort/stdlibs/py37.py,sha256=dLxxRerCvb4O9vrifTg5KWgO0L3a6AQB13haK_tSBRw,3334 +isort/stdlibs/py38.py,sha256=kGTxrw7fgCwgnaSdQNcuUVgOQL3A0EOiNpjPvm6QCvI,3455 +isort/stdlibs/py39.py,sha256=z5gwSoKVw6i9G5Pib8SRN0XSZjyPsecdhhKpTUtGXxU,3464 +isort/utils.py,sha256=_gc-gWRk4TIAfrlHT0XoL8TP7BJ8mKofwkbVBLfCTnE,2441 +isort/wrap.py,sha256=W7WUga954p9gao4Je2lgrkHALTyKek1nGlx4RRiawnU,6381 +isort/wrap_modes.py,sha256=KFwm6Xo48iy88Tzufu6HdzDtsZjSi9_wvi7oRN7iKHY,13462 diff --git a/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/WHEEL new file mode 100644 index 0000000..12228d4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: hatchling 1.27.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/entry_points.txt new file mode 100644 index 0000000..fb42967 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/entry_points.txt @@ -0,0 +1,6 @@ +[console_scripts] +isort = isort.main:main +isort-identify-imports = isort.main:identify_imports_main + +[distutils.commands] +isort = isort.setuptools_commands:ISortCommand diff --git a/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/licenses/LICENSE b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/licenses/LICENSE new file mode 100644 index 0000000..b5083a5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort-7.0.0.dist-info/licenses/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2013 Timothy Edmund Crosley + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/isort/__init__.py b/.venv/lib/python3.12/site-packages/isort/__init__.py new file mode 100644 index 0000000..ba2bef8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/__init__.py @@ -0,0 +1,39 @@ +"""Defines the public isort interface""" + +__all__ = ( + "Config", + "ImportKey", + "__version__", + "check_code", + "check_file", + "check_stream", + "code", + "file", + "find_imports_in_code", + "find_imports_in_file", + "find_imports_in_paths", + "find_imports_in_stream", + "place_module", + "place_module_with_reason", + "settings", + "stream", +) + +from . import settings +from ._version import __version__ +from .api import ImportKey +from .api import check_code_string as check_code +from .api import ( + check_file, + check_stream, + find_imports_in_code, + find_imports_in_file, + find_imports_in_paths, + find_imports_in_stream, + place_module, + place_module_with_reason, +) +from .api import sort_code_string as code +from .api import sort_file as file +from .api import sort_stream as stream +from .settings import Config diff --git a/.venv/lib/python3.12/site-packages/isort/__main__.py b/.venv/lib/python3.12/site-packages/isort/__main__.py new file mode 100644 index 0000000..94b1d05 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/__main__.py @@ -0,0 +1,3 @@ +from isort.main import main + +main() diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..615fbbff25a7fb85b970fc09e3b03862619c0bb9 GIT binary patch literal 932 zcma))O>fgM7{{HaFKN@RE$d!DAj%FCMe4%q1tFv{I3N(0-7Fz1OWek4oJ6*_shs!_ zNPGr93!eZ><-&>Eq-mP83p{pKfyM@Gt z{RHAOiV;S!gPph%yJ>~H*mV%-YFgzrT(i2C)_DUrtgeIhaMS7r=oW5qAN#zG+q{E2 zdN5gqk(eJ{@@Y^s~Dc>!y0=v@1R98n=zo)My3Q9`2`iSn2( z^@OEVx68Oxf`(jI?RwR&3}DxoF#9`6SXS2l6ScW(S96O{B~q_n4PS24E>dt!cpe{u zh0VWbi(Z25=e)-ktgb~CK?9j z6$sy;ZO}1TG3WxIyl3vz9&%aj=%$UCBSM02C#4baVBXHV(RJM*B+etaVh~}PfjwIL^gP7I42Z*nc&C zyZhqFcwdEzMdLkaKH1H}bS{|;c8+Lv6r}7RDCR23vqw7*9tM&rI)>s|IE8xq%mM<< zXNr)WVt(O0E1ULQ+=ksuH{?^miR(DdH+1);+V?9T8)w_d*;t@E3v^?F?w?nhPURc{ WP7Tfm$ho&bTMM-P9o-bSp!_$-Py?|5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b69fb1d5477e6255c82f2221373d080abe0ed163 GIT binary patch literal 251 zcmX@j%ge<81SZV?GgN@|V-N=hn4pZ$azMs(h7^Vr#vF!R#wbQc1}277#??@1Mutiz zP3D&%o+jfhmfXb5JU>mQTU?pN`9&pqAZ`&eP;Mo|XONO#vHIotMcKs#iOH$O`oXTc zK8{YNy1^xhC7H>(&iN^+@s4?kIhDnk#rk?>sd;7kIhjfN1(hWk`FX~AhDQ3unI);Z zK+V~S=|KHpJM`n@LAJ!l>lIY~;;_lhPbtkwwJYKP+QtaP#k@e`12ZEd<6Q>nhYT#O JY(;E95dfAWKcWBt literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/_version.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/_version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f374f826eaf7e78a1bf2280863e3556d7470bfd GIT binary patch literal 318 zcmX@j%ge<81SZV?GdzIwV-N=hn4yf%CP2n?h7^Vr#vF!R#wbQc1}277#w-??LIj<{ zw3-pZi(;;1)?|4J;%GA7;>b-cNlZyBNxa3HS)5-~;-|@Si!(E~0LaYAOezA|bc?+# zwWv5VKkpWId_0sHAHR~}GsuWvvHIotMcKs#iOH$O`oXTcK8{YNy1^xhC7H>(&iN^+ z@s4?kIhDnk#rk?>sd;7kKvVS#DoZl*^NjTjjr5B%OHy@#nzIwrf%?Ht(1%%~S5Wzj z!zMRBr8Fniu813G8^{aAQb6JZGb1D8T?V-ad~zKb*ZJfw^2yC8zs#rJ$X&zeP|o#%VFZ-C$h-jCu5il;=`x^0R&Es1h0*|C{SXowG#K;fX@11(Vo9op-P zMUOX95^u~*oC-6uwL_P*yUdp@f7lOFGMhLxvko9K1sFqDG`rp-AGQjNlvT!_J%0aw zcmPO2l@v9B$Li%AnPkD4fL&!L6WMO^K6fzH+S=bP?gsj6>7B&WL zA^WhMg-t<6$T{o`xrSY#lHn4TW)8YTrNgBxYzdZy%7@Dlwu-i3MW}MPGUOTdgiOOG zmSzuDg{p_ELp8%Sq1xfvP~C7HOLqk8Lk+_XAz@euH4ZnjG$-1#X?RnpX}F2SUBTv1 z%Wx|Tmmu6W+|I)8pf}Vp+!5M5ygAf4+{tqq?hq%IzQT!Re&bcGGB(3qqQ<{j)QII` z`Iug;@OO)q_}5%Ca-8V#cZyYhdp1_>?-6VKJ$@JaR_k|)b^h)#mstObez+Iqvv9Id z@;Ntxr$Ffelmp<`n&yhHUfEA_l{E@dLC9AVD*db{w9o@eM~2MU(pS3^Yi0Db-Ct$ zkwfoyRUu(aBX+!^yPEwp{P2D9=Ub(~S4$hj%>|{mXUA8d*`~1>GZpkF-{yP!)468u zyAbQfXez5j?O}!3gC6e4ttK5?O>1HGV*PZn(d*02mfr6fkLLTXhFI?%;ugT%rNU%0 zK=Zf})UE#A{%$J0rhOaL;u8B&%O15B%uRkgH>yeL`9_c(;x<6uTLAeX%xrcAu{Qp$ z@E->JM`&KLQnu&zDnV6R*NHjafjo~+X}mkV_O$s(Xd)s-kNT(5C8KBkqvu9OBcgvq zj!J>>nY2Yo8VdydX`2$p7r!r*E*lGk#gPCjERO`jtk}J&tYrE6yc53YSvg&?J~<28 zHWBoV`bR<$aT3*f3S%SZ1JSc1Xn-6Er(H4{zNWcmmcr_^vY-O-SG0zPynNbpB9PYC0&)~Xd2%Wo^<6k1NfAj-I}alB z$#a2;!AK~C{P~2F{wU>6R~!jPB@Do*Uo0$%ikf}$xsmf{{n4|2X(SpM@l8wwr$*55 z@EN~M39S2-qZp*9e+2yv1;W1I$OPsSk#vcCHgbMsG8`BS_{9-1FgE7Zr1b|v6Va)( zj+%uI8kC_&$gPA5haF8Q8GPo{;S)n62cAB4VCdwL6GJD{j{OG?4m^46)X3n8p@T;b zr456T@L1r?D2=@8Xr##97T~?f`8gcB938nhZZ*R?Q9G;`b;AZxKWv;bc#V<<*?cP~ zwcn4G;+F-qT!==5bN(s87Z$Mo0?!A;NncPO zCd8-$ax4&I-*PebAs1uc9v>JyI&kPf(Q*pRk&*krQ~@ba*VZQ-Ke7MGV+XPo7JO4- z=6(ylWpl5EE9Ck>p9fBzdg92wCr@P|E8lXk)&$m+%Ywc)ZQ$6Efshk4Wd_2_P7`=j4H|V*~rPb)Ag*qJhz_K|*{3*ep|WK&-XDIx zCm1;0GcgrC8wqdi?%UEM2crHi6h7y}X6p$Mj_L7D1iB}t*lJ~7C+d;w;Jw1FYD)B` zOe^Pf%^XVE9Ww`0u9BG}DVzPJ1JX|9VEGRMv7qL(8Cb?2mIJ_ShEcYA(q`JrBZMu} z4ly80{xd#F9Fc)I(q^`gY5%6}O74+!z)NT3v_bMmC#CSH0TrmujDQvYxBnHqH@T>~ z6}cF9H5;Bb=2KPrV%ikV(uFuZbun!WoAoVC%<#|ouk+KID5z+~#f&jijE`xMLl@Iu z(_96$NRH=Xrtxf8Nl|=JtJcbLQ0vw?wFM_Ruip0?ERT~IYV5kOx(j82j)Fi~03H-3 zqzEtp_A(8m0Hlvy-zg~LfS}+L!v6EwbXJZ^g#?;DznDc2T|!3(74PWSDVzdK1&RiZ~WDwm1 zR4PHsyr2|N+Qd{h+cipK3B#&2C~H87oF4a&MhU>A>=$rMgjwTg5VB`=9zbq!sW7m_ z&I!TDD0V|6Oof39X?P1pRX7jaH!&FuW)Wu|+S>I=AZ0&m$g`)UN&mA#U`&{bOrm_4 zr3TJ~3Dx=pTFopg<}%v}Lf)8LnGHg|hTMuL;77)UEMV3`<@md2V#G)oqYwxNX_k~D zkjl!iC}2oY2-oeyBJ!x4eD zW3IZm1(GxYd|}`q&|PODQsAPpjetP1JMTdlOPTX081|Oc)r}SEf8HWgu9#d` z%Kp?r*rxyi-LV^Oh74!a8yJo`B|SzkkHSmaB_FW;NF>bYuu;M|sw2$9u+M)675gR^ z(_G+X$mC+W3%pcAzto`hZk$@W&WXHA9|3{}(mTyGs4nT-c}#URTVmRrPm6KmMQANG zrwVb}63x+DqBCZRnN_+iW)!t=fs$j?oi%12r@pLnqE3Z_{#YKABWhQRBku-nLtPtv z)y2RRPJ&vF@nJq@h-t^^R9ok+8LnpOQMAl@l8ct88PH3@{YKz^rEl6OosrDZ+^`Wg zsr{O^#q@H0OefW%o^mx`{x_Bz0m&LwCCXgPrj~!1kMYxXl=bAxs3GZ~85H+MeVukh zi6LSx=7`xuv#1mG*DU$I<>&jW4zfFngd?__;+HU5eUN!G{hZ@TN z#<-ZBtqtQfhg$!%^*%lG$LtSU4X7{QH~U7TP^{k%hL6_r=N`sBZNO;s<@=$A0AYhw zrjDhudYZUsty->`leQpL6RlTMp64<5jcRPo+-t`-sp!zA@%>BMzmeC zUj<`Bj_01?UjJ|BxeMB7xbr;fCLWSG)NSLrXqOrrkDx|UX@nJas!`<1zbZiuLG!XRtnRYBMw1oO$J5cQ}P@}p7;5jj-fI9oTL0* zIm(at?zCoN3Y1ljqAAJ>4gp~>uJY8|`m}{f3fK-wTUl6H-HZ!O8j??? zz0Ldc}Nomxdb|D{>1EeQVCzDNc zHk(Z1g)E7!{wRDu8!hr)!@v9njqX&)rl_|7w4>9EkWp#F;m8wE0d<0gsEn3VA)g;X+qLeoiJ6;^(~v~ zR!mi?%I0LHH&N+bs@$CNv?e{96Q0dWo-P8}+_hMiXx{dXJ@4#DRW&55Iuli$zp)z3 zmW+dQRbFy@SWIY9?wPB)S+yhHx?`z)=giRi)~fFW77ivm_ar*^yc1aNJiOwln+q>F zy5gp;Tb0dmUD++8{nhE0r!yLh*`2CsOV)HIYC4x{x-T7Dv6WsqHs8J2dYz9ye(D#t zC-1m9jEHTivg?xVma{hLY)Lp?&Tn+4Y@U>@HakGo zZFj7O?0}dYR9(vCNt)^srn))bvPoc-qq=xmbF$2vDDy6rZC?1wJ5Rma7yr`8FKo{O zQqtC#uroiFg5 ztLE375gl`SmW95Avu~xMV`1-7#m=~ECxkkeUwrMw6<1lRvL#;88gD%vFB?rY2*1&5 zOWc2-F{9kaV9#s-!J}XKfy-zS|M-rp2=vZ{uPjyUj=Oe$66hbvy;z-pWfKlHaR1I- zeYlSMiKXZ8Htwel+YeW3->u@wuPZ;iMf>iy?MHgGKkMP)7ndtt#1da4SF){_E5&%J zDlc0CwV&lm(1e^*X>gV1oaUlA$~4ABb3CQWnL(nSl|eyDpX16vzmeQ+okJ>Z$aM~> zu60R>Uel^}AJe9oQSL)7_r1BKW~7(hn=X4G-Oq7A`R_TNN(V|;|2>V`OP-rDpafyS zb#6@wV_^x5<}3NpRL5=FjB(BJ5_w=^j*A1mzTwD&3(k#r9)8TCwl&Wc=f@r}%@3+I zTBo*#IO~n(9_xk|4aC)oW^lDU#<<9A7IJ=5ReAPNnNU(!;sA9<@u0!(51!pDTxoD2G0qNYZQAn7|^#4o23d^^6=%8|BGSBGuB|#Y*8oUNCQ5-D*%1^k63`S_4uMF;aU-BCW+iMUUfDWT7OeDj-Z-DcVdP z5vFOI0%1gHn`Hc=X-EcQqk<{>JJEKN|^2zfag*K1YAU_&XZ6d+*6tQARC61s*) zl<8bjsYCoK1R@=NOrX1pfIPt8Ul#j!pa&}(=50w35JKOQuyv`j|B~&)vW8T7<4VPP z>1?@S<`5_YXKTt)mUJ{G9E}SVN$>82clY(NJaY#bw>oM6Y^;?^-U|p|47ssuHHExyEHvZOYS}^mr2Z|p|UlrGL(Q9zr1$Y|4)rzPp>NO(GyJe`cnZC=oUI{ZfeqW2z>)Ks-EF+c=!*Ihily%|$4gF*;}UuvXAQ>I=CVauuO#Vmi_AmR_-P7}dZQ7Jup(@!UzS ziRhqsz#&8?Yt(R_miK_G=GIQ3jc?XWp(+eM>4ZD08S#qH!^x4F&gC| zPMaD2jLN29s(iFi^n;Hm@MbfY>C9w&!v@Cw? z5q^}&>j%!2e~JL)A{|^!y=8va!gD{^i@>F$ zADXR~D`zV&*Ur{nIlE+TfDlD*ncubItV!7_leYSVtv;hQxh%IJ_#mN5J^Y&$TjzHr zo3^0Cx$>ugUvJCLZO+_Ktm>+8=f5_iZyuFCk&H@MNKG z(+P5W3?9xPriMjujVpe}jIYU~M2ej?B7YGdRbCBt8JeMsrfz1A=NBRLqnS=ynXRxQ z=###T6fe&jD^p_?@+55@iH0WFJW8)1^;w#&4g_Ynl(iyhtw~sGlGe6_wQa$gY~P+} z-=1uLB+>rJ^^QdQu_f#AxbC=OgMuPCM}2R?|Lt~oM{z!^kr!~+a=P7b^KbGvJ-C0V zJ

    DFt;_rOf3kbREf?mw%{3fMoOgxva$~OVWB#;R?J7HK2dCD=~a{xsS9)r{#Wj| zGu($3_gw$7MOe}ae=pO-yzFxGqmW_boB<)$+JB3{`qsvBZH4|>Q*6#aUGPO`NRyW> z;AGb3X@l{cbR*XWtdUs32^-UXTSFrwvcLSvJ9Y2Lo7I@H5!4M`)STZeJqNImFPr=z zyG7W{NMEA_J)7UOE;8W{OS4D;RyaEu4FuDs(a6LU=wrWEr=W(H=&LEWE{-C~h7L4s zcGc9d6?30S_&V|jXcCB+S0=&fnX6fHw#*z(nM*F$&DLFs&Yw%R?o71qyuR;J-IDoG zhSTV4-`%rfa$I)KI_FID?aQXkDM!ssQ_WpHKHa77tK|KIOsc+@I|gd`Yc&Hd?G2+D z!5c39K$Y=Exe?*CjSR$9!|=3|36d$U*t|(kqWq{Cp6ZBRWHjSfFf)v1v|v`vjAk@H zkY=>Tte_dK#nwiiHiJ(6!8D`o6VZ%r(2TYMn$hw*(u~m5XK6uuF$o#;@i|)o(G88f z1+<|iW>zdzOe1R0jMKEQbI?JPZh^V0+23hb*jAvKh6Z2VKhv(53p=soK`o7y6l+baWSp?X zI=9A-*Lj7P24V(T6Vpq7Q+yO21fxJpUUU?TaR6%1(ZVA9LGG&qHY8>yZPSFEQKAr- zixQG%E@n_i3ZqSDz&ckbi9;_1^zxa!UOw8RW=GG9NLtmiO8u30nPJtlma`~6%W_?` zFArNSKkbgW$G58K`Crj|&8p@hyP>r;Od0PpFWd4E)Q~!IWcg5Z^&R~LYoh2_jKfA_ zy%TfxGgzag(H-jdaWa!%=deOc)w#O2kL&v!b4pJY?}6NU-;pI!aGl$DUfC!SJ-N=w zp8Uxt+Ka;ge_S9VzfW6#cHg!>a215FK5);Qitc%*6ou89be}czAbeo@z3z6?C*JL3 zG4|jcT^!$Ryf2)eL^^PVfBiAlu4k>>0AEh1U+y#O^`Cv#&vUAc4(y2@RhK2~iEsls zI;h5D4#;R6utsuTbLICGtdSzo{c4_~WlD;ana$U@wx>A>NvUrOs8H2fi1B%_n^x|1 zoRK1v6EevjRJB8~8y<`+%*rY5YaNsmUYx~kh0}gm>t{9J8`}U8Y?6bhT=GUT5k=OT z7mDPVX|?e0gT+=jQndyp_D3zaC?sX6+eg$}ADyIm!lgybE@lGvNaz+MyXr$1DwNwG z`N{c%msqVM;@1rY`$~d3g~W#nPmaRCL>1#P4cxlBG>Vx=7LHHIUVkaL_d=q{`&@is z_kwVZ7QZAp3L_`o(Z%Rnh(}sufX8+L<4?oU{Cs?BQ4tfuC?X<>Sbs$1Au57ZNFpoUTw2m}P|wltFjNW_We)jSe$AQGwT6{99PzNN2__X@nUVKNNK z!#SwCf@G%j8h!Xv`T)t-#1u^Dus6?_h>8s?Cj7^#$k8$5F-)I!qJQX&ZU4UZhr*dW0X04lYVvnO#?w`U- zYsO@m1p2fL*E>ZYMF!~-d34!PF2i92!QA%$8-lrKd41*lu2fC)&6@41bSZA~tdw}- zC8y%`-HR_IN={u5!MkKgdFo*0q#5STj`yAQE7dKj#?EBp)5 zzB|>_m#S~W-Gv(WH;pjgDXad*-i&5T`5t^u*7V=3>0jwTwbcJqqPFkD{u3#oePQ!$ zt!7(&ytXf6;Oe(#xW=j>elfJt+L!9up6q%g(e+5GdsnKhE7h?x)w3tnu@%7E>gNtY zk5$)^tnE(Jb}u})T-%p!Xnnt_^M|%nb5FAQp+xgT$>v>&=3Va$EI036Y2KFFx;MG? zKw|5Gk;e->v>V*UJ+92j1TQH~q_xKNWx4w{-OM zt!=xK+YTqT9mZX-mey4_*WUMjd;d!Bsg=&2MQgJ6(M0c~OPvEy^!0UQOkD4_yE~}; znJ0KoXiYY3zuB;TrLA|dW~pt@+~HJh^Y>4D=fq-k?!U zB_V7{3fmLH_GMvbs>z#d+I_QWcdEHh>C)nJ%gsAd-u|R_N5Z=!>D`;~?tMpI@(yM= zzGaBNF0Hh8C);->+IPOQ=iN=q?Z@wGDgEvMPpw+r&vUg+IjAd}`xn2ow0U6OglR|$ zy$JygP4*2W`UaMTeaQBgyZ?OmiqNuPRC^ll8Hl&;TNVayHMDHdxnI=o{;=MgYUxe3 zJe+8GIMv#jYG_Gq+LCJ9mfEx#)7MaO<`KdzacCO|^IbYwO$AtM*juL#fUE@8}YncmJUO zx;N$RQS`5{ovW&b0J&U9mbE6zT9aj+iL%b+vTj)Exhn4tXlck-*}&fo^E5)MZ2Ue_ z2Z}Aij~_UT=x9dI2|GT%)62Pp|yP?UUD-2tS@Ohz2a>7HK#K> z@G(`|6n8hro1clhhEp}QclBDkBcsK)kM2$uEQpWfKLduivAyx}Chd=^drx#|er#W4O4-)p7s?{({kwwvGEN#|MNC2a{j!d>Ty9I*J_YIuJ=&5j)fa|3JY3F zZ_+>BX(VJFcy7`UDP?2=H<5xoN-y8eHRI#%W=OJdO-XfPj`s;p*Jl3~ycI?Wdz#Vt}?L&k#^>@gL(e5{NonNiUx zMwh+SiM|({k~cT(>}q;sbaYZuNn?c>qWZ=r!=vnKH~6Q~AWXCK@IN(0hRb}9VR;qY zM*coU=iv=0sydBC3sJeqXHYKk<;_CJE!k`ZKVupQ>`P#BNW{%L zr$U{!glA&f0ysqsMbAMXimPwtVnR$Z=fsyHh81Mu0q9>?1HFi81%qxc4jtuTfLhSH zB4Tt_zP@<*Vuq!nUKNIlhANE8wB@T7nScE%j5AHo^9U`%+@**iY2FZ&j6M}b-RnQm zaZ_60z!ioAO};TKl+TU>VU<~c1OKtDBtOT6^o#~Q)A8wXA;S%XXa~YVWP%VTZj#Z} zqXN;CFGyE7rjYCpcMFGd?+%6h^u7hd^JK%IUaKIhhTj3%D(^pN3y|$R7W2?4>2drN zJpSNN7{xlIrj6Ny7|bFVHB$LX+bP|QGbie&SEnSB!%L(9Nt=C97-8U&jbD0*5=riv z*2@#YKs2rOiK1#FSPX&x1r;DxF73`60IM&9v8N}(>5_ZCq_y-AlNH4n+E+Y%KOkLj&ZlKx_*Hw_+ zpF36Bk~Fo%O)azgCbK*B2 zN!eVN56>RHa`N@#$i8H2TCGBRGe*wb`jMgl?%wa@7y12m-4FNeMexVHI`X$w!CylQ z(n-NiwQdZfa;o7PE)o?tPU~WwD`vEwrxc-{F%+mYj4&&N+IYRA^DnDbH55Co=%Jt@ zw5Cp_HP`fWY zWOmHIuu|CtO5Ni~)wL(2oH>9 zS=BLteIV&P-aVR>eYMhWElX|eSSwY4O9K)O+nRnBhq!%Wny%*cZ*1edkY=GVL z;9gMP+nvjKfsicO{QQ<-*F>8}erxcp1B+!d`&XQ0|6PNo-Z63YP2V5>&hRzu zwZX;mtIl^SuDh>4u~c{X4$O=#8SOd=4#^z8Hc&ax!UInaH0f^C8xUsa+!}LMl7m|D zf17ArGCr2dV|3lLNT76s~k$(!Ewq!}J z31nXboP>Ur9${4YPZ|6p=_-{MKJn-ra3a%Xg25Dg!XSImFB`8^3+uljq-+jYr)C6X|;{++Q5eAQd^Fq>X+*Jd<)$@be?Z7CKi#O-%1oZFKq zX`kzYcgb+eS~8>9Pcf;`LRggp}Su{b^_ZSdhDYr$;5Sv%`ZD zc*j{Pq2|_;N9LMoGagTnqLD~YW(yw|*Kjfuv~v1th)&VFz!C|V6pbk9M$;yG*O{hG zd89$lbh+$>24+;uc8|n(Ym5KFsGms&WJLuk5Tr)(HW4I)VjUtiQA#s;E#$S5N2Z6M z6zGX-#(PV|qDfxzXyK+!>f%vekD$3z^um}2MPZxPokq`;Hy3Hnls7AA<+CdXiau9) z;^9Ixbw54h$JxbhFU$`81j4>->+x#k3=RQ)He z;=gc>39j+3M$c<*bMWrkINr}EIPsU1)%yWA@JsHI1oy}tLnZIHqPxT42U^;?##DJz z3Vw}{YG_`yH}XQtV$W#td&}v*a%%QsMvpLbnfB6*kwPZURdz+3eIa9}n1w5^%2+96 zqx7-a=?uYuvZ|sghOEZS;~s*5k_^cQdYT< zVkWBGOd*R}xs_rzs+?eCtD_LAv)nGB&_RA(?^4zEt0f}Om!{mF3?8oJOK+7{W%Lv% zsE|dK8d)%3C5tL`vLGI_P{L@IKh+ddrkX;SYGrl^PIl}mq|`~Fr?Gs8__==Qaq&C9|2F#tK#eWQS10&tpfJ91 zp?&e8M8{5W9em?$EvKnrscUlS_}Yc0McvyS84khg0EnM=567SUQsUT`p@ZaWvjq{# zcnT)GAyrk66`iVWqz;!J((skJ9#bT@x+#+FGYjTB&7w-LSr80WWya2e`Kf177gtf8 zDPci3)+$!+@eHdH3Rt;P;lzozdf$=3m)o zMv7tjORnrl;H45XMJ=4OG(*KO7pTBaAqQu0TsnI>G8;+g>u)7%Q6rR~1dt*CxnkFc5s%S_O+0vSd&>wOUNwVV{&4ROyC}N0Wh8fthG6+~%qsndVrqYGvk9JX&sSL>- zs%^wU>ktuR8jXjMsGOk2ZT+UcuH_QGRy8f=$2fCVxK+ZPTGD9nhhET871TCz(egic z0h2=UgATfhT}+kAd4%|oi>T`2EW`k&ZOC(K7A?zc|B?rtby=B*(^Qu>7u%?OT;zfY zV%F+5cZlp!kh0B5$*$Fy0bkcDEYLYyU*ARwI(;S?PvkA^27m zaS`H80mJ5_5vS_wzFwF2z`LQCY))JUwS@u$^$%`e`}SJ1^xf>%N9}lDQ+X86wtM;- zUp8u9&*(0__txII*2E=m;<7jP_T#ac*4WJc*au$bs%Kn1NcA*E?p*M+{v$|-d?Ttj z>t}3kE}GCXOvz1a(T{UhvsW4Q)6w{K&dTQ3CCQFRV&H^K`4Jpoio(;*bFR408A7q- zqn&~V>ECHBOAdOiD!iASXOhGK$A%Zzmhcfdq zCL78{l2gMc<;RNkIs*b}%eHCdVmt#!c#l-4r0NCbXI3ops})v=?%t0_p1e&-WI}jK zo=igdf@2rtOTe>$NK~wW+Cop#$jJPb>1!1BGcWBHTbXgs82>$ax}6#JjNyY9&u-1N zPY?Zx6#bPu@piJenSYebwNpcnQzNa^$nN=HQxky>n@?j1lFaR=M|VGIrC;{C$L|e$ z<8SQYz0sd@KjnUz+rRLc_vYtb@`k6~;AyB0vl?LD4|Oi)t8jC^?yS_SCv=q`7UB5X zf^ApBuJ5BTE}ZGuxKy+0N|jya1d@c*u7MM%7~?=O@Cyw!Kwz4Bv$Q+iT>3t9B$q)J zof&TT4Yspqo^+kUU*LASw=w;V*&J=9hXYk22mJ$qE}bBT(!D`Ebm4s&2*Q9Mfnr@x JlM)Tv`3s<=XN&*< literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/core.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ebeebd0be95610d68bc371149f97da97f25704e GIT binary patch literal 16257 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 W5Un}Hh&=`EAq%F0uTd=0>i+^DN9Dr+ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/exceptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..937647cdd166e446c66708ab380c443e3878cd1d GIT binary patch literal 11817 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/files.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/files.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e708686f7f1fc007e440c0732267a86814276d33 GIT binary patch literal 2308 zcma)8O-vg{6rT02cm0F;H8GJ%Y`|4;_%XquPNb4FfdrBOiIf~FRD_Io32T;JYi5BG zt)sN+AxKDZE(L@XklKSIQYA>05~)(vNIg{Q$pVVCr7BWYsl8F)(B{(4ti8C6Xy{1Z z_q{joXWqP-H~!A$asWI|(|?UzV*&V?Fy?UP!R`nKvw#OYC4qiIEfO_m>9>s0{WL{* zT4Khm{Z<1r5Y*$zb>7H{j;1m=;>#&Rr&M#V%z;B|HgDx-p|vrtgS zp&Vm~+x#Fo*Wur8ng-w+pm267Wlk>VL6XrxCrD8PUjdM`supuT{!dSNVVpB(3skc% z=Y6IqyapU8H{v!E6{u$ADUFI7wJ1mldSY45TN-O=2jG3oC)p&Iw5cvrS7XgsNxNFI zFXc>WCm6VctsI(NbKJpoO*%Dayv)=q(EZ$t@Mb}aqnxcFsl_6yv=9~&}=ySM>uEKAvHX9fG<{a zE$1trEXI4{J3yz{jEAV1wuASrP^m-KQ1d4LW*n2k(0|n6&1dz0#h}2!(qHA`W% z#Nc}{^RDroJ|u&>12WjZ38+G&4>~o4yF!sjUuxD|WQ<=jV2b{no}_}zou130EFgbW z=KTq%Oo+U}_(jquaCh(z<6l&g{5Pi55k>YRWgNx?|F9@wJzf~b#=KvY{YJ-VzJ*&1 zrz#0vnUr`Ra@$ zB30+0fD~y$&>bQg-0wqC+>T@(dsHE5Mq>(AprbsmGjTN z=v;IN8KGI>1MC|GOCaenkTefyCm+%*^r8t7;q>`IygUTSjn+8~4NDsaa&$~Ux}CVq z!=We=290^5NQ8KLT#|A!S3U(k$J$Io-9W?)k@n*M_juJGnpEH@UT{o6p_`YQdM;dS zYr3gMRWa7oq42`s1vx5BArXa|Cj@ySB#A?zgi)k$^QqPlNudcFk4A4}dlBKi2pLst zPE6?xt{V>BzKn?9rA}#k-)=)sQJ|OmTBnOK103aI9v@v(THeZ~E$% zx)<*50DIZ#R9Ds?Om}7c;nbCEplKt}mI<`21|q56tmoKQ&bs{@?m)&JSQ=P& zhqo(msO=-5=Hw1w%NkPMo4%UG$@$4eZC*=vJ$rA}cP`a!1Po_9;b-0Jp7yM_X2aW< z@isoW^+oOT6Dud4hgL#g*RQr-TW#uD^Y&(|>lXXw`<}EujXaJ#J^%Rpi!-YYo$J+? zwrWo<^zFECm>nP9fW1ag?w<8L^voWAczlUjD|;(jRQ{lMx_2({eUWdg{K(AJ-y?Wq z|3u`W`KU9{RZe|#;$j0PK_@K5GQA{*?~M>sMMXx<(V-Y5j};^@q|TAkf(xCyA;m^j zoAI?$Mfo;@_|FD_WqW5#;m0N696W_t@{poF{Mn`{iuwWA ze*(=vf~sFY%{E&@d9u!mRL6AtHcfDCeU64BFX)xCIehu*x8awffw!!#`>_uP_N-VJ IwqTck17(*D2LJ#7 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/format.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/format.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf5a993ba38cb81c0cf481a76ae4eb383c92a4c4 GIT binary patch literal 8691 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 U)sF2oWUIB1aO_DEM&cCz1q5hRJpcdz literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/identify.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/identify.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ed7ff6c6e2290a6c12718e1a13de4ae80a1e00f GIT binary patch literal 9173 zcmcgSX>c3YdAqoX`yfDaiGy75kO)z{L`sx(Sf&W-uuRIb=s1QB41`@tpl~p|OG!i) zjwW$usDzVH(@6})O%0_#42{wn`Bmmm%f`)AsnZ6lr2}ZKOxS5UZT@sR+G#28m(+iYiJnSAhpV0^lv|RgA(y z7==@+IG#|2R5*gwadkoy(#WtTu1)AdIvLi+8xs1EK4AzMc)_ZZlaqh(^*w3%uTmY<~>lVu!9(7c@v|owEmX5 z!d-}<8z~!QKdYu3w1H}*os^T-QMPmghEXoMm1?3@G=Zp`HB!xQYD4aMTc9QVnFA4) zBUz52BMI_MgrzAmmY7X392ukNBo{jyi$=IuD%o$GxCr&RNIX7Ia_3_#c_|i;lkwOE z8X6dSHXe!6HgVy<1Y|X0bJ4_=4d9ur5J!4pqGn9;s9!1j&SD#D#rW z_e;&kr^luzCMTw*!@-I1m&RThn?8JW>Ub21q@=3Su?Js;mbWk(3*q1ts#h^uO=~C| z8Hv^cq>>>WKxzb0not86MT3k2ZQ5#^{;@Wl+}02>$m8`@3?pr-jWWn>Mp}1PMVa2z zgv?Y0HUn&#*90t*?yzh^$%NDwPR=FH(2S&yC6PsGO421#)LfjNk_-_J)Olu(qa`iq zJHj528ln~RONO(tI31n^J4rf*=H{4W6scQDIslLo9^8ZMEsV!zl%B^*Mn&OCSSJ}A z`c;p0R6&NM)X<~(WY626Djt{fx+CAlzNO2kl8zcqT^ip~XH-BR@%lt!8hI6^t=|W< zRcQ-`!C2LCETEfW2pBEtDvEieJCvnz@-#(ft`f~#10&v=zD2w|MtG)94xzN-*}3m!(+)v ze4dT51O2cBFAl_GX9i~Hx$~*yaR1P@0XD|beK7b!@Qa9=UNOx3_>7 zwiLX}$CkOjedBv?6rZ0edXHY6Tx$fYW;q!B z;*A$`dy2k6!8{0kHg8eyeE<_;zu`@=94g-QMF5`WO_y<2-fO`tkX7sW6ZAaApTH9} z;ECW-FcQu7M7mY2BfkQhYo{da5x$FQgXXkBSvbhnXai-OD088#6S4r#v_rw7);PFt%QuhzQ}-UMVhr^$P?Yi2djwLzC77j;}$rN&}RFVZ8&6!jxE~$anivJ?lt+=x+rxsO_h)fS; zH!*oaSwf}}wW19D*wc{x308KvM2)L#ZT!+y*=+mLk+PS(a(IDVn!cJAHDsCaUYS@J zUUFUCC2G87SL>C73)7;ewe0f)7PmxQ{k*90uWR&LUv~Hb2F1Edqcvuo4>2ezQ=`eI z4oK!$a(0eGDuz=_(naN6UN()S=TfubR5Cu#xB)l%__lx!cqGh&Jyr}mg5lt36rRy= zwQY^ZZdKuome&TcCEY3Ti<97J8C|A_O;fr>#PF)L7`dih_=`@}(Wz4*(E}lV=DTsZ|6jhzWqN-Ei;29I(Kf~(R zREsVRmazbynX&U0%82YNZ++&9&0!N$qjq#p;4R?C+EYQGYvs`KBq!dg%q?5fl(E5_ zb+$#yq~I}X%ABz$o1TJac?{1Ac=+OO4s9lt*=khe*&LZh-Z6uiej=gktD?EO{SB1k znf;9${TaCa^3IDG92yQBztSc+=o zO-Kv!mB{h`%`NN)uPx!pufsggSOaw>uI&*^I5YSAOZ;@}DY~iI?p=!b?euXGXRiIx zHF@Xv*TEm1SFn0A4ZFhcYV%gbCT#nsc+9hRH^Y+>Cx?L>bgg?L)z02JeH*6~<&gIc z(~SR#;ZRj5AdC!JPrs|oH9u!ma0<=wcFHQB-r!+%cg;WKuIhj}>YRDJ3oh7BxL~^# zdt{pV=IYK>2Osun<)+oLF?I&s&YnnoONB~BqZIxW96jZ6*KTh}v*&P_UvB+2UYpCo zp$oX2_!AeX~?^dAITH!C_hFhqI zBKg*f80=gFeCy0+h0BeSA{8krXA&1s`uN%!xB#~fpkS@hGEkn3_tWTQd^Hcc!ng81 zpbs}?`R)i~E85R^cn{^5ecCJgZCe!+n2<5sdG}1O!qG;_dljzX46cvS{%IH+k|P=w zt$8rs%eTv3PryBV>&A=<#F$kW-^6=>gX&%E8~9r|jwR=ncE0^P9ZK-5+IQgz`9CRT zYh5WHm!U4kZ^%#=gKv9G4{cT1TAm`CNtU5DqRM?mVi*f@{f5jHe~@Qi09E~{V1F5z|iwTpkF^he=KDXPktF2QGA9ZIUjuPT^N z>HqUj>Ho3PU!94#g#D%Z5+3MGKld_n(#TPD1c9xE!@A7aol|a!N_7UF6AUi@}Q_DnR zEMU&Z=s3mfg2qSqNd_GpkMP~U_%)<}D&0_-f=uhHF+5Vz!zXeicJ4gK_yAYZpwN|q z*OS&)2lU8sjz_pLZ6KAQaugt-s`eNFLP0S38~YL7^9T>139CY-^~x}Ssx+t4s?YQA zBhxBAlU9)#NfiN!`XN{%$HxfCKto^>1&3+IfJl!b4vi3+VmS6vj62UD-;lH*L2MR^ z*?5eTG)agNOP1sCkzWZcgT5p^oun!w(6_W?m7~EmElLg5;5382%jJ*-1T-sDb@586 znMuWx42lmhI}izVoKB*sXCifxmWWCjW@u_INkx)eSPqratfZbz%?3zj2#wo@GPD&k z!zkMh8N~aLVQDHXhbt}l@0H22r{@8L z=CwPo+7`46m+y7;mCdf~<^0^r#nQpk!okxI)v9izp!YBMvigtpnAvsxP@X6S_6UJJ zt9y^H2Bz(}nS6 zhuFQlsP9lf#LVkH`B|Vx4!U`rhPex&Al~qZRYFoV$;3_BV>0?ZDn#xe%lRe zv3(%_x#Cc8<(M#ZusC?A=sUdd;u3RpYOS^N0epNLb}k&g*S0nPy4W^)_2@!yDNu&E z=NGPiq1e7-)izr8_g=G>9ZhewUu(~`tU3Z^|K@AfH9PV1_P#tNwhs$t@4{quXwB{` z*}DaMcP>_Ni}pPwdr+_kSEg?di}s@>`)h*zwc=+_7Eeb+`%2)pO6@T(&o5@oR>%ohaEm1$$@ih-e=y6J*)l z`Ou{ETZ?Ajx*fASD_Y1oa}lw*C+`rNdj(r>+1>Wemg`$`$KM{v`vv#bl6#xr-X^+7 zO76Xad+&1eL-+oAmWRnfM5LB$2bY3bf7#{FP3MC*P6)2SrO9<0=4pR6-4f7k#9BPa zGJhH`0W;0L`QV4mL%+>z>pG0^WT|&%uFvG1Z>RDRp>0rT87v%M(fot)?~J#H-?tTC zJ|?{Iim?5aGSQuP6*MIqz&@r(R zUF~=gIPh({H$1v*5r+>5W1@iFi;E#{|@W=;~0{J?4kZ;TS@F$e} z6Hx9h%-)u3hK0T6@|Roz!4=2{3L(+;!q1w#*Ivs`=Z3|m&5y(D4Va^C-H5erDiOT` z(fhrfH;>$Qi^TMjb`73a#;%`#CwV=YKQ6WnEt&2P?!4hyo+*)20y$M~B6E&wr*l!E zDUjd)-ocv(3rAM)6;51`mA`Sx^3aU=0(qb49W8nH z3f{elhTkZQB-j z)#)hu`WB|j?f#b6#lYCgm=Kuwk@NOR@o-4&36-1O+4!C2 zEoHK6>2SHdx70o)v=0@!#P-ppL*1%t1FXR^Ph#TlLEObt1T0ty*`2H%g0uUof|cJl^EHmQLDsox%auO zId?4g3L@$0%4_d<`U;y$+m7AYcI=4h{xqRP&YxJ2AVr?DXe8bH~|R_6175KEcsG_KU>+`)bq(Ja-PD{+(H!+zlIwNQ|P+o%d5}v;luSfuqy! zmk&u;JqWc;B7E?Q)YSIB53Lx{jrK>kq6}L zHc4bR5b$mK)%_jdLI1-V;rsrJ`|T&a`1hUG6DrmB{apaRuhXL3>_B;&^+coU{jI|Q z|2-Li{0D}X6CJuAkiizH{BWoB#AeMu>c$$N@`1Gj%90N5 za&SXq&`UOhB3Y72e(3F&@45`S_f{^^=nf0_xat=K10Q1;Gby*RG{*r6mOIIua|Gr?*Cm_>@GI)Z(n0}O@%M~+-G6;TP^3Cg!eoy6r@p)zr+E5UOU4jg3kK^}M zDqQnldJOOWDdzhrM*Ixx{&#GjfbIJ?tnX*o*0n8>BGwGoo@j13d;Ypj#3B!MEx2(Z z^bmt$eJ9r31&@K{Cilk%N`>z%H^P>MfHiaDx)uT8?RFP>C|qxlt9s1lT$gcS%hFjF O&I;P5hbGh|bNqi=k3Wh4 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/io.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/io.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..33c9bae407ea9b616d91311b70d0dc72423eb5e0 GIT binary patch literal 4173 zcma)9Z){W76~FJVpB?{+?SzD;BW^FUKYQ=J zB-jcnrBq6_YAu?!WYeT&-%`OOrd1mKRQNV&(iG1~$zIbHshia8lS`0>(4_60`}}N@ z@nJX0x#!+{?w@zg@BHrd9|Hj&fwEut&%`x_kT0>}7OA1E6ONF1qLDPwIE~M9X^z!= znrF3;7N8dLVnIqv1vxEqXeZ`91tqO8UCMh4zO=8>ZSK2&H= zw->_cFl#IMNFkbza)c+8pWNjhs8ws;Yj7qk=}xfWCigh4N2TVw-sW2IPN$9Q@W<>^x}_5kr}8A4y5-Eym)qZd=!?F z$Bklz>RHDDj`TDd>wg7ho=^gjCu#mQLIo;n+)L0)CD3@L$)E{L^JpTKsZ@dannaaz zgnGyMtzfOmR34W#&lR!hTOajk3YBq&CTj#ny^oBxQ9ql*YraQ%12CtxgG__tqSp4v zc!+vv`v!}!MsR*zpbq&Nk@e-?nR6-^nwS!SCvz&`jjl&a;kUnDJ8mw$5 z24sun#(~Td*ZMLyLoNv4Co^1}PZ_vyT(lLdc%JIH3bjKTwP@B-o5%MKUC7dsl`HCo zAB}k<3YF0T!o=CJ*u&S8GezUPS;}OonH(7!I5~Le`GFBDW96~~hl?6j2lY(8Z05{l zVw&pH$$V}sSt?r-Mg6(Nv-^@}&Y}Y_`8>edOtMr+=8B0@+31G#D;?|HLVQpErLJ6+qQxCZWH~~EfBrr8Tp1WYnd0>NF2?^Mw`Ee7E(r}0u z7@F!PBvd8HoY8Fefsy$Q5SPf^Q1pZHd*zi-Z#C4r653G>?N~Hxq20^MZsRGi*zj!_ zCH8Iq1O>1rSf-TANC91s=vR^qY#tyMPA9X+f2n1U+-r+PIL#y3gB*$Rr{@jKbX&wj8A#T)l+71S8W&mC*s`-C%RgJh zOWs7E;o+Pll2lx};$wJW`c4=(br6@xeIJQz`EX)Utc9PMlk2?VjjVO`taRb|vo`PAt<(UG|$tKB_wN8UfS8ts}p z;m{`Ujo^fn@11-Mv06NK9YMi(ZJ z<4-rh7vZ6Bkq4+YKm(WGW4N?+`2kNh6Lb~;I?F$fRj+d{_x+5Y=Ky5<+hMS5f)$S2 zDDF8pQii|2|I2cw3CZ6G&b5k39G4kS8oi)9pxBQZGNkb=jtfrky$D_v9}SF&H?pUQ zh^}~9+)>3V&n$rWiadbG%cOJbLibNnD;@pSj{aK5o;mMoxD!Djd3)D7x6Y@prWd`n z&i=WhYmqGr<4Z5zoc{E!Pu{u{8UC|>_-?3kIrP+O`<8kCRsTqG#;wEZS~H54d34m1Nf&6dXSk?UMXG3-!E1|)-F zl?}`RmRSb#EaJdG*cj-gj|d}5mOqaB@mfP_F~0)wF1hQEypvk>1>ZTo8VtYl-Mdn_ z&WqCC#l9u+*Zp+@>P_WVT_AFV8Q1+x~c~081@Ekl#q&+z1bkt?GP(X?-2n*WJeRTrr;>CMdHC6zvz74Ea zr6}aM)cc{iFnYC8C!j7)EKOH;eDfaaXx+i4d@VxLaRPpN7XF*XCE@iLbhRGn8b<|< zhkqb$cu-4M#I#rz<1z$ys8F)X@C!rC80Sn|K0kxC(FxO28#n;B!0pyC67!HlaV}-N z3_9R_2UNyk6h}aq7~dAf%^2_wtOVVS60ALhb{N=8WL5FAkBLjh0q8JZL~#%W{t`8g zqIekv-j7b$521#FZHFMfLeT$#h3D$v|G-iot8Q$+k1b~+n#Z58J*uh|vjE^WEn{V} z`HX2&6K(@);M3C%WsCVdyps{ZiOg7*VU>Z;_BDQ|!7JCmliPf*$R1M8+lk!-9!z&M zU@s}zDwp6kalV74NIQE4C#d`MHrd*JJ|o`GNazca_?$fR1xZ#( z@^jMt1=;p@viEMswhs@@AHRBhx%Yduj?>E|4A|wnF7>Q%TdLfa1?>*k_b)!l_0|ap g03yG=j?McT$8&+X3-<|BU;BtR{3GAn67%_g0Wxxs*#H0l literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/literal.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/literal.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c55d425b08133a666d195ba8cbde429ab7c3758 GIT binary patch literal 6676 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 c>%-aWAGV?3ARIGozo2UlqF~n(u8X#fBK literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/logo.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/logo.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0eca8f16361e7da4f905b767db8012d5acbdba27 GIT binary patch literal 623 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/output.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/output.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b4d47773d9055e2c4247b0caa485818d3f3142ff GIT binary patch literal 26448 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/parse.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/parse.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64916a1c1dfdba9b99e653c4ad50b2682d7c3c67 GIT binary patch literal 22823 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 TgYI#?a9_Fblz-+wvGIQZ&4dv6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/place.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/place.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70def4c701c106c44928051309f8be61fcc3e40e GIT binary patch literal 7478 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/profiles.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/profiles.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81b7fc80bdee45e5e6230e16e4267cfae477607b GIT binary patch literal 1950 zcmZ8g&2Jk;6kqRp*Y^4=i4!}C)5Nr;RRG)cOX5&KY0`*DQ4=Mu1eRb}?@a7X*E_47 zbrKgLnG;1EfD=9BgwzA-pTY%ht2tFdNciT^o_c{dyLM8sYrlQ-KIZ-2Z{GZt&FT_7 zx0Qc8uac7Vr&vs$^jLZMK}?cGc(3s#3jI)wIrfE6W&~iE#8*!{4X)QfEP~_ z&tlCSQAnJqL?a23B59H#S(3x$Q@xodQ)D{)%LnoTRF5Q?!Ao~x)xWg5{J6PJyIty3 zT#p`DHenURBNa>zEQjDqhrq(8l@_TGgIRXJ(qmvgw)~FeR1A@HNK7BBmea0OtK&^7 zUpYpXd_5Emug18t=JbaO=#Am0!jjUCHiIFn>r&5WUIJX6CPYR=$|6#U3@OlgL2Sm5ao`hg zl4Si2U9ZL;=S^zcz>`HCRx?`W;}o+_YF&B+AT_`5LbrT6`XX}T18fnwDTs=i6!h98 z!w#|X;v4C(KhPZR&$HCS0JhafP@C|nwnuxe zSh|M!$Y>MjZ&oxc2HPu!4f9e|-LTz`(IUPmf*3%FBE=OMib)6Pn&H!~WqN|0h&|z* z@C3QXgutOfWfsvW?)ngmWHmB`l!xiU74g0+{P8#Z=dM+aYnu-n5BKhKZNIUxy>*Z4 zjZe1rHg?zc8lQ1}b8BzE5$Wl*-QDf2^|i*<&I6v_-dSJU-rU*VxWDJUEw)cY9nXW# zbEW}P#l(^L))A28kt5=P$s@KATCR!q&zHz@(8U1}d~r6(i&JuFc$5r96S=B$wPge6 zT*HTk)22M(_RWsrb-C826i%M&)CIDbFM?FprVin%;rkxrN~hQ6+A--Gj|fj1uIrGK z9^=W$eSWZ7;0c5ffE>AgnpG?LWK1C^ZGIM9x<3G!s`3?tJ`b$?o{_h zm|0z?aNXA&!|pSS)oVw@IjY-MtM2yw4s~wTZrrQ`>!dm!M^?84)%8hdHMjpddACb( z&n6#vA44@Uc?^LZDY00LOJDva6-S!1SPqsi2P;>C(tJ=V2iM*S3Ug=qWJ(^WqgkoE zBD@QW!kAKZd7zDQA_aoWOJ|9AS{@`u8EJ7jxO`2d7fK^pUD3c)EC=&TXA9XdXZbt= za&q!OAL&vm_k;eO{(WYk29o-1=9|omE7yZdZv`tAh*7myiWZYcQ&PSliUEl7lK26X zQuzX3gg$~^D4wOYggj6nYitKV=eRSej2vj`kpkZrfOc*%2r&k=n|$hvpmg=0Y48k^ zqj@P;2y(MQz9{6(QjnbyzjRJ4r{>S*($^vE$<-(9$Bn0jr{>f7pC0_4zx;=O<&~6< J$=-)R^nbBDLz(~p literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/sections.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/sections.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4b67e9ca432d0ec1ff8a6d93e97cfe1d78874968 GIT binary patch literal 554 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 O?<&-H{R_dw*7-j!hEwGL literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/sorting.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/sorting.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a775070f5c5200d5188694c8d1e70258cfdfa71c GIT binary patch literal 6203 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 EFTp=UEdT%j literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/__pycache__/utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5471849ff13a19ea85beff1a01e26036065f0fae GIT binary patch literal 3871 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 CIT#rL literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/LICENSE b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/LICENSE new file mode 100644 index 0000000..e859590 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Taneli Hukkinen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/__init__.py b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/__init__.py new file mode 100644 index 0000000..5b9f247 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/__init__.py @@ -0,0 +1,6 @@ +"""A lil' TOML parser.""" + +__all__ = ("loads", "load", "TOMLDecodeError") +__version__ = "1.2.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT + +from ._parser import TOMLDecodeError, load, loads diff --git a/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c3af96a4a3088e1d2ec7618f46661ccd2655dd10 GIT binary patch literal 391 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 Qhk5E8`E&^i`Har}KfNR6nE(I) literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/__pycache__/_re.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/__pycache__/_re.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61cf67fbfd5e5a411248b31591a90d66d4a843fa GIT binary patch literal 4001 zcmahMZA=?ia=-j-V;d77L@k@6Nmvpa$X64RDT7yqS6PX5P#!|M2cjbV{L*xiw-7 zSkqk5#DaVS$nPiXeNrRvdXjdj31}^Iw9xznOAHHklaoYEHk}x1sf=uL1iCPkbsgK0(7^3nG3uI`EPuJG9j{Wwe~CWIa!g-?}f&oA10d#*?D?%9bu z-N#NF0zo^3UU3qF;O=q*gPVtO8*lW52gPu50%-BxnzhgY3~l_he4DW91m3__R5-gQ z2n*J;H`@3cscema0vg}8BmnzAkv3jQXl}u+yT^})Cwf75mpz8)dBeojqqjUJ`qZ$62{MA`Lab(jaF#^vY) zG3ljhz-&uizC8=E&T3_8!3~kKCDY=Rnvc6HK{#m$;r1?aExjA`9iP}+k9Qxh#PtMr zE?gDv2yg2cFGr>#eD~QiXTsee@^&?9<74~;xn+LDx@>z)(A%-K!cV*tq3nVh^YLTl zm1I(tAq>54)0Ppn#B|s%W zck3SAWm#v0vio!=3TmY8V{J3uJ)IT?T#Q5;Afpaz&k_z-Cs__=JLxtU@A4_z01|C8kpndB;Qz$XSO)2x0h%9gH^V zE`(c$KqGty!D-s3kdm8KO%^g7;W(PM^h{3GOcyDhQe4X;90HTgX$iz(p#~Jd1m~PA zqPVId)0I)O+B88Ok~l{Y=d_Y5@47RoY)+HQ+p3%(2oMuUQ3>wK=hC@2DeC@mUc}YZ zRF>>ngsQe+g`-9(hYf)=!bX@Z7+`Xk-L#i^OcoBs3w)r-XnC~(%*VcdaXg#u{H20! zsy)|frtU^~P_Qhn~wD+~r-k6g)fAkr8jJsl1HdfHis(fa$cN zov73i%u3-b#_Qc#0H0AhWaZ6v5Md++a-B6;ty%$V>IGX@NsYiO_SFuH9GdkY3cfEz|3zz|N>a?RqJ7qX1MKAngB21kCzs=B1T{n8sxX^#IQ}W*!DmptieC{muJV?}NHcE?l@YKT|xi z(({_M*zx#(&n{j1)OS~1=~@2hOZNW72j2DMmM6NwMM;QE4}2-9a-4iLp*lDuQTc!e zl%nvZNzgt9AgnD69#9YS#fNLGzU*GxFouzXR9j%Z2EyYuRI`@Zj%Rk@p z3mZ;h$5S_-TfDPy=M$qSZh80(jwkLD4wwv*N%J8siUhu#dHCItRtEOwvI$L5(kjBG z1O645n@we>5bpK}e?B4H?U4`f`A98}#7R^T35e;97dNe|J*Sc$^(YV>~l`oR6j=CQtALiphV zO);LOlMm_U662ulMYcr2v>GDQdU^G=^S_w5%TmmK!c}Tu=|Q?U1INO=I<`yZl9#0q U7JD%9;Qb*oeLeaVuZXMu2PW01a{vGU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/_parser.py b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/_parser.py new file mode 100644 index 0000000..ab36adc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/_parser.py @@ -0,0 +1,650 @@ +import string +import warnings +from types import MappingProxyType +from typing import IO, Any, Callable, Dict, FrozenSet, Iterable, NamedTuple, Optional, Tuple + +from ._re import ( + RE_DATETIME, + RE_LOCALTIME, + RE_NUMBER, + match_to_datetime, + match_to_localtime, + match_to_number, +) + +ASCII_CTRL = frozenset(chr(i) for i in range(32)) | frozenset(chr(127)) + +# Neither of these sets include quotation mark or backslash. They are +# currently handled as separate cases in the parser functions. +ILLEGAL_BASIC_STR_CHARS = ASCII_CTRL - frozenset("\t") +ILLEGAL_MULTILINE_BASIC_STR_CHARS = ASCII_CTRL - frozenset("\t\n\r") + +ILLEGAL_LITERAL_STR_CHARS = ILLEGAL_BASIC_STR_CHARS +ILLEGAL_MULTILINE_LITERAL_STR_CHARS = ASCII_CTRL - frozenset("\t\n") + +ILLEGAL_COMMENT_CHARS = ILLEGAL_BASIC_STR_CHARS + +TOML_WS = frozenset(" \t") +TOML_WS_AND_NEWLINE = TOML_WS | frozenset("\n") +BARE_KEY_CHARS = frozenset(string.ascii_letters + string.digits + "-_") +KEY_INITIAL_CHARS = BARE_KEY_CHARS | frozenset("\"'") +HEXDIGIT_CHARS = frozenset(string.hexdigits) + +BASIC_STR_ESCAPE_REPLACEMENTS = MappingProxyType( + { + "\\b": "\u0008", # backspace + "\\t": "\u0009", # tab + "\\n": "\u000a", # linefeed + "\\f": "\u000c", # form feed + "\\r": "\u000d", # carriage return + '\\"': "\u0022", # quote + "\\\\": "\u005c", # backslash + } +) + +# Type annotations +ParseFloat = Callable[[str], Any] +Key = Tuple[str, ...] +Pos = int + + +class TOMLDecodeError(ValueError): + """An error raised if a document is not valid TOML.""" + + +def load(fp: IO, *, parse_float: ParseFloat = float) -> Dict[str, Any]: + """Parse TOML from a file object.""" + s = fp.read() + if isinstance(s, bytes): + s = s.decode() + else: + warnings.warn( + "Text file object support is deprecated in favor of binary file objects." + ' Use `open("foo.toml", "rb")` to open the file in binary mode.', + DeprecationWarning, + ) + return loads(s, parse_float=parse_float) + + +def loads(s: str, *, parse_float: ParseFloat = float) -> Dict[str, Any]: # noqa: C901 + """Parse TOML from a string.""" + + # The spec allows converting "\r\n" to "\n", even in string + # literals. Let's do so to simplify parsing. + src = s.replace("\r\n", "\n") + pos = 0 + out = Output(NestedDict(), Flags()) + header: Key = () + + # Parse one statement at a time + # (typically means one line in TOML source) + while True: + # 1. Skip line leading whitespace + pos = skip_chars(src, pos, TOML_WS) + + # 2. Parse rules. Expect one of the following: + # - end of file + # - end of line + # - comment + # - key/value pair + # - append dict to list (and move to its namespace) + # - create dict (and move to its namespace) + # Skip trailing whitespace when applicable. + try: + char = src[pos] + except IndexError: + break + if char == "\n": + pos += 1 + continue + if char in KEY_INITIAL_CHARS: + pos = key_value_rule(src, pos, out, header, parse_float) + pos = skip_chars(src, pos, TOML_WS) + elif char == "[": + try: + second_char: Optional[str] = src[pos + 1] + except IndexError: + second_char = None + if second_char == "[": + pos, header = create_list_rule(src, pos, out) + else: + pos, header = create_dict_rule(src, pos, out) + pos = skip_chars(src, pos, TOML_WS) + elif char != "#": + raise suffixed_err(src, pos, "Invalid statement") + + # 3. Skip comment + pos = skip_comment(src, pos) + + # 4. Expect end of line or end of file + try: + char = src[pos] + except IndexError: + break + if char != "\n": + raise suffixed_err(src, pos, "Expected newline or end of document after a statement") + pos += 1 + + return out.data.dict + + +class Flags: + """Flags that map to parsed keys/namespaces.""" + + # Marks an immutable namespace (inline array or inline table). + FROZEN = 0 + # Marks a nest that has been explicitly created and can no longer + # be opened using the "[table]" syntax. + EXPLICIT_NEST = 1 + + def __init__(self) -> None: + self._flags: Dict[str, dict] = {} + + def unset_all(self, key: Key) -> None: + cont = self._flags + for k in key[:-1]: + if k not in cont: + return + cont = cont[k]["nested"] + cont.pop(key[-1], None) + + def set_for_relative_key(self, head_key: Key, rel_key: Key, flag: int) -> None: + cont = self._flags + for k in head_key: + if k not in cont: + cont[k] = {"flags": set(), "recursive_flags": set(), "nested": {}} + cont = cont[k]["nested"] + for k in rel_key: + if k in cont: + cont[k]["flags"].add(flag) + else: + cont[k] = {"flags": {flag}, "recursive_flags": set(), "nested": {}} + cont = cont[k]["nested"] + + def set(self, key: Key, flag: int, *, recursive: bool) -> None: # noqa: A003 + cont = self._flags + key_parent, key_stem = key[:-1], key[-1] + for k in key_parent: + if k not in cont: + cont[k] = {"flags": set(), "recursive_flags": set(), "nested": {}} + cont = cont[k]["nested"] + if key_stem not in cont: + cont[key_stem] = {"flags": set(), "recursive_flags": set(), "nested": {}} + cont[key_stem]["recursive_flags" if recursive else "flags"].add(flag) + + def is_(self, key: Key, flag: int) -> bool: + if not key: + return False # document root has no flags + cont = self._flags + for k in key[:-1]: + if k not in cont: + return False + inner_cont = cont[k] + if flag in inner_cont["recursive_flags"]: + return True + cont = inner_cont["nested"] + key_stem = key[-1] + if key_stem in cont: + cont = cont[key_stem] + return flag in cont["flags"] or flag in cont["recursive_flags"] + return False + + +class NestedDict: + def __init__(self) -> None: + # The parsed content of the TOML document + self.dict: Dict[str, Any] = {} + + def get_or_create_nest( + self, + key: Key, + *, + access_lists: bool = True, + ) -> dict: + cont: Any = self.dict + for k in key: + if k not in cont: + cont[k] = {} + cont = cont[k] + if access_lists and isinstance(cont, list): + cont = cont[-1] + if not isinstance(cont, dict): + raise KeyError("There is no nest behind this key") + return cont + + def append_nest_to_list(self, key: Key) -> None: + cont = self.get_or_create_nest(key[:-1]) + last_key = key[-1] + if last_key in cont: + list_ = cont[last_key] + if not isinstance(list_, list): + raise KeyError("An object other than list found behind this key") + list_.append({}) + else: + cont[last_key] = [{}] + + +class Output(NamedTuple): + data: NestedDict + flags: Flags + + +def skip_chars(src: str, pos: Pos, chars: Iterable[str]) -> Pos: + try: + while src[pos] in chars: + pos += 1 + except IndexError: + pass + return pos + + +def skip_until( + src: str, + pos: Pos, + expect: str, + *, + error_on: FrozenSet[str], + error_on_eof: bool, +) -> Pos: + try: + new_pos = src.index(expect, pos) + except ValueError: + new_pos = len(src) + if error_on_eof: + raise suffixed_err(src, new_pos, f'Expected "{expect!r}"') + + if not error_on.isdisjoint(src[pos:new_pos]): + while src[pos] not in error_on: + pos += 1 + raise suffixed_err(src, pos, f'Found invalid character "{src[pos]!r}"') + return new_pos + + +def skip_comment(src: str, pos: Pos) -> Pos: + try: + char: Optional[str] = src[pos] + except IndexError: + char = None + if char == "#": + return skip_until(src, pos + 1, "\n", error_on=ILLEGAL_COMMENT_CHARS, error_on_eof=False) + return pos + + +def skip_comments_and_array_ws(src: str, pos: Pos) -> Pos: + while True: + pos_before_skip = pos + pos = skip_chars(src, pos, TOML_WS_AND_NEWLINE) + pos = skip_comment(src, pos) + if pos == pos_before_skip: + return pos + + +def create_dict_rule(src: str, pos: Pos, out: Output) -> Tuple[Pos, Key]: + pos += 1 # Skip "[" + pos = skip_chars(src, pos, TOML_WS) + pos, key = parse_key(src, pos) + + if out.flags.is_(key, Flags.EXPLICIT_NEST) or out.flags.is_(key, Flags.FROZEN): + raise suffixed_err(src, pos, f"Can not declare {key} twice") + out.flags.set(key, Flags.EXPLICIT_NEST, recursive=False) + try: + out.data.get_or_create_nest(key) + except KeyError: + raise suffixed_err(src, pos, "Can not overwrite a value") + + if not src.startswith("]", pos): + raise suffixed_err(src, pos, 'Expected "]" at the end of a table declaration') + return pos + 1, key + + +def create_list_rule(src: str, pos: Pos, out: Output) -> Tuple[Pos, Key]: + pos += 2 # Skip "[[" + pos = skip_chars(src, pos, TOML_WS) + pos, key = parse_key(src, pos) + + if out.flags.is_(key, Flags.FROZEN): + raise suffixed_err(src, pos, f"Can not mutate immutable namespace {key}") + # Free the namespace now that it points to another empty list item... + out.flags.unset_all(key) + # ...but this key precisely is still prohibited from table declaration + out.flags.set(key, Flags.EXPLICIT_NEST, recursive=False) + try: + out.data.append_nest_to_list(key) + except KeyError: + raise suffixed_err(src, pos, "Can not overwrite a value") + + if not src.startswith("]]", pos): + raise suffixed_err(src, pos, 'Expected "]]" at the end of an array declaration') + return pos + 2, key + + +def key_value_rule(src: str, pos: Pos, out: Output, header: Key, parse_float: ParseFloat) -> Pos: + pos, key, value = parse_key_value_pair(src, pos, parse_float) + key_parent, key_stem = key[:-1], key[-1] + abs_key_parent = header + key_parent + + if out.flags.is_(abs_key_parent, Flags.FROZEN): + raise suffixed_err(src, pos, f"Can not mutate immutable namespace {abs_key_parent}") + # Containers in the relative path can't be opened with the table syntax after this + out.flags.set_for_relative_key(header, key, Flags.EXPLICIT_NEST) + try: + nest = out.data.get_or_create_nest(abs_key_parent) + except KeyError: + raise suffixed_err(src, pos, "Can not overwrite a value") + if key_stem in nest: + raise suffixed_err(src, pos, "Can not overwrite a value") + # Mark inline table and array namespaces recursively immutable + if isinstance(value, (dict, list)): + out.flags.set(header + key, Flags.FROZEN, recursive=True) + nest[key_stem] = value + return pos + + +def parse_key_value_pair(src: str, pos: Pos, parse_float: ParseFloat) -> Tuple[Pos, Key, Any]: + pos, key = parse_key(src, pos) + try: + char: Optional[str] = src[pos] + except IndexError: + char = None + if char != "=": + raise suffixed_err(src, pos, 'Expected "=" after a key in a key/value pair') + pos += 1 + pos = skip_chars(src, pos, TOML_WS) + pos, value = parse_value(src, pos, parse_float) + return pos, key, value + + +def parse_key(src: str, pos: Pos) -> Tuple[Pos, Key]: + pos, key_part = parse_key_part(src, pos) + key: Key = (key_part,) + pos = skip_chars(src, pos, TOML_WS) + while True: + try: + char: Optional[str] = src[pos] + except IndexError: + char = None + if char != ".": + return pos, key + pos += 1 + pos = skip_chars(src, pos, TOML_WS) + pos, key_part = parse_key_part(src, pos) + key += (key_part,) + pos = skip_chars(src, pos, TOML_WS) + + +def parse_key_part(src: str, pos: Pos) -> Tuple[Pos, str]: + try: + char: Optional[str] = src[pos] + except IndexError: + char = None + if char in BARE_KEY_CHARS: + start_pos = pos + pos = skip_chars(src, pos, BARE_KEY_CHARS) + return pos, src[start_pos:pos] + if char == "'": + return parse_literal_str(src, pos) + if char == '"': + return parse_one_line_basic_str(src, pos) + raise suffixed_err(src, pos, "Invalid initial character for a key part") + + +def parse_one_line_basic_str(src: str, pos: Pos) -> Tuple[Pos, str]: + pos += 1 + return parse_basic_str(src, pos, multiline=False) + + +def parse_array(src: str, pos: Pos, parse_float: ParseFloat) -> Tuple[Pos, list]: + pos += 1 + array: list = [] + + pos = skip_comments_and_array_ws(src, pos) + if src.startswith("]", pos): + return pos + 1, array + while True: + pos, val = parse_value(src, pos, parse_float) + array.append(val) + pos = skip_comments_and_array_ws(src, pos) + + c = src[pos : pos + 1] + if c == "]": + return pos + 1, array + if c != ",": + raise suffixed_err(src, pos, "Unclosed array") + pos += 1 + + pos = skip_comments_and_array_ws(src, pos) + if src.startswith("]", pos): + return pos + 1, array + + +def parse_inline_table(src: str, pos: Pos, parse_float: ParseFloat) -> Tuple[Pos, dict]: + pos += 1 + nested_dict = NestedDict() + flags = Flags() + + pos = skip_chars(src, pos, TOML_WS) + if src.startswith("}", pos): + return pos + 1, nested_dict.dict + while True: + pos, key, value = parse_key_value_pair(src, pos, parse_float) + key_parent, key_stem = key[:-1], key[-1] + if flags.is_(key, Flags.FROZEN): + raise suffixed_err(src, pos, f"Can not mutate immutable namespace {key}") + try: + nest = nested_dict.get_or_create_nest(key_parent, access_lists=False) + except KeyError: + raise suffixed_err(src, pos, "Can not overwrite a value") + if key_stem in nest: + raise suffixed_err(src, pos, f'Duplicate inline table key "{key_stem}"') + nest[key_stem] = value + pos = skip_chars(src, pos, TOML_WS) + c = src[pos : pos + 1] + if c == "}": + return pos + 1, nested_dict.dict + if c != ",": + raise suffixed_err(src, pos, "Unclosed inline table") + if isinstance(value, (dict, list)): + flags.set(key, Flags.FROZEN, recursive=True) + pos += 1 + pos = skip_chars(src, pos, TOML_WS) + + +def parse_basic_str_escape( # noqa: C901 + src: str, pos: Pos, *, multiline: bool = False +) -> Tuple[Pos, str]: + escape_id = src[pos : pos + 2] + pos += 2 + if multiline and escape_id in {"\\ ", "\\\t", "\\\n"}: + # Skip whitespace until next non-whitespace character or end of + # the doc. Error if non-whitespace is found before newline. + if escape_id != "\\\n": + pos = skip_chars(src, pos, TOML_WS) + try: + char = src[pos] + except IndexError: + return pos, "" + if char != "\n": + raise suffixed_err(src, pos, 'Unescaped "\\" in a string') + pos += 1 + pos = skip_chars(src, pos, TOML_WS_AND_NEWLINE) + return pos, "" + if escape_id == "\\u": + return parse_hex_char(src, pos, 4) + if escape_id == "\\U": + return parse_hex_char(src, pos, 8) + try: + return pos, BASIC_STR_ESCAPE_REPLACEMENTS[escape_id] + except KeyError: + if len(escape_id) != 2: + raise suffixed_err(src, pos, "Unterminated string") + raise suffixed_err(src, pos, 'Unescaped "\\" in a string') + + +def parse_basic_str_escape_multiline(src: str, pos: Pos) -> Tuple[Pos, str]: + return parse_basic_str_escape(src, pos, multiline=True) + + +def parse_hex_char(src: str, pos: Pos, hex_len: int) -> Tuple[Pos, str]: + hex_str = src[pos : pos + hex_len] + if len(hex_str) != hex_len or not HEXDIGIT_CHARS.issuperset(hex_str): + raise suffixed_err(src, pos, "Invalid hex value") + pos += hex_len + hex_int = int(hex_str, 16) + if not is_unicode_scalar_value(hex_int): + raise suffixed_err(src, pos, "Escaped character is not a Unicode scalar value") + return pos, chr(hex_int) + + +def parse_literal_str(src: str, pos: Pos) -> Tuple[Pos, str]: + pos += 1 # Skip starting apostrophe + start_pos = pos + pos = skip_until(src, pos, "'", error_on=ILLEGAL_LITERAL_STR_CHARS, error_on_eof=True) + return pos + 1, src[start_pos:pos] # Skip ending apostrophe + + +def parse_multiline_str(src: str, pos: Pos, *, literal: bool) -> Tuple[Pos, str]: + pos += 3 + if src.startswith("\n", pos): + pos += 1 + + if literal: + delim = "'" + end_pos = skip_until( + src, + pos, + "'''", + error_on=ILLEGAL_MULTILINE_LITERAL_STR_CHARS, + error_on_eof=True, + ) + result = src[pos:end_pos] + pos = end_pos + 3 + else: + delim = '"' + pos, result = parse_basic_str(src, pos, multiline=True) + + # Add at maximum two extra apostrophes/quotes if the end sequence + # is 4 or 5 chars long instead of just 3. + if not src.startswith(delim, pos): + return pos, result + pos += 1 + if not src.startswith(delim, pos): + return pos, result + delim + pos += 1 + return pos, result + (delim * 2) + + +def parse_basic_str(src: str, pos: Pos, *, multiline: bool) -> Tuple[Pos, str]: + if multiline: + error_on = ILLEGAL_MULTILINE_BASIC_STR_CHARS + parse_escapes = parse_basic_str_escape_multiline + else: + error_on = ILLEGAL_BASIC_STR_CHARS + parse_escapes = parse_basic_str_escape + result = "" + start_pos = pos + while True: + try: + char = src[pos] + except IndexError: + raise suffixed_err(src, pos, "Unterminated string") + if char == '"': + if not multiline: + return pos + 1, result + src[start_pos:pos] + if src.startswith('"""', pos): + return pos + 3, result + src[start_pos:pos] + pos += 1 + continue + if char == "\\": + result += src[start_pos:pos] + pos, parsed_escape = parse_escapes(src, pos) + result += parsed_escape + start_pos = pos + continue + if char in error_on: + raise suffixed_err(src, pos, f'Illegal character "{char!r}"') + pos += 1 + + +def parse_value(src: str, pos: Pos, parse_float: ParseFloat) -> Tuple[Pos, Any]: # noqa: C901 + try: + char: Optional[str] = src[pos] + except IndexError: + char = None + + # Basic strings + if char == '"': + if src.startswith('"""', pos): + return parse_multiline_str(src, pos, literal=False) + return parse_one_line_basic_str(src, pos) + + # Literal strings + if char == "'": + if src.startswith("'''", pos): + return parse_multiline_str(src, pos, literal=True) + return parse_literal_str(src, pos) + + # Booleans + if char == "t": + if src.startswith("true", pos): + return pos + 4, True + if char == "f": + if src.startswith("false", pos): + return pos + 5, False + + # Dates and times + datetime_match = RE_DATETIME.match(src, pos) + if datetime_match: + try: + datetime_obj = match_to_datetime(datetime_match) + except ValueError: + raise suffixed_err(src, pos, "Invalid date or datetime") + return datetime_match.end(), datetime_obj + localtime_match = RE_LOCALTIME.match(src, pos) + if localtime_match: + return localtime_match.end(), match_to_localtime(localtime_match) + + # Integers and "normal" floats. + # The regex will greedily match any type starting with a decimal + # char, so needs to be located after handling of dates and times. + number_match = RE_NUMBER.match(src, pos) + if number_match: + return number_match.end(), match_to_number(number_match, parse_float) + + # Arrays + if char == "[": + return parse_array(src, pos, parse_float) + + # Inline tables + if char == "{": + return parse_inline_table(src, pos, parse_float) + + # Special floats + first_three = src[pos : pos + 3] + if first_three in {"inf", "nan"}: + return pos + 3, parse_float(first_three) + first_four = src[pos : pos + 4] + if first_four in {"-inf", "+inf", "-nan", "+nan"}: + return pos + 4, parse_float(first_four) + + raise suffixed_err(src, pos, "Invalid value") + + +def suffixed_err(src: str, pos: Pos, msg: str) -> TOMLDecodeError: + """Return a `TOMLDecodeError` where error message is suffixed with + coordinates in source.""" + + def coord_repr(src: str, pos: Pos) -> str: + if pos >= len(src): + return "end of document" + line = src.count("\n", 0, pos) + 1 + if line == 1: + column = pos + 1 + else: + column = pos - src.rindex("\n", 0, pos) + return f"line {line}, column {column}" + + return TOMLDecodeError(f"{msg} (at {coord_repr(src, pos)})") + + +def is_unicode_scalar_value(codepoint: int) -> bool: + return (0 <= codepoint <= 55295) or (57344 <= codepoint <= 1114111) diff --git a/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/_re.py b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/_re.py new file mode 100644 index 0000000..8238aa1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/_re.py @@ -0,0 +1,100 @@ +import re +from datetime import date, datetime, time, timedelta, timezone, tzinfo +from functools import lru_cache +from typing import TYPE_CHECKING, Any, Optional, Union + +if TYPE_CHECKING: + from tomli._parser import ParseFloat + +# E.g. +# - 00:32:00.999999 +# - 00:32:00 +_TIME_RE_STR = r"([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])(?:\.([0-9]{1,6})[0-9]*)?" + +RE_NUMBER = re.compile( + r""" +0 +(?: + x[0-9A-Fa-f](?:_?[0-9A-Fa-f])* # hex + | + b[01](?:_?[01])* # bin + | + o[0-7](?:_?[0-7])* # oct +) +| +[+-]?(?:0|[1-9](?:_?[0-9])*) # dec, integer part +(?P + (?:\.[0-9](?:_?[0-9])*)? # optional fractional part + (?:[eE][+-]?[0-9](?:_?[0-9])*)? # optional exponent part +) +""", + flags=re.VERBOSE, +) +RE_LOCALTIME = re.compile(_TIME_RE_STR) +RE_DATETIME = re.compile( + rf""" +([0-9]{{4}})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]) # date, e.g. 1988-10-27 +(?: + [T ] + {_TIME_RE_STR} + (?:(Z)|([+-])([01][0-9]|2[0-3]):([0-5][0-9]))? # optional time offset +)? +""", + flags=re.VERBOSE, +) + + +def match_to_datetime(match: "re.Match") -> Union[datetime, date]: + """Convert a `RE_DATETIME` match to `datetime.datetime` or `datetime.date`. + + Raises ValueError if the match does not correspond to a valid date + or datetime. + """ + ( + year_str, + month_str, + day_str, + hour_str, + minute_str, + sec_str, + micros_str, + zulu_time, + offset_sign_str, + offset_hour_str, + offset_minute_str, + ) = match.groups() + year, month, day = int(year_str), int(month_str), int(day_str) + if hour_str is None: + return date(year, month, day) + hour, minute, sec = int(hour_str), int(minute_str), int(sec_str) + micros = int(micros_str.ljust(6, "0")) if micros_str else 0 + if offset_sign_str: + tz: Optional[tzinfo] = cached_tz(offset_hour_str, offset_minute_str, offset_sign_str) + elif zulu_time: + tz = timezone.utc + else: # local date-time + tz = None + return datetime(year, month, day, hour, minute, sec, micros, tzinfo=tz) + + +@lru_cache(maxsize=None) +def cached_tz(hour_str: str, minute_str: str, sign_str: str) -> timezone: + sign = 1 if sign_str == "+" else -1 + return timezone( + timedelta( + hours=sign * int(hour_str), + minutes=sign * int(minute_str), + ) + ) + + +def match_to_localtime(match: "re.Match") -> time: + hour_str, minute_str, sec_str, micros_str = match.groups() + micros = int(micros_str.ljust(6, "0")) if micros_str else 0 + return time(int(hour_str), int(minute_str), int(sec_str), micros) + + +def match_to_number(match: "re.Match", parse_float: "ParseFloat") -> Any: + if match.group("floatpart"): + return parse_float(match.group()) + return int(match.group(), 0) diff --git a/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/py.typed b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/py.typed new file mode 100644 index 0000000..7632ecf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/_vendored/tomli/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561 diff --git a/.venv/lib/python3.12/site-packages/isort/_version.py b/.venv/lib/python3.12/site-packages/isort/_version.py new file mode 100644 index 0000000..4a8ec67 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/_version.py @@ -0,0 +1,3 @@ +from importlib import metadata + +__version__ = metadata.version("isort") diff --git a/.venv/lib/python3.12/site-packages/isort/api.py b/.venv/lib/python3.12/site-packages/isort/api.py new file mode 100644 index 0000000..706ecd8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/api.py @@ -0,0 +1,660 @@ +__all__ = ( + "ImportKey", + "check_code_string", + "check_file", + "check_stream", + "find_imports_in_code", + "find_imports_in_file", + "find_imports_in_paths", + "find_imports_in_stream", + "place_module", + "place_module_with_reason", + "sort_code_string", + "sort_file", + "sort_stream", +) + +import contextlib +import shutil +import sys +from collections.abc import Iterator +from enum import Enum +from io import StringIO +from itertools import chain +from pathlib import Path +from typing import Any, TextIO, cast +from warnings import warn + +from isort import core + +from . import files, identify, io +from .exceptions import ( + ExistingSyntaxErrors, + FileSkipComment, + FileSkipSetting, + IntroducedSyntaxErrors, +) +from .format import ask_whether_to_apply_changes_to_file, create_terminal_printer, show_unified_diff +from .io import Empty, File +from .place import module as place_module # noqa: F401 +from .place import module_with_reason as place_module_with_reason # noqa: F401 +from .settings import CYTHON_EXTENSIONS, DEFAULT_CONFIG, Config + + +class ImportKey(Enum): + """Defines how to key an individual import, generally for deduping. + + Import keys are defined from less to more specific: + + from x.y import z as a + ______| | | | + | | | | + PACKAGE | | | + ________| | | + | | | + MODULE | | + _________________| | + | | + ATTRIBUTE | + ______________________| + | + ALIAS + """ + + PACKAGE = 1 + MODULE = 2 + ATTRIBUTE = 3 + ALIAS = 4 + + +def sort_code_string( + code: str, + extension: str | None = None, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + disregard_skip: bool = False, + show_diff: bool | TextIO = False, + **config_kwargs: Any, +) -> str: + """Sorts any imports within the provided code string, returning a new string with them sorted. + + - **code**: The string of code with imports that need to be sorted. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **disregard_skip**: set to `True` if you want to ignore a skip set in config for this file. + - **show_diff**: If `True` the changes that need to be done will be printed to stdout, if a + TextIO stream is provided results will be written to it, otherwise no diff will be computed. + - ****config_kwargs**: Any config modifications. + """ + input_stream = StringIO(code) + output_stream = StringIO() + config = _config(path=file_path, config=config, **config_kwargs) + sort_stream( + input_stream, + output_stream, + extension=extension, + config=config, + file_path=file_path, + disregard_skip=disregard_skip, + show_diff=show_diff, + ) + output_stream.seek(0) + return output_stream.read() + + +def check_code_string( + code: str, + show_diff: bool | TextIO = False, + extension: str | None = None, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + disregard_skip: bool = False, + **config_kwargs: Any, +) -> bool: + """Checks the order, format, and categorization of imports within the provided code string. + Returns `True` if everything is correct, otherwise `False`. + + - **code**: The string of code with imports that need to be sorted. + - **show_diff**: If `True` the changes that need to be done will be printed to stdout, if a + TextIO stream is provided results will be written to it, otherwise no diff will be computed. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **disregard_skip**: set to `True` if you want to ignore a skip set in config for this file. + - ****config_kwargs**: Any config modifications. + """ + config = _config(path=file_path, config=config, **config_kwargs) + return check_stream( + StringIO(code), + show_diff=show_diff, + extension=extension, + config=config, + file_path=file_path, + disregard_skip=disregard_skip, + ) + + +def sort_stream( + input_stream: TextIO, + output_stream: TextIO, + extension: str | None = None, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + disregard_skip: bool = False, + show_diff: bool | TextIO = False, + raise_on_skip: bool = True, + **config_kwargs: Any, +) -> bool: + """Sorts any imports within the provided code stream, outputs to the provided output stream. + Returns `True` if anything is modified from the original input stream, otherwise `False`. + + - **input_stream**: The stream of code with imports that need to be sorted. + - **output_stream**: The stream where sorted imports should be written to. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **disregard_skip**: set to `True` if you want to ignore a skip set in config for this file. + - **show_diff**: If `True` the changes that need to be done will be printed to stdout, if a + TextIO stream is provided results will be written to it, otherwise no diff will be computed. + - ****config_kwargs**: Any config modifications. + """ + extension = extension or (file_path and file_path.suffix.lstrip(".")) or "py" + if show_diff: + _output_stream = StringIO() + _input_stream = StringIO(input_stream.read()) + changed = sort_stream( + input_stream=_input_stream, + output_stream=_output_stream, + extension=extension, + config=config, + file_path=file_path, + disregard_skip=disregard_skip, + raise_on_skip=raise_on_skip, + **config_kwargs, + ) + _output_stream.seek(0) + _input_stream.seek(0) + show_unified_diff( + file_input=_input_stream.read(), + file_output=_output_stream.read(), + file_path=file_path, + output=output_stream if show_diff is True else show_diff, + color_output=config.color_output, + ) + return changed + + config = _config(path=file_path, config=config, **config_kwargs) + content_source = str(file_path or "Passed in content") + if not disregard_skip and file_path and config.is_skipped(file_path): + raise FileSkipSetting(content_source) + + _internal_output = output_stream + + if config.atomic: + try: + file_content = input_stream.read() + compile(file_content, content_source, "exec", flags=0, dont_inherit=True) + except SyntaxError: + if extension not in CYTHON_EXTENSIONS: + raise ExistingSyntaxErrors(content_source) + if config.verbose: + warn( + f"{content_source} Python AST errors found but ignored due to Cython extension", + stacklevel=2, + ) + input_stream = StringIO(file_content) + + if not output_stream.readable(): + _internal_output = StringIO() + + try: + changed = core.process( + input_stream, + _internal_output, + extension=extension, + config=config, + raise_on_skip=raise_on_skip, + ) + except FileSkipComment: + raise FileSkipComment(content_source) + + if config.atomic: + _internal_output.seek(0) + try: + compile(_internal_output.read(), content_source, "exec", flags=0, dont_inherit=True) + _internal_output.seek(0) + except SyntaxError: # pragma: no cover + if extension not in CYTHON_EXTENSIONS: + raise IntroducedSyntaxErrors(content_source) + if config.verbose: + warn( + f"{content_source} Python AST errors found but ignored due to Cython extension", + stacklevel=2, + ) + if _internal_output != output_stream: + output_stream.write(_internal_output.read()) + + return changed + + +def check_stream( + input_stream: TextIO, + show_diff: bool | TextIO = False, + extension: str | None = None, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + disregard_skip: bool = False, + **config_kwargs: Any, +) -> bool: + """Checks any imports within the provided code stream, returning `False` if any unsorted or + incorrectly imports are found or `True` if no problems are identified. + + - **input_stream**: The stream of code with imports that need to be sorted. + - **show_diff**: If `True` the changes that need to be done will be printed to stdout, if a + TextIO stream is provided results will be written to it, otherwise no diff will be computed. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **disregard_skip**: set to `True` if you want to ignore a skip set in config for this file. + - ****config_kwargs**: Any config modifications. + """ + config = _config(path=file_path, config=config, **config_kwargs) + + if show_diff: + input_stream = StringIO(input_stream.read()) + + changed: bool = sort_stream( + input_stream=input_stream, + output_stream=Empty, + extension=extension, + config=config, + file_path=file_path, + disregard_skip=disregard_skip, + ) + printer = create_terminal_printer( + color=config.color_output, error=config.format_error, success=config.format_success + ) + if not changed: + if config.verbose and not config.only_modified: + printer.success(f"{file_path or ''} Everything Looks Good!") + return True + + printer.error(f"{file_path or ''} Imports are incorrectly sorted and/or formatted.") + if show_diff: + output_stream = StringIO() + input_stream.seek(0) + file_contents = input_stream.read() + sort_stream( + input_stream=StringIO(file_contents), + output_stream=output_stream, + extension=extension, + config=config, + file_path=file_path, + disregard_skip=disregard_skip, + ) + output_stream.seek(0) + + show_unified_diff( + file_input=file_contents, + file_output=output_stream.read(), + file_path=file_path, + output=None if show_diff is True else show_diff, + color_output=config.color_output, + ) + return False + + +def check_file( + filename: str | Path, + show_diff: bool | TextIO = False, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + disregard_skip: bool = True, + extension: str | None = None, + **config_kwargs: Any, +) -> bool: + """Checks any imports within the provided file, returning `False` if any unsorted or + incorrectly imports are found or `True` if no problems are identified. + + - **filename**: The name or Path of the file to check. + - **show_diff**: If `True` the changes that need to be done will be printed to stdout, if a + TextIO stream is provided results will be written to it, otherwise no diff will be computed. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **disregard_skip**: set to `True` if you want to ignore a skip set in config for this file. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - ****config_kwargs**: Any config modifications. + """ + file_config: Config = config + + if "config_trie" in config_kwargs: + config_trie = config_kwargs.pop("config_trie", None) + if config_trie: + config_info = config_trie.search(filename) + if config.verbose: + print(f"{config_info[0]} used for file {filename}") + + file_config = Config(**config_info[1]) + + with io.File.read(filename) as source_file: + return check_stream( + source_file.stream, + show_diff=show_diff, + extension=extension, + config=file_config, + file_path=file_path or source_file.path, + disregard_skip=disregard_skip, + **config_kwargs, + ) + + +def _tmp_file(source_file: File) -> Path: + return source_file.path.with_suffix(source_file.path.suffix + ".isorted") + + +@contextlib.contextmanager +def _in_memory_output_stream_context() -> Iterator[TextIO]: + yield StringIO(newline=None) + + +@contextlib.contextmanager +def _file_output_stream_context(filename: str | Path, source_file: File) -> Iterator[TextIO]: + tmp_file = _tmp_file(source_file) + with tmp_file.open("w+", encoding=source_file.encoding, newline="") as output_stream: + shutil.copymode(filename, tmp_file) + yield output_stream + + +# Ignore DeepSource cyclomatic complexity check for this function. It is one +# the main entrypoints so sort of expected to be complex. +# skipcq: PY-R1000 +def sort_file( + filename: str | Path, + extension: str | None = None, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + disregard_skip: bool = True, + ask_to_apply: bool = False, + show_diff: bool | TextIO = False, + write_to_stdout: bool = False, + output: TextIO | None = None, + **config_kwargs: Any, +) -> bool: + """Sorts and formats any groups of imports within the provided file or Path. + Returns `True` if the file has been changed, otherwise `False`. + + - **filename**: The name or Path of the file to format. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **disregard_skip**: set to `True` if you want to ignore a skip set in config for this file. + - **ask_to_apply**: If `True`, prompt before applying any changes. + - **show_diff**: If `True` the changes that need to be done will be printed to stdout, if a + TextIO stream is provided results will be written to it, otherwise no diff will be computed. + - **write_to_stdout**: If `True`, write to stdout instead of the input file. + - **output**: If a TextIO is provided, results will be written there rather than replacing + the original file content. + - ****config_kwargs**: Any config modifications. + """ + file_config: Config = config + + if "config_trie" in config_kwargs: + config_trie = config_kwargs.pop("config_trie", None) + if config_trie: + config_info = config_trie.search(filename) + if config.verbose: + print(f"{config_info[0]} used for file {filename}") + + file_config = Config(**config_info[1]) + + with io.File.read(filename) as source_file: + actual_file_path = file_path or source_file.path + config = _config(path=actual_file_path, config=file_config, **config_kwargs) + changed: bool = False + try: + if write_to_stdout: + changed = sort_stream( + input_stream=source_file.stream, + output_stream=sys.stdout, + config=config, + file_path=actual_file_path, + disregard_skip=disregard_skip, + extension=extension, + ) + else: + if output is None: + try: + if config.overwrite_in_place: + output_stream_context = _in_memory_output_stream_context() + else: + output_stream_context = _file_output_stream_context( + filename, source_file + ) + with output_stream_context as output_stream: + changed = sort_stream( + input_stream=source_file.stream, + output_stream=output_stream, + config=config, + file_path=actual_file_path, + disregard_skip=disregard_skip, + extension=extension, + ) + output_stream.seek(0) + if changed: + if show_diff or ask_to_apply: + source_file.stream.seek(0) + show_unified_diff( + file_input=source_file.stream.read(), + file_output=output_stream.read(), + file_path=actual_file_path, + output=( + None if show_diff is True else cast(TextIO, show_diff) + ), + color_output=config.color_output, + ) + if show_diff or ( + ask_to_apply + and not ask_whether_to_apply_changes_to_file( + str(source_file.path) + ) + ): + return False + source_file.stream.close() + if config.overwrite_in_place: + output_stream.seek(0) + with source_file.path.open("w") as fs: + shutil.copyfileobj(output_stream, fs) + if changed: + if not config.overwrite_in_place: + tmp_file = _tmp_file(source_file) + tmp_file.replace(source_file.path) + if not config.quiet: + print(f"Fixing {source_file.path}") + finally: + if not config.overwrite_in_place: # pragma: no branch + tmp_file = _tmp_file(source_file) + tmp_file.unlink(missing_ok=True) + else: + changed = sort_stream( + input_stream=source_file.stream, + output_stream=output, + config=config, + file_path=actual_file_path, + disregard_skip=disregard_skip, + extension=extension, + ) + if changed and show_diff: + source_file.stream.seek(0) + output.seek(0) + show_unified_diff( + file_input=source_file.stream.read(), + file_output=output.read(), + file_path=actual_file_path, + output=None if show_diff is True else show_diff, + color_output=config.color_output, + ) + source_file.stream.close() + + except ExistingSyntaxErrors: + warn(f"{actual_file_path} unable to sort due to existing syntax errors", stacklevel=2) + except IntroducedSyntaxErrors: # pragma: no cover + warn( + f"{actual_file_path} unable to sort as isort introduces new syntax errors", + stacklevel=2, + ) + + return changed + + +def find_imports_in_code( + code: str, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + unique: bool | ImportKey = False, + top_only: bool = False, + **config_kwargs: Any, +) -> Iterator[identify.Import]: + """Finds and returns all imports within the provided code string. + + - **code**: The string of code with imports that need to be sorted. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **unique**: If True, only the first instance of an import is returned. + - **top_only**: If True, only return imports that occur before the first function or class. + - ****config_kwargs**: Any config modifications. + """ + yield from find_imports_in_stream( + input_stream=StringIO(code), + config=config, + file_path=file_path, + unique=unique, + top_only=top_only, + **config_kwargs, + ) + + +def find_imports_in_stream( + input_stream: TextIO, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + unique: bool | ImportKey = False, + top_only: bool = False, + _seen: set[str] | None = None, + **config_kwargs: Any, +) -> Iterator[identify.Import]: + """Finds and returns all imports within the provided code stream. + + - **input_stream**: The stream of code with imports that need to be sorted. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **unique**: If True, only the first instance of an import is returned. + - **top_only**: If True, only return imports that occur before the first function or class. + - **_seen**: An optional set of imports already seen. Generally meant only for internal use. + - ****config_kwargs**: Any config modifications. + """ + config = _config(config=config, **config_kwargs) + identified_imports = identify.imports( + input_stream, config=config, file_path=file_path, top_only=top_only + ) + if not unique: + yield from identified_imports + + seen: set[str] = set() if _seen is None else _seen + for identified_import in identified_imports: + if unique in (True, ImportKey.ALIAS): + key = identified_import.statement() + elif unique == ImportKey.ATTRIBUTE: + key = f"{identified_import.module}.{identified_import.attribute}" + elif unique == ImportKey.MODULE: + key = identified_import.module + elif unique == ImportKey.PACKAGE: # pragma: no branch # type checking ensures this + key = identified_import.module.split(".")[0] + + if key and key not in seen: + seen.add(key) + yield identified_import + + +def find_imports_in_file( + filename: str | Path, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + unique: bool | ImportKey = False, + top_only: bool = False, + **config_kwargs: Any, +) -> Iterator[identify.Import]: + """Finds and returns all imports within the provided source file. + + - **filename**: The name or Path of the file to look for imports in. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **unique**: If True, only the first instance of an import is returned. + - **top_only**: If True, only return imports that occur before the first function or class. + - ****config_kwargs**: Any config modifications. + """ + try: + with io.File.read(filename) as source_file: + yield from find_imports_in_stream( + input_stream=source_file.stream, + config=config, + file_path=file_path or source_file.path, + unique=unique, + top_only=top_only, + **config_kwargs, + ) + except OSError as error: + warn(f"Unable to parse file {filename} due to {error}", stacklevel=2) + + +def find_imports_in_paths( + paths: Iterator[str | Path], + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + unique: bool | ImportKey = False, + top_only: bool = False, + **config_kwargs: Any, +) -> Iterator[identify.Import]: + """Finds and returns all imports within the provided source paths. + + - **paths**: A collection of paths to recursively look for imports within. + - **extension**: The file extension that contains imports. Defaults to filename extension or py. + - **config**: The config object to use when sorting imports. + - **file_path**: The disk location where the code string was pulled from. + - **unique**: If True, only the first instance of an import is returned. + - **top_only**: If True, only return imports that occur before the first function or class. + - ****config_kwargs**: Any config modifications. + """ + config = _config(config=config, **config_kwargs) + seen: set[str] | None = set() if unique else None + yield from chain( + *( + find_imports_in_file( + file_name, unique=unique, config=config, top_only=top_only, _seen=seen + ) + for file_name in files.find(map(str, paths), config, [], []) + ) + ) + + +def _config( + path: Path | None = None, config: Config = DEFAULT_CONFIG, **config_kwargs: Any +) -> Config: + if path and ( + config is DEFAULT_CONFIG + and "settings_path" not in config_kwargs + and "settings_file" not in config_kwargs + ): + config_kwargs["settings_path"] = path + + if config_kwargs: + if config is not DEFAULT_CONFIG: + raise ValueError( + "You can either specify custom configuration options using kwargs or " + "passing in a Config object. Not Both!" + ) + + config = Config(**config_kwargs) + + return config diff --git a/.venv/lib/python3.12/site-packages/isort/comments.py b/.venv/lib/python3.12/site-packages/isort/comments.py new file mode 100644 index 0000000..0fdab29 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/comments.py @@ -0,0 +1,29 @@ +def parse(line: str) -> tuple[str, str]: + """Parses import lines for comments and returns back the + import statement and the associated comment. + """ + comment_start = line.find("#") + if comment_start != -1: + return (line[:comment_start], line[comment_start + 1 :].strip()) + + return (line, "") + + +def add_to_line( + comments: list[str] | None, + original_string: str = "", + removed: bool = False, + comment_prefix: str = "", +) -> str: + """Returns a string with comments added if removed is not set.""" + if removed: + return parse(original_string)[0] + + if not comments: + return original_string + + unique_comments: list[str] = [] + for comment in comments: + if comment not in unique_comments: + unique_comments.append(comment) + return f"{parse(original_string)[0]}{comment_prefix} {'; '.join(unique_comments)}" diff --git a/.venv/lib/python3.12/site-packages/isort/core.py b/.venv/lib/python3.12/site-packages/isort/core.py new file mode 100644 index 0000000..f3c2e52 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/core.py @@ -0,0 +1,513 @@ +import textwrap +from io import StringIO +from itertools import chain +from typing import TextIO + +import isort.literal +from isort.settings import DEFAULT_CONFIG, Config + +from . import output, parse +from .exceptions import ExistingSyntaxErrors, FileSkipComment +from .format import format_natural, remove_whitespace +from .settings import FILE_SKIP_COMMENTS + +CIMPORT_IDENTIFIERS = ("cimport ", "cimport*", "from.cimport") +IMPORT_START_IDENTIFIERS = ("from ", "from.import", "import ", "import*", *CIMPORT_IDENTIFIERS) +DOCSTRING_INDICATORS = ('"""', "'''") +COMMENT_INDICATORS = (*DOCSTRING_INDICATORS, "'", '"', "#") +CODE_SORT_COMMENTS = ( + "# isort: list", + "# isort: dict", + "# isort: set", + "# isort: unique-list", + "# isort: tuple", + "# isort: unique-tuple", + "# isort: assignments", +) +LITERAL_TYPE_MAPPING = {"(": "tuple", "[": "list", "{": "set"} + + +# Ignore DeepSource cyclomatic complexity check for this function. +# skipcq: PY-R1000 +def process( + input_stream: TextIO, + output_stream: TextIO, + extension: str = "py", + raise_on_skip: bool = True, + config: Config = DEFAULT_CONFIG, +) -> bool: + """Parses stream identifying sections of contiguous imports and sorting them + + Code with unsorted imports is read from the provided `input_stream`, sorted and then + outputted to the specified `output_stream`. + + - `input_stream`: Text stream with unsorted import sections. + - `output_stream`: Text stream to output sorted inputs into. + - `config`: Config settings to use when sorting imports. Defaults settings. + - *Default*: `isort.settings.DEFAULT_CONFIG`. + - `extension`: The file extension or file extension rules that should be used. + - *Default*: `"py"`. + - *Choices*: `["py", "pyi", "pyx"]`. + + Returns `True` if there were changes that needed to be made (errors present) from what + was provided in the input_stream, otherwise `False`. + """ + line_separator: str = config.line_ending + add_imports: list[str] = [format_natural(addition) for addition in config.add_imports] + import_section: str = "" + next_import_section: str = "" + next_cimports: bool = False + in_quote: str = "" + was_in_quote: bool = False + first_comment_index_start: int = -1 + first_comment_index_end: int = -1 + contains_imports: bool = False + in_top_comment: bool = False + first_import_section: bool = True + indent: str = "" + isort_off: bool = False + skip_file: bool = False + code_sorting: bool | str = False + code_sorting_section: str = "" + code_sorting_indent: str = "" + cimports: bool = False + made_changes: bool = False + stripped_line: str = "" + end_of_file: bool = False + verbose_output: list[str] = [] + lines_before: list[str] = [] + is_reexport: bool = False + reexport_rollback: int = 0 + + if config.float_to_top: + new_input = "" + current = "" + isort_off = False + for line in chain(input_stream, (None,)): + if isort_off and line is not None: + if line == "# isort: on\n": + isort_off = False + new_input += line + elif line in ("# isort: split\n", "# isort: off\n", None) or str(line).endswith( + "# isort: split\n" + ): + if line == "# isort: off\n": + isort_off = True + if current: + if add_imports: + add_line_separator = line_separator or "\n" + current += add_line_separator + add_line_separator.join(add_imports) + add_imports = [] + parsed = parse.file_contents(current, config=config) + verbose_output += parsed.verbose_output + extra_space = "" + while current and current[-1] == "\n": + extra_space += "\n" + current = current[:-1] + extra_space = extra_space.replace("\n", "", 1) + sorted_output = output.sorted_imports( + parsed, config, extension, import_type="import" + ) + made_changes = made_changes or _has_changed( + before=current, + after=sorted_output, + line_separator=parsed.line_separator, + ignore_whitespace=config.ignore_whitespace, + ) + new_input += sorted_output + new_input += extra_space + current = "" + new_input += line or "" + else: + current += line or "" + + input_stream = StringIO(new_input) + + for index, line in enumerate(chain(input_stream, (None,))): + if line is None: + if index == 0 and not config.force_adds: + return False + + not_imports = True + end_of_file = True + line = "" + if not line_separator: + line_separator = "\n" + + if code_sorting and code_sorting_section: + if is_reexport: + output_stream.seek(output_stream.tell() - reexport_rollback) + reexport_rollback = 0 + sorted_code = textwrap.indent( + isort.literal.assignment( + code_sorting_section, + str(code_sorting), + extension, + config=_indented_config(config, indent), + ), + code_sorting_indent, + ) + made_changes = made_changes or _has_changed( + before=code_sorting_section, + after=sorted_code, + line_separator=line_separator, + ignore_whitespace=config.ignore_whitespace, + ) + output_stream.write(sorted_code) + if is_reexport: + output_stream.truncate() + else: + stripped_line = line.strip() + if stripped_line and not line_separator: + line_separator = line[len(line.rstrip()) :].replace(" ", "").replace("\t", "") + + for file_skip_comment in FILE_SKIP_COMMENTS: + if file_skip_comment in line: + if raise_on_skip: + raise FileSkipComment("Passed in content") + isort_off = True + skip_file = True + + if not in_quote: + if stripped_line == "# isort: off": + isort_off = True + elif stripped_line.startswith("# isort: dont-add-imports"): + add_imports = [] + elif stripped_line.startswith("# isort: dont-add-import:"): + import_not_to_add = stripped_line.split("# isort: dont-add-import:", 1)[ + 1 + ].strip() + add_imports = [ + import_to_add + for import_to_add in add_imports + if import_to_add != import_not_to_add + ] + + if ( + (index == 0 or (index in {1, 2} and not contains_imports)) + and stripped_line.startswith("#") + and stripped_line not in config.section_comments + and stripped_line not in CODE_SORT_COMMENTS + ): + in_top_comment = True + elif in_top_comment and ( + not line.startswith("#") + or stripped_line in config.section_comments + or stripped_line in CODE_SORT_COMMENTS + ): + in_top_comment = False + first_comment_index_end = index - 1 + + was_in_quote = bool(in_quote) + if ((not stripped_line.startswith("#") or in_quote) and '"' in line) or "'" in line: + char_index = 0 + if first_comment_index_start == -1 and line.startswith(('"', "'")): + first_comment_index_start = index + while char_index < len(line): + if line[char_index] == "\\": + char_index += 1 + elif in_quote: + if line[char_index : char_index + len(in_quote)] == in_quote: + in_quote = "" + if first_comment_index_end < first_comment_index_start: + first_comment_index_end = index + elif line[char_index] in ("'", '"'): + long_quote = line[char_index : char_index + 3] + if long_quote in ('"""', "'''"): + in_quote = long_quote + char_index += 2 + else: + in_quote = line[char_index] + elif line[char_index] == "#": + break + char_index += 1 + + not_imports = bool(in_quote) or was_in_quote or in_top_comment or isort_off + if not (in_quote or was_in_quote or in_top_comment): + if isort_off: + if not skip_file and stripped_line == "# isort: on": + isort_off = False + elif stripped_line.endswith("# isort: split"): + not_imports = True + elif stripped_line in CODE_SORT_COMMENTS: + code_sorting = stripped_line.split("isort: ")[1].strip() + code_sorting_indent = line[: -len(line.lstrip())] + not_imports = True + elif config.sort_reexports and stripped_line.startswith("__all__"): + _, rhs = stripped_line.split("=") + code_sorting = LITERAL_TYPE_MAPPING.get(rhs.lstrip()[0], "tuple") + code_sorting_indent = line[: -len(line.lstrip())] + not_imports = True + code_sorting_section += line + reexport_rollback = len(line) + is_reexport = True + elif code_sorting: + if not stripped_line: + sorted_code = textwrap.indent( + isort.literal.assignment( + code_sorting_section, + str(code_sorting), + extension, + config=_indented_config(config, indent), + ), + code_sorting_indent, + ) + made_changes = made_changes or _has_changed( + before=code_sorting_section, + after=sorted_code, + line_separator=line_separator, + ignore_whitespace=config.ignore_whitespace, + ) + if is_reexport: + output_stream.seek(output_stream.tell() - reexport_rollback) + reexport_rollback = 0 + output_stream.write(sorted_code) + if is_reexport: + output_stream.truncate() + not_imports = True + code_sorting = False + code_sorting_section = "" + code_sorting_indent = "" + is_reexport = False + else: + code_sorting_section += line + line = "" + elif ( + stripped_line in config.section_comments + or stripped_line in config.section_comments_end + ): + if import_section and not contains_imports: + output_stream.write(import_section) + import_section = line + not_imports = False + else: + import_section += line + indent = line[: -len(line.lstrip())] + elif not (stripped_line or contains_imports): + not_imports = True + elif not stripped_line or ( + stripped_line.startswith("#") + and (not indent or indent + line.lstrip() == line) + and not config.treat_all_comments_as_code + and stripped_line not in config.treat_comments_as_code + ): + import_section += line + elif stripped_line.startswith(IMPORT_START_IDENTIFIERS): + new_indent = line[: -len(line.lstrip())] + import_statement = line + stripped_line = line.strip().split("#")[0] + while stripped_line.endswith("\\") or ( + "(" in stripped_line and ")" not in stripped_line + ): + if stripped_line.endswith("\\"): + while stripped_line and stripped_line.endswith("\\"): + line = input_stream.readline() + stripped_line = line.strip().split("#")[0] + import_statement += line + else: + while ")" not in stripped_line: + line = input_stream.readline() + + if not line: # end of file without closing parenthesis + raise ExistingSyntaxErrors("Parenthesis is not closed") + + stripped_line = line.strip().split("#")[0] + import_statement += line + + if ( + import_statement.lstrip().startswith("from") + and "import" not in import_statement + ): + line = import_statement + not_imports = True + else: + did_contain_imports = contains_imports + contains_imports = True + + cimport_statement: bool = False + if ( + import_statement.lstrip().startswith(CIMPORT_IDENTIFIERS) + or " cimport " in import_statement + or " cimport*" in import_statement + or " cimport(" in import_statement + or ( + ".cimport" in import_statement + and "cython.cimports" not in import_statement + ) # Allow pure python imports. See #2062 + ): + cimport_statement = True + + if cimport_statement != cimports or ( + new_indent != indent + and import_section + and (not did_contain_imports or len(new_indent) < len(indent)) + ): + indent = new_indent + if import_section: + next_cimports = cimport_statement + next_import_section = import_statement + import_statement = "" + not_imports = True + line = "" + else: + cimports = cimport_statement + else: + if new_indent != indent: + if import_section and did_contain_imports: + import_statement = indent + import_statement.lstrip() + else: + indent = new_indent + import_section += import_statement + else: + not_imports = True + + if not_imports: + if not was_in_quote and config.lines_before_imports > -1: + if line.strip() == "": + lines_before += line + continue + if not import_section: + output_stream.write("".join(lines_before)) + lines_before = [] + + raw_import_section: str = import_section + if ( + add_imports + and (stripped_line or end_of_file) + and not config.append_only + and not in_top_comment + and not was_in_quote + and not import_section + and not line.lstrip().startswith(COMMENT_INDICATORS) + and not (line.rstrip().endswith(DOCSTRING_INDICATORS) and "=" not in line) + ): + add_line_separator = line_separator or "\n" + import_section = add_line_separator.join(add_imports) + add_line_separator + if end_of_file and index != 0: + output_stream.write(add_line_separator) + contains_imports = True + add_imports = [] + + if next_import_section and not import_section: # pragma: no cover + raw_import_section = import_section = next_import_section + next_import_section = "" + + if import_section: + if add_imports and (contains_imports or not config.append_only) and not indent: + import_section = ( + line_separator.join(add_imports) + line_separator + import_section + ) + contains_imports = True + add_imports = [] + + if not indent: + import_section += line + raw_import_section += line + if not contains_imports: + output_stream.write(import_section) + + else: + leading_whitespace = import_section[: -len(import_section.lstrip())] + trailing_whitespace = import_section[len(import_section.rstrip()) :] + if first_import_section and not import_section.lstrip( + line_separator + ).startswith(COMMENT_INDICATORS): + import_section = import_section.lstrip(line_separator) + raw_import_section = raw_import_section.lstrip(line_separator) + first_import_section = False + + if indent: + import_section = "".join( + line[len(indent) :] for line in import_section.splitlines(keepends=True) + ) + + parsed_content = parse.file_contents(import_section, config=config) + verbose_output += parsed_content.verbose_output + + sorted_import_section = output.sorted_imports( + parsed_content, + _indented_config(config, indent), + extension, + import_type="cimport" if cimports else "import", + ) + if not (import_section.strip() and not sorted_import_section): + if indent: + sorted_import_section = ( + leading_whitespace + + textwrap.indent(sorted_import_section, indent).strip() + + trailing_whitespace + ) + + made_changes = made_changes or _has_changed( + before=raw_import_section, + after=sorted_import_section, + line_separator=line_separator, + ignore_whitespace=config.ignore_whitespace, + ) + output_stream.write(sorted_import_section) + if not line and not indent and next_import_section: + output_stream.write(line_separator) + + if indent: + output_stream.write(line) + if not next_import_section: + indent = "" + + if next_import_section: + cimports = next_cimports + contains_imports = True + else: + contains_imports = False + import_section = next_import_section + next_import_section = "" + else: + output_stream.write(line) + not_imports = False + + if stripped_line and not in_quote and not import_section and not next_import_section: + if stripped_line == "yield": + while not stripped_line or stripped_line == "yield": + new_line = input_stream.readline() + if not new_line: + break + + output_stream.write(new_line) + stripped_line = new_line.strip().split("#")[0] + + if stripped_line.startswith(("raise", "yield")): + while stripped_line.endswith("\\"): + new_line = input_stream.readline() + if not new_line: + break + + output_stream.write(new_line) + stripped_line = new_line.strip().split("#")[0] + + if made_changes and config.only_modified: + for output_str in verbose_output: + print(output_str) + + return made_changes + + +def _indented_config(config: Config, indent: str) -> Config: + if not indent: + return config + + return Config( + config=config, + line_length=max(config.line_length - len(indent), 0), + wrap_length=max(config.wrap_length - len(indent), 0), + lines_after_imports=1, + import_headings=config.import_headings if config.indented_import_headings else {}, + import_footers=config.import_footers if config.indented_import_headings else {}, + ) + + +def _has_changed(before: str, after: str, line_separator: str, ignore_whitespace: bool) -> bool: + if ignore_whitespace: + return ( + remove_whitespace(before, line_separator=line_separator).strip() + != remove_whitespace(after, line_separator=line_separator).strip() + ) + return before.strip() != after.strip() diff --git a/.venv/lib/python3.12/site-packages/isort/deprecated/__init__.py b/.venv/lib/python3.12/site-packages/isort/deprecated/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/isort/deprecated/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/deprecated/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f5e5a872e1b79940d38dbd725b0131a7743b4edc GIT binary patch literal 201 zcmX@j%ge<81SZV?GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!%Fr**FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6=EEY2?~(N9S&C`wIEEJ;n#kB`sH%PfhH*DI*}#bJ}1pHiBWYFESx Uw3rcyi$RQ!%#4hTMa)1J07`B(h5!Hn literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/deprecated/__pycache__/finders.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/deprecated/__pycache__/finders.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b3876babdbc63c34984fdac433dac6f6ddb1c86 GIT binary patch literal 22676 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 Jf5r2N|393leTo18 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/deprecated/finders.py b/.venv/lib/python3.12/site-packages/isort/deprecated/finders.py new file mode 100644 index 0000000..1bfb300 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/deprecated/finders.py @@ -0,0 +1,392 @@ +"""Finders try to find right section for passed module name""" + +import importlib.machinery +import inspect +import os +import os.path +import re +import sys +import sysconfig +from abc import ABCMeta, abstractmethod +from collections.abc import Iterable, Iterator, Sequence +from contextlib import contextmanager +from fnmatch import fnmatch +from functools import lru_cache +from glob import glob +from pathlib import Path +from re import Pattern + +from isort import sections +from isort.settings import KNOWN_SECTION_MAPPING, Config +from isort.utils import exists_case_sensitive + +try: + from pipreqs import pipreqs # type: ignore + +except ImportError: + pipreqs = None + +try: + from pip_api import parse_requirements # type: ignore + +except ImportError: + parse_requirements = None # type: ignore[assignment] + + +@contextmanager +def chdir(path: str) -> Iterator[None]: + """Context manager for changing dir and restoring previous workdir after exit.""" + curdir = os.getcwd() + os.chdir(path) + try: + yield + finally: + os.chdir(curdir) + + +class BaseFinder(metaclass=ABCMeta): + def __init__(self, config: Config) -> None: + self.config = config + + @abstractmethod + def find(self, module_name: str) -> str | None: + raise NotImplementedError + + +class ForcedSeparateFinder(BaseFinder): + def find(self, module_name: str) -> str | None: + for forced_separate in self.config.forced_separate: + # Ensure all forced_separate patterns will match to end of string + path_glob = forced_separate + if not forced_separate.endswith("*"): + path_glob = f"{forced_separate}*" + + if fnmatch(module_name, path_glob) or fnmatch(module_name, "." + path_glob): + return forced_separate + return None + + +class LocalFinder(BaseFinder): + def find(self, module_name: str) -> str | None: + if module_name.startswith("."): + return "LOCALFOLDER" + return None + + +class KnownPatternFinder(BaseFinder): + def __init__(self, config: Config) -> None: + super().__init__(config) + + self.known_patterns: list[tuple[Pattern[str], str]] = [] + for placement in reversed(config.sections): + known_placement = KNOWN_SECTION_MAPPING.get(placement, placement).lower() + config_key = f"known_{known_placement}" + known_patterns = list( + getattr(self.config, config_key, self.config.known_other.get(known_placement, [])) + ) + known_patterns = [ + pattern + for known_pattern in known_patterns + for pattern in self._parse_known_pattern(known_pattern) + ] + for known_pattern in known_patterns: + regexp = "^" + known_pattern.replace("*", ".*").replace("?", ".?") + "$" + self.known_patterns.append((re.compile(regexp), placement)) + + def _parse_known_pattern(self, pattern: str) -> list[str]: + """Expand pattern if identified as a directory and return found sub packages""" + if pattern.endswith(os.path.sep): + patterns = [ + filename + for filename in os.listdir(os.path.join(self.config.directory, pattern)) + if os.path.isdir(os.path.join(self.config.directory, pattern, filename)) + ] + else: + patterns = [pattern] + + return patterns + + def find(self, module_name: str) -> str | None: + # Try to find most specific placement instruction match (if any) + parts = module_name.split(".") + module_names_to_check = (".".join(parts[:first_k]) for first_k in range(len(parts), 0, -1)) + for module_name_to_check in module_names_to_check: + for pattern, placement in self.known_patterns: + if pattern.match(module_name_to_check): + return placement + return None + + +class PathFinder(BaseFinder): + def __init__(self, config: Config, path: str = ".") -> None: + super().__init__(config) + + # restore the original import path (i.e. not the path to bin/isort) + root_dir = os.path.abspath(path) + src_dir = f"{root_dir}/src" + self.paths = [root_dir, src_dir] + + # virtual env + self.virtual_env = self.config.virtual_env or os.environ.get("VIRTUAL_ENV") + if self.virtual_env: + self.virtual_env = os.path.realpath(self.virtual_env) + self.virtual_env_src = "" + if self.virtual_env: + self.virtual_env_src = f"{self.virtual_env}/src/" + for venv_path in glob(f"{self.virtual_env}/lib/python*/site-packages"): + if venv_path not in self.paths: + self.paths.append(venv_path) + for nested_venv_path in glob(f"{self.virtual_env}/lib/python*/*/site-packages"): + if nested_venv_path not in self.paths: + self.paths.append(nested_venv_path) + for venv_src_path in glob(f"{self.virtual_env}/src/*"): + if os.path.isdir(venv_src_path): + self.paths.append(venv_src_path) + + # conda + self.conda_env = self.config.conda_env or os.environ.get("CONDA_PREFIX") or "" + if self.conda_env: + self.conda_env = os.path.realpath(self.conda_env) + for conda_path in glob(f"{self.conda_env}/lib/python*/site-packages"): + if conda_path not in self.paths: + self.paths.append(conda_path) + for nested_conda_path in glob(f"{self.conda_env}/lib/python*/*/site-packages"): + if nested_conda_path not in self.paths: + self.paths.append(nested_conda_path) + + # handle case-insensitive paths on windows + self.stdlib_lib_prefix = os.path.normcase(sysconfig.get_paths()["stdlib"]) + if self.stdlib_lib_prefix not in self.paths: + self.paths.append(self.stdlib_lib_prefix) + + # add system paths + for system_path in sys.path[1:]: + if system_path not in self.paths: + self.paths.append(system_path) + + def find(self, module_name: str) -> str | None: + for prefix in self.paths: + package_path = "/".join((prefix, module_name.split(".")[0])) + path_obj = Path(package_path).resolve() + is_module = ( + exists_case_sensitive(package_path + ".py") + or any( + exists_case_sensitive(package_path + ext_suffix) + for ext_suffix in importlib.machinery.EXTENSION_SUFFIXES + ) + or exists_case_sensitive(package_path + "/__init__.py") + ) + is_package = exists_case_sensitive(package_path) and os.path.isdir(package_path) + if is_module or is_package: + if ( + "site-packages" in prefix + or "dist-packages" in prefix + or (self.virtual_env and self.virtual_env_src in prefix) + ): + return sections.THIRDPARTY + if os.path.normcase(prefix) == self.stdlib_lib_prefix: + return sections.STDLIB + if self.conda_env and self.conda_env in prefix: + return sections.THIRDPARTY + for src_path in self.config.src_paths: + if src_path in path_obj.parents and not self.config.is_skipped(path_obj): + return sections.FIRSTPARTY + + if os.path.normcase(prefix).startswith(self.stdlib_lib_prefix): + return sections.STDLIB # pragma: no cover - edge case for one OS. Hard to test. + + return self.config.default_section + return None + + +class ReqsBaseFinder(BaseFinder): + enabled = False + + def __init__(self, config: Config, path: str = ".") -> None: + super().__init__(config) + self.path = path + if self.enabled: + self.mapping = self._load_mapping() + self.names = self._load_names() + + @abstractmethod + def _get_names(self, path: str) -> Iterator[str]: + raise NotImplementedError + + @abstractmethod + def _get_files_from_dir(self, path: str) -> Iterator[str]: + raise NotImplementedError + + @staticmethod + def _load_mapping() -> dict[str, str] | None: + """Return list of mappings `package_name -> module_name` + + Example: + django-haystack -> haystack + """ + if not pipreqs: + return None + path = os.path.dirname(inspect.getfile(pipreqs)) + path = os.path.join(path, "mapping") + with open(path) as f: + mappings: dict[str, str] = {} # pypi_name: import_name + for line in f: + import_name, _, pypi_name = line.strip().partition(":") + mappings[pypi_name] = import_name + return mappings + + def _load_names(self) -> list[str]: + """Return list of thirdparty modules from requirements""" + names: list[str] = [] + for path in self._get_files(): + names.extend(self._normalize_name(name) for name in self._get_names(path)) + return names + + @staticmethod + def _get_parents(path: str) -> Iterator[str]: + prev = "" + while path != prev: + prev = path + yield path + path = os.path.dirname(path) + + def _get_files(self) -> Iterator[str]: + """Return paths to all requirements files""" + path = os.path.abspath(self.path) + if os.path.isfile(path): + path = os.path.dirname(path) + + for path in self._get_parents(path): # noqa + yield from self._get_files_from_dir(path) + + def _normalize_name(self, name: str) -> str: + """Convert package name to module name + + Examples: + Django -> django + django-haystack -> django_haystack + Flask-RESTFul -> flask_restful + """ + if self.mapping: + name = self.mapping.get(name.replace("-", "_"), name) + return name.lower().replace("-", "_") + + def find(self, module_name: str) -> str | None: + # required lib not installed yet + if not self.enabled: + return None + + module_name, _sep, _submodules = module_name.partition(".") + module_name = module_name.lower() + if not module_name: + return None + + for name in self.names: + if module_name == name: + return sections.THIRDPARTY + return None + + +class RequirementsFinder(ReqsBaseFinder): + exts = (".txt", ".in") + enabled = bool(parse_requirements) + + def _get_files_from_dir(self, path: str) -> Iterator[str]: + """Return paths to requirements files from passed dir.""" + yield from self._get_files_from_dir_cached(path) + + @classmethod + @lru_cache(maxsize=16) + def _get_files_from_dir_cached(cls, path: str) -> list[str]: + results: list[str] = [] + + for fname in os.listdir(path): + if "requirements" not in fname: + continue + full_path = os.path.join(path, fname) + + # *requirements*/*.{txt,in} + if os.path.isdir(full_path): + for subfile_name in os.listdir(full_path): + results.extend( + os.path.join(full_path, subfile_name) + for ext in cls.exts + if subfile_name.endswith(ext) + ) + continue + + # *requirements*.{txt,in} + if os.path.isfile(full_path): + for ext in cls.exts: + if fname.endswith(ext): + results.append(full_path) + break + + return results + + def _get_names(self, path: str) -> Iterator[str]: + """Load required packages from path to requirements file""" + yield from self._get_names_cached(path) + + @classmethod + @lru_cache(maxsize=16) + def _get_names_cached(cls, path: str) -> list[str]: + result: list[str] = [] + + with chdir(os.path.dirname(path)): + requirements = parse_requirements(Path(path)) + result.extend(req.name for req in requirements.values() if req.name) + + return result + + +class DefaultFinder(BaseFinder): + def find(self, module_name: str) -> str | None: + return self.config.default_section + + +class FindersManager: + _default_finders_classes: Sequence[type[BaseFinder]] = ( + ForcedSeparateFinder, + LocalFinder, + KnownPatternFinder, + PathFinder, + RequirementsFinder, + DefaultFinder, + ) + + def __init__( + self, config: Config, finder_classes: Iterable[type[BaseFinder]] | None = None + ) -> None: + self.verbose: bool = config.verbose + + if finder_classes is None: + finder_classes = self._default_finders_classes + finders: list[BaseFinder] = [] + for finder_cls in finder_classes: + try: + finders.append(finder_cls(config)) + except Exception as exception: + # if one finder fails to instantiate isort can continue using the rest + if self.verbose: + print( + f"{finder_cls.__name__} encountered an error ({exception}) during " + "instantiation and cannot be used" + ) + self.finders: tuple[BaseFinder, ...] = tuple(finders) + + def find(self, module_name: str) -> str | None: + for finder in self.finders: + try: + section = finder.find(module_name) + if section is not None: + return section + except Exception as exception: + # isort has to be able to keep trying to identify the correct + # import section even if one approach fails + if self.verbose: + print( + f"{finder.__class__.__name__} encountered an error ({exception}) while " + f"trying to identify the {module_name} module" + ) + return None diff --git a/.venv/lib/python3.12/site-packages/isort/exceptions.py b/.venv/lib/python3.12/site-packages/isort/exceptions.py new file mode 100644 index 0000000..34d4e30 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/exceptions.py @@ -0,0 +1,197 @@ +"""All isort specific exception classes should be defined here""" + +from functools import partial +from pathlib import Path +from typing import Any + +from .profiles import profiles + + +class ISortError(Exception): + """Base isort exception object from which all isort sourced exceptions should inherit""" + + def __reduce__(self): # type: ignore + return (partial(type(self), **self.__dict__), ()) + + +class InvalidSettingsPath(ISortError): + """Raised when a settings path is provided that is neither a valid file or directory""" + + def __init__(self, settings_path: str): + super().__init__( + f"isort was told to use the settings_path: {settings_path} as the base directory or " + "file that represents the starting point of config file discovery, but it does not " + "exist." + ) + self.settings_path = settings_path + + +class ExistingSyntaxErrors(ISortError): + """Raised when isort is told to sort imports within code that has existing syntax errors""" + + def __init__(self, file_path: str): + super().__init__( + f"isort was told to sort imports within code that contains syntax errors: {file_path}." + ) + self.file_path = file_path + + +class IntroducedSyntaxErrors(ISortError): + """Raised when isort has introduced a syntax error in the process of sorting imports""" + + def __init__(self, file_path: str): + super().__init__( + f"isort introduced syntax errors when attempting to sort the imports contained within " + f"{file_path}." + ) + self.file_path = file_path + + +class FileSkipped(ISortError): + """Should be raised when a file is skipped for any reason""" + + def __init__(self, message: str, file_path: str): + super().__init__(message) + self.message = message + self.file_path = file_path + + +class FileSkipComment(FileSkipped): + """Raised when an entire file is skipped due to a isort skip file comment""" + + def __init__(self, file_path: str, **kwargs: str): + super().__init__( + f"{file_path} contains a file skip comment and was skipped.", file_path=file_path + ) + + +class FileSkipSetting(FileSkipped): + """Raised when an entire file is skipped due to provided isort settings""" + + def __init__(self, file_path: str, **kwargs: str): + super().__init__( + f"{file_path} was skipped as it's listed in 'skip' setting" + " or matches a glob in 'skip_glob' setting", + file_path=file_path, + ) + + +class ProfileDoesNotExist(ISortError): + """Raised when a profile is set by the user that doesn't exist""" + + def __init__(self, profile: str): + super().__init__( + f"Specified profile of {profile} does not exist. " + f"Available profiles: {','.join(profiles)}." + ) + self.profile = profile + + +class SortingFunctionDoesNotExist(ISortError): + """Raised when the specified sorting function isn't available""" + + def __init__(self, sort_order: str, available_sort_orders: list[str]): + super().__init__( + f"Specified sort_order of {sort_order} does not exist. " + f"Available sort_orders: {','.join(available_sort_orders)}." + ) + self.sort_order = sort_order + self.available_sort_orders = available_sort_orders + + +class FormattingPluginDoesNotExist(ISortError): + """Raised when a formatting plugin is set by the user that doesn't exist""" + + def __init__(self, formatter: str): + super().__init__(f"Specified formatting plugin of {formatter} does not exist. ") + self.formatter = formatter + + +class LiteralParsingFailure(ISortError): + """Raised when one of isorts literal sorting comments is used but isort can't parse the + the given data structure. + """ + + def __init__(self, code: str, original_error: Exception | type[Exception]): + super().__init__( + f"isort failed to parse the given literal {code}. It's important to note " + "that isort literal sorting only supports simple literals parsable by " + f"ast.literal_eval which gave the exception of {original_error}." + ) + self.code = code + self.original_error = original_error + + +class LiteralSortTypeMismatch(ISortError): + """Raised when an isort literal sorting comment is used, with a type that doesn't match the + supplied data structure's type. + """ + + def __init__(self, kind: type, expected_kind: type): + super().__init__( + f"isort was told to sort a literal of type {expected_kind} but was given " + f"a literal of type {kind}." + ) + self.kind = kind + self.expected_kind = expected_kind + + +class AssignmentsFormatMismatch(ISortError): + """Raised when isort is told to sort assignments but the format of the assignment section + doesn't match isort's expectation. + """ + + def __init__(self, code: str): + super().__init__( + "isort was told to sort a section of assignments, however the given code:\n\n" + f"{code}\n\n" + "Does not match isort's strict single line formatting requirement for assignment " + "sorting:\n\n" + "{variable_name} = {value}\n" + "{variable_name2} = {value2}\n" + "...\n\n" + ) + self.code = code + + +class UnsupportedSettings(ISortError): + """Raised when settings are passed into isort (either from config, CLI, or runtime) + that it doesn't support. + """ + + @staticmethod + def _format_option(name: str, value: Any, source: str) -> str: + return f"\t- {name} = {value} (source: '{source}')" + + def __init__(self, unsupported_settings: dict[str, dict[str, str]]): + errors = "\n".join( + self._format_option(name, **option) for name, option in unsupported_settings.items() + ) + + super().__init__( + "isort was provided settings that it doesn't support:\n\n" + f"{errors}\n\n" + "For a complete and up-to-date listing of supported settings see: " + "https://pycqa.github.io/isort/docs/configuration/options.\n" + ) + self.unsupported_settings = unsupported_settings + + +class UnsupportedEncoding(ISortError): + """Raised when isort encounters an encoding error while trying to read a file""" + + def __init__(self, filename: str | Path): + super().__init__(f"Unknown or unsupported encoding in {filename}") + self.filename = filename + + +class MissingSection(ISortError): + """Raised when isort encounters an import that matches a section that is not defined""" + + def __init__(self, import_module: str, section: str): + super().__init__( + f"Found {import_module} import while parsing, but {section} was not included " + "in the `sections` setting of your config. Please add it before continuing\n" + "See https://pycqa.github.io/isort/#custom-sections-and-ordering " + "for more info." + ) diff --git a/.venv/lib/python3.12/site-packages/isort/files.py b/.venv/lib/python3.12/site-packages/isort/files.py new file mode 100644 index 0000000..c23674a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/files.py @@ -0,0 +1,41 @@ +import os +from collections.abc import Iterable, Iterator +from pathlib import Path + +from isort.settings import Config + + +def find( + paths: Iterable[str], config: Config, skipped: list[str], broken: list[str] +) -> Iterator[str]: + """Fines and provides an iterator for all Python source files defined in paths.""" + visited_dirs: set[Path] = set() + + for path in paths: + if os.path.isdir(path): + for dirpath, dirnames, filenames in os.walk( + path, topdown=True, followlinks=config.follow_links + ): + base_path = Path(dirpath) + for dirname in list(dirnames): + full_path = base_path / dirname + resolved_path = full_path.resolve() + if config.is_skipped(full_path): + skipped.append(str(full_path)) + dirnames.remove(dirname) + else: + if resolved_path in visited_dirs: # pragma: no cover + dirnames.remove(dirname) + visited_dirs.add(resolved_path) + + for filename in filenames: + filepath = os.path.join(dirpath, filename) + if config.is_supported_filetype(filepath): + if config.is_skipped(Path(os.path.abspath(filepath))): + skipped.append(os.path.abspath(filepath)) + else: + yield filepath + elif not os.path.exists(path): + broken.append(path) + else: + yield path diff --git a/.venv/lib/python3.12/site-packages/isort/format.py b/.venv/lib/python3.12/site-packages/isort/format.py new file mode 100644 index 0000000..5ad9f47 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/format.py @@ -0,0 +1,157 @@ +import re +import sys +from datetime import datetime +from difflib import unified_diff +from pathlib import Path +from typing import TextIO + +try: + import colorama +except ImportError: + colorama_unavailable = True +else: + colorama_unavailable = False + + +ADDED_LINE_PATTERN = re.compile(r"\+[^+]") +REMOVED_LINE_PATTERN = re.compile(r"-[^-]") + + +def format_simplified(import_line: str) -> str: + import_line = import_line.strip() + if import_line.startswith("from "): + import_line = import_line.replace("from ", "") + import_line = import_line.replace(" import ", ".") + elif import_line.startswith("import "): + import_line = import_line.replace("import ", "") + + return import_line + + +def format_natural(import_line: str) -> str: + import_line = import_line.strip() + if not import_line.startswith("from ") and not import_line.startswith("import "): + if "." not in import_line: + return f"import {import_line}" + parts = import_line.split(".") + end = parts.pop(-1) + return f"from {'.'.join(parts)} import {end}" + + return import_line + + +def show_unified_diff( + *, + file_input: str, + file_output: str, + file_path: Path | None, + output: TextIO | None = None, + color_output: bool = False, +) -> None: + """Shows a unified_diff for the provided input and output against the provided file path. + + - **file_input**: A string that represents the contents of a file before changes. + - **file_output**: A string that represents the contents of a file after changes. + - **file_path**: A Path object that represents the file path of the file being changed. + - **output**: A stream to output the diff to. If non is provided uses sys.stdout. + - **color_output**: Use color in output if True. + """ + printer = create_terminal_printer(color_output, output) + file_name = "" if file_path is None else str(file_path) + file_mtime = str( + datetime.now() if file_path is None else datetime.fromtimestamp(file_path.stat().st_mtime) + ) + unified_diff_lines = unified_diff( + file_input.splitlines(keepends=True), + file_output.splitlines(keepends=True), + fromfile=file_name + ":before", + tofile=file_name + ":after", + fromfiledate=file_mtime, + tofiledate=str(datetime.now()), + ) + for line in unified_diff_lines: + printer.diff_line(line) + + +def ask_whether_to_apply_changes_to_file(file_path: str) -> bool: + answer = None + while answer not in ("yes", "y", "no", "n", "quit", "q"): + answer = input(f"Apply suggested changes to '{file_path}' [y/n/q]? ") # nosec + answer = answer.lower() + if answer in ("no", "n"): + return False + if answer in ("quit", "q"): + sys.exit(1) + return True + + +def remove_whitespace(content: str, line_separator: str = "\n") -> str: + content = content.replace(line_separator, "").replace(" ", "").replace("\x0c", "") + return content + + +class BasicPrinter: + ERROR = "ERROR" + SUCCESS = "SUCCESS" + + def __init__(self, error: str, success: str, output: TextIO | None = None): + self.output = output or sys.stdout + self.success_message = success + self.error_message = error + + def success(self, message: str) -> None: + print(self.success_message.format(success=self.SUCCESS, message=message), file=self.output) + + def error(self, message: str) -> None: + print(self.error_message.format(error=self.ERROR, message=message), file=sys.stderr) + + def diff_line(self, line: str) -> None: + self.output.write(line) + + +class ColoramaPrinter(BasicPrinter): + def __init__(self, error: str, success: str, output: TextIO | None): + super().__init__(error, success, output=output) + + # Note: this constants are instance variables instead ofs class variables + # because they refer to colorama which might not be installed. + self.ERROR = self.style_text("ERROR", colorama.Fore.RED) + self.SUCCESS = self.style_text("SUCCESS", colorama.Fore.GREEN) + self.ADDED_LINE = colorama.Fore.GREEN + self.REMOVED_LINE = colorama.Fore.RED + + @staticmethod + def style_text(text: str, style: str | None = None) -> str: + if style is None: + return text + return style + text + str(colorama.Style.RESET_ALL) + + def diff_line(self, line: str) -> None: + style = None + if re.match(ADDED_LINE_PATTERN, line): + style = self.ADDED_LINE + elif re.match(REMOVED_LINE_PATTERN, line): + style = self.REMOVED_LINE + self.output.write(self.style_text(line, style)) + + +def create_terminal_printer( + color: bool, output: TextIO | None = None, error: str = "", success: str = "" +) -> BasicPrinter: + if color and colorama_unavailable: + no_colorama_message = ( + "\n" + "Sorry, but to use --color (color_output) the colorama python package is required.\n\n" + "Reference: https://pypi.org/project/colorama/\n\n" + "You can either install it separately on your system or as the colors extra " + "for isort. Ex: \n\n" + "$ pip install isort[colors]\n" + ) + print(no_colorama_message, file=sys.stderr) + sys.exit(1) + + if not colorama_unavailable: + colorama.init(strip=False) + return ( + ColoramaPrinter(error, success, output) if color else BasicPrinter(error, success, output) + ) diff --git a/.venv/lib/python3.12/site-packages/isort/hooks.py b/.venv/lib/python3.12/site-packages/isort/hooks.py new file mode 100644 index 0000000..af9020f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/hooks.py @@ -0,0 +1,93 @@ +"""Defines a git hook to allow pre-commit warnings and errors about import order. + +usage: + exit_code = git_hook(strict=True|False, modify=True|False) +""" + +import os +import subprocess # nosec +from pathlib import Path + +from isort import Config, api, exceptions + + +def get_output(command: list[str]) -> str: + """Run a command and return raw output + + :param str command: the command to run + :returns: the stdout output of the command + """ + result = subprocess.run(command, stdout=subprocess.PIPE, check=True) # nosec + return result.stdout.decode() + + +def get_lines(command: list[str]) -> list[str]: + """Run a command and return lines of output + + :param str command: the command to run + :returns: list of whitespace-stripped lines output by command + """ + stdout = get_output(command) + return [line.strip() for line in stdout.splitlines()] + + +def git_hook( + strict: bool = False, + modify: bool = False, + lazy: bool = False, + settings_file: str = "", + directories: list[str] | None = None, +) -> int: + """Git pre-commit hook to check staged files for isort errors + + :param bool strict - if True, return number of errors on exit, + causing the hook to fail. If False, return zero so it will + just act as a warning. + :param bool modify - if True, fix the sources if they are not + sorted properly. If False, only report result without + modifying anything. + :param bool lazy - if True, also check/fix unstaged files. + This is useful if you frequently use ``git commit -a`` for example. + If False, only check/fix the staged files for isort errors. + :param str settings_file - A path to a file to be used as + the configuration file for this run. + When settings_file is the empty string, the configuration file + will be searched starting at the directory containing the first + staged file, if any, and going upward in the directory structure. + :param list[str] directories - A list of directories to restrict the hook to. + + :return number of errors if in strict mode, 0 otherwise. + """ + # Get list of files modified and staged + diff_cmd = ["git", "diff-index", "--cached", "--name-only", "--diff-filter=ACMRTUXB", "HEAD"] + if lazy: + diff_cmd.remove("--cached") + if directories: + diff_cmd.extend(directories) + + files_modified = get_lines(diff_cmd) + if not files_modified: + return 0 + + errors = 0 + config = Config( + settings_file=settings_file, + settings_path=os.path.dirname(os.path.abspath(files_modified[0])), + ) + for filename in files_modified: + if filename.endswith(".py"): + # Get the staged contents of the file + staged_cmd = ["git", "show", f":{filename}"] + staged_contents = get_output(staged_cmd) + + try: + if not api.check_code_string( + staged_contents, file_path=Path(filename), config=config + ): + errors += 1 + if modify: + api.sort_file(filename, config=config) + except exceptions.FileSkipped: # pragma: no cover + pass + + return errors if strict else 0 diff --git a/.venv/lib/python3.12/site-packages/isort/identify.py b/.venv/lib/python3.12/site-packages/isort/identify.py new file mode 100644 index 0000000..fad5330 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/identify.py @@ -0,0 +1,208 @@ +"""Fast stream based import identification. +Eventually this will likely replace parse.py +""" + +from collections.abc import Iterator +from functools import partial +from pathlib import Path +from typing import NamedTuple, TextIO + +from isort.parse import normalize_line, skip_line, strip_syntax + +from .comments import parse as parse_comments +from .settings import DEFAULT_CONFIG, Config + +STATEMENT_DECLARATIONS: tuple[str, ...] = ("def ", "cdef ", "cpdef ", "class ", "@", "async def") + + +class Import(NamedTuple): + line_number: int + indented: bool + module: str + attribute: str | None = None + alias: str | None = None + cimport: bool = False + file_path: Path | None = None + + def statement(self) -> str: + import_cmd = "cimport" if self.cimport else "import" + if self.attribute: + import_string = f"from {self.module} {import_cmd} {self.attribute}" + else: + import_string = f"{import_cmd} {self.module}" + if self.alias: + import_string += f" as {self.alias}" + return import_string + + def __str__(self) -> str: + return ( + f"{self.file_path or ''}:{self.line_number} " + f"{'indented ' if self.indented else ''}{self.statement()}" + ) + + +def imports( + input_stream: TextIO, + config: Config = DEFAULT_CONFIG, + file_path: Path | None = None, + top_only: bool = False, +) -> Iterator[Import]: + """Parses a python file taking out and categorizing imports.""" + in_quote = "" + + indexed_input = enumerate(input_stream) + for index, raw_line in indexed_input: + (skipping_line, in_quote) = skip_line( + raw_line, in_quote=in_quote, index=index, section_comments=config.section_comments + ) + + if top_only and not in_quote and raw_line.startswith(STATEMENT_DECLARATIONS): + break + if skipping_line: + continue + + stripped_line = raw_line.strip().split("#")[0] + if stripped_line.startswith(("raise", "yield")): + if stripped_line == "yield": + while not stripped_line or stripped_line == "yield": + try: + index, next_line = next(indexed_input) + except StopIteration: + break + + stripped_line = next_line.strip().split("#")[0] + while stripped_line.endswith("\\"): + try: + index, next_line = next(indexed_input) + except StopIteration: + break + + stripped_line = next_line.strip().split("#")[0] + continue # pragma: no cover + + line, *end_of_line_comment = raw_line.split("#", 1) + statements = [line.strip() for line in line.split(";")] + if end_of_line_comment: + statements[-1] = f"{statements[-1]}#{end_of_line_comment[0]}" + + for statement in statements: + line, _raw_line = normalize_line(statement) + if line.startswith(("import ", "cimport ")): + type_of_import = "straight" + elif line.startswith("from "): + type_of_import = "from" + else: + continue # pragma: no cover + + import_string, _ = parse_comments(line) + normalized_import_string = ( + import_string.replace("import(", "import (").replace("\\", " ").replace("\n", " ") + ) + cimports: bool = ( + " cimport " in normalized_import_string + or normalized_import_string.startswith("cimport") + ) + identified_import = partial( + Import, + index + 1, # line numbers use 1 based indexing + raw_line.startswith((" ", "\t")), + cimport=cimports, + file_path=file_path, + ) + + if "(" in line.split("#", 1)[0]: + while not line.split("#")[0].strip().endswith(")"): + try: + index, next_line = next(indexed_input) + except StopIteration: + break + + line, _ = parse_comments(next_line) + import_string += "\n" + line + else: + while line.strip().endswith("\\"): + try: + index, next_line = next(indexed_input) + except StopIteration: + break + + line, _ = parse_comments(next_line) + + # Still need to check for parentheses after an escaped line + if "(" in line.split("#")[0] and ")" not in line.split("#")[0]: + import_string += "\n" + line + + while not line.split("#")[0].strip().endswith(")"): + try: + index, next_line = next(indexed_input) + except StopIteration: + break + line, _ = parse_comments(next_line) + import_string += "\n" + line + else: + if import_string.strip().endswith( + (" import", " cimport") + ) or line.strip().startswith(("import ", "cimport ")): + import_string += "\n" + line + else: + import_string = ( + import_string.rstrip().rstrip("\\") + " " + line.lstrip() + ) + + if type_of_import == "from": + import_string = ( + import_string.replace("import(", "import (") + .replace("\\", " ") + .replace("\n", " ") + ) + parts = import_string.split(" cimport " if cimports else " import ") + + from_import = parts[0].split(" ") + import_string = (" cimport " if cimports else " import ").join( + [from_import[0] + " " + "".join(from_import[1:]), *parts[1:]] + ) + + just_imports = [ + item.replace("{|", "{ ").replace("|}", " }") + for item in strip_syntax(import_string).split() + ] + + direct_imports = just_imports[1:] + top_level_module = "" + if "as" in just_imports and (just_imports.index("as") + 1) < len(just_imports): + while "as" in just_imports: + attribute = None + as_index = just_imports.index("as") + if type_of_import == "from": + attribute = just_imports[as_index - 1] + top_level_module = just_imports[0] + module = top_level_module + "." + attribute + alias = just_imports[as_index + 1] + direct_imports.remove(attribute) + direct_imports.remove(alias) + direct_imports.remove("as") + just_imports[1:] = direct_imports + if attribute == alias and config.remove_redundant_aliases: + yield identified_import(top_level_module, attribute) + else: + yield identified_import(top_level_module, attribute, alias=alias) + + else: + module = just_imports[as_index - 1] + alias = just_imports[as_index + 1] + just_imports.remove(alias) + just_imports.remove("as") + just_imports.remove(module) + if module == alias and config.remove_redundant_aliases: + yield identified_import(module) + else: + yield identified_import(module, alias=alias) + + if just_imports: + if type_of_import == "from": + module = just_imports.pop(0) + for attribute in just_imports: + yield identified_import(module, attribute) + else: + for module in just_imports: + yield identified_import(module) diff --git a/.venv/lib/python3.12/site-packages/isort/io.py b/.venv/lib/python3.12/site-packages/isort/io.py new file mode 100644 index 0000000..deeda1e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/io.py @@ -0,0 +1,73 @@ +"""Defines any IO utilities used by isort""" + +import dataclasses +import re +import tokenize +from collections.abc import Callable, Iterator +from contextlib import contextmanager +from io import BytesIO, StringIO, TextIOWrapper +from pathlib import Path +from typing import Any, TextIO + +from isort.exceptions import UnsupportedEncoding + +_ENCODING_PATTERN = re.compile(rb"^[ \t\f]*#.*?coding[:=][ \t]*([-_.a-zA-Z0-9]+)") + + +@dataclasses.dataclass(frozen=True) +class File: + stream: TextIO + path: Path + encoding: str + + @staticmethod + def detect_encoding(filename: str | Path, readline: Callable[[], bytes]) -> str: + try: + return tokenize.detect_encoding(readline)[0] + except Exception: + raise UnsupportedEncoding(filename) + + @staticmethod + def from_contents(contents: str, filename: str) -> "File": + encoding = File.detect_encoding(filename, BytesIO(contents.encode("utf-8")).readline) + return File(stream=StringIO(contents), path=Path(filename).resolve(), encoding=encoding) + + @property + def extension(self) -> str: + return self.path.suffix.lstrip(".") + + @staticmethod + def _open(filename: str | Path) -> TextIOWrapper: + """Open a file in read only mode using the encoding detected by + detect_encoding(). + """ + buffer = open(filename, "rb") + try: + encoding = File.detect_encoding(filename, buffer.readline) + buffer.seek(0) + text = TextIOWrapper(buffer, encoding, line_buffering=True, newline="") + text.mode = "r" # type: ignore + return text + except Exception: + buffer.close() + raise + + @staticmethod + @contextmanager + def read(filename: str | Path) -> Iterator["File"]: + file_path = Path(filename).resolve() + stream = None + try: + stream = File._open(file_path) + yield File(stream=stream, path=file_path, encoding=stream.encoding) + finally: + if stream is not None: + stream.close() + + +class _EmptyIO(StringIO): + def write(self, *args: Any, **kwargs: Any) -> None: # type: ignore # skipcq: PTC-W0049 + pass + + +Empty = _EmptyIO() diff --git a/.venv/lib/python3.12/site-packages/isort/literal.py b/.venv/lib/python3.12/site-packages/isort/literal.py new file mode 100644 index 0000000..16ddcba --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/literal.py @@ -0,0 +1,115 @@ +import ast +from collections.abc import Callable +from pprint import PrettyPrinter +from typing import Any + +from isort.exceptions import ( + AssignmentsFormatMismatch, + LiteralParsingFailure, + LiteralSortTypeMismatch, +) +from isort.settings import DEFAULT_CONFIG, Config + + +class ISortPrettyPrinter(PrettyPrinter): + """an isort customized pretty printer for sorted literals""" + + def __init__(self, config: Config): + super().__init__(width=config.line_length, compact=True) + + +type_mapping: dict[str, tuple[type, Callable[[Any, ISortPrettyPrinter], str]]] = {} + + +def assignments(code: str) -> str: + values = {} + for line in code.splitlines(keepends=True): + if not line.strip(): + continue + if " = " not in line: + raise AssignmentsFormatMismatch(code) + variable_name, value = line.split(" = ", 1) + values[variable_name] = value + + return "".join( + f"{variable_name} = {values[variable_name]}" for variable_name in sorted(values.keys()) + ) + + +def assignment(code: str, sort_type: str, extension: str, config: Config = DEFAULT_CONFIG) -> str: + """Sorts the literal present within the provided code against the provided sort type, + returning the sorted representation of the source code. + """ + if sort_type == "assignments": + return assignments(code) + if sort_type not in type_mapping: + raise ValueError( + "Trying to sort using an undefined sort_type. " + f"Defined sort types are {', '.join(type_mapping.keys())}." + ) + + variable_name, literal = code.split("=") + variable_name = variable_name.strip() + literal = literal.lstrip() + try: + value = ast.literal_eval(literal) + except Exception as error: + raise LiteralParsingFailure(code, error) + + expected_type, sort_function = type_mapping[sort_type] + if type(value) is not expected_type: + raise LiteralSortTypeMismatch(type(value), expected_type) + + printer = ISortPrettyPrinter(config) + sorted_value_code = f"{variable_name} = {sort_function(value, printer)}" + if config.formatting_function: + sorted_value_code = config.formatting_function( + sorted_value_code, extension, config + ).rstrip() + + sorted_value_code += code[len(code.rstrip()) :] + return sorted_value_code + + +def register_type( + name: str, kind: type +) -> Callable[[Callable[[Any, ISortPrettyPrinter], str]], Callable[[Any, ISortPrettyPrinter], str]]: + """Registers a new literal sort type.""" + + def wrap( + function: Callable[[Any, ISortPrettyPrinter], str], + ) -> Callable[[Any, ISortPrettyPrinter], str]: + type_mapping[name] = (kind, function) + return function + + return wrap + + +@register_type("dict", dict) +def _dict(value: dict[Any, Any], printer: ISortPrettyPrinter) -> str: + return printer.pformat(dict(sorted(value.items(), key=lambda item: item[1]))) + + +@register_type("list", list) +def _list(value: list[Any], printer: ISortPrettyPrinter) -> str: + return printer.pformat(sorted(value)) + + +@register_type("unique-list", list) +def _unique_list(value: list[Any], printer: ISortPrettyPrinter) -> str: + return printer.pformat(sorted(set(value))) + + +@register_type("set", set) +def _set(value: set[Any], printer: ISortPrettyPrinter) -> str: + return "{" + printer.pformat(tuple(sorted(value)))[1:-1] + "}" + + +@register_type("tuple", tuple) +def _tuple(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str: + return printer.pformat(tuple(sorted(value))) + + +@register_type("unique-tuple", tuple) +def _unique_tuple(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str: + return printer.pformat(tuple(sorted(set(value)))) diff --git a/.venv/lib/python3.12/site-packages/isort/logo.py b/.venv/lib/python3.12/site-packages/isort/logo.py new file mode 100644 index 0000000..6377d86 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/logo.py @@ -0,0 +1,19 @@ +from ._version import __version__ + +ASCII_ART = rf""" + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION {__version__} +""" + +__doc__ = f""" +```python +{ASCII_ART} +``` +""" diff --git a/.venv/lib/python3.12/site-packages/isort/main.py b/.venv/lib/python3.12/site-packages/isort/main.py new file mode 100644 index 0000000..f5408f6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/main.py @@ -0,0 +1,1308 @@ +"""Tool for sorting imports alphabetically, and automatically separated into sections.""" + +import argparse +import functools +import json +import os +import sys +from collections.abc import Sequence +from gettext import gettext as _ +from io import TextIOWrapper +from pathlib import Path +from typing import Any +from warnings import warn + +from . import __version__, api, files, sections +from .exceptions import FileSkipped, ISortError, UnsupportedEncoding +from .format import create_terminal_printer +from .logo import ASCII_ART +from .profiles import profiles +from .settings import VALID_PY_TARGETS, Config, find_all_configs +from .utils import Trie +from .wrap_modes import WrapModes + +DEPRECATED_SINGLE_DASH_ARGS = { + "-ac", + "-af", + "-ca", + "-cs", + "-df", + "-ds", + "-dt", + "-fas", + "-fass", + "-ff", + "-fgw", + "-fss", + "-lai", + "-lbt", + "-le", + "-ls", + "-nis", + "-nlb", + "-ot", + "-rr", + "-sd", + "-sg", + "-sl", + "-sp", + "-tc", + "-wl", + "-ws", +} +QUICK_GUIDE = f""" +{ASCII_ART} + +Nothing to do: no files or paths have been passed in! + +Try one of the following: + + `isort .` - sort all Python files, starting from the current directory, recursively. + `isort . --interactive` - Do the same, but ask before making any changes. + `isort . --check --diff` - Check to see if imports are correctly sorted within this project. + `isort --help` - In-depth information about isort's available command-line options. + +Visit https://pycqa.github.io/isort/ for complete information about how to use isort. +""" + + +class SortAttempt: + def __init__(self, incorrectly_sorted: bool, skipped: bool, supported_encoding: bool) -> None: + self.incorrectly_sorted = incorrectly_sorted + self.skipped = skipped + self.supported_encoding = supported_encoding + + +def sort_imports( + file_name: str, + config: Config, + check: bool = False, + ask_to_apply: bool = False, + write_to_stdout: bool = False, + **kwargs: Any, +) -> SortAttempt | None: + incorrectly_sorted: bool = False + skipped: bool = False + try: + if check: + try: + incorrectly_sorted = not api.check_file(file_name, config=config, **kwargs) + except FileSkipped: + skipped = True + return SortAttempt(incorrectly_sorted, skipped, True) + + try: + incorrectly_sorted = not api.sort_file( + file_name, + config=config, + ask_to_apply=ask_to_apply, + write_to_stdout=write_to_stdout, + **kwargs, + ) + except FileSkipped: + skipped = True + return SortAttempt(incorrectly_sorted, skipped, True) + except (OSError, ValueError) as error: + warn(f"Unable to parse file {file_name} due to {error}", stacklevel=2) + return None + except UnsupportedEncoding: + if config.verbose: + warn(f"Encoding not supported for {file_name}", stacklevel=2) + return SortAttempt(incorrectly_sorted, skipped, False) + except ISortError as error: + _print_hard_fail(config, message=str(error)) + sys.exit(1) + except Exception: + _print_hard_fail(config, offending_file=file_name) + raise + + +def _print_hard_fail( + config: Config, offending_file: str | None = None, message: str | None = None +) -> None: + """Fail on unrecoverable exception with custom message.""" + message = message or ( + f"Unrecoverable exception thrown when parsing {offending_file or ''}! " + "This should NEVER happen.\n" + "If encountered, please open an issue: https://github.com/PyCQA/isort/issues/new" + ) + printer = create_terminal_printer( + color=config.color_output, error=config.format_error, success=config.format_success + ) + printer.error(message) + + +def _build_arg_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser( + description="Sort Python import definitions alphabetically " + "within logical sections. Run with no arguments to see a quick " + "start guide, otherwise, one or more files/directories/stdin must be provided. " + "Use `-` as the first argument to represent stdin. Use --interactive to use the pre 5.0.0 " + "interactive behavior." + " " + "If you've used isort 4 but are new to isort 5, see the upgrading guide: " + "https://pycqa.github.io/isort/docs/upgrade_guides/5.0.0.html", + add_help=False, # prevent help option from appearing in "optional arguments" group + ) + + general_group = parser.add_argument_group("general options") + target_group = parser.add_argument_group("target options") + output_group = parser.add_argument_group("general output options") + inline_args_group = output_group.add_mutually_exclusive_group() + section_group = parser.add_argument_group("section output options") + deprecated_group = parser.add_argument_group("deprecated options") + + general_group.add_argument( + "-h", + "--help", + action="help", + default=argparse.SUPPRESS, + help=_("show this help message and exit"), + ) + general_group.add_argument( + "-V", + "--version", + action="store_true", + dest="show_version", + help="Displays the currently installed version of isort.", + ) + general_group.add_argument( + "--vn", + "--version-number", + action="version", + version=__version__, + help="Returns just the current version number without the logo", + ) + general_group.add_argument( + "-v", + "--verbose", + action="store_true", + dest="verbose", + help="Shows verbose output, such as when files are skipped or when a check is successful.", + ) + general_group.add_argument( + "--only-modified", + "--om", + dest="only_modified", + action="store_true", + help="Suppresses verbose output for non-modified files.", + ) + general_group.add_argument( + "--dedup-headings", + dest="dedup_headings", + action="store_true", + help="Tells isort to only show an identical custom import heading comment once, even if" + " there are multiple sections with the comment set.", + ) + general_group.add_argument( + "-q", + "--quiet", + action="store_true", + dest="quiet", + help="Shows extra quiet output, only errors are outputted.", + ) + general_group.add_argument( + "-d", + "--stdout", + help="Force resulting output to stdout, instead of in-place.", + dest="write_to_stdout", + action="store_true", + ) + general_group.add_argument( + "--overwrite-in-place", + help="Tells isort to overwrite in place using the same file handle. " + "Comes at a performance and memory usage penalty over its standard " + "approach but ensures all file flags and modes stay unchanged.", + dest="overwrite_in_place", + action="store_true", + ) + general_group.add_argument( + "--show-config", + dest="show_config", + action="store_true", + help="See isort's determined config, as well as sources of config options.", + ) + general_group.add_argument( + "--show-files", + dest="show_files", + action="store_true", + help="See the files isort will be run against with the current config options.", + ) + general_group.add_argument( + "--df", + "--diff", + dest="show_diff", + action="store_true", + help="Prints a diff of all the changes isort would make to a file, instead of " + "changing it in place", + ) + general_group.add_argument( + "-c", + "--check-only", + "--check", + action="store_true", + dest="check", + help="Checks the file for unsorted / unformatted imports and prints them to the " + "command line without modifying the file. Returns 0 when nothing would change and " + "returns 1 when the file would be reformatted.", + ) + general_group.add_argument( + "--ws", + "--ignore-whitespace", + action="store_true", + dest="ignore_whitespace", + help="Tells isort to ignore whitespace differences when --check-only is being used.", + ) + general_group.add_argument( + "--sp", + "--settings-path", + "--settings-file", + "--settings", + dest="settings_path", + help="Explicitly set the settings path or file instead of auto determining " + "based on file location.", + ) + general_group.add_argument( + "--cr", + "--config-root", + dest="config_root", + help="Explicitly set the config root for resolving all configs. When used " + "with the --resolve-all-configs flag, isort will look at all sub-folders " + "in this config root to resolve config files and sort files based on the " + "closest available config(if any)", + ) + general_group.add_argument( + "--resolve-all-configs", + dest="resolve_all_configs", + action="store_true", + help="Tells isort to resolve the configs for all sub-directories " + "and sort files in terms of its closest config files.", + ) + general_group.add_argument( + "--profile", + dest="profile", + type=str, + help="Base profile type to use for configuration. " + f"Profiles include: {', '.join(profiles.keys())}. As well as any shared profiles.", + ) + general_group.add_argument( + "--old-finders", + "--magic-placement", + dest="old_finders", + action="store_true", + help="Use the old deprecated finder logic that relies on environment introspection magic.", + ) + general_group.add_argument( + "-j", + "--jobs", + help="Number of files to process in parallel. Negative value means use number of CPUs.", + dest="jobs", + type=int, + nargs="?", + const=-1, + ) + general_group.add_argument( + "--ac", + "--atomic", + dest="atomic", + action="store_true", + help="Ensures the output doesn't save if the resulting file contains syntax errors.", + ) + general_group.add_argument( + "--interactive", + dest="ask_to_apply", + action="store_true", + help="Tells isort to apply changes interactively.", + ) + general_group.add_argument( + "--format-error", + dest="format_error", + help="Override the format used to print errors.", + ) + general_group.add_argument( + "--format-success", + dest="format_success", + help="Override the format used to print success.", + ) + general_group.add_argument( + "--srx", + "--sort-reexports", + dest="sort_reexports", + action="store_true", + help="Automatically sort all re-exports (module level __all__ collections)", + ) + + target_group.add_argument( + "files", nargs="*", help="One or more Python source files that need their imports sorted." + ) + target_group.add_argument( + "--filter-files", + dest="filter_files", + action="store_true", + help="Tells isort to filter files even when they are explicitly passed in as " + "part of the CLI command.", + ) + target_group.add_argument( + "-s", + "--skip", + help="Files that isort should skip over. If you want to skip multiple " + "files you should specify twice: --skip file1 --skip file2. Values can be " + "file names, directory names or file paths. To skip all files in a nested path " + "use --skip-glob.", + dest="skip", + action="append", + ) + target_group.add_argument( + "--extend-skip", + help="Extends --skip to add additional files that isort should skip over. " + "If you want to skip multiple " + "files you should specify twice: --skip file1 --skip file2. Values can be " + "file names, directory names or file paths. To skip all files in a nested path " + "use --skip-glob.", + dest="extend_skip", + action="append", + ) + target_group.add_argument( + "--sg", + "--skip-glob", + help="Files that isort should skip over.", + dest="skip_glob", + action="append", + ) + target_group.add_argument( + "--extend-skip-glob", + help="Additional files that isort should skip over (extending --skip-glob).", + dest="extend_skip_glob", + action="append", + ) + target_group.add_argument( + "--gitignore", + "--skip-gitignore", + action="store_true", + dest="skip_gitignore", + help="Treat project as a git repository and ignore files listed in .gitignore." + "\nNOTE: This requires git to be installed and accessible from the same shell as isort.", + ) + target_group.add_argument( + "--ext", + "--extension", + "--supported-extension", + dest="supported_extensions", + action="append", + help="Specifies what extensions isort can be run against.", + ) + target_group.add_argument( + "--blocked-extension", + dest="blocked_extensions", + action="append", + help="Specifies what extensions isort can never be run against.", + ) + target_group.add_argument( + "--dont-follow-links", + dest="dont_follow_links", + action="store_true", + help="Tells isort not to follow symlinks that are encountered when running recursively.", + ) + target_group.add_argument( + "--filename", + dest="filename", + help="Provide the filename associated with a stream.", + ) + target_group.add_argument( + "--allow-root", + action="store_true", + default=False, + help="Tells isort not to treat / specially, allowing it to be run against the root dir.", + ) + + output_group.add_argument( + "-a", + "--add-import", + dest="add_imports", + action="append", + help="Adds the specified import line to all files, " + "automatically determining correct placement.", + ) + output_group.add_argument( + "--append", + "--append-only", + dest="append_only", + action="store_true", + help="Only adds the imports specified in --add-import if the file" + " contains existing imports.", + ) + output_group.add_argument( + "--af", + "--force-adds", + dest="force_adds", + action="store_true", + help="Forces import adds even if the original file is empty.", + ) + output_group.add_argument( + "--rm", + "--remove-import", + dest="remove_imports", + action="append", + help="Removes the specified import from all files.", + ) + output_group.add_argument( + "--float-to-top", + dest="float_to_top", + action="store_true", + help="Causes all non-indented imports to float to the top of the file having its imports " + "sorted (immediately below the top of file comment).\n" + "This can be an excellent shortcut for collecting imports every once in a while " + "when you place them in the middle of a file to avoid context switching.\n\n" + "*NOTE*: It currently doesn't work with cimports and introduces some extra over-head " + "and a performance penalty.", + ) + output_group.add_argument( + "--dont-float-to-top", + dest="dont_float_to_top", + action="store_true", + help="Forces --float-to-top setting off. See --float-to-top for more information.", + ) + output_group.add_argument( + "--ca", + "--combine-as", + dest="combine_as_imports", + action="store_true", + help="Combines as imports on the same line.", + ) + output_group.add_argument( + "--cs", + "--combine-star", + dest="combine_star", + action="store_true", + help="Ensures that if a star import is present, " + "nothing else is imported from that namespace.", + ) + output_group.add_argument( + "-e", + "--balanced", + dest="balanced_wrapping", + action="store_true", + help="Balances wrapping to produce the most consistent line length possible", + ) + output_group.add_argument( + "--ff", + "--from-first", + dest="from_first", + action="store_true", + help="Switches the typical ordering preference, " + "showing from imports first then straight ones.", + ) + output_group.add_argument( + "--fgw", + "--force-grid-wrap", + nargs="?", + const=2, + type=int, + dest="force_grid_wrap", + help="Force number of from imports (defaults to 2 when passed as CLI flag without value) " + "to be grid wrapped regardless of line " + "length. If 0 is passed in (the global default) only line length is considered.", + ) + output_group.add_argument( + "-i", + "--indent", + help='String to place for indents defaults to " " (4 spaces).', + dest="indent", + type=str, + ) + output_group.add_argument( + "--lbi", "--lines-before-imports", dest="lines_before_imports", type=int + ) + output_group.add_argument( + "--lai", "--lines-after-imports", dest="lines_after_imports", type=int + ) + output_group.add_argument( + "--lbt", "--lines-between-types", dest="lines_between_types", type=int + ) + output_group.add_argument( + "--le", + "--line-ending", + dest="line_ending", + help="Forces line endings to the specified value. " + "If not set, values will be guessed per-file.", + ) + output_group.add_argument( + "--ls", + "--length-sort", + help="Sort imports by their string length.", + dest="length_sort", + action="store_true", + ) + output_group.add_argument( + "--lss", + "--length-sort-straight", + help="Sort straight imports by their string length. Similar to `length_sort` " + "but applies only to straight imports and doesn't affect from imports.", + dest="length_sort_straight", + action="store_true", + ) + output_group.add_argument( + "-m", + "--multi-line", + dest="multi_line_output", + choices=list(WrapModes.__members__.keys()) + + [str(mode.value) for mode in WrapModes.__members__.values()], + type=str, + help="Multi line output (0-grid, 1-vertical, 2-hanging, 3-vert-hanging, 4-vert-grid, " + "5-vert-grid-grouped, 6-deprecated-alias-for-5, 7-noqa, " + "8-vertical-hanging-indent-bracket, 9-vertical-prefix-from-module-import, " + "10-hanging-indent-with-parentheses).", + ) + output_group.add_argument( + "-n", + "--ensure-newline-before-comments", + dest="ensure_newline_before_comments", + action="store_true", + help="Inserts a blank line before a comment following an import.", + ) + inline_args_group.add_argument( + "--nis", + "--no-inline-sort", + dest="no_inline_sort", + action="store_true", + help="Leaves `from` imports with multiple imports 'as-is' " + "(e.g. `from foo import a, c ,b`).", + ) + output_group.add_argument( + "--ot", + "--order-by-type", + dest="order_by_type", + action="store_true", + help="Order imports by type, which is determined by case, in addition to alphabetically.\n" + "\n**NOTE**: type here refers to the implied type from the import name capitalization.\n" + ' isort does not do type introspection for the imports. These "types" are simply: ' + "CONSTANT_VARIABLE, CamelCaseClass, variable_or_function. If your project follows PEP8" + " or a related coding standard and has many imports this is a good default, otherwise you " + "likely will want to turn it off. From the CLI the `--dont-order-by-type` option will turn " + "this off.", + ) + output_group.add_argument( + "--dt", + "--dont-order-by-type", + dest="dont_order_by_type", + action="store_true", + help="Don't order imports by type, which is determined by case, in addition to " + "alphabetically.\n\n" + "**NOTE**: type here refers to the implied type from the import name capitalization.\n" + ' isort does not do type introspection for the imports. These "types" are simply: ' + "CONSTANT_VARIABLE, CamelCaseClass, variable_or_function. If your project follows PEP8" + " or a related coding standard and has many imports this is a good default. You can turn " + "this on from the CLI using `--order-by-type`.", + ) + output_group.add_argument( + "--rr", + "--reverse-relative", + dest="reverse_relative", + action="store_true", + help="Reverse order of relative imports.", + ) + output_group.add_argument( + "--reverse-sort", + dest="reverse_sort", + action="store_true", + help="Reverses the ordering of imports.", + ) + output_group.add_argument( + "--sort-order", + dest="sort_order", + help="Specify sorting function. Can be built in (natural[default] = force numbers " + "to be sequential, native = Python's built-in sorted function) or an installable plugin.", + ) + inline_args_group.add_argument( + "--sl", + "--force-single-line-imports", + dest="force_single_line", + action="store_true", + help="Forces all from imports to appear on their own line", + ) + output_group.add_argument( + "--nsl", + "--single-line-exclusions", + help="One or more modules to exclude from the single line rule.", + dest="single_line_exclusions", + action="append", + ) + output_group.add_argument( + "--tc", + "--trailing-comma", + dest="include_trailing_comma", + action="store_true", + help="Includes a trailing comma on multi line imports that include parentheses.", + ) + output_group.add_argument( + "--up", + "--use-parentheses", + dest="use_parentheses", + action="store_true", + help="Use parentheses for line continuation on length limit instead of slashes." + " **NOTE**: This is separate from wrap modes, and only affects how individual lines that " + " are too long get continued, not sections of multiple imports.", + ) + output_group.add_argument( + "-l", + "-w", + "--line-length", + "--line-width", + help="The max length of an import line (used for wrapping long imports).", + dest="line_length", + type=int, + ) + output_group.add_argument( + "--wl", + "--wrap-length", + dest="wrap_length", + type=int, + help="Specifies how long lines that are wrapped should be, if not set line_length is used." + "\nNOTE: wrap_length must be LOWER than or equal to line_length.", + ) + output_group.add_argument( + "--case-sensitive", + dest="case_sensitive", + action="store_true", + help="Tells isort to include casing when sorting module names", + ) + output_group.add_argument( + "--remove-redundant-aliases", + dest="remove_redundant_aliases", + action="store_true", + help=( + "Tells isort to remove redundant aliases from imports, such as `import os as os`." + " This defaults to `False` simply because some projects use these seemingly useless " + " aliases to signify intent and change behaviour." + ), + ) + output_group.add_argument( + "--honor-noqa", + dest="honor_noqa", + action="store_true", + help="Tells isort to honor noqa comments to enforce skipping those comments.", + ) + output_group.add_argument( + "--treat-comment-as-code", + dest="treat_comments_as_code", + action="append", + help="Tells isort to treat the specified single line comment(s) as if they are code.", + ) + output_group.add_argument( + "--treat-all-comment-as-code", + dest="treat_all_comments_as_code", + action="store_true", + help="Tells isort to treat all single line comments as if they are code.", + ) + output_group.add_argument( + "--formatter", + dest="formatter", + type=str, + help="Specifies the name of a formatting plugin to use when producing output.", + ) + output_group.add_argument( + "--color", + dest="color_output", + action="store_true", + help="Tells isort to use color in terminal output.", + ) + output_group.add_argument( + "--ext-format", + dest="ext_format", + help="Tells isort to format the given files according to an extensions formatting rules.", + ) + output_group.add_argument( + "--star-first", + help="Forces star imports above others to avoid overriding directly imported variables.", + dest="star_first", + action="store_true", + ) + output_group.add_argument( + "--split-on-trailing-comma", + help="Split imports list followed by a trailing comma into VERTICAL_HANGING_INDENT mode", + dest="split_on_trailing_comma", + action="store_true", + ) + + section_group.add_argument( + "--sd", + "--section-default", + dest="default_section", + help="Sets the default section for import options: " + str(sections.DEFAULT), + ) + section_group.add_argument( + "--only-sections", + "--os", + dest="only_sections", + action="store_true", + help="Causes imports to be sorted based on their sections like STDLIB, THIRDPARTY, etc. " + "Within sections, the imports are ordered by their import style and the imports with " + "the same style maintain their relative positions.", + ) + section_group.add_argument( + "--ds", + "--no-sections", + help="Put all imports into the same section bucket", + dest="no_sections", + action="store_true", + ) + section_group.add_argument( + "--fas", + "--force-alphabetical-sort", + action="store_true", + dest="force_alphabetical_sort", + help="Force all imports to be sorted as a single section", + ) + section_group.add_argument( + "--fss", + "--force-sort-within-sections", + action="store_true", + dest="force_sort_within_sections", + help="Don't sort straight-style imports (like import sys) before from-style imports " + "(like from itertools import groupby). Instead, sort the imports by module, " + "independent of import style.", + ) + section_group.add_argument( + "--hcss", + "--honor-case-in-force-sorted-sections", + action="store_true", + dest="honor_case_in_force_sorted_sections", + help="Honor `--case-sensitive` when `--force-sort-within-sections` is being used. " + "Without this option set, `--order-by-type` decides module name ordering too.", + ) + section_group.add_argument( + "--srss", + "--sort-relative-in-force-sorted-sections", + action="store_true", + dest="sort_relative_in_force_sorted_sections", + help="When using `--force-sort-within-sections`, sort relative imports the same " + "way as they are sorted when not using that setting.", + ) + section_group.add_argument( + "--fass", + "--force-alphabetical-sort-within-sections", + action="store_true", + dest="force_alphabetical_sort_within_sections", + help="Force all imports to be sorted alphabetically within a section", + ) + section_group.add_argument( + "-t", + "--top", + help="Force specific imports to the top of their appropriate section.", + dest="force_to_top", + action="append", + ) + section_group.add_argument( + "--combine-straight-imports", + "--csi", + dest="combine_straight_imports", + action="store_true", + help="Combines all the bare straight imports of the same section in a single line. " + "Won't work with sections which have 'as' imports", + ) + section_group.add_argument( + "--nlb", + "--no-lines-before", + help="Sections which should not be split with previous by empty lines", + dest="no_lines_before", + action="append", + ) + section_group.add_argument( + "--src", + "--src-path", + dest="src_paths", + action="append", + help="Add an explicitly defined source path " + "(modules within src paths have their imports automatically categorized as first_party)." + " Glob expansion (`*` and `**`) is supported for this option.", + ) + section_group.add_argument( + "-b", + "--builtin", + dest="known_standard_library", + action="append", + help="Force isort to recognize a module as part of Python's standard library.", + ) + section_group.add_argument( + "--extra-builtin", + dest="extra_standard_library", + action="append", + help="Extra modules to be included in the list of ones in Python's standard library.", + ) + section_group.add_argument( + "-f", + "--future", + dest="known_future_library", + action="append", + help="Force isort to recognize a module as part of Python's internal future compatibility " + "libraries. WARNING: this overrides the behavior of __future__ handling and therefore" + " can result in code that can't execute. If you're looking to add dependencies such " + "as six, a better option is to create another section below --future using custom " + "sections. See: https://github.com/PyCQA/isort#custom-sections-and-ordering and the " + "discussion here: https://github.com/PyCQA/isort/issues/1463.", + ) + section_group.add_argument( + "-o", + "--thirdparty", + dest="known_third_party", + action="append", + help="Force isort to recognize a module as being part of a third party library.", + ) + section_group.add_argument( + "-p", + "--project", + dest="known_first_party", + action="append", + help="Force isort to recognize a module as being part of the current python project.", + ) + section_group.add_argument( + "--known-local-folder", + dest="known_local_folder", + action="append", + help="Force isort to recognize a module as being a local folder. " + "Generally, this is reserved for relative imports (from . import module).", + ) + section_group.add_argument( + "--virtual-env", + dest="virtual_env", + help="Virtual environment to use for determining whether a package is third-party", + ) + section_group.add_argument( + "--conda-env", + dest="conda_env", + help="Conda environment to use for determining whether a package is third-party", + ) + section_group.add_argument( + "--py", + "--python-version", + action="store", + dest="py_version", + choices=(*tuple(VALID_PY_TARGETS), "auto"), + help="Tells isort to set the known standard library based on the specified Python " + "version. Default is to assume any Python 3 version could be the target, and use a union " + "of all stdlib modules across versions. If auto is specified, the version of the " + "interpreter used to run isort " + f"(currently: {sys.version_info.major}{sys.version_info.minor}) will be used.", + ) + + # deprecated options + deprecated_group.add_argument( + "--recursive", + dest="deprecated_flags", + action="append_const", + const="--recursive", + help=argparse.SUPPRESS, + ) + deprecated_group.add_argument( + "-rc", dest="deprecated_flags", action="append_const", const="-rc", help=argparse.SUPPRESS + ) + deprecated_group.add_argument( + "--dont-skip", + dest="deprecated_flags", + action="append_const", + const="--dont-skip", + help=argparse.SUPPRESS, + ) + deprecated_group.add_argument( + "-ns", dest="deprecated_flags", action="append_const", const="-ns", help=argparse.SUPPRESS + ) + deprecated_group.add_argument( + "--apply", + dest="deprecated_flags", + action="append_const", + const="--apply", + help=argparse.SUPPRESS, + ) + deprecated_group.add_argument( + "-k", + "--keep-direct-and-as", + dest="deprecated_flags", + action="append_const", + const="--keep-direct-and-as", + help=argparse.SUPPRESS, + ) + + return parser + + +def parse_args(argv: Sequence[str] | None = None) -> dict[str, Any]: + argv = sys.argv[1:] if argv is None else list(argv) + remapped_deprecated_args = [] + for index, arg in enumerate(argv): + if arg in DEPRECATED_SINGLE_DASH_ARGS: + remapped_deprecated_args.append(arg) + argv[index] = f"-{arg}" + + parser = _build_arg_parser() + arguments = {key: value for key, value in vars(parser.parse_args(argv)).items() if value} + if remapped_deprecated_args: + arguments["remapped_deprecated_args"] = remapped_deprecated_args + if "dont_order_by_type" in arguments: + arguments["order_by_type"] = False + del arguments["dont_order_by_type"] + if "dont_follow_links" in arguments: + arguments["follow_links"] = False + del arguments["dont_follow_links"] + if "dont_float_to_top" in arguments: + del arguments["dont_float_to_top"] + if arguments.get("float_to_top", False): + sys.exit("Can't set both --float-to-top and --dont-float-to-top.") + else: + arguments["float_to_top"] = False + multi_line_output = arguments.get("multi_line_output", None) + if multi_line_output: + if multi_line_output.isdigit(): + arguments["multi_line_output"] = WrapModes(int(multi_line_output)) + else: + arguments["multi_line_output"] = WrapModes[multi_line_output] + + return arguments + + +def _preconvert(item: Any) -> str | list[Any]: + """Preconverts objects from native types into JSONifyiable types""" + if isinstance(item, (set, frozenset)): + return list(item) + if isinstance(item, WrapModes): + return str(item.name) + if isinstance(item, Path): + return str(item) + if callable(item) and hasattr(item, "__name__"): + return str(item.__name__) + raise TypeError(f"Unserializable object {item} of type {type(item)}") + + +def identify_imports_main( + argv: Sequence[str] | None = None, stdin: TextIOWrapper | None = None +) -> None: + parser = argparse.ArgumentParser( + description="Get all import definitions from a given file." + "Use `-` as the first argument to represent stdin." + ) + parser.add_argument( + "files", nargs="+", help="One or more Python source files that need their imports sorted." + ) + parser.add_argument( + "--top-only", + action="store_true", + default=False, + help="Only identify imports that occur in before functions or classes.", + ) + + target_group = parser.add_argument_group("target options") + target_group.add_argument( + "--follow-links", + action="store_true", + default=False, + help="Tells isort to follow symlinks that are encountered when running recursively.", + ) + + uniqueness = parser.add_mutually_exclusive_group() + uniqueness.add_argument( + "--unique", + action="store_true", + default=False, + help="If true, isort will only identify unique imports.", + ) + uniqueness.add_argument( + "--packages", + dest="unique", + action="store_const", + const=api.ImportKey.PACKAGE, + default=False, + help="If true, isort will only identify the unique top level modules imported.", + ) + uniqueness.add_argument( + "--modules", + dest="unique", + action="store_const", + const=api.ImportKey.MODULE, + default=False, + help="If true, isort will only identify the unique modules imported.", + ) + uniqueness.add_argument( + "--attributes", + dest="unique", + action="store_const", + const=api.ImportKey.ATTRIBUTE, + default=False, + help="If true, isort will only identify the unique attributes imported.", + ) + + arguments = parser.parse_args(argv) + + file_names = arguments.files + if file_names == ["-"]: + identified_imports = api.find_imports_in_stream( + sys.stdin if stdin is None else stdin, + unique=arguments.unique, + top_only=arguments.top_only, + follow_links=arguments.follow_links, + ) + else: + identified_imports = api.find_imports_in_paths( + file_names, + unique=arguments.unique, + top_only=arguments.top_only, + follow_links=arguments.follow_links, + ) + + for identified_import in identified_imports: + if arguments.unique == api.ImportKey.PACKAGE: + print(identified_import.module.split(".")[0]) + elif arguments.unique == api.ImportKey.MODULE: + print(identified_import.module) + elif arguments.unique == api.ImportKey.ATTRIBUTE: + print(f"{identified_import.module}.{identified_import.attribute}") + else: + print(str(identified_import)) + + +def main(argv: Sequence[str] | None = None, stdin: TextIOWrapper | None = None) -> None: + arguments = parse_args(argv) + if arguments.get("show_version"): + print(ASCII_ART) + return + + show_config: bool = arguments.pop("show_config", False) + show_files: bool = arguments.pop("show_files", False) + if show_config and show_files: + sys.exit("Error: either specify show-config or show-files not both.") + + if "settings_path" in arguments: + if os.path.isfile(arguments["settings_path"]): + arguments["settings_file"] = os.path.abspath(arguments["settings_path"]) + arguments["settings_path"] = os.path.dirname(arguments["settings_file"]) + else: + arguments["settings_path"] = os.path.abspath(arguments["settings_path"]) + + if "virtual_env" in arguments: + venv = arguments["virtual_env"] + arguments["virtual_env"] = os.path.abspath(venv) + if not os.path.isdir(arguments["virtual_env"]): + warn(f"virtual_env dir does not exist: {arguments['virtual_env']}", stacklevel=2) + + file_names = arguments.pop("files", []) + if not file_names and not show_config: + print(QUICK_GUIDE) + if arguments: + sys.exit("Error: arguments passed in without any paths or content.") + return + if "settings_path" not in arguments: + arguments["settings_path"] = ( + arguments.get("filename", None) or os.getcwd() + if file_names == ["-"] + else os.path.abspath(file_names[0] if file_names else ".") + ) + if not os.path.isdir(arguments["settings_path"]): + arguments["settings_path"] = os.path.dirname(arguments["settings_path"]) + + config_dict = arguments.copy() + ask_to_apply = config_dict.pop("ask_to_apply", False) + jobs = config_dict.pop("jobs", None) + check = config_dict.pop("check", False) + show_diff = config_dict.pop("show_diff", False) + write_to_stdout = config_dict.pop("write_to_stdout", False) + deprecated_flags = config_dict.pop("deprecated_flags", False) + remapped_deprecated_args = config_dict.pop("remapped_deprecated_args", False) + stream_filename = config_dict.pop("filename", None) + ext_format = config_dict.pop("ext_format", None) + allow_root = config_dict.pop("allow_root", None) + resolve_all_configs = config_dict.pop("resolve_all_configs", False) + wrong_sorted_files = False + all_attempt_broken = False + no_valid_encodings = False + + config_trie: Trie | None = None + if resolve_all_configs: + config_trie = find_all_configs(config_dict.pop("config_root", ".")) + + if "src_paths" in config_dict: + config_dict["src_paths"] = { + Path(src_path).resolve() for src_path in config_dict.get("src_paths", ()) + } + + config = Config(**config_dict) + if show_config: + print(json.dumps(config.__dict__, indent=4, separators=(",", ": "), default=_preconvert)) + return + if file_names == ["-"]: + file_path = Path(stream_filename) if stream_filename else None + if show_files: + sys.exit("Error: can't show files for streaming input.") + + input_stream = sys.stdin if stdin is None else stdin + if check: + incorrectly_sorted = not api.check_stream( + input_stream=input_stream, + config=config, + show_diff=show_diff, + file_path=file_path, + extension=ext_format, + ) + + wrong_sorted_files = incorrectly_sorted + else: + try: + api.sort_stream( + input_stream=input_stream, + output_stream=sys.stdout, + config=config, + show_diff=show_diff, + file_path=file_path, + extension=ext_format, + raise_on_skip=False, + ) + except FileSkipped: + sys.stdout.write(input_stream.read()) + elif "/" in file_names and not allow_root: + printer = create_terminal_printer( + color=config.color_output, error=config.format_error, success=config.format_success + ) + printer.error("it is dangerous to operate recursively on '/'") + printer.error("use --allow-root to override this failsafe") + sys.exit(1) + else: + if stream_filename: + printer = create_terminal_printer( + color=config.color_output, error=config.format_error, success=config.format_success + ) + printer.error("Filename override is intended only for stream (-) sorting.") + sys.exit(1) + skipped: list[str] = [] + broken: list[str] = [] + + if config.filter_files: + filtered_files = [] + for file_name in file_names: + if config.is_skipped(Path(file_name)): + skipped.append(str(Path(file_name).resolve())) + else: + filtered_files.append(file_name) + file_names = filtered_files + + file_names = files.find(file_names, config, skipped, broken) + if show_files: + for file_name in file_names: + print(file_name) + return + num_skipped = 0 + num_broken = 0 + num_invalid_encoding = 0 + if config.verbose: + print(ASCII_ART) + + if jobs: + import multiprocessing # noqa: PLC0415 + + executor = multiprocessing.Pool(jobs if jobs > 0 else multiprocessing.cpu_count()) + attempt_iterator = executor.imap( + functools.partial( + sort_imports, + config=config, + check=check, + ask_to_apply=ask_to_apply, + show_diff=show_diff, + write_to_stdout=write_to_stdout, + extension=ext_format, + config_trie=config_trie, + ), + file_names, + ) + else: + # https://github.com/python/typeshed/pull/2814 + attempt_iterator = ( + sort_imports( # type: ignore + file_name, + config=config, + check=check, + ask_to_apply=ask_to_apply, + show_diff=show_diff, + write_to_stdout=write_to_stdout, + extension=ext_format, + config_trie=config_trie, + ) + for file_name in file_names + ) + + # If any files passed in are missing considered as error, should be removed + is_no_attempt = True + any_encoding_valid = False + for sort_attempt in attempt_iterator: + if not sort_attempt: + continue # pragma: no cover - shouldn't happen, satisfies type constraint + incorrectly_sorted = sort_attempt.incorrectly_sorted + if arguments.get("check", False) and incorrectly_sorted: + wrong_sorted_files = True + if sort_attempt.skipped: + num_skipped += ( + 1 # pragma: no cover - shouldn't happen, due to skip in iter_source_code + ) + + if not sort_attempt.supported_encoding: + num_invalid_encoding += 1 + else: + any_encoding_valid = True + + is_no_attempt = False + + num_skipped += len(skipped) + if num_skipped and not config.quiet: + if config.verbose: + for was_skipped in skipped: + print( + f"{was_skipped} was skipped as it's listed in 'skip' setting, " + "matches a glob in 'skip_glob' setting, or is in a .gitignore file with " + "--skip-gitignore enabled." + ) + print(f"Skipped {num_skipped} files") + + num_broken += len(broken) + if num_broken and not config.quiet: + if config.verbose: + for was_broken in broken: + warn( + f"{was_broken} was broken path, make sure it exists correctly", stacklevel=2 + ) + print(f"Broken {num_broken} paths") + + if num_broken > 0 and is_no_attempt: + all_attempt_broken = True + if num_invalid_encoding > 0 and not any_encoding_valid: + no_valid_encodings = True + + if not config.quiet and (remapped_deprecated_args or deprecated_flags): + if remapped_deprecated_args: + warn( + "W0502: The following deprecated single dash CLI flags were used and translated: " + f"{', '.join(remapped_deprecated_args)}!", + stacklevel=2, + ) + if deprecated_flags: + warn( + "W0501: The following deprecated CLI flags were used and ignored: " + f"{', '.join(deprecated_flags)}!", + stacklevel=2, + ) + warn( + "W0500: Please see the 5.0.0 Upgrade guide: " + "https://pycqa.github.io/isort/docs/upgrade_guides/5.0.0.html", + stacklevel=2, + ) + + if wrong_sorted_files: + sys.exit(1) + + if all_attempt_broken: + sys.exit(1) + + if no_valid_encodings: + printer = create_terminal_printer( + color=config.color_output, error=config.format_error, success=config.format_success + ) + printer.error("No valid encodings.") + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/isort/output.py b/.venv/lib/python3.12/site-packages/isort/output.py new file mode 100644 index 0000000..9b72e16 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/output.py @@ -0,0 +1,686 @@ +import copy +import itertools +from collections.abc import Iterable +from functools import partial +from typing import Any + +from isort.format import format_simplified + +from . import parse, sorting, wrap +from .comments import add_to_line as with_comments +from .identify import STATEMENT_DECLARATIONS +from .settings import DEFAULT_CONFIG, Config + + +def sorted_imports( + parsed: parse.ParsedContent, + config: Config = DEFAULT_CONFIG, + extension: str = "py", + import_type: str = "import", +) -> str: + """Adds the imports back to the file. + + (at the index of the first import) sorted alphabetically and split between groups + + """ + if parsed.import_index == -1: + return _output_as_string(parsed.lines_without_imports, parsed.line_separator) + + formatted_output: list[str] = parsed.lines_without_imports.copy() + remove_imports = [format_simplified(removal) for removal in config.remove_imports] + + sections: Iterable[str] = itertools.chain(parsed.sections, config.forced_separate) + + if config.no_sections: + parsed.imports["no_sections"] = {"straight": {}, "from": {}} + base_sections: tuple[str, ...] = () + for section in sections: + if section == "FUTURE": + base_sections = ("FUTURE",) + continue + parsed.imports["no_sections"]["straight"].update( + parsed.imports[section].get("straight", {}) + ) + parsed.imports["no_sections"]["from"].update(parsed.imports[section].get("from", {})) + sections = (*base_sections, "no_sections") + + output: list[str] = [] + seen_headings: set[str] = set() + pending_lines_before = False + for section in sections: + straight_modules = parsed.imports[section]["straight"] + if not config.only_sections: + straight_modules = sorting.sort( + config, + straight_modules, + key=lambda key: sorting.module_key( + key, config, section_name=section, straight_import=True + ), + reverse=config.reverse_sort, + ) + + from_modules = parsed.imports[section]["from"] + if not config.only_sections: + from_modules = sorting.sort( + config, + from_modules, + key=lambda key: sorting.module_key(key, config, section_name=section), + reverse=config.reverse_sort, + ) + + if config.star_first: + star_modules = [] + other_modules = [] + for module in from_modules: + if "*" in parsed.imports[section]["from"][module]: + star_modules.append(module) + else: + other_modules.append(module) + from_modules = star_modules + other_modules + + straight_imports = _with_straight_imports( + parsed, config, straight_modules, section, remove_imports, import_type + ) + from_imports = _with_from_imports( + parsed, config, from_modules, section, remove_imports, import_type + ) + + lines_between = [""] * ( + config.lines_between_types if from_modules and straight_modules else 0 + ) + if config.from_first: + section_output = from_imports + lines_between + straight_imports + else: + section_output = straight_imports + lines_between + from_imports + + if config.force_sort_within_sections: + # collapse comments + comments_above = [] + new_section_output: list[str] = [] + for line in section_output: + if not line: + continue + if line.startswith("#"): + comments_above.append(line) + elif comments_above: + new_section_output.append(_LineWithComments(line, comments_above)) + comments_above = [] + else: + new_section_output.append(line) + # only_sections options is not imposed if force_sort_within_sections is True + new_section_output = sorting.sort( + config, + new_section_output, + key=partial(sorting.section_key, config=config), + reverse=config.reverse_sort, + ) + + # uncollapse comments + section_output = [] + for line in new_section_output: + comments = getattr(line, "comments", ()) + if comments: + section_output.extend(comments) + section_output.append(str(line)) + + section_name = section + no_lines_before = section_name in config.no_lines_before + + if section_output: + if section_name in parsed.place_imports: + parsed.place_imports[section_name] = section_output + continue + + section_title = config.import_headings.get(section_name.lower(), "") + if section_title and section_title not in seen_headings: + if config.dedup_headings: + seen_headings.add(section_title) + section_comment = f"# {section_title}" + if section_comment not in parsed.lines_without_imports[0:1]: # pragma: no branch + section_output.insert(0, section_comment) + + section_footer = config.import_footers.get(section_name.lower(), "") + if section_footer and section_footer not in seen_headings: + if config.dedup_headings: + seen_headings.add(section_footer) + section_comment_end = f"# {section_footer}" + if ( + section_comment_end not in parsed.lines_without_imports[-1:] + ): # pragma: no branch + section_output.append("") # Empty line for black compatibility + section_output.append(section_comment_end) + + if pending_lines_before or not no_lines_before: + output += [""] * config.lines_between_sections + + output += section_output + + pending_lines_before = False + else: + pending_lines_before = pending_lines_before or not no_lines_before + + if config.ensure_newline_before_comments: + output = _ensure_newline_before_comment(output) + + while output and output[-1].strip() == "": + output.pop() # pragma: no cover + while output and output[0].strip() == "": + output.pop(0) + + if config.formatting_function: + output = config.formatting_function( + parsed.line_separator.join(output), extension, config + ).splitlines() + + output_at = 0 + if parsed.import_index < parsed.original_line_count: + output_at = parsed.import_index + formatted_output[output_at:0] = output + + if output: + imports_tail = output_at + len(output) + while [ + character.strip() for character in formatted_output[imports_tail : imports_tail + 1] + ] == [""]: + formatted_output.pop(imports_tail) + + if len(formatted_output) > imports_tail: + next_construct = "" + tail = formatted_output[imports_tail:] + + for index, line in enumerate(tail): # pragma: no branch + should_skip, in_quote, *_ = parse.skip_line( + line, + in_quote="", + index=len(formatted_output), + section_comments=config.section_comments, + needs_import=False, + ) + if not should_skip and line.strip(): + if ( + line.strip().startswith("#") + and len(tail) > (index + 1) + and tail[index + 1].strip() + ): + continue + next_construct = line + break + if in_quote: # pragma: no branch + next_construct = line + break + + if config.lines_after_imports != -1: + lines_after_imports = config.lines_after_imports + if config.profile == "black" and extension == "pyi": # special case for black + lines_after_imports = 1 + formatted_output[imports_tail:0] = ["" for line in range(lines_after_imports)] + elif extension != "pyi" and next_construct.startswith(STATEMENT_DECLARATIONS): + formatted_output[imports_tail:0] = ["", ""] + else: + formatted_output[imports_tail:0] = [""] + + if config.lines_before_imports != -1: + lines_before_imports = config.lines_before_imports + if config.profile == "black" and extension == "pyi": # special case for black + lines_before_imports = 1 + formatted_output[:0] = ["" for line in range(lines_before_imports)] + + if parsed.place_imports: + new_out_lines = [] + for index, line in enumerate(formatted_output): + new_out_lines.append(line) + if line in parsed.import_placements: + new_out_lines.extend(parsed.place_imports[parsed.import_placements[line]]) + if ( + len(formatted_output) <= (index + 1) + or formatted_output[index + 1].strip() != "" + ): + new_out_lines.append("") + formatted_output = new_out_lines + + return _output_as_string(formatted_output, parsed.line_separator) + + +# Ignore DeepSource cyclomatic complexity check for this function. It was +# already complex when this check was enabled. +# skipcq: PY-R1000 +def _with_from_imports( + parsed: parse.ParsedContent, + config: Config, + from_modules: Iterable[str], + section: str, + remove_imports: list[str], + import_type: str, +) -> list[str]: + output: list[str] = [] + for module in from_modules: + if module in remove_imports: + continue + + import_start = f"from {module} {import_type} " + from_imports = list(parsed.imports[section]["from"][module]) + if ( + not config.no_inline_sort + or (config.force_single_line and module not in config.single_line_exclusions) + ) and not config.only_sections: + from_imports = sorting.sort( + config, + from_imports, + key=lambda key: sorting.module_key( + key, + config, + True, + config.force_alphabetical_sort_within_sections, + section_name=section, + ), + reverse=config.reverse_sort, + ) + if remove_imports: + from_imports = [ + line for line in from_imports if f"{module}.{line}" not in remove_imports + ] + + sub_modules = [f"{module}.{from_import}" for from_import in from_imports] + as_imports = { + from_import: [ + f"{from_import} as {as_module}" for as_module in parsed.as_map["from"][sub_module] + ] + for from_import, sub_module in zip(from_imports, sub_modules, strict=False) + if sub_module in parsed.as_map["from"] + } + if config.combine_as_imports and not ("*" in from_imports and config.combine_star): + if not config.no_inline_sort: + for as_import in as_imports: + if not config.only_sections: + as_imports[as_import] = sorting.sort(config, as_imports[as_import]) + for from_import in copy.copy(from_imports): + if from_import in as_imports: + idx = from_imports.index(from_import) + if parsed.imports[section]["from"][module][from_import]: + from_imports[(idx + 1) : (idx + 1)] = as_imports.pop(from_import) + else: + from_imports[idx : (idx + 1)] = as_imports.pop(from_import) + + only_show_as_imports = False + comments = parsed.categorized_comments["from"].pop(module, ()) + above_comments = parsed.categorized_comments["above"]["from"].pop(module, None) + while from_imports: + if above_comments: + output.extend(above_comments) + above_comments = None + + if "*" in from_imports and config.combine_star: + import_statement = wrap.line( + with_comments( + _with_star_comments(parsed, module, list(comments or ())), + f"{import_start}*", + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ), + parsed.line_separator, + config, + ) + from_imports = [ + from_import for from_import in from_imports if from_import in as_imports + ] + only_show_as_imports = True + elif config.force_single_line and module not in config.single_line_exclusions: + import_statement = "" + while from_imports: + from_import = from_imports.pop(0) + single_import_line = with_comments( + comments, + import_start + from_import, + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ) + comment = ( + parsed.categorized_comments["nested"].get(module, {}).pop(from_import, None) + ) + if comment: + single_import_line += ( + f"{(comments and ';') or config.comment_prefix} {comment}" + ) + if from_import in as_imports: + if ( + parsed.imports[section]["from"][module][from_import] + and not only_show_as_imports + ): + output.append( + wrap.line(single_import_line, parsed.line_separator, config) + ) + from_comments = parsed.categorized_comments["straight"].get( + f"{module}.{from_import}" + ) + + if not config.only_sections: + output.extend( + with_comments( + from_comments, + wrap.line( + import_start + as_import, parsed.line_separator, config + ), + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ) + for as_import in sorting.sort(config, as_imports[from_import]) + ) + + else: + output.extend( + with_comments( + from_comments, + wrap.line( + import_start + as_import, parsed.line_separator, config + ), + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ) + for as_import in as_imports[from_import] + ) + else: + output.append(wrap.line(single_import_line, parsed.line_separator, config)) + comments = None + else: + while from_imports and from_imports[0] in as_imports: + from_import = from_imports.pop(0) + + if not config.only_sections: + as_imports[from_import] = sorting.sort(config, as_imports[from_import]) + from_comments = ( + parsed.categorized_comments["straight"].get(f"{module}.{from_import}") or [] + ) + if ( + parsed.imports[section]["from"][module][from_import] + and not only_show_as_imports + ): + specific_comment = ( + parsed.categorized_comments["nested"] + .get(module, {}) + .pop(from_import, None) + ) + if specific_comment: + from_comments.append(specific_comment) + output.append( + wrap.line( + with_comments( + from_comments, + import_start + from_import, + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ), + parsed.line_separator, + config, + ) + ) + from_comments = [] + + for as_import in as_imports[from_import]: + specific_comment = ( + parsed.categorized_comments["nested"] + .get(module, {}) + .pop(as_import, None) + ) + if specific_comment: + from_comments.append(specific_comment) + + output.append( + wrap.line( + with_comments( + from_comments, + import_start + as_import, + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ), + parsed.line_separator, + config, + ) + ) + + from_comments = [] + + if "*" in from_imports: + output.append( + with_comments( + _with_star_comments(parsed, module, []), + f"{import_start}*", + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ) + ) + from_imports.remove("*") + + for from_import in copy.copy(from_imports): + comment = ( + parsed.categorized_comments["nested"].get(module, {}).pop(from_import, None) + ) + if comment: + # If the comment is a noqa and hanging indent wrapping is used, + # keep the name in the main list and hoist the comment to the statement. + if ( + comment.lower().startswith("noqa") + and config.multi_line_output == wrap.Modes.HANGING_INDENT # type: ignore[attr-defined] # noqa: E501 + ): + comments = list(comments) if comments else [] + comments.append(comment) + continue + + from_imports.remove(from_import) + if from_imports: + use_comments = [] + else: + use_comments = comments + comments = None + single_import_line = with_comments( + use_comments, + import_start + from_import, + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ) + single_import_line += ( + f"{(use_comments and ';') or config.comment_prefix} {comment}" + ) + output.append(wrap.line(single_import_line, parsed.line_separator, config)) + + from_import_section = [] + while from_imports and ( + from_imports[0] not in as_imports + or ( + config.combine_as_imports + and parsed.imports[section]["from"][module][from_import] + ) + ): + from_import_section.append(from_imports.pop(0)) + if config.combine_as_imports: + comments = (comments or []) + list( + parsed.categorized_comments["from"].pop(f"{module}.__combined_as__", ()) + ) + import_statement = with_comments( + comments, + import_start + (", ").join(from_import_section), + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ) + if not from_import_section: + import_statement = "" + + do_multiline_reformat = False + + force_grid_wrap = config.force_grid_wrap + if force_grid_wrap and len(from_import_section) >= force_grid_wrap: + do_multiline_reformat = True + + if len(import_statement) > config.line_length and len(from_import_section) > 1: + do_multiline_reformat = True + + # If line too long AND have imports AND we are + # NOT using GRID or VERTICAL wrap modes + if ( + len(import_statement) > config.line_length + and len(from_import_section) > 0 + and config.multi_line_output not in (wrap.Modes.GRID, wrap.Modes.VERTICAL) # type: ignore # noqa: E501 + ): + do_multiline_reformat = True + + if ( + import_statement + and config.split_on_trailing_comma + and module in parsed.trailing_commas + ): + import_statement = wrap.import_statement( + import_start=import_start, + from_imports=from_import_section, + comments=comments, + line_separator=parsed.line_separator, + config=config, + explode=True, + ) + + elif do_multiline_reformat: + import_statement = wrap.import_statement( + import_start=import_start, + from_imports=from_import_section, + comments=comments, + line_separator=parsed.line_separator, + config=config, + ) + if config.multi_line_output == wrap.Modes.GRID: # type: ignore + other_import_statement = wrap.import_statement( + import_start=import_start, + from_imports=from_import_section, + comments=comments, + line_separator=parsed.line_separator, + config=config, + multi_line_output=wrap.Modes.VERTICAL_GRID, # type: ignore + ) + if ( + max( + len(import_line) + for import_line in import_statement.split(parsed.line_separator) + ) + > config.line_length + ): + import_statement = other_import_statement + elif len(import_statement) > config.line_length: + import_statement = wrap.line(import_statement, parsed.line_separator, config) + + if import_statement: + output.append(import_statement) + return output + + +def _with_straight_imports( + parsed: parse.ParsedContent, + config: Config, + straight_modules: Iterable[str], + section: str, + remove_imports: list[str], + import_type: str, +) -> list[str]: + output: list[str] = [] + + as_imports = any(module in parsed.as_map["straight"] for module in straight_modules) + + # combine_straight_imports only works for bare imports, 'as' imports not included + if config.combine_straight_imports and not as_imports: + if not straight_modules: + return [] + + above_comments: list[str] = [] + inline_comments: list[str] = [] + + for module in straight_modules: + if module in parsed.categorized_comments["above"]["straight"]: + above_comments.extend(parsed.categorized_comments["above"]["straight"].pop(module)) + if module in parsed.categorized_comments["straight"]: + inline_comments.extend(parsed.categorized_comments["straight"][module]) + + combined_straight_imports = ", ".join(straight_modules) + if inline_comments: + combined_inline_comments = " ".join(inline_comments) + else: + combined_inline_comments = "" + + output.extend(above_comments) + + if combined_inline_comments: + output.append( + f"{import_type} {combined_straight_imports} # {combined_inline_comments}" + ) + else: + output.append(f"{import_type} {combined_straight_imports}") + + return output + + for module in straight_modules: + if module in remove_imports: + continue + + import_definition = [] + if module in parsed.as_map["straight"]: + if parsed.imports[section]["straight"][module]: + import_definition.append((f"{import_type} {module}", module)) + import_definition.extend( + (f"{import_type} {module} as {as_import}", f"{module} as {as_import}") + for as_import in parsed.as_map["straight"][module] + ) + else: + import_definition.append((f"{import_type} {module}", module)) + + comments_above = parsed.categorized_comments["above"]["straight"].pop(module, None) + if comments_above: + output.extend(comments_above) + output.extend( + with_comments( + parsed.categorized_comments["straight"].get(imodule), + idef, + removed=config.ignore_comments, + comment_prefix=config.comment_prefix, + ) + for idef, imodule in import_definition + ) + + return output + + +def _output_as_string(lines: list[str], line_separator: str) -> str: + return line_separator.join(_normalize_empty_lines(lines)) + + +def _normalize_empty_lines(lines: list[str]) -> list[str]: + while lines and lines[-1].strip() == "": + lines.pop(-1) + + lines.append("") + return lines + + +class _LineWithComments(str): + comments: list[str] + + def __new__( + cls: type["_LineWithComments"], value: Any, comments: list[str] + ) -> "_LineWithComments": + instance = super().__new__(cls, value) + instance.comments = comments + return instance + + +def _ensure_newline_before_comment(output: list[str]) -> list[str]: + new_output: list[str] = [] + + def is_comment(line: str | None) -> bool: + return line.startswith("#") if line else False + + for line, prev_line in zip(output, [None, *output], strict=False): + if is_comment(line) and prev_line != "" and not is_comment(prev_line): + new_output.append("") + new_output.append(line) + return new_output + + +def _with_star_comments(parsed: parse.ParsedContent, module: str, comments: list[str]) -> list[str]: + star_comment = parsed.categorized_comments["nested"].get(module, {}).pop("*", None) + if star_comment: + return [*comments, star_comment] + return comments diff --git a/.venv/lib/python3.12/site-packages/isort/parse.py b/.venv/lib/python3.12/site-packages/isort/parse.py new file mode 100644 index 0000000..2311c06 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/parse.py @@ -0,0 +1,601 @@ +"""Defines parsing functions used by isort for parsing import definitions""" + +import re +from collections import OrderedDict, defaultdict +from functools import partial +from itertools import chain +from typing import TYPE_CHECKING, Any, NamedTuple, TypedDict +from warnings import warn + +from . import place +from .comments import parse as parse_comments +from .exceptions import MissingSection +from .settings import DEFAULT_CONFIG, Config + +if TYPE_CHECKING: + CommentsAboveDict = TypedDict( + "CommentsAboveDict", {"straight": dict[str, Any], "from": dict[str, Any]} + ) + + CommentsDict = TypedDict( + "CommentsDict", + { + "from": dict[str, Any], + "straight": dict[str, Any], + "nested": dict[str, Any], + "above": CommentsAboveDict, + }, + ) + + +def _infer_line_separator(contents: str) -> str: + if "\r\n" in contents: + return "\r\n" + if "\r" in contents: + return "\r" + return "\n" + + +def normalize_line(raw_line: str) -> tuple[str, str]: + """Normalizes import related statements in the provided line. + + Returns (normalized_line: str, raw_line: str) + """ + line = re.sub(r"from(\.+)cimport ", r"from \g<1> cimport ", raw_line) + line = re.sub(r"from(\.+)import ", r"from \g<1> import ", line) + line = line.replace("import*", "import *") + line = re.sub(r" (\.+)import ", r" \g<1> import ", line) + line = re.sub(r" (\.+)cimport ", r" \g<1> cimport ", line) + line = line.replace("\t", " ") + return line, raw_line + + +def import_type(line: str, config: Config = DEFAULT_CONFIG) -> str | None: + """If the current line is an import line it will return its type (from or straight)""" + if config.honor_noqa and line.lower().rstrip().endswith("noqa"): + return None + if "isort:skip" in line or "isort: skip" in line or "isort: split" in line: + return None + if line.startswith(("import ", "cimport ")): + return "straight" + if line.startswith("from "): + return "from" + return None + + +def strip_syntax(import_string: str) -> str: + import_string = import_string.replace("_import", "[[i]]") + import_string = import_string.replace("_cimport", "[[ci]]") + for remove_syntax in ["\\", "(", ")", ","]: + import_string = import_string.replace(remove_syntax, " ") + import_list = import_string.split() + for key in ("from", "import", "cimport"): + if key in import_list: + import_list.remove(key) + import_string = " ".join(import_list) + import_string = import_string.replace("[[i]]", "_import") + import_string = import_string.replace("[[ci]]", "_cimport") + return import_string.replace("{ ", "{|").replace(" }", "|}") + + +def skip_line( + line: str, + in_quote: str, + index: int, + section_comments: tuple[str, ...], + needs_import: bool = True, +) -> tuple[bool, str]: + """Determine if a given line should be skipped. + + Returns back a tuple containing: + + (skip_line: bool, + in_quote: str,) + """ + should_skip = bool(in_quote) + if '"' in line or "'" in line: + char_index = 0 + while char_index < len(line): + if line[char_index] == "\\": + char_index += 1 + elif in_quote: + if line[char_index : char_index + len(in_quote)] == in_quote: + in_quote = "" + elif line[char_index] in ("'", '"'): + long_quote = line[char_index : char_index + 3] + if long_quote in ('"""', "'''"): + in_quote = long_quote + char_index += 2 + else: + in_quote = line[char_index] + elif line[char_index] == "#": + break + char_index += 1 + + if ";" in line.split("#")[0] and needs_import: + for part in (part.strip() for part in line.split(";")): + if ( + part + and not part.startswith("from ") + and not part.startswith(("import ", "cimport ")) + ): + should_skip = True + + return (bool(should_skip or in_quote), in_quote) + + +class ParsedContent(NamedTuple): + in_lines: list[str] + lines_without_imports: list[str] + import_index: int + place_imports: dict[str, list[str]] + import_placements: dict[str, str] + as_map: dict[str, dict[str, list[str]]] + imports: dict[str, dict[str, Any]] + categorized_comments: "CommentsDict" + change_count: int + original_line_count: int + line_separator: str + sections: Any + verbose_output: list[str] + trailing_commas: set[str] + + +def file_contents(contents: str, config: Config = DEFAULT_CONFIG) -> ParsedContent: + """Parses a python file taking out and categorizing imports.""" + line_separator: str = config.line_ending or _infer_line_separator(contents) + in_lines = contents.splitlines() + if contents and contents[-1] in ("\n", "\r"): + in_lines.append("") + + out_lines = [] + original_line_count = len(in_lines) + if config.old_finders: + from .deprecated.finders import FindersManager # noqa: PLC0415 + + finder = FindersManager(config=config).find + else: + finder = partial(place.module, config=config) + + line_count = len(in_lines) + + place_imports: dict[str, list[str]] = {} + import_placements: dict[str, str] = {} + as_map: dict[str, dict[str, list[str]]] = { + "straight": defaultdict(list), + "from": defaultdict(list), + } + imports: OrderedDict[str, dict[str, Any]] = OrderedDict() + verbose_output: list[str] = [] + + for section in chain(config.sections, config.forced_separate): + imports[section] = {"straight": OrderedDict(), "from": OrderedDict()} + categorized_comments: CommentsDict = { + "from": {}, + "straight": {}, + "nested": {}, + "above": {"straight": {}, "from": {}}, + } + + trailing_commas: set[str] = set() + + index = 0 + import_index = -1 + in_quote = "" + while index < line_count: + line = in_lines[index] + index += 1 + statement_index = index + (skipping_line, in_quote) = skip_line( + line, in_quote=in_quote, index=index, section_comments=config.section_comments + ) + + if ( + line in config.section_comments or line in config.section_comments_end + ) and not skipping_line: + if import_index == -1: # pragma: no branch + import_index = index - 1 + continue + + if "isort:imports-" in line and line.startswith("#"): + section = line.split("isort:imports-")[-1].split()[0].upper() + place_imports[section] = [] + import_placements[line] = section + elif "isort: imports-" in line and line.startswith("#"): + section = line.split("isort: imports-")[-1].split()[0].upper() + place_imports[section] = [] + import_placements[line] = section + + if skipping_line: + out_lines.append(line) + continue + + lstripped_line = line.lstrip() + if ( + config.float_to_top + and import_index == -1 + and line + and not in_quote + and not lstripped_line.startswith("#") + and not lstripped_line.startswith("'''") + and not lstripped_line.startswith('"""') + ): + if not lstripped_line.startswith("import") and not lstripped_line.startswith("from"): + import_index = index - 1 + while import_index and not in_lines[import_index - 1]: + import_index -= 1 + else: + commentless = line.split("#", 1)[0].strip() + if ( + ("isort:skip" in line or "isort: skip" in line) + and "(" in commentless + and ")" not in commentless + ): + import_index = index + + starting_line = line + while "isort:skip" in starting_line or "isort: skip" in starting_line: + commentless = starting_line.split("#", 1)[0] + if ( + "(" in commentless + and not commentless.rstrip().endswith(")") + and import_index < line_count + ): + while import_index < line_count and not commentless.rstrip().endswith( + ")" + ): + commentless = in_lines[import_index].split("#", 1)[0] + import_index += 1 + else: + import_index += 1 + + if import_index >= line_count: + break + + starting_line = in_lines[import_index] + + line, *end_of_line_comment = line.split("#", 1) + if ";" in line: + statements = [line.strip() for line in line.split(";")] + else: + statements = [line] + if end_of_line_comment: + statements[-1] = f"{statements[-1]}#{end_of_line_comment[0]}" + + for statement in statements: + line, raw_line = normalize_line(statement) + type_of_import = import_type(line, config) or "" + raw_lines = [raw_line] + if not type_of_import: + out_lines.append(raw_line) + continue + + if import_index == -1: + import_index = index - 1 + nested_comments = {} + import_string, comment = parse_comments(line) + comments = [comment] if comment else [] + line_parts = [part for part in strip_syntax(import_string).strip().split(" ") if part] + if type_of_import == "from" and len(line_parts) == 2 and comments: + nested_comments[line_parts[-1]] = comments[0] + + if "(" in line.split("#", 1)[0] and index < line_count: + while not line.split("#")[0].strip().endswith(")") and index < line_count: + line, new_comment = parse_comments(in_lines[index]) + index += 1 + if new_comment: + comments.append(new_comment) + stripped_line = strip_syntax(line).strip() + if ( + type_of_import == "from" + and stripped_line + and " " not in stripped_line.replace(" as ", "") + and new_comment + ): + nested_comments[stripped_line] = comments[-1] + import_string += line_separator + line + raw_lines.append(line) + else: + while line.strip().endswith("\\"): + line, new_comment = parse_comments(in_lines[index]) + line = line.lstrip() + index += 1 + if new_comment: + comments.append(new_comment) + + # Still need to check for parentheses after an escaped line + if ( + "(" in line.split("#")[0] + and ")" not in line.split("#")[0] + and index < line_count + ): + stripped_line = strip_syntax(line).strip() + if ( + type_of_import == "from" + and stripped_line + and " " not in stripped_line.replace(" as ", "") + and new_comment + ): + nested_comments[stripped_line] = comments[-1] + import_string += line_separator + line + raw_lines.append(line) + + while not line.split("#")[0].strip().endswith(")") and index < line_count: + line, new_comment = parse_comments(in_lines[index]) + index += 1 + if new_comment: + comments.append(new_comment) + stripped_line = strip_syntax(line).strip() + if ( + type_of_import == "from" + and stripped_line + and " " not in stripped_line.replace(" as ", "") + and new_comment + ): + nested_comments[stripped_line] = comments[-1] + import_string += line_separator + line + raw_lines.append(line) + + stripped_line = strip_syntax(line).strip() + if ( + type_of_import == "from" + and stripped_line + and " " not in stripped_line.replace(" as ", "") + and new_comment + ): + nested_comments[stripped_line] = comments[-1] + if import_string.strip().endswith( + (" import", " cimport") + ) or line.strip().startswith(("import ", "cimport ")): + import_string += line_separator + line + else: + import_string = import_string.rstrip().rstrip("\\") + " " + line.lstrip() + + if type_of_import == "from": + cimports: bool + import_string = ( + import_string.replace("import(", "import (") + .replace("\\", " ") + .replace("\n", " ") + ) + if "import " not in import_string: + out_lines.extend(raw_lines) + continue + + if " cimport " in import_string: + parts = import_string.split(" cimport ") + cimports = True + + else: + parts = import_string.split(" import ") + cimports = False + + from_import = parts[0].split(" ") + import_string = (" cimport " if cimports else " import ").join( + [from_import[0] + " " + "".join(from_import[1:]), *parts[1:]] + ) + + just_imports = [ + item.replace("{|", "{ ").replace("|}", " }") + for item in strip_syntax(import_string).split() + ] + + attach_comments_to: list[Any] | None = None + direct_imports = just_imports[1:] + straight_import = True + top_level_module = "" + if "as" in just_imports and (just_imports.index("as") + 1) < len(just_imports): + straight_import = False + while "as" in just_imports: + nested_module = None + as_index = just_imports.index("as") + if type_of_import == "from": + nested_module = just_imports[as_index - 1] + top_level_module = just_imports[0] + module = top_level_module + "." + nested_module + as_name = just_imports[as_index + 1] + direct_imports.remove(nested_module) + direct_imports.remove(as_name) + direct_imports.remove("as") + if nested_module == as_name and config.remove_redundant_aliases: + pass + elif as_name not in as_map["from"][module]: # pragma: no branch + as_map["from"][module].append(as_name) + + full_name = f"{nested_module} as {as_name}" + associated_comment = nested_comments.get(full_name) + if associated_comment: + categorized_comments["nested"].setdefault(top_level_module, {})[ + full_name + ] = associated_comment + if associated_comment in comments: # pragma: no branch + comments.pop(comments.index(associated_comment)) + else: + module = just_imports[as_index - 1] + as_name = just_imports[as_index + 1] + if module == as_name and config.remove_redundant_aliases: + pass + elif as_name not in as_map["straight"][module]: + as_map["straight"][module].append(as_name) + + if comments and attach_comments_to is None: + if nested_module and config.combine_as_imports: + attach_comments_to = categorized_comments["from"].setdefault( + f"{top_level_module}.__combined_as__", [] + ) + else: + if type_of_import == "from" or ( + config.remove_redundant_aliases and as_name == module.split(".")[-1] + ): + attach_comments_to = categorized_comments["straight"].setdefault( + module, [] + ) + else: + attach_comments_to = categorized_comments["straight"].setdefault( + f"{module} as {as_name}", [] + ) + del just_imports[as_index : as_index + 2] + + if type_of_import == "from": + import_from = just_imports.pop(0) + placed_module = finder(import_from) + if config.verbose and not config.only_modified: + print(f"from-type place_module for {import_from} returned {placed_module}") + + elif config.verbose: + verbose_output.append( + f"from-type place_module for {import_from} returned {placed_module}" + ) + if placed_module == "": + warn( + f"could not place module {import_from} of line {line} --" + " Do you need to define a default section?", + stacklevel=2, + ) + + if placed_module and placed_module not in imports: + raise MissingSection(import_module=import_from, section=placed_module) + + root = imports[placed_module][type_of_import] # type: ignore + for import_name in just_imports: + associated_comment = nested_comments.get(import_name) + if associated_comment: + categorized_comments["nested"].setdefault(import_from, {})[import_name] = ( + associated_comment + ) + if associated_comment in comments: # pragma: no branch + comments.pop(comments.index(associated_comment)) + if ( + config.force_single_line + and comments + and attach_comments_to is None + and len(just_imports) == 1 + ): + nested_from_comments = categorized_comments["nested"].setdefault( + import_from, {} + ) + existing_comment = nested_from_comments.get(just_imports[0], "") + nested_from_comments[just_imports[0]] = ( + f"{existing_comment}{'; ' if existing_comment else ''}{'; '.join(comments)}" + ) + comments = [] + + if comments and attach_comments_to is None: + attach_comments_to = categorized_comments["from"].setdefault(import_from, []) + + if len(out_lines) > max(import_index, 1) - 1: + last = out_lines[-1].rstrip() if out_lines else "" + while ( + last.startswith("#") + and not last.endswith('"""') + and not last.endswith("'''") + and "isort:imports-" not in last + and "isort: imports-" not in last + and not config.treat_all_comments_as_code + and last.strip() not in config.treat_comments_as_code + ): + categorized_comments["above"]["from"].setdefault(import_from, []).insert( + 0, out_lines.pop(-1) + ) + if out_lines: + last = out_lines[-1].rstrip() + else: + last = "" + if statement_index - 1 == import_index: # pragma: no cover + import_index -= len( + categorized_comments["above"]["from"].get(import_from, []) + ) + + if import_from not in root: + root[import_from] = OrderedDict( + (module, module in direct_imports) for module in just_imports + ) + else: + root[import_from].update( + (module, root[import_from].get(module, False) or module in direct_imports) + for module in just_imports + ) + + if comments and attach_comments_to is not None: + attach_comments_to.extend(comments) + + if ( + just_imports + and just_imports[-1] + and "," in import_string.split(just_imports[-1])[-1] + ): + trailing_commas.add(import_from) + else: + if comments and attach_comments_to is not None: + attach_comments_to.extend(comments) + comments = [] + + for module in just_imports: + if comments: + categorized_comments["straight"][module] = comments + comments = [] + + if len(out_lines) > max(import_index, +1, 1) - 1: + last = out_lines[-1].rstrip() if out_lines else "" + while ( + last.startswith("#") + and not last.endswith('"""') + and not last.endswith("'''") + and "isort:imports-" not in last + and "isort: imports-" not in last + and not config.treat_all_comments_as_code + and last.strip() not in config.treat_comments_as_code + ): + categorized_comments["above"]["straight"].setdefault(module, []).insert( + 0, out_lines.pop(-1) + ) + if out_lines: + last = out_lines[-1].rstrip() + else: + last = "" + if index - 1 == import_index: + import_index -= len( + categorized_comments["above"]["straight"].get(module, []) + ) + placed_module = finder(module) + if config.verbose and not config.only_modified: + print(f"else-type place_module for {module} returned {placed_module}") + + elif config.verbose: + verbose_output.append( + f"else-type place_module for {module} returned {placed_module}" + ) + if placed_module == "": + warn( + f"could not place module {module} of line {line} --" + " Do you need to define a default section?", + stacklevel=2, + ) + imports.setdefault("", {"straight": OrderedDict(), "from": OrderedDict()}) + + if placed_module and placed_module not in imports: + raise MissingSection(import_module=module, section=placed_module) + + straight_import |= imports[placed_module][type_of_import].get( # type: ignore + module, False + ) + imports[placed_module][type_of_import][module] = straight_import # type: ignore + + change_count = len(out_lines) - original_line_count + + return ParsedContent( + in_lines=in_lines, + lines_without_imports=out_lines, + import_index=import_index, + place_imports=place_imports, + import_placements=import_placements, + as_map=as_map, + imports=imports, + categorized_comments=categorized_comments, + change_count=change_count, + original_line_count=original_line_count, + line_separator=line_separator, + sections=config.sections, + verbose_output=verbose_output, + trailing_commas=trailing_commas, + ) diff --git a/.venv/lib/python3.12/site-packages/isort/place.py b/.venv/lib/python3.12/site-packages/isort/place.py new file mode 100644 index 0000000..2f863b3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/place.py @@ -0,0 +1,146 @@ +"""Contains all logic related to placing an import within a certain section.""" + +import importlib +from collections.abc import Iterable +from fnmatch import fnmatch +from functools import lru_cache +from pathlib import Path + +from isort import sections +from isort.settings import DEFAULT_CONFIG, Config +from isort.utils import exists_case_sensitive + +LOCAL = "LOCALFOLDER" + + +def module(name: str, config: Config = DEFAULT_CONFIG) -> str: + """Returns the section placement for the given module name.""" + return module_with_reason(name, config)[0] + + +@lru_cache(maxsize=1000) +def module_with_reason(name: str, config: Config = DEFAULT_CONFIG) -> tuple[str, str]: + """Returns the section placement for the given module name alongside the reasoning.""" + return ( + _forced_separate(name, config) + or _local(name, config) + or _known_pattern(name, config) + or _src_path(name, config) + or (config.default_section, "Default option in Config or universal default.") + ) + + +def _forced_separate(name: str, config: Config) -> tuple[str, str] | None: + for forced_separate in config.forced_separate: + # Ensure all forced_separate patterns will match to end of string + path_glob = forced_separate + if not forced_separate.endswith("*"): + path_glob = f"{forced_separate}*" + + if fnmatch(name, path_glob) or fnmatch(name, "." + path_glob): + return (forced_separate, f"Matched forced_separate ({forced_separate}) config value.") + + return None + + +def _local(name: str, config: Config) -> tuple[str, str] | None: + if name.startswith("."): + return (LOCAL, "Module name started with a dot.") + + return None + + +def _known_pattern(name: str, config: Config) -> tuple[str, str] | None: + parts = name.split(".") + module_names_to_check = (".".join(parts[:first_k]) for first_k in range(len(parts), 0, -1)) + for module_name_to_check in module_names_to_check: + for pattern, placement in config.known_patterns: + if placement in config.sections and pattern.match(module_name_to_check): + return (placement, f"Matched configured known pattern {pattern}") + + return None + + +def _src_path( + name: str, + config: Config, + src_paths: Iterable[Path] | None = None, + prefix: tuple[str, ...] = (), +) -> tuple[str, str] | None: + if src_paths is None: + src_paths = config.src_paths + + root_module_name, *nested_module = name.split(".", 1) + new_prefix = (*prefix, root_module_name) + namespace = ".".join(new_prefix) + + for src_path in src_paths: + module_path = (src_path / root_module_name).resolve() + if not prefix and not module_path.is_dir() and src_path.name == root_module_name: + module_path = src_path.resolve() + if nested_module and ( + namespace in config.namespace_packages + or ( + config.auto_identify_namespace_packages + and _is_namespace_package(module_path, config.supported_extensions) + ) + ): + return _src_path(nested_module[0], config, (module_path,), new_prefix) + if ( + _is_module(module_path) + or _is_package(module_path) + or _src_path_is_module(src_path, root_module_name) + ): + return (sections.FIRSTPARTY, f"Found in one of the configured src_paths: {src_path}.") + + return None + + +def _is_module(path: Path) -> bool: + return ( + exists_case_sensitive(str(path.with_suffix(".py"))) + or any( + exists_case_sensitive(str(path.with_suffix(ext_suffix))) + for ext_suffix in importlib.machinery.EXTENSION_SUFFIXES + ) + or exists_case_sensitive(str(path / "__init__.py")) + ) + + +def _is_package(path: Path) -> bool: + return exists_case_sensitive(str(path)) and path.is_dir() + + +def _is_namespace_package(path: Path, src_extensions: frozenset[str]) -> bool: + if not _is_package(path): + return False + + init_file = path / "__init__.py" + if not init_file.exists(): + filenames = [ + filepath + for filepath in path.iterdir() + if filepath.suffix.lstrip(".") in src_extensions + or filepath.name.lower() in ("setup.cfg", "pyproject.toml") + ] + if filenames: + return False + else: + with init_file.open("rb") as open_init_file: + file_start = open_init_file.read(4096) + if ( + b"__import__('pkg_resources').declare_namespace(__name__)" not in file_start + and b'__import__("pkg_resources").declare_namespace(__name__)' not in file_start + and b"__path__ = __import__('pkgutil').extend_path(__path__, __name__)" + not in file_start + and b'__path__ = __import__("pkgutil").extend_path(__path__, __name__)' + not in file_start + ): + return False + return True + + +def _src_path_is_module(src_path: Path, module_name: str) -> bool: + return ( + module_name == src_path.name and src_path.is_dir() and exists_case_sensitive(str(src_path)) + ) diff --git a/.venv/lib/python3.12/site-packages/isort/profiles.py b/.venv/lib/python3.12/site-packages/isort/profiles.py new file mode 100644 index 0000000..f2f0243 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/profiles.py @@ -0,0 +1,96 @@ +"""Common profiles are defined here to be easily used within a project using --profile {name}""" + +from typing import Any + +black = { + "multi_line_output": 3, + "include_trailing_comma": True, + "split_on_trailing_comma": True, + "force_grid_wrap": 0, + "use_parentheses": True, + "ensure_newline_before_comments": True, + "line_length": 88, +} +django = { + "combine_as_imports": True, + "include_trailing_comma": True, + "multi_line_output": 5, + "line_length": 79, +} +pycharm = { + "multi_line_output": 3, + "force_grid_wrap": 2, + "lines_after_imports": 2, +} +google = { + "force_single_line": True, + "force_sort_within_sections": True, + "lexicographical": True, + "line_length": 1000, + "single_line_exclusions": ( + "collections.abc", + "six.moves", + "typing", + "typing_extensions", + ), + "order_by_type": False, + "group_by_package": True, +} +open_stack = { + "force_single_line": True, + "force_sort_within_sections": True, + "lexicographical": True, +} +plone = black.copy() +plone.update( + { + "force_alphabetical_sort": True, + "force_single_line": True, + "lines_after_imports": 2, + } +) +attrs = { + "atomic": True, + "force_grid_wrap": 0, + "include_trailing_comma": True, + "lines_after_imports": 2, + "lines_between_types": 1, + "multi_line_output": 3, + "use_parentheses": True, +} +hug = { + "multi_line_output": 3, + "include_trailing_comma": True, + "force_grid_wrap": 0, + "use_parentheses": True, + "line_length": 100, +} +wemake = { + "multi_line_output": 3, + "include_trailing_comma": True, + "use_parentheses": True, + "line_length": 80, +} +appnexus = { + **black, + "force_sort_within_sections": True, + "order_by_type": False, + "case_sensitive": False, + "reverse_relative": True, + "sort_relative_in_force_sorted_sections": True, + "sections": ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "APPLICATION", "LOCALFOLDER"], + "no_lines_before": "LOCALFOLDER", +} + +profiles: dict[str, dict[str, Any]] = { + "black": black, + "django": django, + "pycharm": pycharm, + "google": google, + "open_stack": open_stack, + "plone": plone, + "attrs": attrs, + "hug": hug, + "wemake": wemake, + "appnexus": appnexus, +} diff --git a/.venv/lib/python3.12/site-packages/isort/py.typed b/.venv/lib/python3.12/site-packages/isort/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/isort/sections.py b/.venv/lib/python3.12/site-packages/isort/sections.py new file mode 100644 index 0000000..84671cb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/sections.py @@ -0,0 +1,8 @@ +"""Defines all sections isort uses by default""" + +FUTURE: str = "FUTURE" +STDLIB: str = "STDLIB" +THIRDPARTY: str = "THIRDPARTY" +FIRSTPARTY: str = "FIRSTPARTY" +LOCALFOLDER: str = "LOCALFOLDER" +DEFAULT: tuple[str, ...] = (FUTURE, STDLIB, THIRDPARTY, FIRSTPARTY, LOCALFOLDER) diff --git a/.venv/lib/python3.12/site-packages/isort/settings.py b/.venv/lib/python3.12/site-packages/isort/settings.py new file mode 100644 index 0000000..f40d48a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/settings.py @@ -0,0 +1,933 @@ +"""isort/settings.py. + +Defines how the default settings for isort should be loaded +""" + +import configparser +import fnmatch +import os +import posixpath +import re +import stat +import subprocess # nosec # Needed for gitignore support. +import sys +from collections.abc import Callable, Iterable +from dataclasses import dataclass, field +from pathlib import Path +from re import Pattern +from typing import TYPE_CHECKING, Any +from warnings import warn + +from . import sorting, stdlibs +from .exceptions import ( + FormattingPluginDoesNotExist, + InvalidSettingsPath, + ProfileDoesNotExist, + SortingFunctionDoesNotExist, + UnsupportedSettings, +) +from .profiles import profiles as profiles +from .sections import DEFAULT as SECTION_DEFAULTS +from .sections import FIRSTPARTY, FUTURE, LOCALFOLDER, STDLIB, THIRDPARTY +from .utils import Trie +from .wrap_modes import WrapModes +from .wrap_modes import from_string as wrap_mode_from_string + +if TYPE_CHECKING: + from importlib.metadata import EntryPoints + + tomllib: Any +else: + if sys.version_info >= (3, 11): + import tomllib + else: + from ._vendored import tomli as tomllib + +_SHEBANG_RE = re.compile(rb"^#!.*\bpython[23w]?\b") +CYTHON_EXTENSIONS = frozenset({"pyx", "pxd"}) +SUPPORTED_EXTENSIONS = frozenset({"py", "pyi", *CYTHON_EXTENSIONS}) +BLOCKED_EXTENSIONS = frozenset({"pex"}) +FILE_SKIP_COMMENTS: tuple[str, ...] = ( + "isort:" + "skip_file", + "isort: " + "skip_file", +) # Concatenated to avoid this file being skipped +MAX_CONFIG_SEARCH_DEPTH: int = 25 # The number of parent directories to for a config file within +STOP_CONFIG_SEARCH_ON_DIRS: tuple[str, ...] = (".git", ".hg") +VALID_PY_TARGETS: tuple[str, ...] = tuple( + target.replace("py", "") for target in dir(stdlibs) if not target.startswith("_") +) +CONFIG_SOURCES: tuple[str, ...] = ( + ".isort.cfg", + "pyproject.toml", + "setup.cfg", + "tox.ini", + ".editorconfig", +) +DEFAULT_SKIP: frozenset[str] = frozenset( + { + ".venv", + "venv", + ".tox", + ".eggs", + ".git", + ".hg", + ".mypy_cache", + ".nox", + ".svn", + ".bzr", + "_build", + "buck-out", + "build", + "dist", + ".pants.d", + ".direnv", + "node_modules", + "__pypackages__", + ".pytype", + } +) + +CONFIG_SECTIONS: dict[str, tuple[str, ...]] = { + ".isort.cfg": ("settings", "isort"), + "pyproject.toml": ("tool.isort",), + "setup.cfg": ("isort", "tool:isort"), + "tox.ini": ("isort", "tool:isort"), + ".editorconfig": ("*", "*.py", "**.py", "*.{py}"), +} +FALLBACK_CONFIG_SECTIONS: tuple[str, ...] = ("isort", "tool:isort", "tool.isort") + +IMPORT_HEADING_PREFIX = "import_heading_" +IMPORT_FOOTER_PREFIX = "import_footer_" +KNOWN_PREFIX = "known_" +KNOWN_SECTION_MAPPING: dict[str, str] = { + STDLIB: "STANDARD_LIBRARY", + FUTURE: "FUTURE_LIBRARY", + FIRSTPARTY: "FIRST_PARTY", + THIRDPARTY: "THIRD_PARTY", + LOCALFOLDER: "LOCAL_FOLDER", +} + +RUNTIME_SOURCE = "runtime" + +DEPRECATED_SETTINGS = ("not_skip", "keep_direct_and_as_imports") + +_STR_BOOLEAN_MAPPING = { + "y": True, + "yes": True, + "t": True, + "on": True, + "1": True, + "true": True, + "n": False, + "no": False, + "f": False, + "off": False, + "0": False, + "false": False, +} + + +@dataclass(frozen=True) +class _Config: + """Defines the data schema and defaults used for isort configuration. + + NOTE: known lists, such as known_standard_library, are intentionally not complete as they are + dynamically determined later on. + """ + + py_version: str = "3" + force_to_top: frozenset[str] = frozenset() + skip: frozenset[str] = DEFAULT_SKIP + extend_skip: frozenset[str] = frozenset() + skip_glob: frozenset[str] = frozenset() + extend_skip_glob: frozenset[str] = frozenset() + skip_gitignore: bool = False + line_length: int = 79 + wrap_length: int = 0 + line_ending: str = "" + sections: tuple[str, ...] = SECTION_DEFAULTS + no_sections: bool = False + known_future_library: frozenset[str] = frozenset(("__future__",)) + known_third_party: frozenset[str] = frozenset() + known_first_party: frozenset[str] = frozenset() + known_local_folder: frozenset[str] = frozenset() + known_standard_library: frozenset[str] = frozenset() + extra_standard_library: frozenset[str] = frozenset() + known_other: dict[str, frozenset[str]] = field(default_factory=dict) + multi_line_output: WrapModes = WrapModes.GRID # type: ignore + forced_separate: tuple[str, ...] = () + indent: str = " " * 4 + comment_prefix: str = " #" + length_sort: bool = False + length_sort_straight: bool = False + length_sort_sections: frozenset[str] = frozenset() + add_imports: frozenset[str] = frozenset() + remove_imports: frozenset[str] = frozenset() + append_only: bool = False + reverse_relative: bool = False + force_single_line: bool = False + single_line_exclusions: tuple[str, ...] = () + default_section: str = THIRDPARTY + import_headings: dict[str, str] = field(default_factory=dict) + import_footers: dict[str, str] = field(default_factory=dict) + balanced_wrapping: bool = False + use_parentheses: bool = False + order_by_type: bool = True + atomic: bool = False + lines_before_imports: int = -1 + lines_after_imports: int = -1 + lines_between_sections: int = 1 + lines_between_types: int = 0 + combine_as_imports: bool = False + combine_star: bool = False + include_trailing_comma: bool = False + from_first: bool = False + verbose: bool = False + quiet: bool = False + force_adds: bool = False + force_alphabetical_sort_within_sections: bool = False + force_alphabetical_sort: bool = False + force_grid_wrap: int = 0 + force_sort_within_sections: bool = False + lexicographical: bool = False + group_by_package: bool = False + ignore_whitespace: bool = False + no_lines_before: frozenset[str] = frozenset() + no_inline_sort: bool = False + ignore_comments: bool = False + case_sensitive: bool = False + sources: tuple[dict[str, Any], ...] = () + virtual_env: str = "" + conda_env: str = "" + ensure_newline_before_comments: bool = False + directory: str = "" + profile: str = "" + honor_noqa: bool = False + src_paths: tuple[Path, ...] = () + old_finders: bool = False + remove_redundant_aliases: bool = False + float_to_top: bool = False + filter_files: bool = False + formatter: str = "" + formatting_function: Callable[[str, str, object], str] | None = None + color_output: bool = False + treat_comments_as_code: frozenset[str] = frozenset() + treat_all_comments_as_code: bool = False + supported_extensions: frozenset[str] = SUPPORTED_EXTENSIONS + blocked_extensions: frozenset[str] = BLOCKED_EXTENSIONS + constants: frozenset[str] = frozenset() + classes: frozenset[str] = frozenset() + variables: frozenset[str] = frozenset() + dedup_headings: bool = False + only_sections: bool = False + only_modified: bool = False + combine_straight_imports: bool = False + auto_identify_namespace_packages: bool = True + namespace_packages: frozenset[str] = frozenset() + follow_links: bool = True + indented_import_headings: bool = True + honor_case_in_force_sorted_sections: bool = False + sort_relative_in_force_sorted_sections: bool = False + overwrite_in_place: bool = False + reverse_sort: bool = False + star_first: bool = False + import_dependencies = dict[str, str] + git_ls_files: dict[Path, set[str]] = field(default_factory=dict) + format_error: str = "{error}: {message}" + format_success: str = "{success}: {message}" + sort_order: str = "natural" + sort_reexports: bool = False + split_on_trailing_comma: bool = False + + def __post_init__(self) -> None: + py_version = self.py_version + if py_version == "auto": # pragma: no cover + py_version = f"{sys.version_info.major}{sys.version_info.minor}" + + if py_version not in VALID_PY_TARGETS: + raise ValueError( + f"The python version {py_version} is not supported. " + "You can set a python version with the -py or --python-version flag. " + f"The following versions are supported: {VALID_PY_TARGETS}" + ) + + if py_version != "all": + object.__setattr__(self, "py_version", f"py{py_version}") + + if not self.known_standard_library: + object.__setattr__( + self, "known_standard_library", frozenset(getattr(stdlibs, self.py_version).stdlib) + ) + + if self.multi_line_output == WrapModes.VERTICAL_GRID_GROUPED_NO_COMMA: # type: ignore + vertical_grid_grouped = WrapModes.VERTICAL_GRID_GROUPED # type: ignore + object.__setattr__(self, "multi_line_output", vertical_grid_grouped) + if self.force_alphabetical_sort: + object.__setattr__(self, "force_alphabetical_sort_within_sections", True) + object.__setattr__(self, "no_sections", True) + object.__setattr__(self, "lines_between_types", 1) + object.__setattr__(self, "from_first", True) + if self.wrap_length > self.line_length: + raise ValueError( + "wrap_length must be set lower than or equal to line_length: " + f"{self.wrap_length} > {self.line_length}." + ) + + def __hash__(self) -> int: + return id(self) + + +_DEFAULT_SETTINGS = {**vars(_Config()), "source": "defaults"} + + +class Config(_Config): + def __init__( + self, + settings_file: str = "", + settings_path: str = "", + config: _Config | None = None, + **config_overrides: Any, + ): + self._known_patterns: list[tuple[Pattern[str], str]] | None = None + self._section_comments: tuple[str, ...] | None = None + self._section_comments_end: tuple[str, ...] | None = None + self._skips: frozenset[str] | None = None + self._skip_globs: frozenset[str] | None = None + self._sorting_function: Callable[..., list[str]] | None = None + + if config: + config_vars = vars(config).copy() + config_vars.update(config_overrides) + config_vars["py_version"] = config_vars["py_version"].replace("py", "") + config_vars.pop("_known_patterns") + config_vars.pop("_section_comments") + config_vars.pop("_section_comments_end") + config_vars.pop("_skips") + config_vars.pop("_skip_globs") + config_vars.pop("_sorting_function") + super().__init__(**config_vars) + return + + # We can't use self.quiet to conditionally show warnings before super.__init__() is called + # at the end of this method. _Config is also frozen so setting self.quiet isn't possible. + # Therefore we extract quiet early here in a variable and use that in warning conditions. + quiet = config_overrides.get("quiet", False) + + sources: list[dict[str, Any]] = [_DEFAULT_SETTINGS] + + config_settings: dict[str, Any] + project_root: str + if settings_file: + config_settings = _get_config_data( + settings_file, + CONFIG_SECTIONS.get(os.path.basename(settings_file), FALLBACK_CONFIG_SECTIONS), + ) + project_root = os.path.dirname(settings_file) + if not config_settings and not quiet: + warn( + f"A custom settings file was specified: {settings_file} but no configuration " + "was found inside. This can happen when [settings] is used as the config " + "header instead of [isort]. " + "See: https://pycqa.github.io/isort/docs/configuration/config_files" + "#custom-config-files for more information.", + stacklevel=2, + ) + elif settings_path: + if not os.path.exists(settings_path): + raise InvalidSettingsPath(settings_path) + + settings_path = os.path.abspath(settings_path) + project_root, config_settings = _find_config(settings_path) + else: + config_settings = {} + project_root = os.getcwd() + + profile_name = config_overrides.get("profile", config_settings.get("profile", "")) + profile: dict[str, Any] = {} + if profile_name: + if profile_name not in profiles: + for plugin in entry_points(group="isort.profiles"): + profiles.setdefault(plugin.name, plugin.load()) + + if profile_name not in profiles: + raise ProfileDoesNotExist(profile_name) + + profile = profiles[profile_name].copy() + profile["source"] = f"{profile_name} profile" + sources.append(profile) + + if config_settings: + sources.append(config_settings) + if config_overrides: + config_overrides["source"] = RUNTIME_SOURCE + sources.append(config_overrides) + + combined_config = {**profile, **config_settings, **config_overrides} + if "indent" in combined_config: + indent = str(combined_config["indent"]) + if indent.isdigit(): + indent = " " * int(indent) + else: + indent = indent.strip("'").strip('"') + if indent.lower() == "tab": + indent = "\t" + combined_config["indent"] = indent + + known_other = {} + import_headings = {} + import_footers = {} + for key, value in tuple(combined_config.items()): + # Collect all known sections beyond those that have direct entries + if key.startswith(KNOWN_PREFIX) and key not in ( + "known_standard_library", + "known_future_library", + "known_third_party", + "known_first_party", + "known_local_folder", + ): + import_heading = key[len(KNOWN_PREFIX) :].lower() + maps_to_section = import_heading.upper() + combined_config.pop(key) + if maps_to_section in KNOWN_SECTION_MAPPING: + section_name = f"known_{KNOWN_SECTION_MAPPING[maps_to_section].lower()}" + if section_name in combined_config and not quiet: + warn( + f"Can't set both {key} and {section_name} in the same config file.\n" + f"Default to {section_name} if unsure." + "\n\n" + "See: https://pycqa.github.io/isort/" + "#custom-sections-and-ordering.", + stacklevel=2, + ) + else: + combined_config[section_name] = frozenset(value) + else: + known_other[import_heading] = frozenset(value) + if maps_to_section not in combined_config.get("sections", ()) and not quiet: + warn( + f"`{key}` setting is defined, but {maps_to_section} is not" + " included in `sections` config option:" + f" {combined_config.get('sections', SECTION_DEFAULTS)}.\n\n" + "See: https://pycqa.github.io/isort/" + "#custom-sections-and-ordering.", + stacklevel=2, + ) + if key.startswith(IMPORT_HEADING_PREFIX): + import_headings[key[len(IMPORT_HEADING_PREFIX) :].lower()] = str(value) + if key.startswith(IMPORT_FOOTER_PREFIX): + import_footers[key[len(IMPORT_FOOTER_PREFIX) :].lower()] = str(value) + + # Coerce all provided config values into their correct type + default_value = _DEFAULT_SETTINGS.get(key, None) + if default_value is None: + continue + + combined_config[key] = type(default_value)(value) + + for section in combined_config.get("sections", ()): + if section in SECTION_DEFAULTS: + continue + + if section.lower() not in known_other: + config_keys = ", ".join(known_other.keys()) + warn( + f"`sections` setting includes {section}, but no known_{section.lower()} " + "is defined. " + f"The following known_SECTION config options are defined: {config_keys}.", + stacklevel=2, + ) + + if "directory" not in combined_config: + combined_config["directory"] = ( + os.path.dirname(config_settings["source"]) + if config_settings.get("source", None) + else os.getcwd() + ) + + path_root = Path(combined_config.get("directory", project_root)).resolve() + path_root = path_root if path_root.is_dir() else path_root.parent + if "src_paths" not in combined_config: + combined_config["src_paths"] = (path_root / "src", path_root) + else: + src_paths: list[Path] = [] + for src_path in combined_config.get("src_paths", ()): + full_paths = ( + path_root.glob(src_path) if "*" in str(src_path) else [path_root / src_path] + ) + for path in full_paths: + if path not in src_paths: + src_paths.append(path) + + combined_config["src_paths"] = tuple(src_paths) + + if "formatter" in combined_config: + for plugin in entry_points(group="isort.formatters"): + if plugin.name == combined_config["formatter"]: + combined_config["formatting_function"] = plugin.load() + break + else: + raise FormattingPluginDoesNotExist(combined_config["formatter"]) + + # Remove any config values that are used for creating config object but + # aren't defined in dataclass + combined_config.pop("source", None) + combined_config.pop("sources", None) + combined_config.pop("runtime_src_paths", None) + + deprecated_options_used = [ + option for option in combined_config if option in DEPRECATED_SETTINGS + ] + if deprecated_options_used: + for deprecated_option in deprecated_options_used: + combined_config.pop(deprecated_option) + if not quiet: + warn( + "W0503: Deprecated config options were used: " + f"{', '.join(deprecated_options_used)}." + "Please see the 5.0.0 upgrade guide: " + "https://pycqa.github.io/isort/docs/upgrade_guides/5.0.0.html", + stacklevel=2, + ) + + if known_other: + combined_config["known_other"] = known_other + if import_headings: + for import_heading_key in import_headings: + combined_config.pop(f"{IMPORT_HEADING_PREFIX}{import_heading_key}") + combined_config["import_headings"] = import_headings + if import_footers: + for import_footer_key in import_footers: + combined_config.pop(f"{IMPORT_FOOTER_PREFIX}{import_footer_key}") + combined_config["import_footers"] = import_footers + + unsupported_config_errors = {} + for option in set(combined_config.keys()).difference( + getattr(_Config, "__dataclass_fields__", {}).keys() + ): + for source in reversed(sources): + if option in source: + unsupported_config_errors[option] = { + "value": source[option], + "source": source["source"], + } + if unsupported_config_errors: + raise UnsupportedSettings(unsupported_config_errors) + + super().__init__(sources=tuple(sources), **combined_config) + + def is_supported_filetype(self, file_name: str) -> bool: + _root, ext = os.path.splitext(file_name) + ext = ext.lstrip(".") + if ext in self.supported_extensions: + return True + if ext in self.blocked_extensions: + return False + + # Skip editor backup files. + if file_name.endswith("~"): + return False + + try: + if stat.S_ISFIFO(os.stat(file_name).st_mode): + return False + except OSError: + pass + + try: + with open(file_name, "rb") as fp: + line = fp.readline(100) + except OSError: + return False + return bool(_SHEBANG_RE.match(line)) + + def _check_folder_git_ls_files(self, folder: str) -> Path | None: + env = {**os.environ, "LANG": "C.UTF-8"} + try: + topfolder_result = subprocess.check_output( # nosec # skipcq: PYL-W1510 + ["git", "-C", folder, "rev-parse", "--show-toplevel"], encoding="utf-8", env=env + ) + except subprocess.CalledProcessError: + return None + + git_folder = Path(topfolder_result.rstrip()).resolve() + + # files committed to git + tracked_files = ( + subprocess.check_output( # nosec # skipcq: PYL-W1510 + ["git", "-C", str(git_folder), "ls-files", "-z"], + encoding="utf-8", + env=env, + ) + .rstrip("\0") + .split("\0") + ) + # files that haven't been committed yet, but aren't ignored + tracked_files_others = ( + subprocess.check_output( # nosec # skipcq: PYL-W1510 + ["git", "-C", str(git_folder), "ls-files", "-z", "--others", "--exclude-standard"], + encoding="utf-8", + env=env, + ) + .rstrip("\0") + .split("\0") + ) + + self.git_ls_files[git_folder] = { + str(git_folder / Path(f)) for f in tracked_files + tracked_files_others + } + return git_folder + + def is_skipped(self, file_path: Path) -> bool: + """Returns True if the file and/or folder should be skipped based on current settings.""" + if self.directory and Path(self.directory) in file_path.resolve().parents: + file_name = os.path.relpath(file_path.resolve(), self.directory) + else: + file_name = str(file_path) + + os_path = str(file_path) + + normalized_path = os_path.replace("\\", "/") + if normalized_path[1:2] == ":": + normalized_path = normalized_path[2:] + + for skip_path in self.skips: + if posixpath.abspath(normalized_path) == posixpath.abspath( + skip_path.replace("\\", "/") + ): + return True + + position = os.path.split(file_name) + while position[1]: + if position[1] in self.skips: + return True + position = os.path.split(position[0]) + + for sglob in self.skip_globs: + if fnmatch.fnmatch(file_name, sglob) or fnmatch.fnmatch("/" + file_name, sglob): + return True + + if not (os.path.isfile(os_path) or os.path.isdir(os_path) or os.path.islink(os_path)): + return True + + if self.skip_gitignore: + if file_path.name == ".git": # pragma: no cover + return True + + git_folder = None + + file_paths = [file_path, file_path.resolve()] + for folder in self.git_ls_files: + if any(folder in path.parents for path in file_paths): + git_folder = folder + break + else: + git_folder = self._check_folder_git_ls_files(str(file_path.parent)) + + # git_ls_files are good files you should parse. If you're not in the allow list, skip. + + if ( + git_folder + and not file_path.is_dir() + and str(file_path.resolve()) not in self.git_ls_files[git_folder] + ): + return True + + return False + + @property + def known_patterns(self) -> list[tuple[Pattern[str], str]]: + if self._known_patterns is not None: + return self._known_patterns + + self._known_patterns = [] + pattern_sections = [STDLIB] + [section for section in self.sections if section != STDLIB] + for placement in reversed(pattern_sections): + known_placement = KNOWN_SECTION_MAPPING.get(placement, placement).lower() + config_key = f"{KNOWN_PREFIX}{known_placement}" + known_modules = getattr(self, config_key, self.known_other.get(known_placement, ())) + extra_modules = getattr(self, f"extra_{known_placement}", ()) + all_modules = set(extra_modules).union(known_modules) + known_patterns = [ + pattern + for known_pattern in all_modules + for pattern in self._parse_known_pattern(known_pattern) + ] + for known_pattern in known_patterns: + regexp = "^" + known_pattern.replace("*", ".*").replace("?", ".?") + "$" + self._known_patterns.append((re.compile(regexp), placement)) + + return self._known_patterns + + @property + def section_comments(self) -> tuple[str, ...]: + if self._section_comments is not None: + return self._section_comments + + self._section_comments = tuple(f"# {heading}" for heading in self.import_headings.values()) + return self._section_comments + + @property + def section_comments_end(self) -> tuple[str, ...]: + if self._section_comments_end is not None: + return self._section_comments_end + + self._section_comments_end = tuple(f"# {footer}" for footer in self.import_footers.values()) + return self._section_comments_end + + @property + def skips(self) -> frozenset[str]: + if self._skips is not None: + return self._skips + + self._skips = self.skip.union(self.extend_skip) + return self._skips + + @property + def skip_globs(self) -> frozenset[str]: + if self._skip_globs is not None: + return self._skip_globs + + self._skip_globs = self.skip_glob.union(self.extend_skip_glob) + return self._skip_globs + + @property + def sorting_function(self) -> Callable[..., list[str]]: + if self._sorting_function is not None: + return self._sorting_function + + if self.sort_order == "natural": + self._sorting_function = sorting.naturally + elif self.sort_order == "native": + self._sorting_function = sorted + else: + available_sort_orders = ["natural", "native"] + for sort_plugin in entry_points(group="isort.sort_function"): + available_sort_orders.append(sort_plugin.name) + if sort_plugin.name == self.sort_order: + self._sorting_function = sort_plugin.load() + break + else: + raise SortingFunctionDoesNotExist(self.sort_order, available_sort_orders) + + return self._sorting_function + + def _parse_known_pattern(self, pattern: str) -> list[str]: + """Expand pattern if identified as a directory and return found sub packages""" + if pattern.endswith(os.path.sep): + patterns = [ + filename + for filename in os.listdir(os.path.join(self.directory, pattern)) + if os.path.isdir(os.path.join(self.directory, pattern, filename)) + ] + else: + patterns = [pattern] + + return patterns + + +def _get_str_to_type_converter(setting_name: str) -> Callable[[str], Any] | type[Any]: + type_converter: Callable[[str], Any] | type[Any] = type(_DEFAULT_SETTINGS.get(setting_name, "")) + if type_converter == WrapModes: + type_converter = wrap_mode_from_string + return type_converter + + +def _as_list(value: str) -> list[str]: + if isinstance(value, list): + return [item.strip() for item in value] + filtered = [item.strip() for item in value.replace("\n", ",").split(",") if item.strip()] + return filtered + + +def _abspaths(cwd: str, values: Iterable[str]) -> set[str]: + paths = { + ( + os.path.join(cwd, value) + if not value.startswith(os.path.sep) and value.endswith(os.path.sep) + else value + ) + for value in values + } + return paths + + +def _find_config(path: str) -> tuple[str, dict[str, Any]]: + current_directory = path + tries = 0 + while current_directory and tries < MAX_CONFIG_SEARCH_DEPTH: + for config_file_name in CONFIG_SOURCES: + potential_config_file = os.path.join(current_directory, config_file_name) + if os.path.isfile(potential_config_file): + config_data: dict[str, Any] + try: + config_data = _get_config_data( + potential_config_file, CONFIG_SECTIONS[config_file_name] + ) + except Exception: + warn( + f"Failed to pull configuration information from {potential_config_file}", + stacklevel=2, + ) + config_data = {} + if config_data: + return (current_directory, config_data) + + for stop_dir in STOP_CONFIG_SEARCH_ON_DIRS: + if os.path.isdir(os.path.join(current_directory, stop_dir)): + return (current_directory, {}) + + new_directory = os.path.split(current_directory)[0] + if new_directory == current_directory: + break + + current_directory = new_directory + tries += 1 + + return (path, {}) + + +def find_all_configs(path: str) -> Trie: + """ + Looks for config files in the path provided and in all of its sub-directories. + Parses and stores any config file encountered in a trie and returns the root of + the trie + """ + trie_root = Trie("default", {}) + + for dirpath, _, _ in os.walk(path): + for config_file_name in CONFIG_SOURCES: + potential_config_file = os.path.join(dirpath, config_file_name) + if os.path.isfile(potential_config_file): + config_data: dict[str, Any] + try: + config_data = _get_config_data( + potential_config_file, CONFIG_SECTIONS[config_file_name] + ) + except Exception: + warn( + f"Failed to pull configuration information from {potential_config_file}", + stacklevel=2, + ) + config_data = {} + + if config_data: + trie_root.insert(potential_config_file, config_data) + break + + return trie_root + + +def _get_config_data(file_path: str, sections: tuple[str, ...]) -> dict[str, Any]: + settings: dict[str, Any] = {} + + if file_path.endswith(".toml"): + with open(file_path, "rb") as bin_config_file: + config = tomllib.load(bin_config_file) + for section in sections: + config_section = config + for key in section.split("."): + config_section = config_section.get(key, {}) + settings.update(config_section) + else: + with open(file_path, encoding="utf-8") as config_file: + if file_path.endswith(".editorconfig"): + line = "\n" + last_position = config_file.tell() + while line: + line = config_file.readline() + if "[" in line: + config_file.seek(last_position) + break + last_position = config_file.tell() + + config = configparser.ConfigParser(strict=False) + config.read_file(config_file) + for section in sections: + if section.startswith("*.{") and section.endswith("}"): + extension = section[len("*.{") : -1] + for config_key in config: + if ( + config_key.startswith("*.{") + and config_key.endswith("}") + and extension + in (text.strip() for text in config_key[len("*.{") : -1].split(",")) + ): + settings.update(config.items(config_key)) + + elif config.has_section(section): + settings.update(config.items(section)) + + if settings: + settings["source"] = file_path + + if file_path.endswith(".editorconfig"): + indent_style = settings.pop("indent_style", "").strip() + indent_size = settings.pop("indent_size", "").strip() + if indent_size == "tab": + indent_size = settings.pop("tab_width", "").strip() + + if indent_style == "space": + settings["indent"] = " " * ((indent_size and int(indent_size)) or 4) + + elif indent_style == "tab": + settings["indent"] = "\t" * ((indent_size and int(indent_size)) or 1) + + max_line_length = settings.pop("max_line_length", "").strip() + if max_line_length and (max_line_length == "off" or max_line_length.isdigit()): + settings["line_length"] = ( + float("inf") if max_line_length == "off" else int(max_line_length) + ) + settings = { + key: value + for key, value in settings.items() + if key in _DEFAULT_SETTINGS or key.startswith(KNOWN_PREFIX) + } + + for key, value in settings.items(): + existing_value_type = _get_str_to_type_converter(key) + if existing_value_type is tuple: + settings[key] = tuple(_as_list(value)) + elif existing_value_type is frozenset: + settings[key] = frozenset(_as_list(settings.get(key))) # type: ignore + elif existing_value_type is bool: + # Only some configuration formats support native boolean values. + if not isinstance(value, bool): + value = _as_bool(value) + settings[key] = value + elif key.startswith(KNOWN_PREFIX): + settings[key] = _abspaths(os.path.dirname(file_path), _as_list(value)) + elif key == "force_grid_wrap": + try: + result = existing_value_type(value) + except ValueError: # backwards compatibility for true / false force grid wrap + result = 0 if value.lower().strip() == "false" else 2 + settings[key] = result + elif key == "comment_prefix": + settings[key] = str(value).strip("'").strip('"') + else: + settings[key] = existing_value_type(value) + + return settings + + +def _as_bool(value: str) -> bool: + """Given a string value that represents True or False, returns the Boolean equivalent. + Heavily inspired from distutils strtobool. + """ + try: + return _STR_BOOLEAN_MAPPING[value.lower()] + except KeyError: + raise ValueError(f"invalid truth value {value}") + + +def entry_points(group: str) -> "EntryPoints": + """Call entry_point after lazy loading it. + + TODO: The reason for lazy loading here are unknown. + """ + from importlib.metadata import entry_points as ep # noqa: PLC0415 + + return ep(group=group) + + +DEFAULT_CONFIG = Config() diff --git a/.venv/lib/python3.12/site-packages/isort/setuptools_commands.py b/.venv/lib/python3.12/site-packages/isort/setuptools_commands.py new file mode 100644 index 0000000..3e6cc2e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/setuptools_commands.py @@ -0,0 +1,63 @@ +import glob +import os +import sys +from collections.abc import Iterator +from typing import Any +from warnings import warn + +import setuptools + +from . import api +from .settings import DEFAULT_CONFIG + + +class ISortCommand(setuptools.Command): + """The :class:`ISortCommand` class is used by setuptools to perform + imports checks on registered modules. + """ + + description = "Run isort on modules registered in setuptools" + # Potentially unused variable - check if can be safely removed + user_options: list[Any] = [] # type: ignore[misc] + + def initialize_options(self) -> None: + default_settings = vars(DEFAULT_CONFIG).copy() + for key, value in default_settings.items(): + setattr(self, key, value) + + def finalize_options(self) -> None: + """Get options from config files.""" + self.arguments: dict[str, Any] = {} # skipcq: PYL-W0201 + self.arguments["settings_path"] = os.getcwd() + + def distribution_files(self) -> Iterator[str]: + """Find distribution packages.""" + # This is verbatim from flake8 + if self.distribution.packages: # pragma: no cover + package_dirs = self.distribution.package_dir or {} + for package in self.distribution.packages: + pkg_dir = package + if package in package_dirs: + pkg_dir = package_dirs[package] + elif "" in package_dirs: # pragma: no cover + pkg_dir = package_dirs[""] + os.path.sep + pkg_dir + yield pkg_dir.replace(".", os.path.sep) + + if self.distribution.py_modules: + for filename in self.distribution.py_modules: + yield f"{filename}.py" + # Don't miss the setup.py file itself + yield "setup.py" + + def run(self) -> None: + arguments = self.arguments + wrong_sorted_files = False + for path in self.distribution_files(): + for python_file in glob.iglob(os.path.join(path, "*.py")): + try: + if not api.check_file(python_file, **arguments): + wrong_sorted_files = True # pragma: no cover + except OSError as error: # pragma: no cover + warn(f"Unable to parse file {python_file} due to {error}", stacklevel=2) + if wrong_sorted_files: + sys.exit(1) # pragma: no cover diff --git a/.venv/lib/python3.12/site-packages/isort/sorting.py b/.venv/lib/python3.12/site-packages/isort/sorting.py new file mode 100644 index 0000000..cb42b15 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/sorting.py @@ -0,0 +1,131 @@ +import re +from collections.abc import Callable, Iterable +from typing import TYPE_CHECKING, Any + +if TYPE_CHECKING: + from .settings import Config +else: + Config = Any + +_import_line_intro_re = re.compile("^(?:from|import) ") +_import_line_midline_import_re = re.compile(" import ") + + +def module_key( + module_name: str, + config: Config, + sub_imports: bool = False, + ignore_case: bool = False, + section_name: Any | None = None, + straight_import: bool | None = False, +) -> str: + match = re.match(r"^(\.+)\s*(.*)", module_name) + if match: + sep = " " if config.reverse_relative else "_" + module_name = sep.join(match.groups()) + + prefix = "" + if ignore_case: + module_name = str(module_name).lower() + else: + module_name = str(module_name) + + if sub_imports and config.order_by_type: + if module_name in config.constants: + prefix = "A" + elif module_name in config.classes: + prefix = "B" + elif module_name in config.variables: + prefix = "C" + elif module_name.isupper() and len(module_name) > 1: # see issue #376 + prefix = "A" + elif module_name in config.classes or module_name[0:1].isupper(): + prefix = "B" + else: + prefix = "C" + if not config.case_sensitive: + module_name = module_name.lower() + + length_sort = ( + config.length_sort + or (config.length_sort_straight and straight_import) + or str(section_name).lower() in config.length_sort_sections + ) + _length_sort_maybe = (str(len(module_name)) + ":" + module_name) if length_sort else module_name + return f"{(module_name in config.force_to_top and 'A') or 'B'}{prefix}{_length_sort_maybe}" + + +def section_key(line: str, config: Config) -> str: + section = "B" + + if ( + not config.sort_relative_in_force_sorted_sections + and config.reverse_relative + and line.startswith("from .") + ): + match = re.match(r"^from (\.+)\s*(.*)", line) + if match: # pragma: no cover - regex always matches if line starts with "from ." + line = f"from {' '.join(match.groups())}" + if config.group_by_package and line.strip().startswith("from"): + line = line.split(" import ", 1)[0] + + if config.lexicographical: + line = _import_line_intro_re.sub("", _import_line_midline_import_re.sub(".", line)) + else: + line = re.sub("^from ", "", line) + line = re.sub("^import ", "", line) + if config.sort_relative_in_force_sorted_sections: + sep = " " if config.reverse_relative else "_" + line = re.sub(r"^(\.+)", rf"\1{sep}", line) + if line.split(" ")[0] in config.force_to_top: + section = "A" + # * If honor_case_in_force_sorted_sections is true, and case_sensitive and + # order_by_type are different, only ignore case in part of the line. + # * Otherwise, let order_by_type decide the sorting of the whole line. This + # is only "correct" if case_sensitive and order_by_type have the same value. + if config.honor_case_in_force_sorted_sections and config.case_sensitive != config.order_by_type: + split_module = line.split(" import ", 1) + if len(split_module) > 1: + module_name, names = split_module + if not config.case_sensitive: + module_name = module_name.lower() + if not config.order_by_type: + names = names.lower() + line = f"{module_name} import {names}" + elif not config.case_sensitive: + line = line.lower() + elif not config.order_by_type: + line = line.lower() + + return f"{section}{len(line) if config.length_sort else ''}{line}" + + +def sort( + config: Config, + to_sort: Iterable[str], + key: Callable[[str], Any] | None = None, + reverse: bool = False, +) -> list[str]: + return config.sorting_function(to_sort, key=key, reverse=reverse) + + +def naturally( + to_sort: Iterable[str], key: Callable[[str], Any] | None = None, reverse: bool = False +) -> list[str]: + """Returns a naturally sorted list""" + if key is None: + key_callback = _natural_keys + else: + + def key_callback(text: str) -> list[Any]: + return _natural_keys(key(text)) + + return sorted(to_sort, key=key_callback, reverse=reverse) + + +def _atoi(text: str) -> Any: + return int(text) if text.isdigit() else text + + +def _natural_keys(text: str) -> list[Any]: + return [_atoi(c) for c in re.split(r"(\d+)", text)] diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__init__.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/__init__.py new file mode 100644 index 0000000..3c80af8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/__init__.py @@ -0,0 +1,18 @@ +from . import all as _all +from . import py2, py3, py27, py36, py37, py38, py39, py310, py311, py312, py313, py314 + +__all__ = ( + "_all", + "py2", + "py3", + "py27", + "py36", + "py37", + "py38", + "py39", + "py310", + "py311", + "py312", + "py313", + "py314", +) diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36c78589f7797696af3cd0772c919dad4308cf2e GIT binary patch literal 527 zcmbu5y-ve05XYS+Y0{6h9S{;?Va?EnHswn~NCmM~EFCI&u|gBksBse6p(rCy!87nI zj0{MT5CaoirEXo|u7M}OvVQ;n*}gm5FP2p&Fox>){6Hb(6NA4|`8De?m?z>BUx^4; zXhlI^0k2Y(YgFSp)p?axxj_wXQj^zcjn`?NH)w-5X_H&j;w{>OJe9U{&DOu57qOK> z^`gjb7HXOg5N@G?J3+d~TbBNG>(2@u*87L0^h+6(;+8VBtwLi^RA|sZ=!h!9K$wUc z0v|0Jh$g~9v=D8;jom4TP%-Qv{!ywh7~Y1lXR?M;WD__KiCD6y7>%p3Rfk?ezza46~pM$qVle@5~Sy)@sL=REQ6qu@g9LRb83xer*WilV%ey$>>d+s;=qU1_aG<S+)k$edN literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/all.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/all.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29597b175ab630aed133651c10a8459afb40fb82 GIT binary patch literal 314 zcmX@j%ge<81SZV?Gc1AhV-N=hn4pZ$Za~I#h7^Vr#vF!R#wf;IrYI&xhE&EZHkeWb zoyvqww2Ga9A&R+@Nt5{{BT%g-(=FzLN+S?q?5D|ci=l`aC|bkqkE4^RZg5FrNoKOHbAC!{yklNsPGxasvA$keYF?Q> zP^*4HWl2VUp0S>xk$!PzNvbYTb9Q1nP=97|eo=`&#DZe|#GD+xg34bUHo5sJr8%i~ sMWCPnIj>j>NPJ*sWMsV0AohThr(dd5YC`h#tch6{ITae&ia3DM0L+m|>i_@% literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py2.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py2.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cbea8cbc3df54beaea03694e88cc24cb8e428fd9 GIT binary patch literal 266 zcmX@j%ge<81SZV?GcmlXac*Q&Qs{^Ad9^i!+P$^~zH7%JhL+^$RLXGV=3`^$d;li!)17 zb%C0*6VrkEGmGl_X*~Ziz~5I(f;MIwN+Y4_Nq#!Zcu{ATs`=6-c?etCbix-9^VWIVN8}arRh$+U<~3xn zbi!#VgF!N;3UxztQ`MA}aB*52&T7Qds74hXq*uwl@eka=UI$C%n_33{u(yhD$lj8h zlO&V9wN7c+TdF7GupO^+*nemZ-o&XxUmBdx75q0RSm$M(&f_atqr_8RwEegS|7DUb<-vDNZpg0lwZVL-(3Jub5Tg8r)&+{Qb#;nwCmhM_I{;as z5ZV0(@!~|;daJYpS~G?enc62M6)j_}PzG6s63m;+tC;cI{`?s)ngZ+-Gn7L$h&U6f zDAE>yOM-JI+6JxK#EdLC`Y;(lC4>6;%rR9|g;2N3 zl~i?7QdyyteHdu-l)wy3NTrY2Ms{1{M9kpzB$&^kn6jiKW@yn=RVb>?&5mYN&C#Gx z9OwYY(WrciN8=RIAym65`z@?9{ieR$M@S8jjQxiiy^XyH1`h>R1?GBVB)d_dwyZD7 zNzAsAZJaEiREk$<<813om1aOCY1Qm5)&24&&fWok=L#oF+7&oC&X_9`FroQQgSKgo zGy^u9p?8?)O2rw!-G@9Qw9^fNIa3=)Tn7#0q(!e;)GEET-I`!A6KKgqOf#VzXK4I5 zD{NsLN*QNp1IL2F3bfZg7F)AG@8b+f@qrREBXrhEW37|kv<}oT1BL_30iqd%W?Fa9 zWV1gx!D8!BlUX7Z^$5FGE5LB2Y1XoJ(X&BnMD^>m=we&MEs!15;4bQK?tv1vrh`2g{09^S)o^z@9<3kzW+w z?Puw!4D>=ZSTns0pZZ+)nHMymOQcSAL<&I1jQ0 zWv7k%{wH+L6Y=K6s&m|3&hlgcMD=mT#rOBuSGPT%Ev^yIdq-i%1tF}@R$Sz*szra2 z1@J+rV09g#gEe+(&xPD^Y5R06a75$x_CU^lNnG^2Wsz0rZI0IA5`Dke$~<>wOPsnq zBP0^B(8C4rd#)II)yL(v((3dgRWmN{-n~72cYb+;t0OMgYl<)^yH3BRx zfor1HRHbF1wD?$&C1U&;d`shfqBkKQ;<9J;KK!MtDf(JcPL|H(rpGlNs0trXwoJDj z_%S&EFzH4@uduj$P`H~2@Nn?#EY)hC?q_%0QF!8>IPckABKJG#9>@}O*>vkYkw0sU zXlvQW9}myoTz-Flf4et5yj8nvX5XVb(0=i-k4w|XAMT##;CT7O`guvXMu~fu@i`Hz z)Io(#NKn*^bHo2|ef7KBv%UKlPa`2ny(n7TC-P&;u_OU@Ure(2m}w`egk3;79t*{fQletT!GX1JWPgUA($F{qDr-5d zomc+&=t1g-V=O(k>BIK(qhFsK(-+k%`jWr};g6L^KOXPDNnv*KH9ky#ntjtJ;9K`g ie3{~Z;6KCguhGH5!M}%-gYkc!%kg6Pr>T31m;VFL1g)b0 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py3.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py3.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..688c4c02496c057a9244988c8eb16af94746b982 GIT binary patch literal 718 zcmZ{hyH3L}6o!xEI8IthxedHRhc=XQl@Jmj)B(i8<^>9gAT(~OIDo>|sk{Ntz_TzT zP#2Jx*jll{04EI*3-R#%{{8#-`cNtr0NWD%KL0{}OH9_Z-_FN80k{JP9O8o{f=Eqh zk_swyp-U#1G=w3!;L;SPw1h>#B^PtqGJoo7|Bc>o0GH+_dTzpU6C*d_xrv#ZSb2#k z#9D>EUk71Zbz7&dvJZEw`&-+~)x)S2d8gH#z;TbZIxRm| zp0aCKZs*FzQo9>R=Rv1Yt1sHhi`*&}w_9ge@2Mb+>~sT#(;BsI{Aq5;z`69@&2Snw zOs=eM5kpD{d4c8=G#{ZkG=N$Cz24rlQRugO?GYtx=JmJFG&X}1cyXL?ip~T+(f51) l$kN&Du#mYTLpPDRl7VhAb7hWhDs$5&n;lUgJS^j3egMi$jq(5h literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py310.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py310.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d9f6bcbcc2e990c25250f91f4e9defc730db0d0 GIT binary patch literal 2322 zcmZuz&5j&35T5_;naKj;3FaD!-GSYN6N(f_kRqWZQgX^=aJ${zX56;dcF#=jji=zq zffLWd8~DNj#2Lsf7x>CO;lxN|mw&2U_4%uE|8jA$8sYa~`cGpoMx)7qkaUxE-E>2FTIAsM#<3pSl zWr61II!<{l(X=HRe~8nvXwgU?r?scSbXMh~`Lj#{?LAIFhI*Iv%(1$oXvIA!BfK8k;=U5--2ryv8n@;c1CA)L(dK=D1j}$ z4VFfoW?h^IvlkkjV;l;hCu0j-=ShaRD3}+YKR_>a16A~1aLf~K9Q&v@7X4X|cg~Z3 z6)Z)#s6{XcVpECMb75?{k%g6fPy4JH>{#n0__DAB zF6`T$s{;0JJA;+DaA3J<oWP_4c`mc^8t42)OQpY zsG&pol2L+AeOT{El7|#N5S?^R1kbE zlK=?Q=A60O!Z#7~gl2=&2FW0^b1;&5E+wQ+s(^YIbN=$|UQR5dx`#QVjH3#Wmmqb@ z$GmpTroeJzg=4{BA82|$%_BI?aPIq=u?!z+AY#1S885UehcfKX0I5I73;8%NAT8 z(s!9^NXo?JkV$|pE>TH$12#(liRYz~bzBCaP=L}Ap&@*TU&~ZR3dZ+wc{(ZC;>eOj z-xYL5T;h5M=i-W+)*=w56v-O3!wDog$%G!6UTI{Yx=t>wY`;6JM99dR9j=tc71abF zCQ*OcnkdY)ziyw9)J1p@)hCBFTaA9yT>S_ zy_bG_MbFt5s#}{rC-60Ky`^XH63TmqkA3BT;Yce0t{{G1y)*!u^ive*xHMs__5- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py311.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py311.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7ef3931b57705d2c3ce0624163559cb765f1c91 GIT binary patch literal 2323 zcmZuz&5j&35T5^@pDZArps$hG9c4G+gdznJq(~@%I+-`Tb8Mp1V-80jB<0&|D z;KZ}=2EK3raRzeB1-^1mI5E=L<-c;(S6`L;my3(_2)~EZf12Bi(daiCeE3by!n;o( z{4gpv*jZUy2%5~?Z zu9Jdx??Z_z{gv%=&z-d4YW?_E*c~S|j}vL)M29#rK2Ds7ldg-C(2UQ0A>iN+t|v@BXQ(#L7-Y@Es#ji#Zc6E^f{j@ay>cj~=D(_=Nz!l_kpwj=#B zCMzCi+?0Y^+sB#ET^nb$G6mW@Y2&PE8TK@RPBkH5<~wh6oTGOf4%z#Z0gu!Q2m*c6F{m3&Y8tQquJ>m+!xummdf+n%ce z`ffXemAG(Vw`t?T3zh8ijZnaM;hQc1w}qFrX4LC4+2IY}3+VF!dh678=91kAec5GnjHn(J5j~#=xdn- zV3|%WnX4^~6mgkgZE)=%8Km~IkeYceC8SQOfPxp7{MFgcCDDxvALfiQj!M9?1gld* zE^EhZ@^ERaa4Zon7qTjPRo!&zC1Fg5g1qnN$nO+p#r5VLPPiv(N?LB6pZiV>U2`F#g!$A zzANaCxI%ab1i33fTu!d9hm0;oYvTGSio%(r2N5?+2MIbHB;JP&xI%R#p@~7V;s6T9 z4PC?)QW8~eQwuGe(c4ioD#t&M-;Vpq{psCL>u;nIIX5~mseK+Ak^8`O$y}K$SvcnU+*J9iJ~T$> zH&t0u**MiCS=wwvkLHMd9xA8aD>OY;11+3d6=yqAJ!7)s zamGz4sI`5Z3Ej1ERx4AWy^}W1nwDWt6X;YE0%pGVM#q`DYgwGNEHr3ahIuao^mw{> z2DG6+G_YwFWQ+N(lbAmUeTcIoJ7DGxu*5lYj`eX4-vUOw>GU35(mUs_w;|3&%cMf* zoHlV@aUC#f1hcnsu0?P>&aJeH9&AK=b zW-l~4$2fL|p0q3w!jlYfQ7|vQe1Kkh!7(PFIM%5*7X5iY@0_P|Rj}mJq87ox?uBgY zrgU+k3};HjMeAi+Z~cKgtm|M2zJ;+V1Pd$qp7vQY=&{yGaARQ!P3X5hR|WLlb_OeP z;lOCq#)TIu+2xMUFKf-H*JZN98@?CN=L7WCsqe@ya6=i4DNy8h=v*K> z;9lC-IhE`_O6>&pol2L+V3M;uF2ECJZOoYOH3y+H)|Ju#p^QjHM=}5>TiBA7va0BC zh6n`#5@r=rmABYjX+)hjF#~>qpBlK?E!sU>r@ zg^?mI3#pmsQbOva3MgoC$zPpqS`xLWuwl+9<0#LUB^aEtZdp5KlQ&Cag=4{BAGmqe zY!wTYacx`z10TriB`O%|mBzhJc+)xL#nSg}Uc3y8scH8Ki;FtE$sH z7^5J{)*5gW_O8IavV^HL3vkaH$OF!h@p09H)kC7LQh7)@w;FN=c*PZpv#Q6-!} zI+IM0k?OTZuBq!}(%SaB^N|P{`LRPBSzJ^0BRUeL2QsCu1x}E=0?g#(`g%y&QnV(n zkD@4?IeIW{!*r0~z(Jz&Z$J<#6bVfXk`)JVEN3;pJ<>mtTGjD|b&&Fncfk_KIGrEskz&`beN}ge|>rmpHs< z_ypKW4-Rh6&pWo=;48xR@0X7TPaeD9apf3)|0$Y3r{nSXugQEo`}?Esrt8TM3-=qQ F{{=0;n3@0p literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py313.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py313.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebb6ce6106e43060972b28504f3a00ae6a3cbd82 GIT binary patch literal 2127 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py38.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py38.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55b6213834676b2dcb721e71e646923e4ff01943 GIT binary patch literal 2330 zcmZuzOOG5i5T19>BTEp!V6Kta9kCk_2NWrgAVoq+q~w&#$nExYn{nG-KW3))g7_8O zxNzdP@DF@KLWnDnTQ2aGdm=83G5`(8on8JqX*-=AD3TCCDz>Nz@+x;(1^7UOjpcRYb8s^T(>s6^~)|a zMz3$KKEGNnpS)N%c2^K`P zj9%(GD`@vVRJhS!*>3H*lQvu}AN>lm)2QZYBuyIWkVeL*krQbYV;Y@KY0OHF!G|<1 zs}jTAbsFWud{?GVFU9 zpvTk26Ce)#p@B`4AY1ImD6xMK`j93^cEHXZut`(q9P82)4hF1v6ZIZb);r~{vms4I z%cR2OoHl8?<2qo~2xf27REywvnp$av$7H-bVd^S_&D$uVNK+RzT$_5{hze7q1Xz3< zEUltuF-?Qn3ysM!4uQ~-vKhj8k|E7X=EY|ZF-zS*6tfo``-B?@AI-*MKFjgwJjw5Z zB@bt{2nKGZwN4^$ zW|lz4J+|Yj1mA5mI7u^yWH)V^d7-kMz7Yy|&wLXDaGZHrYeuuKvOV7Ly?{O+ptsI* zB>#NZmWKE`uMGAnj)X^uE|5KNH}glQvL8pOodDmda(RtJbC#zW(ui4`3g$b_k@N+N zl{7%CpqwL-0zk?ZHWiiJ?MS#l0E0k|7CTfkM}8MOjilgBDuAbD-e&?K0#CybRg#jG z52X#>jhf66& zdB^VSjAvn;AtQ0ri4%@f;e^c)6i5^&5Tk<9Elc@Zg)+hIfw^8P2-iyVfFkS>Rs_5_ z3buD*2g27f6M!%?&zY-pTBLbKv%zgWWl-sJWGM4oN>EX%fcBT>{N>raIb|KSLF^f2 z9Cd_wg(T1QIX6}~77R|2tmiwdVqs@oo8~ay2XbJJHixFBahns~M2CWzBU1t^0l^%T zW?FZkM0>WGVsvzXb)L&i-hnS_8FGB*N9Hu509%khP^hc4KxYettxpS~Q4IMUq>n%r zO=&@3NNr;P3HumyIglvdAPu};?4stu7}9{|Xppe5eSt)*Dws{XkT^4tH=Ln6q(zGq z@2hx`TS+d+MPEojEG^Jbw>>xu;D<+MC+oBbLZJ`kD?&p6QCcl>Hz^t4r^V@{WQ!}| z+v((ENq3|LqS_mmmfW-!J~5?;)@UJ4pvH+N_(=6qqwv&qHfd?Q?O7y&MzL%WNtTw> z5&)h=Ujj|_YylbQSRze1xxVb{w-T*M%cCeuXO7foR!j$3J9dzGC00lg>K++QEV2~` zR7G0RMO>i((c@ON(85WcjanJ+b7@!NkXC)y>LFe^Mb;`oVOkM}?~Pw&kWl()ifM(c zpw^dNxz~exZi4rAEUJJ97zOUqz1CDwiJjCHt@;KA9}ZYu^y)Re`KY}6RczaC`(Ie@ zw@@U{U;v-z4@RljZVAFI^*(yBe;&N0uZ(wWgO;)P7O#Teyn1^1&EqdWy?jLw^UJSb z==L!hY3HTiT+zd}f#}BO?~0qNPp&ugAYMXv&+yr>ksfKdIe!v>?dEfQ7rdK)(fjhq i{ec^Y`1_AA{5c*DhkuQx!^z(tu<>&A{mlK2?SBEyW3PGu literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py39.cpython-312.pyc b/.venv/lib/python3.12/site-packages/isort/stdlibs/__pycache__/py39.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe4a2cd26b8c277a8b2e92e33f9bab01cef935a4 GIT binary patch literal 2333 zcmZuz&8{0Y6wd!ll3qYOLAI5+H{#xcRH>>|Xpt(Rwo<$5Ch~YZGbSF}*Y+ftyJN>2 zuw%oDXW`hd3>Z7K`+8T00x3vc;n5Xi36`9?KET9(t$VD=a;p26}L6Rh;ce z|BT6s#~C-Jpw;$qCUn=vS*=Wg^-kJ2Ygz`LCXiGU0&c$ZM#q`DYgwGNEHqeKhI=mq z^msBn1LDvh8u&B|vc-MZN!%ZVKE&CP9dL68Y~q|b$ND%&fB`4obb601>78@e+YslX zWl~{tPMbKdxDGfqg4x?R*CIF`=T=(bu^BH<*!t4o^0pJ5h;!Fzgf{oQ5hb=p39$G! zSUPo@b#WfdUTAENaR`K-lr50XlMHcDFfYD*fL-baqS(FQxF_5=_-Hp4`&o{6&Xar< zEJe7eMKB0sA=|nsU0f)`nG$i)dYPWL{=glc>tG4Zg|R6k3(KGf{8sWk@mn+Kv(`z} z&B7AMuw#3!3h>=_22bL`q1a6u7hb63r*DJ;-V5J!0XQzatTm%um&qS*_+CJt571ku zy`%Vi-xh}Wdan%bDUXCl=v*Lw5N_h{oJw&VrFH^*r_!Y}3e8y_7bqiUZOoYOHAm5B ztShAfVj0yOiDUp$w(uz{WmS=Ih6DzI8qF$nGe>=Al}1tUCT76XGVc?C6oIE<$SO(6 zQi*{;MGl1amQcv{qCXl}#thfj!Q6l_bxi?eR9=NS4FpFict6vGNerBN9Hv00k2R=P^in8-x)2Wu1s8F+6BVf z$EDC{ki-encR(A1YDoY|ZMy&xo-$~4Akor68X&Q(I?aPIqyYodpokI062)1T2!L)O zab}>nIK#w<%NAunboMfhm(--op}Bx!Tw=)X2AGz>6fd4i)^Qnx!fZ+=LPJndsV&ol zDHz|!<>{nk3zH?0zAMN^Tq4thb8*E@YY`JuifE0o;spAhXabT{uQZxbT_=}Tw%?sa zB4{+w4%uaKMPmZsNz5wH)Z-SAf$j>FE~n5}Lr<5YHF0$mMd8emX3v`GAW<0yi8sd@ zWkVAsp@~EC;($(xYcj+Yni6wwT?;Lo}P8WlEP2U0N z#*bUb$#d+0cKPj-ufDi^O^EW# zui@A331(^UrQcrByKM{6txca6H&>ruZ|R+Q3E@4%m%~eq3 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/all.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/all.py new file mode 100644 index 0000000..08a365e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/all.py @@ -0,0 +1,3 @@ +from . import py2, py3 + +stdlib = py2.stdlib | py3.stdlib diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py2.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py2.py new file mode 100644 index 0000000..74af019 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py2.py @@ -0,0 +1,3 @@ +from . import py27 + +stdlib = py27.stdlib diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py27.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py27.py new file mode 100644 index 0000000..a9bc99d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py27.py @@ -0,0 +1,301 @@ +""" +File contains the standard library of Python 2.7. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "AL", + "BaseHTTPServer", + "Bastion", + "CGIHTTPServer", + "Carbon", + "ColorPicker", + "ConfigParser", + "Cookie", + "DEVICE", + "DocXMLRPCServer", + "EasyDialogs", + "FL", + "FrameWork", + "GL", + "HTMLParser", + "MacOS", + "MimeWriter", + "MiniAEFrame", + "Nav", + "PixMapWrapper", + "Queue", + "SUNAUDIODEV", + "ScrolledText", + "SimpleHTTPServer", + "SimpleXMLRPCServer", + "SocketServer", + "StringIO", + "Tix", + "Tkinter", + "UserDict", + "UserList", + "UserString", + "W", + "__builtin__", + "_ast", + "_winreg", + "abc", + "aepack", + "aetools", + "aetypes", + "aifc", + "al", + "anydbm", + "applesingle", + "argparse", + "array", + "ast", + "asynchat", + "asyncore", + "atexit", + "audioop", + "autoGIL", + "base64", + "bdb", + "binascii", + "binhex", + "bisect", + "bsddb", + "buildtools", + "bz2", + "cPickle", + "cProfile", + "cStringIO", + "calendar", + "cd", + "cfmfile", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "commands", + "compileall", + "compiler", + "contextlib", + "cookielib", + "copy", + "copy_reg", + "crypt", + "csv", + "ctypes", + "curses", + "datetime", + "dbhash", + "dbm", + "decimal", + "difflib", + "dircache", + "dis", + "distutils", + "dl", + "doctest", + "dumbdbm", + "dummy_thread", + "dummy_threading", + "email", + "encodings", + "ensurepip", + "errno", + "exceptions", + "fcntl", + "filecmp", + "fileinput", + "findertools", + "fl", + "flp", + "fm", + "fnmatch", + "formatter", + "fpectl", + "fpformat", + "fractions", + "ftplib", + "functools", + "future_builtins", + "gc", + "gdbm", + "gensuitemodule", + "getopt", + "getpass", + "gettext", + "gl", + "glob", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "hotshot", + "htmlentitydefs", + "htmllib", + "httplib", + "ic", + "icopen", + "imageop", + "imaplib", + "imgfile", + "imghdr", + "imp", + "importlib", + "imputil", + "inspect", + "io", + "itertools", + "jpeg", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "macerrors", + "macostools", + "macpath", + "macresource", + "mailbox", + "mailcap", + "marshal", + "math", + "md5", + "mhlib", + "mimetools", + "mimetypes", + "mimify", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multifile", + "multiprocessing", + "mutex", + "netrc", + "new", + "nis", + "nntplib", + "ntpath", + "numbers", + "operator", + "optparse", + "os", + "ossaudiodev", + "parser", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "popen2", + "poplib", + "posix", + "posixfile", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "quopri", + "random", + "re", + "readline", + "resource", + "rexec", + "rfc822", + "rlcompleter", + "robotparser", + "runpy", + "sched", + "select", + "sets", + "sgmllib", + "sha", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtpd", + "smtplib", + "sndhdr", + "socket", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statvfs", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "sunaudiodev", + "symbol", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "test", + "textwrap", + "thread", + "threading", + "time", + "timeit", + "token", + "tokenize", + "trace", + "traceback", + "ttk", + "tty", + "turtle", + "types", + "unicodedata", + "unittest", + "urllib", + "urllib2", + "urlparse", + "user", + "uu", + "uuid", + "videoreader", + "warnings", + "wave", + "weakref", + "webbrowser", + "whichdb", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpclib", + "zipfile", + "zipimport", + "zlib", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py3.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py3.py new file mode 100644 index 0000000..9d99ce0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py3.py @@ -0,0 +1,13 @@ +from . import py36, py37, py38, py39, py310, py311, py312, py313, py314 + +stdlib = ( + py36.stdlib + | py37.stdlib + | py38.stdlib + | py39.stdlib + | py310.stdlib + | py311.stdlib + | py312.stdlib + | py313.stdlib + | py314.stdlib +) diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py310.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py310.py new file mode 100644 index 0000000..f676996 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py310.py @@ -0,0 +1,232 @@ +""" +File contains the standard library of Python 3.10. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "abc", + "aifc", + "antigravity", + "argparse", + "array", + "ast", + "asynchat", + "asyncio", + "asyncore", + "atexit", + "audioop", + "base64", + "bdb", + "binascii", + "binhex", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "crypt", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "distutils", + "doctest", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "fractions", + "ftplib", + "functools", + "gc", + "genericpath", + "getopt", + "getpass", + "gettext", + "glob", + "graphlib", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "idlelib", + "imaplib", + "imghdr", + "imp", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "lzma", + "mailbox", + "mailcap", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multiprocessing", + "netrc", + "nis", + "nntplib", + "nt", + "ntpath", + "nturl2path", + "numbers", + "opcode", + "operator", + "optparse", + "os", + "ossaudiodev", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "pydoc_data", + "pyexpat", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtpd", + "smtplib", + "sndhdr", + "socket", + "socketserver", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "textwrap", + "this", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uu", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpc", + "xx", + "xxlimited", + "xxlimited_35", + "xxsubtype", + "zipapp", + "zipfile", + "zipimport", + "zlib", + "zoneinfo", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py311.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py311.py new file mode 100644 index 0000000..9f50ec8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py311.py @@ -0,0 +1,232 @@ +""" +File contains the standard library of Python 3.11. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "abc", + "aifc", + "antigravity", + "argparse", + "array", + "ast", + "asynchat", + "asyncio", + "asyncore", + "atexit", + "audioop", + "base64", + "bdb", + "binascii", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "crypt", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "distutils", + "doctest", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "fractions", + "ftplib", + "functools", + "gc", + "genericpath", + "getopt", + "getpass", + "gettext", + "glob", + "graphlib", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "idlelib", + "imaplib", + "imghdr", + "imp", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "lzma", + "mailbox", + "mailcap", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multiprocessing", + "netrc", + "nis", + "nntplib", + "nt", + "ntpath", + "nturl2path", + "numbers", + "opcode", + "operator", + "optparse", + "os", + "ossaudiodev", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "pydoc_data", + "pyexpat", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtpd", + "smtplib", + "sndhdr", + "socket", + "socketserver", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "textwrap", + "this", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "tomllib", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uu", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpc", + "xx", + "xxlimited", + "xxlimited_35", + "xxsubtype", + "zipapp", + "zipfile", + "zipimport", + "zlib", + "zoneinfo", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py312.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py312.py new file mode 100644 index 0000000..7feac7f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py312.py @@ -0,0 +1,227 @@ +""" +File contains the standard library of Python 3.12. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "abc", + "aifc", + "antigravity", + "argparse", + "array", + "ast", + "asyncio", + "atexit", + "audioop", + "base64", + "bdb", + "binascii", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "crypt", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "doctest", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "fractions", + "ftplib", + "functools", + "gc", + "genericpath", + "getopt", + "getpass", + "gettext", + "glob", + "graphlib", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "idlelib", + "imaplib", + "imghdr", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "lzma", + "mailbox", + "mailcap", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multiprocessing", + "netrc", + "nis", + "nntplib", + "nt", + "ntpath", + "nturl2path", + "numbers", + "opcode", + "operator", + "optparse", + "os", + "ossaudiodev", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "pydoc_data", + "pyexpat", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtplib", + "sndhdr", + "socket", + "socketserver", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "textwrap", + "this", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "tomllib", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uu", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpc", + "xx", + "xxlimited", + "xxlimited_35", + "xxsubtype", + "zipapp", + "zipfile", + "zipimport", + "zlib", + "zoneinfo", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py313.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py313.py new file mode 100644 index 0000000..9015a18 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py313.py @@ -0,0 +1,207 @@ +""" +File contains the standard library of Python 3.13. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "abc", + "antigravity", + "argparse", + "array", + "ast", + "asyncio", + "atexit", + "base64", + "bdb", + "binascii", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "doctest", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "fractions", + "ftplib", + "functools", + "gc", + "genericpath", + "getopt", + "getpass", + "gettext", + "glob", + "graphlib", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "idlelib", + "imaplib", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "linecache", + "locale", + "logging", + "lzma", + "mailbox", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msvcrt", + "multiprocessing", + "netrc", + "nt", + "ntpath", + "nturl2path", + "numbers", + "opcode", + "operator", + "optparse", + "os", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "pydoc_data", + "pyexpat", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtplib", + "socket", + "socketserver", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "tempfile", + "termios", + "textwrap", + "this", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "tomllib", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xml", + "xmlrpc", + "xx", + "xxlimited", + "xxlimited_35", + "xxsubtype", + "zipapp", + "zipfile", + "zipimport", + "zlib", + "zoneinfo", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py314.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py314.py new file mode 100644 index 0000000..66b9bd4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py314.py @@ -0,0 +1,208 @@ +""" +File contains the standard library of Python 3.14. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "abc", + "annotationlib", + "antigravity", + "argparse", + "array", + "ast", + "asyncio", + "atexit", + "base64", + "bdb", + "binascii", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "doctest", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "fractions", + "ftplib", + "functools", + "gc", + "genericpath", + "getopt", + "getpass", + "gettext", + "glob", + "graphlib", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "idlelib", + "imaplib", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "linecache", + "locale", + "logging", + "lzma", + "mailbox", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msvcrt", + "multiprocessing", + "netrc", + "nt", + "ntpath", + "nturl2path", + "numbers", + "opcode", + "operator", + "optparse", + "os", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "pydoc_data", + "pyexpat", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtplib", + "socket", + "socketserver", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "tempfile", + "termios", + "textwrap", + "this", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "tomllib", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xml", + "xmlrpc", + "xx", + "xxlimited", + "xxlimited_35", + "xxsubtype", + "zipapp", + "zipfile", + "zipimport", + "zlib", + "zoneinfo", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py36.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py36.py new file mode 100644 index 0000000..59ebd24 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py36.py @@ -0,0 +1,224 @@ +""" +File contains the standard library of Python 3.6. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "_dummy_thread", + "_thread", + "abc", + "aifc", + "argparse", + "array", + "ast", + "asynchat", + "asyncio", + "asyncore", + "atexit", + "audioop", + "base64", + "bdb", + "binascii", + "binhex", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "copy", + "copyreg", + "crypt", + "csv", + "ctypes", + "curses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "distutils", + "doctest", + "dummy_threading", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "formatter", + "fpectl", + "fractions", + "ftplib", + "functools", + "gc", + "getopt", + "getpass", + "gettext", + "glob", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "imaplib", + "imghdr", + "imp", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "lzma", + "macpath", + "mailbox", + "mailcap", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multiprocessing", + "netrc", + "nis", + "nntplib", + "ntpath", + "numbers", + "operator", + "optparse", + "os", + "ossaudiodev", + "parser", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtpd", + "smtplib", + "sndhdr", + "socket", + "socketserver", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "symbol", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "test", + "textwrap", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uu", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpc", + "zipapp", + "zipfile", + "zipimport", + "zlib", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py37.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py37.py new file mode 100644 index 0000000..e0ad122 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py37.py @@ -0,0 +1,225 @@ +""" +File contains the standard library of Python 3.7. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "_dummy_thread", + "_thread", + "abc", + "aifc", + "argparse", + "array", + "ast", + "asynchat", + "asyncio", + "asyncore", + "atexit", + "audioop", + "base64", + "bdb", + "binascii", + "binhex", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "crypt", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "distutils", + "doctest", + "dummy_threading", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "formatter", + "fractions", + "ftplib", + "functools", + "gc", + "getopt", + "getpass", + "gettext", + "glob", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "imaplib", + "imghdr", + "imp", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "lzma", + "macpath", + "mailbox", + "mailcap", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multiprocessing", + "netrc", + "nis", + "nntplib", + "ntpath", + "numbers", + "operator", + "optparse", + "os", + "ossaudiodev", + "parser", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtpd", + "smtplib", + "sndhdr", + "socket", + "socketserver", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "symbol", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "test", + "textwrap", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uu", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpc", + "zipapp", + "zipfile", + "zipimport", + "zlib", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py38.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py38.py new file mode 100644 index 0000000..bf2cdf2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py38.py @@ -0,0 +1,233 @@ +""" +File contains the standard library of Python 3.8. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "abc", + "aifc", + "antigravity", + "argparse", + "array", + "ast", + "asynchat", + "asyncio", + "asyncore", + "atexit", + "audioop", + "base64", + "bdb", + "binascii", + "binhex", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "crypt", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "distutils", + "doctest", + "dummy_threading", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "formatter", + "fractions", + "ftplib", + "functools", + "gc", + "genericpath", + "getopt", + "getpass", + "gettext", + "glob", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "idlelib", + "imaplib", + "imghdr", + "imp", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "lzma", + "mailbox", + "mailcap", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multiprocessing", + "netrc", + "nis", + "nntplib", + "nt", + "ntpath", + "nturl2path", + "numbers", + "opcode", + "operator", + "optparse", + "os", + "ossaudiodev", + "parser", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "pydoc_data", + "pyexpat", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtpd", + "smtplib", + "sndhdr", + "socket", + "socketserver", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "symbol", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "textwrap", + "this", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uu", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpc", + "xx", + "xxlimited", + "xxsubtype", + "zipapp", + "zipfile", + "zipimport", + "zlib", +} diff --git a/.venv/lib/python3.12/site-packages/isort/stdlibs/py39.py b/.venv/lib/python3.12/site-packages/isort/stdlibs/py39.py new file mode 100644 index 0000000..7615952 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/stdlibs/py39.py @@ -0,0 +1,234 @@ +""" +File contains the standard library of Python 3.9. + +DO NOT EDIT. If the standard library changes, a new list should be created +using the mkstdlibs.py script. +""" + +stdlib = { + "_ast", + "abc", + "aifc", + "antigravity", + "argparse", + "array", + "ast", + "asynchat", + "asyncio", + "asyncore", + "atexit", + "audioop", + "base64", + "bdb", + "binascii", + "binhex", + "bisect", + "builtins", + "bz2", + "cProfile", + "calendar", + "cgi", + "cgitb", + "chunk", + "cmath", + "cmd", + "code", + "codecs", + "codeop", + "collections", + "colorsys", + "compileall", + "concurrent", + "configparser", + "contextlib", + "contextvars", + "copy", + "copyreg", + "crypt", + "csv", + "ctypes", + "curses", + "dataclasses", + "datetime", + "dbm", + "decimal", + "difflib", + "dis", + "distutils", + "doctest", + "email", + "encodings", + "ensurepip", + "enum", + "errno", + "faulthandler", + "fcntl", + "filecmp", + "fileinput", + "fnmatch", + "formatter", + "fractions", + "ftplib", + "functools", + "gc", + "genericpath", + "getopt", + "getpass", + "gettext", + "glob", + "graphlib", + "grp", + "gzip", + "hashlib", + "heapq", + "hmac", + "html", + "http", + "idlelib", + "imaplib", + "imghdr", + "imp", + "importlib", + "inspect", + "io", + "ipaddress", + "itertools", + "json", + "keyword", + "lib2to3", + "linecache", + "locale", + "logging", + "lzma", + "mailbox", + "mailcap", + "marshal", + "math", + "mimetypes", + "mmap", + "modulefinder", + "msilib", + "msvcrt", + "multiprocessing", + "netrc", + "nis", + "nntplib", + "nt", + "ntpath", + "nturl2path", + "numbers", + "opcode", + "operator", + "optparse", + "os", + "ossaudiodev", + "parser", + "pathlib", + "pdb", + "pickle", + "pickletools", + "pipes", + "pkgutil", + "platform", + "plistlib", + "poplib", + "posix", + "posixpath", + "pprint", + "profile", + "pstats", + "pty", + "pwd", + "py_compile", + "pyclbr", + "pydoc", + "pydoc_data", + "pyexpat", + "queue", + "quopri", + "random", + "re", + "readline", + "reprlib", + "resource", + "rlcompleter", + "runpy", + "sched", + "secrets", + "select", + "selectors", + "shelve", + "shlex", + "shutil", + "signal", + "site", + "smtpd", + "smtplib", + "sndhdr", + "socket", + "socketserver", + "spwd", + "sqlite3", + "sre", + "sre_compile", + "sre_constants", + "sre_parse", + "ssl", + "stat", + "statistics", + "string", + "stringprep", + "struct", + "subprocess", + "sunau", + "symbol", + "symtable", + "sys", + "sysconfig", + "syslog", + "tabnanny", + "tarfile", + "telnetlib", + "tempfile", + "termios", + "textwrap", + "this", + "threading", + "time", + "timeit", + "tkinter", + "token", + "tokenize", + "trace", + "traceback", + "tracemalloc", + "tty", + "turtle", + "turtledemo", + "types", + "typing", + "unicodedata", + "unittest", + "urllib", + "uu", + "uuid", + "venv", + "warnings", + "wave", + "weakref", + "webbrowser", + "winreg", + "winsound", + "wsgiref", + "xdrlib", + "xml", + "xmlrpc", + "xx", + "xxlimited", + "xxsubtype", + "zipapp", + "zipfile", + "zipimport", + "zlib", + "zoneinfo", +} diff --git a/.venv/lib/python3.12/site-packages/isort/utils.py b/.venv/lib/python3.12/site-packages/isort/utils.py new file mode 100644 index 0000000..2c4016d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/utils.py @@ -0,0 +1,74 @@ +import os +import sys +from functools import lru_cache +from pathlib import Path +from typing import Any + + +class TrieNode: + def __init__(self, config_file: str = "", config_data: dict[str, Any] | None = None) -> None: + if not config_data: + config_data = {} + + self.nodes: dict[str, TrieNode] = {} + self.config_info: tuple[str, dict[str, Any]] = (config_file, config_data) + + +class Trie: + """ + A prefix tree to store the paths of all config files and to search the nearest config + associated with each file + """ + + def __init__(self, config_file: str = "", config_data: dict[str, Any] | None = None) -> None: + self.root: TrieNode = TrieNode(config_file, config_data) + + def insert(self, config_file: str, config_data: dict[str, Any]) -> None: + resolved_config_path_as_tuple = Path(config_file).parent.resolve().parts + + temp = self.root + + for path in resolved_config_path_as_tuple: + if path not in temp.nodes: + temp.nodes[path] = TrieNode() + + temp = temp.nodes[path] + + temp.config_info = (config_file, config_data) + + def search(self, filename: str) -> tuple[str, dict[str, Any]]: + """ + Returns the closest config relative to filename by doing a depth + first search on the prefix tree. + """ + resolved_file_path_as_tuple = Path(filename).resolve().parts + + temp = self.root + + last_stored_config: tuple[str, dict[str, Any]] = ("", {}) + + for path in resolved_file_path_as_tuple: + if temp.config_info[0]: + last_stored_config = temp.config_info + + if path not in temp.nodes: + break + + temp = temp.nodes[path] + + return last_stored_config + + +@lru_cache(maxsize=1000) +def exists_case_sensitive(path: str) -> bool: + """Returns if the given path exists and also matches the case on Windows. + + When finding files that can be imported, it is important for the cases to match because while + file os.path.exists("module.py") and os.path.exists("MODULE.py") both return True on Windows, + Python can only import using the case of the real file. + """ + result = os.path.exists(path) + if result and (sys.platform.startswith("win") or sys.platform == "darwin"): # pragma: no cover + directory, basename = os.path.split(path) + result = basename in os.listdir(directory) + return result diff --git a/.venv/lib/python3.12/site-packages/isort/wrap.py b/.venv/lib/python3.12/site-packages/isort/wrap.py new file mode 100644 index 0000000..5f0813d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/wrap.py @@ -0,0 +1,147 @@ +import copy +import re +from collections.abc import Sequence + +from .settings import DEFAULT_CONFIG, Config +from .wrap_modes import WrapModes as Modes +from .wrap_modes import formatter_from_string, vertical_hanging_indent + + +def import_statement( + import_start: str, + from_imports: list[str], + comments: Sequence[str] = (), + line_separator: str = "\n", + config: Config = DEFAULT_CONFIG, + multi_line_output: Modes | None = None, + explode: bool = False, +) -> str: + """Returns a multi-line wrapped form of the provided from import statement.""" + if explode: + formatter = vertical_hanging_indent + line_length = 1 + include_trailing_comma = True + else: + formatter = formatter_from_string((multi_line_output or config.multi_line_output).name) + line_length = config.wrap_length or config.line_length + include_trailing_comma = config.include_trailing_comma + dynamic_indent = " " * (len(import_start) + 1) + indent = config.indent + statement = formatter( + statement=import_start, + imports=copy.copy(from_imports), + white_space=dynamic_indent, + indent=indent, + line_length=line_length, + comments=comments, + line_separator=line_separator, + comment_prefix=config.comment_prefix, + include_trailing_comma=include_trailing_comma, + remove_comments=config.ignore_comments, + ) + if config.balanced_wrapping: + lines = statement.split(line_separator) + line_count = len(lines) + if len(lines) > 1: + minimum_length = min(len(line) for line in lines[:-1]) + else: + minimum_length = 0 + new_import_statement = statement + while len(lines[-1]) < minimum_length and len(lines) == line_count and line_length > 10: + statement = new_import_statement + line_length -= 1 + new_import_statement = formatter( + statement=import_start, + imports=copy.copy(from_imports), + white_space=dynamic_indent, + indent=indent, + line_length=line_length, + comments=comments, + line_separator=line_separator, + comment_prefix=config.comment_prefix, + include_trailing_comma=include_trailing_comma, + remove_comments=config.ignore_comments, + ) + lines = new_import_statement.split(line_separator) + if statement.count(line_separator) == 0: + return _wrap_line(statement, line_separator, config) + return statement + + +def line(content: str, line_separator: str, config: Config = DEFAULT_CONFIG) -> str: + """Returns a line wrapped to the specified line-length, if possible.""" + wrap_mode = config.multi_line_output + if len(content) > config.line_length and wrap_mode != Modes.NOQA: # type: ignore + line_without_comment = content + comment = None + if "#" in content: + line_without_comment, comment = content.split("#", 1) + for splitter in ("import ", "cimport ", ".", "as "): + exp = r"\b" + re.escape(splitter) + r"\b" + if re.search(exp, line_without_comment) and not line_without_comment.strip().startswith( + splitter + ): + line_parts = re.split(exp, line_without_comment) + if comment and not (config.use_parentheses and "noqa" in comment): + _comma_maybe = ( + "," + if ( + config.include_trailing_comma + and config.use_parentheses + and not line_without_comment.rstrip().endswith(",") + ) + else "" + ) + line_parts[-1] = ( + f"{line_parts[-1].strip()}{_comma_maybe}{config.comment_prefix}{comment}" + ) + next_line = [] + while (len(content) + 2) > ( + config.wrap_length or config.line_length + ) and line_parts: + next_line.append(line_parts.pop()) + content = splitter.join(line_parts) + if not content: + content = next_line.pop() + + cont_line = _wrap_line( + config.indent + splitter.join(next_line).lstrip(), + line_separator, + config, + ) + if config.use_parentheses: + if splitter == "as ": + output = f"{content}{splitter}{cont_line.lstrip()}" + else: + _comma = "," if config.include_trailing_comma and not comment else "" + + if wrap_mode in ( + Modes.VERTICAL_HANGING_INDENT, # type: ignore + Modes.VERTICAL_GRID_GROUPED, # type: ignore + ): + _separator = line_separator + else: + _separator = "" + noqa_comment = "" + if comment and "noqa" in comment: + noqa_comment = f"{config.comment_prefix}{comment}" + cont_line = cont_line.rstrip() + _comma = "," if config.include_trailing_comma else "" + output = ( + f"{content}{splitter}({noqa_comment}" + f"{line_separator}{cont_line}{_comma}{_separator})" + ) + lines = output.split(line_separator) + if config.comment_prefix in lines[-1] and lines[-1].endswith(")"): + content, comment = lines[-1].split(config.comment_prefix, 1) + lines[-1] = content + ")" + config.comment_prefix + comment[:-1] + output = line_separator.join(lines) + return output + return f"{content}{splitter}\\{line_separator}{cont_line}" + elif len(content) > config.line_length and wrap_mode == Modes.NOQA and "# NOQA" not in content: # type: ignore + return f"{content}{config.comment_prefix} NOQA" + + return content + + +_wrap_line = line diff --git a/.venv/lib/python3.12/site-packages/isort/wrap_modes.py b/.venv/lib/python3.12/site-packages/isort/wrap_modes.py new file mode 100644 index 0000000..cc4a97f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isort/wrap_modes.py @@ -0,0 +1,375 @@ +"""Defines all wrap modes that can be used when outputting formatted imports""" + +import enum +from collections.abc import Callable +from inspect import signature +from typing import Any + +import isort.comments + +_wrap_modes: dict[str, Callable[..., str]] = {} + + +def from_string(value: str) -> "WrapModes": + return getattr(WrapModes, str(value), None) or WrapModes(int(value)) + + +def formatter_from_string(name: str) -> Callable[..., str]: + return _wrap_modes.get(name.upper(), grid) + + +def _wrap_mode_interface( + statement: str, + imports: list[str], + white_space: str, + indent: str, + line_length: int, + comments: list[str], + line_separator: str, + comment_prefix: str, + include_trailing_comma: bool, + remove_comments: bool, +) -> str: + """Defines the common interface used by all wrap mode functions""" + return "" + + +def _wrap_mode(function: Callable[..., str]) -> Callable[..., str]: + """Registers an individual wrap mode. Function name and order are significant and used for + creating enum. + """ + _wrap_modes[function.__name__.upper()] = function + function.__signature__ = signature(_wrap_mode_interface) # type: ignore + function.__annotations__ = _wrap_mode_interface.__annotations__ + return function + + +@_wrap_mode +def grid(**interface: Any) -> str: + if not interface["imports"]: + return "" + + interface["statement"] += "(" + interface["imports"].pop(0) + while interface["imports"]: + next_import = interface["imports"].pop(0) + next_statement = isort.comments.add_to_line( + interface["comments"], + interface["statement"] + ", " + next_import, + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + if ( + len(next_statement.split(interface["line_separator"])[-1]) + 1 + > interface["line_length"] + ): + lines = [f"{interface['white_space']}{next_import.split(' ')[0]}"] + for part in next_import.split(" ")[1:]: + new_line = f"{lines[-1]} {part}" + if len(new_line) + 1 > interface["line_length"]: + lines.append(f"{interface['white_space']}{part}") + else: + lines[-1] = new_line + next_import = interface["line_separator"].join(lines) + interface["statement"] = ( + isort.comments.add_to_line( + interface["comments"], + f"{interface['statement']},", + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + + f"{interface['line_separator']}{next_import}" + ) + interface["comments"] = [] + else: + interface["statement"] += ", " + next_import + return f"{interface['statement']}{',' if interface['include_trailing_comma'] else ''})" + + +@_wrap_mode +def vertical(**interface: Any) -> str: + if not interface["imports"]: + return "" + + first_import = ( + isort.comments.add_to_line( + interface["comments"], + interface["imports"].pop(0) + ",", + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + + interface["line_separator"] + + interface["white_space"] + ) + + _imports = ("," + interface["line_separator"] + interface["white_space"]).join( + interface["imports"] + ) + _comma_maybe = "," if interface["include_trailing_comma"] else "" + return f"{interface['statement']}({first_import}{_imports}{_comma_maybe})" + + +def _hanging_indent_end_line(line: str) -> str: + if not line.endswith(" "): + line += " " + return line + "\\" + + +@_wrap_mode +def hanging_indent(**interface: Any) -> str: + if not interface["imports"]: + return "" + + line_length_limit = interface["line_length"] - 3 + + next_import = interface["imports"].pop(0) + next_statement = interface["statement"] + next_import + # Check for first import + if len(next_statement) > line_length_limit: + next_statement = ( + _hanging_indent_end_line(interface["statement"]) + + interface["line_separator"] + + interface["indent"] + + next_import + ) + + interface["statement"] = next_statement + while interface["imports"]: + next_import = interface["imports"].pop(0) + next_statement = interface["statement"] + ", " + next_import + if len(next_statement.split(interface["line_separator"])[-1]) > line_length_limit: + next_statement = ( + _hanging_indent_end_line(interface["statement"] + ",") + + f"{interface['line_separator']}{interface['indent']}{next_import}" + ) + interface["statement"] = next_statement + + if interface["comments"]: + statement_with_comments = isort.comments.add_to_line( + interface["comments"], + interface["statement"], + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + if len(statement_with_comments.split(interface["line_separator"])[-1]) <= ( + line_length_limit + 2 + ): + return statement_with_comments + return ( + _hanging_indent_end_line(interface["statement"]) + + str(interface["line_separator"]) + + isort.comments.add_to_line( + interface["comments"], + interface["indent"], + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"].lstrip(), + ) + ) + return str(interface["statement"]) + + +@_wrap_mode +def vertical_hanging_indent(**interface: Any) -> str: + _line_with_comments = isort.comments.add_to_line( + interface["comments"], + "", + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + _imports = ("," + interface["line_separator"] + interface["indent"]).join(interface["imports"]) + _comma_maybe = "," if interface["include_trailing_comma"] else "" + return ( + f"{interface['statement']}({_line_with_comments}{interface['line_separator']}" + f"{interface['indent']}{_imports}{_comma_maybe}{interface['line_separator']})" + ) + + +def _vertical_grid_common(need_trailing_char: bool, **interface: Any) -> str: + if not interface["imports"]: + return "" + + interface["statement"] += ( + isort.comments.add_to_line( + interface["comments"], + "(", + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + + interface["line_separator"] + + interface["indent"] + + interface["imports"].pop(0) + ) + while interface["imports"]: + next_import = interface["imports"].pop(0) + next_statement = f"{interface['statement']}, {next_import}" + current_line_length = len(next_statement.split(interface["line_separator"])[-1]) + if interface["imports"] or interface["include_trailing_comma"]: + # We need to account for a comma after this import. + current_line_length += 1 + if not interface["imports"] and need_trailing_char: + # We need to account for a closing ) we're going to add. + current_line_length += 1 + if current_line_length > interface["line_length"]: + next_statement = ( + f"{interface['statement']},{interface['line_separator']}" + f"{interface['indent']}{next_import}" + ) + interface["statement"] = next_statement + if interface["include_trailing_comma"]: + interface["statement"] += "," + return str(interface["statement"]) + + +@_wrap_mode +def vertical_grid(**interface: Any) -> str: + return _vertical_grid_common(need_trailing_char=True, **interface) + ")" + + +@_wrap_mode +def vertical_grid_grouped(**interface: Any) -> str: + return ( + _vertical_grid_common(need_trailing_char=False, **interface) + + str(interface["line_separator"]) + + ")" + ) + + +@_wrap_mode +def vertical_grid_grouped_no_comma(**interface: Any) -> str: + # This is a deprecated alias for vertical_grid_grouped above. This function + # needs to exist for backwards compatibility but should never get called. + raise NotImplementedError + + +@_wrap_mode +def noqa(**interface: Any) -> str: + _imports = ", ".join(interface["imports"]) + retval = f"{interface['statement']}{_imports}" + comment_str = " ".join(interface["comments"]) + if interface["comments"]: + if ( + len(retval) + len(interface["comment_prefix"]) + 1 + len(comment_str) + <= interface["line_length"] + ): + return f"{retval}{interface['comment_prefix']} {comment_str}" + if "NOQA" in interface["comments"]: + return f"{retval}{interface['comment_prefix']} {comment_str}" + return f"{retval}{interface['comment_prefix']} NOQA {comment_str}" + + if len(retval) <= interface["line_length"]: + return retval + return f"{retval}{interface['comment_prefix']} NOQA" + + +@_wrap_mode +def vertical_hanging_indent_bracket(**interface: Any) -> str: + if not interface["imports"]: + return "" + statement = vertical_hanging_indent(**interface) + return f"{statement[:-1]}{interface['indent']})" + + +@_wrap_mode +def vertical_prefix_from_module_import(**interface: Any) -> str: + if not interface["imports"]: + return "" + + prefix_statement = interface["statement"] + output_statement = prefix_statement + interface["imports"].pop(0) + comments = interface["comments"] + + statement = output_statement + statement_with_comments = "" + for next_import in interface["imports"]: + statement = statement + ", " + next_import + statement_with_comments = isort.comments.add_to_line( + comments, + statement, + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + if ( + len(statement_with_comments.split(interface["line_separator"])[-1]) + 1 + > interface["line_length"] + ): + statement = ( + isort.comments.add_to_line( + comments, + output_statement, + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + + f"{interface['line_separator']}{prefix_statement}{next_import}" + ) + comments = [] + output_statement = statement + + if comments and statement_with_comments: + output_statement = statement_with_comments + return str(output_statement) + + +@_wrap_mode +def hanging_indent_with_parentheses(**interface: Any) -> str: + if not interface["imports"]: + return "" + + line_length_limit = interface["line_length"] - 1 + + interface["statement"] += "(" + next_import = interface["imports"].pop(0) + next_statement = interface["statement"] + next_import + # Check for first import + if len(next_statement) > line_length_limit: + next_statement = ( + isort.comments.add_to_line( + interface["comments"], + interface["statement"], + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + + f"{interface['line_separator']}{interface['indent']}{next_import}" + ) + interface["comments"] = [] + interface["statement"] = next_statement + while interface["imports"]: + next_import = interface["imports"].pop(0) + if ( + interface["line_separator"] not in interface["statement"] + and "#" in interface["statement"] + ): # pragma: no cover # TODO: fix, this is because of test run inconsistency. + line, comments = interface["statement"].split("#", 1) + next_statement = ( + f"{line.rstrip()}, {next_import}{interface['comment_prefix']}{comments}" + ) + else: + next_statement = isort.comments.add_to_line( + interface["comments"], + interface["statement"] + ", " + next_import, + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + current_line = next_statement.split(interface["line_separator"])[-1] + if len(current_line) > line_length_limit: + next_statement = ( + isort.comments.add_to_line( + interface["comments"], + interface["statement"] + ",", + removed=interface["remove_comments"], + comment_prefix=interface["comment_prefix"], + ) + + f"{interface['line_separator']}{interface['indent']}{next_import}" + ) + interface["comments"] = [] + interface["statement"] = next_statement + return f"{interface['statement']}{',' if interface['include_trailing_comma'] else ''})" + + +@_wrap_mode +def backslash_grid(**interface: Any) -> str: + interface["indent"] = interface["white_space"][:-1] + return hanging_indent(**interface) + + +WrapModes = enum.Enum( # type: ignore + "WrapModes", {wrap_mode: index for index, wrap_mode in enumerate(_wrap_modes.keys())} +) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/__init__.py new file mode 100644 index 0000000..9fac279 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/__init__.py @@ -0,0 +1,6 @@ +"""A Python port of Markdown-It""" + +__all__ = ("MarkdownIt",) +__version__ = "4.0.0" + +from .main import MarkdownIt diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..53e525c4d458dc92297761262c2a0375be33c9ab GIT binary patch literal 331 zcmXwzzfQw25XS8$RUuK?Iv{n3*fJz8f4U*07BN%;gw!pIW#T}sICf;4RO!^W;2C%p zUI02FAtA9Lb?X8SYQN#``*gay-)pz)0jr_&J5#oQHesjM)~x&1JOc_6Kw$!DD``=O zLhcl9;zCfnVSCXZ1$VWXNfDG%nLs`SH$>%B&P6maAzXR8I5CU%Sv-gb-_TyY4cn^@ z##E*lH->O-jgN7aDb1v?!7T_As$qEn>xO8PqPbMLE=ihcG`)(hN8@2MHN>zqx|B4- zBSCnrnMQGyi3)LckIH|z)A;xVX=bv>F6ZRY?iX83%nZVq31%>k%X+hSUP$`HvkT?h fpAD<-+4AE+2;afchj+N_ydCtG{uk)0eLMLB;z3^j literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/_compat.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e460d47ddbac68480cce2f6e751d374716a43222 GIT binary patch literal 244 zcmX@j%ge<81g6aYGn9e!V-N=hm>>+s&jLWkbcPg$6viBeT*fFyMutizP3D&%X-&pk z+=+R4`6Y=ZnfZCeews|TxZ>l}N=r(MQsd)`n1M=GGJFQ9{FS6%o?nz*T#%TYTC5-J zs_WzEWU3ns(wMC4oS%{!@0gdEQ(2r@tgly=npdWulbNJnP+5|ZpJ%LRXry19S(2&? z)SR7|4%DBUSd^WTU!E7AS)w1GoS$2eSfW=@`HRCQH$SB`C)KWq185~95Ep|OAD9^# M8SgPD6|n(10OJ%wYybcN literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/_punycode.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/_punycode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c39acb7dbaca6ae2605ea11580af20e3b2fea06 GIT binary patch literal 2629 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 C!5+^5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_block.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_block.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..362a17863d4fc41bac17364f07e32d68f1ac85c5 GIT binary patch literal 4095 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_inline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/parser_inline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67d2c62e3c1fed49748532af105b38987f4dfc99 GIT binary patch literal 5345 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 HHc#h&VIPI# literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/renderer.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/renderer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f146e93b7ba2cd4b521829e59731cc71a1021339 GIT binary patch literal 11833 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 s9!abld17?uRCvv-fHGcEd75UZ^ zXJ)ySXr-6no%=ZVan3#GJLlg0S!Jc4KsqS=X7oRs2>Dm6ILT!dxYZdb%oBwuT!JLI z0gl5mpWu_ifRGdiL{=9Pt^qf+iwRHCJK#1CQ@~KTeP&p}t1HZyrm@@-%Dy12+5!X_Bm^Z!03*|6y`~e=zN@9Bu0rQM+|!# zgg6_b0mBv!ff3HeFGBeu>@54u<63H5rG|7#yRN1pvSCnN(p5u}b!lkmyp~djh9r$b z`Rdi{>SUKRE+;bTV3!n$L;xQxQ_e+p2jmC8;o=j71T-BwRmP`ZJ*W!t| zF)2;NjZrC+)(xu4NhvAQ>xwp!>W;%$92yo(e_W5JbVE+XR8vgEb;A^KZjhjht*axe z($k@y35{OY({fDJdoG^nKG*l!!S0JF-&pr?O;MwLDLFBz$Mv4bxSAU8NyM-9q$iD0 zEww+gcVCYVvh9Y!*X0oy@9ZNQH+l>vg!H6Y8MDL^Wdfm9u&fXM_3e;NlgEBi5h?^j zGrmWj(A@U#)jjaEJ_^>(o%rKFSn@U(0@c&!R)LUQ!j0<*&Cp|5b&}gEaI4<}cIJsn z1~`Qb@Na|Cs)E8Ffo`8w7VNSJ?JlbfYAKE}LvW_EzN-5(w{yA!9>oJAy!L3{fLHND zJz&=>27F2-)T>JUekBO?YP%j92(X>hl-^ zWKvFwrwqu46Pj!cnl7eX=d;zQ=~tm^5c<&MOd%@mF)GEIS=>ZXV#Gw`;q(%-Y%*x67-6;lM1*G*R(7re{UovbY-CsiF~EJ@ax z`AVD02A|pGn?RW@^#zu!5v=&yOx7pcP{0F`tn)2t6wF&X-_uYjKVLYFay@`vOk*YY zXVo!(_B5C)Y&!*RZ|9nm3rlEkk~S3v_uO3<>@iebV^p>IuvOMNUrPvG7{sMA zi3BnU=d5TDo*|GhhJjz+(raNvHRxVgW1YFPhs1-j}v-f}#u-@LN<+2#eXwx_($7*vg^mYKEJfwdv@vY>q~X#Rt3JXrbzfuP0>xZ?poY*r~S@}J1;M_ z?Vsttb$0gboN>RRWuF?X)~kY@!^(;a*K_~_>x_=0 zM}V6W+U|=`=j@$NSY_y+AYrfk9}q3r8jAX8!2;au%i}});*Q|co0ciu%$+Mm zuhf^&HPC45g}`Y>v_bvR{Wu1bJ+4gkdZiO7JwsthSXRpz=?u6W7-NN`h&bxI8JPi> zF)AB2<|)#($?|uB(gL{1NpN85dvY?JfH;OlWReUE*t=5|+!k|iK!*X%bK85y7<#2q zO}j1)1G!@%h|WVpmgOP!&`@ayHj9@1fMBGU{e&Y;jB2_nQ40rR@cJMrD%e;u4);Rn zR6zn%l2fIbkQdy(<(-kKgqj5OM4><|pU5b{%TCw^&A{7B82z?FwRGBQJt-%2Y+iE# zINup~YJvR#i3R^4^mT!3T8`7T5jHR77_g2b5G1_cD47_r;+$C=m>H&8a%~n|ciowk z4b!NiQrOM9;fRK+tROh1G@69df0Mn*tdmUnh%PA&4h)0>hZ56(J*Gc;>ll!In|qybEW{ez0S3qAxQ%@KT1+v^Z%pBs@-Y7$Zl2@F2RlVF zN&Zrp;3&)skr?xerU!y3JYsm!;v;)ZZkWNn4!BArX`02yPkl#5)Rg*OnjXzMw>LeC z+((YUjT}z-Xrx5(Ef~n2o__uBWe(ROb_bzhZcYh2|k@v)V@(+i9Fr44{%7eC} z%dJk++_!zLR)~I{wnG#1ezp^2JE7;W^$ccbA%m_H@Ieo#CKR0>#Ew_6 z#RIT~au55hP`?FxO5@h%GClApgO9ZIZKSx2V_ggrb#$6TU=H|i-+$;8Xe))w)(TV5 zq;ud`pTHAhgw(d>Td({*|Bt?(`j+0h{IlSL)+_m%D>I&lfzZQ-j(o@Edm}$g{vi3+ z+JlbE`G(6gryd3x7G7Q)S>D_Y@lI3Q!o>Z?&c^}?)vtv2+-qD8AO0fz>T>wie7Nt6 z`qw_LTMRAs&Aq$O{%6Da`qzpcQdu{5YPq5XA1^mAjNfToZrk&)wfoM)G%LpyRxul zdtq~Xp}o5x?JjKFUks2?>wgn>sOC!nXko&$%N1?KI#S&@Q}txEjWitRo_y(tE*&q7 zf4jTtc%A$2dbS*I7S}!Cpy{$01ofW9AMhILgk4h*o^NElG_r9!_*%jCwGha%i!<8c zGYPKEc2Ec&ww`%d2=SvOsvK{7S-5(GXXUfa$8E1@xl(jKvTeuo5)1<7?r%9YbK-;Zg<#!G#gi`u(t4WH5d{9C zsm~=sKB3(UHyPQh{%wajX*!R=JA^P(Nt%B-K2 z5IV9uoS$p1UPYj|T6#)_pF!|N)qb^QP?2q4BZjS61YHuowU+1*nX;WFI`}1}OIrUs zkR@fDdysAMY13ErgV?`@TaIDI4vultVtS)dyxm2krau}@f;UfKxgr|HxXbPdMx$jv zOhuy>M7kJ6Qn(Zm>lTP1E8UD4!^T!DwP7Y<){fa$%(h_`#ta+{p)X;EPaEu+gdWAx zam?`Dj^U#jU{_QKwMI3C={~a^cB5flk|HxK12;wV%N!wpL{|KjH_jBq-&yfh+&Enj z+gB=E^I~g}7hT?B1=+p-PRC#Eyu0)B0}pnco<6Y@=*)|!i@X4xezK)~`uLJ>Q(lw` z;wvkmn&}fW`)`~ti2GKyc21vOs*>_zXF+^r zS68ZQru%2M-Z<|p*RpM4-$#c&Jan)B!REuz70HW-3*zCGnnsxWKwfMt@;ofIleSG|I(W7W^Q+E=~2YuBo`(zSiHm3QqfR*~k`LW@** z?PTG=p~A8L$H8t_Bfx)cW6^^pFKK8l`mp3D&BwT60E-nQw69o+r7F^Rw8(~36Mx5Q z2;08K0YrbvyIl3F0+b$O$r3qJ9g)4}m6-<`O1KKuXgC9xT~H$`K$96PkICd~F)HF= zA;g#g1)c`&=Lg&G!fz<(JDJttMTvG{hCi&Cz7n-{-iV)TI`Gtc#8Tg*RD%vs0SgR^ z0>^RxOgjFJ9QXxk`WMpn3ldy)`?yfCiSSj^HSf24qh+rD0k`RY`FD7(z6kd{4mswV KAF~Fw!v6uczgI#4 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/tree.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/tree.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e26f28ead4f57df0d5c0a8991d7c59779ac9c8b GIT binary patch literal 15444 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 ZoonB9*T4Hp`Tuw>xWw?M0;Rm0{{!5fdyxPD literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94c6994cadffe9caf8517b722c434e30997d16c5 GIT binary patch literal 8515 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 DfEwfi literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/_compat.py b/.venv/lib/python3.12/site-packages/markdown_it/_compat.py new file mode 100644 index 0000000..9d48db4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/_compat.py @@ -0,0 +1 @@ +from __future__ import annotations diff --git a/.venv/lib/python3.12/site-packages/markdown_it/_punycode.py b/.venv/lib/python3.12/site-packages/markdown_it/_punycode.py new file mode 100644 index 0000000..312048b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/_punycode.py @@ -0,0 +1,67 @@ +# Copyright 2014 Mathias Bynens +# Copyright 2021 Taneli Hukkinen +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +import codecs +from collections.abc import Callable +import re + +REGEX_SEPARATORS = re.compile(r"[\x2E\u3002\uFF0E\uFF61]") +REGEX_NON_ASCII = re.compile(r"[^\0-\x7E]") + + +def encode(uni: str) -> str: + return codecs.encode(uni, encoding="punycode").decode() + + +def decode(ascii: str) -> str: + return codecs.decode(ascii, encoding="punycode") # type: ignore + + +def map_domain(string: str, fn: Callable[[str], str]) -> str: + parts = string.split("@") + result = "" + if len(parts) > 1: + # In email addresses, only the domain name should be punycoded. Leave + # the local part (i.e. everything up to `@`) intact. + result = parts[0] + "@" + string = parts[1] + labels = REGEX_SEPARATORS.split(string) + encoded = ".".join(fn(label) for label in labels) + return result + encoded + + +def to_unicode(obj: str) -> str: + def mapping(obj: str) -> str: + if obj.startswith("xn--"): + return decode(obj[4:].lower()) + return obj + + return map_domain(obj, mapping) + + +def to_ascii(obj: str) -> str: + def mapping(obj: str) -> str: + if REGEX_NON_ASCII.search(obj): + return "xn--" + encode(obj) + return obj + + return map_domain(obj, mapping) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/cli/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/cli/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52bff8da67336bc9af18758a1caaadfaf051ea4c GIT binary patch literal 200 zcmX@j%ge<81g6aYGeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!O4l#XFUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6=EO)Sbz$uG}~&n(eT&dJn|kI&4@EQycTE2#X%VUwGmQks)$SHudm Tml24IL5z>gjEsy$%s>_Z4OTT9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/parse.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/cli/__pycache__/parse.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfab398163ac3a999f4c894df573b351920058a1 GIT binary patch literal 4452 zcmb_fO>7&-6`tiT$=xL>QIs4?vJ-DCB@qpgtdh8OQ<<%-AIOa@Cy`o2bPQt6T}hNl zE;GBdOhRteHbCXVXcQEMRU`p&lwkw$vBx;*trsblA!Vzg1(F_mVxzMXmVX7=ry@BPdlLm`$HL^@g zGs;#%{ySr_A2zj!^ z0efLm$b@SN)b_{CP%3agJB!VNz zgi3HWCT^oB`&x3rpjS=CN=}Z(&kvnF6`w>~X5+(#re}tVYQAFT%w*!4Uc8pf=dL76 z6>H8YzLXevF=^&3Jr0YnsbMo!4g_~$6*+Vo0x;NV zAdGL5MKVGzhX}dB9XJ=RY1Lb;0;!NY+ytC{ux_Uenl9#{;J(Bb8+LT8L&LzOL6#&3{;=^BaT=Dgg0b+6s z5Spe52fvE%IzLSoxE^A$Acs5k68b%kSZEN|=3Cre^Er>F{8-cci^K_9u5Pdk9F)`M z(P)n~O=?O`gDwli(IzHWQ?dfhi6g4wIx&kLEJ|qQLP@daAi$KZQu$E4z=gI@wq{P- zzT9jPq7McO2oHvqE6&EAc}e(1$(~ng5WnO{S}gb?SYrIe@#5FofvpmzA0~s zof~53`qB8>+*d`z! zNSki~if?!z%#wLD(_`&GkoCA2(u68Vxg(C;>H}1xXR-#UJ_C4c_=+Z27!6o+b(wFV z)twX!6NYyDB zq3rlT+0-fIT!4DN;$YuRko^iIOvtvFJE>mMRY;j^9gE+}8>6qChg4e0>kfM?=BWya zL_(RuPAZjBruI3R9s}hlhQ6vKj{;)BQxX#~$qq4yXXXIz%z4xj_yQoGsbY(x7snX% zX%DVP7opDrv4wd9klyyHUb$kZR6B>o0xg%o5o{4+vZWU-6Y>T4rtK?HqfoLAI|CjB zMS}PO>p%BI67Kw(@KQJWN$&^U?;qRh>fh+ks2Uc-S?x5gGb~J_`PDyS;OHWINjRtMQ#y1zbmp;IjVB;PKCcZQveKWZy)ue((9y z?WHnRcL`MmV5P&JQ-oA1o-IR6=0BurTSd1`(D2khk0+nQtJv!6NqrH@mR1 zq=E6Kgyw}z;BUtGd*a>t8#v4}Pg)^qvKF`(ba!TQPw z1F5?3U=sSsx{^1tSKlrhmd=Kyl&iKfs25UfgTW;929qTwkUY3RKC4>Ux&Qup@cN;V z3!{mG=JsX`cmqX73cg6wuP5fLLS6=c3~0KUrMVK;)sP%Zxx6uJx6T-}pjxmblg+E9 zS@p!PRi${mUNPJLdIvJA50Aho(pLa&PJzXptoEBFJ)4`UKvaUXit}n-$>&TW3Ik-P}MXn zm>KHqfO{D*ElRP(fhrK|83;SLKdo2DP720(CNu&a^QSlgL?yAExx6(+RMZn*b<@}LUdJFy?Q_P zhfC{1bW?bJTaX?0w%ES<()x3gHJ*4o_aHI*un>-H1&(b5j;&5T44haOPB@h&=+S8C zwJe{epmQ*iSoNxpU=7B7*vN{IYp{%AO*_D?kQhHvZ8_`))q(%n3&5T%_7B4w?hvN1 zW6U@(D3V$Do83U*G9XB|E-hbJeP&(m+Z19jT$j&05>jlLEoL%!gUDp)aa@a+h?u}m zYrn(2;a!4rysRuL6A(qP8neo@X!GF8Ac^_B8gg%iOp=}ho-Lp>2skwuA_3X-ReXWx zK;L;89mh$Os772ICMNLSh4-ge)b?jGnvu<9Y&nyeDT4+&s0@cf==Xuxtyv?V*O^n8 z3H3^r;+at_@ac0nA8I4h!v{DCc8Ow{6iv#mQ_kgt6^Iyt8AO?B(PVhp16}ay zcg>bCGG(CB)hXVV=ok{LyxE!Ti-QG2E9dnT{SojG7v>_68qaauSAxI^{|FMU=L^#M z7n1lBk^e?|{!Cu@Yq)Ri=vwIh>+3DwSqkj=d|YTZ;^B_($}-on+a2K|yC)T{XLpSA zaNn=VL int: + namespace = parse_args(args) + if namespace.filenames: + convert(namespace.filenames) + else: + interactive() + return 0 + + +def convert(filenames: Iterable[str]) -> None: + for filename in filenames: + convert_file(filename) + + +def convert_file(filename: str) -> None: + """ + Parse a Markdown file and dump the output to stdout. + """ + try: + with open(filename, encoding="utf8", errors="ignore") as fin: + rendered = MarkdownIt().render(fin.read()) + print(rendered, end="") + except OSError: + sys.stderr.write(f'Cannot open file "{filename}".\n') + sys.exit(1) + + +def interactive() -> None: + """ + Parse user input, dump to stdout, rinse and repeat. + Python REPL style. + """ + print_heading() + contents = [] + more = False + while True: + try: + prompt, more = ("... ", True) if more else (">>> ", True) + contents.append(input(prompt) + "\n") + except EOFError: + print("\n" + MarkdownIt().render("\n".join(contents)), end="") + more = False + contents = [] + except KeyboardInterrupt: + print("\nExiting.") + break + + +def parse_args(args: Sequence[str] | None) -> argparse.Namespace: + """Parse input CLI arguments.""" + parser = argparse.ArgumentParser( + description="Parse one or more markdown files, " + "convert each to HTML, and print to stdout", + # NOTE: Remember to update README.md w/ the output of `markdown-it -h` + epilog=( + f""" +Interactive: + + $ markdown-it + markdown-it-py [version {__version__}] (interactive) + Type Ctrl-D to complete input, or Ctrl-C to exit. + >>> # Example + ... > markdown *input* + ... +

    Example

    +
    +

    markdown input

    +
    + +Batch: + + $ markdown-it README.md README.footer.md > index.html +""" + ), + formatter_class=argparse.RawDescriptionHelpFormatter, + ) + parser.add_argument("-v", "--version", action="version", version=version_str) + parser.add_argument( + "filenames", nargs="*", help="specify an optional list of files to convert" + ) + return parser.parse_args(args) + + +def print_heading() -> None: + print(f"{version_str} (interactive)") + print("Type Ctrl-D to complete input, or Ctrl-C to exit.") + + +if __name__ == "__main__": + exit_code = main(sys.argv[1:]) + sys.exit(exit_code) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c56d5878dd652b28042ea8edc1b6d6275a0e7941 GIT binary patch literal 203 zcmX@j%ge<81g6aYGeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!%F-{-FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6=EO)Sbz$uG}~&n(eT&d<%w&(n{O&&U5r~UHjE~HWjEqIhKo$Va5;kuD literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/entities.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/entities.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f730006c6b3ff694d3db696ade616bff7c6f21a GIT binary patch literal 563 zcmYL_ziSjh6vyAp?)|{aX(LD=#e&r#yPGJ-LLz}nB1jS?cvgq9jI)C`d;5!>F~@1P zuu~AOurQ5%G$2^{M_3(K9Bw6~vJ!b*0elyuu|5MP5yX zOnK76xn69@D}}!h>M^jsKKJcmoDM`nC=+(~j(OPGX`5Y1B&X(X>@l|!kzgdau&rYj z9oqqaVkaZnkE2`G#!XwO9i|!{kf&-sBz1kZeygoS9 brYmcwY_f8F+UUNl|5jO4l+UNN&Xww4j|!9W literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_blocks.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2618cdf0754769c6a00828004c6debaa3f3277d2 GIT binary patch literal 787 zcmX|9&2H2%5Kf%k>}snDc!NlsDzO{2r5q3{DphZVOK-hIUfW5`I(D!pTP-)9f;%^! zg*TWhF97t`3yiaXrSHoZdwx9Q`F41?NNAm9zgx_b9<)?AS@WQ9 z9=UcFa54IP7#zeiCwDj#ya(+p=0aIe9y8$#&WRfDh8~%eIFkyvHUV>~xp5696kEzYgmCqxztbUo|~ z%t^)i(;lZirz>F|6!)UVSx{m;nuVdGSK8qe_&PQh#?~>ABx7mFpd~q8cM2NFhJmLY z&&3AWVBQ@uoK=-{qN?ycVof3p$jmt+LzF=yloepmp|ib$n6=s&h%s8{UwAoG9t;Y^9;x&sZ7zR_zC7)$bnW luR13Oqt5*mWlss=3DJ)%P1B!@rITNa*N@nz1Aj@oe*l@PB7Fb= literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_re.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/html_re.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f12a103a84415de04888ad89b2b63cfb3bfcb95 GIT binary patch literal 1343 zcmZ`%O-$oP6duQM9RGz7mcO*SBCrS&WCCng+NB|BO3`*D7AoLSIX14zj3D6HY3#6I zaqzJ{wYP3BEyt~T;n?FIEA_HgFR4$F_O!P|+_-GVCTy#U&f&f9ee=Ed&DisYAg}EQj$RqUgUc z6=EicQVg;v64qQ0Q7puKxJN?)(P5nk>o^>c7?_k;I4E&2CGl`b5+VQ*hackB|15Y1 zh0cBd(5;WzaOU;7Lf1YYy7sXUYQnBx@m+%@4ct2O`X0&uI|oX>?;kvkWQU!5TWBAh zG^`2RoTzJd^M|EV_*4w~p!%0^((J70Px~%lkg7|oOUKN#`GgR4~oLMOp zzmiWD7DV}EX+fED=$XpyjFOvi=t;b-x>pE*aTZC{fu4Yz$2c+8aZDoI(G|l{&o>o6rJfpMij+T@hr%Ad}UWu&cy48Q&Gw0 zM6u{33zd>mku7;!$(1k+n9TdJScXT96*6*V^|SI$S+3kjWktr?=q{d|P5HE{LbIx> zex!+fMzigvYG`%j$6LnNEz?HO7p$7GuOs!Qgl22+pOOt*jy1j2Z?EmOY}{@(kfGYz zzRy&3(?TJnt7bj;BR<<`npI>4gMAL7s;)IPyJi|bRfU?Z`GK%e(~-}8zVmEd-6=m& zx7Pg8u-N=!Z9`pM-`rjc`R$!8f8@4}t+ijkW$@>(YWe48^T=vw*fPJpCa#x1eJF0* z*s&_Enh>dFL(@;Knw6hFM#gboukGaQI*GAw_P#s(_OKmg+p$EC zB&dN-jOkGkitWY#o$S#hmF&g=&Gwim=2$={dK^V1x_rP1G0Y_ZJ=hzdsljeC;0EKE zO94978)B$b_fEhKvzQwJG~XNLD84%uaN|71UXqD{h|6{Ffe$k0kG%BU%c_@Nym;!R jS6-1`di6CJZI4gANd27tG5z}f$A69&JTTH6!(Z@k_2_Wc literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/common/__pycache__/normalize_url.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7608a83604c61248263bf8849905a3442d484f7a GIT binary patch literal 3334 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 A;s5{u literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/entities.py b/.venv/lib/python3.12/site-packages/markdown_it/common/entities.py new file mode 100644 index 0000000..14d08ec --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/entities.py @@ -0,0 +1,5 @@ +"""HTML5 entities map: { name -> characters }.""" + +import html.entities + +entities = {name.rstrip(";"): chars for name, chars in html.entities.html5.items()} diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py b/.venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py new file mode 100644 index 0000000..8a3b0b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py @@ -0,0 +1,69 @@ +"""List of valid html blocks names, according to commonmark spec +http://jgm.github.io/CommonMark/spec.html#html-blocks +""" + +# see https://spec.commonmark.org/0.31.2/#html-blocks +block_names = [ + "address", + "article", + "aside", + "base", + "basefont", + "blockquote", + "body", + "caption", + "center", + "col", + "colgroup", + "dd", + "details", + "dialog", + "dir", + "div", + "dl", + "dt", + "fieldset", + "figcaption", + "figure", + "footer", + "form", + "frame", + "frameset", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "head", + "header", + "hr", + "html", + "iframe", + "legend", + "li", + "link", + "main", + "menu", + "menuitem", + "nav", + "noframes", + "ol", + "optgroup", + "option", + "p", + "param", + "search", + "section", + "summary", + "table", + "tbody", + "td", + "tfoot", + "th", + "thead", + "title", + "tr", + "track", + "ul", +] diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/html_re.py b/.venv/lib/python3.12/site-packages/markdown_it/common/html_re.py new file mode 100644 index 0000000..ab822c5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/html_re.py @@ -0,0 +1,39 @@ +"""Regexps to match html elements""" + +import re + +attr_name = "[a-zA-Z_:][a-zA-Z0-9:._-]*" + +unquoted = "[^\"'=<>`\\x00-\\x20]+" +single_quoted = "'[^']*'" +double_quoted = '"[^"]*"' + +attr_value = "(?:" + unquoted + "|" + single_quoted + "|" + double_quoted + ")" + +attribute = "(?:\\s+" + attr_name + "(?:\\s*=\\s*" + attr_value + ")?)" + +open_tag = "<[A-Za-z][A-Za-z0-9\\-]*" + attribute + "*\\s*\\/?>" + +close_tag = "<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>" +comment = "" +processing = "<[?][\\s\\S]*?[?]>" +declaration = "]*>" +cdata = "" + +HTML_TAG_RE = re.compile( + "^(?:" + + open_tag + + "|" + + close_tag + + "|" + + comment + + "|" + + processing + + "|" + + declaration + + "|" + + cdata + + ")" +) +HTML_OPEN_CLOSE_TAG_STR = "^(?:" + open_tag + "|" + close_tag + ")" +HTML_OPEN_CLOSE_TAG_RE = re.compile(HTML_OPEN_CLOSE_TAG_STR) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py b/.venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py new file mode 100644 index 0000000..92720b3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py @@ -0,0 +1,81 @@ +from __future__ import annotations + +from collections.abc import Callable +from contextlib import suppress +import re +from urllib.parse import quote, unquote, urlparse, urlunparse # noqa: F401 + +import mdurl + +from .. import _punycode + +RECODE_HOSTNAME_FOR = ("http:", "https:", "mailto:") + + +def normalizeLink(url: str) -> str: + """Normalize destination URLs in links + + :: + + [label]: destination 'title' + ^^^^^^^^^^^ + """ + parsed = mdurl.parse(url, slashes_denote_host=True) + + # Encode hostnames in urls like: + # `http://host/`, `https://host/`, `mailto:user@host`, `//host/` + # + # We don't encode unknown schemas, because it's likely that we encode + # something we shouldn't (e.g. `skype:name` treated as `skype:host`) + # + if parsed.hostname and ( + not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR + ): + with suppress(Exception): + parsed = parsed._replace(hostname=_punycode.to_ascii(parsed.hostname)) + + return mdurl.encode(mdurl.format(parsed)) + + +def normalizeLinkText(url: str) -> str: + """Normalize autolink content + + :: + + + ~~~~~~~~~~~ + """ + parsed = mdurl.parse(url, slashes_denote_host=True) + + # Encode hostnames in urls like: + # `http://host/`, `https://host/`, `mailto:user@host`, `//host/` + # + # We don't encode unknown schemas, because it's likely that we encode + # something we shouldn't (e.g. `skype:name` treated as `skype:host`) + # + if parsed.hostname and ( + not parsed.protocol or parsed.protocol in RECODE_HOSTNAME_FOR + ): + with suppress(Exception): + parsed = parsed._replace(hostname=_punycode.to_unicode(parsed.hostname)) + + # add '%' to exclude list because of https://github.com/markdown-it/markdown-it/issues/720 + return mdurl.decode(mdurl.format(parsed), mdurl.DECODE_DEFAULT_CHARS + "%") + + +BAD_PROTO_RE = re.compile(r"^(vbscript|javascript|file|data):") +GOOD_DATA_RE = re.compile(r"^data:image\/(gif|png|jpeg|webp);") + + +def validateLink(url: str, validator: Callable[[str], bool] | None = None) -> bool: + """Validate URL link is allowed in output. + + This validator can prohibit more than really needed to prevent XSS. + It's a tradeoff to keep code simple and to be secure by default. + + Note: url should be normalized at this point, and existing entities decoded. + """ + if validator is not None: + return validator(url) + url = url.strip().lower() + return bool(GOOD_DATA_RE.search(url)) if BAD_PROTO_RE.search(url) else True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/common/utils.py b/.venv/lib/python3.12/site-packages/markdown_it/common/utils.py new file mode 100644 index 0000000..11bda64 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/common/utils.py @@ -0,0 +1,313 @@ +"""Utilities for parsing source text""" + +from __future__ import annotations + +import re +from re import Match +from typing import TypeVar +import unicodedata + +from .entities import entities + + +def charCodeAt(src: str, pos: int) -> int | None: + """ + Returns the Unicode value of the character at the specified location. + + @param - index The zero-based index of the desired character. + If there is no character at the specified index, NaN is returned. + + This was added for compatibility with python + """ + try: + return ord(src[pos]) + except IndexError: + return None + + +def charStrAt(src: str, pos: int) -> str | None: + """ + Returns the Unicode value of the character at the specified location. + + @param - index The zero-based index of the desired character. + If there is no character at the specified index, NaN is returned. + + This was added for compatibility with python + """ + try: + return src[pos] + except IndexError: + return None + + +_ItemTV = TypeVar("_ItemTV") + + +def arrayReplaceAt( + src: list[_ItemTV], pos: int, newElements: list[_ItemTV] +) -> list[_ItemTV]: + """ + Remove element from array and put another array at those position. + Useful for some operations with tokens + """ + return src[:pos] + newElements + src[pos + 1 :] + + +def isValidEntityCode(c: int) -> bool: + # broken sequence + if c >= 0xD800 and c <= 0xDFFF: + return False + # never used + if c >= 0xFDD0 and c <= 0xFDEF: + return False + if ((c & 0xFFFF) == 0xFFFF) or ((c & 0xFFFF) == 0xFFFE): + return False + # control codes + if c >= 0x00 and c <= 0x08: + return False + if c == 0x0B: + return False + if c >= 0x0E and c <= 0x1F: + return False + if c >= 0x7F and c <= 0x9F: + return False + # out of range + return not (c > 0x10FFFF) + + +def fromCodePoint(c: int) -> str: + """Convert ordinal to unicode. + + Note, in the original Javascript two string characters were required, + for codepoints larger than `0xFFFF`. + But Python 3 can represent any unicode codepoint in one character. + """ + return chr(c) + + +# UNESCAPE_MD_RE = re.compile(r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])') +# ENTITY_RE_g = re.compile(r'&([a-z#][a-z0-9]{1,31})', re.IGNORECASE) +UNESCAPE_ALL_RE = re.compile( + r'\\([!"#$%&\'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])' + "|" + r"&([a-z#][a-z0-9]{1,31});", + re.IGNORECASE, +) +DIGITAL_ENTITY_BASE10_RE = re.compile(r"#([0-9]{1,8})") +DIGITAL_ENTITY_BASE16_RE = re.compile(r"#x([a-f0-9]{1,8})", re.IGNORECASE) + + +def replaceEntityPattern(match: str, name: str) -> str: + """Convert HTML entity patterns, + see https://spec.commonmark.org/0.30/#entity-references + """ + if name in entities: + return entities[name] + + code: None | int = None + if pat := DIGITAL_ENTITY_BASE10_RE.fullmatch(name): + code = int(pat.group(1), 10) + elif pat := DIGITAL_ENTITY_BASE16_RE.fullmatch(name): + code = int(pat.group(1), 16) + + if code is not None and isValidEntityCode(code): + return fromCodePoint(code) + + return match + + +def unescapeAll(string: str) -> str: + def replacer_func(match: Match[str]) -> str: + escaped = match.group(1) + if escaped: + return escaped + entity = match.group(2) + return replaceEntityPattern(match.group(), entity) + + if "\\" not in string and "&" not in string: + return string + return UNESCAPE_ALL_RE.sub(replacer_func, string) + + +ESCAPABLE = r"""\\!"#$%&'()*+,./:;<=>?@\[\]^`{}|_~-""" +ESCAPE_CHAR = re.compile(r"\\([" + ESCAPABLE + r"])") + + +def stripEscape(string: str) -> str: + """Strip escape \\ characters""" + return ESCAPE_CHAR.sub(r"\1", string) + + +def escapeHtml(raw: str) -> str: + """Replace special characters "&", "<", ">" and '"' to HTML-safe sequences.""" + # like html.escape, but without escaping single quotes + raw = raw.replace("&", "&") # Must be done first! + raw = raw.replace("<", "<") + raw = raw.replace(">", ">") + raw = raw.replace('"', """) + return raw + + +# ////////////////////////////////////////////////////////////////////////////// + +REGEXP_ESCAPE_RE = re.compile(r"[.?*+^$[\]\\(){}|-]") + + +def escapeRE(string: str) -> str: + string = REGEXP_ESCAPE_RE.sub("\\$&", string) + return string + + +# ////////////////////////////////////////////////////////////////////////////// + + +def isSpace(code: int | None) -> bool: + """Check if character code is a whitespace.""" + return code in (0x09, 0x20) + + +def isStrSpace(ch: str | None) -> bool: + """Check if character is a whitespace.""" + return ch in ("\t", " ") + + +MD_WHITESPACE = { + 0x09, # \t + 0x0A, # \n + 0x0B, # \v + 0x0C, # \f + 0x0D, # \r + 0x20, # space + 0xA0, + 0x1680, + 0x202F, + 0x205F, + 0x3000, +} + + +def isWhiteSpace(code: int) -> bool: + r"""Zs (unicode class) || [\t\f\v\r\n]""" + if code >= 0x2000 and code <= 0x200A: + return True + return code in MD_WHITESPACE + + +# ////////////////////////////////////////////////////////////////////////////// + + +def isPunctChar(ch: str) -> bool: + """Check if character is a punctuation character.""" + return unicodedata.category(ch).startswith(("P", "S")) + + +MD_ASCII_PUNCT = { + 0x21, # /* ! */ + 0x22, # /* " */ + 0x23, # /* # */ + 0x24, # /* $ */ + 0x25, # /* % */ + 0x26, # /* & */ + 0x27, # /* ' */ + 0x28, # /* ( */ + 0x29, # /* ) */ + 0x2A, # /* * */ + 0x2B, # /* + */ + 0x2C, # /* , */ + 0x2D, # /* - */ + 0x2E, # /* . */ + 0x2F, # /* / */ + 0x3A, # /* : */ + 0x3B, # /* ; */ + 0x3C, # /* < */ + 0x3D, # /* = */ + 0x3E, # /* > */ + 0x3F, # /* ? */ + 0x40, # /* @ */ + 0x5B, # /* [ */ + 0x5C, # /* \ */ + 0x5D, # /* ] */ + 0x5E, # /* ^ */ + 0x5F, # /* _ */ + 0x60, # /* ` */ + 0x7B, # /* { */ + 0x7C, # /* | */ + 0x7D, # /* } */ + 0x7E, # /* ~ */ +} + + +def isMdAsciiPunct(ch: int) -> bool: + """Markdown ASCII punctuation characters. + + :: + + !, ", #, $, %, &, ', (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, @, [, \\, ], ^, _, `, {, |, }, or ~ + + See http://spec.commonmark.org/0.15/#ascii-punctuation-character + + Don't confuse with unicode punctuation !!! It lacks some chars in ascii range. + + """ + return ch in MD_ASCII_PUNCT + + +def normalizeReference(string: str) -> str: + """Helper to unify [reference labels].""" + # Trim and collapse whitespace + # + string = re.sub(r"\s+", " ", string.strip()) + + # In node v10 'ẞ'.toLowerCase() === 'Ṿ', which is presumed to be a bug + # fixed in v12 (couldn't find any details). + # + # So treat this one as a special case + # (remove this when node v10 is no longer supported). + # + # if ('ẞ'.toLowerCase() === 'Ṿ') { + # str = str.replace(/ẞ/g, 'ß') + # } + + # .toLowerCase().toUpperCase() should get rid of all differences + # between letter variants. + # + # Simple .toLowerCase() doesn't normalize 125 code points correctly, + # and .toUpperCase doesn't normalize 6 of them (list of exceptions: + # İ, ϴ, ẞ, Ω, K, Å - those are already uppercased, but have differently + # uppercased versions). + # + # Here's an example showing how it happens. Lets take greek letter omega: + # uppercase U+0398 (Θ), U+03f4 (ϴ) and lowercase U+03b8 (θ), U+03d1 (ϑ) + # + # Unicode entries: + # 0398;GREEK CAPITAL LETTER THETA;Lu;0;L;;;;;N;;;;03B8 + # 03B8;GREEK SMALL LETTER THETA;Ll;0;L;;;;;N;;;0398;;0398 + # 03D1;GREEK THETA SYMBOL;Ll;0;L; 03B8;;;;N;GREEK SMALL LETTER SCRIPT THETA;;0398;;0398 + # 03F4;GREEK CAPITAL THETA SYMBOL;Lu;0;L; 0398;;;;N;;;;03B8 + # + # Case-insensitive comparison should treat all of them as equivalent. + # + # But .toLowerCase() doesn't change ϑ (it's already lowercase), + # and .toUpperCase() doesn't change ϴ (already uppercase). + # + # Applying first lower then upper case normalizes any character: + # '\u0398\u03f4\u03b8\u03d1'.toLowerCase().toUpperCase() === '\u0398\u0398\u0398\u0398' + # + # Note: this is equivalent to unicode case folding; unicode normalization + # is a different step that is not required here. + # + # Final result should be uppercased, because it's later stored in an object + # (this avoid a conflict with Object.prototype members, + # most notably, `__proto__`) + # + return string.lower().upper() + + +LINK_OPEN_RE = re.compile(r"^\s]", flags=re.IGNORECASE) +LINK_CLOSE_RE = re.compile(r"^", flags=re.IGNORECASE) + + +def isLinkOpen(string: str) -> bool: + return bool(LINK_OPEN_RE.search(string)) + + +def isLinkClose(string: str) -> bool: + return bool(LINK_CLOSE_RE.search(string)) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py new file mode 100644 index 0000000..f4e2cd2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py @@ -0,0 +1,6 @@ +"""Functions for parsing Links""" + +__all__ = ("parseLinkDestination", "parseLinkLabel", "parseLinkTitle") +from .parse_link_destination import parseLinkDestination +from .parse_link_label import parseLinkLabel +from .parse_link_title import parseLinkTitle diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8826c0cc71fa769240552add65fee98473f9359 GIT binary patch literal 466 zcmY*UyH3L}6t$a{R28ilP#2amMrs-!s>Fbh%A-@oQl>0c8k^RN<3zUGDop$Z-@v!< z1w<-BVq!z;RtbR}UgZw=oO`d&J=YKQdJX94S|5{ljW4G7iPAS&?rCxdFz^9}KEx$# zu~KaL76h7?Svjuwm4a8;Mr`{w1lfjT-|Y0KJXAE{vUQz^RvHLN`M5QpJd%!;Z<_`& z)j5%h^1wXJ8^7H_Fd}TNzM_heSEz4spfI;-u)d(I;nJz*HbOWF5i%rTOp|7@4l(V5 z@Sjbg&$rfw%(xZ%{j5gWhS^9V&f&=$<8*pdJrc zCaLr~Gs0&cqa!cP)Fk1Do&5t(Qbk-Xj)Jk)$AO4&GUtdYZ$el~g!B-ioGOGmX|}2! n#|fS?av~bq+x%TNb$YWPgpXkNxz@k67vN|C+E1V@HudNe^{a~( literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_destination.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dff88b5acad80418074dc996a9771d1957890153 GIT binary patch literal 2123 zcmZ`)Pi)gx7=O=pZ0BE-G^K@!PC-7v+Tc%L_p{tD)c`wV0JG6a~H{|fMhH)8m=$}rot9jj2JYBWOfzF+#|-< zE^u;43CX;|%L4pFgLWo6oQqjg;|O2wKot!bse8E*;hLc0e+yo(f6z~CJt;{q#l;15^e8ca6i3er`@ zsB7j!)@7U&8y~C>jgD-JFLeV+%=p$1(%bp0><_)W01yP?np&*rmEI zqUl3f>~e;pEf~}y^Rkh@StVtoRxBw-{@U!smFe?mC$5`u^xye&`Lp7BNFfJFbgMFn)%5wFlE~#dIQPFA&G4eHKE2r0S|ENz2I~3Az4G6nryAfHaXaIMU+Q1t&cOi|C{ew76fyT{xnp;E7_^i9QdB z1T?)^Q6$NYNK&OL*EPz=Bx$K$)Pj?+BpF)OG$e^60pKAbDOgB?624DpPZ=>FtH?=? zH7`Bq*wC=ANOfEus-x=HNtg;krTC*-saMD#NF`dL{uctqE13?(xQi^j!kT+UdK74_ zaOR$k1v>o}m2vqv_(Uvd=H)m-E7-yoQwAim@OF!pkQI_y&x*0QYX~GCqc3sZS=K{@ z+b!-@lbEzGybpX};YQ#s{2qD~_zSvRpn&8MNHjL@3vS{)?14RO-%}oB!S{as`?o}b z*B7Y0EUtiN5Z%(dqx+dg81`<$`ga}=`7r2iB-p(Qyzk4A|M_z0bzDEjy=?bUPwn&g zGGIkL+?d4&Rp5aOmtoeBepX|iMilnNz=x!#4ZTaFdZT)HeaT|2{gt7XAM_Dluf)4* z0NL7Cy*De8jn8+dpgvt%zb>7g-E%;`?0yTB(Ahv}e|IyK{6q;f8|r3(WO@G~(6014 zoY2Y>ib3eZ$O?oGH2>%jaBj#ji^QZak&ZE!E5XokLz;3!(G1#G8UOPhnLFf7gDWr$ zF1#A7gx*dcqVXp<3@<*GXwGiOhwgmSy!cc|+2ie_Tf+ODu}xvz5u>f8+hU7#22%Fi zT4g&u+Ft0Cw$dkB7o0@eHrFg?WYmtojUUZ)ChvW1^S?#5M~`m|{~mgb{|G;xd6NBP zYjm1!JBKr{ggt;AAFRW6iVuX1W1E>tCz-aFeid!jNgmvZCG5%DpSEUtM^IwWp1V`& zjicmnE8Y`Pe4sh&MB=uvHnE*J)E@5~-AatNxSeRCHPt@TIdgx?iKTixiY4u_wU63k zow55TVF%9bGiy`rna+`WbDis(hx^tW_`$KQ#EA`gGjYmE9)RTdS39wxzy_@CFK%CM z%{qx8o2)JS0r+^Z)yA+z4Fj#6ehzzQQFOo-?o9MPL}J`#Z&^;_Kr8MDF&p1n_V}l% z!|ks+vl~aBjOMmd`R2vd%T8*@Tat9Sc5I(AFdN~Nmj>ZYn0 z#A_z6kGvsEo5^KW-Si4i=$L;shhK_Q{_s9WPQn50VB=#TJr-m9jA1bMLPYrV3!cZr f&k&H_;CYM(JLw*x>&9t+eH_StjXd}Ey$k*Wkoo`B literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f429791608d2a62d13c7fe689ae41ffb7016d42b GIT binary patch literal 1436 zcmZ`(&2Jk;6rb^W*Xwl_$Nk6$RA^%wkrhg;fO3cgNCi2fD1;(cNKJ*Tjc0&?+LBBph5%tR^rbX(G`CNm7Z(G)WXHt*a#U zKwg!bs;O-;?UuzjH5}Wm8IH9^9ZmDAHaFHc+=_2|u3>S$QK#JStCnx9+l>20rD`#& z;!|eK?^&wdT+j%6&>A<-}n{I=!kGge|_K=QzGLZb<>UCsr;fN3aGZxG2N@Ov1KSDoBxJZ3eh{pgMKs z&Ri1@_WsYFu4d+_lNi(H+&2HTGYScB;OcaaBLWx91YTSiI7j}CNxdm?Ib#DWvvO_ni z6Df6z)hLTn4MsO%nTz*joXIgS-1k_GH>?Wfg;H^L`Nl^Jv!aph%IwD;q2(K{tHz?Q`eWv@d>Bk=J*K($er&9y%X^-DWZv;QWcs-}bH>h&4W=KPyXF&XclKHK z?E?kn#s;~b){}qFy%}E1cjfQW;rQgiTPQR7Z$Q6l`NQi-)x*mZ{l(tmwkmkzBKW<` z<@V=Ca7(me;w312s$3>srCg3CUP|5^+i)l^pH!cTzd|J0t{)}WJntl1KOpu7z)U>I zWA**IM}YAmn}Vt6E!%x@a;g`~ve+e{p F`41?qTXX;b literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d53ba411603dc16a4c13d60b51b492f8116b73e5 GIT binary patch literal 2409 zcmbtVT}T{P6u$GfGw!a@)%X{qnbbCMOLU2e^~DO-YF)5WY6xYUGTH8oI@#G7Gc%j0 zj9`PMt1-ktK@$q~(U6z4PkrorUy>N;bjX9Hh2opRKp`*fId^n5A${tFy>rgJ=ic+3 z@0@$~m&(d0fzi$VGx@tj$RDWekJz5D`zZ*kL?s!bGAe5@1vbMLxD3Y-mV881Zh@%$ z12(kI@D)Ujs}W65MJ=LA@T<^xRhShCQKK3^9#vxtLPnesl9jX7pJZ)ElMUU>%dYMk z+BV*jWP@mKGHVZ5s@CrYv7)Itx$KnIZy32fNc6Mkk?g(=>MGGlh5?MM%49e-qVfxT zhF4il7-v-hLwq>FQ=t3nGQAo!9JuwekTsWjO)oxONb+ zHMeM+qdDe~Uv$gCZ=V*%BT9K2f=9h<4>}9_K2!oa2RfdoV{f0|*JntQA0668H6TgB zt^mOX>WGbbvN0t#2_^=KILrSrRRki0@U21zMD2Er=w$Q3ksZHxgaqe&*@s2VmyZtNNm z15r^Rp#b$r87kH5&<X^y`SdOy6}opC8KH5l z_631YcnHl#g9sqi&51y8+^p>eVj(-N7m9@-I%R9uAS|e7iZxfRA~=RMLn-Tn+5^g% zIo>T-7xS~@kEFc zJtp3aMiuC8$bqPeRI4nbWAhlJaEOxwc9418WtMMHzX#m^?>G>7QkuQ@dZU)F>+Ym( z%9o)wFUuf&PK)!548{3{Y-i00?MzgLVcGJ2la;Yvb*t#e*iE3KWqn+}d{D%2k0Yzv zxNd5y+^*s4l3h!-HK%B}vNbLnS;v*NX)RZDb<0e4QU}{_0ma*=aRPS9HYQ{{3Dbpb zs73%EzPfVfwDDDh-4yeE&|$%{1s7UzI)Rgn6ZT#D^x&0ADDydJs1Ax4AC9oa9HBjO z1X|<;{42BH1&b#5IYR(xp6tX)ta^UnS-j@v@ciJGn0O?%>_kZ2iPh0Nqa|Uv!f!bF zYeW0vhW3(hE4~#wvT}N<&#!GPjr^HtUK?5;*i5vSB5)#JvvOgnZ*6>ozh^$I|LOdX zt<-8us$5AdMoWS(#Y$Hfr4m=R_3N5SLt70k;3d8lty~e8I-XTEt({tL+pIcO;{90F zO808-o!%$06Mkd!TK2A38eC5M@x<-)Qu@2*^@|&W58EES^WJ7t&*ON{t+e0J3y_o)djH*t4e?29%8ysAoLw9)4Q!S1H4%tXyxFnSN{+S8 z4?gAVeZJzG^o{hl&1)Ce2RGUtwRCPKQjhu6*J&Tf8wtB&J&>A|u%)Y34m)wqDikcU z6RN^+!t~P2;`5`8IN)^CrTMUr;~MsNnzNTuZ`jZK>`qw2(s4e9X@_GN<~LIR7wP&t xQq43zCot`_lVN6rdCqk)2?%C~ejA&^@2O None: + self.ok = False + self.pos = 0 + self.str = "" + + +def parseLinkDestination(string: str, pos: int, maximum: int) -> _Result: + start = pos + result = _Result() + + if charCodeAt(string, pos) == 0x3C: # /* < */ + pos += 1 + while pos < maximum: + code = charCodeAt(string, pos) + if code == 0x0A: # /* \n */) + return result + if code == 0x3C: # / * < * / + return result + if code == 0x3E: # /* > */) { + result.pos = pos + 1 + result.str = unescapeAll(string[start + 1 : pos]) + result.ok = True + return result + + if code == 0x5C and pos + 1 < maximum: # \ + pos += 2 + continue + + pos += 1 + + # no closing '>' + return result + + # this should be ... } else { ... branch + + level = 0 + while pos < maximum: + code = charCodeAt(string, pos) + + if code is None or code == 0x20: + break + + # ascii control characters + if code < 0x20 or code == 0x7F: + break + + if code == 0x5C and pos + 1 < maximum: + if charCodeAt(string, pos + 1) == 0x20: + break + pos += 2 + continue + + if code == 0x28: # /* ( */) + level += 1 + if level > 32: + return result + + if code == 0x29: # /* ) */) + if level == 0: + break + level -= 1 + + pos += 1 + + if start == pos: + return result + if level != 0: + return result + + result.str = unescapeAll(string[start:pos]) + result.pos = pos + result.ok = True + return result diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py new file mode 100644 index 0000000..c80da5a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py @@ -0,0 +1,44 @@ +""" +Parse link label + +this function assumes that first character ("[") already matches +returns the end of the label + +""" + +from markdown_it.rules_inline import StateInline + + +def parseLinkLabel(state: StateInline, start: int, disableNested: bool = False) -> int: + labelEnd = -1 + oldPos = state.pos + found = False + + state.pos = start + 1 + level = 1 + + while state.pos < state.posMax: + marker = state.src[state.pos] + if marker == "]": + level -= 1 + if level == 0: + found = True + break + + prevPos = state.pos + state.md.inline.skipToken(state) + if marker == "[": + if prevPos == state.pos - 1: + # increase level if we find text `[`, + # which is not a part of any token + level += 1 + elif disableNested: + state.pos = oldPos + return -1 + if found: + labelEnd = state.pos + + # restore old state + state.pos = oldPos + + return labelEnd diff --git a/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py new file mode 100644 index 0000000..a38ff0d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py @@ -0,0 +1,75 @@ +"""Parse link title""" + +from ..common.utils import charCodeAt, unescapeAll + + +class _State: + __slots__ = ("can_continue", "marker", "ok", "pos", "str") + + def __init__(self) -> None: + self.ok = False + """if `true`, this is a valid link title""" + self.can_continue = False + """if `true`, this link can be continued on the next line""" + self.pos = 0 + """if `ok`, it's the position of the first character after the closing marker""" + self.str = "" + """if `ok`, it's the unescaped title""" + self.marker = 0 + """expected closing marker character code""" + + def __str__(self) -> str: + return self.str + + +def parseLinkTitle( + string: str, start: int, maximum: int, prev_state: _State | None = None +) -> _State: + """Parse link title within `str` in [start, max] range, + or continue previous parsing if `prev_state` is defined (equal to result of last execution). + """ + pos = start + state = _State() + + if prev_state is not None: + # this is a continuation of a previous parseLinkTitle call on the next line, + # used in reference links only + state.str = prev_state.str + state.marker = prev_state.marker + else: + if pos >= maximum: + return state + + marker = charCodeAt(string, pos) + + # /* " */ /* ' */ /* ( */ + if marker != 0x22 and marker != 0x27 and marker != 0x28: + return state + + start += 1 + pos += 1 + + # if opening marker is "(", switch it to closing marker ")" + if marker == 0x28: + marker = 0x29 + + state.marker = marker + + while pos < maximum: + code = charCodeAt(string, pos) + if code == state.marker: + state.pos = pos + 1 + state.str += unescapeAll(string[start:pos]) + state.ok = True + return state + elif code == 0x28 and state.marker == 0x29: # /* ( */ /* ) */ + return state + elif code == 0x5C and pos + 1 < maximum: # /* \ */ + pos += 1 + + pos += 1 + + # no closing marker found, but this link title may continue on the next line (for references) + state.can_continue = True + state.str += unescapeAll(string[start:pos]) + return state diff --git a/.venv/lib/python3.12/site-packages/markdown_it/main.py b/.venv/lib/python3.12/site-packages/markdown_it/main.py new file mode 100644 index 0000000..bf9fd18 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/main.py @@ -0,0 +1,350 @@ +from __future__ import annotations + +from collections.abc import Callable, Generator, Iterable, Mapping, MutableMapping +from contextlib import contextmanager +from typing import Any, Literal, overload + +from . import helpers, presets +from .common import normalize_url, utils +from .parser_block import ParserBlock +from .parser_core import ParserCore +from .parser_inline import ParserInline +from .renderer import RendererHTML, RendererProtocol +from .rules_core.state_core import StateCore +from .token import Token +from .utils import EnvType, OptionsDict, OptionsType, PresetType + +try: + import linkify_it +except ModuleNotFoundError: + linkify_it = None + + +_PRESETS: dict[str, PresetType] = { + "default": presets.default.make(), + "js-default": presets.js_default.make(), + "zero": presets.zero.make(), + "commonmark": presets.commonmark.make(), + "gfm-like": presets.gfm_like.make(), +} + + +class MarkdownIt: + def __init__( + self, + config: str | PresetType = "commonmark", + options_update: Mapping[str, Any] | None = None, + *, + renderer_cls: Callable[[MarkdownIt], RendererProtocol] = RendererHTML, + ): + """Main parser class + + :param config: name of configuration to load or a pre-defined dictionary + :param options_update: dictionary that will be merged into ``config["options"]`` + :param renderer_cls: the class to load as the renderer: + ``self.renderer = renderer_cls(self) + """ + # add modules + self.utils = utils + self.helpers = helpers + + # initialise classes + self.inline = ParserInline() + self.block = ParserBlock() + self.core = ParserCore() + self.renderer = renderer_cls(self) + self.linkify = linkify_it.LinkifyIt() if linkify_it else None + + # set the configuration + if options_update and not isinstance(options_update, Mapping): + # catch signature change where renderer_cls was not used as a key-word + raise TypeError( + f"options_update should be a mapping: {options_update}" + "\n(Perhaps you intended this to be the renderer_cls?)" + ) + self.configure(config, options_update=options_update) + + def __repr__(self) -> str: + return f"{self.__class__.__module__}.{self.__class__.__name__}()" + + @overload + def __getitem__(self, name: Literal["inline"]) -> ParserInline: ... + + @overload + def __getitem__(self, name: Literal["block"]) -> ParserBlock: ... + + @overload + def __getitem__(self, name: Literal["core"]) -> ParserCore: ... + + @overload + def __getitem__(self, name: Literal["renderer"]) -> RendererProtocol: ... + + @overload + def __getitem__(self, name: str) -> Any: ... + + def __getitem__(self, name: str) -> Any: + return { + "inline": self.inline, + "block": self.block, + "core": self.core, + "renderer": self.renderer, + }[name] + + def set(self, options: OptionsType) -> None: + """Set parser options (in the same format as in constructor). + Probably, you will never need it, but you can change options after constructor call. + + __Note:__ To achieve the best possible performance, don't modify a + `markdown-it` instance options on the fly. If you need multiple configurations + it's best to create multiple instances and initialize each with separate config. + """ + self.options = OptionsDict(options) + + def configure( + self, presets: str | PresetType, options_update: Mapping[str, Any] | None = None + ) -> MarkdownIt: + """Batch load of all options and component settings. + This is an internal method, and you probably will not need it. + But if you will - see available presets and data structure + [here](https://github.com/markdown-it/markdown-it/tree/master/lib/presets) + + We strongly recommend to use presets instead of direct config loads. + That will give better compatibility with next versions. + """ + if isinstance(presets, str): + if presets not in _PRESETS: + raise KeyError(f"Wrong `markdown-it` preset '{presets}', check name") + config = _PRESETS[presets] + else: + config = presets + + if not config: + raise ValueError("Wrong `markdown-it` config, can't be empty") + + options = config.get("options", {}) or {} + if options_update: + options = {**options, **options_update} # type: ignore + + self.set(options) # type: ignore + + if "components" in config: + for name, component in config["components"].items(): + rules = component.get("rules", None) + if rules: + self[name].ruler.enableOnly(rules) + rules2 = component.get("rules2", None) + if rules2: + self[name].ruler2.enableOnly(rules2) + + return self + + def get_all_rules(self) -> dict[str, list[str]]: + """Return the names of all active rules.""" + rules = { + chain: self[chain].ruler.get_all_rules() + for chain in ["core", "block", "inline"] + } + rules["inline2"] = self.inline.ruler2.get_all_rules() + return rules + + def get_active_rules(self) -> dict[str, list[str]]: + """Return the names of all active rules.""" + rules = { + chain: self[chain].ruler.get_active_rules() + for chain in ["core", "block", "inline"] + } + rules["inline2"] = self.inline.ruler2.get_active_rules() + return rules + + def enable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> MarkdownIt: + """Enable list or rules. (chainable) + + :param names: rule name or list of rule names to enable. + :param ignoreInvalid: set `true` to ignore errors when rule not found. + + It will automatically find appropriate components, + containing rules with given names. If rule not found, and `ignoreInvalid` + not set - throws exception. + + Example:: + + md = MarkdownIt().enable(['sub', 'sup']).disable('smartquotes') + + """ + result = [] + + if isinstance(names, str): + names = [names] + + for chain in ["core", "block", "inline"]: + result.extend(self[chain].ruler.enable(names, True)) + result.extend(self.inline.ruler2.enable(names, True)) + + missed = [name for name in names if name not in result] + if missed and not ignoreInvalid: + raise ValueError(f"MarkdownIt. Failed to enable unknown rule(s): {missed}") + + return self + + def disable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> MarkdownIt: + """The same as [[MarkdownIt.enable]], but turn specified rules off. (chainable) + + :param names: rule name or list of rule names to disable. + :param ignoreInvalid: set `true` to ignore errors when rule not found. + + """ + result = [] + + if isinstance(names, str): + names = [names] + + for chain in ["core", "block", "inline"]: + result.extend(self[chain].ruler.disable(names, True)) + result.extend(self.inline.ruler2.disable(names, True)) + + missed = [name for name in names if name not in result] + if missed and not ignoreInvalid: + raise ValueError(f"MarkdownIt. Failed to disable unknown rule(s): {missed}") + return self + + @contextmanager + def reset_rules(self) -> Generator[None, None, None]: + """A context manager, that will reset the current enabled rules on exit.""" + chain_rules = self.get_active_rules() + yield + for chain, rules in chain_rules.items(): + if chain != "inline2": + self[chain].ruler.enableOnly(rules) + self.inline.ruler2.enableOnly(chain_rules["inline2"]) + + def add_render_rule( + self, name: str, function: Callable[..., Any], fmt: str = "html" + ) -> None: + """Add a rule for rendering a particular Token type. + + Only applied when ``renderer.__output__ == fmt`` + """ + if self.renderer.__output__ == fmt: + self.renderer.rules[name] = function.__get__(self.renderer) # type: ignore + + def use( + self, plugin: Callable[..., None], *params: Any, **options: Any + ) -> MarkdownIt: + """Load specified plugin with given params into current parser instance. (chainable) + + It's just a sugar to call `plugin(md, params)` with curring. + + Example:: + + def func(tokens, idx): + tokens[idx].content = tokens[idx].content.replace('foo', 'bar') + md = MarkdownIt().use(plugin, 'foo_replace', 'text', func) + + """ + plugin(self, *params, **options) + return self + + def parse(self, src: str, env: EnvType | None = None) -> list[Token]: + """Parse the source string to a token stream + + :param src: source string + :param env: environment sandbox + + Parse input string and return list of block tokens (special token type + "inline" will contain list of inline tokens). + + `env` is used to pass data between "distributed" rules and return additional + metadata like reference info, needed for the renderer. It also can be used to + inject data in specific cases. Usually, you will be ok to pass `{}`, + and then pass updated object to renderer. + """ + env = {} if env is None else env + if not isinstance(env, MutableMapping): + raise TypeError(f"Input data should be a MutableMapping, not {type(env)}") + if not isinstance(src, str): + raise TypeError(f"Input data should be a string, not {type(src)}") + state = StateCore(src, self, env) + self.core.process(state) + return state.tokens + + def render(self, src: str, env: EnvType | None = None) -> Any: + """Render markdown string into html. It does all magic for you :). + + :param src: source string + :param env: environment sandbox + :returns: The output of the loaded renderer + + `env` can be used to inject additional metadata (`{}` by default). + But you will not need it with high probability. See also comment + in [[MarkdownIt.parse]]. + """ + env = {} if env is None else env + return self.renderer.render(self.parse(src, env), self.options, env) + + def parseInline(self, src: str, env: EnvType | None = None) -> list[Token]: + """The same as [[MarkdownIt.parse]] but skip all block rules. + + :param src: source string + :param env: environment sandbox + + It returns the + block tokens list with the single `inline` element, containing parsed inline + tokens in `children` property. Also updates `env` object. + """ + env = {} if env is None else env + if not isinstance(env, MutableMapping): + raise TypeError(f"Input data should be an MutableMapping, not {type(env)}") + if not isinstance(src, str): + raise TypeError(f"Input data should be a string, not {type(src)}") + state = StateCore(src, self, env) + state.inlineMode = True + self.core.process(state) + return state.tokens + + def renderInline(self, src: str, env: EnvType | None = None) -> Any: + """Similar to [[MarkdownIt.render]] but for single paragraph content. + + :param src: source string + :param env: environment sandbox + + Similar to [[MarkdownIt.render]] but for single paragraph content. Result + will NOT be wrapped into `

    ` tags. + """ + env = {} if env is None else env + return self.renderer.render(self.parseInline(src, env), self.options, env) + + # link methods + + def validateLink(self, url: str) -> bool: + """Validate if the URL link is allowed in output. + + This validator can prohibit more than really needed to prevent XSS. + It's a tradeoff to keep code simple and to be secure by default. + + Note: the url should be normalized at this point, and existing entities decoded. + """ + return normalize_url.validateLink(url) + + def normalizeLink(self, url: str) -> str: + """Normalize destination URLs in links + + :: + + [label]: destination 'title' + ^^^^^^^^^^^ + """ + return normalize_url.normalizeLink(url) + + def normalizeLinkText(self, link: str) -> str: + """Normalize autolink content + + :: + + + ~~~~~~~~~~~ + """ + return normalize_url.normalizeLinkText(link) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/parser_block.py b/.venv/lib/python3.12/site-packages/markdown_it/parser_block.py new file mode 100644 index 0000000..50a7184 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/parser_block.py @@ -0,0 +1,113 @@ +"""Block-level tokenizer.""" + +from __future__ import annotations + +from collections.abc import Callable +import logging +from typing import TYPE_CHECKING + +from . import rules_block +from .ruler import Ruler +from .rules_block.state_block import StateBlock +from .token import Token +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + +LOGGER = logging.getLogger(__name__) + + +RuleFuncBlockType = Callable[[StateBlock, int, int, bool], bool] +"""(state: StateBlock, startLine: int, endLine: int, silent: bool) -> matched: bool) + +`silent` disables token generation, useful for lookahead. +""" + +_rules: list[tuple[str, RuleFuncBlockType, list[str]]] = [ + # First 2 params - rule name & source. Secondary array - list of rules, + # which can be terminated by this one. + ("table", rules_block.table, ["paragraph", "reference"]), + ("code", rules_block.code, []), + ("fence", rules_block.fence, ["paragraph", "reference", "blockquote", "list"]), + ( + "blockquote", + rules_block.blockquote, + ["paragraph", "reference", "blockquote", "list"], + ), + ("hr", rules_block.hr, ["paragraph", "reference", "blockquote", "list"]), + ("list", rules_block.list_block, ["paragraph", "reference", "blockquote"]), + ("reference", rules_block.reference, []), + ("html_block", rules_block.html_block, ["paragraph", "reference", "blockquote"]), + ("heading", rules_block.heading, ["paragraph", "reference", "blockquote"]), + ("lheading", rules_block.lheading, []), + ("paragraph", rules_block.paragraph, []), +] + + +class ParserBlock: + """ + ParserBlock#ruler -> Ruler + + [[Ruler]] instance. Keep configuration of block rules. + """ + + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncBlockType]() + for name, rule, alt in _rules: + self.ruler.push(name, rule, {"alt": alt}) + + def tokenize(self, state: StateBlock, startLine: int, endLine: int) -> None: + """Generate tokens for input range.""" + rules = self.ruler.getRules("") + line = startLine + maxNesting = state.md.options.maxNesting + hasEmptyLines = False + + while line < endLine: + state.line = line = state.skipEmptyLines(line) + if line >= endLine: + break + if state.sCount[line] < state.blkIndent: + # Termination condition for nested calls. + # Nested calls currently used for blockquotes & lists + break + if state.level >= maxNesting: + # If nesting level exceeded - skip tail to the end. + # That's not ordinary situation and we should not care about content. + state.line = endLine + break + + # Try all possible rules. + # On success, rule should: + # - update `state.line` + # - update `state.tokens` + # - return True + for rule in rules: + if rule(state, line, endLine, False): + break + + # set state.tight if we had an empty line before current tag + # i.e. latest empty line should not count + state.tight = not hasEmptyLines + + line = state.line + + # paragraph might "eat" one newline after it in nested lists + if (line - 1) < endLine and state.isEmpty(line - 1): + hasEmptyLines = True + + if line < endLine and state.isEmpty(line): + hasEmptyLines = True + line += 1 + state.line = line + + def parse( + self, src: str, md: MarkdownIt, env: EnvType, outTokens: list[Token] + ) -> list[Token] | None: + """Process input string and push block tokens into `outTokens`.""" + if not src: + return None + state = StateBlock(src, md, env, outTokens) + self.tokenize(state, state.line, state.lineMax) + return state.tokens diff --git a/.venv/lib/python3.12/site-packages/markdown_it/parser_core.py b/.venv/lib/python3.12/site-packages/markdown_it/parser_core.py new file mode 100644 index 0000000..8f5b921 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/parser_core.py @@ -0,0 +1,46 @@ +""" +* class Core +* +* Top-level rules executor. Glues block/inline parsers and does intermediate +* transformations. +""" + +from __future__ import annotations + +from collections.abc import Callable + +from .ruler import Ruler +from .rules_core import ( + block, + inline, + linkify, + normalize, + replace, + smartquotes, + text_join, +) +from .rules_core.state_core import StateCore + +RuleFuncCoreType = Callable[[StateCore], None] + +_rules: list[tuple[str, RuleFuncCoreType]] = [ + ("normalize", normalize), + ("block", block), + ("inline", inline), + ("linkify", linkify), + ("replacements", replace), + ("smartquotes", smartquotes), + ("text_join", text_join), +] + + +class ParserCore: + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncCoreType]() + for name, rule in _rules: + self.ruler.push(name, rule) + + def process(self, state: StateCore) -> None: + """Executes core chain rules.""" + for rule in self.ruler.getRules(""): + rule(state) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/parser_inline.py b/.venv/lib/python3.12/site-packages/markdown_it/parser_inline.py new file mode 100644 index 0000000..26ec2e6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/parser_inline.py @@ -0,0 +1,148 @@ +"""Tokenizes paragraph content.""" + +from __future__ import annotations + +from collections.abc import Callable +from typing import TYPE_CHECKING + +from . import rules_inline +from .ruler import Ruler +from .rules_inline.state_inline import StateInline +from .token import Token +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +# Parser rules +RuleFuncInlineType = Callable[[StateInline, bool], bool] +"""(state: StateInline, silent: bool) -> matched: bool) + +`silent` disables token generation, useful for lookahead. +""" +_rules: list[tuple[str, RuleFuncInlineType]] = [ + ("text", rules_inline.text), + ("linkify", rules_inline.linkify), + ("newline", rules_inline.newline), + ("escape", rules_inline.escape), + ("backticks", rules_inline.backtick), + ("strikethrough", rules_inline.strikethrough.tokenize), + ("emphasis", rules_inline.emphasis.tokenize), + ("link", rules_inline.link), + ("image", rules_inline.image), + ("autolink", rules_inline.autolink), + ("html_inline", rules_inline.html_inline), + ("entity", rules_inline.entity), +] + +# Note `rule2` ruleset was created specifically for emphasis/strikethrough +# post-processing and may be changed in the future. +# +# Don't use this for anything except pairs (plugins working with `balance_pairs`). +# +RuleFuncInline2Type = Callable[[StateInline], None] +_rules2: list[tuple[str, RuleFuncInline2Type]] = [ + ("balance_pairs", rules_inline.link_pairs), + ("strikethrough", rules_inline.strikethrough.postProcess), + ("emphasis", rules_inline.emphasis.postProcess), + # rules for pairs separate '**' into its own text tokens, which may be left unused, + # rule below merges unused segments back with the rest of the text + ("fragments_join", rules_inline.fragments_join), +] + + +class ParserInline: + def __init__(self) -> None: + self.ruler = Ruler[RuleFuncInlineType]() + for name, rule in _rules: + self.ruler.push(name, rule) + # Second ruler used for post-processing (e.g. in emphasis-like rules) + self.ruler2 = Ruler[RuleFuncInline2Type]() + for name, rule2 in _rules2: + self.ruler2.push(name, rule2) + + def skipToken(self, state: StateInline) -> None: + """Skip single token by running all rules in validation mode; + returns `True` if any rule reported success + """ + ok = False + pos = state.pos + rules = self.ruler.getRules("") + maxNesting = state.md.options["maxNesting"] + cache = state.cache + + if pos in cache: + state.pos = cache[pos] + return + + if state.level < maxNesting: + for rule in rules: + # Increment state.level and decrement it later to limit recursion. + # It's harmless to do here, because no tokens are created. + # But ideally, we'd need a separate private state variable for this purpose. + state.level += 1 + ok = rule(state, True) + state.level -= 1 + if ok: + break + else: + # Too much nesting, just skip until the end of the paragraph. + # + # NOTE: this will cause links to behave incorrectly in the following case, + # when an amount of `[` is exactly equal to `maxNesting + 1`: + # + # [[[[[[[[[[[[[[[[[[[[[foo]() + # + # TODO: remove this workaround when CM standard will allow nested links + # (we can replace it by preventing links from being parsed in + # validation mode) + # + state.pos = state.posMax + + if not ok: + state.pos += 1 + cache[pos] = state.pos + + def tokenize(self, state: StateInline) -> None: + """Generate tokens for input range.""" + ok = False + rules = self.ruler.getRules("") + end = state.posMax + maxNesting = state.md.options["maxNesting"] + + while state.pos < end: + # Try all possible rules. + # On success, rule should: + # + # - update `state.pos` + # - update `state.tokens` + # - return true + + if state.level < maxNesting: + for rule in rules: + ok = rule(state, False) + if ok: + break + + if ok: + if state.pos >= end: + break + continue + + state.pending += state.src[state.pos] + state.pos += 1 + + if state.pending: + state.pushPending() + + def parse( + self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token] + ) -> list[Token]: + """Process input string and push inline tokens into `tokens`""" + state = StateInline(src, md, env, tokens) + self.tokenize(state) + rules2 = self.ruler2.getRules("") + for rule in rules2: + rule(state) + return state.tokens diff --git a/.venv/lib/python3.12/site-packages/markdown_it/port.yaml b/.venv/lib/python3.12/site-packages/markdown_it/port.yaml new file mode 100644 index 0000000..ce2dde9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/port.yaml @@ -0,0 +1,48 @@ +- package: markdown-it/markdown-it + version: 14.1.0 + commit: 0fe7ccb4b7f30236fb05f623be6924961d296d3d + date: Mar 19, 2024 + notes: + - Rename variables that use python built-in names, e.g. + - `max` -> `maximum` + - `len` -> `length` + - `str` -> `string` + - | + Convert JS `for` loops to `while` loops + this is generally the main difference between the codes, + because in python you can't do e.g. `for {i=1;i PresetType: + config = commonmark.make() + config["components"]["core"]["rules"].append("linkify") + config["components"]["block"]["rules"].append("table") + config["components"]["inline"]["rules"].extend(["strikethrough", "linkify"]) + config["components"]["inline"]["rules2"].append("strikethrough") + config["options"]["linkify"] = True + config["options"]["html"] = True + return config diff --git a/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d1b17c2c33cc4667bf0011adba53397550a71f2 GIT binary patch literal 1619 zcmah}&2QX96d!wS?_}u`wS|g^LQGnc7_w_9O(UVIP^vaLG!arFKK5ccp4nYz{l&~U z=~h9?A%`5{lpb@1Tzc%EfZ&2fq^x`?5^(4(Z4OAiz#C^bA&816`OVDx{LP#9{8P1B zK|s@`zuG^R5c*9X2Bh^jhabac8xhn%L?LRRgla=o5GfHYD1}->3-yK`8Vy51RBx13 zG>eG7iHNbQ9z|&2ZrQ??o>#m$4C5$tStl zu#~*=DWjZC{k2nQo{f-Vg@h|zGIS7Nr&UWwh=`Q1+c3`X_Tl&RH`>sQrgsZ z3nPRYMpv_RCU5JGLiAZ*%%#iboxojt zH$|I*BI@|f?vyFq<$#)QL`*IiSc^7`(^lJr+b3~EBLViYc?)U*#gNha;TB>+r%Yd% zf$Md^#^s$_;Bx^Y8bTrn$lNt^ZfX9m+4KWJnIE;L3M3FOq*N3*B$j3x1SY^Wc|twE z>3gp5L6#i?p4h=N|5~3EoB>9RiZB7%>cKZ>P6CeG5 ze2o9_DgVQ#d^(3b5lpm}`a-{<7vjSwKBNM-da1~xU6(OW&S&I#9W5fOx=_qQzZ-JR ziy6&zmIjpP<$fRK`f?C^om?;4DL4EG6g01%>M3{)>2zf&FUN^|VxDVl5eAl4Oh~SU zE)168CJBv5ZWOOcV4@5!j+%ap%d(o!JN8=4Iy`Yb%I(G5wYxVznXWAg=ozneD<;&r z8M#51``oUt(rDEV{AD}oigp}*P=Ei5&7nVQ;M{Rr;4i0Jj*H_9J1ORt+m7Q$zHpp+ z(q*qf%KO#9(AOov^C05i1KU8qpM8CM^xM&2&W>#vJ^b?4dWJ7P_$Z69CF z@YRQ3?%|J)l^}n6rv2dwA)z z#k~x_w~uEsJo9LH56|@`-rX{`x)~mMU_t8M<;lTuJi~AGhF{&P9s*jlV3l+1IFTDt z$H^;>6UGFd1NLVe=d08W`kJ!ikl2%AUKBNiUqVb6h7d(LzC-K{xxXlxoTY*d!G@0k z+eA;*vW^eVA>-VEiuDWMyz>mfa##YvQz$(N($%}B}oy3dCJLc{f zTb?|0=r?E!sEe1PpQTID$+#(Sr)-klE?L?~T0u#?KX>=uz4v?f-tWz(kKpT9{*C($ zg#IcP?>~E~+y$WghzL4G#3FWLrS_?9AyT3C$R^JB&S_;@?YI}eJ{M^!c#7pDAasQD zL1kWRfbXRc~qek)KHht}K}bj0ZZ#I$%1$Ng~cv@a4%j zhXLj!AcCrZ3ms67hY1ZLk!FHZuGN9>cY|RfqRBy^i!)d2QB4wrDnZ1Zd89T*q<&>FtJJ(g zgB|~>;EgMbtjuiEoK;9`W*?)@2S;z$;I@+&`3i`e%h}E4FE^Jz-CX{B;U$=lb3CTq zj%WN7pC3`B86O)b)@fpD0A<2PQ`6AXOpGPYVk(XMDi@k6Q$H_^zRk69hmzunGJbI# zARMuCOmV_4sHv7^Gwyx4jHl_j9=sHccYNcQXJr)QM1p|z zi1LVahX zI!&_}E2fMKkIM8Eq>3=SP@@d7OtA{BGNuLsfP0P8v*MkNQzYK0nC1`z_=pZN%%qaL zP-)W|LFBY(lzU{hd{At=WjXf23BXAzS7B2=1lF-lZP~oW|G&$ALo$TZJ0SEf4bOy} zs0>F`g~wlX51)PB?;dLmP`b~dRD)+6CsP0u_Fhx|I!xFw%%(aP{FC0^eyEtHU2vWN z6crX@L&O;$FdZ&uBZRoif$C*b%~Z~wXT^&e}8Zys#iqQ=(hywY56-R^*PyNTLgS&MdS zqqW$5yx}iCeX`=t(UYnxKZZC*&@i>ZfQV=?Fx6bMM9E?_%52JtlxA`d_TJS$O9g>0 mdn)^|w189_*t}v{*21n?&OfWjdOUZZTJ8@o|3)B6=l=j?s&)VX literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/default.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/default.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a4ee0c517b1c6ea6e18ed8be11f6dad0f165be53 GIT binary patch literal 680 zcmXw0J#P~+81{YS@xI1QQBKVagI+&Q8v~4v>+=di_3r{C?lsssK3-wSVrdA^^X$&Gk?> zi_4B&d;k!P092srD}g#v6#zA)PF1MC(??oTFpaa_z@{D~r(qZK4n$Ks_IZay9Fvgs z&a-N!A}X&bVu-&8~>u>kRT!<3OV}<=kh1nWy$fYboZ_GxU;5wn ze$<{^JZe>q6toHkt;sS2Qy0bY7!qeZ7KNB&pV6#~xmfNtPoq2X?5gxQATajPQ`(eU dMS^ALsir8(Pq6m~v{R$481Ik&0vYm){{hiK$Qu9v literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/zero.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/presets/__pycache__/zero.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf9d279c762e619b3914d3c3875c4c40b1e43f67 GIT binary patch literal 941 zcmXw1OK%%D5avF#@~$5(8rOF1%3&Pzpuo~1X?;rzI7M@5;1+Ou@kOAP)QZtAxh1)= zWFUYJIpiP20aT#qt-qxgqbGrF_74}LTA`}%r>U>$k?43Ae3 z`m?(HzufnS8w`h6h@vw@9qMLI?w+|0q8@VxF7;pdXWpdI4lbTY2WL#l16(MknK{Jg z+zhdhX2?Z~nIQd)(JuZ`vq72RfmAprq9hqkq!{qDRF#<=V9oO)V^J=!yOvXm9&y!>d=U;rY>EZxpaNz(T$mVirOEXyxoLIkIOaS z*VEbc^ylm8<@NOSMVJwhmLz4Jc4(uVj8B+0fYJIxlV`S>aWUe9iCs05LZ*roL#Ax- zQz;G8c4b@{eODSA^c5o`ZKEn2fE)0!4Tn4(WcOJBu~6egDl)YreHN-~DV6q22vu zyt5fCzCc^8KlZ=9+I%wKYW=c$`TXkR&YN9)xijCpcXjyiYWK@!!`t3iHk;eg^5|eK zSfGPOp!Olp2{fSD>rt8XdbUv-o@rH0S^b;37PXnW4Z3$L4`H^UpkJxGaCLz69 PresetType: + return { + "options": { + "maxNesting": 20, # Internal protection, recursion limit + "html": True, # Enable HTML tags in source, + # this is just a shorthand for .enable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": True, # Use '/' to close single tags (
    ) + "breaks": False, # Convert '\n' in paragraphs into
    + "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with PresetType: + return { + "options": { + "maxNesting": 100, # Internal protection, recursion limit + "html": False, # Enable HTML tags in source + # this is just a shorthand for .disable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules: + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": False, # Use '/' to close single tags (
    ) + "breaks": False, # Convert '\n' in paragraphs into
    + "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with PresetType: + return { + "options": { + "maxNesting": 20, # Internal protection, recursion limit + "html": False, # Enable HTML tags in source + # this is just a shorthand for .disable(["html_inline", "html_block"]) + # used by the linkify rule: + "linkify": False, # autoconvert URL-like texts to links + # used by the replacements and smartquotes rules: + # Enable some language-neutral replacements + quotes beautification + "typographer": False, + # used by the smartquotes rule: + # Double + single quotes replacement pairs, when typographer enabled, + # and smartquotes on. Could be either a String or an Array. + # For example, you can use '«»„“' for Russian, '„“‚‘' for German, + # and ['«\xA0', '\xA0»', '‹\xA0', '\xA0›'] for French (including nbsp). + "quotes": "\u201c\u201d\u2018\u2019", # /* “”‘’ */ + # Renderer specific; these options are used directly in the HTML renderer + "xhtmlOut": False, # Use '/' to close single tags (
    ) + "breaks": False, # Convert '\n' in paragraphs into
    + "langPrefix": "language-", # CSS language prefix for fenced blocks + # Highlighter function. Should return escaped HTML, + # or '' if the source string is not changed and should be escaped externally. + # If result starts with Any: ... + + +class RendererHTML(RendererProtocol): + """Contains render rules for tokens. Can be updated and extended. + + Example: + + Each rule is called as independent static function with fixed signature: + + :: + + class Renderer: + def token_type_name(self, tokens, idx, options, env) { + # ... + return renderedHTML + + :: + + class CustomRenderer(RendererHTML): + def strong_open(self, tokens, idx, options, env): + return '' + def strong_close(self, tokens, idx, options, env): + return '' + + md = MarkdownIt(renderer_cls=CustomRenderer) + + result = md.render(...) + + See https://github.com/markdown-it/markdown-it/blob/master/lib/renderer.js + for more details and examples. + """ + + __output__ = "html" + + def __init__(self, parser: Any = None): + self.rules = { + k: v + for k, v in inspect.getmembers(self, predicate=inspect.ismethod) + if not (k.startswith("render") or k.startswith("_")) + } + + def render( + self, tokens: Sequence[Token], options: OptionsDict, env: EnvType + ) -> str: + """Takes token stream and generates HTML. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input + + """ + result = "" + + for i, token in enumerate(tokens): + if token.type == "inline": + if token.children: + result += self.renderInline(token.children, options, env) + elif token.type in self.rules: + result += self.rules[token.type](tokens, i, options, env) + else: + result += self.renderToken(tokens, i, options, env) + + return result + + def renderInline( + self, tokens: Sequence[Token], options: OptionsDict, env: EnvType + ) -> str: + """The same as ``render``, but for single token of `inline` type. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input (references, for example) + """ + result = "" + + for i, token in enumerate(tokens): + if token.type in self.rules: + result += self.rules[token.type](tokens, i, options, env) + else: + result += self.renderToken(tokens, i, options, env) + + return result + + def renderToken( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + """Default token renderer. + + Can be overridden by custom function + + :param idx: token index to render + :param options: params of parser instance + """ + result = "" + needLf = False + token = tokens[idx] + + # Tight list paragraphs + if token.hidden: + return "" + + # Insert a newline between hidden paragraph and subsequent opening + # block-level tag. + # + # For example, here we should insert a newline before blockquote: + # - a + # > + # + if token.block and token.nesting != -1 and idx and tokens[idx - 1].hidden: + result += "\n" + + # Add token name, e.g. ``. + # + needLf = False + + result += ">\n" if needLf else ">" + + return result + + @staticmethod + def renderAttrs(token: Token) -> str: + """Render token attributes to string.""" + result = "" + + for key, value in token.attrItems(): + result += " " + escapeHtml(key) + '="' + escapeHtml(str(value)) + '"' + + return result + + def renderInlineAsText( + self, + tokens: Sequence[Token] | None, + options: OptionsDict, + env: EnvType, + ) -> str: + """Special kludge for image `alt` attributes to conform CommonMark spec. + + Don't try to use it! Spec requires to show `alt` content with stripped markup, + instead of simple escaping. + + :param tokens: list on block tokens to render + :param options: params of parser instance + :param env: additional data from parsed input + """ + result = "" + + for token in tokens or []: + if token.type == "text": + result += token.content + elif token.type == "image": + if token.children: + result += self.renderInlineAsText(token.children, options, env) + elif token.type == "softbreak": + result += "\n" + + return result + + ################################################### + + def code_inline( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + token = tokens[idx] + return ( + "" + + escapeHtml(tokens[idx].content) + + "" + ) + + def code_block( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + + return ( + "" + + escapeHtml(tokens[idx].content) + + "\n" + ) + + def fence( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + info = unescapeAll(token.info).strip() if token.info else "" + langName = "" + langAttrs = "" + + if info: + arr = info.split(maxsplit=1) + langName = arr[0] + if len(arr) == 2: + langAttrs = arr[1] + + if options.highlight: + highlighted = options.highlight( + token.content, langName, langAttrs + ) or escapeHtml(token.content) + else: + highlighted = escapeHtml(token.content) + + if highlighted.startswith("" + + highlighted + + "\n" + ) + + return ( + "

    "
    +            + highlighted
    +            + "
    \n" + ) + + def image( + self, + tokens: Sequence[Token], + idx: int, + options: OptionsDict, + env: EnvType, + ) -> str: + token = tokens[idx] + + # "alt" attr MUST be set, even if empty. Because it's mandatory and + # should be placed on proper position for tests. + if token.children: + token.attrSet("alt", self.renderInlineAsText(token.children, options, env)) + else: + token.attrSet("alt", "") + + return self.renderToken(tokens, idx, options, env) + + def hardbreak( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return "
    \n" if options.xhtmlOut else "
    \n" + + def softbreak( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return ( + ("
    \n" if options.xhtmlOut else "
    \n") if options.breaks else "\n" + ) + + def text( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return escapeHtml(tokens[idx].content) + + def html_block( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return tokens[idx].content + + def html_inline( + self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType + ) -> str: + return tokens[idx].content diff --git a/.venv/lib/python3.12/site-packages/markdown_it/ruler.py b/.venv/lib/python3.12/site-packages/markdown_it/ruler.py new file mode 100644 index 0000000..91ab580 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/ruler.py @@ -0,0 +1,275 @@ +""" +class Ruler + +Helper class, used by [[MarkdownIt#core]], [[MarkdownIt#block]] and +[[MarkdownIt#inline]] to manage sequences of functions (rules): + +- keep rules in defined order +- assign the name to each rule +- enable/disable rules +- add/replace rules +- allow assign rules to additional named chains (in the same) +- caching lists of active rules + +You will not need use this class directly until write plugins. For simple +rules control use [[MarkdownIt.disable]], [[MarkdownIt.enable]] and +[[MarkdownIt.use]]. +""" + +from __future__ import annotations + +from collections.abc import Iterable +from dataclasses import dataclass, field +from typing import TYPE_CHECKING, Generic, TypedDict, TypeVar +import warnings + +from .utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +class StateBase: + def __init__(self, src: str, md: MarkdownIt, env: EnvType): + self.src = src + self.env = env + self.md = md + + @property + def src(self) -> str: + return self._src + + @src.setter + def src(self, value: str) -> None: + self._src = value + self._srcCharCode: tuple[int, ...] | None = None + + @property + def srcCharCode(self) -> tuple[int, ...]: + warnings.warn( + "StateBase.srcCharCode is deprecated. Use StateBase.src instead.", + DeprecationWarning, + stacklevel=2, + ) + if self._srcCharCode is None: + self._srcCharCode = tuple(ord(c) for c in self._src) + return self._srcCharCode + + +class RuleOptionsType(TypedDict, total=False): + alt: list[str] + + +RuleFuncTv = TypeVar("RuleFuncTv") +"""A rule function, whose signature is dependent on the state type.""" + + +@dataclass(slots=True) +class Rule(Generic[RuleFuncTv]): + name: str + enabled: bool + fn: RuleFuncTv = field(repr=False) + alt: list[str] + + +class Ruler(Generic[RuleFuncTv]): + def __init__(self) -> None: + # List of added rules. + self.__rules__: list[Rule[RuleFuncTv]] = [] + # Cached rule chains. + # First level - chain name, '' for default. + # Second level - diginal anchor for fast filtering by charcodes. + self.__cache__: dict[str, list[RuleFuncTv]] | None = None + + def __find__(self, name: str) -> int: + """Find rule index by name""" + for i, rule in enumerate(self.__rules__): + if rule.name == name: + return i + return -1 + + def __compile__(self) -> None: + """Build rules lookup cache""" + chains = {""} + # collect unique names + for rule in self.__rules__: + if not rule.enabled: + continue + for name in rule.alt: + chains.add(name) + self.__cache__ = {} + for chain in chains: + self.__cache__[chain] = [] + for rule in self.__rules__: + if not rule.enabled: + continue + if chain and (chain not in rule.alt): + continue + self.__cache__[chain].append(rule.fn) + + def at( + self, ruleName: str, fn: RuleFuncTv, options: RuleOptionsType | None = None + ) -> None: + """Replace rule by name with new function & options. + + :param ruleName: rule name to replace. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(ruleName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {ruleName}") + self.__rules__[index].fn = fn + self.__rules__[index].alt = options.get("alt", []) + self.__cache__ = None + + def before( + self, + beforeName: str, + ruleName: str, + fn: RuleFuncTv, + options: RuleOptionsType | None = None, + ) -> None: + """Add new rule to chain before one with given name. + + :param beforeName: new rule will be added before this one. + :param ruleName: new rule will be added before this one. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(beforeName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {beforeName}") + self.__rules__.insert( + index, Rule[RuleFuncTv](ruleName, True, fn, options.get("alt", [])) + ) + self.__cache__ = None + + def after( + self, + afterName: str, + ruleName: str, + fn: RuleFuncTv, + options: RuleOptionsType | None = None, + ) -> None: + """Add new rule to chain after one with given name. + + :param afterName: new rule will be added after this one. + :param ruleName: new rule will be added after this one. + :param fn: new rule function. + :param options: new rule options (not mandatory). + :raises: KeyError if name not found + """ + index = self.__find__(afterName) + options = options or {} + if index == -1: + raise KeyError(f"Parser rule not found: {afterName}") + self.__rules__.insert( + index + 1, Rule[RuleFuncTv](ruleName, True, fn, options.get("alt", [])) + ) + self.__cache__ = None + + def push( + self, ruleName: str, fn: RuleFuncTv, options: RuleOptionsType | None = None + ) -> None: + """Push new rule to the end of chain. + + :param ruleName: new rule will be added to the end of chain. + :param fn: new rule function. + :param options: new rule options (not mandatory). + + """ + self.__rules__.append( + Rule[RuleFuncTv](ruleName, True, fn, (options or {}).get("alt", [])) + ) + self.__cache__ = None + + def enable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Enable rules with given names. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + result: list[str] = [] + for name in names: + idx = self.__find__(name) + if (idx < 0) and ignoreInvalid: + continue + if (idx < 0) and not ignoreInvalid: + raise KeyError(f"Rules manager: invalid rule name {name}") + self.__rules__[idx].enabled = True + result.append(name) + self.__cache__ = None + return result + + def enableOnly( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Enable rules with given names, and disable everything else. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + for rule in self.__rules__: + rule.enabled = False + return self.enable(names, ignoreInvalid) + + def disable( + self, names: str | Iterable[str], ignoreInvalid: bool = False + ) -> list[str]: + """Disable rules with given names. + + :param names: name or list of rule names to enable. + :param ignoreInvalid: ignore errors when rule not found + :raises: KeyError if name not found and not ignoreInvalid + :return: list of found rule names + """ + if isinstance(names, str): + names = [names] + result = [] + for name in names: + idx = self.__find__(name) + if (idx < 0) and ignoreInvalid: + continue + if (idx < 0) and not ignoreInvalid: + raise KeyError(f"Rules manager: invalid rule name {name}") + self.__rules__[idx].enabled = False + result.append(name) + self.__cache__ = None + return result + + def getRules(self, chainName: str = "") -> list[RuleFuncTv]: + """Return array of active functions (rules) for given chain name. + It analyzes rules configuration, compiles caches if not exists and returns result. + + Default chain name is `''` (empty string). It can't be skipped. + That's done intentionally, to keep signature monomorphic for high speed. + + """ + if self.__cache__ is None: + self.__compile__() + assert self.__cache__ is not None + # Chain can be empty, if rules disabled. But we still have to return Array. + return self.__cache__.get(chainName, []) or [] + + def get_all_rules(self) -> list[str]: + """Return all available rule names.""" + return [r.name for r in self.__rules__] + + def get_active_rules(self) -> list[str]: + """Return the active rule names.""" + return [r.name for r in self.__rules__ if r.enabled] diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py new file mode 100644 index 0000000..517da23 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py @@ -0,0 +1,27 @@ +__all__ = ( + "StateBlock", + "blockquote", + "code", + "fence", + "heading", + "hr", + "html_block", + "lheading", + "list_block", + "paragraph", + "reference", + "table", +) + +from .blockquote import blockquote +from .code import code +from .fence import fence +from .heading import heading +from .hr import hr +from .html_block import html_block +from .lheading import lheading +from .list import list_block +from .paragraph import paragraph +from .reference import reference +from .state_block import StateBlock +from .table import table diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1d7f01e3509464864ee8650a4d29ad480938cbf GIT binary patch literal 690 zcmXw#yKdA#6ozMfS>M(hDF~DTMTk^e>{VEDI=-R`5me#I z11vDX*su?t@Q7zQ0AKjTw;Vzs0uorBK`25JT8>~QW@KhLhDbytvYbFH5|UU>Ar&b} zEoYF4jAWMQFc&$=E$6Th3$nmyzgQkD=PJD#*~l-UD|ag0nD~6tja&s~S8)|y^S0zF zsyVBgcB{NvsEqr~>oB(pari z8l%bv(+&3<(#Wm)J9^NF9=qbMle?j3B_E2b537$CmuD-}zouNh*X^PgErb2g48{7E zx3>i}o1)*3b=SUKzd0?2X5=efyklEkFPPj_-CawYv5+^w2X|{hY11|%rR#qG7@v!- z(tGdZbA7+*+;FO2_ddq>-pe!ZOZ4X$;gboyn9$LLUQXz6La!%uZ28rM^mFnP9m!|9 F>>vJ|so($r literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/blockquote.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..22527952ff5ca986322be0dfc70d481bd939840a GIT binary patch literal 6925 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 Pr23_LT8SIENs#_u)~?*5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/code.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/code.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ff6440c7ac0f1cfa5b50bd592d3627908261166 GIT binary patch literal 1389 zcmZ`(PiWg#7=Mx_S%2a>+1zdQlFnP&t%fCDw*ZEf$+11H$BbQ)B~VZ7U?@A}7RXMyY~PcUIGF7NeSh@(zVE&7 zkMvt4q9UO2&_A>HLkPWQ#xVs57zg)(ts;za2y>V>xg3W>STOlYC>P=oj|ev>9|v_M z5!bnnm6NbYLRcbU9EL|GGFFKEor={*LQbjiNo{fHx{XPqVA{oU;?h{cspgBsNmTO~ z6Pz5~V|k|bSh^(VtJ7}YCD)j*FFH*36%f?T8W!=x#KM6hIfh9r*Ow@9=c!c`I+qD} z7&w%R4jPbi6}czS9DCbCnDdawdAt`|7dsG#JT!NtpLX`R^Xo_FV42yTq@Sz;#G?ONj1muC%5lD$l2oS_ zhhS2K8dfP$ghluwanbqs)bllE*Ys6}>A{lt0@Eq<6Ya4J9CGTtr0PrAJCl>?yS|7? zVZP)?3`ai|6E>W5rRvsv!DO2vROg*pUoMegaU5SMnB`j*W;+uu+HfCGLX~_q8K!L3 zRAP)xjk-Oe}{vBsz3hPCc|~xwFiv>GVi;;@bEK+g_tMa-G#O zVdc%5V>qeN2gG`iGL1s2T61S@>$B0zpQaqcB_r@9l=CIxq$+t@#`Z%?H{2ARH;L2f zM2ZzSTCLGOb~DDt_lZur8k zcBzZJ`R>vU2FsE5z}ZInQKsED@FcUGS@G6po_({^mujS2v2&|aPp8&Ce}*?Eo{PUk zUqrXZCO6OS#O`d}o!O4fK-lfpK)jj$Df44ytN$agZ?(1P0ThE^ykT9(c2U>;uxXb{ zur0n8eE*$JP__uZ!sZDmp}wr^R=z@XokkfFGGL%W!M4qyO+O<#1h45JutWLFijASE zU(pZ2WIr0`Cb0bw$8mq4;n(QQUud|k#FyTFrNps0Rm literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/fence.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f76f95e0a5816ef43868acd22cb0cf1b30c4ec11 GIT binary patch literal 2535 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 L*O@MS1MvR?Cwp(V literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/hr.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cddb17268eebfd4a76743de00adbe455080b9449 GIT binary patch literal 1764 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/list.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..543d5609b4dac77ef05b8c164d773623de5f4dd6 GIT binary patch literal 8046 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 J;sKcc{{m<|^E&_l literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e1972308cc4d678b1b5454587b9b5f66ffc99b1d GIT binary patch literal 2185 zcma(SOH3O_bk<(4_hW1m3>1=76o^vPfJ;);s3Mg};t~*_e307ER;$IcHU8~dvr7`t zT5_dG#Zn~bDekFMJ=7JK^wb=4tkg@0Q{k+7K#F?c<~BLylD=89wndVvBkj!l|7PCX z-`mf2`O*dm90suy#rAN%3sRUQi}|CNZv+w7vS>KT&O#LEg%5=6-@kL**WxqYfT#Mt6B zQ!&-^89ko1eFlYX0S;o$BsJCcs~UCy&PZld&9ph9nkz($vvtqT4tXIje9!t}zl+QU zD@Cb?7G^ADF_y>jZu{yi25{_I10>H{DAj8DKsUu5G6Lx9Dw6kEzLfN;EcUvU%5&f$ z@Tx@K1N7i)=zi?AkW4dlmc?40vxnR09Au6(c`jtJJpckP;!>LD z8oUY2rZ0jA&SIe|ZL}(P#{bI__Bj!?$}eCp&s*F@^d-cY7d*%kpz07i_HQ55*I@31 zus_c;NMl%J@er@n^w`LgxkEGUZbs-raEJ7^UXugnTpuZ#=%KZJfagW3FGGIy1-6d6 zaP!3QlCfv|;2q^9@QPBsO}+~yJeDMfT+e4o$*ue%_)^n<6 zGdY_}Y8l$H$PP7`@r-V$`!8V)9kIEY`N_%HRojQvrIm#3$zt2LRBwE;l2M7xCsgw) zK!)w7re>8}wg|Q$)`is^41=T*%jV2gn=>xxD=-X%rA&HC!*niCRXQjPIz&h^XR}T) zY;MI^w!K*;XZzziT2nv-=YKp0o zdTeca248MQCAfUm4!U4nlnhXPpQ)!+&7e)+*Ro#ZqBnJtHgZZ_HKNyI!!r}-$A;-J zOvZ;V=vb8}G$pfYB#r3E4OP1l%_Ntixm9yn*UpTLo{kzxQym87w2}b*tU}UQzp2Sd zGfHb|$WCFSjhh(Btr9w!oQ)2C<3||41@tE?elzp+OqD-XR_|SZ;Qy`bx!2?4YCH<} zltzpB!li1UedAK`(#BkIZa2`k6X+|%s$EC#YTs&GpI5p@3-i@r$40i8Ello3dUhj& zJCVV{Y_+?;5PQrjdR6wrMDhS{a_LpV0XMYUgCG8ceY|b&HpgJ zBb~XYJd!@F1|lV;^ zovR+}+Z3LJJ8OPm{w<I7F2kJUavp~!|-)JoUO{Jj&uMt_Mu z7^?)Qc7yXf!TCz?3MALwQ;6N3-h*hSi_;IgPnJ8%N+s|&VuXN&slp$WdU-9u};2b_02?Ve;MbK$%nmrwg&Y?m?$~ds65b+!Y!UZNDsI zJub`88hRoDooh?Z-?DzugicjkpiKZ=+DfvlDOpvPNeAV4lko7_C0)-r58!7+P63&` z2ipsNJgZ}PGar*NKmlvK>rsL{gX%Gss literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/reference.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6388cc75ea08178fe25ec2be02a519073b2a78b GIT binary patch literal 6209 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__pycache__/state_block.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1494a9de0091232dd5ac68579b0a7e980b2de73 GIT binary patch literal 9210 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 bool: + LOGGER.debug( + "entering blockquote: %s, %s, %s, %s", state, startLine, endLine, silent + ) + + oldLineMax = state.lineMax + pos = state.bMarks[startLine] + state.tShift[startLine] + max = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + # check the block quote marker + try: + if state.src[pos] != ">": + return False + except IndexError: + return False + pos += 1 + + # we know that it's going to be a valid blockquote, + # so no point trying to find the end of it in silent mode + if silent: + return True + + # set offset past spaces and ">" + initial = offset = state.sCount[startLine] + 1 + + try: + second_char: str | None = state.src[pos] + except IndexError: + second_char = None + + # skip one optional space after '>' + if second_char == " ": + # ' > test ' + # ^ -- position start of line here: + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + spaceAfterMarker = True + elif second_char == "\t": + spaceAfterMarker = True + + if (state.bsCount[startLine] + offset) % 4 == 3: + # ' >\t test ' + # ^ -- position start of line here (tab has width==1) + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + else: + # ' >\t test ' + # ^ -- position start of line here + shift bsCount slightly + # to make extra space appear + adjustTab = True + + else: + spaceAfterMarker = False + + oldBMarks = [state.bMarks[startLine]] + state.bMarks[startLine] = pos + + while pos < max: + ch = state.src[pos] + + if isStrSpace(ch): + if ch == "\t": + offset += ( + 4 + - (offset + state.bsCount[startLine] + (1 if adjustTab else 0)) % 4 + ) + else: + offset += 1 + + else: + break + + pos += 1 + + oldBSCount = [state.bsCount[startLine]] + state.bsCount[startLine] = ( + state.sCount[startLine] + 1 + (1 if spaceAfterMarker else 0) + ) + + lastLineEmpty = pos >= max + + oldSCount = [state.sCount[startLine]] + state.sCount[startLine] = offset - initial + + oldTShift = [state.tShift[startLine]] + state.tShift[startLine] = pos - state.bMarks[startLine] + + terminatorRules = state.md.block.ruler.getRules("blockquote") + + oldParentType = state.parentType + state.parentType = "blockquote" + + # Search the end of the block + # + # Block ends with either: + # 1. an empty line outside: + # ``` + # > test + # + # ``` + # 2. an empty line inside: + # ``` + # > + # test + # ``` + # 3. another tag: + # ``` + # > test + # - - - + # ``` + + # for (nextLine = startLine + 1; nextLine < endLine; nextLine++) { + nextLine = startLine + 1 + while nextLine < endLine: + # check if it's outdented, i.e. it's inside list item and indented + # less than said list item: + # + # ``` + # 1. anything + # > current blockquote + # 2. checking this line + # ``` + isOutdented = state.sCount[nextLine] < state.blkIndent + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + max = state.eMarks[nextLine] + + if pos >= max: + # Case 1: line is not inside the blockquote, and this line is empty. + break + + evaluatesTrue = state.src[pos] == ">" and not isOutdented + pos += 1 + if evaluatesTrue: + # This line is inside the blockquote. + + # set offset past spaces and ">" + initial = offset = state.sCount[nextLine] + 1 + + try: + next_char: str | None = state.src[pos] + except IndexError: + next_char = None + + # skip one optional space after '>' + if next_char == " ": + # ' > test ' + # ^ -- position start of line here: + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + spaceAfterMarker = True + elif next_char == "\t": + spaceAfterMarker = True + + if (state.bsCount[nextLine] + offset) % 4 == 3: + # ' >\t test ' + # ^ -- position start of line here (tab has width==1) + pos += 1 + initial += 1 + offset += 1 + adjustTab = False + else: + # ' >\t test ' + # ^ -- position start of line here + shift bsCount slightly + # to make extra space appear + adjustTab = True + + else: + spaceAfterMarker = False + + oldBMarks.append(state.bMarks[nextLine]) + state.bMarks[nextLine] = pos + + while pos < max: + ch = state.src[pos] + + if isStrSpace(ch): + if ch == "\t": + offset += ( + 4 + - ( + offset + + state.bsCount[nextLine] + + (1 if adjustTab else 0) + ) + % 4 + ) + else: + offset += 1 + else: + break + + pos += 1 + + lastLineEmpty = pos >= max + + oldBSCount.append(state.bsCount[nextLine]) + state.bsCount[nextLine] = ( + state.sCount[nextLine] + 1 + (1 if spaceAfterMarker else 0) + ) + + oldSCount.append(state.sCount[nextLine]) + state.sCount[nextLine] = offset - initial + + oldTShift.append(state.tShift[nextLine]) + state.tShift[nextLine] = pos - state.bMarks[nextLine] + + nextLine += 1 + continue + + # Case 2: line is not inside the blockquote, and the last line was empty. + if lastLineEmpty: + break + + # Case 3: another tag found. + terminate = False + + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + # Quirk to enforce "hard termination mode" for paragraphs; + # normally if you call `tokenize(state, startLine, nextLine)`, + # paragraphs will look below nextLine for paragraph continuation, + # but if blockquote is terminated by another tag, they shouldn't + state.lineMax = nextLine + + if state.blkIndent != 0: + # state.blkIndent was non-zero, we now set it to zero, + # so we need to re-calculate all offsets to appear as + # if indent wasn't changed + oldBMarks.append(state.bMarks[nextLine]) + oldBSCount.append(state.bsCount[nextLine]) + oldTShift.append(state.tShift[nextLine]) + oldSCount.append(state.sCount[nextLine]) + state.sCount[nextLine] -= state.blkIndent + + break + + oldBMarks.append(state.bMarks[nextLine]) + oldBSCount.append(state.bsCount[nextLine]) + oldTShift.append(state.tShift[nextLine]) + oldSCount.append(state.sCount[nextLine]) + + # A negative indentation means that this is a paragraph continuation + # + state.sCount[nextLine] = -1 + + nextLine += 1 + + oldIndent = state.blkIndent + state.blkIndent = 0 + + token = state.push("blockquote_open", "blockquote", 1) + token.markup = ">" + token.map = lines = [startLine, 0] + + state.md.block.tokenize(state, startLine, nextLine) + + token = state.push("blockquote_close", "blockquote", -1) + token.markup = ">" + + state.lineMax = oldLineMax + state.parentType = oldParentType + lines[1] = state.line + + # Restore original tShift; this might not be necessary since the parser + # has already been here, but just to make sure we can do that. + for i, item in enumerate(oldTShift): + state.bMarks[i + startLine] = oldBMarks[i] + state.tShift[i + startLine] = item + state.sCount[i + startLine] = oldSCount[i] + state.bsCount[i + startLine] = oldBSCount[i] + + state.blkIndent = oldIndent + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py new file mode 100644 index 0000000..af8a41c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py @@ -0,0 +1,36 @@ +"""Code block (4 spaces padded).""" + +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def code(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering code: %s, %s, %s, %s", state, startLine, endLine, silent) + + if not state.is_code_block(startLine): + return False + + last = nextLine = startLine + 1 + + while nextLine < endLine: + if state.isEmpty(nextLine): + nextLine += 1 + continue + + if state.is_code_block(nextLine): + nextLine += 1 + last = nextLine + continue + + break + + state.line = last + + token = state.push("code_block", "code", 0) + token.content = state.getLines(startLine, last, 4 + state.blkIndent, False) + "\n" + token.map = [startLine, state.line] + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py new file mode 100644 index 0000000..263f1b8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py @@ -0,0 +1,101 @@ +# fences (``` lang, ~~~ lang) +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def fence(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering fence: %s, %s, %s, %s", state, startLine, endLine, silent) + + haveEndMarker = False + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + if pos + 3 > maximum: + return False + + marker = state.src[pos] + + if marker not in ("~", "`"): + return False + + # scan marker length + mem = pos + pos = state.skipCharsStr(pos, marker) + + length = pos - mem + + if length < 3: + return False + + markup = state.src[mem:pos] + params = state.src[pos:maximum] + + if marker == "`" and marker in params: + return False + + # Since start is found, we can report success here in validation mode + if silent: + return True + + # search end of block + nextLine = startLine + + while True: + nextLine += 1 + if nextLine >= endLine: + # unclosed block should be autoclosed by end of document. + # also block seems to be autoclosed by end of parent + break + + pos = mem = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + if pos < maximum and state.sCount[nextLine] < state.blkIndent: + # non-empty line with negative indent should stop the list: + # - ``` + # test + break + + try: + if state.src[pos] != marker: + continue + except IndexError: + break + + if state.is_code_block(nextLine): + continue + + pos = state.skipCharsStr(pos, marker) + + # closing code fence must be at least as long as the opening one + if pos - mem < length: + continue + + # make sure tail has spaces only + pos = state.skipSpaces(pos) + + if pos < maximum: + continue + + haveEndMarker = True + # found! + break + + # If a fence has heading spaces, they should be removed from its inner block + length = state.sCount[startLine] + + state.line = nextLine + (1 if haveEndMarker else 0) + + token = state.push("fence", "code", 0) + token.info = params + token.content = state.getLines(startLine + 1, nextLine, length, True) + token.markup = markup + token.map = [startLine, state.line] + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py new file mode 100644 index 0000000..afcf9ed --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py @@ -0,0 +1,69 @@ +"""Atex heading (#, ##, ...)""" + +from __future__ import annotations + +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def heading(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering heading: %s, %s, %s, %s", state, startLine, endLine, silent) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + ch: str | None = state.src[pos] + + if ch != "#" or pos >= maximum: + return False + + # count heading level + level = 1 + pos += 1 + try: + ch = state.src[pos] + except IndexError: + ch = None + while ch == "#" and pos < maximum and level <= 6: + level += 1 + pos += 1 + try: + ch = state.src[pos] + except IndexError: + ch = None + + if level > 6 or (pos < maximum and not isStrSpace(ch)): + return False + + if silent: + return True + + # Let's cut tails like ' ### ' from the end of string + + maximum = state.skipSpacesBack(maximum, pos) + tmp = state.skipCharsStrBack(maximum, "#", pos) + if tmp > pos and isStrSpace(state.src[tmp - 1]): + maximum = tmp + + state.line = startLine + 1 + + token = state.push("heading_open", "h" + str(level), 1) + token.markup = "########"[:level] + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = state.src[pos:maximum].strip() + token.map = [startLine, state.line] + token.children = [] + + token = state.push("heading_close", "h" + str(level), -1) + token.markup = "########"[:level] + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py new file mode 100644 index 0000000..fca7d79 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py @@ -0,0 +1,56 @@ +"""Horizontal rule + +At least 3 of these characters on a line * - _ +""" + +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def hr(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering hr: %s, %s, %s, %s", state, startLine, endLine, silent) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + try: + marker = state.src[pos] + except IndexError: + return False + pos += 1 + + # Check hr marker + if marker not in ("*", "-", "_"): + return False + + # markers can be mixed with spaces, but there should be at least 3 of them + + cnt = 1 + while pos < maximum: + ch = state.src[pos] + pos += 1 + if ch != marker and not isStrSpace(ch): + return False + if ch == marker: + cnt += 1 + + if cnt < 3: + return False + + if silent: + return True + + state.line = startLine + 1 + + token = state.push("hr", "hr", 0) + token.map = [startLine, state.line] + token.markup = marker * (cnt + 1) + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py new file mode 100644 index 0000000..3d43f6e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py @@ -0,0 +1,90 @@ +# HTML block +from __future__ import annotations + +import logging +import re + +from ..common.html_blocks import block_names +from ..common.html_re import HTML_OPEN_CLOSE_TAG_STR +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + +# An array of opening and corresponding closing sequences for html tags, +# last argument defines whether it can terminate a paragraph or not +HTML_SEQUENCES: list[tuple[re.Pattern[str], re.Pattern[str], bool]] = [ + ( + re.compile(r"^<(script|pre|style|textarea)(?=(\s|>|$))", re.IGNORECASE), + re.compile(r"<\/(script|pre|style|textarea)>", re.IGNORECASE), + True, + ), + (re.compile(r"^"), True), + (re.compile(r"^<\?"), re.compile(r"\?>"), True), + (re.compile(r"^"), True), + (re.compile(r"^"), True), + ( + re.compile("^|$))", re.IGNORECASE), + re.compile(r"^$"), + True, + ), + (re.compile(HTML_OPEN_CLOSE_TAG_STR + "\\s*$"), re.compile(r"^$"), False), +] + + +def html_block(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering html_block: %s, %s, %s, %s", state, startLine, endLine, silent + ) + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + if state.is_code_block(startLine): + return False + + if not state.md.options.get("html", None): + return False + + if state.src[pos] != "<": + return False + + lineText = state.src[pos:maximum] + + html_seq = None + for HTML_SEQUENCE in HTML_SEQUENCES: + if HTML_SEQUENCE[0].search(lineText): + html_seq = HTML_SEQUENCE + break + + if not html_seq: + return False + + if silent: + # true if this sequence can be a terminator, false otherwise + return html_seq[2] + + nextLine = startLine + 1 + + # If we are here - we detected HTML block. + # Let's roll down till block end. + if not html_seq[1].search(lineText): + while nextLine < endLine: + if state.sCount[nextLine] < state.blkIndent: + break + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + lineText = state.src[pos:maximum] + + if html_seq[1].search(lineText): + if len(lineText) != 0: + nextLine += 1 + break + nextLine += 1 + + state.line = nextLine + + token = state.push("html_block", "", 0) + token.map = [startLine, nextLine] + token.content = state.getLines(startLine, nextLine, state.blkIndent, True) + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py new file mode 100644 index 0000000..3522207 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py @@ -0,0 +1,86 @@ +# lheading (---, ==) +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def lheading(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering lheading: %s, %s, %s, %s", state, startLine, endLine, silent) + + level = None + nextLine = startLine + 1 + ruler = state.md.block.ruler + terminatorRules = ruler.getRules("paragraph") + + if state.is_code_block(startLine): + return False + + oldParentType = state.parentType + state.parentType = "paragraph" # use paragraph to match terminatorRules + + # jump line-by-line until empty one or EOF + while nextLine < endLine and not state.isEmpty(nextLine): + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.sCount[nextLine] - state.blkIndent > 3: + nextLine += 1 + continue + + # Check for underline in setext header + if state.sCount[nextLine] >= state.blkIndent: + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + if pos < maximum: + marker = state.src[pos] + + if marker in ("-", "="): + pos = state.skipCharsStr(pos, marker) + pos = state.skipSpaces(pos) + + # /* = */ + if pos >= maximum: + level = 1 if marker == "=" else 2 + break + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + nextLine += 1 + continue + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + if terminate: + break + + nextLine += 1 + + if not level: + # Didn't find valid underline + return False + + content = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + + state.line = nextLine + 1 + + token = state.push("heading_open", "h" + str(level), 1) + token.markup = marker + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = content + token.map = [startLine, state.line - 1] + token.children = [] + + token = state.push("heading_close", "h" + str(level), -1) + token.markup = marker + + state.parentType = oldParentType + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py new file mode 100644 index 0000000..d8070d7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py @@ -0,0 +1,345 @@ +# Lists +import logging + +from ..common.utils import isStrSpace +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +# Search `[-+*][\n ]`, returns next pos after marker on success +# or -1 on fail. +def skipBulletListMarker(state: StateBlock, startLine: int) -> int: + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + + try: + marker = state.src[pos] + except IndexError: + return -1 + pos += 1 + + if marker not in ("*", "-", "+"): + return -1 + + if pos < maximum: + ch = state.src[pos] + + if not isStrSpace(ch): + # " -test " - is not a list item + return -1 + + return pos + + +# Search `\d+[.)][\n ]`, returns next pos after marker on success +# or -1 on fail. +def skipOrderedListMarker(state: StateBlock, startLine: int) -> int: + start = state.bMarks[startLine] + state.tShift[startLine] + pos = start + maximum = state.eMarks[startLine] + + # List marker should have at least 2 chars (digit + dot) + if pos + 1 >= maximum: + return -1 + + ch = state.src[pos] + pos += 1 + + ch_ord = ord(ch) + # /* 0 */ /* 9 */ + if ch_ord < 0x30 or ch_ord > 0x39: + return -1 + + while True: + # EOL -> fail + if pos >= maximum: + return -1 + + ch = state.src[pos] + pos += 1 + + # /* 0 */ /* 9 */ + ch_ord = ord(ch) + if ch_ord >= 0x30 and ch_ord <= 0x39: + # List marker should have no more than 9 digits + # (prevents integer overflow in browsers) + if pos - start >= 10: + return -1 + + continue + + # found valid marker + if ch in (")", "."): + break + + return -1 + + if pos < maximum: + ch = state.src[pos] + + if not isStrSpace(ch): + # " 1.test " - is not a list item + return -1 + + return pos + + +def markTightParagraphs(state: StateBlock, idx: int) -> None: + level = state.level + 2 + + i = idx + 2 + length = len(state.tokens) - 2 + while i < length: + if state.tokens[i].level == level and state.tokens[i].type == "paragraph_open": + state.tokens[i + 2].hidden = True + state.tokens[i].hidden = True + i += 2 + i += 1 + + +def list_block(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug("entering list: %s, %s, %s, %s", state, startLine, endLine, silent) + + isTerminatingParagraph = False + tight = True + + if state.is_code_block(startLine): + return False + + # Special case: + # - item 1 + # - item 2 + # - item 3 + # - item 4 + # - this one is a paragraph continuation + if ( + state.listIndent >= 0 + and state.sCount[startLine] - state.listIndent >= 4 + and state.sCount[startLine] < state.blkIndent + ): + return False + + # limit conditions when list can interrupt + # a paragraph (validation mode only) + # Next list item should still terminate previous list item + # + # This code can fail if plugins use blkIndent as well as lists, + # but I hope the spec gets fixed long before that happens. + # + if ( + silent + and state.parentType == "paragraph" + and state.sCount[startLine] >= state.blkIndent + ): + isTerminatingParagraph = True + + # Detect list type and position after marker + posAfterMarker = skipOrderedListMarker(state, startLine) + if posAfterMarker >= 0: + isOrdered = True + start = state.bMarks[startLine] + state.tShift[startLine] + markerValue = int(state.src[start : posAfterMarker - 1]) + + # If we're starting a new ordered list right after + # a paragraph, it should start with 1. + if isTerminatingParagraph and markerValue != 1: + return False + else: + posAfterMarker = skipBulletListMarker(state, startLine) + if posAfterMarker >= 0: + isOrdered = False + else: + return False + + # If we're starting a new unordered list right after + # a paragraph, first line should not be empty. + if ( + isTerminatingParagraph + and state.skipSpaces(posAfterMarker) >= state.eMarks[startLine] + ): + return False + + # We should terminate list on style change. Remember first one to compare. + markerChar = state.src[posAfterMarker - 1] + + # For validation mode we can terminate immediately + if silent: + return True + + # Start list + listTokIdx = len(state.tokens) + + if isOrdered: + token = state.push("ordered_list_open", "ol", 1) + if markerValue != 1: + token.attrs = {"start": markerValue} + + else: + token = state.push("bullet_list_open", "ul", 1) + + token.map = listLines = [startLine, 0] + token.markup = markerChar + + # + # Iterate list items + # + + nextLine = startLine + prevEmptyEnd = False + terminatorRules = state.md.block.ruler.getRules("list") + + oldParentType = state.parentType + state.parentType = "list" + + while nextLine < endLine: + pos = posAfterMarker + maximum = state.eMarks[nextLine] + + initial = offset = ( + state.sCount[nextLine] + + posAfterMarker + - (state.bMarks[startLine] + state.tShift[startLine]) + ) + + while pos < maximum: + ch = state.src[pos] + + if ch == "\t": + offset += 4 - (offset + state.bsCount[nextLine]) % 4 + elif ch == " ": + offset += 1 + else: + break + + pos += 1 + + contentStart = pos + + # trimming space in "- \n 3" case, indent is 1 here + indentAfterMarker = 1 if contentStart >= maximum else offset - initial + + # If we have more than 4 spaces, the indent is 1 + # (the rest is just indented code block) + if indentAfterMarker > 4: + indentAfterMarker = 1 + + # " - test" + # ^^^^^ - calculating total length of this thing + indent = initial + indentAfterMarker + + # Run subparser & write tokens + token = state.push("list_item_open", "li", 1) + token.markup = markerChar + token.map = itemLines = [startLine, 0] + if isOrdered: + token.info = state.src[start : posAfterMarker - 1] + + # change current state, then restore it after parser subcall + oldTight = state.tight + oldTShift = state.tShift[startLine] + oldSCount = state.sCount[startLine] + + # - example list + # ^ listIndent position will be here + # ^ blkIndent position will be here + # + oldListIndent = state.listIndent + state.listIndent = state.blkIndent + state.blkIndent = indent + + state.tight = True + state.tShift[startLine] = contentStart - state.bMarks[startLine] + state.sCount[startLine] = offset + + if contentStart >= maximum and state.isEmpty(startLine + 1): + # workaround for this case + # (list item is empty, list terminates before "foo"): + # ~~~~~~~~ + # - + # + # foo + # ~~~~~~~~ + state.line = min(state.line + 2, endLine) + else: + # NOTE in list.js this was: + # state.md.block.tokenize(state, startLine, endLine, True) + # but tokeniz does not take the final parameter + state.md.block.tokenize(state, startLine, endLine) + + # If any of list item is tight, mark list as tight + if (not state.tight) or prevEmptyEnd: + tight = False + + # Item become loose if finish with empty line, + # but we should filter last element, because it means list finish + prevEmptyEnd = (state.line - startLine) > 1 and state.isEmpty(state.line - 1) + + state.blkIndent = state.listIndent + state.listIndent = oldListIndent + state.tShift[startLine] = oldTShift + state.sCount[startLine] = oldSCount + state.tight = oldTight + + token = state.push("list_item_close", "li", -1) + token.markup = markerChar + + nextLine = startLine = state.line + itemLines[1] = nextLine + + if nextLine >= endLine: + break + + contentStart = state.bMarks[startLine] + + # + # Try to check if list is terminated or continued. + # + if state.sCount[nextLine] < state.blkIndent: + break + + if state.is_code_block(startLine): + break + + # fail if terminating block found + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + + # fail if list has another type + if isOrdered: + posAfterMarker = skipOrderedListMarker(state, nextLine) + if posAfterMarker < 0: + break + start = state.bMarks[nextLine] + state.tShift[nextLine] + else: + posAfterMarker = skipBulletListMarker(state, nextLine) + if posAfterMarker < 0: + break + + if markerChar != state.src[posAfterMarker - 1]: + break + + # Finalize list + if isOrdered: + token = state.push("ordered_list_close", "ol", -1) + else: + token = state.push("bullet_list_close", "ul", -1) + + token.markup = markerChar + + listLines[1] = nextLine + state.line = nextLine + + state.parentType = oldParentType + + # mark paragraphs tight if needed + if tight: + markTightParagraphs(state, listTokIdx) + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py new file mode 100644 index 0000000..30ba877 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py @@ -0,0 +1,66 @@ +"""Paragraph.""" + +import logging + +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def paragraph(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering paragraph: %s, %s, %s, %s", state, startLine, endLine, silent + ) + + nextLine = startLine + 1 + ruler = state.md.block.ruler + terminatorRules = ruler.getRules("paragraph") + endLine = state.lineMax + + oldParentType = state.parentType + state.parentType = "paragraph" + + # jump line-by-line until empty one or EOF + while nextLine < endLine: + if state.isEmpty(nextLine): + break + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.sCount[nextLine] - state.blkIndent > 3: + nextLine += 1 + continue + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + nextLine += 1 + continue + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + + nextLine += 1 + + content = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + + state.line = nextLine + + token = state.push("paragraph_open", "p", 1) + token.map = [startLine, state.line] + + token = state.push("inline", "", 0) + token.content = content + token.map = [startLine, state.line] + token.children = [] + + token = state.push("paragraph_close", "p", -1) + + state.parentType = oldParentType + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py new file mode 100644 index 0000000..ad94d40 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py @@ -0,0 +1,235 @@ +import logging + +from ..common.utils import charCodeAt, isSpace, normalizeReference +from .state_block import StateBlock + +LOGGER = logging.getLogger(__name__) + + +def reference(state: StateBlock, startLine: int, _endLine: int, silent: bool) -> bool: + LOGGER.debug( + "entering reference: %s, %s, %s, %s", state, startLine, _endLine, silent + ) + + pos = state.bMarks[startLine] + state.tShift[startLine] + maximum = state.eMarks[startLine] + nextLine = startLine + 1 + + if state.is_code_block(startLine): + return False + + if state.src[pos] != "[": + return False + + string = state.src[pos : maximum + 1] + + # string = state.getLines(startLine, nextLine, state.blkIndent, False).strip() + maximum = len(string) + + labelEnd = None + pos = 1 + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x5B: # /* [ */ + return False + elif ch == 0x5D: # /* ] */ + labelEnd = pos + break + elif ch == 0x0A: # /* \n */ + if (lineContent := getNextLine(state, nextLine)) is not None: + string += lineContent + maximum = len(string) + nextLine += 1 + elif ch == 0x5C: # /* \ */ + pos += 1 + if ( + pos < maximum + and charCodeAt(string, pos) == 0x0A + and (lineContent := getNextLine(state, nextLine)) is not None + ): + string += lineContent + maximum = len(string) + nextLine += 1 + pos += 1 + + if ( + labelEnd is None or labelEnd < 0 or charCodeAt(string, labelEnd + 1) != 0x3A + ): # /* : */ + return False + + # [label]: destination 'title' + # ^^^ skip optional whitespace here + pos = labelEnd + 2 + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x0A: + if (lineContent := getNextLine(state, nextLine)) is not None: + string += lineContent + maximum = len(string) + nextLine += 1 + elif isSpace(ch): + pass + else: + break + pos += 1 + + # [label]: destination 'title' + # ^^^^^^^^^^^ parse this + destRes = state.md.helpers.parseLinkDestination(string, pos, maximum) + if not destRes.ok: + return False + + href = state.md.normalizeLink(destRes.str) + if not state.md.validateLink(href): + return False + + pos = destRes.pos + + # save cursor state, we could require to rollback later + destEndPos = pos + destEndLineNo = nextLine + + # [label]: destination 'title' + # ^^^ skipping those spaces + start = pos + while pos < maximum: + ch = charCodeAt(string, pos) + if ch == 0x0A: + if (lineContent := getNextLine(state, nextLine)) is not None: + string += lineContent + maximum = len(string) + nextLine += 1 + elif isSpace(ch): + pass + else: + break + pos += 1 + + # [label]: destination 'title' + # ^^^^^^^ parse this + titleRes = state.md.helpers.parseLinkTitle(string, pos, maximum, None) + while titleRes.can_continue: + if (lineContent := getNextLine(state, nextLine)) is None: + break + string += lineContent + pos = maximum + maximum = len(string) + nextLine += 1 + titleRes = state.md.helpers.parseLinkTitle(string, pos, maximum, titleRes) + + if pos < maximum and start != pos and titleRes.ok: + title = titleRes.str + pos = titleRes.pos + else: + title = "" + pos = destEndPos + nextLine = destEndLineNo + + # skip trailing spaces until the rest of the line + while pos < maximum: + ch = charCodeAt(string, pos) + if not isSpace(ch): + break + pos += 1 + + if pos < maximum and charCodeAt(string, pos) != 0x0A and title: + # garbage at the end of the line after title, + # but it could still be a valid reference if we roll back + title = "" + pos = destEndPos + nextLine = destEndLineNo + while pos < maximum: + ch = charCodeAt(string, pos) + if not isSpace(ch): + break + pos += 1 + + if pos < maximum and charCodeAt(string, pos) != 0x0A: + # garbage at the end of the line + return False + + label = normalizeReference(string[1:labelEnd]) + if not label: + # CommonMark 0.20 disallows empty labels + return False + + # Reference can not terminate anything. This check is for safety only. + if silent: + return True + + if "references" not in state.env: + state.env["references"] = {} + + state.line = nextLine + + # note, this is not part of markdown-it JS, but is useful for renderers + if state.md.options.get("inline_definitions", False): + token = state.push("definition", "", 0) + token.meta = { + "id": label, + "title": title, + "url": href, + "label": string[1:labelEnd], + } + token.map = [startLine, state.line] + + if label not in state.env["references"]: + state.env["references"][label] = { + "title": title, + "href": href, + "map": [startLine, state.line], + } + else: + state.env.setdefault("duplicate_refs", []).append( + { + "title": title, + "href": href, + "label": label, + "map": [startLine, state.line], + } + ) + + return True + + +def getNextLine(state: StateBlock, nextLine: int) -> None | str: + endLine = state.lineMax + + if nextLine >= endLine or state.isEmpty(nextLine): + # empty line or end of input + return None + + isContinuation = False + + # this would be a code block normally, but after paragraph + # it's considered a lazy continuation regardless of what's there + if state.is_code_block(nextLine): + isContinuation = True + + # quirk for blockquotes, this line should already be checked by that rule + if state.sCount[nextLine] < 0: + isContinuation = True + + if not isContinuation: + terminatorRules = state.md.block.ruler.getRules("reference") + oldParentType = state.parentType + state.parentType = "reference" + + # Some tags can terminate paragraph without empty line. + terminate = False + for terminatorRule in terminatorRules: + if terminatorRule(state, nextLine, endLine, True): + terminate = True + break + + state.parentType = oldParentType + + if terminate: + # terminated by another block + return None + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + maximum = state.eMarks[nextLine] + + # max + 1 explicitly includes the newline + return state.src[pos : maximum + 1] diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py new file mode 100644 index 0000000..445ad26 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py @@ -0,0 +1,261 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, Literal + +from ..common.utils import isStrSpace +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it.main import MarkdownIt + + +class StateBlock(StateBase): + def __init__( + self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token] + ) -> None: + self.src = src + + # link to parser instance + self.md = md + + self.env = env + + # + # Internal state variables + # + + self.tokens = tokens + + self.bMarks: list[int] = [] # line begin offsets for fast jumps + self.eMarks: list[int] = [] # line end offsets for fast jumps + # offsets of the first non-space characters (tabs not expanded) + self.tShift: list[int] = [] + self.sCount: list[int] = [] # indents for each line (tabs expanded) + + # An amount of virtual spaces (tabs expanded) between beginning + # of each line (bMarks) and real beginning of that line. + # + # It exists only as a hack because blockquotes override bMarks + # losing information in the process. + # + # It's used only when expanding tabs, you can think about it as + # an initial tab length, e.g. bsCount=21 applied to string `\t123` + # means first tab should be expanded to 4-21%4 === 3 spaces. + # + self.bsCount: list[int] = [] + + # block parser variables + self.blkIndent = 0 # required block content indent (for example, if we are + # inside a list, it would be positioned after list marker) + self.line = 0 # line index in src + self.lineMax = 0 # lines count + self.tight = False # loose/tight mode for lists + self.ddIndent = -1 # indent of the current dd block (-1 if there isn't any) + self.listIndent = -1 # indent of the current list block (-1 if there isn't any) + + # can be 'blockquote', 'list', 'root', 'paragraph' or 'reference' + # used in lists to determine if they interrupt a paragraph + self.parentType = "root" + + self.level = 0 + + # renderer + self.result = "" + + # Create caches + # Generate markers. + indent_found = False + + start = pos = indent = offset = 0 + length = len(self.src) + + for pos, character in enumerate(self.src): + if not indent_found: + if isStrSpace(character): + indent += 1 + + if character == "\t": + offset += 4 - offset % 4 + else: + offset += 1 + continue + else: + indent_found = True + + if character == "\n" or pos == length - 1: + if character != "\n": + pos += 1 + self.bMarks.append(start) + self.eMarks.append(pos) + self.tShift.append(indent) + self.sCount.append(offset) + self.bsCount.append(0) + + indent_found = False + indent = 0 + offset = 0 + start = pos + 1 + + # Push fake entry to simplify cache bounds checks + self.bMarks.append(length) + self.eMarks.append(length) + self.tShift.append(0) + self.sCount.append(0) + self.bsCount.append(0) + + self.lineMax = len(self.bMarks) - 1 # don't count last fake line + + # pre-check if code blocks are enabled, to speed up is_code_block method + self._code_enabled = "code" in self.md["block"].ruler.get_active_rules() + + def __repr__(self) -> str: + return ( + f"{self.__class__.__name__}" + f"(line={self.line},level={self.level},tokens={len(self.tokens)})" + ) + + def push(self, ttype: str, tag: str, nesting: Literal[-1, 0, 1]) -> Token: + """Push new token to "stream".""" + token = Token(ttype, tag, nesting) + token.block = True + if nesting < 0: + self.level -= 1 # closing tag + token.level = self.level + if nesting > 0: + self.level += 1 # opening tag + self.tokens.append(token) + return token + + def isEmpty(self, line: int) -> bool: + """.""" + return (self.bMarks[line] + self.tShift[line]) >= self.eMarks[line] + + def skipEmptyLines(self, from_pos: int) -> int: + """.""" + while from_pos < self.lineMax: + try: + if (self.bMarks[from_pos] + self.tShift[from_pos]) < self.eMarks[ + from_pos + ]: + break + except IndexError: + pass + from_pos += 1 + return from_pos + + def skipSpaces(self, pos: int) -> int: + """Skip spaces from given position.""" + while True: + try: + current = self.src[pos] + except IndexError: + break + if not isStrSpace(current): + break + pos += 1 + return pos + + def skipSpacesBack(self, pos: int, minimum: int) -> int: + """Skip spaces from given position in reverse.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if not isStrSpace(self.src[pos]): + return pos + 1 + return pos + + def skipChars(self, pos: int, code: int) -> int: + """Skip character code from given position.""" + while True: + try: + current = self.srcCharCode[pos] + except IndexError: + break + if current != code: + break + pos += 1 + return pos + + def skipCharsStr(self, pos: int, ch: str) -> int: + """Skip character string from given position.""" + while True: + try: + current = self.src[pos] + except IndexError: + break + if current != ch: + break + pos += 1 + return pos + + def skipCharsBack(self, pos: int, code: int, minimum: int) -> int: + """Skip character code reverse from given position - 1.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if code != self.srcCharCode[pos]: + return pos + 1 + return pos + + def skipCharsStrBack(self, pos: int, ch: str, minimum: int) -> int: + """Skip character string reverse from given position - 1.""" + if pos <= minimum: + return pos + while pos > minimum: + pos -= 1 + if ch != self.src[pos]: + return pos + 1 + return pos + + def getLines(self, begin: int, end: int, indent: int, keepLastLF: bool) -> str: + """Cut lines range from source.""" + line = begin + if begin >= end: + return "" + + queue = [""] * (end - begin) + + i = 1 + while line < end: + lineIndent = 0 + lineStart = first = self.bMarks[line] + last = ( + self.eMarks[line] + 1 + if line + 1 < end or keepLastLF + else self.eMarks[line] + ) + + while (first < last) and (lineIndent < indent): + ch = self.src[first] + if isStrSpace(ch): + if ch == "\t": + lineIndent += 4 - (lineIndent + self.bsCount[line]) % 4 + else: + lineIndent += 1 + elif first - lineStart < self.tShift[line]: + lineIndent += 1 + else: + break + first += 1 + + if lineIndent > indent: + # partially expanding tabs in code blocks, e.g '\t\tfoobar' + # with indent=2 becomes ' \tfoobar' + queue[i - 1] = (" " * (lineIndent - indent)) + self.src[first:last] + else: + queue[i - 1] = self.src[first:last] + + line += 1 + i += 1 + + return "".join(queue) + + def is_code_block(self, line: int) -> bool: + """Check if line is a code block, + i.e. the code block rule is enabled and text is indented by more than 3 spaces. + """ + return self._code_enabled and (self.sCount[line] - self.blkIndent) >= 4 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py new file mode 100644 index 0000000..c52553d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py @@ -0,0 +1,250 @@ +# GFM table, https://github.github.com/gfm/#tables-extension- +from __future__ import annotations + +import re + +from ..common.utils import charStrAt, isStrSpace +from .state_block import StateBlock + +headerLineRe = re.compile(r"^:?-+:?$") +enclosingPipesRe = re.compile(r"^\||\|$") + +# Limit the amount of empty autocompleted cells in a table, +# see https://github.com/markdown-it/markdown-it/issues/1000, +# Both pulldown-cmark and commonmark-hs limit the number of cells this way to ~200k. +# We set it to 65k, which can expand user input by a factor of x370 +# (256x256 square is 1.8kB expanded into 650kB). +MAX_AUTOCOMPLETED_CELLS = 0x10000 + + +def getLine(state: StateBlock, line: int) -> str: + pos = state.bMarks[line] + state.tShift[line] + maximum = state.eMarks[line] + + # return state.src.substr(pos, max - pos) + return state.src[pos:maximum] + + +def escapedSplit(string: str) -> list[str]: + result: list[str] = [] + pos = 0 + max = len(string) + isEscaped = False + lastPos = 0 + current = "" + ch = charStrAt(string, pos) + + while pos < max: + if ch == "|": + if not isEscaped: + # pipe separating cells, '|' + result.append(current + string[lastPos:pos]) + current = "" + lastPos = pos + 1 + else: + # escaped pipe, '\|' + current += string[lastPos : pos - 1] + lastPos = pos + + isEscaped = ch == "\\" + pos += 1 + + ch = charStrAt(string, pos) + + result.append(current + string[lastPos:]) + + return result + + +def table(state: StateBlock, startLine: int, endLine: int, silent: bool) -> bool: + tbodyLines = None + + # should have at least two lines + if startLine + 2 > endLine: + return False + + nextLine = startLine + 1 + + if state.sCount[nextLine] < state.blkIndent: + return False + + if state.is_code_block(nextLine): + return False + + # first character of the second line should be '|', '-', ':', + # and no other characters are allowed but spaces; + # basically, this is the equivalent of /^[-:|][-:|\s]*$/ regexp + + pos = state.bMarks[nextLine] + state.tShift[nextLine] + if pos >= state.eMarks[nextLine]: + return False + first_ch = state.src[pos] + pos += 1 + if first_ch not in ("|", "-", ":"): + return False + + if pos >= state.eMarks[nextLine]: + return False + second_ch = state.src[pos] + pos += 1 + if second_ch not in ("|", "-", ":") and not isStrSpace(second_ch): + return False + + # if first character is '-', then second character must not be a space + # (due to parsing ambiguity with list) + if first_ch == "-" and isStrSpace(second_ch): + return False + + while pos < state.eMarks[nextLine]: + ch = state.src[pos] + + if ch not in ("|", "-", ":") and not isStrSpace(ch): + return False + + pos += 1 + + lineText = getLine(state, startLine + 1) + + columns = lineText.split("|") + aligns = [] + for i in range(len(columns)): + t = columns[i].strip() + if not t: + # allow empty columns before and after table, but not in between columns; + # e.g. allow ` |---| `, disallow ` ---||--- ` + if i == 0 or i == len(columns) - 1: + continue + else: + return False + + if not headerLineRe.search(t): + return False + if charStrAt(t, len(t) - 1) == ":": + aligns.append("center" if charStrAt(t, 0) == ":" else "right") + elif charStrAt(t, 0) == ":": + aligns.append("left") + else: + aligns.append("") + + lineText = getLine(state, startLine).strip() + if "|" not in lineText: + return False + if state.is_code_block(startLine): + return False + columns = escapedSplit(lineText) + if columns and columns[0] == "": + columns.pop(0) + if columns and columns[-1] == "": + columns.pop() + + # header row will define an amount of columns in the entire table, + # and align row should be exactly the same (the rest of the rows can differ) + columnCount = len(columns) + if columnCount == 0 or columnCount != len(aligns): + return False + + if silent: + return True + + oldParentType = state.parentType + state.parentType = "table" + + # use 'blockquote' lists for termination because it's + # the most similar to tables + terminatorRules = state.md.block.ruler.getRules("blockquote") + + token = state.push("table_open", "table", 1) + token.map = tableLines = [startLine, 0] + + token = state.push("thead_open", "thead", 1) + token.map = [startLine, startLine + 1] + + token = state.push("tr_open", "tr", 1) + token.map = [startLine, startLine + 1] + + for i in range(len(columns)): + token = state.push("th_open", "th", 1) + if aligns[i]: + token.attrs = {"style": "text-align:" + aligns[i]} + + token = state.push("inline", "", 0) + # note in markdown-it this map was removed in v12.0.0 however, we keep it, + # since it is helpful to propagate to children tokens + token.map = [startLine, startLine + 1] + token.content = columns[i].strip() + token.children = [] + + token = state.push("th_close", "th", -1) + + token = state.push("tr_close", "tr", -1) + token = state.push("thead_close", "thead", -1) + + autocompleted_cells = 0 + nextLine = startLine + 2 + while nextLine < endLine: + if state.sCount[nextLine] < state.blkIndent: + break + + terminate = False + for i in range(len(terminatorRules)): + if terminatorRules[i](state, nextLine, endLine, True): + terminate = True + break + + if terminate: + break + lineText = getLine(state, nextLine).strip() + if not lineText: + break + if state.is_code_block(nextLine): + break + columns = escapedSplit(lineText) + if columns and columns[0] == "": + columns.pop(0) + if columns and columns[-1] == "": + columns.pop() + + # note: autocomplete count can be negative if user specifies more columns than header, + # but that does not affect intended use (which is limiting expansion) + autocompleted_cells += columnCount - len(columns) + if autocompleted_cells > MAX_AUTOCOMPLETED_CELLS: + break + + if nextLine == startLine + 2: + token = state.push("tbody_open", "tbody", 1) + token.map = tbodyLines = [startLine + 2, 0] + + token = state.push("tr_open", "tr", 1) + token.map = [nextLine, nextLine + 1] + + for i in range(columnCount): + token = state.push("td_open", "td", 1) + if aligns[i]: + token.attrs = {"style": "text-align:" + aligns[i]} + + token = state.push("inline", "", 0) + # note in markdown-it this map was removed in v12.0.0 however, we keep it, + # since it is helpful to propagate to children tokens + token.map = [nextLine, nextLine + 1] + try: + token.content = columns[i].strip() if columns[i] else "" + except IndexError: + token.content = "" + token.children = [] + + token = state.push("td_close", "td", -1) + + token = state.push("tr_close", "tr", -1) + + nextLine += 1 + + if tbodyLines: + token = state.push("tbody_close", "tbody", -1) + tbodyLines[1] = nextLine + + token = state.push("table_close", "table", -1) + + tableLines[1] = nextLine + state.parentType = oldParentType + state.line = nextLine + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py new file mode 100644 index 0000000..e7d7753 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py @@ -0,0 +1,19 @@ +__all__ = ( + "StateCore", + "block", + "inline", + "linkify", + "normalize", + "replace", + "smartquotes", + "text_join", +) + +from .block import block +from .inline import inline +from .linkify import linkify +from .normalize import normalize +from .replacements import replace +from .smartquotes import smartquotes +from .state_core import StateCore +from .text_join import text_join diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce2e13d05ba0a9016aa690d0e71b3c3bc31c8450 GIT binary patch literal 554 zcmXw#yKdA#7=>qSuWw6)Xpn*^f`pK^*tGzqLr6(PhiKAGGji4gJ9sY3%;aJ!YF>b6 z$g|`PMlwyRbde&OH1N+jO!1%3mvep}U+wJF2+n@`ck>e?bR91KpX34VHUPg+hY0F$ zmk2B|!8mX#5}A-Bawbxlk~H#6WHKXJ{7|~@^tqzkHRe<>8<#eea>X5`tL<=KzLUCx xNAJxOSRej}eFft-#Tefv)jau8{CSG-?ued^==q5DM)YDtFJb;hd*(5``VXR~jnx1E literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/block.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/block.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41dfe3929871c136c8c2b6072acabcade8d288b9 GIT binary patch literal 986 zcmZ`&&r94u6rM>o*;(1OQtFRI3tDI)&^5HhTPawv2ir=)dQgNVW=1!=*(6M&vS6Wy z9ux|Cb3N&?;-T%S?Wuo2Pqv85P@&M1H^H8~v~S|3>A^n8eBYaS@69(eFJB6U4g@x$ z{;otAp`X%8EYl`uw}EUSiYRtb9nWHns6tg&sjIUp@C;L_M)idZ&A!UaW*WLdP83Kn zu+X0SHRhc_W$ERnA}eBJK4(G;B^5en(GvG2Z5ff64n&3T>>12%p;c5(R{lXg5y_a? zD3*Hm+x`m-8Hx5J1aK9X(+rhn78RKJ8@DLewIm!W%#d}m(YfAvLMN z*ca}e_X1qpZb$qF#A3OW7Hix?yeN4e4Cmy2-KTJ(2Ydir*=6An45uo__!t$B(a@<* S@MFALJVg?l(XSZe5`O?$iOcH% literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/inline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a651df9d9c26c584ed2ee698220b7bea4006628 GIT binary patch literal 832 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 GivIzRtBRcf literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/normalize.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/normalize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04b79f7ecf04c5b398403831b363468f0c0cbfd8 GIT binary patch literal 814 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 I$aH-D7ahp)YXATM literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6fa3a9ec4e84c9751a9bd41170e56a765232e54c GIT binary patch literal 6185 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 VrjH#OGe1istoF|O1^82O{s27H25bNT literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55ddb62a548a9c47eb7f8fc71d6ecda1e321e30c GIT binary patch literal 1476 zcmah|&2Jk;6rWkI*Y?`M3z(K9C7mcDiJK;F3TY)oE476lpo)Z=Qv}*-L>zVD$ zI*B7!;=mz?9OwZx98klphznQ#22QqUZB|06RB_17ZQ#;NdAm+RsDgOfoq6xgd%t<} zK7JV(&=JsF;$`_86``k*a7ap@!Taw6b00Zq5jogVJX}*26^xvOqk4&&x~Kx5bTltn z(-t-0GfwI&buraQ7xm5FC){O3SnDL98vzM;l`=`z-Jnc@G9`k_fbf-=j|_Buq3lWm zpQHh?B(Z?;Enx*g!?`hL7lllgRF2te6POhGO2@=sI&f+g8H6i z(;8&~z^w#S^z{`8>^xbn2V|LoFC|pkmQP8fpV9T307o~hn(xu`Wa;w{ic3V6dEIl^ zMC1XH$FNTSEf5Q>@rpa6??p)~;xKD5#se#GIg@))CP9~6h@QWP`%>mM9MccBlg$LLZ?ozC-9PZsN*8t&W)>N2y*$NZ{=^SJ7PsY@oic z(gv1L$<+vn15%=yI1wpPodl$mqc#)fQLO)AtH!pMn~IogDo%0`t~?R5Z#Q;mvw#!T-mxTtpujY4RT((gPQ zgCO@Icr;&B#T&4T6fB`8Xiyg{ROdOP#dMf5O^4g28S19FQimgInj-4XFd5fLL^B=g zaRuX)#V~Pxen8^w2=^2$FVY{@xC42;DhP;C>&hWmdI^m2GeyJdUk1Wsf1ttN(deIA J0Z+xge*;^ci0=RZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py new file mode 100644 index 0000000..a6c3bb8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py @@ -0,0 +1,13 @@ +from ..token import Token +from .state_core import StateCore + + +def block(state: StateCore) -> None: + if state.inlineMode: + token = Token("inline", "", 0) + token.content = state.src + token.map = [0, 1] + token.children = [] + state.tokens.append(token) + else: + state.md.block.parse(state.src, state.md, state.env, state.tokens) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py new file mode 100644 index 0000000..c3fd0b5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py @@ -0,0 +1,10 @@ +from .state_core import StateCore + + +def inline(state: StateCore) -> None: + """Parse inlines""" + for token in state.tokens: + if token.type == "inline": + if token.children is None: + token.children = [] + state.md.inline.parse(token.content, state.md, state.env, token.children) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py new file mode 100644 index 0000000..efbc9d4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py @@ -0,0 +1,149 @@ +from __future__ import annotations + +import re +from typing import Protocol + +from ..common.utils import arrayReplaceAt, isLinkClose, isLinkOpen +from ..token import Token +from .state_core import StateCore + +HTTP_RE = re.compile(r"^http://") +MAILTO_RE = re.compile(r"^mailto:") +TEST_MAILTO_RE = re.compile(r"^mailto:", flags=re.IGNORECASE) + + +def linkify(state: StateCore) -> None: + """Rule for identifying plain-text links.""" + if not state.md.options.linkify: + return + + if not state.md.linkify: + raise ModuleNotFoundError("Linkify enabled but not installed.") + + for inline_token in state.tokens: + if inline_token.type != "inline" or not state.md.linkify.pretest( + inline_token.content + ): + continue + + tokens = inline_token.children + + htmlLinkLevel = 0 + + # We scan from the end, to keep position when new tags added. + # Use reversed logic in links start/end match + assert tokens is not None + i = len(tokens) + while i >= 1: + i -= 1 + assert isinstance(tokens, list) + currentToken = tokens[i] + + # Skip content of markdown links + if currentToken.type == "link_close": + i -= 1 + while ( + tokens[i].level != currentToken.level + and tokens[i].type != "link_open" + ): + i -= 1 + continue + + # Skip content of html tag links + if currentToken.type == "html_inline": + if isLinkOpen(currentToken.content) and htmlLinkLevel > 0: + htmlLinkLevel -= 1 + if isLinkClose(currentToken.content): + htmlLinkLevel += 1 + if htmlLinkLevel > 0: + continue + + if currentToken.type == "text" and state.md.linkify.test( + currentToken.content + ): + text = currentToken.content + links: list[_LinkType] = state.md.linkify.match(text) or [] + + # Now split string to nodes + nodes = [] + level = currentToken.level + lastPos = 0 + + # forbid escape sequence at the start of the string, + # this avoids http\://example.com/ from being linkified as + # http:
    //example.com/ + if ( + links + and links[0].index == 0 + and i > 0 + and tokens[i - 1].type == "text_special" + ): + links = links[1:] + + for link in links: + url = link.url + fullUrl = state.md.normalizeLink(url) + if not state.md.validateLink(fullUrl): + continue + + urlText = link.text + + # Linkifier might send raw hostnames like "example.com", where url + # starts with domain name. So we prepend http:// in those cases, + # and remove it afterwards. + if not link.schema: + urlText = HTTP_RE.sub( + "", state.md.normalizeLinkText("http://" + urlText) + ) + elif link.schema == "mailto:" and TEST_MAILTO_RE.search(urlText): + urlText = MAILTO_RE.sub( + "", state.md.normalizeLinkText("mailto:" + urlText) + ) + else: + urlText = state.md.normalizeLinkText(urlText) + + pos = link.index + + if pos > lastPos: + token = Token("text", "", 0) + token.content = text[lastPos:pos] + token.level = level + nodes.append(token) + + token = Token("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.level = level + level += 1 + token.markup = "linkify" + token.info = "auto" + nodes.append(token) + + token = Token("text", "", 0) + token.content = urlText + token.level = level + nodes.append(token) + + token = Token("link_close", "a", -1) + level -= 1 + token.level = level + token.markup = "linkify" + token.info = "auto" + nodes.append(token) + + lastPos = link.last_index + + if lastPos < len(text): + token = Token("text", "", 0) + token.content = text[lastPos:] + token.level = level + nodes.append(token) + + inline_token.children = tokens = arrayReplaceAt(tokens, i, nodes) + + +class _LinkType(Protocol): + url: str + text: str + index: int + last_index: int + schema: str | None diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py new file mode 100644 index 0000000..3243924 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py @@ -0,0 +1,19 @@ +"""Normalize input string.""" + +import re + +from .state_core import StateCore + +# https://spec.commonmark.org/0.29/#line-ending +NEWLINES_RE = re.compile(r"\r\n?|\n") +NULL_RE = re.compile(r"\0") + + +def normalize(state: StateCore) -> None: + # Normalize newlines + string = NEWLINES_RE.sub("\n", state.src) + + # Replace NULL characters + string = NULL_RE.sub("\ufffd", string) + + state.src = string diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py new file mode 100644 index 0000000..bcc9980 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py @@ -0,0 +1,127 @@ +"""Simple typographic replacements + +* ``(c)``, ``(C)`` → © +* ``(tm)``, ``(TM)`` → ™ +* ``(r)``, ``(R)`` → ® +* ``+-`` → ± +* ``...`` → … +* ``?....`` → ?.. +* ``!....`` → !.. +* ``????????`` → ??? +* ``!!!!!`` → !!! +* ``,,,`` → , +* ``--`` → &ndash +* ``---`` → &mdash +""" + +from __future__ import annotations + +import logging +import re + +from ..token import Token +from .state_core import StateCore + +LOGGER = logging.getLogger(__name__) + +# TODO: +# - fractionals 1/2, 1/4, 3/4 -> ½, ¼, ¾ +# - multiplication 2 x 4 -> 2 × 4 + +RARE_RE = re.compile(r"\+-|\.\.|\?\?\?\?|!!!!|,,|--") + +# Workaround for phantomjs - need regex without /g flag, +# or root check will fail every second time +# SCOPED_ABBR_TEST_RE = r"\((c|tm|r)\)" + +SCOPED_ABBR_RE = re.compile(r"\((c|tm|r)\)", flags=re.IGNORECASE) + +PLUS_MINUS_RE = re.compile(r"\+-") + +ELLIPSIS_RE = re.compile(r"\.{2,}") + +ELLIPSIS_QUESTION_EXCLAMATION_RE = re.compile(r"([?!])…") + +QUESTION_EXCLAMATION_RE = re.compile(r"([?!]){4,}") + +COMMA_RE = re.compile(r",{2,}") + +EM_DASH_RE = re.compile(r"(^|[^-])---(?=[^-]|$)", flags=re.MULTILINE) + +EN_DASH_RE = re.compile(r"(^|\s)--(?=\s|$)", flags=re.MULTILINE) + +EN_DASH_INDENT_RE = re.compile(r"(^|[^-\s])--(?=[^-\s]|$)", flags=re.MULTILINE) + + +SCOPED_ABBR = {"c": "©", "r": "®", "tm": "™"} + + +def replaceFn(match: re.Match[str]) -> str: + return SCOPED_ABBR[match.group(1).lower()] + + +def replace_scoped(inlineTokens: list[Token]) -> None: + inside_autolink = 0 + + for token in inlineTokens: + if token.type == "text" and not inside_autolink: + token.content = SCOPED_ABBR_RE.sub(replaceFn, token.content) + + if token.type == "link_open" and token.info == "auto": + inside_autolink -= 1 + + if token.type == "link_close" and token.info == "auto": + inside_autolink += 1 + + +def replace_rare(inlineTokens: list[Token]) -> None: + inside_autolink = 0 + + for token in inlineTokens: + if ( + token.type == "text" + and (not inside_autolink) + and RARE_RE.search(token.content) + ): + # +- -> ± + token.content = PLUS_MINUS_RE.sub("±", token.content) + + # .., ..., ....... -> … + token.content = ELLIPSIS_RE.sub("…", token.content) + + # but ?..... & !..... -> ?.. & !.. + token.content = ELLIPSIS_QUESTION_EXCLAMATION_RE.sub("\\1..", token.content) + token.content = QUESTION_EXCLAMATION_RE.sub("\\1\\1\\1", token.content) + + # ,, ,,, ,,,, -> , + token.content = COMMA_RE.sub(",", token.content) + + # em-dash + token.content = EM_DASH_RE.sub("\\1\u2014", token.content) + + # en-dash + token.content = EN_DASH_RE.sub("\\1\u2013", token.content) + token.content = EN_DASH_INDENT_RE.sub("\\1\u2013", token.content) + + if token.type == "link_open" and token.info == "auto": + inside_autolink -= 1 + + if token.type == "link_close" and token.info == "auto": + inside_autolink += 1 + + +def replace(state: StateCore) -> None: + if not state.md.options.typographer: + return + + for token in state.tokens: + if token.type != "inline": + continue + if token.children is None: + continue + + if SCOPED_ABBR_RE.search(token.content): + replace_scoped(token.children) + + if RARE_RE.search(token.content): + replace_rare(token.children) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py new file mode 100644 index 0000000..f9b8b45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py @@ -0,0 +1,202 @@ +"""Convert straight quotation marks to typographic ones""" + +from __future__ import annotations + +import re +from typing import Any + +from ..common.utils import charCodeAt, isMdAsciiPunct, isPunctChar, isWhiteSpace +from ..token import Token +from .state_core import StateCore + +QUOTE_TEST_RE = re.compile(r"['\"]") +QUOTE_RE = re.compile(r"['\"]") +APOSTROPHE = "\u2019" # ’ + + +def replaceAt(string: str, index: int, ch: str) -> str: + # When the index is negative, the behavior is different from the js version. + # But basically, the index will not be negative. + assert index >= 0 + return string[:index] + ch + string[index + 1 :] + + +def process_inlines(tokens: list[Token], state: StateCore) -> None: + stack: list[dict[str, Any]] = [] + + for i, token in enumerate(tokens): + thisLevel = token.level + + j = 0 + for j in range(len(stack))[::-1]: + if stack[j]["level"] <= thisLevel: + break + else: + # When the loop is terminated without a "break". + # Subtract 1 to get the same index as the js version. + j -= 1 + + stack = stack[: j + 1] + + if token.type != "text": + continue + + text = token.content + pos = 0 + maximum = len(text) + + while pos < maximum: + goto_outer = False + lastIndex = pos + t = QUOTE_RE.search(text[lastIndex:]) + if not t: + break + + canOpen = canClose = True + pos = t.start(0) + lastIndex + 1 + isSingle = t.group(0) == "'" + + # Find previous character, + # default to space if it's the beginning of the line + lastChar: None | int = 0x20 + + if t.start(0) + lastIndex - 1 >= 0: + lastChar = charCodeAt(text, t.start(0) + lastIndex - 1) + else: + for j in range(i)[::-1]: + if tokens[j].type == "softbreak" or tokens[j].type == "hardbreak": + break + # should skip all tokens except 'text', 'html_inline' or 'code_inline' + if not tokens[j].content: + continue + + lastChar = charCodeAt(tokens[j].content, len(tokens[j].content) - 1) + break + + # Find next character, + # default to space if it's the end of the line + nextChar: None | int = 0x20 + + if pos < maximum: + nextChar = charCodeAt(text, pos) + else: + for j in range(i + 1, len(tokens)): + # nextChar defaults to 0x20 + if tokens[j].type == "softbreak" or tokens[j].type == "hardbreak": + break + # should skip all tokens except 'text', 'html_inline' or 'code_inline' + if not tokens[j].content: + continue + + nextChar = charCodeAt(tokens[j].content, 0) + break + + isLastPunctChar = lastChar is not None and ( + isMdAsciiPunct(lastChar) or isPunctChar(chr(lastChar)) + ) + isNextPunctChar = nextChar is not None and ( + isMdAsciiPunct(nextChar) or isPunctChar(chr(nextChar)) + ) + + isLastWhiteSpace = lastChar is not None and isWhiteSpace(lastChar) + isNextWhiteSpace = nextChar is not None and isWhiteSpace(nextChar) + + if isNextWhiteSpace: # noqa: SIM114 + canOpen = False + elif isNextPunctChar and not (isLastWhiteSpace or isLastPunctChar): + canOpen = False + + if isLastWhiteSpace: # noqa: SIM114 + canClose = False + elif isLastPunctChar and not (isNextWhiteSpace or isNextPunctChar): + canClose = False + + if nextChar == 0x22 and t.group(0) == '"': # 0x22: " # noqa: SIM102 + if ( + lastChar is not None and lastChar >= 0x30 and lastChar <= 0x39 + ): # 0x30: 0, 0x39: 9 + # special case: 1"" - count first quote as an inch + canClose = canOpen = False + + if canOpen and canClose: + # Replace quotes in the middle of punctuation sequence, but not + # in the middle of the words, i.e.: + # + # 1. foo " bar " baz - not replaced + # 2. foo-"-bar-"-baz - replaced + # 3. foo"bar"baz - not replaced + canOpen = isLastPunctChar + canClose = isNextPunctChar + + if not canOpen and not canClose: + # middle of word + if isSingle: + token.content = replaceAt( + token.content, t.start(0) + lastIndex, APOSTROPHE + ) + continue + + if canClose: + # this could be a closing quote, rewind the stack to get a match + for j in range(len(stack))[::-1]: + item = stack[j] + if stack[j]["level"] < thisLevel: + break + if item["single"] == isSingle and stack[j]["level"] == thisLevel: + item = stack[j] + + if isSingle: + openQuote = state.md.options.quotes[2] + closeQuote = state.md.options.quotes[3] + else: + openQuote = state.md.options.quotes[0] + closeQuote = state.md.options.quotes[1] + + # replace token.content *before* tokens[item.token].content, + # because, if they are pointing at the same token, replaceAt + # could mess up indices when quote length != 1 + token.content = replaceAt( + token.content, t.start(0) + lastIndex, closeQuote + ) + tokens[item["token"]].content = replaceAt( + tokens[item["token"]].content, item["pos"], openQuote + ) + + pos += len(closeQuote) - 1 + if item["token"] == i: + pos += len(openQuote) - 1 + + text = token.content + maximum = len(text) + + stack = stack[:j] + goto_outer = True + break + if goto_outer: + goto_outer = False + continue + + if canOpen: + stack.append( + { + "token": i, + "pos": t.start(0) + lastIndex, + "single": isSingle, + "level": thisLevel, + } + ) + elif canClose and isSingle: + token.content = replaceAt( + token.content, t.start(0) + lastIndex, APOSTROPHE + ) + + +def smartquotes(state: StateCore) -> None: + if not state.md.options.typographer: + return + + for token in state.tokens: + if token.type != "inline" or not QUOTE_RE.search(token.content): + continue + if token.children is not None: + process_inlines(token.children, state) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py new file mode 100644 index 0000000..a938041 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py @@ -0,0 +1,25 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +class StateCore(StateBase): + def __init__( + self, + src: str, + md: MarkdownIt, + env: EnvType, + tokens: list[Token] | None = None, + ) -> None: + self.src = src + self.md = md # link to parser instance + self.env = env + self.tokens: list[Token] = tokens or [] + self.inlineMode = False diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py new file mode 100644 index 0000000..5379f6d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py @@ -0,0 +1,35 @@ +"""Join raw text tokens with the rest of the text + +This is set as a separate rule to provide an opportunity for plugins +to run text replacements after text join, but before escape join. + +For example, `\\:)` shouldn't be replaced with an emoji. +""" + +from __future__ import annotations + +from ..token import Token +from .state_core import StateCore + + +def text_join(state: StateCore) -> None: + """Join raw text for escape sequences (`text_special`) tokens with the rest of the text""" + + for inline_token in state.tokens[:]: + if inline_token.type != "inline": + continue + + # convert text_special to text and join all adjacent text nodes + new_tokens: list[Token] = [] + for child_token in inline_token.children or []: + if child_token.type == "text_special": + child_token.type = "text" + if ( + child_token.type == "text" + and new_tokens + and new_tokens[-1].type == "text" + ): + new_tokens[-1].content += child_token.content + else: + new_tokens.append(child_token) + inline_token.children = new_tokens diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py new file mode 100644 index 0000000..d82ef8f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py @@ -0,0 +1,31 @@ +__all__ = ( + "StateInline", + "autolink", + "backtick", + "emphasis", + "entity", + "escape", + "fragments_join", + "html_inline", + "image", + "link", + "link_pairs", + "linkify", + "newline", + "strikethrough", + "text", +) +from . import emphasis, strikethrough +from .autolink import autolink +from .backticks import backtick +from .balance_pairs import link_pairs +from .entity import entity +from .escape import escape +from .fragments_join import fragments_join +from .html_inline import html_inline +from .image import image +from .link import link +from .linkify import linkify +from .newline import newline +from .state_inline import StateInline +from .text import text diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f30f3da4b0151acccbf2780a8d707be14f9ee2cf GIT binary patch literal 821 zcmYL`PixyS7{+DCiJdr3(q@!W#s*^@q>z|x6m}ScZtO4^yY!}uQDQaLEZIg{;&8kVP=E+@pQghkeT-9k2l$SdM7S zVi;TQ(;*weq2&QhSOOEvF&(iH99bUHF&o3N<%CYy1WqiE=pNgL`FxZ|CpNUZ2iQf5>Y7rp|G8Rw266tw>ur@0neq+A;?_3JG!U6(i)MEdy<~N+4`1;k9l+FFywJ;4$Md`^e-itj o!#|IJ_oM|6TJW$1$1OOr^P~ljTX5KdgBIMk^Y|w?;D`G1Keb%Z0ssI2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bcbc2710760aee5be903ef8426eecacdb78b4e24 GIT binary patch literal 2781 zcmeHJ%}*Ow5P!S2ch_GS+n~mQCZ%zT9b(Lfk|;DKrO0ha$cI9rHpJjM-lZ6?z3%Rs z*u+kZR4I0p%0{gedMbw=h)(nu`5n$o7(8=HaeE#NS5X(mf@%wiq(ImoupHQ+pvX$T-(C2+=ODBkb^Qe7URP) zZXq}Ax*PN?jCdydJm-76PB>4#=kGq%;*S)oKuPKdD(xw~t%Q3s<2p6wsBc>mLAZr@9l&5)qq@3r?LO*(*M ziO4yGL?VT)RF{2oMgw|?ewZ>^JxY_TcEOAgAdqQo#9xoo6fL7m>j2TUXQ^X#yL^mz z+TA2e4PXFxnmmd!lw7Z*IsM^`z=l%mW${;tR;$~CR&$W;VQP3~=q6s4!#;pTt5_1= zJ3@L0zSh6nu@p-~t>aSy$}lXGro%*<3Domv^&r)AWep%1cdY^C^)ZdCi8VK3Hpv9$?lAufD;OT^#94l%6gp;Jc!LY#{!L{QPr zirkFC1QW7=^@5vVuh1RTM+bA;b$3xAh8W3u_nXXfVvn!jQXF(ZmHw(MV!Q zp@6#@Oe)5a+qbTdk6pVGxaos-$_2&HtU^Xv#T*mFXpj#taN`)wG!HxrJ+~%l;|Xb2 z(FJ8$loTo&6eEeaq7BDp1jTy5?-tIE4hbzz?kV_$%Pi|VA8y4rvr@vS{5dL>dd%4Z=?DEp(+Awmg2c z_^2qA=#F)|``|hpYZK3pmu%<%BWtM`TeqP`keg9RkyA{yd&^!)iTLV(zm8}et}&t$ zB=HDVY3~UFU#qX@NIZ?zJuvJr7oq|SB{?h(fQWB((oGnu8iF8RApIZcWX0H?8z>Cr zhpHsf-5|F$q>0QjRSH=gxqF4V{M@?Zda30`)>x%R2*O&tQbl-PZQGsKoPXBj8s=Ym CkzUaN literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1a748e3dc5a1e6fc920ddbd34556c83e0fc0db53 GIT binary patch literal 2569 zcmcImT}<0n6uyq**v=0rBrSmv5-6}{D`Zfys+4u5T{`GUw~4h9Xevu%51bz-wM`+F zGo{m}2GojFtJLrWJdvr=#A6>T?FDHsB&mdJ^?|C|L*LliNfR&KF(iRey6t60^1bKY zd%olIcaQyx#bQK2-T15VKS+e0X^S!$O3aJTfVqbl#9$FLf*2ixN3f`FM28_AVo|6p zSH{82=bXh zAnWRYW3cdXgaj<1lXXd41_!TO5Zc0k&b^e>%Q{&f25o}(U$hjejvH{Xpij|Cq>%oV1850l6 zXbKBe?UhDICbVb;b)!4>Xp*lBBH2)qtehnXSvQ3x$s|Q1TFc!&ISN%*#48Mg$yC|K zBq@`SF*r+7GW9Q+p-TDQ&J0z`^bYP#nc0ogGDFGab%2kdY7vF$#{UfSpSMBZp)~46-_e)#lcQg9%M-Vsr{uVGeW2{Gi^N*6zXhkhl4!M6# z%XBYDWw2YG!$_(r16q)PV`v!h`bji}52HzpAwXZ{e*b?J?lE21#J)NwXz3TU`u;*S z1!D|5%58N!Rj(~JG2_uv4n>QXn$H`UD{+sQUPXIIbF^0UtzMi z90LjT+d-7t;(a`$nuC#;Sdk&5SeWHS?LN47X!ELfGA4w@IM^t9 zhkWgWeP_DcwXXyhY(J}oua6Hz5+WyhJFc<(HE)Ew;*BSy@fd%sqqEB^auVAP;Ba6J z@S4+1Y?2@4B(E?LVZ~DLy_NWN#1kr2UI`vBhK5J%frO=yVzkbBrah^%>!kT+;zlB4 zyYWrdRv;S`t9{*UP5Bf(neM#NpE|2l*=8ftk<`Z<24t$rkTdPsi}S;C!wcfv<(yb> zb}5u8eRY~j;~V%s0!3#R071v_^l)Y(JG5$PN}YRRJCwQh!^zYjynT&y7D(qp>ymfT zyVl&DZ|+`>JnSnrpId1yG=KWodQdS}&-!Ql*-Lrz;oE+Nvdq#mbmq%E)pVOythV(A z*Q(x?I-hZ923j|CI9;REHO|+~)y=!+Tsd2AyjXWUeI8EjjSJYFQ)voVYi+i+P~~1= zm$*f4naa1Fcra9GJFS@QS!~*$?gwA?6DhWx2C&1u@J_z=XxhAPs?GKmOm9E6)hQ0= zym8LB@WFE1gQlXRH$y0{)(mmithig3=tVkrI2T%VpICGE<=uS`TUPL*dk~H->-M^P z{yY9P`_a7pXm03{y;IX+Y;HV{lX`_{DF@={v~?*Z~JeOfqr literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e35af067f7524cb4009456f910e4b6be3e193748 GIT binary patch literal 3257 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 B6IK8K literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..546e5e8b9d211e3715159ecdd2eb547ccdfa55c4 GIT binary patch literal 1927 zcma(SOK%%RcxHFKYp*wP9!(#J6o)pUrj3mgstPE9)=kq!fGP!46bfduv#A%`yYB3! zt($e_RF$x4r8)vB?yZPRP&t%a{{yE64$BgR5vSe^5tq4?89Q#mqZOaD^S$PK&U~}q zb#=*r!eRbVW>Ey-H^y{;@-5gnO3?~HU=|>VxE#!Lvm6A7M?#Lz3$p^H1G<1jJ%A)V zFfXFubzxS_02KNP&Pqi&7QQkfpTU-<+jdm9HMO9lsFqQ&9aT*fr39M8x|+4+ha3$R zgT8FoGY+09sG9x|wngC?M|JemX3j8mKVUP)7i}Y_n~pDH-C4k<#;iLKpaf69jcZi8 z0$lJ(N3#u=I4a+6wW%xdR4#1WxJkO)9!epYJpurRMb70Af29im>W6dr?72<2(}w94o7vHfwQo8xS*b$--Hi z4ZWS1nH+uV*zv=oZ0ZedG-V+@eauvIMcc3w@r$~7F_AOo5{06ZvCQ#!ax7sRjy_6_ zv+8+j&k8`+B{OX}3A~Wg?X=N)Iuh;t;)NpaW%aOy9i5%0qgVzFIdUsjjg?bgcmJ(i zHCLW$NXn1ut)nl$J|b~FU3l3Y4fPBldk3|G!yyUK)Z%UY@$FQ?YKdu#h{ zWXe;XBv;V2#UCRBp3-}3x;kB3ymMl8=m+JHM=dW@gB89(_fCD5_j-4(>{;GZA79>E zIlkUMSfBf1!s{8JAqI9=0yjfmq`xVFuAW-5da9CYhCrmRHgzN4RJQbuEf?kKhSXgf zS(A3x&#sDVgYkRg_j|uRa{uhw_z6~;Q8ns(UA-+m=#EzS^}d0c_W6N|vAX-|o?12?++YO@czpDR!O8t$d}t;oxAePVTN^}_c($x6T* ziGB0_m)33h{t=pVm$z##MT$2tNRiy=>948FQhDMIWXK93t>} z0{0QPpTJ=PM+kg@zyk!v2s}vOAp%DUr1Oy=@Kpj|Bk(AJuM;>y;2Q+KN#F;V{mTga zkid@!{FuN+0$l=21YUh77WAcb8d+L8?JJs<&s%1E!7*}ndjyo$|77!uVD{_qg*nU0 zweQF-%6|>;FhzJj3lTh;w-CKl6L^}k>E;t6!yeU8XC8_-7e*SM{Tn-ZIkdi%kVq;I^^S{b>y6`*Q6Er`v39W z@%nnmKx=4SURP>zEmQ!@CSrr<`_$xT0A}Sx%_EQo5}qtvLq_P6K}lLiHFOb1Mnvn6 zi>x{@&7Cs!_)O>OJB~Ga!gKaCC?fdziaTbA? zb+Uhi?Hn&Z-VS=tJTuUL!Jt>6s!CxB^giE-QAF5bO_>&J3LuM2Lx&vC!5!ZDODLT^e{1-d(|{|v3yjbY4MM5nl1!j4@alw*C_AqR^YgIhfi8;n<{(jcp2x0K`Z#t6SN! z1%D!}TUNk{Em9#C@Ai=v@<0j~C4xX_ReXnJ^)e@bWI84|RnLMmh-DT{5pPjv1;RKU zU0NEOz?ljB>C#fd2hQ zVm=t;ssf_mz377pouiZx1HeINkcL&Te>@inY%?r&jKI~03KCNy6q1)epO)7 zZ@gQ-)*2qIhd0%R+FWp>&;B08t(bP913>olZ_YR7cLrSb#Y1)2RfqQ~2WqmV4KzRA zitbDuXhSXS^0vCA?kw!h?0)2GR}ZyuR~z529B7m6sMPmVu;^+-huWB{jqQK<{o=jF zA4h)a`)Slo&K@RjxNvDV+VUya9@>4{Rfq1YV*mh5&X=`TeC*rBZx(+TapP0X@F`?V z)tWPn>-D)-RBfWh6LqDXlwwad2k)lZFH2Fi?tE4Q`GJJp%dUC_Xrcp0kXk7rd#ZoN z9hZfPGs4gOJ&6s7c|Y79MyHFm0o8kp!8s#|Q;a_cx3-KB`csOxBQGJmGv1cqu|M*U Ic=*o$0owuBRsaA1 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afb68497e808d241d62ade63f4289fab5737a340 GIT binary patch literal 1993 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da203cc39b1fd1d415d8421f347b70f0f43c4d13 GIT binary patch literal 4038 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e1d56871f668542285ef0d49164dbb3b618c835 GIT binary patch literal 1782 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/strikethrough.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..688790285bc05cd7a480f5abb669c5bd95a68fc7 GIT binary patch literal 4217 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 CB6#os literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/text.cpython-312.pyc b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__pycache__/text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d7566cae0d4004ade3e02543f42220a774ebce2 GIT binary patch literal 1517 zcmZ`&T}&KR6uxI>_J`eWcH81sj0rX^=(MmKi`{EAwGcNMW6Js?|lJjQk=eE>`UKB(U<$8=MFm*37+JB=iYPfIrrT2 z^C*={5TtJTpQ5G^@~1e26m4ww>$q7aCNZH*3I`ktU`nQ3mS*IF45Ua*-$W&&7?A=YXh! zpB(jcj}F^q%cgzjQ0BuWA2bdL4(B;s;Bb*c8;5odmpOED=;d&g!+RY1IP`P)gu^(8 zPdR+X;d2gOaG2-tr5|O~n`O2k-U=y>8yVOB0>U!!L<9kqq;U6=n{Y&r89h#>REiy! z5#otA0@`SJ5BVLGnzF!9GD=isgf*kYCoGFhjrbCye#~%YDpr~LQR*6ch5Aa#v1~u1 zjZrpZ*}CVjfuhdbAIUx%5nj&UcG$FA(GBY6M+ZAUymr02Q)JaLItLt+YS(PNTy-rs zpSwlvTlumzk*`#}qGNaE-oBD|Esu7h@w7gL_A@%0Hl5qHW_fuwTc)mN1*OS*bk56F zs(x1U4#Ut4j6-8|iq5e&F_cTV+#EukJWHmQdKY`|8Q))jFnoV_Wnyh=b?R}hZ@c~d z?brLavi%Rcwz5Op$s3!>4c3Mxe#8}x;748jy6qW9OAb(z#i2?fV#UPAd% ztHyCpPHc;S6QYSKo-=e$x=Sf-|wk}tL4F7#_dO~yDxB%$gEpMHxF z234qm+fgHPCyvtpL~)|On)DjElOn{Bv~a{R-Wt&k->gciJTf$<#(cTrxPBDjrhZT> zOf=P*QS@b(8A0-y=f^74HZ6NfjWCRrFjc^10UZc_`dH~*k=Qo`v38+XM3b;9xXt5o z=Md^-Cy`!K7uEW}PU_6k_~Lkd=vlU7JDYow?cU0E|3rVWezqQ--OdiyKl;7xoxAxb ziPo(|>*K`vU)$>gyRpPwx@0X{zs1h&q?`Xpp5BS4mQvrOzI)|C%l(#>?zNuPo^^M# zrE4qR^=)c5bGAOXFua>g2R)@G{iexT+wdHx?6Ou7;;Ep^8cof_T(b*89x-&Ih_m;x z?%^kG%!zuGRDlBF_6Vkxn0|_Tp*C+)M5eWGiC< MTQ~m_r{MK}0TzN!$^ZZW literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py new file mode 100644 index 0000000..6546e25 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py @@ -0,0 +1,77 @@ +# Process autolinks '' +import re + +from .state_inline import StateInline + +EMAIL_RE = re.compile( + r"^([a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$" +) +AUTOLINK_RE = re.compile(r"^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$") + + +def autolink(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "<": + return False + + start = state.pos + maximum = state.posMax + + while True: + pos += 1 + if pos >= maximum: + return False + + ch = state.src[pos] + + if ch == "<": + return False + if ch == ">": + break + + url = state.src[start + 1 : pos] + + if AUTOLINK_RE.search(url) is not None: + fullUrl = state.md.normalizeLink(url) + if not state.md.validateLink(fullUrl): + return False + + if not silent: + token = state.push("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.markup = "autolink" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "autolink" + token.info = "auto" + + state.pos += len(url) + 2 + return True + + if EMAIL_RE.search(url) is not None: + fullUrl = state.md.normalizeLink("mailto:" + url) + if not state.md.validateLink(fullUrl): + return False + + if not silent: + token = state.push("link_open", "a", 1) + token.attrs = {"href": fullUrl} + token.markup = "autolink" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "autolink" + token.info = "auto" + + state.pos += len(url) + 2 + return True + + return False diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py new file mode 100644 index 0000000..fc60d6b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py @@ -0,0 +1,72 @@ +# Parse backticks +import re + +from .state_inline import StateInline + +regex = re.compile("^ (.+) $") + + +def backtick(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "`": + return False + + start = pos + pos += 1 + maximum = state.posMax + + # scan marker length + while pos < maximum and (state.src[pos] == "`"): + pos += 1 + + marker = state.src[start:pos] + openerLength = len(marker) + + if state.backticksScanned and state.backticks.get(openerLength, 0) <= start: + if not silent: + state.pending += marker + state.pos += openerLength + return True + + matchStart = matchEnd = pos + + # Nothing found in the cache, scan until the end of the line (or until marker is found) + while True: + try: + matchStart = state.src.index("`", matchEnd) + except ValueError: + break + matchEnd = matchStart + 1 + + # scan marker length + while matchEnd < maximum and (state.src[matchEnd] == "`"): + matchEnd += 1 + + closerLength = matchEnd - matchStart + + if closerLength == openerLength: + # Found matching closer length. + if not silent: + token = state.push("code_inline", "code", 0) + token.markup = marker + token.content = state.src[pos:matchStart].replace("\n", " ") + if ( + token.content.startswith(" ") + and token.content.endswith(" ") + and len(token.content.strip()) > 0 + ): + token.content = token.content[1:-1] + state.pos = matchEnd + return True + + # Some different length found, put it in cache as upper limit of where closer can be found + state.backticks[closerLength] = matchStart + + # Scanned through the end, didn't find anything + state.backticksScanned = True + + if not silent: + state.pending += marker + state.pos += openerLength + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py new file mode 100644 index 0000000..9c63b27 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py @@ -0,0 +1,138 @@ +"""Balance paired characters (*, _, etc) in inline tokens.""" + +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def processDelimiters(state: StateInline, delimiters: list[Delimiter]) -> None: + """For each opening emphasis-like marker find a matching closing one.""" + if not delimiters: + return + + openersBottom = {} + maximum = len(delimiters) + + # headerIdx is the first delimiter of the current (where closer is) delimiter run + headerIdx = 0 + lastTokenIdx = -2 # needs any value lower than -1 + jumps: list[int] = [] + closerIdx = 0 + while closerIdx < maximum: + closer = delimiters[closerIdx] + + jumps.append(0) + + # markers belong to same delimiter run if: + # - they have adjacent tokens + # - AND markers are the same + # + if ( + delimiters[headerIdx].marker != closer.marker + or lastTokenIdx != closer.token - 1 + ): + headerIdx = closerIdx + lastTokenIdx = closer.token + + # Length is only used for emphasis-specific "rule of 3", + # if it's not defined (in strikethrough or 3rd party plugins), + # we can default it to 0 to disable those checks. + # + closer.length = closer.length or 0 + + if not closer.close: + closerIdx += 1 + continue + + # Previously calculated lower bounds (previous fails) + # for each marker, each delimiter length modulo 3, + # and for whether this closer can be an opener; + # https://github.com/commonmark/cmark/commit/34250e12ccebdc6372b8b49c44fab57c72443460 + if closer.marker not in openersBottom: + openersBottom[closer.marker] = [-1, -1, -1, -1, -1, -1] + + minOpenerIdx = openersBottom[closer.marker][ + (3 if closer.open else 0) + (closer.length % 3) + ] + + openerIdx = headerIdx - jumps[headerIdx] - 1 + + newMinOpenerIdx = openerIdx + + while openerIdx > minOpenerIdx: + opener = delimiters[openerIdx] + + if opener.marker != closer.marker: + openerIdx -= jumps[openerIdx] + 1 + continue + + if opener.open and opener.end < 0: + isOddMatch = False + + # from spec: + # + # If one of the delimiters can both open and close emphasis, then the + # sum of the lengths of the delimiter runs containing the opening and + # closing delimiters must not be a multiple of 3 unless both lengths + # are multiples of 3. + # + if ( + (opener.close or closer.open) + and ((opener.length + closer.length) % 3 == 0) + and (opener.length % 3 != 0 or closer.length % 3 != 0) + ): + isOddMatch = True + + if not isOddMatch: + # If previous delimiter cannot be an opener, we can safely skip + # the entire sequence in future checks. This is required to make + # sure algorithm has linear complexity (see *_*_*_*_*_... case). + # + if openerIdx > 0 and not delimiters[openerIdx - 1].open: + lastJump = jumps[openerIdx - 1] + 1 + else: + lastJump = 0 + + jumps[closerIdx] = closerIdx - openerIdx + lastJump + jumps[openerIdx] = lastJump + + closer.open = False + opener.end = closerIdx + opener.close = False + newMinOpenerIdx = -1 + + # treat next token as start of run, + # it optimizes skips in **<...>**a**<...>** pathological case + lastTokenIdx = -2 + + break + + openerIdx -= jumps[openerIdx] + 1 + + if newMinOpenerIdx != -1: + # If match for this delimiter run failed, we want to set lower bound for + # future lookups. This is required to make sure algorithm has linear + # complexity. + # + # See details here: + # https:#github.com/commonmark/cmark/issues/178#issuecomment-270417442 + # + openersBottom[closer.marker][ + (3 if closer.open else 0) + ((closer.length or 0) % 3) + ] = newMinOpenerIdx + + closerIdx += 1 + + +def link_pairs(state: StateInline) -> None: + tokens_meta = state.tokens_meta + maximum = len(state.tokens_meta) + + processDelimiters(state, state.delimiters) + + curr = 0 + while curr < maximum: + curr_meta = tokens_meta[curr] + if curr_meta and "delimiters" in curr_meta: + processDelimiters(state, curr_meta["delimiters"]) + curr += 1 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py new file mode 100644 index 0000000..9a98f9e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py @@ -0,0 +1,102 @@ +# Process *this* and _that_ +# +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def tokenize(state: StateInline, silent: bool) -> bool: + """Insert each marker as a separate text token, and add it to delimiter list""" + start = state.pos + marker = state.src[start] + + if silent: + return False + + if marker not in ("_", "*"): + return False + + scanned = state.scanDelims(state.pos, marker == "*") + + for _ in range(scanned.length): + token = state.push("text", "", 0) + token.content = marker + state.delimiters.append( + Delimiter( + marker=ord(marker), + length=scanned.length, + token=len(state.tokens) - 1, + end=-1, + open=scanned.can_open, + close=scanned.can_close, + ) + ) + + state.pos += scanned.length + + return True + + +def _postProcess(state: StateInline, delimiters: list[Delimiter]) -> None: + i = len(delimiters) - 1 + while i >= 0: + startDelim = delimiters[i] + + # /* _ */ /* * */ + if startDelim.marker != 0x5F and startDelim.marker != 0x2A: + i -= 1 + continue + + # Process only opening markers + if startDelim.end == -1: + i -= 1 + continue + + endDelim = delimiters[startDelim.end] + + # If the previous delimiter has the same marker and is adjacent to this one, + # merge those into one strong delimiter. + # + # `whatever` -> `whatever` + # + isStrong = ( + i > 0 + and delimiters[i - 1].end == startDelim.end + 1 + # check that first two markers match and adjacent + and delimiters[i - 1].marker == startDelim.marker + and delimiters[i - 1].token == startDelim.token - 1 + # check that last two markers are adjacent (we can safely assume they match) + and delimiters[startDelim.end + 1].token == endDelim.token + 1 + ) + + ch = chr(startDelim.marker) + + token = state.tokens[startDelim.token] + token.type = "strong_open" if isStrong else "em_open" + token.tag = "strong" if isStrong else "em" + token.nesting = 1 + token.markup = ch + ch if isStrong else ch + token.content = "" + + token = state.tokens[endDelim.token] + token.type = "strong_close" if isStrong else "em_close" + token.tag = "strong" if isStrong else "em" + token.nesting = -1 + token.markup = ch + ch if isStrong else ch + token.content = "" + + if isStrong: + state.tokens[delimiters[i - 1].token].content = "" + state.tokens[delimiters[startDelim.end + 1].token].content = "" + i -= 1 + + i -= 1 + + +def postProcess(state: StateInline) -> None: + """Walk through delimiter list and replace text tokens with tags.""" + _postProcess(state, state.delimiters) + + for token in state.tokens_meta: + if token and "delimiters" in token: + _postProcess(state, token["delimiters"]) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py new file mode 100644 index 0000000..ec9d396 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py @@ -0,0 +1,53 @@ +# Process html entity - {, ¯, ", ... +import re + +from ..common.entities import entities +from ..common.utils import fromCodePoint, isValidEntityCode +from .state_inline import StateInline + +DIGITAL_RE = re.compile(r"^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));", re.IGNORECASE) +NAMED_RE = re.compile(r"^&([a-z][a-z0-9]{1,31});", re.IGNORECASE) + + +def entity(state: StateInline, silent: bool) -> bool: + pos = state.pos + maximum = state.posMax + + if state.src[pos] != "&": + return False + + if pos + 1 >= maximum: + return False + + if state.src[pos + 1] == "#": + if match := DIGITAL_RE.search(state.src[pos:]): + if not silent: + match1 = match.group(1) + code = ( + int(match1[1:], 16) if match1[0].lower() == "x" else int(match1, 10) + ) + + token = state.push("text_special", "", 0) + token.content = ( + fromCodePoint(code) + if isValidEntityCode(code) + else fromCodePoint(0xFFFD) + ) + token.markup = match.group(0) + token.info = "entity" + + state.pos += len(match.group(0)) + return True + + else: + if (match := NAMED_RE.search(state.src[pos:])) and match.group(1) in entities: + if not silent: + token = state.push("text_special", "", 0) + token.content = entities[match.group(1)] + token.markup = match.group(0) + token.info = "entity" + + state.pos += len(match.group(0)) + return True + + return False diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py new file mode 100644 index 0000000..0fca6c8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py @@ -0,0 +1,93 @@ +""" +Process escaped chars and hardbreaks +""" + +from ..common.utils import isStrSpace +from .state_inline import StateInline + + +def escape(state: StateInline, silent: bool) -> bool: + """Process escaped chars and hardbreaks.""" + pos = state.pos + maximum = state.posMax + + if state.src[pos] != "\\": + return False + + pos += 1 + + # '\' at the end of the inline block + if pos >= maximum: + return False + + ch1 = state.src[pos] + ch1_ord = ord(ch1) + if ch1 == "\n": + if not silent: + state.push("hardbreak", "br", 0) + pos += 1 + # skip leading whitespaces from next line + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch): + break + pos += 1 + + state.pos = pos + return True + + escapedStr = state.src[pos] + + if ch1_ord >= 0xD800 and ch1_ord <= 0xDBFF and pos + 1 < maximum: + ch2 = state.src[pos + 1] + ch2_ord = ord(ch2) + if ch2_ord >= 0xDC00 and ch2_ord <= 0xDFFF: + escapedStr += ch2 + pos += 1 + + origStr = "\\" + escapedStr + + if not silent: + token = state.push("text_special", "", 0) + token.content = escapedStr if ch1 in _ESCAPED else origStr + token.markup = origStr + token.info = "escape" + + state.pos = pos + 1 + return True + + +_ESCAPED = { + "!", + '"', + "#", + "$", + "%", + "&", + "'", + "(", + ")", + "*", + "+", + ",", + "-", + ".", + "/", + ":", + ";", + "<", + "=", + ">", + "?", + "@", + "[", + "\\", + "]", + "^", + "_", + "`", + "{", + "|", + "}", + "~", +} diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py new file mode 100644 index 0000000..f795c13 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py @@ -0,0 +1,43 @@ +from .state_inline import StateInline + + +def fragments_join(state: StateInline) -> None: + """ + Clean up tokens after emphasis and strikethrough postprocessing: + merge adjacent text nodes into one and re-calculate all token levels + + This is necessary because initially emphasis delimiter markers (``*, _, ~``) + are treated as their own separate text tokens. Then emphasis rule either + leaves them as text (needed to merge with adjacent text) or turns them + into opening/closing tags (which messes up levels inside). + """ + level = 0 + maximum = len(state.tokens) + + curr = last = 0 + while curr < maximum: + # re-calculate levels after emphasis/strikethrough turns some text nodes + # into opening/closing tags + if state.tokens[curr].nesting < 0: + level -= 1 # closing tag + state.tokens[curr].level = level + if state.tokens[curr].nesting > 0: + level += 1 # opening tag + + if ( + state.tokens[curr].type == "text" + and curr + 1 < maximum + and state.tokens[curr + 1].type == "text" + ): + # collapse two adjacent text nodes + state.tokens[curr + 1].content = ( + state.tokens[curr].content + state.tokens[curr + 1].content + ) + else: + if curr != last: + state.tokens[last] = state.tokens[curr] + last += 1 + curr += 1 + + if curr != last: + del state.tokens[last:] diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py new file mode 100644 index 0000000..9065e1d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py @@ -0,0 +1,43 @@ +# Process html tags +from ..common.html_re import HTML_TAG_RE +from ..common.utils import isLinkClose, isLinkOpen +from .state_inline import StateInline + + +def isLetter(ch: int) -> bool: + lc = ch | 0x20 # to lower case + # /* a */ and /* z */ + return (lc >= 0x61) and (lc <= 0x7A) + + +def html_inline(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if not state.md.options.get("html", None): + return False + + # Check start + maximum = state.posMax + if state.src[pos] != "<" or pos + 2 >= maximum: + return False + + # Quick fail on second char + ch = state.src[pos + 1] + if ch not in ("!", "?", "/") and not isLetter(ord(ch)): # /* / */ + return False + + match = HTML_TAG_RE.search(state.src[pos:]) + if not match: + return False + + if not silent: + token = state.push("html_inline", "", 0) + token.content = state.src[pos : pos + len(match.group(0))] + + if isLinkOpen(token.content): + state.linkLevel += 1 + if isLinkClose(token.content): + state.linkLevel -= 1 + + state.pos += len(match.group(0)) + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py new file mode 100644 index 0000000..005105b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py @@ -0,0 +1,148 @@ +# Process ![image]( "title") +from __future__ import annotations + +from ..common.utils import isStrSpace, normalizeReference +from ..token import Token +from .state_inline import StateInline + + +def image(state: StateInline, silent: bool) -> bool: + label = None + href = "" + oldPos = state.pos + max = state.posMax + + if state.src[state.pos] != "!": + return False + + if state.pos + 1 < state.posMax and state.src[state.pos + 1] != "[": + return False + + labelStart = state.pos + 2 + labelEnd = state.md.helpers.parseLinkLabel(state, state.pos + 1, False) + + # parser failed to find ']', so it's not a valid link + if labelEnd < 0: + return False + + pos = labelEnd + 1 + + if pos < max and state.src[pos] == "(": + # + # Inline link + # + + # [link]( "title" ) + # ^^ skipping these spaces + pos += 1 + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= max: + return False + + # [link]( "title" ) + # ^^^^^^ parsing link destination + start = pos + res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax) + if res.ok: + href = state.md.normalizeLink(res.str) + if state.md.validateLink(href): + pos = res.pos + else: + href = "" + + # [link]( "title" ) + # ^^ skipping these spaces + start = pos + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + # [link]( "title" ) + # ^^^^^^^ parsing link title + res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax, None) + if pos < max and start != pos and res.ok: + title = res.str + pos = res.pos + + # [link]( "title" ) + # ^^ skipping these spaces + while pos < max: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + else: + title = "" + + if pos >= max or state.src[pos] != ")": + state.pos = oldPos + return False + + pos += 1 + + else: + # + # Link reference + # + if "references" not in state.env: + return False + + # /* [ */ + if pos < max and state.src[pos] == "[": + start = pos + 1 + pos = state.md.helpers.parseLinkLabel(state, pos) + if pos >= 0: + label = state.src[start:pos] + pos += 1 + else: + pos = labelEnd + 1 + else: + pos = labelEnd + 1 + + # covers label == '' and label == undefined + # (collapsed reference link and shortcut reference link respectively) + if not label: + label = state.src[labelStart:labelEnd] + + label = normalizeReference(label) + + ref = state.env["references"].get(label, None) + if not ref: + state.pos = oldPos + return False + + href = ref["href"] + title = ref["title"] + + # + # We found the end of the link, and know for a fact it's a valid link + # so all that's left to do is to call tokenizer. + # + if not silent: + content = state.src[labelStart:labelEnd] + + tokens: list[Token] = [] + state.md.inline.parse(content, state.md, state.env, tokens) + + token = state.push("image", "img", 0) + token.attrs = {"src": href, "alt": ""} + token.children = tokens or None + token.content = content + + if title: + token.attrSet("title", title) + + # note, this is not part of markdown-it JS, but is useful for renderers + if label and state.md.options.get("store_labels", False): + token.meta["label"] = label + + state.pos = pos + state.posMax = max + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py new file mode 100644 index 0000000..2e92c7d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py @@ -0,0 +1,149 @@ +# Process [link]( "stuff") + +from ..common.utils import isStrSpace, normalizeReference +from .state_inline import StateInline + + +def link(state: StateInline, silent: bool) -> bool: + href = "" + title = "" + label = None + oldPos = state.pos + maximum = state.posMax + start = state.pos + parseReference = True + + if state.src[state.pos] != "[": + return False + + labelStart = state.pos + 1 + labelEnd = state.md.helpers.parseLinkLabel(state, state.pos, True) + + # parser failed to find ']', so it's not a valid link + if labelEnd < 0: + return False + + pos = labelEnd + 1 + + if pos < maximum and state.src[pos] == "(": + # + # Inline link + # + + # might have found a valid shortcut link, disable reference parsing + parseReference = False + + # [link]( "title" ) + # ^^ skipping these spaces + pos += 1 + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= maximum: + return False + + # [link]( "title" ) + # ^^^^^^ parsing link destination + start = pos + res = state.md.helpers.parseLinkDestination(state.src, pos, state.posMax) + if res.ok: + href = state.md.normalizeLink(res.str) + if state.md.validateLink(href): + pos = res.pos + else: + href = "" + + # [link]( "title" ) + # ^^ skipping these spaces + start = pos + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + # [link]( "title" ) + # ^^^^^^^ parsing link title + res = state.md.helpers.parseLinkTitle(state.src, pos, state.posMax) + if pos < maximum and start != pos and res.ok: + title = res.str + pos = res.pos + + # [link]( "title" ) + # ^^ skipping these spaces + while pos < maximum: + ch = state.src[pos] + if not isStrSpace(ch) and ch != "\n": + break + pos += 1 + + if pos >= maximum or state.src[pos] != ")": + # parsing a valid shortcut link failed, fallback to reference + parseReference = True + + pos += 1 + + if parseReference: + # + # Link reference + # + if "references" not in state.env: + return False + + if pos < maximum and state.src[pos] == "[": + start = pos + 1 + pos = state.md.helpers.parseLinkLabel(state, pos) + if pos >= 0: + label = state.src[start:pos] + pos += 1 + else: + pos = labelEnd + 1 + + else: + pos = labelEnd + 1 + + # covers label == '' and label == undefined + # (collapsed reference link and shortcut reference link respectively) + if not label: + label = state.src[labelStart:labelEnd] + + label = normalizeReference(label) + + ref = state.env["references"].get(label, None) + if not ref: + state.pos = oldPos + return False + + href = ref["href"] + title = ref["title"] + + # + # We found the end of the link, and know for a fact it's a valid link + # so all that's left to do is to call tokenizer. + # + if not silent: + state.pos = labelStart + state.posMax = labelEnd + + token = state.push("link_open", "a", 1) + token.attrs = {"href": href} + + if title: + token.attrSet("title", title) + + # note, this is not part of markdown-it JS, but is useful for renderers + if label and state.md.options.get("store_labels", False): + token.meta["label"] = label + + state.linkLevel += 1 + state.md.inline.tokenize(state) + state.linkLevel -= 1 + + token = state.push("link_close", "a", -1) + + state.pos = pos + state.posMax = maximum + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py new file mode 100644 index 0000000..3669396 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py @@ -0,0 +1,62 @@ +"""Process links like https://example.org/""" + +import re + +from .state_inline import StateInline + +# RFC3986: scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) +SCHEME_RE = re.compile(r"(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$", re.IGNORECASE) + + +def linkify(state: StateInline, silent: bool) -> bool: + """Rule for identifying plain-text links.""" + if not state.md.options.linkify: + return False + if state.linkLevel > 0: + return False + if not state.md.linkify: + raise ModuleNotFoundError("Linkify enabled but not installed.") + + pos = state.pos + maximum = state.posMax + + if ( + (pos + 3) > maximum + or state.src[pos] != ":" + or state.src[pos + 1] != "/" + or state.src[pos + 2] != "/" + ): + return False + + if not (match := SCHEME_RE.search(state.pending)): + return False + + proto = match.group(1) + if not (link := state.md.linkify.match_at_start(state.src[pos - len(proto) :])): + return False + url: str = link.url + + # disallow '*' at the end of the link (conflicts with emphasis) + url = url.rstrip("*") + + full_url = state.md.normalizeLink(url) + if not state.md.validateLink(full_url): + return False + + if not silent: + state.pending = state.pending[: -len(proto)] + + token = state.push("link_open", "a", 1) + token.attrs = {"href": full_url} + token.markup = "linkify" + token.info = "auto" + + token = state.push("text", "", 0) + token.content = state.md.normalizeLinkText(url) + + token = state.push("link_close", "a", -1) + token.markup = "linkify" + token.info = "auto" + + state.pos += len(url) - len(proto) + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py new file mode 100644 index 0000000..d05ee6d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py @@ -0,0 +1,44 @@ +"""Proceess '\n'.""" + +from ..common.utils import charStrAt, isStrSpace +from .state_inline import StateInline + + +def newline(state: StateInline, silent: bool) -> bool: + pos = state.pos + + if state.src[pos] != "\n": + return False + + pmax = len(state.pending) - 1 + maximum = state.posMax + + # ' \n' -> hardbreak + # Lookup in pending chars is bad practice! Don't copy to other rules! + # Pending string is stored in concat mode, indexed lookups will cause + # conversion to flat mode. + if not silent: + if pmax >= 0 and charStrAt(state.pending, pmax) == " ": + if pmax >= 1 and charStrAt(state.pending, pmax - 1) == " ": + # Find whitespaces tail of pending chars. + ws = pmax - 1 + while ws >= 1 and charStrAt(state.pending, ws - 1) == " ": + ws -= 1 + state.pending = state.pending[:ws] + + state.push("hardbreak", "br", 0) + else: + state.pending = state.pending[:-1] + state.push("softbreak", "br", 0) + + else: + state.push("softbreak", "br", 0) + + pos += 1 + + # skip heading spaces for next line + while pos < maximum and isStrSpace(state.src[pos]): + pos += 1 + + state.pos = pos + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py new file mode 100644 index 0000000..50dc412 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py @@ -0,0 +1,165 @@ +from __future__ import annotations + +from collections import namedtuple +from dataclasses import dataclass +from typing import TYPE_CHECKING, Any, Literal + +from ..common.utils import isMdAsciiPunct, isPunctChar, isWhiteSpace +from ..ruler import StateBase +from ..token import Token +from ..utils import EnvType + +if TYPE_CHECKING: + from markdown_it import MarkdownIt + + +@dataclass(slots=True) +class Delimiter: + # Char code of the starting marker (number). + marker: int + + # Total length of these series of delimiters. + length: int + + # A position of the token this delimiter corresponds to. + token: int + + # If this delimiter is matched as a valid opener, `end` will be + # equal to its position, otherwise it's `-1`. + end: int + + # Boolean flags that determine if this delimiter could open or close + # an emphasis. + open: bool + close: bool + + level: bool | None = None + + +Scanned = namedtuple("Scanned", ["can_open", "can_close", "length"]) + + +class StateInline(StateBase): + def __init__( + self, src: str, md: MarkdownIt, env: EnvType, outTokens: list[Token] + ) -> None: + self.src = src + self.env = env + self.md = md + self.tokens = outTokens + self.tokens_meta: list[dict[str, Any] | None] = [None] * len(outTokens) + + self.pos = 0 + self.posMax = len(self.src) + self.level = 0 + self.pending = "" + self.pendingLevel = 0 + + # Stores { start: end } pairs. Useful for backtrack + # optimization of pairs parse (emphasis, strikes). + self.cache: dict[int, int] = {} + + # List of emphasis-like delimiters for current tag + self.delimiters: list[Delimiter] = [] + + # Stack of delimiter lists for upper level tags + self._prev_delimiters: list[list[Delimiter]] = [] + + # backticklength => last seen position + self.backticks: dict[int, int] = {} + self.backticksScanned = False + + # Counter used to disable inline linkify-it execution + # inside and markdown links + self.linkLevel = 0 + + def __repr__(self) -> str: + return ( + f"{self.__class__.__name__}" + f"(pos=[{self.pos} of {self.posMax}], token={len(self.tokens)})" + ) + + def pushPending(self) -> Token: + token = Token("text", "", 0) + token.content = self.pending + token.level = self.pendingLevel + self.tokens.append(token) + self.pending = "" + return token + + def push(self, ttype: str, tag: str, nesting: Literal[-1, 0, 1]) -> Token: + """Push new token to "stream". + If pending text exists - flush it as text token + """ + if self.pending: + self.pushPending() + + token = Token(ttype, tag, nesting) + token_meta = None + + if nesting < 0: + # closing tag + self.level -= 1 + self.delimiters = self._prev_delimiters.pop() + + token.level = self.level + + if nesting > 0: + # opening tag + self.level += 1 + self._prev_delimiters.append(self.delimiters) + self.delimiters = [] + token_meta = {"delimiters": self.delimiters} + + self.pendingLevel = self.level + self.tokens.append(token) + self.tokens_meta.append(token_meta) + return token + + def scanDelims(self, start: int, canSplitWord: bool) -> Scanned: + """ + Scan a sequence of emphasis-like markers, and determine whether + it can start an emphasis sequence or end an emphasis sequence. + + - start - position to scan from (it should point at a valid marker); + - canSplitWord - determine if these markers can be found inside a word + + """ + pos = start + maximum = self.posMax + marker = self.src[start] + + # treat beginning of the line as a whitespace + lastChar = self.src[start - 1] if start > 0 else " " + + while pos < maximum and self.src[pos] == marker: + pos += 1 + + count = pos - start + + # treat end of the line as a whitespace + nextChar = self.src[pos] if pos < maximum else " " + + isLastPunctChar = isMdAsciiPunct(ord(lastChar)) or isPunctChar(lastChar) + isNextPunctChar = isMdAsciiPunct(ord(nextChar)) or isPunctChar(nextChar) + + isLastWhiteSpace = isWhiteSpace(ord(lastChar)) + isNextWhiteSpace = isWhiteSpace(ord(nextChar)) + + left_flanking = not ( + isNextWhiteSpace + or (isNextPunctChar and not (isLastWhiteSpace or isLastPunctChar)) + ) + right_flanking = not ( + isLastWhiteSpace + or (isLastPunctChar and not (isNextWhiteSpace or isNextPunctChar)) + ) + + can_open = left_flanking and ( + canSplitWord or (not right_flanking) or isLastPunctChar + ) + can_close = right_flanking and ( + canSplitWord or (not left_flanking) or isNextPunctChar + ) + + return Scanned(can_open, can_close, count) diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py new file mode 100644 index 0000000..ec81628 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py @@ -0,0 +1,127 @@ +# ~~strike through~~ +from __future__ import annotations + +from .state_inline import Delimiter, StateInline + + +def tokenize(state: StateInline, silent: bool) -> bool: + """Insert each marker as a separate text token, and add it to delimiter list""" + start = state.pos + ch = state.src[start] + + if silent: + return False + + if ch != "~": + return False + + scanned = state.scanDelims(state.pos, True) + length = scanned.length + + if length < 2: + return False + + if length % 2: + token = state.push("text", "", 0) + token.content = ch + length -= 1 + + i = 0 + while i < length: + token = state.push("text", "", 0) + token.content = ch + ch + state.delimiters.append( + Delimiter( + marker=ord(ch), + length=0, # disable "rule of 3" length checks meant for emphasis + token=len(state.tokens) - 1, + end=-1, + open=scanned.can_open, + close=scanned.can_close, + ) + ) + + i += 2 + + state.pos += scanned.length + + return True + + +def _postProcess(state: StateInline, delimiters: list[Delimiter]) -> None: + loneMarkers = [] + maximum = len(delimiters) + + i = 0 + while i < maximum: + startDelim = delimiters[i] + + if startDelim.marker != 0x7E: # /* ~ */ + i += 1 + continue + + if startDelim.end == -1: + i += 1 + continue + + endDelim = delimiters[startDelim.end] + + token = state.tokens[startDelim.token] + token.type = "s_open" + token.tag = "s" + token.nesting = 1 + token.markup = "~~" + token.content = "" + + token = state.tokens[endDelim.token] + token.type = "s_close" + token.tag = "s" + token.nesting = -1 + token.markup = "~~" + token.content = "" + + if ( + state.tokens[endDelim.token - 1].type == "text" + and state.tokens[endDelim.token - 1].content == "~" + ): + loneMarkers.append(endDelim.token - 1) + + i += 1 + + # If a marker sequence has an odd number of characters, it's split + # like this: `~~~~~` -> `~` + `~~` + `~~`, leaving one marker at the + # start of the sequence. + # + # So, we have to move all those markers after subsequent s_close tags. + # + while loneMarkers: + i = loneMarkers.pop() + j = i + 1 + + while (j < len(state.tokens)) and (state.tokens[j].type == "s_close"): + j += 1 + + j -= 1 + + if i != j: + token = state.tokens[j] + state.tokens[j] = state.tokens[i] + state.tokens[i] = token + + +def postProcess(state: StateInline) -> None: + """Walk through delimiter list and replace text tokens with tags.""" + tokens_meta = state.tokens_meta + maximum = len(state.tokens_meta) + _postProcess(state, state.delimiters) + + curr = 0 + while curr < maximum: + try: + curr_meta = tokens_meta[curr] + except IndexError: + pass + else: + if curr_meta and "delimiters" in curr_meta: + _postProcess(state, curr_meta["delimiters"]) + curr += 1 diff --git a/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py new file mode 100644 index 0000000..18b2fcc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py @@ -0,0 +1,62 @@ +import functools +import re + +# Skip text characters for text token, place those to pending buffer +# and increment current pos +from .state_inline import StateInline + +# Rule to skip pure text +# '{}$%@~+=:' reserved for extensions + +# !!!! Don't confuse with "Markdown ASCII Punctuation" chars +# http://spec.commonmark.org/0.15/#ascii-punctuation-character + + +_TerminatorChars = { + "\n", + "!", + "#", + "$", + "%", + "&", + "*", + "+", + "-", + ":", + "<", + "=", + ">", + "@", + "[", + "\\", + "]", + "^", + "_", + "`", + "{", + "}", + "~", +} + + +@functools.cache +def _terminator_char_regex() -> re.Pattern[str]: + return re.compile("[" + re.escape("".join(_TerminatorChars)) + "]") + + +def text(state: StateInline, silent: bool) -> bool: + pos = state.pos + posMax = state.posMax + + terminator_char = _terminator_char_regex().search(state.src, pos) + pos = terminator_char.start() if terminator_char else posMax + + if pos == state.pos: + return False + + if not silent: + state.pending += state.src[state.pos : pos] + + state.pos = pos + + return True diff --git a/.venv/lib/python3.12/site-packages/markdown_it/token.py b/.venv/lib/python3.12/site-packages/markdown_it/token.py new file mode 100644 index 0000000..d6d0b45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/token.py @@ -0,0 +1,178 @@ +from __future__ import annotations + +from collections.abc import Callable, MutableMapping +import dataclasses as dc +from typing import Any, Literal +import warnings + + +def convert_attrs(value: Any) -> Any: + """Convert Token.attrs set as ``None`` or ``[[key, value], ...]`` to a dict. + + This improves compatibility with upstream markdown-it. + """ + if not value: + return {} + if isinstance(value, list): + return dict(value) + return value + + +@dc.dataclass(slots=True) +class Token: + type: str + """Type of the token (string, e.g. "paragraph_open")""" + + tag: str + """HTML tag name, e.g. 'p'""" + + nesting: Literal[-1, 0, 1] + """Level change (number in {-1, 0, 1} set), where: + - `1` means the tag is opening + - `0` means the tag is self-closing + - `-1` means the tag is closing + """ + + attrs: dict[str, str | int | float] = dc.field(default_factory=dict) + """HTML attributes. + Note this differs from the upstream "list of lists" format, + although than an instance can still be initialised with this format. + """ + + map: list[int] | None = None + """Source map info. Format: `[ line_begin, line_end ]`""" + + level: int = 0 + """Nesting level, the same as `state.level`""" + + children: list[Token] | None = None + """Array of child nodes (inline and img tokens).""" + + content: str = "" + """Inner content, in the case of a self-closing tag (code, html, fence, etc.),""" + + markup: str = "" + """'*' or '_' for emphasis, fence string for fence, etc.""" + + info: str = "" + """Additional information: + - Info string for "fence" tokens + - The value "auto" for autolink "link_open" and "link_close" tokens + - The string value of the item marker for ordered-list "list_item_open" tokens + """ + + meta: dict[Any, Any] = dc.field(default_factory=dict) + """A place for plugins to store any arbitrary data""" + + block: bool = False + """True for block-level tokens, false for inline tokens. + Used in renderer to calculate line breaks + """ + + hidden: bool = False + """If true, ignore this element when rendering. + Used for tight lists to hide paragraphs. + """ + + def __post_init__(self) -> None: + self.attrs = convert_attrs(self.attrs) + + def attrIndex(self, name: str) -> int: + warnings.warn( # noqa: B028 + "Token.attrIndex should not be used, since Token.attrs is a dictionary", + UserWarning, + ) + if name not in self.attrs: + return -1 + return list(self.attrs.keys()).index(name) + + def attrItems(self) -> list[tuple[str, str | int | float]]: + """Get (key, value) list of attrs.""" + return list(self.attrs.items()) + + def attrPush(self, attrData: tuple[str, str | int | float]) -> None: + """Add `[ name, value ]` attribute to list. Init attrs if necessary.""" + name, value = attrData + self.attrSet(name, value) + + def attrSet(self, name: str, value: str | int | float) -> None: + """Set `name` attribute to `value`. Override old value if exists.""" + self.attrs[name] = value + + def attrGet(self, name: str) -> None | str | int | float: + """Get the value of attribute `name`, or null if it does not exist.""" + return self.attrs.get(name, None) + + def attrJoin(self, name: str, value: str) -> None: + """Join value to existing attribute via space. + Or create new attribute if not exists. + Useful to operate with token classes. + """ + if name in self.attrs: + current = self.attrs[name] + if not isinstance(current, str): + raise TypeError( + f"existing attr 'name' is not a str: {self.attrs[name]}" + ) + self.attrs[name] = f"{current} {value}" + else: + self.attrs[name] = value + + def copy(self, **changes: Any) -> Token: + """Return a shallow copy of the instance.""" + return dc.replace(self, **changes) + + def as_dict( + self, + *, + children: bool = True, + as_upstream: bool = True, + meta_serializer: Callable[[dict[Any, Any]], Any] | None = None, + filter: Callable[[str, Any], bool] | None = None, + dict_factory: Callable[..., MutableMapping[str, Any]] = dict, + ) -> MutableMapping[str, Any]: + """Return the token as a dictionary. + + :param children: Also convert children to dicts + :param as_upstream: Ensure the output dictionary is equal to that created by markdown-it + For example, attrs are converted to null or lists + :param meta_serializer: hook for serializing ``Token.meta`` + :param filter: A callable whose return code determines whether an + attribute or element is included (``True``) or dropped (``False``). + Is called with the (key, value) pair. + :param dict_factory: A callable to produce dictionaries from. + For example, to produce ordered dictionaries instead of normal Python + dictionaries, pass in ``collections.OrderedDict``. + + """ + mapping = dict_factory((f.name, getattr(self, f.name)) for f in dc.fields(self)) + if filter: + mapping = dict_factory((k, v) for k, v in mapping.items() if filter(k, v)) + if as_upstream and "attrs" in mapping: + mapping["attrs"] = ( + None + if not mapping["attrs"] + else [[k, v] for k, v in mapping["attrs"].items()] + ) + if meta_serializer and "meta" in mapping: + mapping["meta"] = meta_serializer(mapping["meta"]) + if children and mapping.get("children", None): + mapping["children"] = [ + child.as_dict( + children=children, + filter=filter, + dict_factory=dict_factory, + as_upstream=as_upstream, + meta_serializer=meta_serializer, + ) + for child in mapping["children"] + ] + return mapping + + @classmethod + def from_dict(cls, dct: MutableMapping[str, Any]) -> Token: + """Convert a dict to a Token.""" + token = cls(**dct) + if token.children: + token.children = [cls.from_dict(c) for c in token.children] # type: ignore[arg-type] + return token diff --git a/.venv/lib/python3.12/site-packages/markdown_it/tree.py b/.venv/lib/python3.12/site-packages/markdown_it/tree.py new file mode 100644 index 0000000..5369157 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/tree.py @@ -0,0 +1,333 @@ +"""A tree representation of a linear markdown-it token stream. + +This module is not part of upstream JavaScript markdown-it. +""" + +from __future__ import annotations + +from collections.abc import Generator, Sequence +import textwrap +from typing import Any, NamedTuple, TypeVar, overload + +from .token import Token + + +class _NesterTokens(NamedTuple): + opening: Token + closing: Token + + +_NodeType = TypeVar("_NodeType", bound="SyntaxTreeNode") + + +class SyntaxTreeNode: + """A Markdown syntax tree node. + + A class that can be used to construct a tree representation of a linear + `markdown-it-py` token stream. + + Each node in the tree represents either: + - root of the Markdown document + - a single unnested `Token` + - a `Token` "_open" and "_close" token pair, and the tokens nested in + between + """ + + def __init__( + self, tokens: Sequence[Token] = (), *, create_root: bool = True + ) -> None: + """Initialize a `SyntaxTreeNode` from a token stream. + + If `create_root` is True, create a root node for the document. + """ + # Only nodes representing an unnested token have self.token + self.token: Token | None = None + + # Only containers have nester tokens + self.nester_tokens: _NesterTokens | None = None + + # Root node does not have self.parent + self._parent: Any = None + + # Empty list unless a non-empty container, or unnested token that has + # children (i.e. inline or img) + self._children: list[Any] = [] + + if create_root: + self._set_children_from_tokens(tokens) + return + + if not tokens: + raise ValueError( + "Can only create root from empty token sequence." + " Set `create_root=True`." + ) + elif len(tokens) == 1: + inline_token = tokens[0] + if inline_token.nesting: + raise ValueError( + "Unequal nesting level at the start and end of token stream." + ) + self.token = inline_token + if inline_token.children: + self._set_children_from_tokens(inline_token.children) + else: + self.nester_tokens = _NesterTokens(tokens[0], tokens[-1]) + self._set_children_from_tokens(tokens[1:-1]) + + def __repr__(self) -> str: + return f"{type(self).__name__}({self.type})" + + @overload + def __getitem__(self: _NodeType, item: int) -> _NodeType: ... + + @overload + def __getitem__(self: _NodeType, item: slice) -> list[_NodeType]: ... + + def __getitem__(self: _NodeType, item: int | slice) -> _NodeType | list[_NodeType]: + return self.children[item] + + def to_tokens(self: _NodeType) -> list[Token]: + """Recover the linear token stream.""" + + def recursive_collect_tokens(node: _NodeType, token_list: list[Token]) -> None: + if node.type == "root": + for child in node.children: + recursive_collect_tokens(child, token_list) + elif node.token: + token_list.append(node.token) + else: + assert node.nester_tokens + token_list.append(node.nester_tokens.opening) + for child in node.children: + recursive_collect_tokens(child, token_list) + token_list.append(node.nester_tokens.closing) + + tokens: list[Token] = [] + recursive_collect_tokens(self, tokens) + return tokens + + @property + def children(self: _NodeType) -> list[_NodeType]: + return self._children + + @children.setter + def children(self: _NodeType, value: list[_NodeType]) -> None: + self._children = value + + @property + def parent(self: _NodeType) -> _NodeType | None: + return self._parent # type: ignore + + @parent.setter + def parent(self: _NodeType, value: _NodeType | None) -> None: + self._parent = value + + @property + def is_root(self) -> bool: + """Is the node a special root node?""" + return not (self.token or self.nester_tokens) + + @property + def is_nested(self) -> bool: + """Is this node nested?. + + Returns `True` if the node represents a `Token` pair and tokens in the + sequence between them, where `Token.nesting` of the first `Token` in + the pair is 1 and nesting of the other `Token` is -1. + """ + return bool(self.nester_tokens) + + @property + def siblings(self: _NodeType) -> Sequence[_NodeType]: + """Get siblings of the node. + + Gets the whole group of siblings, including self. + """ + if not self.parent: + return [self] + return self.parent.children + + @property + def type(self) -> str: + """Get a string type of the represented syntax. + + - "root" for root nodes + - `Token.type` if the node represents an unnested token + - `Token.type` of the opening token, with "_open" suffix stripped, if + the node represents a nester token pair + """ + if self.is_root: + return "root" + if self.token: + return self.token.type + assert self.nester_tokens + return self.nester_tokens.opening.type.removesuffix("_open") + + @property + def next_sibling(self: _NodeType) -> _NodeType | None: + """Get the next node in the sequence of siblings. + + Returns `None` if this is the last sibling. + """ + self_index = self.siblings.index(self) + if self_index + 1 < len(self.siblings): + return self.siblings[self_index + 1] + return None + + @property + def previous_sibling(self: _NodeType) -> _NodeType | None: + """Get the previous node in the sequence of siblings. + + Returns `None` if this is the first sibling. + """ + self_index = self.siblings.index(self) + if self_index - 1 >= 0: + return self.siblings[self_index - 1] + return None + + def _add_child( + self, + tokens: Sequence[Token], + ) -> None: + """Make a child node for `self`.""" + child = type(self)(tokens, create_root=False) + child.parent = self + self.children.append(child) + + def _set_children_from_tokens(self, tokens: Sequence[Token]) -> None: + """Convert the token stream to a tree structure and set the resulting + nodes as children of `self`.""" + reversed_tokens = list(reversed(tokens)) + while reversed_tokens: + token = reversed_tokens.pop() + + if not token.nesting: + self._add_child([token]) + continue + if token.nesting != 1: + raise ValueError("Invalid token nesting") + + nested_tokens = [token] + nesting = 1 + while reversed_tokens and nesting: + token = reversed_tokens.pop() + nested_tokens.append(token) + nesting += token.nesting + if nesting: + raise ValueError(f"unclosed tokens starting {nested_tokens[0]}") + + self._add_child(nested_tokens) + + def pretty( + self, *, indent: int = 2, show_text: bool = False, _current: int = 0 + ) -> str: + """Create an XML style string of the tree.""" + prefix = " " * _current + text = prefix + f"<{self.type}" + if not self.is_root and self.attrs: + text += " " + " ".join(f"{k}={v!r}" for k, v in self.attrs.items()) + text += ">" + if ( + show_text + and not self.is_root + and self.type in ("text", "text_special") + and self.content + ): + text += "\n" + textwrap.indent(self.content, prefix + " " * indent) + for child in self.children: + text += "\n" + child.pretty( + indent=indent, show_text=show_text, _current=_current + indent + ) + return text + + def walk( + self: _NodeType, *, include_self: bool = True + ) -> Generator[_NodeType, None, None]: + """Recursively yield all descendant nodes in the tree starting at self. + + The order mimics the order of the underlying linear token + stream (i.e. depth first). + """ + if include_self: + yield self + for child in self.children: + yield from child.walk(include_self=True) + + # NOTE: + # The values of the properties defined below directly map to properties + # of the underlying `Token`s. A root node does not translate to a `Token` + # object, so calling these property getters on a root node will raise an + # `AttributeError`. + # + # There is no mapping for `Token.nesting` because the `is_nested` property + # provides that data, and can be called on any node type, including root. + + def _attribute_token(self) -> Token: + """Return the `Token` that is used as the data source for the + properties defined below.""" + if self.token: + return self.token + if self.nester_tokens: + return self.nester_tokens.opening + raise AttributeError("Root node does not have the accessed attribute") + + @property + def tag(self) -> str: + """html tag name, e.g. \"p\" """ + return self._attribute_token().tag + + @property + def attrs(self) -> dict[str, str | int | float]: + """Html attributes.""" + return self._attribute_token().attrs + + def attrGet(self, name: str) -> None | str | int | float: + """Get the value of attribute `name`, or null if it does not exist.""" + return self._attribute_token().attrGet(name) + + @property + def map(self) -> tuple[int, int] | None: + """Source map info. Format: `tuple[ line_begin, line_end ]`""" + map_ = self._attribute_token().map + if map_: + # Type ignore because `Token`s attribute types are not perfect + return tuple(map_) # type: ignore + return None + + @property + def level(self) -> int: + """nesting level, the same as `state.level`""" + return self._attribute_token().level + + @property + def content(self) -> str: + """In a case of self-closing tag (code, html, fence, etc.), it + has contents of this tag.""" + return self._attribute_token().content + + @property + def markup(self) -> str: + """'*' or '_' for emphasis, fence string for fence, etc.""" + return self._attribute_token().markup + + @property + def info(self) -> str: + """fence infostring""" + return self._attribute_token().info + + @property + def meta(self) -> dict[Any, Any]: + """A place for plugins to store an arbitrary data.""" + return self._attribute_token().meta + + @property + def block(self) -> bool: + """True for block-level tokens, false for inline tokens.""" + return self._attribute_token().block + + @property + def hidden(self) -> bool: + """If it's true, ignore this element when rendering. + Used for tight lists to hide paragraphs.""" + return self._attribute_token().hidden diff --git a/.venv/lib/python3.12/site-packages/markdown_it/utils.py b/.venv/lib/python3.12/site-packages/markdown_it/utils.py new file mode 100644 index 0000000..2571a15 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it/utils.py @@ -0,0 +1,186 @@ +from __future__ import annotations + +from collections.abc import Callable, Iterable, MutableMapping +from collections.abc import MutableMapping as MutableMappingABC +from pathlib import Path +from typing import TYPE_CHECKING, Any, TypedDict, cast + +if TYPE_CHECKING: + from typing_extensions import NotRequired + + +EnvType = MutableMapping[str, Any] # note: could use TypeAlias in python 3.10 +"""Type for the environment sandbox used in parsing and rendering, +which stores mutable variables for use by plugins and rules. +""" + + +class OptionsType(TypedDict): + """Options for parsing.""" + + maxNesting: int + """Internal protection, recursion limit.""" + html: bool + """Enable HTML tags in source.""" + linkify: bool + """Enable autoconversion of URL-like texts to links.""" + typographer: bool + """Enable smartquotes and replacements.""" + quotes: str + """Quote characters.""" + xhtmlOut: bool + """Use '/' to close single tags (
    ).""" + breaks: bool + """Convert newlines in paragraphs into
    .""" + langPrefix: str + """CSS language prefix for fenced blocks.""" + highlight: Callable[[str, str, str], str] | None + """Highlighter function: (content, lang, attrs) -> str.""" + store_labels: NotRequired[bool] + """Store link label in link/image token's metadata (under Token.meta['label']). + + This is a Python only option, and is intended for the use of round-trip parsing. + """ + + +class PresetType(TypedDict): + """Preset configuration for markdown-it.""" + + options: OptionsType + """Options for parsing.""" + components: MutableMapping[str, MutableMapping[str, list[str]]] + """Components for parsing and rendering.""" + + +class OptionsDict(MutableMappingABC): # type: ignore + """A dictionary, with attribute access to core markdownit configuration options.""" + + # Note: ideally we would probably just remove attribute access entirely, + # but we keep it for backwards compatibility. + + def __init__(self, options: OptionsType) -> None: + self._options = cast(OptionsType, dict(options)) + + def __getitem__(self, key: str) -> Any: + return self._options[key] # type: ignore[literal-required] + + def __setitem__(self, key: str, value: Any) -> None: + self._options[key] = value # type: ignore[literal-required] + + def __delitem__(self, key: str) -> None: + del self._options[key] # type: ignore + + def __iter__(self) -> Iterable[str]: # type: ignore + return iter(self._options) + + def __len__(self) -> int: + return len(self._options) + + def __repr__(self) -> str: + return repr(self._options) + + def __str__(self) -> str: + return str(self._options) + + @property + def maxNesting(self) -> int: + """Internal protection, recursion limit.""" + return self._options["maxNesting"] + + @maxNesting.setter + def maxNesting(self, value: int) -> None: + self._options["maxNesting"] = value + + @property + def html(self) -> bool: + """Enable HTML tags in source.""" + return self._options["html"] + + @html.setter + def html(self, value: bool) -> None: + self._options["html"] = value + + @property + def linkify(self) -> bool: + """Enable autoconversion of URL-like texts to links.""" + return self._options["linkify"] + + @linkify.setter + def linkify(self, value: bool) -> None: + self._options["linkify"] = value + + @property + def typographer(self) -> bool: + """Enable smartquotes and replacements.""" + return self._options["typographer"] + + @typographer.setter + def typographer(self, value: bool) -> None: + self._options["typographer"] = value + + @property + def quotes(self) -> str: + """Quote characters.""" + return self._options["quotes"] + + @quotes.setter + def quotes(self, value: str) -> None: + self._options["quotes"] = value + + @property + def xhtmlOut(self) -> bool: + """Use '/' to close single tags (
    ).""" + return self._options["xhtmlOut"] + + @xhtmlOut.setter + def xhtmlOut(self, value: bool) -> None: + self._options["xhtmlOut"] = value + + @property + def breaks(self) -> bool: + """Convert newlines in paragraphs into
    .""" + return self._options["breaks"] + + @breaks.setter + def breaks(self, value: bool) -> None: + self._options["breaks"] = value + + @property + def langPrefix(self) -> str: + """CSS language prefix for fenced blocks.""" + return self._options["langPrefix"] + + @langPrefix.setter + def langPrefix(self, value: str) -> None: + self._options["langPrefix"] = value + + @property + def highlight(self) -> Callable[[str, str, str], str] | None: + """Highlighter function: (content, langName, langAttrs) -> escaped HTML.""" + return self._options["highlight"] + + @highlight.setter + def highlight(self, value: Callable[[str, str, str], str] | None) -> None: + self._options["highlight"] = value + + +def read_fixture_file(path: str | Path) -> list[list[Any]]: + text = Path(path).read_text(encoding="utf-8") + tests = [] + section = 0 + last_pos = 0 + lines = text.splitlines(keepends=True) + for i in range(len(lines)): + if lines[i].rstrip() == ".": + if section == 0: + tests.append([i, lines[i - 1].strip()]) + section = 1 + elif section == 1: + tests[-1].append("".join(lines[last_pos + 1 : i])) + section = 2 + elif section == 2: + tests[-1].append("".join(lines[last_pos + 1 : i])) + section = 0 + + last_pos = i + return tests diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/METADATA b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/METADATA new file mode 100644 index 0000000..0f2b466 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/METADATA @@ -0,0 +1,219 @@ +Metadata-Version: 2.4 +Name: markdown-it-py +Version: 4.0.0 +Summary: Python port of markdown-it. Markdown parsing, done right! +Keywords: markdown,lexer,parser,commonmark,markdown-it +Author-email: Chris Sewell +Requires-Python: >=3.10 +Description-Content-Type: text/markdown +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Text Processing :: Markup +License-File: LICENSE +License-File: LICENSE.markdown-it +Requires-Dist: mdurl~=0.1 +Requires-Dist: psutil ; extra == "benchmarking" +Requires-Dist: pytest ; extra == "benchmarking" +Requires-Dist: pytest-benchmark ; extra == "benchmarking" +Requires-Dist: commonmark~=0.9 ; extra == "compare" +Requires-Dist: markdown~=3.4 ; extra == "compare" +Requires-Dist: mistletoe~=1.0 ; extra == "compare" +Requires-Dist: mistune~=3.0 ; extra == "compare" +Requires-Dist: panflute~=2.3 ; extra == "compare" +Requires-Dist: markdown-it-pyrs ; extra == "compare" +Requires-Dist: linkify-it-py>=1,<3 ; extra == "linkify" +Requires-Dist: mdit-py-plugins>=0.5.0 ; extra == "plugins" +Requires-Dist: gprof2dot ; extra == "profiling" +Requires-Dist: mdit-py-plugins>=0.5.0 ; extra == "rtd" +Requires-Dist: myst-parser ; extra == "rtd" +Requires-Dist: pyyaml ; extra == "rtd" +Requires-Dist: sphinx ; extra == "rtd" +Requires-Dist: sphinx-copybutton ; extra == "rtd" +Requires-Dist: sphinx-design ; extra == "rtd" +Requires-Dist: sphinx-book-theme~=1.0 ; extra == "rtd" +Requires-Dist: jupyter_sphinx ; extra == "rtd" +Requires-Dist: ipykernel ; extra == "rtd" +Requires-Dist: coverage ; extra == "testing" +Requires-Dist: pytest ; extra == "testing" +Requires-Dist: pytest-cov ; extra == "testing" +Requires-Dist: pytest-regressions ; extra == "testing" +Requires-Dist: requests ; extra == "testing" +Project-URL: Documentation, https://markdown-it-py.readthedocs.io +Project-URL: Homepage, https://github.com/executablebooks/markdown-it-py +Provides-Extra: benchmarking +Provides-Extra: compare +Provides-Extra: linkify +Provides-Extra: plugins +Provides-Extra: profiling +Provides-Extra: rtd +Provides-Extra: testing + +# markdown-it-py + +[![Github-CI][github-ci]][github-link] +[![Coverage Status][codecov-badge]][codecov-link] +[![PyPI][pypi-badge]][pypi-link] +[![Conda][conda-badge]][conda-link] +[![PyPI - Downloads][install-badge]][install-link] + +

    + markdown-it-py icon +

    + +> Markdown parser done right. + +- Follows the __[CommonMark spec](http://spec.commonmark.org/)__ for baseline parsing +- Configurable syntax: you can add new rules and even replace existing ones. +- Pluggable: Adds syntax extensions to extend the parser (see the [plugin list][md-plugins]). +- High speed (see our [benchmarking tests][md-performance]) +- Easy to configure for [security][md-security] +- Member of [Google's Assured Open Source Software](https://cloud.google.com/assured-open-source-software/docs/supported-packages) + +This is a Python port of [markdown-it], and some of its associated plugins. +For more details see: . + +For details on [markdown-it] itself, see: + +- The __[Live demo](https://markdown-it.github.io)__ +- [The markdown-it README][markdown-it-readme] + +**See also:** [markdown-it-pyrs](https://github.com/chrisjsewell/markdown-it-pyrs) for an experimental Rust binding, +for even more speed! + +## Installation + +### PIP + +```bash +pip install markdown-it-py[plugins] +``` + +or with extras + +```bash +pip install markdown-it-py[linkify,plugins] +``` + +### Conda + +```bash +conda install -c conda-forge markdown-it-py +``` + +or with extras + +```bash +conda install -c conda-forge markdown-it-py linkify-it-py mdit-py-plugins +``` + +## Usage + +### Python API Usage + +Render markdown to HTML with markdown-it-py and a custom configuration +with and without plugins and features: + +```python +from markdown_it import MarkdownIt +from mdit_py_plugins.front_matter import front_matter_plugin +from mdit_py_plugins.footnote import footnote_plugin + +md = ( + MarkdownIt('commonmark', {'breaks':True,'html':True}) + .use(front_matter_plugin) + .use(footnote_plugin) + .enable('table') +) +text = (""" +--- +a: 1 +--- + +a | b +- | - +1 | 2 + +A footnote [^1] + +[^1]: some details +""") +tokens = md.parse(text) +html_text = md.render(text) + +## To export the html to a file, uncomment the lines below: +# from pathlib import Path +# Path("output.html").write_text(html_text) +``` + +### Command-line Usage + +Render markdown to HTML with markdown-it-py from the +command-line: + +```console +usage: markdown-it [-h] [-v] [filenames [filenames ...]] + +Parse one or more markdown files, convert each to HTML, and print to stdout + +positional arguments: + filenames specify an optional list of files to convert + +optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + +Interactive: + + $ markdown-it + markdown-it-py [version 0.0.0] (interactive) + Type Ctrl-D to complete input, or Ctrl-C to exit. + >>> # Example + ... > markdown *input* + ... +

    Example

    +
    +

    markdown input

    +
    + +Batch: + + $ markdown-it README.md README.footer.md > index.html + +``` + +## References / Thanks + +Big thanks to the authors of [markdown-it]: + +- Alex Kocharin [github/rlidwka](https://github.com/rlidwka) +- Vitaly Puzrin [github/puzrin](https://github.com/puzrin) + +Also [John MacFarlane](https://github.com/jgm) for his work on the CommonMark spec and reference implementations. + +[github-ci]: https://github.com/executablebooks/markdown-it-py/actions/workflows/tests.yml/badge.svg?branch=master +[github-link]: https://github.com/executablebooks/markdown-it-py +[pypi-badge]: https://img.shields.io/pypi/v/markdown-it-py.svg +[pypi-link]: https://pypi.org/project/markdown-it-py +[conda-badge]: https://anaconda.org/conda-forge/markdown-it-py/badges/version.svg +[conda-link]: https://anaconda.org/conda-forge/markdown-it-py +[codecov-badge]: https://codecov.io/gh/executablebooks/markdown-it-py/branch/master/graph/badge.svg +[codecov-link]: https://codecov.io/gh/executablebooks/markdown-it-py +[install-badge]: https://img.shields.io/pypi/dw/markdown-it-py?label=pypi%20installs +[install-link]: https://pypistats.org/packages/markdown-it-py + +[CommonMark spec]: http://spec.commonmark.org/ +[markdown-it]: https://github.com/markdown-it/markdown-it +[markdown-it-readme]: https://github.com/markdown-it/markdown-it/blob/master/README.md +[md-security]: https://markdown-it-py.readthedocs.io/en/latest/security.html +[md-performance]: https://markdown-it-py.readthedocs.io/en/latest/performance.html +[md-plugins]: https://markdown-it-py.readthedocs.io/en/latest/plugins.html + diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/RECORD b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/RECORD new file mode 100644 index 0000000..fd86b9d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/RECORD @@ -0,0 +1,142 @@ +../../../bin/markdown-it,sha256=2XX6l3qU5rkjTAt0kHShGe9TTiWMgtEgGcDcjkSa3kU,234 +markdown_it/__init__.py,sha256=R7fMvDxageYJ4Q6doBcimogy1ctcV1eBuCFu5Pr8bbA,114 +markdown_it/__pycache__/__init__.cpython-312.pyc,, +markdown_it/__pycache__/_compat.cpython-312.pyc,, +markdown_it/__pycache__/_punycode.cpython-312.pyc,, +markdown_it/__pycache__/main.cpython-312.pyc,, +markdown_it/__pycache__/parser_block.cpython-312.pyc,, +markdown_it/__pycache__/parser_core.cpython-312.pyc,, +markdown_it/__pycache__/parser_inline.cpython-312.pyc,, +markdown_it/__pycache__/renderer.cpython-312.pyc,, +markdown_it/__pycache__/ruler.cpython-312.pyc,, +markdown_it/__pycache__/token.cpython-312.pyc,, +markdown_it/__pycache__/tree.cpython-312.pyc,, +markdown_it/__pycache__/utils.cpython-312.pyc,, +markdown_it/_compat.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35 +markdown_it/_punycode.py,sha256=JvSOZJ4VKr58z7unFGM0KhfTxqHMk2w8gglxae2QszM,2373 +markdown_it/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +markdown_it/cli/__pycache__/__init__.cpython-312.pyc,, +markdown_it/cli/__pycache__/parse.cpython-312.pyc,, +markdown_it/cli/parse.py,sha256=Un3N7fyGHhZAQouGVnRx-WZcpKwEK2OF08rzVAEBie8,2881 +markdown_it/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +markdown_it/common/__pycache__/__init__.cpython-312.pyc,, +markdown_it/common/__pycache__/entities.cpython-312.pyc,, +markdown_it/common/__pycache__/html_blocks.cpython-312.pyc,, +markdown_it/common/__pycache__/html_re.cpython-312.pyc,, +markdown_it/common/__pycache__/normalize_url.cpython-312.pyc,, +markdown_it/common/__pycache__/utils.cpython-312.pyc,, +markdown_it/common/entities.py,sha256=EYRCmUL7ZU1FRGLSXQlPx356lY8EUBdFyx96eSGc6d0,157 +markdown_it/common/html_blocks.py,sha256=QXbUDMoN9lXLgYFk2DBYllnLiFukL6dHn2X98Y6Wews,986 +markdown_it/common/html_re.py,sha256=FggAEv9IL8gHQqsGTkHcf333rTojwG0DQJMH9oVu0fU,926 +markdown_it/common/normalize_url.py,sha256=avOXnLd9xw5jU1q5PLftjAM9pvGx8l9QDEkmZSyrMgg,2568 +markdown_it/common/utils.py,sha256=pMgvMOE3ZW-BdJ7HfuzlXNKyD1Ivk7jHErc2J_B8J5M,8734 +markdown_it/helpers/__init__.py,sha256=YH2z7dS0WUc_9l51MWPvrLtFoBPh4JLGw58OuhGRCK0,253 +markdown_it/helpers/__pycache__/__init__.cpython-312.pyc,, +markdown_it/helpers/__pycache__/parse_link_destination.cpython-312.pyc,, +markdown_it/helpers/__pycache__/parse_link_label.cpython-312.pyc,, +markdown_it/helpers/__pycache__/parse_link_title.cpython-312.pyc,, +markdown_it/helpers/parse_link_destination.py,sha256=u-xxWVP3g1s7C1bQuQItiYyDrYoYHJzXaZXPgr-o6mY,1906 +markdown_it/helpers/parse_link_label.py,sha256=PIHG6ZMm3BUw0a2m17lCGqNrl3vaz911tuoGviWD3I4,1037 +markdown_it/helpers/parse_link_title.py,sha256=jkLoYQMKNeX9bvWQHkaSroiEo27HylkEUNmj8xBRlp4,2273 +markdown_it/main.py,sha256=vzuT23LJyKrPKNyHKKAbOHkNWpwIldOGUM-IGsv2DHM,12732 +markdown_it/parser_block.py,sha256=-MyugXB63Te71s4NcSQZiK5bE6BHkdFyZv_bviuatdI,3939 +markdown_it/parser_core.py,sha256=SRmJjqe8dC6GWzEARpWba59cBmxjCr3Gsg8h29O8sQk,1016 +markdown_it/parser_inline.py,sha256=y0jCig8CJxQO7hBz0ZY3sGvPlAKTohOwIgaqnlSaS5A,5024 +markdown_it/port.yaml,sha256=jt_rdwOnfocOV5nc35revTybAAQMIp_-1fla_527sVE,2447 +markdown_it/presets/__init__.py,sha256=22vFtwJEY7iqFRtgVZ-pJthcetfpr1Oig8XOF9x1328,970 +markdown_it/presets/__pycache__/__init__.cpython-312.pyc,, +markdown_it/presets/__pycache__/commonmark.cpython-312.pyc,, +markdown_it/presets/__pycache__/default.cpython-312.pyc,, +markdown_it/presets/__pycache__/zero.cpython-312.pyc,, +markdown_it/presets/commonmark.py,sha256=ygfb0R7WQ_ZoyQP3df-B0EnYMqNXCVOSw9SAdMjsGow,2869 +markdown_it/presets/default.py,sha256=FfKVUI0HH3M-_qy6RwotLStdC4PAaAxE7Dq0_KQtRtc,1811 +markdown_it/presets/zero.py,sha256=okXWTBEI-2nmwx5XKeCjxInRf65oC11gahtRl-QNtHM,2113 +markdown_it/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +markdown_it/renderer.py,sha256=Lzr0glqd5oxFL10DOfjjW8kg4Gp41idQ4viEQaE47oA,9947 +markdown_it/ruler.py,sha256=eMAtWGRAfSM33aiJed0k5923BEkuMVsMq1ct8vU-ql4,9142 +markdown_it/rules_block/__init__.py,sha256=SQpg0ocmsHeILPAWRHhzgLgJMKIcNkQyELH13o_6Ktc,553 +markdown_it/rules_block/__pycache__/__init__.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/blockquote.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/code.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/fence.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/heading.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/hr.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/html_block.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/lheading.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/list.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/paragraph.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/reference.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/state_block.cpython-312.pyc,, +markdown_it/rules_block/__pycache__/table.cpython-312.pyc,, +markdown_it/rules_block/blockquote.py,sha256=7uymS36dcrned3DsIaRcqcbFU1NlymhvsZpEXTD3_n8,8887 +markdown_it/rules_block/code.py,sha256=iTAxv0U1-MDhz88M1m1pi2vzOhEMSEROsXMo2Qq--kU,860 +markdown_it/rules_block/fence.py,sha256=BJgU-PqZ4vAlCqGcrc8UtdLpJJyMeRWN-G-Op-zxrMc,2537 +markdown_it/rules_block/heading.py,sha256=4Lh15rwoVsQjE1hVhpbhidQ0k9xKHihgjAeYSbwgO5k,1745 +markdown_it/rules_block/hr.py,sha256=QCoY5kImaQRvF7PyP8OoWft6A8JVH1v6MN-0HR9Ikpg,1227 +markdown_it/rules_block/html_block.py,sha256=wA8pb34LtZr1BkIATgGKQBIGX5jQNOkwZl9UGEqvb5M,2721 +markdown_it/rules_block/lheading.py,sha256=fWoEuUo7S2svr5UMKmyQMkh0hheYAHg2gMM266Mogs4,2625 +markdown_it/rules_block/list.py,sha256=gIodkAJFyOIyKCZCj5lAlL7jIj5kAzrDb-K-2MFNplY,9668 +markdown_it/rules_block/paragraph.py,sha256=9pmCwA7eMu4LBdV4fWKzC4EdwaOoaGw2kfeYSQiLye8,1819 +markdown_it/rules_block/reference.py,sha256=ue1qZbUaUP0GIvwTjh6nD1UtCij8uwsIMuYW1xBkckc,6983 +markdown_it/rules_block/state_block.py,sha256=HowsQyy5hGUibH4HRZWKfLIlXeDUnuWL7kpF0-rSwoM,8422 +markdown_it/rules_block/table.py,sha256=8nMd9ONGOffER7BXmc9kbbhxkLjtpX79dVLR0iatGnM,7682 +markdown_it/rules_core/__init__.py,sha256=QFGBe9TUjnRQJDU7xY4SQYpxyTHNwg8beTSwXpNGRjE,394 +markdown_it/rules_core/__pycache__/__init__.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/block.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/inline.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/linkify.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/normalize.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/replacements.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/smartquotes.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/state_core.cpython-312.pyc,, +markdown_it/rules_core/__pycache__/text_join.cpython-312.pyc,, +markdown_it/rules_core/block.py,sha256=0_JY1CUy-H2OooFtIEZAACtuoGUMohgxo4Z6A_UinSg,372 +markdown_it/rules_core/inline.py,sha256=9oWmeBhJHE7x47oJcN9yp6UsAZtrEY_A-VmfoMvKld4,325 +markdown_it/rules_core/linkify.py,sha256=mjQqpk_lHLh2Nxw4UFaLxa47Fgi-OHnmDamlgXnhmv0,5141 +markdown_it/rules_core/normalize.py,sha256=AJm4femtFJ_QBnM0dzh0UNqTTJk9K6KMtwRPaioZFqM,403 +markdown_it/rules_core/replacements.py,sha256=CH75mie-tdzdLKQtMBuCTcXAl1ijegdZGfbV_Vk7st0,3471 +markdown_it/rules_core/smartquotes.py,sha256=izK9fSyuTzA-zAUGkRkz9KwwCQWo40iRqcCKqOhFbEE,7443 +markdown_it/rules_core/state_core.py,sha256=HqWZCUr5fW7xG6jeQZDdO0hE9hxxyl3_-bawgOy57HY,570 +markdown_it/rules_core/text_join.py,sha256=rLXxNuLh_es5RvH31GsXi7en8bMNO9UJ5nbJMDBPltY,1173 +markdown_it/rules_inline/__init__.py,sha256=qqHZk6-YE8Rc12q6PxvVKBaxv2wmZeeo45H1XMR_Vxs,696 +markdown_it/rules_inline/__pycache__/__init__.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/autolink.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/backticks.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/balance_pairs.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/emphasis.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/entity.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/escape.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/fragments_join.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/html_inline.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/image.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/link.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/linkify.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/newline.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/state_inline.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/strikethrough.cpython-312.pyc,, +markdown_it/rules_inline/__pycache__/text.cpython-312.pyc,, +markdown_it/rules_inline/autolink.py,sha256=pPoqJY8i99VtFn7KgUzMackMeq1hytzioVvWs-VQPRo,2065 +markdown_it/rules_inline/backticks.py,sha256=J7bezjjNxiXlKqvHc0fJkHZwH7-2nBsXVjcKydk8E4M,2037 +markdown_it/rules_inline/balance_pairs.py,sha256=5zgBiGidqdiWmt7Io_cuZOYh5EFEfXrYRce8RXg5m7o,4852 +markdown_it/rules_inline/emphasis.py,sha256=7aDLZx0Jlekuvbu3uEUTDhJp00Z0Pj6g4C3-VLhI8Co,3123 +markdown_it/rules_inline/entity.py,sha256=CE8AIGMi5isEa24RNseo0wRmTTaj5YLbgTFdDmBesAU,1651 +markdown_it/rules_inline/escape.py,sha256=KGulwrP5FnqZM7GXY8lf7pyVv0YkR59taZDeHb5cmKg,1659 +markdown_it/rules_inline/fragments_join.py,sha256=_3JbwWYJz74gRHeZk6T8edVJT2IVSsi7FfmJJlieQlA,1493 +markdown_it/rules_inline/html_inline.py,sha256=SBg6HR0HRqCdrkkec0dfOYuQdAqyfeLRFLeQggtgjvg,1130 +markdown_it/rules_inline/image.py,sha256=Wbsg7jgnOtKXIwXGNJOlG7ORThkMkBVolxItC0ph6C0,4141 +markdown_it/rules_inline/link.py,sha256=2oD-fAdB0xyxDRtZLTjzLeWbzJ1k9bbPVQmohb58RuI,4258 +markdown_it/rules_inline/linkify.py,sha256=ifH6sb5wE8PGMWEw9Sr4x0DhMVfNOEBCfFSwKll2O-s,1706 +markdown_it/rules_inline/newline.py,sha256=329r0V3aDjzNtJcvzA3lsFYjzgBrShLAV5uf9hwQL_M,1297 +markdown_it/rules_inline/state_inline.py,sha256=d-menFzbz5FDy1JNgGBF-BASasnVI-9RuOxWz9PnKn4,5003 +markdown_it/rules_inline/strikethrough.py,sha256=pwcPlyhkh5pqFVxRCSrdW5dNCIOtU4eDit7TVDTPIVA,3214 +markdown_it/rules_inline/text.py,sha256=FQqaQRUqbnMLO9ZSWPWQUMEKH6JqWSSSmlZ5Ii9P48o,1119 +markdown_it/token.py,sha256=cWrt9kodfPdizHq_tYrzyIZNtJYNMN1813DPNlunwTg,6381 +markdown_it/tree.py,sha256=56Cdbwu2Aiks7kNYqO_fQZWpPb_n48CUllzjQQfgu1Y,11111 +markdown_it/utils.py,sha256=lVLeX7Af3GaNFfxmMgUbsn5p7cXbwhLq7RSf56UWuRE,5687 +markdown_it_py-4.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +markdown_it_py-4.0.0.dist-info/METADATA,sha256=6fyqHi2vP5bYQKCfuqo5T-qt83o22Ip7a2tnJIfGW_s,7288 +markdown_it_py-4.0.0.dist-info/RECORD,, +markdown_it_py-4.0.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 +markdown_it_py-4.0.0.dist-info/entry_points.txt,sha256=T81l7fHQ3pllpQ4wUtQK6a8g_p6wxQbnjKVHCk2WMG4,58 +markdown_it_py-4.0.0.dist-info/licenses/LICENSE,sha256=SiJg1uLND1oVGh6G2_59PtVSseK-q_mUHBulxJy85IQ,1078 +markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it,sha256=eSxIxahJoV_fnjfovPnm0d0TsytGxkKnSKCkapkZ1HM,1073 diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL new file mode 100644 index 0000000..d8b9936 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.12.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt new file mode 100644 index 0000000..7d829cd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +markdown-it=markdown_it.cli.parse:main + diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE new file mode 100644 index 0000000..582ddf5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 ExecutableBookProject + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it new file mode 100644 index 0000000..7ffa058 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it @@ -0,0 +1,22 @@ +Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/LICENSE new file mode 100644 index 0000000..8fd356e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/LICENSE @@ -0,0 +1,25 @@ +Copyright © Ned Batchelder +Copyright © 2011-2013 Tarek Ziade +Copyright © 2013 Florent Xicluna + +Licensed under the terms of the Expat License + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation files +(the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/METADATA b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/METADATA new file mode 100644 index 0000000..e25facd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/METADATA @@ -0,0 +1,199 @@ +Metadata-Version: 2.1 +Name: mccabe +Version: 0.7.0 +Summary: McCabe checker, plugin for flake8 +Home-page: https://github.com/pycqa/mccabe +Author: Tarek Ziade +Author-email: tarek@ziade.org +Maintainer: Ian Stapleton Cordasco +Maintainer-email: graffatcolmingov@gmail.com +License: Expat license +Keywords: flake8 mccabe +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Console +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Software Development :: Quality Assurance +Requires-Python: >=3.6 +License-File: LICENSE + +McCabe complexity checker +========================= + +Ned's script to check McCabe complexity. + +This module provides a plugin for ``flake8``, the Python code checker. + + +Installation +------------ + +You can install, upgrade, or uninstall ``mccabe`` with these commands:: + + $ pip install mccabe + $ pip install --upgrade mccabe + $ pip uninstall mccabe + + +Standalone script +----------------- + +The complexity checker can be used directly:: + + $ python -m mccabe --min 5 mccabe.py + ("185:1: 'PathGraphingAstVisitor.visitIf'", 5) + ("71:1: 'PathGraph.to_dot'", 5) + ("245:1: 'McCabeChecker.run'", 5) + ("283:1: 'main'", 7) + ("203:1: 'PathGraphingAstVisitor.visitTryExcept'", 5) + ("257:1: 'get_code_complexity'", 5) + + +Plugin for Flake8 +----------------- + +When both ``flake8 2+`` and ``mccabe`` are installed, the plugin is +available in ``flake8``:: + + $ flake8 --version + 2.0 (pep8: 1.4.2, pyflakes: 0.6.1, mccabe: 0.2) + +By default the plugin is disabled. Use the ``--max-complexity`` switch to +enable it. It will emit a warning if the McCabe complexity of a function is +higher than the provided value:: + + $ flake8 --max-complexity 10 coolproject + ... + coolproject/mod.py:1204:1: C901 'CoolFactory.prepare' is too complex (14) + +This feature is quite useful for detecting over-complex code. According to McCabe, +anything that goes beyond 10 is too complex. + +Flake8 has many features that mccabe does not provide. Flake8 allows users to +ignore violations reported by plugins with ``# noqa``. Read more about this in +`their documentation +`__. +To silence violations reported by ``mccabe``, place your ``# noqa: C901`` on +the function definition line, where the error is reported for (possibly a +decorator). + + +Links +----- + +* Feedback and ideas: http://mail.python.org/mailman/listinfo/code-quality + +* Cyclomatic complexity: http://en.wikipedia.org/wiki/Cyclomatic_complexity + +* Ned Batchelder's script: + http://nedbatchelder.com/blog/200803/python_code_complexity_microtool.html + +* McCabe complexity: http://en.wikipedia.org/wiki/Cyclomatic_complexity + + +Changes +------- + +0.7.0 - 2021-01-23 +`````````````````` + +* Drop support for all versions of Python lower than 3.6 + +* Add support for Python 3.8, 3.9, and 3.10 + +* Fix option declaration for Flake8 + +0.6.1 - 2017-01-26 +`````````````````` + +* Fix signature for ``PathGraphingAstVisitor.default`` to match the signature + for ``ASTVisitor`` + +0.6.0 - 2017-01-23 +`````````````````` + +* Add support for Python 3.6 + +* Fix handling for missing statement types + +0.5.3 - 2016-12-14 +`````````````````` + +* Report actual column number of violation instead of the start of the line + +0.5.2 - 2016-07-31 +`````````````````` + +* When opening files ourselves, make sure we always name the file variable + +0.5.1 - 2016-07-28 +`````````````````` + +* Set default maximum complexity to -1 on the class itself + +0.5.0 - 2016-05-30 +`````````````````` + +* PyCon 2016 PDX release + +* Add support for Flake8 3.0 + +0.4.0 - 2016-01-27 +`````````````````` + +* Stop testing on Python 3.2 + +* Add support for async/await keywords on Python 3.5 from PEP 0492 + +0.3.1 - 2015-06-14 +`````````````````` + +* Include ``test_mccabe.py`` in releases. + +* Always coerce the ``max_complexity`` value from Flake8's entry-point to an + integer. + +0.3 - 2014-12-17 +```````````````` + +* Computation was wrong: the mccabe complexity starts at 1, not 2. + +* The ``max-complexity`` value is now inclusive. E.g.: if the + value is 10 and the reported complexity is 10, then it passes. + +* Add tests. + + +0.2.1 - 2013-04-03 +`````````````````` + +* Do not require ``setuptools`` in setup.py. It works around an issue + with ``pip`` and Python 3. + + +0.2 - 2013-02-22 +```````````````` + +* Rename project to ``mccabe``. + +* Provide ``flake8.extension`` setuptools entry point. + +* Read ``max-complexity`` from the configuration file. + +* Rename argument ``min_complexity`` to ``threshold``. + + +0.1 - 2013-02-11 +```````````````` +* First release + + diff --git a/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/RECORD b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/RECORD new file mode 100644 index 0000000..6ca1f6a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/RECORD @@ -0,0 +1,9 @@ +__pycache__/mccabe.cpython-312.pyc,, +mccabe-0.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +mccabe-0.7.0.dist-info/LICENSE,sha256=EPvAA8uvims89xlbgNrJbIba85ADmyq_bntuc1r9fXQ,1221 +mccabe-0.7.0.dist-info/METADATA,sha256=oMxU_cw4ev2Q23YTL3NRg4pebHSqlrbF_DSSs-cpfBE,5035 +mccabe-0.7.0.dist-info/RECORD,, +mccabe-0.7.0.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110 +mccabe-0.7.0.dist-info/entry_points.txt,sha256=N2NH182GXTUyTm8r8XMgadb9C-CRa5dUr1k8OC91uGE,47 +mccabe-0.7.0.dist-info/top_level.txt,sha256=21cXuqZE-lpcfAqqANvX9EjI1ED1p8zcViv064u3RKA,7 +mccabe.py,sha256=g_kB8oPilNLemdOirPaZymQyyjqAH0kowrncUQaaw00,10654 diff --git a/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/WHEEL new file mode 100644 index 0000000..0b18a28 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.1) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/entry_points.txt new file mode 100644 index 0000000..cc6645b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[flake8.extension] +C90 = mccabe:McCabeChecker + diff --git a/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/top_level.txt new file mode 100644 index 0000000..8831b36 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe-0.7.0.dist-info/top_level.txt @@ -0,0 +1 @@ +mccabe diff --git a/.venv/lib/python3.12/site-packages/mccabe.py b/.venv/lib/python3.12/site-packages/mccabe.py new file mode 100644 index 0000000..5746504 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mccabe.py @@ -0,0 +1,346 @@ +""" Meager code path measurement tool. + Ned Batchelder + http://nedbatchelder.com/blog/200803/python_code_complexity_microtool.html + MIT License. +""" +from __future__ import with_statement + +import optparse +import sys +import tokenize + +from collections import defaultdict +try: + import ast + from ast import iter_child_nodes +except ImportError: # Python 2.5 + from flake8.util import ast, iter_child_nodes + +__version__ = '0.7.0' + + +class ASTVisitor(object): + """Performs a depth-first walk of the AST.""" + + def __init__(self): + self.node = None + self._cache = {} + + def default(self, node, *args): + for child in iter_child_nodes(node): + self.dispatch(child, *args) + + def dispatch(self, node, *args): + self.node = node + klass = node.__class__ + meth = self._cache.get(klass) + if meth is None: + className = klass.__name__ + meth = getattr(self.visitor, 'visit' + className, self.default) + self._cache[klass] = meth + return meth(node, *args) + + def preorder(self, tree, visitor, *args): + """Do preorder walk of tree using visitor""" + self.visitor = visitor + visitor.visit = self.dispatch + self.dispatch(tree, *args) # XXX *args make sense? + + +class PathNode(object): + def __init__(self, name, look="circle"): + self.name = name + self.look = look + + def to_dot(self): + print('node [shape=%s,label="%s"] %d;' % ( + self.look, self.name, self.dot_id())) + + def dot_id(self): + return id(self) + + +class PathGraph(object): + def __init__(self, name, entity, lineno, column=0): + self.name = name + self.entity = entity + self.lineno = lineno + self.column = column + self.nodes = defaultdict(list) + + def connect(self, n1, n2): + self.nodes[n1].append(n2) + # Ensure that the destination node is always counted. + self.nodes[n2] = [] + + def to_dot(self): + print('subgraph {') + for node in self.nodes: + node.to_dot() + for node, nexts in self.nodes.items(): + for next in nexts: + print('%s -- %s;' % (node.dot_id(), next.dot_id())) + print('}') + + def complexity(self): + """ Return the McCabe complexity for the graph. + V-E+2 + """ + num_edges = sum([len(n) for n in self.nodes.values()]) + num_nodes = len(self.nodes) + return num_edges - num_nodes + 2 + + +class PathGraphingAstVisitor(ASTVisitor): + """ A visitor for a parsed Abstract Syntax Tree which finds executable + statements. + """ + + def __init__(self): + super(PathGraphingAstVisitor, self).__init__() + self.classname = "" + self.graphs = {} + self.reset() + + def reset(self): + self.graph = None + self.tail = None + + def dispatch_list(self, node_list): + for node in node_list: + self.dispatch(node) + + def visitFunctionDef(self, node): + + if self.classname: + entity = '%s%s' % (self.classname, node.name) + else: + entity = node.name + + name = '%d:%d: %r' % (node.lineno, node.col_offset, entity) + + if self.graph is not None: + # closure + pathnode = self.appendPathNode(name) + self.tail = pathnode + self.dispatch_list(node.body) + bottom = PathNode("", look='point') + self.graph.connect(self.tail, bottom) + self.graph.connect(pathnode, bottom) + self.tail = bottom + else: + self.graph = PathGraph(name, entity, node.lineno, node.col_offset) + pathnode = PathNode(name) + self.tail = pathnode + self.dispatch_list(node.body) + self.graphs["%s%s" % (self.classname, node.name)] = self.graph + self.reset() + + visitAsyncFunctionDef = visitFunctionDef + + def visitClassDef(self, node): + old_classname = self.classname + self.classname += node.name + "." + self.dispatch_list(node.body) + self.classname = old_classname + + def appendPathNode(self, name): + if not self.tail: + return + pathnode = PathNode(name) + self.graph.connect(self.tail, pathnode) + self.tail = pathnode + return pathnode + + def visitSimpleStatement(self, node): + if node.lineno is None: + lineno = 0 + else: + lineno = node.lineno + name = "Stmt %d" % lineno + self.appendPathNode(name) + + def default(self, node, *args): + if isinstance(node, ast.stmt): + self.visitSimpleStatement(node) + else: + super(PathGraphingAstVisitor, self).default(node, *args) + + def visitLoop(self, node): + name = "Loop %d" % node.lineno + self._subgraph(node, name) + + visitAsyncFor = visitFor = visitWhile = visitLoop + + def visitIf(self, node): + name = "If %d" % node.lineno + self._subgraph(node, name) + + def _subgraph(self, node, name, extra_blocks=()): + """create the subgraphs representing any `if` and `for` statements""" + if self.graph is None: + # global loop + self.graph = PathGraph(name, name, node.lineno, node.col_offset) + pathnode = PathNode(name) + self._subgraph_parse(node, pathnode, extra_blocks) + self.graphs["%s%s" % (self.classname, name)] = self.graph + self.reset() + else: + pathnode = self.appendPathNode(name) + self._subgraph_parse(node, pathnode, extra_blocks) + + def _subgraph_parse(self, node, pathnode, extra_blocks): + """parse the body and any `else` block of `if` and `for` statements""" + loose_ends = [] + self.tail = pathnode + self.dispatch_list(node.body) + loose_ends.append(self.tail) + for extra in extra_blocks: + self.tail = pathnode + self.dispatch_list(extra.body) + loose_ends.append(self.tail) + if node.orelse: + self.tail = pathnode + self.dispatch_list(node.orelse) + loose_ends.append(self.tail) + else: + loose_ends.append(pathnode) + if pathnode: + bottom = PathNode("", look='point') + for le in loose_ends: + self.graph.connect(le, bottom) + self.tail = bottom + + def visitTryExcept(self, node): + name = "TryExcept %d" % node.lineno + self._subgraph(node, name, extra_blocks=node.handlers) + + visitTry = visitTryExcept + + def visitWith(self, node): + name = "With %d" % node.lineno + self.appendPathNode(name) + self.dispatch_list(node.body) + + visitAsyncWith = visitWith + + +class McCabeChecker(object): + """McCabe cyclomatic complexity checker.""" + name = 'mccabe' + version = __version__ + _code = 'C901' + _error_tmpl = "C901 %r is too complex (%d)" + max_complexity = -1 + + def __init__(self, tree, filename): + self.tree = tree + + @classmethod + def add_options(cls, parser): + flag = '--max-complexity' + kwargs = { + 'default': -1, + 'action': 'store', + 'type': int, + 'help': 'McCabe complexity threshold', + 'parse_from_config': 'True', + } + config_opts = getattr(parser, 'config_options', None) + if isinstance(config_opts, list): + # Flake8 2.x + kwargs.pop('parse_from_config') + parser.add_option(flag, **kwargs) + parser.config_options.append('max-complexity') + else: + parser.add_option(flag, **kwargs) + + @classmethod + def parse_options(cls, options): + cls.max_complexity = int(options.max_complexity) + + def run(self): + if self.max_complexity < 0: + return + visitor = PathGraphingAstVisitor() + visitor.preorder(self.tree, visitor) + for graph in visitor.graphs.values(): + if graph.complexity() > self.max_complexity: + text = self._error_tmpl % (graph.entity, graph.complexity()) + yield graph.lineno, graph.column, text, type(self) + + +def get_code_complexity(code, threshold=7, filename='stdin'): + try: + tree = compile(code, filename, "exec", ast.PyCF_ONLY_AST) + except SyntaxError: + e = sys.exc_info()[1] + sys.stderr.write("Unable to parse %s: %s\n" % (filename, e)) + return 0 + + complx = [] + McCabeChecker.max_complexity = threshold + for lineno, offset, text, check in McCabeChecker(tree, filename).run(): + complx.append('%s:%d:1: %s' % (filename, lineno, text)) + + if len(complx) == 0: + return 0 + print('\n'.join(complx)) + return len(complx) + + +def get_module_complexity(module_path, threshold=7): + """Returns the complexity of a module""" + code = _read(module_path) + return get_code_complexity(code, threshold, filename=module_path) + + +def _read(filename): + if (2, 5) < sys.version_info < (3, 0): + with open(filename, 'rU') as f: + return f.read() + elif (3, 0) <= sys.version_info < (4, 0): + """Read the source code.""" + try: + with open(filename, 'rb') as f: + (encoding, _) = tokenize.detect_encoding(f.readline) + except (LookupError, SyntaxError, UnicodeError): + # Fall back if file encoding is improperly declared + with open(filename, encoding='latin-1') as f: + return f.read() + with open(filename, 'r', encoding=encoding) as f: + return f.read() + + +def main(argv=None): + if argv is None: + argv = sys.argv[1:] + opar = optparse.OptionParser() + opar.add_option("-d", "--dot", dest="dot", + help="output a graphviz dot file", action="store_true") + opar.add_option("-m", "--min", dest="threshold", + help="minimum complexity for output", type="int", + default=1) + + options, args = opar.parse_args(argv) + + code = _read(args[0]) + tree = compile(code, args[0], "exec", ast.PyCF_ONLY_AST) + visitor = PathGraphingAstVisitor() + visitor.preorder(tree, visitor) + + if options.dot: + print('graph {') + for graph in visitor.graphs.values(): + if (not options.threshold or + graph.complexity() >= options.threshold): + graph.to_dot() + print('}') + else: + for graph in visitor.graphs.values(): + if graph.complexity() >= options.threshold: + print(graph.name, graph.complexity()) + + +if __name__ == '__main__': + main(sys.argv[1:]) diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE new file mode 100644 index 0000000..2a920c5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/LICENSE @@ -0,0 +1,46 @@ +Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin. +Copyright (c) 2021 Taneli Hukkinen + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +-------------------------------------------------------------------------------- + +.parse() is based on Joyent's node.js `url` code: + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA new file mode 100644 index 0000000..b4670e8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/METADATA @@ -0,0 +1,32 @@ +Metadata-Version: 2.1 +Name: mdurl +Version: 0.1.2 +Summary: Markdown URL utilities +Keywords: markdown,commonmark +Author-email: Taneli Hukkinen +Requires-Python: >=3.7 +Description-Content-Type: text/markdown +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: MacOS +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: POSIX :: Linux +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Typing :: Typed +Project-URL: Homepage, https://github.com/executablebooks/mdurl + +# mdurl + +[![Build Status](https://github.com/executablebooks/mdurl/workflows/Tests/badge.svg?branch=master)](https://github.com/executablebooks/mdurl/actions?query=workflow%3ATests+branch%3Amaster+event%3Apush) +[![codecov.io](https://codecov.io/gh/executablebooks/mdurl/branch/master/graph/badge.svg)](https://codecov.io/gh/executablebooks/mdurl) +[![PyPI version](https://img.shields.io/pypi/v/mdurl)](https://pypi.org/project/mdurl) + +This is a Python port of the JavaScript [mdurl](https://www.npmjs.com/package/mdurl) package. +See the [upstream README.md file](https://github.com/markdown-it/mdurl/blob/master/README.md) for API documentation. + diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD new file mode 100644 index 0000000..33e97b0 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/RECORD @@ -0,0 +1,18 @@ +mdurl-0.1.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +mdurl-0.1.2.dist-info/LICENSE,sha256=fGBd9uKGZ6lgMRjpgnT2SknOPu0NJvzM6VNKNF4O-VU,2338 +mdurl-0.1.2.dist-info/METADATA,sha256=tTsp1I9Jk2cFP9o8gefOJ9JVg4Drv4PmYCOwLrfd0l0,1638 +mdurl-0.1.2.dist-info/RECORD,, +mdurl-0.1.2.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81 +mdurl/__init__.py,sha256=1vpE89NyXniIRZNC_4f6BPm3Ub4bPntjfyyhLRR7opU,547 +mdurl/__pycache__/__init__.cpython-312.pyc,, +mdurl/__pycache__/_decode.cpython-312.pyc,, +mdurl/__pycache__/_encode.cpython-312.pyc,, +mdurl/__pycache__/_format.cpython-312.pyc,, +mdurl/__pycache__/_parse.cpython-312.pyc,, +mdurl/__pycache__/_url.cpython-312.pyc,, +mdurl/_decode.py,sha256=3Q_gDQqU__TvDbu7x-b9LjbVl4QWy5g_qFwljcuvN_Y,3004 +mdurl/_encode.py,sha256=goJLUFt1h4rVZNqqm9t15Nw2W-bFXYQEy3aR01ImWvs,2602 +mdurl/_format.py,sha256=xZct0mdePXA0H3kAqxjGtlB5O86G35DAYMGkA44CmB4,626 +mdurl/_parse.py,sha256=ezZSkM2_4NQ2Zx047sEdcJG7NYQRFHiZK7Y8INHFzwY,11374 +mdurl/_url.py,sha256=5kQnRQN2A_G4svLnRzZcG0bfoD9AbBrYDXousDHZ3z0,284 +mdurl/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 diff --git a/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL new file mode 100644 index 0000000..668ba4d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl-0.1.2.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.7.1 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.12/site-packages/mdurl/__init__.py b/.venv/lib/python3.12/site-packages/mdurl/__init__.py new file mode 100644 index 0000000..cdbb640 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/__init__.py @@ -0,0 +1,18 @@ +__all__ = ( + "decode", + "DECODE_DEFAULT_CHARS", + "DECODE_COMPONENT_CHARS", + "encode", + "ENCODE_DEFAULT_CHARS", + "ENCODE_COMPONENT_CHARS", + "format", + "parse", + "URL", +) +__version__ = "0.1.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT + +from mdurl._decode import DECODE_COMPONENT_CHARS, DECODE_DEFAULT_CHARS, decode +from mdurl._encode import ENCODE_COMPONENT_CHARS, ENCODE_DEFAULT_CHARS, encode +from mdurl._format import format +from mdurl._parse import url_parse as parse +from mdurl._url import URL diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b27d627751483e0b5078d9f78ed40d19b0bb7c0d GIT binary patch literal 652 zcmZutO>fgc5MA5xSDesRf*^6K#DxgOrY+nmq>vbK2u{^d39W=yCSF>ryLPm8gTkr* zg5SVz;ly>N!hr+g7OA&hV0M%CP#9_7%)H&%H#1+`?Ir?yYW+ERXd?7eCD#VIw#&ER zKBEj_lo{B_%*uRnmoXPjvdzGZG1<^F5BRn zc+)@&uj_Yx>11?TW>nrC#)I)NCd2q;|7i4v3|{pQC$h6<2jkZV<0MY5d50FOsyO*y z)tddM>O(1bT1$JDii%3>=y3GOeiH74yT8@6T}w2;2}^<601&Q<9R;=`4B=@f{WHOc z{suU;$E3R@T|!dE2$2CHb1JI5EFfv~3?7GMHRvsgo7>euxAbmqSB-0N*;@an)kRD7 z<^#y)ng=o6(HC?HG`e~heJsUkHA|uM)pY{f@deSdawy5$d3g@(# zM=XCI%@*}ZS?q;7yHSr4 l7{=0U2IjfD?4XU#dGHG*-%#>H;|1EjK##wp2jU(){tIAqt)u_| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_decode.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_decode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab338547eb4013a9f4fd58992d3e11fe28876c40 GIT binary patch literal 3839 zcmc&1TWnLwb;kGFzJ5RA00~hx33+)*;t*I`XbNi*CyNT9Nub-!7P*e^P2zB|v*T+X z>9yn!)H+L4OhLk^mDcR`BU|=^&sN%YX;qb#`ePF+ymzB2Qnw%eYP9gNqSDec*S=0L zEn2=hvS-emb7szS&dmL*&1Oc>_AyWAKDHqA4?58rQwH#(9|Ld$okBd~v53y%DU2zs z6Ln{qDMp1Ek)2`z$B6nVJRIGBwLlvY7`zK)QILC8fA05T>%$iC>lPj!@q!dJ>Ax3JMdRBZ?ukupmTv zg%O3Q!o&zbbHW8hp8z!R>J_7KAuJ|%LD8#$QgB4kh36DwcrHl87pIPFq3y|!eCK22 zOne~}7UI6iK<_dCk=J@BX@Z1%hiIhz(U5pC9*O(<&I!?TJ~1-wTev9A#iD!r_6+#q z5lQHU#b-jZu>LHcAfhi=&XK-_i;8nrkSf!1%8*8oOr0114Rk3~G}^EC6pYPlj-A=j zf}=gpwXbh)NCk>bt(T5vwinojFKq72-pf;8BAvb=jn{0>jO+3b(z+sNyJB6kW+wi| z?by%*?J8=61!6BebnyBi9Cent$<#=S;0Fp6m=5e-YRm>5@# z3n3y!LZad!!h#s2gy8vz1PMfszM>Vm>-Lc48th zR7}<7ajFtcIzkVWVkoBx>4Zru{No3pOQAJuQ})eOYey=u=4^QAY%MrjAGGcNt?a<#?VwPIkiT{~jO?31o%d>QBgacj;q(L_D2D*yaA!JxKP`ei) z`=Mx2ehRV6eZXa01l@Svzs z%x2N#Ob9gM=BuT!;tm)zkJRe9MdP1=##U91QI!(|nyO7jNs^#Vw~jJ4)+RJK_AHCXFZt+lGw{v2qkeidtfT4Tct;#0%<0&8nH zT@}B$pYw~k#xI9!{PHc?{EVM`wSJP#Gu12Xr95S?^;8BgUzZu)^L*x1Jf#DU_he=g z?Ltzuu(iYE07EwNmh!r{;EXK~o<|p$x6pZ9!^x?f4vlm9vlsH!Rr!9X@p?CMcrcmNn6i+QH z(VCo~U6lwxf{KFCYf$vFB$ikpRII{8qLQMYz9$riazHR)CNg@mdu9 z*^mTxKP}`?d4+cr0}3GoE!_ zJ(V5Lxo)1yyLRO!R&CvB-MYn=Vc$Jaw7N4w_Q=&p!TL&iq-eEeTuUQqf6?k$x7stF zrK8#Q`zqB)UEmtih9YN5k1rY0cq5LH#hMN+ zcWj))$m&iV|LXCZ80~oVON7gD6bqhLuZ?UlF#Y%AmRia$G)mk5pgf81hdln1sczJW z{*3BIo6ukC>qh(0J)?cJfw{K>)4s_*+RNPQ!L;wUzk!)g5r*E&sxKBeR}ws~i6A9N z^odRTHlklar@aQ!P7llx+NsYQ6&liTK&KCwMUDu4$Ezom3{(0hlT9%P;VlLG3&9|v z^+0iiW1=X8)i1KX&~%v4xuZuFt0p7#%t`dU(}z!PrpY>ZEc!XffKpwo&NKLj0w z0pq`;wtu4b&yn+UWLn?eo=2Wy!_GX~w%*Z|vgYk=tElUd!GT>H-Kcx;F=Fr-er)w) I>{j>x4=09|7XSbN literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_encode.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_encode.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f1eda80736b1d175bd52b38076eed0adb04cd5b9 GIT binary patch literal 2889 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 Cx)wVC literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_parse.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_parse.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ba79312f978f383e45ef69835eac0ecd88dbeb3 GIT binary patch literal 7267 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 E3+HS?(EtDd literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_url.cpython-312.pyc b/.venv/lib/python3.12/site-packages/mdurl/__pycache__/_url.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afc3d142366b27b195b76437728aaeea16a5a72a GIT binary patch literal 675 zcmYk4L2uJA6vyqx%|h0KkV@$!kS1NCSzkl!f{hj#PU)t>u!MN-FO>SU>zPn&Onib&1 zF2FhBh~pGZag4F!M%tKqv4>FuJx1Jnk2n$DXRq?aq-^&6pDyTQyUDUl8fGRk(-4Lu zHWmC?k*8u@l~=m*;>8Py&yhee<|u9)!FPqn8+(xD9uQfQ%Qb8AYuczOsOeHop`&uM z-?HA((}OpmHfsCr_DE*J2Dy?(j%8}eu>{@FDbtD2maxJkmgG_y8zfSj4F2De1XiuD z1ykb$%*-S%Kk5@3Q0kCU8&W!zyht6lD1BA1bhUDY(*L?b=_j;sUATB2y_V`!=WHx= zbogj+u>auR;LtU1Ja{O%p!*q1OFhxi@JwW9Q93z}^3o(SyEEL`jr7Eb0hmwO3HYbH zP-#R#hIy%c*ncSw^bW`eG{4-Nk>0$0_1%+s*qM>eN~?60X?16$3x!`vPhDH@G3qzn z>0TD5P;ffsF3 Sequence[str]: + if exclude in decode_cache: + return decode_cache[exclude] + + cache: list[str] = [] + decode_cache[exclude] = cache + + for i in range(128): + ch = chr(i) + cache.append(ch) + + for i in range(len(exclude)): + ch_code = ord(exclude[i]) + cache[ch_code] = "%" + ("0" + hex(ch_code)[2:].upper())[-2:] + + return cache + + +# Decode percent-encoded string. +# +def decode(string: str, exclude: str = DECODE_DEFAULT_CHARS) -> str: + cache = get_decode_cache(exclude) + repl_func = functools.partial(repl_func_with_cache, cache=cache) + return re.sub(r"(%[a-f0-9]{2})+", repl_func, string, flags=re.IGNORECASE) + + +def repl_func_with_cache(match: re.Match, cache: Sequence[str]) -> str: + seq = match.group() + result = "" + + i = 0 + l = len(seq) # noqa: E741 + while i < l: + b1 = int(seq[i + 1 : i + 3], 16) + + if b1 < 0x80: + result += cache[b1] + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xE0) == 0xC0 and (i + 3 < l): + # 110xxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + + if (b2 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 2 + + i += 3 + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xF0) == 0xE0 and (i + 6 < l): + # 1110xxxx 10xxxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + b3 = int(seq[i + 7 : i + 9], 16) + + if (b2 & 0xC0) == 0x80 and (b3 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2, b3)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 3 + + i += 6 + i += 3 # emulate JS for loop statement3 + continue + + if (b1 & 0xF8) == 0xF0 and (i + 9 < l): + # 111110xx 10xxxxxx 10xxxxxx 10xxxxxx + b2 = int(seq[i + 4 : i + 6], 16) + b3 = int(seq[i + 7 : i + 9], 16) + b4 = int(seq[i + 10 : i + 12], 16) + + if (b2 & 0xC0) == 0x80 and (b3 & 0xC0) == 0x80 and (b4 & 0xC0) == 0x80: + all_bytes = bytes((b1, b2, b3, b4)) + try: + result += all_bytes.decode() + except UnicodeDecodeError: + result += "\ufffd" * 4 + + i += 9 + i += 3 # emulate JS for loop statement3 + continue + + result += "\ufffd" + i += 3 # emulate JS for loop statement3 + + return result diff --git a/.venv/lib/python3.12/site-packages/mdurl/_encode.py b/.venv/lib/python3.12/site-packages/mdurl/_encode.py new file mode 100644 index 0000000..bc2e5b9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_encode.py @@ -0,0 +1,85 @@ +from __future__ import annotations + +from collections.abc import Sequence +from string import ascii_letters, digits, hexdigits +from urllib.parse import quote as encode_uri_component + +ASCII_LETTERS_AND_DIGITS = ascii_letters + digits + +ENCODE_DEFAULT_CHARS = ";/?:@&=+$,-_.!~*'()#" +ENCODE_COMPONENT_CHARS = "-_.!~*'()" + +encode_cache: dict[str, list[str]] = {} + + +# Create a lookup array where anything but characters in `chars` string +# and alphanumeric chars is percent-encoded. +def get_encode_cache(exclude: str) -> Sequence[str]: + if exclude in encode_cache: + return encode_cache[exclude] + + cache: list[str] = [] + encode_cache[exclude] = cache + + for i in range(128): + ch = chr(i) + + if ch in ASCII_LETTERS_AND_DIGITS: + # always allow unencoded alphanumeric characters + cache.append(ch) + else: + cache.append("%" + ("0" + hex(i)[2:].upper())[-2:]) + + for i in range(len(exclude)): + cache[ord(exclude[i])] = exclude[i] + + return cache + + +# Encode unsafe characters with percent-encoding, skipping already +# encoded sequences. +# +# - string - string to encode +# - exclude - list of characters to ignore (in addition to a-zA-Z0-9) +# - keepEscaped - don't encode '%' in a correct escape sequence (default: true) +def encode( + string: str, exclude: str = ENCODE_DEFAULT_CHARS, *, keep_escaped: bool = True +) -> str: + result = "" + + cache = get_encode_cache(exclude) + + l = len(string) # noqa: E741 + i = 0 + while i < l: + code = ord(string[i]) + + # % + if keep_escaped and code == 0x25 and i + 2 < l: + if all(c in hexdigits for c in string[i + 1 : i + 3]): + result += string[i : i + 3] + i += 2 + i += 1 # JS for loop statement3 + continue + + if code < 128: + result += cache[code] + i += 1 # JS for loop statement3 + continue + + if code >= 0xD800 and code <= 0xDFFF: + if code >= 0xD800 and code <= 0xDBFF and i + 1 < l: + next_code = ord(string[i + 1]) + if next_code >= 0xDC00 and next_code <= 0xDFFF: + result += encode_uri_component(string[i] + string[i + 1]) + i += 1 + i += 1 # JS for loop statement3 + continue + result += "%EF%BF%BD" + i += 1 # JS for loop statement3 + continue + + result += encode_uri_component(string[i]) + i += 1 # JS for loop statement3 + + return result diff --git a/.venv/lib/python3.12/site-packages/mdurl/_format.py b/.venv/lib/python3.12/site-packages/mdurl/_format.py new file mode 100644 index 0000000..12524ca --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_format.py @@ -0,0 +1,27 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from mdurl._url import URL + + +def format(url: URL) -> str: # noqa: A001 + result = "" + + result += url.protocol or "" + result += "//" if url.slashes else "" + result += url.auth + "@" if url.auth else "" + + if url.hostname and ":" in url.hostname: + # ipv6 address + result += "[" + url.hostname + "]" + else: + result += url.hostname or "" + + result += ":" + url.port if url.port else "" + result += url.pathname or "" + result += url.search or "" + result += url.hash or "" + + return result diff --git a/.venv/lib/python3.12/site-packages/mdurl/_parse.py b/.venv/lib/python3.12/site-packages/mdurl/_parse.py new file mode 100644 index 0000000..ffeeac7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_parse.py @@ -0,0 +1,304 @@ +# Copyright Joyent, Inc. and other Node contributors. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to permit +# persons to whom the Software is furnished to do so, subject to the +# following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +# USE OR OTHER DEALINGS IN THE SOFTWARE. + + +# Changes from joyent/node: +# +# 1. No leading slash in paths, +# e.g. in `url.parse('http://foo?bar')` pathname is ``, not `/` +# +# 2. Backslashes are not replaced with slashes, +# so `http:\\example.org\` is treated like a relative path +# +# 3. Trailing colon is treated like a part of the path, +# i.e. in `http://example.org:foo` pathname is `:foo` +# +# 4. Nothing is URL-encoded in the resulting object, +# (in joyent/node some chars in auth and paths are encoded) +# +# 5. `url.parse()` does not have `parseQueryString` argument +# +# 6. Removed extraneous result properties: `host`, `path`, `query`, etc., +# which can be constructed using other parts of the url. + +from __future__ import annotations + +from collections import defaultdict +import re + +from mdurl._url import URL + +# Reference: RFC 3986, RFC 1808, RFC 2396 + +# define these here so at least they only have to be +# compiled once on the first module load. +PROTOCOL_PATTERN = re.compile(r"^([a-z0-9.+-]+:)", flags=re.IGNORECASE) +PORT_PATTERN = re.compile(r":[0-9]*$") + +# Special case for a simple path URL +SIMPLE_PATH_PATTERN = re.compile(r"^(//?(?!/)[^?\s]*)(\?[^\s]*)?$") + +# RFC 2396: characters reserved for delimiting URLs. +# We actually just auto-escape these. +DELIMS = ("<", ">", '"', "`", " ", "\r", "\n", "\t") + +# RFC 2396: characters not allowed for various reasons. +UNWISE = ("{", "}", "|", "\\", "^", "`") + DELIMS + +# Allowed by RFCs, but cause of XSS attacks. Always escape these. +AUTO_ESCAPE = ("'",) + UNWISE +# Characters that are never ever allowed in a hostname. +# Note that any invalid chars are also handled, but these +# are the ones that are *expected* to be seen, so we fast-path +# them. +NON_HOST_CHARS = ("%", "/", "?", ";", "#") + AUTO_ESCAPE +HOST_ENDING_CHARS = ("/", "?", "#") +HOSTNAME_MAX_LEN = 255 +HOSTNAME_PART_PATTERN = re.compile(r"^[+a-z0-9A-Z_-]{0,63}$") +HOSTNAME_PART_START = re.compile(r"^([+a-z0-9A-Z_-]{0,63})(.*)$") +# protocols that can allow "unsafe" and "unwise" chars. + +# protocols that never have a hostname. +HOSTLESS_PROTOCOL = defaultdict( + bool, + { + "javascript": True, + "javascript:": True, + }, +) +# protocols that always contain a // bit. +SLASHED_PROTOCOL = defaultdict( + bool, + { + "http": True, + "https": True, + "ftp": True, + "gopher": True, + "file": True, + "http:": True, + "https:": True, + "ftp:": True, + "gopher:": True, + "file:": True, + }, +) + + +class MutableURL: + def __init__(self) -> None: + self.protocol: str | None = None + self.slashes: bool = False + self.auth: str | None = None + self.port: str | None = None + self.hostname: str | None = None + self.hash: str | None = None + self.search: str | None = None + self.pathname: str | None = None + + def parse(self, url: str, slashes_denote_host: bool) -> "MutableURL": + lower_proto = "" + slashes = False + rest = url + + # trim before proceeding. + # This is to support parse stuff like " http://foo.com \n" + rest = rest.strip() + + if not slashes_denote_host and len(url.split("#")) == 1: + # Try fast path regexp + simple_path = SIMPLE_PATH_PATTERN.match(rest) + if simple_path: + self.pathname = simple_path.group(1) + if simple_path.group(2): + self.search = simple_path.group(2) + return self + + proto = "" + proto_match = PROTOCOL_PATTERN.match(rest) + if proto_match: + proto = proto_match.group() + lower_proto = proto.lower() + self.protocol = proto + rest = rest[len(proto) :] + + # figure out if it's got a host + # user@server is *always* interpreted as a hostname, and url + # resolution will treat //foo/bar as host=foo,path=bar because that's + # how the browser resolves relative URLs. + if slashes_denote_host or proto or re.search(r"^//[^@/]+@[^@/]+", rest): + slashes = rest.startswith("//") + if slashes and not (proto and HOSTLESS_PROTOCOL[proto]): + rest = rest[2:] + self.slashes = True + + if not HOSTLESS_PROTOCOL[proto] and ( + slashes or (proto and not SLASHED_PROTOCOL[proto]) + ): + + # there's a hostname. + # the first instance of /, ?, ;, or # ends the host. + # + # If there is an @ in the hostname, then non-host chars *are* allowed + # to the left of the last @ sign, unless some host-ending character + # comes *before* the @-sign. + # URLs are obnoxious. + # + # ex: + # http://a@b@c/ => user:a@b host:c + # http://a@b?@c => user:a host:c path:/?@c + + # v0.12 TODO(isaacs): This is not quite how Chrome does things. + # Review our test case against browsers more comprehensively. + + # find the first instance of any hostEndingChars + host_end = -1 + for i in range(len(HOST_ENDING_CHARS)): + hec = rest.find(HOST_ENDING_CHARS[i]) + if hec != -1 and (host_end == -1 or hec < host_end): + host_end = hec + + # at this point, either we have an explicit point where the + # auth portion cannot go past, or the last @ char is the decider. + if host_end == -1: + # atSign can be anywhere. + at_sign = rest.rfind("@") + else: + # atSign must be in auth portion. + # http://a@b/c@d => host:b auth:a path:/c@d + at_sign = rest.rfind("@", 0, host_end + 1) + + # Now we have a portion which is definitely the auth. + # Pull that off. + if at_sign != -1: + auth = rest[:at_sign] + rest = rest[at_sign + 1 :] + self.auth = auth + + # the host is the remaining to the left of the first non-host char + host_end = -1 + for i in range(len(NON_HOST_CHARS)): + hec = rest.find(NON_HOST_CHARS[i]) + if hec != -1 and (host_end == -1 or hec < host_end): + host_end = hec + # if we still have not hit it, then the entire thing is a host. + if host_end == -1: + host_end = len(rest) + + if host_end > 0 and rest[host_end - 1] == ":": + host_end -= 1 + host = rest[:host_end] + rest = rest[host_end:] + + # pull out port. + self.parse_host(host) + + # we've indicated that there is a hostname, + # so even if it's empty, it has to be present. + self.hostname = self.hostname or "" + + # if hostname begins with [ and ends with ] + # assume that it's an IPv6 address. + ipv6_hostname = self.hostname.startswith("[") and self.hostname.endswith( + "]" + ) + + # validate a little. + if not ipv6_hostname: + hostparts = self.hostname.split(".") + l = len(hostparts) # noqa: E741 + i = 0 + while i < l: + part = hostparts[i] + if not part: + i += 1 # emulate statement3 in JS for loop + continue + if not HOSTNAME_PART_PATTERN.search(part): + newpart = "" + k = len(part) + j = 0 + while j < k: + if ord(part[j]) > 127: + # we replace non-ASCII char with a temporary placeholder + # we need this to make sure size of hostname is not + # broken by replacing non-ASCII by nothing + newpart += "x" + else: + newpart += part[j] + j += 1 # emulate statement3 in JS for loop + + # we test again with ASCII char only + if not HOSTNAME_PART_PATTERN.search(newpart): + valid_parts = hostparts[:i] + not_host = hostparts[i + 1 :] + bit = HOSTNAME_PART_START.search(part) + if bit: + valid_parts.append(bit.group(1)) + not_host.insert(0, bit.group(2)) + if not_host: + rest = ".".join(not_host) + rest + self.hostname = ".".join(valid_parts) + break + i += 1 # emulate statement3 in JS for loop + + if len(self.hostname) > HOSTNAME_MAX_LEN: + self.hostname = "" + + # strip [ and ] from the hostname + # the host field still retains them, though + if ipv6_hostname: + self.hostname = self.hostname[1:-1] + + # chop off from the tail first. + hash = rest.find("#") # noqa: A001 + if hash != -1: + # got a fragment string. + self.hash = rest[hash:] + rest = rest[:hash] + qm = rest.find("?") + if qm != -1: + self.search = rest[qm:] + rest = rest[:qm] + if rest: + self.pathname = rest + if SLASHED_PROTOCOL[lower_proto] and self.hostname and not self.pathname: + self.pathname = "" + + return self + + def parse_host(self, host: str) -> None: + port_match = PORT_PATTERN.search(host) + if port_match: + port = port_match.group() + if port != ":": + self.port = port[1:] + host = host[: -len(port)] + if host: + self.hostname = host + + +def url_parse(url: URL | str, *, slashes_denote_host: bool = False) -> URL: + if isinstance(url, URL): + return url + u = MutableURL() + u.parse(url, slashes_denote_host) + return URL( + u.protocol, u.slashes, u.auth, u.port, u.hostname, u.hash, u.search, u.pathname + ) diff --git a/.venv/lib/python3.12/site-packages/mdurl/_url.py b/.venv/lib/python3.12/site-packages/mdurl/_url.py new file mode 100644 index 0000000..f866e7a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/_url.py @@ -0,0 +1,14 @@ +from __future__ import annotations + +from typing import NamedTuple + + +class URL(NamedTuple): + protocol: str | None + slashes: bool + auth: str | None + port: str | None + hostname: str | None + hash: str | None # noqa: A003 + search: str | None + pathname: str | None diff --git a/.venv/lib/python3.12/site-packages/mdurl/py.typed b/.venv/lib/python3.12/site-packages/mdurl/py.typed new file mode 100644 index 0000000..7632ecf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/mdurl/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561 diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/METADATA b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/METADATA new file mode 100644 index 0000000..c3f7d1d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/METADATA @@ -0,0 +1,111 @@ +Metadata-Version: 2.4 +Name: pip +Version: 25.3 +Summary: The PyPA recommended tool for installing Python packages. +Author-email: The pip developers +Requires-Python: >=3.9 +Description-Content-Type: text/x-rst +License-Expression: MIT +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +License-File: AUTHORS.txt +License-File: LICENSE.txt +License-File: src/pip/_vendor/cachecontrol/LICENSE.txt +License-File: src/pip/_vendor/certifi/LICENSE +License-File: src/pip/_vendor/dependency_groups/LICENSE.txt +License-File: src/pip/_vendor/distlib/LICENSE.txt +License-File: src/pip/_vendor/distro/LICENSE +License-File: src/pip/_vendor/idna/LICENSE.md +License-File: src/pip/_vendor/msgpack/COPYING +License-File: src/pip/_vendor/packaging/LICENSE +License-File: src/pip/_vendor/packaging/LICENSE.APACHE +License-File: src/pip/_vendor/packaging/LICENSE.BSD +License-File: src/pip/_vendor/pkg_resources/LICENSE +License-File: src/pip/_vendor/platformdirs/LICENSE +License-File: src/pip/_vendor/pygments/LICENSE +License-File: src/pip/_vendor/pyproject_hooks/LICENSE +License-File: src/pip/_vendor/requests/LICENSE +License-File: src/pip/_vendor/resolvelib/LICENSE +License-File: src/pip/_vendor/rich/LICENSE +License-File: src/pip/_vendor/tomli/LICENSE +License-File: src/pip/_vendor/tomli_w/LICENSE +License-File: src/pip/_vendor/truststore/LICENSE +License-File: src/pip/_vendor/urllib3/LICENSE.txt +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Homepage, https://pip.pypa.io/ +Project-URL: Source, https://github.com/pypa/pip + +pip - The Python Package Installer +================================== + +.. |pypi-version| image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. |docs-badge| image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +|pypi-version| |python-versions| |docs-badge| + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md + diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/RECORD b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/RECORD new file mode 100644 index 0000000..e9206eb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/RECORD @@ -0,0 +1,872 @@ +../../../bin/pip,sha256=E8m1fBRt44GWAJmaCobNdopO34Va56Ig51qFdZjz0m0,262 +../../../bin/pip3,sha256=E8m1fBRt44GWAJmaCobNdopO34Va56Ig51qFdZjz0m0,262 +../../../bin/pip3.12,sha256=E8m1fBRt44GWAJmaCobNdopO34Va56Ig51qFdZjz0m0,262 +pip-25.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-25.3.dist-info/METADATA,sha256=Khugcl59I2--LVxQpP_5yeP-NMpJTyzr3lxFw3kTedM,4672 +pip-25.3.dist-info/RECORD,, +pip-25.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-25.3.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82 +pip-25.3.dist-info/entry_points.txt,sha256=Vhf8s0IYgX37mtd4vGL73BPcxdKnqeCFPzB5-d30x8o,84 +pip-25.3.dist-info/licenses/AUTHORS.txt,sha256=H32ZhgFn-q5b3BAcDYqsSw0NN7RRVYHpWiNVNHQzzBs,11503 +pip-25.3.dist-info/licenses/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-25.3.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt,sha256=hu7uh74qQ_P_H1ZJb0UfaSQ5JvAl_tuwM2ZsMExMFhs,558 +pip-25.3.dist-info/licenses/src/pip/_vendor/certifi/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989 +pip-25.3.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt,sha256=GrNuPipLqGMWJThPh-ngkdsfrtA0xbIzJbMjmr8sxSU,1099 +pip-25.3.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt,sha256=gI4QyKarjesUn_mz-xn0R6gICUYG1xKpylf-rTVSWZ0,14531 +pip-25.3.dist-info/licenses/src/pip/_vendor/distro/LICENSE,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325 +pip-25.3.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md,sha256=pZ8LDvNjWHQQmkRhykT_enDVBpboFHZ7-vch1Mmw2w8,1541 +pip-25.3.dist-info/licenses/src/pip/_vendor/msgpack/COPYING,sha256=SS3tuoXaWHL3jmCRvNH-pHTWYNNay03ulkuKqz8AdCc,614 +pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE,sha256=ytHvW9NA1z4HS6YU0m996spceUDD2MNIUuZcSQlobEg,197 +pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174 +pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD,sha256=tw5-m3QvHMb5SLNMFqo5_-zpQZY2S8iP8NIYDwAo-sU,1344 +pip-25.3.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE,sha256=htoPAa6uRjSKPD1GUZXcHOzN55956HdppkuNoEsqR0E,1023 +pip-25.3.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE,sha256=KeD9YukphQ6G6yjD_czwzv30-pSHkBHP-z0NS-1tTbY,1089 +pip-25.3.dist-info/licenses/src/pip/_vendor/pygments/LICENSE,sha256=qdZvHVJt8C4p3Oc0NtNOVuhjL0bCdbvf_HBWnogvnxc,1331 +pip-25.3.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE,sha256=GyKwSbUmfW38I6Z79KhNjsBLn9-xpR02DkK0NCyLQVQ,1081 +pip-25.3.dist-info/licenses/src/pip/_vendor/requests/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142 +pip-25.3.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE,sha256=84j9OMrRMRLB3A9mm76A5_hFQe26-3LzAw0sp2QsPJ0,751 +pip-25.3.dist-info/licenses/src/pip/_vendor/rich/LICENSE,sha256=3u18F6QxgVgZCj6iOcyHmlpQJxzruYrnAl9I--WNyhU,1056 +pip-25.3.dist-info/licenses/src/pip/_vendor/tomli/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072 +pip-25.3.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072 +pip-25.3.dist-info/licenses/src/pip/_vendor/truststore/LICENSE,sha256=M757fo-k_Rmxdg4ajtimaL2rhSyRtpLdQUJLy3Jan8o,1086 +pip-25.3.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt,sha256=w3vxhuJ8-dvpYZ5V7f486nswCRzrPaY8fay-Dm13kHs,1115 +pip/__init__.py,sha256=vSLqqJJ91-qXOz5tXjaPnwj5TDBz-Ujn8I7ymNmdvtA,353 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=JOoEZTwrtv7jRaXBkgSQKAE04yNyfFmGHxqpHiGHvL0,1450 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=S7i9Dn9aSZS0MG-2Wrve3dV9TImPzvQn5jjhp9t_uf0,511 +pip/_internal/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/__pycache__/build_env.cpython-312.pyc,, +pip/_internal/__pycache__/cache.cpython-312.pyc,, +pip/_internal/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/__pycache__/exceptions.cpython-312.pyc,, +pip/_internal/__pycache__/main.cpython-312.pyc,, +pip/_internal/__pycache__/pyproject.cpython-312.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-312.pyc,, +pip/_internal/build_env.py,sha256=oMRORdlWoHC591opA21PixmMykfhOfHw7P1MM7JgSrQ,14201 +pip/_internal/cache.py,sha256=nMh48Yv3yu1HS1yCdscouu6B6B5zYBWdV6bhqs7gL-E,10345 +pip/_internal/cli/__init__.py,sha256=Iqg_tKA771XuMO1P4t_sDHnSKPzkUb9D0DqunAmw_ko,131 +pip/_internal/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-312.pyc,, +pip/_internal/cli/__pycache__/index_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-312.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc,, +pip/_internal/cli/autocompletion.py,sha256=ZG2cM03nlcNrs-WG_SFTW46isx9s2Go5lUD_8-iv70o,7193 +pip/_internal/cli/base_command.py,sha256=1Nx919JRFlgURLis9XYJwtbyEEjRJa_NdHwM6iBkZvY,8716 +pip/_internal/cli/cmdoptions.py,sha256=2vOdyIS6NjzycGT5idxKxxOsfw6TgR43CRe2lStYYL0,31025 +pip/_internal/cli/command_context.py,sha256=kmu3EWZbfBega1oDamnGJTA_UaejhIQNuMj2CVmMXu0,817 +pip/_internal/cli/index_command.py,sha256=AHk6eSqboaxTXbG3v9mBrVd0dCK1MtW4w3PVudnj0WE,5717 +pip/_internal/cli/main.py,sha256=K9PtpRdg6uBrVKk8S2VZ14fAN0kP-cnA1o-FtJCN_OQ,2815 +pip/_internal/cli/main_parser.py,sha256=UugPD-hF1WtNQdow_WWduDLUH1DvElpc7EeUWjUkcNo,4329 +pip/_internal/cli/parser.py,sha256=B9PpyPy6iY9LMvkKJygJ-3PwQLG6DoirWa-Mhv3nVlE,10916 +pip/_internal/cli/progress_bars.py,sha256=nRTWNof-FjHfvirvECXIh7T7eAynTUVPTyHENfpbWiU,4668 +pip/_internal/cli/req_command.py,sha256=HNANn7-hDIIFiRTUbudj5oRfPWC9Kf2ukG3feYANx94,13799 +pip/_internal/cli/spinners.py,sha256=EJzZIZNyUtJljp3-WjcsyIrqxW-HUsfWzhuW84n_Tqw,7362 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=aNeCbQurGWihfhQq7BqaLXHqWDQ0i3I04OS7kxK6plQ,4026 +pip/_internal/commands/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-312.pyc,, +pip/_internal/commands/__pycache__/check.cpython-312.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-312.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-312.pyc,, +pip/_internal/commands/__pycache__/download.cpython-312.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-312.pyc,, +pip/_internal/commands/__pycache__/help.cpython-312.pyc,, +pip/_internal/commands/__pycache__/index.cpython-312.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-312.pyc,, +pip/_internal/commands/__pycache__/install.cpython-312.pyc,, +pip/_internal/commands/__pycache__/list.cpython-312.pyc,, +pip/_internal/commands/__pycache__/lock.cpython-312.pyc,, +pip/_internal/commands/__pycache__/search.cpython-312.pyc,, +pip/_internal/commands/__pycache__/show.cpython-312.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/commands/cache.py,sha256=OrrLS6EJEha_55yPa9fTaOaonw-VpH4_lVhjxuOTChQ,8230 +pip/_internal/commands/check.py,sha256=hVFBQezQ3zj4EydoWbFQj_afPUppMt7r9JPAlY22U6Y,2244 +pip/_internal/commands/completion.py,sha256=MDwhTOBjlM4WEbOhgbhrWnlDm710i4FMjop3RBXXXCc,4530 +pip/_internal/commands/configuration.py,sha256=6gNOGrVWnOLU15zUnAiNuOMhf76RRIZvCdVD0degPRk,10105 +pip/_internal/commands/debug.py,sha256=_8IqM8Fx1_lY2STu_qspr63tufF7zyFJCyYAXtxz0N4,6805 +pip/_internal/commands/download.py,sha256=pvB7I36z6soLPfv4IMwNRHn1WvY8I7zzM2h5se3nV6s,5075 +pip/_internal/commands/freeze.py,sha256=fxoW8AAc-bAqB_fXdNq2VnZ3JfWkFMg-bR6LcdDVO7A,3099 +pip/_internal/commands/hash.py,sha256=GO9pRN3wXC2kQaovK57TaLYBMc3IltOH92O6QEw6YE0,1679 +pip/_internal/commands/help.py,sha256=Bz3LcjNQXkz4Cu__pL4CZ86o4-HNLZj1NZWdlJhjuu0,1108 +pip/_internal/commands/index.py,sha256=8GMBVI5NvhRRHBSUq27YxDIE02DpvdJ_6qiBFgGd1co,5243 +pip/_internal/commands/inspect.py,sha256=ogm4UT7LRo8bIQcWUS1IiA25QdD4VHLa7JaPAodDttM,3177 +pip/_internal/commands/install.py,sha256=oUlST7YwoeuAE6IzWokkZk8IccSj39HT0ypQBOPj2fM,30472 +pip/_internal/commands/list.py,sha256=I4ZH604E5gpcROxEXA7eyaNEFhXx3VFVqvpscz_Ps_A,13514 +pip/_internal/commands/lock.py,sha256=5m0PskQFMuP1cYQYGfSiBLa81a8MDflUTC-iUsOU1u0,5797 +pip/_internal/commands/search.py,sha256=zbMsX_YASj6kXA6XIBgTDv0bGK51xG-CV3IynZJcE-c,5782 +pip/_internal/commands/show.py,sha256=oLVJIfKWmDKm0SsQGEi3pozNiqrXjTras_fbBSYKpBA,8066 +pip/_internal/commands/uninstall.py,sha256=CsOihqvb6ZA6O67L70oXeoLHeOfNzMM88H9g-9aocgw,3868 +pip/_internal/commands/wheel.py,sha256=-kIyzy98nPejpPic-CpJk37PSFGFVhm5lJ1UO9Zpu2s,6013 +pip/_internal/configuration.py,sha256=WxwwSwY_Bm6QzDgf32BsujEyO8dgRedegCpgbUfDvM8,14568 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/distributions/base.py,sha256=l-OTCAIs25lsapejA6IYpPZxSM5-BET4sdZDkql8jiY,1830 +pip/_internal/distributions/installed.py,sha256=kgIEE_1NzjZxLBSC-v5s64uOFZlVEt3aPrjTtL6x2XY,929 +pip/_internal/distributions/sdist.py,sha256=RYwQIbuxpKy6OjlBZCAefxpMDaoocUQ4dFtheGsiTOQ,6627 +pip/_internal/distributions/wheel.py,sha256=_HbG0OehF8dwj4UX-xV__tXLwgPus9OjMEf2NTRqBbE,1364 +pip/_internal/exceptions.py,sha256=lqnWPeAx3sbetkBbckbEtQ1UHhbWfX68HPCeqILJffU,29592 +pip/_internal/index/__init__.py,sha256=tzwMH_fhQeubwMqHdSivasg1cRgTSbNg2CiMVnzMmyU,29 +pip/_internal/index/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/index/__pycache__/collector.cpython-312.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-312.pyc,, +pip/_internal/index/__pycache__/sources.cpython-312.pyc,, +pip/_internal/index/collector.py,sha256=PCB3thVWRiSBowGtpv1elIPFc-GvEqhZiNgZD7b0vBc,16185 +pip/_internal/index/package_finder.py,sha256=xjsftTB2JIlsCdxorDInoecJ6afs1O0lsqUg4ExcXI0,38835 +pip/_internal/index/sources.py,sha256=nXJkOjhLy-O2FsrKU9RIqCOqgY2PsoKWybtZjjRgqU0,8639 +pip/_internal/locations/__init__.py,sha256=2SADX0Gr9BIpx19AO7Feq89nOmBQGEbl1IWjBpnaE9E,14185 +pip/_internal/locations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc,, +pip/_internal/locations/__pycache__/base.cpython-312.pyc,, +pip/_internal/locations/_distutils.py,sha256=jpFj4V00rD9IR3vA9TqrGkwcdNVFc58LsChZavge9JY,5975 +pip/_internal/locations/_sysconfig.py,sha256=NhcEi1_25w9cTTcH4RyOjD4UHW6Ijks0uKy1PL1_j_8,7716 +pip/_internal/locations/base.py,sha256=AImjYJWxOtDkc0KKc6Y4Gz677cg91caMA4L94B9FZEg,2550 +pip/_internal/main.py,sha256=1cHqjsfFCrMFf3B5twzocxTJUdHMLoXUpy5lJoFqUi8,338 +pip/_internal/metadata/__init__.py,sha256=vp-JAxiWg_-l5F8AT0Jcey72uUnh8CDwwol9-KktHZ8,5824 +pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc,, +pip/_internal/metadata/_json.py,sha256=hNvnMHOXLAyNlzirWhPL9Nx2CvCqa1iRma6Osq1YfV8,2711 +pip/_internal/metadata/base.py,sha256=BGuMenlcQT8i7j9iclrfdC3vSwgvhr8gjn955cCy16s,25420 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=sneVh4_6WxQZK4ljdl3ylVuP-q0ttSqbgl9mWt0HnOg,2804 +pip/_internal/metadata/importlib/_dists.py,sha256=znZD7MN4RC73-87KXAn6tKZv9lAQRI0AxxK2bubDvPw,8420 +pip/_internal/metadata/importlib/_envs.py,sha256=H3qVLXVh4LWvrPvu_ekXf3dfbtwnlhNJQP2pxXpccfU,5333 +pip/_internal/metadata/pkg_resources.py,sha256=NO76ZrfR2-LKJTyaXrmQoGhmJMArALvacrlZHViSDT8,10544 +pip/_internal/models/__init__.py,sha256=AjmCEBxX_MH9f_jVjIGNCFJKYCYeSEe18yyvNx4uRKQ,62 +pip/_internal/models/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-312.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-312.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-312.pyc,, +pip/_internal/models/__pycache__/index.cpython-312.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-312.pyc,, +pip/_internal/models/__pycache__/link.cpython-312.pyc,, +pip/_internal/models/__pycache__/pylock.cpython-312.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-312.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-312.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-312.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/models/candidate.py,sha256=zzgFRuw_kWPjKpGw7LC0ZUMD2CQ2EberUIYs8izjdCA,753 +pip/_internal/models/direct_url.py,sha256=4NMWacu_QzPPWREC1te7v6Wfv-2HkI4tvSJF-CBgLh4,6555 +pip/_internal/models/format_control.py,sha256=PwemYG1L27BM0f1KP61rm24wShENFyxqlD1TWu34alc,2471 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=cqfWJ93ThCxjcacqSWryOCD2XtIn1CZrgzZxAv5FQZ0,2839 +pip/_internal/models/link.py,sha256=DRBzBDJreUy1laeDOrG2aIyZDW_Lhr8zJjvYTi8mGYg,21793 +pip/_internal/models/pylock.py,sha256=Vmaa71gOSV0ZYzRgWiIm4KwVbClaahMcuvKCkP_ZznA,6211 +pip/_internal/models/scheme.py,sha256=PakmHJM3e8OOWSZFtfz1Az7f1meONJnkGuQxFlt3wBE,575 +pip/_internal/models/search_scope.py,sha256=1hxU2IVsAaLZVjp0CbzJbYaYzCxv72_Qbg3JL0qhXo0,4507 +pip/_internal/models/selection_prefs.py,sha256=lgYyo4W8lb22wsYx2ElBBB0cvSNlBVgucwBzL43dfzE,2016 +pip/_internal/models/target_python.py,sha256=I0eFS-eia3kwhrOvgsphFZtNAB2IwXZ9Sr9fp6IjBP4,4243 +pip/_internal/models/wheel.py,sha256=1SdfDvN7ALTsbyZ9EOsNy1GPirP1n6EjHyzPrZyLSh8,2920 +pip/_internal/network/__init__.py,sha256=FMy06P__y6jMjUc8z3ZcQdKF-pmZ2zM14_vBeHPGhUI,49 +pip/_internal/network/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/network/__pycache__/auth.cpython-312.pyc,, +pip/_internal/network/__pycache__/cache.cpython-312.pyc,, +pip/_internal/network/__pycache__/download.cpython-312.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc,, +pip/_internal/network/__pycache__/session.cpython-312.pyc,, +pip/_internal/network/__pycache__/utils.cpython-312.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc,, +pip/_internal/network/auth.py,sha256=uAwRGAYnVtgNSZm4HMC3BMACkgA7ku4m8wupiX6LpK8,20681 +pip/_internal/network/cache.py,sha256=kmRXKQrG9E26xQRj211LHeEGpDg_SlYU9Dn1fJ-AMeI,4862 +pip/_internal/network/download.py,sha256=HgsFvTkPDdgg0zUehose_J-542-9R0FpyipRw5BhxAM,12682 +pip/_internal/network/lazy_wheel.py,sha256=y9gVksdJCSjnLfYzs_m3DYUAtl3hc_k-xFPDBd9DgOs,7646 +pip/_internal/network/session.py,sha256=eE-VUIJGU9YeeaVy7tVAvMRWigMsyuAMpxkjlbptbjo,19188 +pip/_internal/network/utils.py,sha256=ACsXd1msqNCidHVXsu7LHUSr8NgaypcOKQ4KG-Z_wJM,4091 +pip/_internal/network/xmlrpc.py,sha256=_-Rnk3vOff8uF9hAGmT6SLALflY1gMBcbGwS12fb_Y4,1830 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/__pycache__/check.cpython-312.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-312.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=W3b5cmkMWPaE6QIwfzsTayJo7-OlxFHWDxfPuax1KcE,4771 +pip/_internal/operations/build/metadata.py,sha256=INHaeiRfOiLYCXApfDNRo9Cw2xI4VwTc0KItvfdfOjk,1421 +pip/_internal/operations/build/metadata_editable.py,sha256=oWudMsnjy4loO_Jy7g4N9nxsnaEX_iDlVRgCy7pu1rs,1509 +pip/_internal/operations/build/wheel.py,sha256=3bP-nNiJ4S8JvMaBnyessXQUBhxTqt1GBx6DQ1iPJDY,1136 +pip/_internal/operations/build/wheel_editable.py,sha256=q3kfElclM6FutVbFwE87JOTpVWt5ixDf3_UkHAIVfz4,1478 +pip/_internal/operations/check.py,sha256=yC2XWth6iehGGE_fj7XRJLjVKBsTIG3ZoWRkFi3rOwc,5894 +pip/_internal/operations/freeze.py,sha256=PDdY-y_ZtZZJLAKcaWPIGRKAGW7DXR48f0aMRU0j7BA,9854 +pip/_internal/operations/install/__init__.py,sha256=ak-UETcQPKlFZaWoYKWu5QVXbpFBvg0sXc3i0O4vSYY,50 +pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/install/wheel.py,sha256=8aepxxAFmnzZFtcMCv-1I4T_maEkQd4hXZztYWE4yR0,27956 +pip/_internal/operations/prepare.py,sha256=PajSUvp7jMWSEC7sLPaBdKWv7sioYVdoB0JEWEorLsw,28914 +pip/_internal/pyproject.py,sha256=J-sTWqC-XfsKQgz9m1bypMWZPHItsSHzIN_NWeIRmhM,4555 +pip/_internal/req/__init__.py,sha256=WcY9z7D3rlIKX1QY8_tRnAsS_poebiGGdtQ7EJ5JQQo,3041 +pip/_internal/req/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc,, +pip/_internal/req/constructors.py,sha256=Z4C41AHuF7YZFzsqTQXFEgXmUdACeUeakf8hLZEQr-E,18581 +pip/_internal/req/req_dependency_group.py,sha256=0yEQCUaO5Bza66Y3D5o9JRf0qII5QgCRugn1x5aRivA,2618 +pip/_internal/req/req_file.py,sha256=syUNcsC-AlOFofoBwxUI1Vf6FCReyBvZ_AHyvpuGWas,20130 +pip/_internal/req/req_install.py,sha256=vv5cbs3P5gf43e_1v72gwSQ2N_D_qpsfuXOyerMhDuI,31273 +pip/_internal/req/req_set.py,sha256=awkqIXnYA4Prmsj0Qb3zhqdbYUmXd-1o0P-KZ3mvRQs,2828 +pip/_internal/req/req_uninstall.py,sha256=dCmOHt-9RaJBq921L4tMH3PmIBDetGplnbjRKXmGt00,24099 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/base.py,sha256=RIsqSP79olPdOgtPKW-oOQ364ICVopehA6RfGkRfe2s,577 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=bwUqE66etz2bcPabqxed18-iyqqb-kx3Er2aT6GeUJY,24060 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=_AoP0ZWlaSct8CRDn2ol3CbNn4zDtnh_0zQGjXASDKI,5047 +pip/_internal/resolution/resolvelib/candidates.py,sha256=50AN7BfB-pCfEmbKNlFZSXtdC0C8ms1waJrF2arknQE,20454 +pip/_internal/resolution/resolvelib/factory.py,sha256=6rZjvJdcLvsCqNjPfHNAiGVKUzju31Z3OFlhmAjU7As,33628 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=8bZYDCZLXSdLHy_s1o5f4r15HmKvqFUhzBUQOF21Lr4,6018 +pip/_internal/resolution/resolvelib/provider.py,sha256=tbVPfFv4Vg780yZ2_XGoGFP5LVo0U2bFnZov3jpSAIk,11441 +pip/_internal/resolution/resolvelib/reporter.py,sha256=faSgjqme0k_uzv1fvM5T0ZatPQ2eEktNvKBqfvXeGjc,3909 +pip/_internal/resolution/resolvelib/requirements.py,sha256=z0gXmWfo03ynOnhF8kpj5SycgroerDhQV0VWzmAKAfg,8076 +pip/_internal/resolution/resolvelib/resolver.py,sha256=wQ94Hkep-7kWEHAc-NbMJhmzeEzgEAtxeBxyKVzZoeo,13437 +pip/_internal/self_outdated_check.py,sha256=Ghi_sifu9uf9QNSLto1reWU7bU-aj6i_dxpyfK1ih-k,8471 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-312.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-312.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/retry.cpython-312.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-312.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=M15uUPIh5NpP1tdUGBxRau6q1ZAEtI8-XyLEETscFfE,3350 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=LrzDPZMKVh0rubtCx9vu3XlZbLCSug6VSj4Qsvt66BA,1681 +pip/_internal/utils/compat.py,sha256=C9LHXJAKkwAH8Hn3nPkz9EYK3rqPBeO_IXkOG2zzsdQ,2514 +pip/_internal/utils/compatibility_tags.py,sha256=DiNSLqpuruXUamGQwOJ2WZByDGLTGaXi9O-Xf8fOi34,6630 +pip/_internal/utils/datetime.py,sha256=Gt29Ml4ToPSM88j54iu43WKtrU9A-moP4QmMiiqzedU,241 +pip/_internal/utils/deprecation.py,sha256=HVhvyO5qiRFcG88PhZlp_87qdKQNwPTUIIHWtsTR2yI,3696 +pip/_internal/utils/direct_url_helpers.py,sha256=ttKv4GMUqlRwPPog9_CUopy6SDgoxVILzeBJzgfn2tg,3200 +pip/_internal/utils/egg_link.py,sha256=YWfsrbmfcrfWgqQYy6OuIjsyb9IfL1q_2v4zsms1WjI,2459 +pip/_internal/utils/entrypoints.py,sha256=uPjAyShKObdotjQjJUzprQ6r3xQvDIZwUYfHHqZ7Dok,3324 +pip/_internal/utils/filesystem.py,sha256=csVIpuOQnlOnApQOflj_AQAOSiYm_DUr3VZhv7zhtUM,5497 +pip/_internal/utils/filetypes.py,sha256=sEMa38qaqjvx1Zid3OCAUja31BOBU-USuSMPBvU3yjo,689 +pip/_internal/utils/glibc.py,sha256=sEh8RJJLYSdRvTqAO4THVPPA-YSDVLD4SI9So-bxX1U,3726 +pip/_internal/utils/hashes.py,sha256=d32UI1en8nyqZzdZQvxUVdfeBoe4ADWx7HtrIM4-XQ4,4998 +pip/_internal/utils/logging.py,sha256=RtRe7Vp0COC4UBewYdfKicXjCTmHXpDZHdReTzJvB78,12108 +pip/_internal/utils/misc.py,sha256=1jEpqjfqYmQ6K3D4_O8xXSPn8aEfH2uMOlNM7KPvSrg,23374 +pip/_internal/utils/packaging.py,sha256=s5tpUmFumwV0H9JSTzryrIY4JwQM8paGt7Sm7eNwt2Y,1601 +pip/_internal/utils/retry.py,sha256=83wReEB2rcntMZ5VLd7ascaYSjn_kLdlQCqxILxWkPM,1461 +pip/_internal/utils/subprocess.py,sha256=r4-Ba_Yc3uZXQpi0K4pZFsCT_QqdSvtF3XJ-204QWaA,8983 +pip/_internal/utils/temp_dir.py,sha256=D9c8D7WOProOO8GGDqpBeVSj10NGFmunG0o2TodjjIU,9307 +pip/_internal/utils/unpacking.py,sha256=ab1KcniWQR-K8YyyCL0b_JiPUVh7vOPmLQK5YTGNaLo,12974 +pip/_internal/utils/urls.py,sha256=aF_eg9ul5d8bMCxfSSSxQcfs-OpJdbStYqZHoy2K1RE,1601 +pip/_internal/utils/virtualenv.py,sha256=mX-UPyw1MPxhwUxKhbqWWX70J6PHXAJjVVrRnG0h9mc,3455 +pip/_internal/utils/wheel.py,sha256=YdRuj6MicG-Q9Mg03FbUv1WTLam6Lc7AgijY4voVyis,4468 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc,, +pip/_internal/vcs/bazaar.py,sha256=3W1eHjkYx2vc6boeb2NBh4I_rlGAXM-vrzfNhLm1Rxg,3734 +pip/_internal/vcs/git.py,sha256=TTeqDuzS-_BFSNuUStVWmE2nGDpKuvUhBBJk_CCQXV0,19144 +pip/_internal/vcs/mercurial.py,sha256=w1ZJWLKqNP1onEjkfjlwBVnMqPZNSIER8ayjQcnTq4w,5575 +pip/_internal/vcs/subversion.py,sha256=uUgdPvxmvEB8Qwtjr0Hc0XgFjbiNi5cbvI4vARLOJXo,11787 +pip/_internal/vcs/versioncontrol.py,sha256=d-v1mcLxofg2FaIqBrV-e-ZcjOgQhS0oxXpki1v1yXs,22502 +pip/_internal/wheel_builder.py,sha256=yvEULStZtty9Kplp89tDis3hGdyKQ-2BUbFLmJ_5ink,9010 +pip/_vendor/README.rst,sha256=pKKBwCWhu3M3qQ9dDnsmxb3KdsRr-nWmMq2srbH_Bi0,9394 +pip/_vendor/__init__.py,sha256=WzusPTGWIMeQQWSVJ0h2rafGkVTa9WKJ2HT-2-EoZrU,4907 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/LICENSE.txt,sha256=hu7uh74qQ_P_H1ZJb0UfaSQ5JvAl_tuwM2ZsMExMFhs,558 +pip/_vendor/cachecontrol/__init__.py,sha256=BF2n5OeQz1QW2xSey2LxfNCtwbjnTadXdIH2toqJecg,677 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=8y6rTPXOzVHmDKCW5CR9sivLVuDv-cpdGcZYdRWNaPw,6599 +pip/_vendor/cachecontrol/cache.py,sha256=OXwv7Fn2AwnKNiahJHnjtvaKLndvVLv_-zO-ltlV9qI,1953 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=d8upFmy_zwaCmlbWEVBlLXFddt8Zw8c5SFpxeOZsdfw,4117 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=cx0Hl8xLZgUuXuy78Gih9AYjCtqurmYjVJxyA4yWt7w,19101 +pip/_vendor/cachecontrol/filewrapper.py,sha256=2ktXNPE0KqnyzF24aOsKCA58HQq1xeC6l2g6_zwjghc,4291 +pip/_vendor/cachecontrol/heuristics.py,sha256=gqMXU8w0gQuEQiSdu3Yg-0vd9kW7nrWKbLca75rheGE,4881 +pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/cachecontrol/serialize.py,sha256=HQd2IllQ05HzPkVLMXTF2uX5mjEQjDBkxCqUJUODpZk,5163 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989 +pip/_vendor/certifi/__init__.py,sha256=jWkaYHMk4oIPSSBEK5bLMbO_qrkyNm_cRFx-D16-3Ks,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-312.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=IIn8WiWDZAH67pn3IkYLAbOTmZdGoPuBeUNmbW7MBFg,291366 +pip/_vendor/certifi/core.py,sha256=gu_ECVI1m3Rq0ytpsNE61hgQGcKaOAt9Rs9G8KsTCOI,3442 +pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/dependency_groups/LICENSE.txt,sha256=GrNuPipLqGMWJThPh-ngkdsfrtA0xbIzJbMjmr8sxSU,1099 +pip/_vendor/dependency_groups/__init__.py,sha256=C3OFu0NGwDzQ4LOmmSOFPsRSvkbBn-mdd4j_5YqJw-s,250 +pip/_vendor/dependency_groups/__main__.py,sha256=UNTM7P5mfVtT7wDi9kOTXWgV3fu3e8bTrt1Qp1jvjKo,1709 +pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc,, +pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc,, +pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc,, +pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc,, +pip/_vendor/dependency_groups/_implementation.py,sha256=Gqb2DlQELRakeHlKf6QtQSW0M-bcEomxHw4JsvID1ls,8041 +pip/_vendor/dependency_groups/_lint_dependency_groups.py,sha256=yp-DDqKXtbkDTNa0ifa-FmOA8ra24lPZEXftW-R5AuI,1710 +pip/_vendor/dependency_groups/_pip_wrapper.py,sha256=nuVW_w_ntVxpE26ELEvngMY0N04sFLsijXRyZZROFG8,1865 +pip/_vendor/dependency_groups/_toml_compat.py,sha256=BHnXnFacm3DeolsA35GjI6qkDApvua-1F20kv3BfZWE,285 +pip/_vendor/dependency_groups/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/distlib/LICENSE.txt,sha256=gI4QyKarjesUn_mz-xn0R6gICUYG1xKpylf-rTVSWZ0,14531 +pip/_vendor/distlib/__init__.py,sha256=Deo3uo98aUyIfdKJNqofeSEFWwDzrV2QeGLXLsgq0Ag,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-312.pyc,, +pip/_vendor/distlib/compat.py,sha256=2jRSjRI4o-vlXeTK2BCGIUhkc6e9ZGhSsacRM5oseTw,41467 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=Qvp76E9Jc3IgyYubnpqI9fS7eseGOe4FjpeVKqKt9Iw,18612 +pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792 +pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784 +pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032 +pip/_vendor/distlib/util.py,sha256=vMPGvsS4j9hF6Y9k3Tyom1aaHLb0rFmZAEyzeAdel9w,66682 +pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648 +pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448 +pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888 +pip/_vendor/distro/LICENSE,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-312.pyc,, +pip/_vendor/distro/distro.py,sha256=XqbefacAhDT4zr_trnbA15eY8vdK4GTghgmvUGrEM_4,49430 +pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/LICENSE.md,sha256=pZ8LDvNjWHQQmkRhykT_enDVBpboFHZ7-vch1Mmw2w8,1541 +pip/_vendor/idna/__init__.py,sha256=MPqNDLZbXqGaNdXxAFhiqFPKEQXju2jNQhCey6-5eJM,868 +pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc,, +pip/_vendor/idna/codec.py,sha256=PEew3ItwzjW4hymbasnty2N2OXvNcgHB-JjrBuxHPYY,3422 +pip/_vendor/idna/compat.py,sha256=RzLy6QQCdl9784aFhb2EX9EKGCJjg0P3PilGdeXXcx8,316 +pip/_vendor/idna/core.py,sha256=YJYyAMnwiQEPjVC4-Fqu_p4CJ6yKKuDGmppBNQNQpFs,13239 +pip/_vendor/idna/idnadata.py,sha256=W30GcIGvtOWYwAjZj4ZjuouUutC6ffgNuyjJy7fZ-lo,78306 +pip/_vendor/idna/intranges.py,sha256=amUtkdhYcQG8Zr-CoMM_kVRacxkivC1WgxN1b63KKdU,1898 +pip/_vendor/idna/package_data.py,sha256=q59S3OXsc5VI8j6vSD0sGBMyk6zZ4vWFREE88yCJYKs,21 +pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/uts46data.py,sha256=rt90K9J40gUSwppDPCrhjgi5AA6pWM65dEGRSf6rIhM,239289 +pip/_vendor/msgpack/COPYING,sha256=SS3tuoXaWHL3jmCRvNH-pHTWYNNay03ulkuKqz8AdCc,614 +pip/_vendor/msgpack/__init__.py,sha256=RA8gcqK17YpkxBnNwXJVa1oa2LygWDgfF1nA1NPw3mo,1109 +pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=kteJv03n9tYzd5oo3xYopVTo4vRaAxonBQQJhXohZZo,5726 +pip/_vendor/msgpack/fallback.py,sha256=0g1Pzp0vtmBEmJ5w9F3s_-JMVURP8RS4G1cc5TRaAsI,32390 +pip/_vendor/packaging/LICENSE,sha256=ytHvW9NA1z4HS6YU0m996spceUDD2MNIUuZcSQlobEg,197 +pip/_vendor/packaging/LICENSE.APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174 +pip/_vendor/packaging/LICENSE.BSD,sha256=tw5-m3QvHMb5SLNMFqo5_-zpQZY2S8iP8NIYDwAo-sU,1344 +pip/_vendor/packaging/__init__.py,sha256=_0cDiPVf2S-bNfVmZguxxzmrIYWlyASxpqph4qsJWUc,494 +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-312.pyc,, +pip/_vendor/packaging/_elffile.py,sha256=UkrbDtW7aeq3qqoAfU16ojyHZ1xsTvGke_WqMTKAKd0,3286 +pip/_vendor/packaging/_manylinux.py,sha256=t4y_-dTOcfr36gLY-ztiOpxxJFGO2ikC11HgfysGxiM,9596 +pip/_vendor/packaging/_musllinux.py,sha256=p9ZqNYiOItGee8KcZFeHF_YcdhVwGHdK6r-8lgixvGQ,2694 +pip/_vendor/packaging/_parser.py,sha256=gYfnj0pRHflVc4RHZit13KNTyN9iiVcU2RUCGi22BwM,10221 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/_tokenizer.py,sha256=OYzt7qKxylOAJ-q0XyK1qAycyPRYLfMPdGQKRXkZWyI,5310 +pip/_vendor/packaging/licenses/__init__.py,sha256=3bx-gryo4sRv5LsrwApouy65VIs3u6irSORJzALkrzU,5727 +pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc,, +pip/_vendor/packaging/licenses/_spdx.py,sha256=oAm1ztPFwlsmCKe7lAAsv_OIOfS1cWDu9bNBkeu-2ns,48398 +pip/_vendor/packaging/markers.py,sha256=P0we27jm1xUzgGMJxBjtUFCIWeBxTsMeJTOJ6chZmAY,12049 +pip/_vendor/packaging/metadata.py,sha256=8IZErqQQnNm53dZZuYq4FGU4_dpyinMeH1QFBIWIkfE,34739 +pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/packaging/requirements.py,sha256=gYyRSAdbrIyKDY66ugIDUQjRMvxkH2ALioTmX3tnL6o,2947 +pip/_vendor/packaging/specifiers.py,sha256=yc9D_MycJEmwUpZvcs1OZL9HfiNFmyw0RZaeHRNHkPw,40079 +pip/_vendor/packaging/tags.py,sha256=41s97W9Zatrq2Ed7Rc3qeBDaHe8pKKvYq2mGjwahfXk,22745 +pip/_vendor/packaging/utils.py,sha256=0F3Hh9OFuRgrhTgGZUl5K22Fv1YP2tZl1z_2gO6kJiA,5050 +pip/_vendor/packaging/version.py,sha256=oiHqzTUv_p12hpjgsLDVcaF5hT7pDaSOViUNMD4GTW0,16688 +pip/_vendor/pkg_resources/LICENSE,sha256=htoPAa6uRjSKPD1GUZXcHOzN55956HdppkuNoEsqR0E,1023 +pip/_vendor/pkg_resources/__init__.py,sha256=vbTJ0_ruUgGxQjlEqsruFmiNPVyh2t9q-zyTDT053xI,124451 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/LICENSE,sha256=KeD9YukphQ6G6yjD_czwzv30-pSHkBHP-z0NS-1tTbY,1089 +pip/_vendor/platformdirs/__init__.py,sha256=UfeSHWl8AeTtbOBOoHAxK4dODOWkZtfy-m_i7cWdJ8c,22344 +pip/_vendor/platformdirs/__main__.py,sha256=jBJ8zb7Mpx5ebcqF83xrpO94MaeCpNGHVf9cvDN2JLg,1505 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc,, +pip/_vendor/platformdirs/android.py,sha256=r0DshVBf-RO1jXJGX8C4Til7F1XWt-bkdWMgmvEiaYg,9013 +pip/_vendor/platformdirs/api.py,sha256=wPHOlwOsfz2oqQZ6A2FcCu5kEAj-JondzoNOHYFQ0h8,9281 +pip/_vendor/platformdirs/macos.py,sha256=0XoOgin1NK7Qki7iskD-oS8xKxw6bXgoKEgdqpCRAFQ,6322 +pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/platformdirs/unix.py,sha256=WZmkUA--L3JNRGmz32s35YfoD3ica6xKIPdCV_HhLcs,10458 +pip/_vendor/platformdirs/version.py,sha256=sved76l3nstESjZInsYGzPryR4cPIaf3QHTJuTDYXNM,704 +pip/_vendor/platformdirs/windows.py,sha256=IFpiohUBwxPtCzlyKwNtxyW4Jk8haa6W8o59mfrDXVo,10125 +pip/_vendor/pygments/LICENSE,sha256=qdZvHVJt8C4p3Oc0NtNOVuhjL0bCdbvf_HBWnogvnxc,1331 +pip/_vendor/pygments/__init__.py,sha256=8uNqJCCwXqbEx5aSsBr0FykUQOBDKBihO5mPqiw1aqo,2983 +pip/_vendor/pygments/__main__.py,sha256=WrndpSe6i1ckX_SQ1KaxD9CTKGzD0EuCOFxcbwFpoLU,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pygments/console.py,sha256=AagDWqwea2yBWf10KC9ptBgMpMjxKp8yABAmh-NQOVk,1718 +pip/_vendor/pygments/filter.py,sha256=YLtpTnZiu07nY3oK9nfR6E9Y1FBHhP5PX8gvkJWcfag,1910 +pip/_vendor/pygments/filters/__init__.py,sha256=4U4jtA0X3iP83uQnB9-TI-HDSw8E8y8zMYHa0UjbbaI,40392 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=KZQMmyo_xkOIkQG8g66LYEkBh1bx7a0HyGCBcvhI9Ew,4390 +pip/_vendor/pygments/formatters/__init__.py,sha256=KTwBmnXlaopJhQDOemVHYHskiDghuq-08YtP6xPNJPg,5385 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/lexer.py,sha256=_kBrOJ_NT5Tl0IVM0rA9c8eysP6_yrlGzEQI0eVYB-A,35349 +pip/_vendor/pygments/lexers/__init__.py,sha256=wbIME35GH7bI1B9rNPJFqWT-ij_RApZDYPUlZycaLzA,12115 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=l4tCXM8e9aPC2BD6sjIr0deT-J-z5tHgCwL-p1fS0PE,77602 +pip/_vendor/pygments/lexers/python.py,sha256=vxjn1cOHclIKJKxoyiBsQTY65GHbkZtZRuKQ2AVCKaw,53853 +pip/_vendor/pygments/modeline.py,sha256=K5eSkR8GS1r5OkXXTHOcV0aM_6xpk9eWNEIAW-OOJ2g,1005 +pip/_vendor/pygments/plugin.py,sha256=tPx0rJCTIZ9ioRgLNYG4pifCbAwTRUZddvLw-NfAk2w,1891 +pip/_vendor/pygments/regexopt.py,sha256=wXaP9Gjp_hKAdnICqoDkRxAOQJSc4v3X6mcxx3z-TNs,3072 +pip/_vendor/pygments/scanner.py,sha256=nNcETRR1tRuiTaHmHSTTECVYFPcLf6mDZu1e4u91A9E,3092 +pip/_vendor/pygments/sphinxext.py,sha256=5x7Zh9YlU6ISJ31dMwduiaanb5dWZnKg3MyEQsseNnQ,7981 +pip/_vendor/pygments/style.py,sha256=PlOZqlsnTVd58RGy50vkA2cXQ_lP5bF5EGMEBTno6DA,6420 +pip/_vendor/pygments/styles/__init__.py,sha256=x9ebctfyvCAFpMTlMJ5YxwcNYBzjgq6zJaKkNm78r4M,2042 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/styles/_mapping.py,sha256=6lovFUE29tz6EsV3XYY4hgozJ7q1JL7cfO3UOlgnS8w,3312 +pip/_vendor/pygments/token.py,sha256=WbdWGhYm_Vosb0DDxW9lHNPgITXfWTsQmHt6cy9RbcM,6226 +pip/_vendor/pygments/unistring.py,sha256=al-_rBemRuGvinsrM6atNsHTmJ6DUbw24q2O2Ru1cBc,63208 +pip/_vendor/pygments/util.py,sha256=oRtSpiAo5jM9ulntkvVbgXUdiAW57jnuYGB7t9fYuhc,10031 +pip/_vendor/pyproject_hooks/LICENSE,sha256=GyKwSbUmfW38I6Z79KhNjsBLn9-xpR02DkK0NCyLQVQ,1081 +pip/_vendor/pyproject_hooks/__init__.py,sha256=cPB_a9LXz5xvsRbX1o2qyAdjLatZJdQ_Lc5McNX-X7Y,691 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_impl.py,sha256=jY-raxnmyRyB57ruAitrJRUzEexuAhGTpgMygqx67Z4,14936 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=MJNPpfIxcO-FghxpBbxkG1rFiQf6HOUbV4U5mq0HFns,557 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=qcXMhmx__MIJq10gGHW3mA4Tl8dy8YzHMccwnNoKlw0,12216 +pip/_vendor/pyproject_hooks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/requests/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142 +pip/_vendor/requests/__init__.py,sha256=HlB_HzhrzGtfD_aaYUwUh1zWXLZ75_YCLyit75d0Vz8,5057 +pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/requests/__version__.py,sha256=QKDceK8K_ujqwDDc3oYrR0odOBYgKVOQQ5vFap_G_cg,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=2MLFOK9GpYNhiTd6zLDUrAgSkIB-76i6pmSuUJjHC2w,26429 +pip/_vendor/requests/api.py,sha256=_Zb9Oa7tzVIizTKwFrPjDEY9ejtm_OnSRERnADxGsQs,6449 +pip/_vendor/requests/auth.py,sha256=kF75tqnLctZ9Mf_hm9TZIj4cQWnN5uxRz8oWsx5wmR0,10186 +pip/_vendor/requests/certs.py,sha256=kHDlkK_beuHXeMPc5jta2wgl8gdKeUWt5f2nTDVrvt8,441 +pip/_vendor/requests/compat.py,sha256=QfbmdTFiZzjSHMXiMrd4joCRU6RabtQ9zIcPoVaHIus,1822 +pip/_vendor/requests/cookies.py,sha256=bNi-iqEj4NPZ00-ob-rHvzkvObzN3lEpgw3g6paS3Xw,18590 +pip/_vendor/requests/exceptions.py,sha256=D1wqzYWne1mS2rU43tP9CeN1G7QAy7eqL9o1god6Ejw,4272 +pip/_vendor/requests/help.py,sha256=hRKaf9u0G7fdwrqMHtF3oG16RKktRf6KiwtSq2Fo1_0,3813 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=taljlg6vJ4b-xMu2TaMNFFkaiwMex_VsEQ6qUTN3wzY,35575 +pip/_vendor/requests/packages.py,sha256=_ZQDCJTJ8SP3kVWunSqBsRZNPzj2c1WFVqbdr08pz3U,1057 +pip/_vendor/requests/sessions.py,sha256=Cl1dpEnOfwrzzPbku-emepNeN4Rt_0_58Iy2x-JGTm8,30503 +pip/_vendor/requests/status_codes.py,sha256=iJUAeA25baTdw-6PfD0eF4qhpINDJRJI-yaMqxs4LEI,4322 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=WS3wHSQaaEfceu1syiFo5jf4e_CWKUTep_IabOVI_J0,33225 +pip/_vendor/resolvelib/LICENSE,sha256=84j9OMrRMRLB3A9mm76A5_hFQe26-3LzAw0sp2QsPJ0,751 +pip/_vendor/resolvelib/__init__.py,sha256=yoX-d4STvwGGCiQRE5cJC9Cter69SgVgqClxOCvSP7M,541 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc,, +pip/_vendor/resolvelib/providers.py,sha256=pIWJbIdJJ9GFtNbtwTH0Ia43Vj6hYCEJj2DOLue15FM,8914 +pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/reporters.py,sha256=pNJf4nFxLpAeKxlBUi2GEj0a2Ij1nikY0UabTKXesT4,2037 +pip/_vendor/resolvelib/resolvers/__init__.py,sha256=728M3EvmnPbVXS7ExXlv2kMu6b7wEsoPutEfl-uVk_I,640 +pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc,, +pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc,, +pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc,, +pip/_vendor/resolvelib/resolvers/abstract.py,sha256=CNeQPnpAudY77nmzOkONSmAgRlzIf06X-X9mvRYODms,1543 +pip/_vendor/resolvelib/resolvers/criterion.py,sha256=lcmZGv5sKHOnFD_RzZwvlGSj19MeA-5rCMpdf2Sgw7Y,1768 +pip/_vendor/resolvelib/resolvers/exceptions.py,sha256=ln_jaQtgLlRUSFY627yiHG2gD7AgaXzRKaElFVh7fDQ,1768 +pip/_vendor/resolvelib/resolvers/resolution.py,sha256=3J_zkW-sD3EY-BlNXjyln__njpyH5n0UZJT6uV7CheA,24212 +pip/_vendor/resolvelib/structs.py,sha256=pu-EJiR2IBITr2SQeNPRa0rXhjlStfmO_GEgAhr3004,6420 +pip/_vendor/rich/LICENSE,sha256=3u18F6QxgVgZCj6iOcyHmlpQJxzruYrnAl9I--WNyhU,1056 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=e_aVC-tDzarWQW9SuZMuCgBr6ODV_iDNV2Wh2xkxOlw,7896 +pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-312.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=fbmeyetEdHjzE_Vx2l1uK7tnPOhMs2X1lJfO3vsKDpA,10209 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=RI08pSrm5tBSzPMvnbTqbD9WIalaOoN5d4M1RTmLq1Y,2128 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=ROT0PLC2GMWialWZkqJIjmYq7INRijQQkoSokWTaAiI,9656 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=ADGKp1yt-k70FMKV6tnqCqecB-rSJzp-WQsD7LPL-kg,1394 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=IOtl78sQCYZsmHyxhe45krkb68u9xVz7zFsXVJD-b2Y,5325 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=BSaDRIMwBLITn_m0mTRLPqME5q-quGdSMuYMpYeYJwc,22755 +pip/_vendor/rich/_windows.py,sha256=aBwaD_S56SbgopIvayVmpk0Y28uwY2C5Bab1wl3Bp-I,1925 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=FlSsom5EX0LVkA3KWy34yHnCfLtqX-ZIepXKh-70rpc,3404 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=dg-7uY0ukMLLlUEsBDRLva22_sQgIJD4BK0dmZHFHug,10324 +pip/_vendor/rich/ansi.py,sha256=Avs1LHbSdcyOvDOdpELZUoULcBiYewY76eNBp6uFBhs,6921 +pip/_vendor/rich/bar.py,sha256=ldbVHOzKJOnflVNuv1xS7g6dLX2E3wMnXkdPbpzJTcs,3263 +pip/_vendor/rich/box.py,sha256=kmavBc_dn73L_g_8vxWSwYJD2uzBXOUFTtJOfpbczcM,10686 +pip/_vendor/rich/cells.py,sha256=KrQkj5-LghCCpJLSNQIyAZjndc4bnEqOEmi5YuZ9UCY,5130 +pip/_vendor/rich/color.py,sha256=3HSULVDj7qQkXUdFWv78JOiSZzfy5y1nkcYhna296V0,18211 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=t9azZpmRMVU5cphVBZSShNsmBxd2-IAWcTTlhor-E1s,100849 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=c_56TxcedGYqDepHBMTuZdUIijitAQgnox-Qde0Z1qo,5502 +pip/_vendor/rich/control.py,sha256=EUTSUFLQbxY6Zmo_sdM-5Ls323vIHTBfN8TPulqeHUY,6487 +pip/_vendor/rich/default_styles.py,sha256=khQFqqaoDs3bprMqWpHw8nO5UpG2DN6QtuTd6LzZwYc,8257 +pip/_vendor/rich/diagnose.py,sha256=fJl1TItRn19gGwouqTg-8zPUW3YqQBqGltrfPQs1H9w,1025 +pip/_vendor/rich/emoji.py,sha256=Wd4bQubZdSy6-PyrRQNuMHtn2VkljK9uPZPVlu2cmx0,2367 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=_iz9lIpRgvW7MNSeCZnLg-HwzbP4GETg543WqD8SFs0,2484 +pip/_vendor/rich/highlighter.py,sha256=G_sn-8DKjM1sEjLG_oc4ovkWmiUpWvj8bXi0yed2LnY,9586 +pip/_vendor/rich/json.py,sha256=vVEoKdawoJRjAFayPwXkMBPLy7RSTs-f44wSQDR2nJ0,5031 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=ajkSFAtEVv9EFTcFs-w4uZfft7nEXhNzL7ZVdgrT5rI,14004 +pip/_vendor/rich/live.py,sha256=tF3ukAAJZ_N2ZbGclqZ-iwLoIoZ8f0HHUz79jAyJqj8,15180 +pip/_vendor/rich/live_render.py,sha256=It_39YdzrBm8o3LL0kaGorPFg-BfZWAcrBjLjFokbx4,3521 +pip/_vendor/rich/logging.py,sha256=5KaPPSMP9FxcXPBcKM4cGd_zW78PMgf-YbMVnvfSw0o,12468 +pip/_vendor/rich/markup.py,sha256=3euGKP5s41NCQwaSjTnJxus5iZMHjxpIM0W6fCxra38,8451 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=KVEI3tOwo9sgK1YNSuH__M1_jUWmLZwRVV_KmOtVzyM,4908 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=9sQl00hPIqH5G2gALQo4NepFwpP0k9wT-s_gOms5pIc,11157 +pip/_vendor/rich/pretty.py,sha256=gy3S72u4FRg2ytoo7N1ZDWDIvB4unbzd5iUGdgm-8fc,36391 +pip/_vendor/rich/progress.py,sha256=CUc2lkU-X59mVdGfjMCBkZeiGPL3uxdONjhNJF2T7wY,60408 +pip/_vendor/rich/progress_bar.py,sha256=mZTPpJUwcfcdgQCTTz3kyY-fc79ddLwtx6Ghhxfo064,8162 +pip/_vendor/rich/prompt.py,sha256=l0RhQU-0UVTV9e08xW1BbIj0Jq2IXyChX4lC0lFNzt4,12447 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=5MZJZmONgC6kud-QW-_m1okXwL2aR6u6y-pUcUCJz28,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=otnKeKGEV-WRlQVosfJVeFDcDxAKHpvJ_hLzSu5lumM,24743 +pip/_vendor/rich/spinner.py,sha256=onIhpKlljRHppTZasxO8kXgtYyCHUkpSgKglRJ3o51g,4214 +pip/_vendor/rich/status.py,sha256=kkPph3YeAZBo-X-4wPp8gTqZyU466NLwZBA4PZTTewo,4424 +pip/_vendor/rich/style.py,sha256=W9Ccy8Py8lNICtlfcp-ryzMTuQaGxAU3av7-g5fHu0s,26990 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=eDKIRwl--eZ0Lwo2da2RRtfutXGavrJO61Cl5OkS59U,36371 +pip/_vendor/rich/table.py,sha256=ZmT7V7MMCOYKw7TGY9SZLyYDf6JdM-WVf07FdVuVhTI,40049 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=AO7JPCz6-gaN1thVLXMBntEmDPVYFgFNG1oM61_sanU,47552 +pip/_vendor/rich/theme.py,sha256=oNyhXhGagtDlbDye3tVu3esWOWk0vNkuxFw-_unlaK0,3771 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=c0WmB_L04_UfZbLaoH982_U_s7eosxKMUiAVmDPdRYU,35861 +pip/_vendor/rich/tree.py,sha256=yWnQ6rAvRGJ3qZGqBrxS2SW2TKBTNrP0SdY8QxOFPuw,9451 +pip/_vendor/tomli/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072 +pip/_vendor/tomli/__init__.py,sha256=qzEGl8QHhqgQPCuLzfKyPIuH3KKPspf-UVPbZ0ppBD4,314 +pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc,, +pip/_vendor/tomli/_parser.py,sha256=bO8tUYmnyA2K6m4TnbQbfUqmIFcDv7mG1KuC9gqRVmA,25778 +pip/_vendor/tomli/_re.py,sha256=n8-Io8ZK1U-F6jzlg7Pabc40hLFJsawE2uNLKH9w7iU,3235 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +pip/_vendor/tomli_w/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072 +pip/_vendor/tomli_w/__init__.py,sha256=0F8yDtXx3Uunhm874KrAcP76srsM98y7WyHQwCulZbo,169 +pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc,, +pip/_vendor/tomli_w/_writer.py,sha256=dsifFS2xYf1i76mmRyfz9y125xC7Z_HQ845ZKhJsYXs,6961 +pip/_vendor/tomli_w/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +pip/_vendor/truststore/LICENSE,sha256=M757fo-k_Rmxdg4ajtimaL2rhSyRtpLdQUJLy3Jan8o,1086 +pip/_vendor/truststore/__init__.py,sha256=Bu7kqkmpunhLsj5xCu8gT_25ktoPXcSnwe8VHk1GmJo,1320 +pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/truststore/_api.py,sha256=CYJCV5BTfttZYfqY3movdMBE-8az7uhET_LYbKT2Nn4,11413 +pip/_vendor/truststore/_macos.py,sha256=nZlLkOmszUE0g6ryRwBVGY5COzPyudcsiJtDWarM5LQ,20503 +pip/_vendor/truststore/_openssl.py,sha256=zB-SQvJydks7tQ0yIwrP6GD3fQNSSaPiq7zw4yF5T40,2412 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=rAHyKYD8M7t-bXfG8VgOVa3TpfhVhbt4rZQlO45YuP8,17993 +pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/LICENSE.txt,sha256=w3vxhuJ8-dvpYZ5V7f486nswCRzrPaY8fay-Dm13kHs,1115 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372 +pip/_vendor/urllib3/_version.py,sha256=t9wGB6ooOTXXgiY66K1m6BZS1CJyXHAU8EoWDTe6Shk,64 +pip/_vendor/urllib3/connection.py,sha256=ttIA909BrbTUzwkqEe_TzZVh4JOOj7g61Ysei2mrwGg,20314 +pip/_vendor/urllib3/connectionpool.py,sha256=e2eiAwNbFNCKxj4bwDKNK-w7HIdSz3OmMxU_TIt-evQ,40408 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=Fef1IIUUFHqpevzXiDPbIGkDKchY2FVKeVeLGR1Qq3g,34446 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=aWyhXRtNO4JUnCSVVqKTKQd8EXTvUm1VN9pgs2bcONo,19990 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=6ENvOZ8PBDzh8kgixpql9lIrb2dxH-k7ZmBanJF2Ng4,22050 +pip/_vendor/urllib3/util/ssl_.py,sha256=QDuuTxPSCj1rYtZ4xpD7Ux-r20TD50aHyqKyhQ7Bq4A,17460 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=vVQNxfrf_nPy_pjSSGklxQVWmH5hvhyDtZgbszGbw7c,343 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/REQUESTED b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/WHEEL new file mode 100644 index 0000000..d8b9936 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.12.0 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/entry_points.txt new file mode 100644 index 0000000..c6436d2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/entry_points.txt @@ -0,0 +1,4 @@ +[console_scripts] +pip=pip._internal.cli.main:main +pip3=pip._internal.cli.main:main + diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/AUTHORS.txt b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/AUTHORS.txt new file mode 100644 index 0000000..6ce9e40 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/AUTHORS.txt @@ -0,0 +1,842 @@ +@Switch01 +A_Rog +Aakanksha Agrawal +Abhinav Sagar +ABHYUDAY PRATAP SINGH +abs51295 +AceGentile +Adam Chainz +Adam Tse +Adam Turner +Adam Wentz +admin +Adolfo Ochagavía +Adrien Morison +Agus +ahayrapetyan +Ahilya +AinsworthK +Akash Srivastava +Alan Yee +Albert Tugushev +Albert-Guan +albertg +Alberto Sottile +Aleks Bunin +Ales Erjavec +Alessandro Molina +Alethea Flowers +Alex Gaynor +Alex Grönholm +Alex Hedges +Alex Loosley +Alex Morega +Alex Stachowiak +Alexander Regueiro +Alexander Shtyrov +Alexandre Conrad +Alexey Popravka +Aleš Erjavec +Alli +Aman +Ami Fischman +Ananya Maiti +Anatoly Techtonik +Anders Kaseorg +Andre Aguiar +Andreas Lutro +Andrei Geacar +Andrew Gaul +Andrew Shymanel +Andrey Bienkowski +Andrey Bulgakov +Andrés Delfino +Andy Freeland +Andy Kluger +Ani Hayrapetyan +Aniruddha Basak +Anish Tambe +Anrs Hu +Anthony Sottile +Antoine Lambert +Antoine Musso +Anton Ovchinnikov +Anton Patrushev +Anton Zelenov +Antonio Alvarado Hernandez +Antony Lee +Antti Kaihola +Anubhav Patel +Anudit Nagar +Anuj Godase +AQNOUCH Mohammed +AraHaan +arena +arenasys +Arindam Choudhury +Armin Ronacher +Arnon Yaari +Artem +Arun Babu Neelicattu +Ashley Manton +Ashwin Ramaswami +atse +Atsushi Odagiri +Avinash Karhana +Avner Cohen +Awit (Ah-Wit) Ghirmai +Baptiste Mispelon +Barney Gale +barneygale +Bartek Ogryczak +Bastian Venthur +Ben Bodenmiller +Ben Darnell +Ben Hoyt +Ben Mares +Ben Rosser +Bence Nagy +Benjamin Peterson +Benjamin VanEvery +Benoit Pierre +Berker Peksag +Bernard +Bernard Tyers +Bernardo B. Marques +Bernhard M. Wiedemann +Bertil Hatt +Bhavam Vidyarthi +Blazej Michalik +Bogdan Opanchuk +BorisZZZ +Brad Erickson +Bradley Ayers +Bradley Reynolds +Branch Vincent +Brandon L. Reiss +Brandt Bucher +Brannon Dorsey +Brett Randall +Brett Rosen +Brian Cristante +Brian Rosner +briantracy +BrownTruck +Bruno Oliveira +Bruno Renié +Bruno S +Bstrdsmkr +Buck Golemon +burrows +Bussonnier Matthias +bwoodsend +c22 +Caleb Brown +Caleb Martinez +Calvin Smith +Carl Meyer +Carlos Liam +Carol Willing +Carter Thayer +Cass +Chandrasekhar Atina +Charlie Marsh +charwick +Chih-Hsuan Yen +Chris Brinker +Chris Hunt +Chris Jerdonek +Chris Kuehl +Chris Markiewicz +Chris McDonough +Chris Pawley +Chris Pryer +Chris Wolfe +Christian Clauss +Christian Heimes +Christian Oudard +Christoph Reiter +Christopher Hunt +Christopher Snyder +chrysle +cjc7373 +Clark Boylan +Claudio Jolowicz +Clay McClure +Cody +Cody Soyland +Colin Watson +Collin Anderson +Connor Osborn +Cooper Lees +Cooper Ry Lees +Cory Benfield +Cory Wright +Craig Kerstiens +Cristian Sorinel +Cristina +Cristina Muñoz +ctg123 +Curtis Doty +cytolentino +Daan De Meyer +Dale +Damian +Damian Quiroga +Damian Shaw +Dan Black +Dan Savilonis +Dan Sully +Dane Hillard +daniel +Daniel Collins +Daniel Hahler +Daniel Holth +Daniel Jost +Daniel Katz +Daniel Shaulov +Daniele Esposti +Daniele Nicolodi +Daniele Procida +Daniil Konovalenko +Danny Hermes +Danny McClanahan +Darren Kavanagh +Dav Clark +Dave Abrahams +Dave Jones +David Aguilar +David Black +David Bordeynik +David Caro +David D Lowe +David Evans +David Hewitt +David Linke +David Poggi +David Poznik +David Pursehouse +David Runge +David Tucker +David Wales +Davidovich +ddelange +Deepak Sharma +Deepyaman Datta +Denis Roussel (ACSONE) +Denise Yu +dependabot[bot] +derwolfe +Desetude +developer +Devesh Kumar +Devesh Kumar Singh +devsagul +Diego Caraballo +Diego Ramirez +DiegoCaraballo +Dimitri Merejkowsky +Dimitri Papadopoulos +Dimitri Papadopoulos Orfanos +Dirk Stolle +dkjsone +Dmitry Gladkov +Dmitry Volodin +Domen Kožar +Dominic Davis-Foster +Donald Stufft +Dongweiming +doron zarhi +Dos Moonen +Douglas Thor +DrFeathers +Dustin Ingram +Dustin Rodrigues +Dwayne Bailey +Ed Morley +Edgar Ramírez +Edgar Ramírez Mondragón +Ee Durbin +Efflam Lemaillet +efflamlemaillet +Eitan Adler +ekristina +elainechan +Eli Schwartz +Elisha Hollander +Ellen Marie Dash +Emil Burzo +Emil Styrke +Emmanuel Arias +Endoh Takanao +enoch +Erdinc Mutlu +Eric Cousineau +Eric Gillingham +Eric Hanchrow +Eric Hopper +Erik M. Bray +Erik Rose +Erwin Janssen +Eugene Vereshchagin +everdimension +Federico +Felipe Peter +Felix Yan +fiber-space +Filip Kokosiński +Filipe Laíns +Finn Womack +finnagin +Flavio Amurrio +Florian Briand +Florian Rathgeber +Francesco +Francesco Montesano +Fredrik Orderud +Fredrik Roubert +Frost Ming +Gabriel Curio +Gabriel de Perthuis +Garry Polley +gavin +gdanielson +Gene Wood +Geoffrey Sneddon +George Margaritis +George Song +Georgi Valkov +Georgy Pchelkin +ghost +Giftlin Rajaiah +gizmoguy1 +gkdoc +Godefroid Chapelle +Gopinath M +GOTO Hayato +gousaiyang +gpiks +Greg Roodt +Greg Ward +Guilherme Espada +Guillaume Seguin +gutsytechster +Guy Rozendorn +Guy Tuval +gzpan123 +Hanjun Kim +Hari Charan +Harsh Vardhan +harupy +Harutaka Kawamura +hauntsaninja +Henrich Hartzer +Henry Schreiner +Herbert Pfennig +Holly Stotelmyer +Honnix +Hsiaoming Yang +Hugo Lopes Tavares +Hugo van Kemenade +Hugues Bruant +Hynek Schlawack +iamsrp-deshaw +Ian Bicking +Ian Cordasco +Ian Lee +Ian Stapleton Cordasco +Ian Wienand +Igor Kuzmitshov +Igor Sobreira +Ikko Ashimine +Ilan Schnell +Illia Volochii +Ilya Abdolmanafi +Ilya Baryshev +Inada Naoki +Ionel Cristian Mărieș +Ionel Maries Cristian +Itamar Turner-Trauring +iTrooz +Ivan Pozdeev +J. Nick Koston +Jacob Kim +Jacob Walls +Jaime Sanz +Jake Lishman +jakirkham +Jakub Kuczys +Jakub Stasiak +Jakub Vysoky +Jakub Wilk +James Cleveland +James Curtin +James Firth +James Gerity +James Polley +Jan Pokorný +Jannis Leidel +Jarek Potiuk +jarondl +Jason Curtis +Jason R. Coombs +JasonMo +JasonMo1 +Jay Graves +Jean Abou Samra +Jean-Christophe Fillion-Robin +Jeff Barber +Jeff Dairiki +Jeff Widman +Jelmer Vernooij +jenix21 +Jeremy Fleischman +Jeremy Stanley +Jeremy Zafran +Jesse Rittner +Jiashuo Li +Jim Fisher +Jim Garrison +Jinzhe Zeng +Jiun Bae +Jivan Amara +Joa +Joe Bylund +Joe Michelini +Johannes Altmanninger +John Paton +John Sirois +John T. Wodder II +John-Scott Atlakson +johnthagen +Jon Banafato +Jon Dufresne +Jon Parise +Jonas Nockert +Jonathan Herbert +Joonatan Partanen +Joost Molenaar +Jorge Niedbalski +Joseph Bylund +Joseph Long +Josh Bronson +Josh Cannon +Josh Hansen +Josh Schneier +Joshua +JoshuaPerdue +Juan Luis Cano Rodríguez +Juanjo Bazán +Judah Rand +Julian Berman +Julian Gethmann +Julien Demoor +July Tikhonov +Jussi Kukkonen +Justin van Heek +jwg4 +Jyrki Pulliainen +Kai Chen +Kai Mueller +Kamal Bin Mustafa +Karolina Surma +kasium +kaustav haldar +keanemind +Keith Maxwell +Kelsey Hightower +Kenneth Belitzky +Kenneth Reitz +Kevin Burke +Kevin Carter +Kevin Frommelt +Kevin R Patterson +Kexuan Sun +Kit Randel +Klaas van Schelven +KOLANICH +konstin +kpinc +Krishan Bhasin +Krishna Oza +Kumar McMillan +Kuntal Majumder +Kurt McKee +Kyle Persohn +lakshmanaram +Laszlo Kiss-Kollar +Laurent Bristiel +Laurent LAPORTE +Laurie O +Laurie Opperman +layday +Leon Sasson +Lev Givon +Lincoln de Sousa +Lipis +lorddavidiii +Loren Carvalho +Lucas Cimon +Ludovic Gasc +Luis Medel +Lukas Geiger +Lukas Juhrich +Luke Macken +Luo Jiebin +luojiebin +luz.paz +László Kiss Kollár +M00nL1ght +MajorTanya +Malcolm Smith +Marc Abramowitz +Marc Tamlyn +Marcus Smith +Mariatta +Mark Kohler +Mark McLoughlin +Mark Williams +Markus Hametner +Martey Dodoo +Martin Fischer +Martin Häcker +Martin Pavlasek +Masaki +Masklinn +Matej Stuchlik +Mateusz Sokół +Mathew Jennings +Mathieu Bridon +Mathieu Kniewallner +Matt Bacchi +Matt Good +Matt Maker +Matt Robenolt +Matt Wozniski +matthew +Matthew Einhorn +Matthew Feickert +Matthew Gilliard +Matthew Hughes +Matthew Iversen +Matthew Treinish +Matthew Trumbell +Matthew Willson +Matthias Bussonnier +mattip +Maurits van Rees +Max W Chase +Maxim Kurnikov +Maxime Rouyrre +mayeut +mbaluna +Md Sujauddin Sekh +mdebi +Meet Vasita +memoselyk +meowmeowcat +Michael +Michael Aquilina +Michael E. Karpeles +Michael Klich +Michael Mintz +Michael Williamson +michaelpacer +Michał Górny +Mickaël Schoentgen +Miguel Araujo Perez +Mihir Singh +Mike +Mike Hendricks +Min RK +MinRK +Miro Hrončok +Monica Baluna +montefra +Monty Taylor +morotti +mrKazzila +Muha Ajjan +Nadav Wexler +Nahuel Ambrosini +Nate Coraor +Nate Prewitt +Nathan Houghton +Nathaniel J. Smith +Nehal J Wani +Neil Botelho +Nguyễn Gia Phong +Nicholas Serra +Nick Coghlan +Nick Stenning +Nick Timkovich +Nicolas Bock +Nicole Harris +Nikhil Benesch +Nikhil Ladha +Nikita Chepanov +Nikolay Korolev +Nipunn Koorapati +Nitesh Sharma +Niyas Sait +Noah +Noah Gorny +Nowell Strite +NtaleGrey +nucccc +nvdv +OBITORASU +Ofek Lev +ofrinevo +Oleg Burnaev +Oliver Freund +Oliver Jeeves +Oliver Mannion +Oliver Tonnhofer +Olivier Girardot +Olivier Grisel +Ollie Rutherfurd +OMOTO Kenji +Omry Yadan +onlinejudge95 +Oren Held +Oscar Benjamin +Oz N Tiram +Pachwenko +Patrick Dubroy +Patrick Jenkins +Patrick Lawson +patricktokeeffe +Patrik Kopkan +Paul Ganssle +Paul Kehrer +Paul Moore +Paul Nasrat +Paul Oswald +Paul van der Linden +Paulus Schoutsen +Pavel Safronov +Pavithra Eswaramoorthy +Pawel Jasinski +Paweł Szramowski +Pekka Klärck +Peter Gessler +Peter Lisák +Peter Shen +Peter Waller +Petr Viktorin +petr-tik +Phaneendra Chiruvella +Phil Elson +Phil Freo +Phil Pennock +Phil Whelan +Philip Jägenstedt +Philip Molloy +Philippe Ombredanne +Pi Delport +Pierre-Yves Rofes +Pieter Degroote +pip +Prabakaran Kumaresshan +Prabhjyotsing Surjit Singh Sodhi +Prabhu Marappan +Pradyun Gedam +Prashant Sharma +Pratik Mallya +pre-commit-ci[bot] +Preet Thakkar +Preston Holmes +Przemek Wrzos +Pulkit Goyal +q0w +Qiangning Hong +Qiming Xu +qraqras +Quentin Lee +Quentin Pradet +R. David Murray +Rafael Caricio +Ralf Schmitt +Ran Benita +Randy Döring +Razzi Abuissa +rdb +Reece Dunham +Remi Rampin +Rene Dudfield +Riccardo Magliocchetti +Riccardo Schirone +Richard Jones +Richard Si +Ricky Ng-Adam +Rishi +rmorotti +RobberPhex +Robert Collins +Robert McGibbon +Robert Pollak +Robert T. McGibbon +robin elisha robinson +Rodney, Tiara +Roey Berman +Rohan Jain +Roman Bogorodskiy +Roman Donchenko +Romuald Brunet +ronaudinho +Ronny Pfannschmidt +Rory McCann +Ross Brattain +Roy Wellington Ⅳ +Ruairidh MacLeod +Russell Keith-Magee +Ryan Shepherd +Ryan Wooden +ryneeverett +Ryuma Asai +S. Guliaev +Sachi King +Salvatore Rinchiera +sandeepkiran-js +Sander Van Balen +Savio Jomton +schlamar +Scott Kitterman +Sean +seanj +Sebastian Jordan +Sebastian Schaetz +Segev Finer +SeongSoo Cho +Sepehr Rasouli +sepehrrasooli +Sergey Vasilyev +Seth Michael Larson +Seth Woodworth +Shahar Epstein +Shantanu +shenxianpeng +shireenrao +Shivansh-007 +Shixian Sheng +Shlomi Fish +Shovan Maity +Shubham Nagure +Simeon Visser +Simon Cross +Simon Pichugin +sinoroc +sinscary +snook92 +socketubs +Sorin Sbarnea +Srinivas Nyayapati +Srishti Hegde +Stavros Korokithakis +Stefan Scherfke +Stefano Rivera +Stephan Erb +Stephen Payne +Stephen Rosen +stepshal +Steve (Gadget) Barnes +Steve Barnes +Steve Dower +Steve Kowalik +Steven Myint +Steven Silvester +stonebig +studioj +Stéphane Bidoul +Stéphane Bidoul (ACSONE) +Stéphane Klein +Sumana Harihareswara +Surbhi Sharma +Sviatoslav Sydorenko +Sviatoslav Sydorenko (Святослав Сидоренко) +Swat009 +Sylvain +Takayuki SHIMIZUKAWA +Taneli Hukkinen +tbeswick +Thiago +Thijs Triemstra +Thomas Fenzl +Thomas Grainger +Thomas Guettler +Thomas Johansson +Thomas Kluyver +Thomas Smith +Thomas VINCENT +Tim D. Smith +Tim Gates +Tim Harder +Tim Heap +tim smith +tinruufu +Tobias Hermann +Tom Forbes +Tom Freudenheim +Tom V +Tomas Hrnciar +Tomas Orsava +Tomer Chachamu +Tommi Enenkel | AnB +Tomáš Hrnčiar +Tony Beswick +Tony Narlock +Tony Zhaocheng Tan +TonyBeswick +toonarmycaptain +Toshio Kuratomi +toxinu +Travis Swicegood +Tushar Sadhwani +Tzu-ping Chung +Valentin Haenel +Victor Stinner +victorvpaulo +Vikram - Google +Viktor Szépe +Ville Skyttä +Vinay Sajip +Vincent Philippon +Vinicyus Macedo +Vipul Kumar +Vitaly Babiy +Vladimir Fokow +Vladimir Rutsky +W. Trevor King +Wil Tan +Wilfred Hughes +William Edwards +William ML Leslie +William T Olson +William Woodruff +Wilson Mo +wim glenn +Winson Luk +Wolfgang Maier +Wu Zhenyu +XAMES3 +Xavier Fernandez +Xianpeng Shen +xoviat +xtreak +YAMAMOTO Takashi +Yen Chi Hsuan +Yeray Diaz Diaz +Yoval P +Yu Jian +Yuan Jing Vincent Yan +Yuki Kobayashi +Yusuke Hayashi +zackzack38 +Zearin +Zhiping Deng +ziebam +Zvezdan Petkovic +Łukasz Langa +Роман Донченко +Семён Марьясин diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/LICENSE.txt new file mode 100644 index 0000000..8e7b65e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-present The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt new file mode 100644 index 0000000..d8b3b56 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt @@ -0,0 +1,13 @@ +Copyright 2012-2021 Eric Larson + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/certifi/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/certifi/LICENSE new file mode 100644 index 0000000..62b076c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/certifi/LICENSE @@ -0,0 +1,20 @@ +This package contains a modified version of ca-bundle.crt: + +ca-bundle.crt -- Bundle of CA Root Certificates + +This is a bundle of X.509 certificates of public Certificate Authorities +(CA). These were automatically extracted from Mozilla's root certificates +file (certdata.txt). This file can be found in the mozilla source tree: +https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt +It contains the certificates in PEM format and therefore +can be directly used with curl / libcurl / php_curl, or with +an Apache+mod_ssl webserver for SSL client authentication. +Just configure this file as the SSLCACertificateFile.# + +***** BEGIN LICENSE BLOCK ***** +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain +one at http://mozilla.org/MPL/2.0/. + +***** END LICENSE BLOCK ***** +@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt new file mode 100644 index 0000000..b9723b8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2024-present Stephen Rosen + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt new file mode 100644 index 0000000..c31ac56 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt @@ -0,0 +1,284 @@ +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations (now Zope +Corporation, see http://www.zope.com). In 2001, the Python Software +Foundation (PSF, see http://www.python.org/psf/) was formed, a +non-profit organization created specifically to own Python-related +Intellectual Property. Zope Corporation is a sponsoring member of +the PSF. + +All Python releases are Open Source (see http://www.opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.2 2.1.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2.1 2.2 2002 PSF yes + 2.2.2 2.2.1 2002 PSF yes + 2.2.3 2.2.2 2003 PSF yes + 2.3 2.2.2 2002-2003 PSF yes + 2.3.1 2.3 2002-2003 PSF yes + 2.3.2 2.3.1 2002-2003 PSF yes + 2.3.3 2.3.2 2002-2003 PSF yes + 2.3.4 2.3.3 2004 PSF yes + 2.3.5 2.3.4 2005 PSF yes + 2.4 2.3 2004 PSF yes + 2.4.1 2.4 2005 PSF yes + 2.4.2 2.4.1 2005 PSF yes + 2.4.3 2.4.2 2006 PSF yes + 2.4.4 2.4.3 2006 PSF yes + 2.5 2.4 2006 PSF yes + 2.5.1 2.5 2007 PSF yes + 2.5.2 2.5.1 2008 PSF yes + 2.5.3 2.5.2 2008 PSF yes + 2.6 2.5 2008 PSF yes + 2.6.1 2.6 2008 PSF yes + 2.6.2 2.6.1 2009 PSF yes + 2.6.3 2.6.2 2009 PSF yes + 2.6.4 2.6.3 2009 PSF yes + 2.6.5 2.6.4 2010 PSF yes + 3.0 2.6 2008 PSF yes + 3.0.1 3.0 2009 PSF yes + 3.1 3.0.1 2009 PSF yes + 3.1.1 3.1 2009 PSF yes + 3.1.2 3.1 2010 PSF yes + 3.2 3.1 2010 PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +Python Software Foundation; All Rights Reserved" are retained in Python alone or +in any derivative version prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the Internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the Internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distro/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distro/LICENSE new file mode 100644 index 0000000..e06d208 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distro/LICENSE @@ -0,0 +1,202 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md new file mode 100644 index 0000000..19b6b45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md @@ -0,0 +1,31 @@ +BSD 3-Clause License + +Copyright (c) 2013-2024, Kim Davies and contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/msgpack/COPYING b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/msgpack/COPYING new file mode 100644 index 0000000..f067af3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/msgpack/COPYING @@ -0,0 +1,14 @@ +Copyright (C) 2008-2011 INADA Naoki + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE new file mode 100644 index 0000000..6f62d44 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE @@ -0,0 +1,3 @@ +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made +under the terms of *both* these licenses. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE new file mode 100644 index 0000000..f433b1a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD new file mode 100644 index 0000000..42ce7b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD @@ -0,0 +1,23 @@ +Copyright (c) Donald Stufft and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE new file mode 100644 index 0000000..1bb5a44 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE @@ -0,0 +1,17 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE new file mode 100644 index 0000000..f35fed9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2010-202x The platformdirs developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pygments/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pygments/LICENSE new file mode 100644 index 0000000..446a1a8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pygments/LICENSE @@ -0,0 +1,25 @@ +Copyright (c) 2006-2022 by the respective authors (see AUTHORS file). +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE new file mode 100644 index 0000000..b0ae9db --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 Thomas Kluyver + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/requests/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/requests/LICENSE new file mode 100644 index 0000000..67db858 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/requests/LICENSE @@ -0,0 +1,175 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE new file mode 100644 index 0000000..b907776 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2018, Tzu-ping Chung + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/rich/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/rich/LICENSE new file mode 100644 index 0000000..4415505 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/rich/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Will McGugan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli/LICENSE new file mode 100644 index 0000000..e859590 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Taneli Hukkinen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE new file mode 100644 index 0000000..e859590 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Taneli Hukkinen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/truststore/LICENSE b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/truststore/LICENSE new file mode 100644 index 0000000..7ec568c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/truststore/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2022 Seth Michael Larson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt new file mode 100644 index 0000000..429a176 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2008-2020 Andrey Petrov and contributors (see CONTRIBUTORS.txt) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip/__init__.py b/.venv/lib/python3.12/site-packages/pip/__init__.py new file mode 100644 index 0000000..d0e2bf3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from __future__ import annotations + +__version__ = "25.3" + + +def main(args: list[str] | None = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.12/site-packages/pip/__main__.py b/.venv/lib/python3.12/site-packages/pip/__main__.py new file mode 100644 index 0000000..5991326 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/__main__.py @@ -0,0 +1,24 @@ +import os +import sys + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py b/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py new file mode 100644 index 0000000..d6be157 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -0,0 +1,50 @@ +"""Execute exactly this copy of pip, within a different environment. + +This file is named as it is, to ensure that this module can't be imported via +an import statement. +""" + +# /!\ This version compatibility check section must be Python 2 compatible. /!\ + +import sys + +# Copied from pyproject.toml +PYTHON_REQUIRES = (3, 9) + + +def version_str(version): # type: ignore + return ".".join(str(v) for v in version) + + +if sys.version_info[:2] < PYTHON_REQUIRES: + raise SystemExit( + "This version of pip does not support python {} (requires >={}).".format( + version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) + ) + ) + +# From here on, we can use Python 3 features, but the syntax must remain +# Python 2 compatible. + +import runpy # noqa: E402 +from importlib.machinery import PathFinder # noqa: E402 +from os.path import dirname # noqa: E402 + +PIP_SOURCES_ROOT = dirname(dirname(__file__)) + + +class PipImportRedirectingFinder: + @classmethod + def find_spec(self, fullname, path=None, target=None): # type: ignore + if fullname != "pip": + return None + + spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) + assert spec, (PIP_SOURCES_ROOT, fullname) + return spec + + +sys.meta_path.insert(0, PipImportRedirectingFinder()) + +assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" +runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f58e4bb85ed2b82f2caf862eafa3161bc1e54261 GIT binary patch literal 661 zcmX|9OKTKC5bmCteYi^`J}xR~<3$GC8Il+@B7yY#luOY~fk4BG2l5StlUIGc1j1mq>8GR~!E2S8jnCUbkASRu&7xxzk9)3J1uayQBJ zG%c!vrGS}AYfE9%hYz+MC8t0pfH7d&Hk}(*6vD(oeFriVdd@N_9Y7~SIa3uHqSiEg zO;AV7jL#hFQ3yHNN$1+^+k$1#WcZ@@y8m>uH}p%)de1Z$v=3}6D{Y$0gqo$f+y!oK zqSZ#Sww_w)L=TGh*%<0QUkWs&qckb1I+`-6%q8g5gln&WIzY!A)Y$sjz4qz($L(*? zjUx!cID@K@&>MBSB zLK{4EMX>hNtCBy(i?#|fMJRak7U-=PooTY9(0cG4=6&<#oA-V5n9r$H99X2qKaEEs zz%RZDA~XU=uMogCsGuSps>6(`h@d78sN<}{4BM!J00f%haXmo&5m*sAV5iUT(ToM` zaaN(vT<}0ZLaNZZ24Fv68s~UuriRSZ>whpKfl`pG!asaYo>mxQ6^PImhL|~xsp5&# zD{OjLkGB)mBmy=Y)SNwgm(`QOd;)C*9`aBo^qbS~Q=m~rY1cGEQ8I{PjxrNeFdZs7 zo!baLCC zW?K9YIPcjq5D`KL5IcbQAPG3KQRo&nOWm7(&i8zK+k5N1d->(!+*fh#2RmHqE^U;% zWq0u@>|7T@k4GmzmwlB?i4>3_S5tGiG}sM!Ocpy;+K5) m8@_xfCN^K}i8DX({2@-RFY?B{hi@K#$Cm~Xz_a!gv-TI~JGj6A literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6997ddfa915f56bb9713965686e8e89bee91b574 GIT binary patch literal 2211 zcmaJ>T}&KR6h3!m_Mc_9T_}`lJ56h4&HhM#(ngWmB5i36(1kv@iJ44y?!v(C%ywp$ zvJ?^|B-X@49*o5|o=hv6_~@hW#$@@4&`Fxq=!3k`?t{vUp1ZSCNUEM>?!9NuJ>Na| z-0z$p!{H#H9O3^S``QEWD^pwvG!`|B06YK%vY-%!E08Qv_$;Rg3y|e08TY#md$YnR zo(`bg1P5SraX>wacRajjcUNfnUxXDrnMr*g=V~j6%EZ;@Nj)xK)`zpN;4cQU0m5SS z7lOr5Hbj_zh<&ul^>OEHn1idJ1QtLEy13b9ywy?XjQ!*I@%@^!RtVxYuQUuU0s(qJ z2~BhYn7-?vG`aS9w%a#;@?UVmN=Rw`CbGgiHUbqc9-aQGZ;Iy178U7~oU;lQ(Hc`t zF{hU*qMjE^YAGS!Rq>xD%A%s?^VFc4B~ootHFT|r>r^l}!d&udfr>b5a*-;cY>KLd zYC^Ph+-;T(ipa9%z!!C;jJtEP_PQnBMz>-~H!O6UROO(oHFVLmWQ#gyY_p&T;@mci zewz^|*LXQ*00BQ{sh!3FnMB6-Tk#(ggg{x?VvXtAnN-*5w5eJ& ziOv)9DEi|Ar6mc+q*2y1YDiM5RM`!5k5Y|Jm5iS0qm$GyRb7)XlvH;?&&dU|C-uS} z#hA<%9DavC=U^?CSi19h?-F@%Wi^)g%VcStZ*9Zd*uuE3YB>8EcqU7NXoPUIL;KD! zFh#&Vvkiwi*a|g&cHxr?2)BH7BbHbXC8|QAh9=l%`Ix>~Cr<;QK{-*;DH2JyM6+CC z%n+UXi}z;5PJ`Yls|MP8-nlm$Phm*GA=w(cqG}2?Sb&OZFb?L}8LlvHFsZSkdjJ%$ z!$6j!yuu?Zh|7qqP$6-_?if-_{dG!aD5BAvrD~(j0RuUf6IZaIIkX$Y1rh|?#Kd`Q zNTdRLBpGis6W58&GsJpqNZex!CN1P`f4*EOu(a4h3A1H;E!h~Q7FyBI zWcLu6)Zf!+M|Jw-e6c*r};JxbMQ12TP&}IUfGJZ{T4aA89A{UIk9|gBYm-& zdiRG@>yiHZ!sAG+>hIb(bn2nM+S;|@@7jvQ?uQJ?}4&lV!ieLsCPU2T*_5y5qqR%<6r=`Y&_rNo@avaz; zc4SdjHA$N8>XkJ{I;?Nw!;bVlx=WN3g>E=u?l}4#))y%h0Tt@tEzC zBt_3*%slFLWaxvDYl8z)rtjvh{!HI+y;STbw|G=7uiL@liith1Z%VanZ(cWwvSoV^ zyi~DcPM5@XkSfYK?8wxpI1KRVW{SP45o=tC^Ea>oyX zZaOZ;Yg=W2WB!-EfxSKAZoP02_1 zzQ4GhzER`3K(NLOA@2?d9&ha+knj_D;|U!3CD!rf`Q;1iM-uC?WEG-+c>Sd18Q`#U z2#D};_@nS9w5&qQ;?33e)9dYLH{je;Uu5yEHQ%dM$W)JIHXySF(K*j1L{}lY*t*>D Lo%J(x*RT5zav~+g literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py new file mode 100755 index 0000000..24d0baf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py @@ -0,0 +1,18 @@ +from __future__ import annotations + +from pip._internal.utils import _log + +# init_logging() must be called before any call to logging.getLogger() +# which happens at import of most modules. +_log.init_logging() + + +def main(args: list[str] | None = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9babf1dd30460af8e327d7015efab3886f8e11c7 GIT binary patch literal 763 zcmZuvy^GX96rV}5>$-af?ro)l4q_8<6V4CxL=Mg`EM%LtT9GiD%q8Q^X2Q&5j~pvp zVP|7!XD|1s*eD1>z(T~r?qIp*n)A)xhmDWS%kRB;@6GScywA(aZ3J@JJ<5(SLcgqW zD(*4B^Jf4)padmYpa~vfY_TJpi92#Jau9Q0w@#D({r65FL^qOV;=OH*8kOsx`(yn+ zt~)f(rJ;t)T!ZOFLZ*WlNSui!01MBr0006Q4g~^lfPjN$c!u^)qKC+LcRs$zxF+xw zifN{%EFqgx5h)T9!x2(2qGQDiqlw9=Aro2=ZMYC*%!p!}OtC!XdDW8h{oncoUlZ-$y1)`#RRnnJ$id&VM+ z0CE#WK~dG-gz{Y35wS~mLG7Z0CDd5^+3CH1{BHe=cX19*Xl&qn%1*(~1;Mp>sf~I? zW@I39RyP$hrOIm;dh(lfJBl_-aIh#+_KEA>f387!c4uip1qLI9hgtCWgj5H1)Ok>c xtp^jCl!C3R6)^2EXaZ{A#TfrU*M6hx`z?f5cD?VY`xSM+q258Wg)c2C`~{UG&7J@N literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..338eede624657f37bb60414ef640991a8a4d33db GIT binary patch literal 18233 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 E0bDIMaR2}S literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3183ad47ccdb46a7a46ab0b29eea414c07912a82 GIT binary patch literal 18280 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 CN=2Cf literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a7dab7a0a5a8731b7a83e4b0738619abbc1414b GIT binary patch literal 40598 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df0b2128a71c53726c09e4d94d93981a4a73ca78 GIT binary patch literal 646 zcmX|l}6y5?(TU?6HD{ zosFHHz4)itSPxi;m7TC$bB(_2={+Wo?+fpJ^4=t0`~4n4yAuDYUQj}QhTy-&CxWiF zP<$kU2wIaF-J_I?TT5AuAfeASGz(#&$ZuspZQ z=E}K7y8Paq?fcmp1Q8B_<93S!;MPh=qxKqRW`)vT0>ZNfyK$M+9v0T%u7ggfiQ0t2 z^dxYB!q_p-4-D)(%S$|D^mOoi_tD+KDE!58@Yo1h>>_aCl*_ZZ)bqSnW9-dWM&HhE z-pZZwa)8DAe2Vp<-_tJg8CN>9i#7=Y&f<9qE_V^#TXJ-cbhdwNUi$Fl{m!@K@(MR` zs9~DG8B~WCYUTVZ=ixP5vZ2wk-2mwu&~1$Kq;cCTib;bTvM3;2@0$OaKzL8kMR(kN fI5VQDZZ0W~#?xiT%S+THsQUry(; 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c5c90e4a12e1c73b6e924f7500187471a56bb0e GIT binary patch literal 10702 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 tuple[str] | tuple[str, str]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironmentInstaller(Protocol): + """ + Interface for installing build dependencies into an isolated build + environment. + """ + + def install( + self, + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + for_req: InstallRequirement | None, + ) -> None: ... + + +class SubprocessBuildEnvironmentInstaller: + """ + Install build dependencies by calling pip in a subprocess. + """ + + def __init__( + self, + finder: PackageFinder, + build_constraints: list[str] | None = None, + build_constraint_feature_enabled: bool = False, + ) -> None: + self.finder = finder + self._build_constraints = build_constraints or [] + self._build_constraint_feature_enabled = build_constraint_feature_enabled + + def _deprecation_constraint_check(self) -> None: + """ + Check for deprecation warning: PIP_CONSTRAINT affecting build environments. + + This warns when build-constraint feature is NOT enabled and PIP_CONSTRAINT + is not empty. + """ + if self._build_constraint_feature_enabled or self._build_constraints: + return + + pip_constraint = os.environ.get("PIP_CONSTRAINT") + if not pip_constraint or not pip_constraint.strip(): + return + + deprecated( + reason=( + "Setting PIP_CONSTRAINT will not affect " + "build constraints in the future," + ), + replacement=( + "to specify build constraints using --build-constraint or " + "PIP_BUILD_CONSTRAINT. To disable this warning without " + "any build constraints set --use-feature=build-constraint or " + 'PIP_USE_FEATURE="build-constraint"' + ), + gone_in="26.2", + issue=None, + ) + + def install( + self, + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + for_req: InstallRequirement | None, + ) -> None: + self._deprecation_constraint_check() + + finder = self.finder + args: list[str] = [ + sys.executable, + get_runnable_pip(), + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + "--disable-pip-version-check", + # As the build environment is ephemeral, it's wasteful to + # pre-compile everything, especially as not every Python + # module will be used/compiled in most cases. + "--no-compile", + # The prefix specified two lines above, thus + # target from config file or env var should be ignored + "--target", + "", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-vv") + elif logger.getEffectiveLevel() <= VERBOSE: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + if finder.proxy: + args.extend(["--proxy", finder.proxy]) + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.custom_cert: + args.extend(["--cert", finder.custom_cert]) + if finder.client_cert: + args.extend(["--client-cert", finder.client_cert]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + + # Handle build constraints + if self._build_constraint_feature_enabled: + args.extend(["--use-feature", "build-constraint"]) + + if self._build_constraints: + # Build constraints must be passed as both constraints + # and build constraints, so that nested builds receive + # build constraints + for constraint_file in self._build_constraints: + args.extend(["--constraint", constraint_file]) + args.extend(["--build-constraint", constraint_file]) + + extra_environ: ExtraEnviron = {} + if self._build_constraint_feature_enabled and not self._build_constraints: + # If there are no build constraints but the build constraints + # feature is enabled then we must ignore regular constraints + # in the isolated build environment + extra_environ = {"extra_environ": {"_PIP_IN_BUILD_IGNORE_CONSTRAINTS": "1"}} + + args.append("--") + args.extend(requirements) + + identify_requirement = ( + f" for {for_req.name}" if for_req and for_req.name else "" + ) + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"installing {kind}{identify_requirement}", + spinner=spinner, + **extra_environ, + ) + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self, installer: BuildEnvironmentInstaller) -> None: + self.installer = installer + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: list[str] = [] + self._lib_dirs: list[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> tuple[set[tuple[str, str]], set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = get_requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + for_req: InstallRequirement | None = None, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self.installer.install(requirements, prefix, kind=kind, for_req=for_req) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + for_req: InstallRequirement | None = None, + ) -> None: + raise NotImplementedError() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..0bcb697 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cache.py @@ -0,0 +1,291 @@ +"""Cache Management""" + +from __future__ import annotations + +import hashlib +import json +import logging +import os +from pathlib import Path +from typing import Any + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + +ORIGIN_JSON_NAME = "origin.json" + + +def _hash_dict(d: dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + :param cache_dir: The root of the cache. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + + def _get_cache_path_parts(self, link: Link) -> list[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just reuse the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> list[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + path = self.get_path_for_link(link) + if os.path.isdir(path): + return [(candidate, path) for candidate in os.listdir(path)] + return [] + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: str | None, + supported_tags: list[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: str | None, + supported_tags: list[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if wheel.name != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + self.origin: DirectUrl | None = None + origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME + if origin_direct_url_path.exists(): + try: + self.origin = DirectUrl.from_json( + origin_direct_url_path.read_text(encoding="utf-8") + ) + except Exception as e: + logger.warning( + "Ignoring invalid cache entry origin file %s for %s (%s)", + origin_direct_url_path, + link.filename, + e, + ) + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + self._wheel_cache = SimpleWheelCache(cache_dir) + self._ephem_cache = EphemWheelCache() + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: str | None, + supported_tags: list[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: str | None, + supported_tags: list[Tag], + ) -> CacheEntry | None: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None + + @staticmethod + def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: + origin_path = Path(cache_dir) / ORIGIN_JSON_NAME + if origin_path.exists(): + try: + origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) + except Exception as e: + logger.warning( + "Could not read origin file %s in cache entry (%s). " + "Will attempt to overwrite it.", + origin_path, + e, + ) + else: + # TODO: use DirectUrl.equivalent when + # https://github.com/pypa/pip/pull/10564 is merged. + if origin.url != download_info.url: + logger.warning( + "Origin URL %s in cache entry %s does not match download URL " + "%s. This is likely a pip bug or a cache corruption issue. " + "Will overwrite it with the new value.", + origin.url, + cache_dir, + download_info.url, + ) + origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..5fcddf5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,3 @@ +"""Subpackage containing all of pip's command line interface related code""" + +# This file intentionally does not import submodules diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dea8cad0a3dfb3c62b8f64727bca58c3591dad63 GIT binary patch literal 287 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc6fa7624fdf7b9839b20ee337c9b00d9ac02212 GIT binary patch literal 30355 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c25c645ffee1ab7bec71bdbcf999fbb9bbd4761 GIT binary patch literal 1826 zcmZ`(O>7%g5T3U`_S&`Uq)yTjC~`r4 z=EqSEQ56YSf+M7eGZGNEaO?$oL*f#bREd^W1aX0zX@pW0B$&5ryGazDwDac8%$qm! z&CLFoOvVA%)BL~JMtOkW*rBzACbRc0GV5S~L2M`yg%HMbHdo>mz9c9@NmRr@#@mrn zREZMcz>FG#A$}d%;6g8o#KC1SqHADCZCR`uljDCd1DW`-%cf&e%_~!x_j~d)u17W9 z8!tPax#YdAIoef|`mu>6%bWHzea=6rhpJMjLJ!emwPL=bQJ+(bMdnd2FKE=#98V8} z2x&X7DLj9GnVFyv0~F4P)?k(x+*(56O~D|hXz)*=%`9gKYr;m;hY~SFGipjqgErEv zU_{mgC02taqQs{`mi+X1xrAXEt>CSt*Bw7XO>dq$I%)c08$up@dj(`ZChOoaX|QgR z75GR5Xg!MnqeN}O3E)LrmMsg^wo-#C$Xwx)Ec&85UqRd?Rka+;Q&qnM8MUM#Y2rum z5%80TWHRRqu4&KuF;&%V&2?4PWiMw|A6IgVWjg0pG~IM_(-R|a<;TvCU`0Gj9~mzj zrkZy&yXsnQF1uhl3pv}G$yKV}wX*YKcJzguYkB4fUY^5py19x~$zeR6N%2xnx2>EW zBG(EoTdC3%KD_+QF_30kNyX5@%^-QS3iqYt&1hXZvnBQJWCm-(mUQ<1*>j)0R}=0@ zy?bZ_GG8bZ4wWH-(tiB*zCiLO5bTK+xQ_hMMY%WN1_=t$R>hcYyDV)noJT(fe8R7X z^MZVXg4zuK-u7g*zitg z_jYH0y|e#MAjzJeJG%FI+#3-X9Ijowm+0G%vLn;|{Y3bWn?=Vrdh(~pr-^(7J{Mo% zzmkyoRzlHjG0#W8i{kN4B$iL{cTzk`{f=gjsufyZund#x2Z3%+4-5JKO6CS7JHABM zS?eEJD`cZNp*YHOUkgUQ^ zD!rW=xSJZNO9Q)%@2jW!wo|!!D!2Lkg`ZOSO({>i(G=fI;8u`Nu#tAOl8GZ7SJhJ4 zn70|9P}TS6H9OPB&1Ck}o%;ks$ts){|7MrqJP7lIz5CzvTC z?2bEug|-tTv+u@%r&*`SBkThRx~~LRY?$)t%6NbwYcyHpPR23|KuY-8c;Gr8>-~m^@smt3zuDND#bb0<~>iu>?eup3KLL;t|8UHV87Ow zi=-k94rooe=2SCB)DR5=ub|eFYfZJXv5?l5+mYJA5uT`?=|Oj)wYM6*&)Hw84pmfI zl<+m-zB8Qa*x$*VPrN9OO(uP4pz)&&E_Yice90Y)iAPp9=54S6Ev&l6(bS+0?#eZ zS)p`3ubXKT5R5VS4rp{n&ZIL_Dt!2Ul-6cc1E7YBm)<=ipZcRSr_P@nI}06RMx|zU zB8%WD`I%mF4y3D?5!%6#ExT%{QM-^L)aWn4 zzGlgs=MtIa{@;9j_4&lbu{i$)-n=hxT?%V1AMbSj^R=mc5)Tup@^vK9n@FraA<~SJIO}4{J`sM!`}6 zQ8J@tlgzNWrYcdGw|eCaRl#(~wG)=%6aa-?S=tNh>Vu#0kI*cU-;2Sr7%hp>m4QcM z|5JbCjqvsG>W;BB|Ak7Vbwd!mZJ+vEHiGbe=HIswB%vMUU|%WNch^&vj+CS$kAp{- zPE`c4EcBFwo?lJg$=%NVgT5vtDxt=ux4(VfNy5>u2=8q}-i_BASEFyQ`OiNA-d^bZ z!}IVf<2biF{=(P^%e*g)93~HZCu8K{;og%`&nN91wz1xmZ+bp?gM)UPp~0hvhucg+ z``2J?#f*-ee0D!;awi?gtT#@|33unX-0S6+4B9ZZGvS%K=z*yX4dEw^3 z#qi6ZKUq_j0di)H^Oj(!+JqI5W#&p{*+6n>iT1#Y?t*5ayUtD%F0VHM!$AH2c8NUo zH(VD>{*E<&tg=73Ec~Kj69!18x*+&~<=Wf%2!LB;k}UFOb-P6l!VTUH3=C=8hzD$= zBi=<%(LY&5~Xhme; zw`GQfU3G=I9qBmmFl1A-(MDEUaog=hX z6o-A+B#SY4}$H#v3PxP)!%K)M*v>#;|Bmvp45A?U3WPlEo`i6VyDxa zcI;t0u7d+ys;3TIq?cI0Cp}!hzkaXc`xOs7tCCPe_^O_CeHy^1#`b`*_tiCoNl~2M z_iDckiMIU!UBZQH@9&_hO0y_}74VO-Aef@|E`&98GM$+p!qmxF5T{JDFm&}07;P_0 zxGa&XCgf*^)xcsiRgtH3h_>lLAhtqVf;9BVNNstsHGUZHuzFay>V|#^H-~kM4Mk~M z0XB`SWU0mLh9wlz=9J~d*xs*nSy5ns5w0NWifziI_w)v`ToyT1b9 z3+WkHR{*+m;2R+nZ@Qw+QveVXohFU@Yevyt(c8Ep+$0^r<`}L`bT)6GIbrV3^?39M z^epVGXDqi{-#-C7;|PQvOXTY?2^?E*>ngYHF177m4m@e?{%8I-;;+TuH2k{ZUUp47 zTJj%V4|U#+mitea;6HTwY3%6Z*c;c+ug7|q&wtj^{p9G#-|oCMaC6|+;LX96`FruT zme)TvD}8%b`wrba`&;o}BmWYq#QMvzWGR-cM7zq-{iW#sduJat`))^e!#QK+}lwX@unD0L;Ef0Xs#IR3%$+mn^} zfz|k1w`j*Uo+#}-;r8rakF+m0GUou=>I2P&pvV%& z^t>7um^Y(n)#yc(L=zS|{>(7xpG!rlE(()voF5wl(W5K0iBTC}K#XHLWR$7Fk6gYs zQ4nL=d^)E>OdFJCyMhC7SeAb>lh&LOQI-`wBg-tBMMZ{^QBH--R$+=xk0Mi48>_*I zf-|b7$#R^dd!X0A@brWo4@&@2Y!1WExCG6&*T|PV@AZG}=e-BOllq#!;zQn@n;w8R z7!>n+dp2UEZ&#&v=SJY5H@e;&-SEO2&by_1Lqy1r5RO5X6>R$^1Q0u4HrKWY34JW{ zz&ioh;(;Mb1#ia}q2l5CEv$>gJ+_sCyt^GQBnJDK&0@MCLnSD41w`1t-M}y$w_!;OkmdG>Vk3SOv%LBhW@*hH%9b`a% z^>N%Tw~7Anr3_Ah>DoFcnRpR zr&_^kbZ3G}SQ2<*#e_ZeYIMq$3f2}(Of_G6Ad&Zf6sWBM>SnxKH;V@smY6(IFHYOi zdqqf6c0z(msid%4n5sZ|7}4=zYM{e~q2QcQ-l`k)Ly>GMeKiZoJ>-Fm8hj{J(EwwM z5oDp;YYLS)2@S>jIP? zuuiAxvrM%a;YGOReswMb`QC&MB?@sWZLnOj)7crjpWALfTbphCJUNH~n3curY6Z^B zWmJ~HQjD@F20s*|TrdOGw1pXj?M9$u3X0L1`s!2*`(C-PiSNS2^w0PwXqL$HM$#0; z$SDK=gj?SkYT`MCi zvv+=a`=^gPk{cq4?%O0n6x<(}*p|*O3D@w()24xY;)Cc~)Azsez~?vE#|HlJ`$z{A zt^&uOhFfloT_0QR8ea=v#E;SIqpO{X-?lA}{%80HP{s-ze_7fK6rT0&+UuX#`6Edk3`=kj2H9>36|_n#0*NZrC`E8+aa*kx?_k!fcdgmU zk0S?i;E+g2;ntv1!KtDOhu+#_K~$>LOClnLZis{g9JoagqzVr7%{rR}+C%3s@0<7L zy?OKIy*Gb0HAN7NZvOST*MJ_eg*W&H;GX{o;5($D0@64wU~rW{A;2-r8+?IxsZbDH zDi%bS1`9!#h6*8|f+1DHg|Mq58j(u05Os0Th*g>jO)d@@@k*kQaIs`GS6T`!910*T zl+&I=KE-VdTw_&e*CJX}3ttio+iH9!Ho5Zz(JLyc$!fJ~=tY(4mMLSCl3LZ$O`3bk z^fH_iRZY{PuGk)dbxa+lR?(_d4NNhto2n|Yu>zcmYHGlU7YSDBn;hwcUL7LDBFvnI zs{}WWD{lJcdMLsSk>sA=46rEH(R3Si1#Bt<@7)3MLP<1*DARODIp`suY5^*FD~-P; zEO@VlXw>7EV;=J9!Y1SpO?X_N7e=(j0)3E-3oisDX}h=v!2|i^?>KkDYP5WR!@>f#GK;ah-teg@oBl! z#~#weI{!WTVaqCb<%v-Ff7+m3o=Q3CA)k8wg5|A@C~x=W9@02}=V_?3DgFX~`IiPA z=f=?le;SQ*aA!Zh|4|bV2YE`MdpxV#_MoAId8Qux1MOIsm1WAue7O6SGilvPjcrr9}^5hpMKb9Rd z*?XMn>t;#DtWe}$TOL1$P1(kjGOl42RnUlJv$|~=V2D+kw1qnz-mck>ppw#-eUXrROPgxIb;NO^ zQ|tsR+X)%EiEUhU1U#WrC)jY*34`OCFgScn85kaRM7IU79n7>NYWU1(iLjD&go>)0 znV{>x4S}j?im6s`1HqkahsP5|hr>>2v(MN}Pj<&koFBKydAq7Yyz{4qvcm&MKg^zD zEvuM4W@%U%Fjb>w>vldjhRw0Op`XcDYxJCD9?125khkF~Sx`Q&mO#I%SMv(=KTJR= zUo`YQ^DS4c5mu`1lm}o-@a)s*ekeL!e~@UMo0y%L=jH=5^%-F!hQy{7p?gW_zMtq^ z?m4*l$;b;nAO<%gNNipa_ACi|mW92Kh2~2m>w+k@KS=GndGKE9{Us?mBVF0M-Ykd% z+yg1TB6TfEUDrCUr>>@M29~A$8xl&S=D+%R`)^%~eaDyMpHF}GFxooTKifYq-HYy8 z6n6c+kwUTdXNU)@Qgkjd8)+DsKXl{3jo$g4%Tneo{UlaE2Sn2xK>?PBt65O~1A&`BtvW zBbJGsAi;E$m<|t5k?C+kilSLXMR6jEa&{CXSWyV;EEllu2I_UMZHvk^D{osM_*G`>5#k-uGU3n5o=mDRl6D4Vvo z#iLX=>_**%OPCHf>OoT6oQHeK%zu_`KcVL^Bf=WgOR2xnH9jSWVab|~eFUa;p5wT` zQ127e^9VJqqWCHbucF8*N<2Xyt)W9}sBaBr*U*l1*|-x=mG1r4M~e8>GAA9`3$bdu<4a z>PGU;%s1bB^L;blum9@zdl0lX=D(+Z2qE+xnb?i445*Do7+gXkN+6LEX_?B=37R5f zMrIO>)w2oK>KzFO^sMa6xe_i5$02h$cfxIrow6tAO?Y#@gwLA0WPdJ@2;_o^pf%^@ zP_7}-V2#~!IMje&N^(M$gnT9sFi$Ecs(A|~Mw{UQRhi7BM=ijZMa*n}GcN)SC4EGi zOcrEa8|kum&ueoCUyY+66HE~i?Z&}?L5SM;gd&ft!?)7l`Dh(h zD(yzK7a85L8TKiAqY5h`17%(IdcC)IQ%HB)P#b0-p+-^n+pF1tJ*xM*&mLz%MK?DC z-KZ*RkpeCnH?JdPP&ca5fg(BJTubE%p6ETG}mO6WKJ?!LhTI`nRH+OeTu(N zd14{#1fDTb0!-e^jEWh}vYCtmDzD|?Cy7E5r#0*)>#nK_W1I4M`BA;MLKp(=zWs*Z^wn~sbw`GjAD94NlW33WtbqIvuYJ! zGYX-k;U==zSG^P=qkx=G0Z1b(@uc0C<5Ma=qvgS$Xz}r*`(8Wz%7K03#6P6=4XC0d z99EL@w3gB0J!d85Y+TMv#PieoX;pcqr?)Sz0bl!I^BK5TEe;P7hg0A>U{gFLXW|bS zYfpX}6EmYj?@|(mxuQTAB9b69}hj)eT zDzjb7?9RK9uBFJ%*})G-U|*gKc7J+&W$%&l-Xot+E(K4_4z04D6}GL+wp|`t zW_PSRQR5ca@G18Mok70P0zDU7=v_Fu z5{Z=~u~O5X+g$es14ut2rqMb3>NFIJipFOLm)Yh!-iFx||K9Kel15bI zi^$f2AeXB78vv2(wtP`*#TUV}(y~>{w&$eJ*1Sd?3O=Ap56gND{Mg-(@lp@$epRH7 zpi@V|N~xcrQ}buFP#%YGj2?;6GoFcz zQdO~;@VKSkpjnp6^+@L=&~sYVz(SMyY11j4%V@d==Anrhj5~qX7z1`-VVew~n{<9! zBi;=eOD8X$T-n^}w4}rd|yHHc>+zFuK3vIxW=pnr!Z)xexAp39( zv%NM%1S(6U+tlhWUiaf!ps~5(Pee*5N^7+&aW$LTSqfj)i9fTNK|hX){i;RQU}szE zu}-8Pj}K9!rU@TV2CLVifh|{>E;cab^>8%4J0bR)eMH?zbk zZfb_3CWFgxWt%rG!?ftsYcVa`@#wnYv?)*sq~;&Rz*&8(4b2iw-PE!>HUVG?uggCQ zt)KM&Q+(jYc0Q5v6Q#A^31nq(v%!dL6o`qgGrPgR_vta4vccHAik!991rl}JtM$H4 z@5#4Z$Ft8Yx(&C!*QNy8I-tkxnc=oiFM344y9#Oc$4r_kdJPYb7~X8JjalzSSgYXK zdm*>0WpAP{`%E3z9vNO6*X}{9p_~v=D=PX7U-p2FS?}w-!5z8{-y}VboX^2KA=QYtSXkT#w69n#IuoDpi7Eq zdbGj>q;HVVXeI+(nVw1xnSyM_435_pt&+oZjgD6aj5ZBX1>%X0+bnXLE~*9HbWCB$ zaZHz-Q6x>un~W?0$vlSpuyRN%Kf@$in$BcC4;)xw$aG>Ur=FE!ev`EX=pq@QY*{Nk>y8oTW?-fP$5yI?@G8#GIC{KnW?0s49fI zdb5HaCRK;^fzXe%AK^`A(VBnTl7BlSSYgz;du4lHd3)c@{Y%@QE3+N5qYLjqOyahz zxY}>K+Dn~>{xb1p_RraJ=h)rm-kb52zM*p8&{Fg8oOjjRT=I6Tg*#Tm&))p?O8<#+ z|B2GGBc;&j217Rn))DOwtb35ZWzDyB$=9*&U>ZGhF36+Yq4~i1z=FQaZH3wX{tNWH z=e(!X7%y{AuSS~ZJnJ;;9;4P8+pXZaYpHS1+>zC2`?YOXw#^-f?9c6+=gxBrt%N{@ z*N)q+jy29p=&W!pWv=CN^R7Z1-(ku=u#(dhf53y{RN-|;psyj}9Pm)Q1y-Fpc&w5^2p zltX(yJyr_t{|Qm#p28ia?Z5b}`?L1XCvG*~a+J1>EQLo)zR~}zGi3d~MykIrwrxMw zi@xlQ4)M$_Ps30fbF0k(V<^2rVM(cFl{qmM6N57u_-_Hf0iziYjCg||Q56XmhY83n zL+o{_blTn5T7FJa%R2tm%IEQ4&s2rKT1*xerxCV|E>#QWUAoGKP%=@9-Ez=&_u zUWO065k-B4Uilt%euvy&qlT}M=XepB}3+(Fbce1P4FS4tv-^H#~{Z+U+Q|`2<-^1P! zQ`Kp2zn7I=DPOv#zb0MVU(4>RQvP&Ze;q5kQ}yW${TtGO{s6o8q#DwV{f+5he~{-K zoFWWG?SYoBO6X&Zl~RARgFDX2)o*jMS8)zKVm@7+e=L}H{To?JA6nKZ8%s|&v8T0o z>c{&BR=;VMOD$Vj%R02IS6WL?+s1^*hFs{WxTZ+iVLh46NW*beQ&dS)^pWAuh)9Gt zyzxvXtH-Hc>%+b0xRO!SxSmyUA`U}1k{L7Hec2cBwwgg@&C7ky^_~8` zzSz?*zIggYw5U0n%?u<5NANbN85`EzKCP-C=`b2pMUE%*SbRi39~)4!>DY*xGCZ2D z>e+MIY$~z(L#-L&S2B3|hu{H)>*v7-4w=WgSLe9_@Wb0ati4wj-gfqj9!~aoxYhsU z8rk`_2yUpAMYO1r{jv*Jw_GPz;p&m=WjC(X@&?(1t2fVG;`@DPxJbYVyr3$&K6XM$ z4L_4r({Wu_)Z8OSB+Q7eCl$3fg_)5qD(bl`=J-6CNdtB}D$%sFDUT*BreNPjZ0+Yb zenmy$zwlsee%v8D9><+5pyZ^IUV3B5f!lTIW9wcPn^BToIcy@lS;gM8whhN!5yrVc z@}Y)LqV_}nKl3~{#zowHpS9vGqdpzK6r)kchO=6dmh3a?)Tm2lWF@1=l9`06q)}37 z1fNl6h@(kaKOb=#F75n?o=h3_gNh!*yrh$vcq*nPbBZB?X%y9P$3P*e$6{#h)RfeK z;f$+;n&G-I%C4SRERl+9S}dkHL0Xce%l8L+N3-e$Z8)A#wB9pM_nbQN)ZU&m#GQ$r zqgh#r9YHT+T2kwcUQ{v{dsE4Cy~AVr`D|uSbl2`)e1+13moLNz@&0gfxEDjf;P6s! zB9-hl`9C^5rqZPs6FZsT4=|SeRY{z+SZwO&HJ|$-0h1U+o-s?;NEgKEEU7M z3*p@h;YV(Ms}SCQYjYudFz?EbUh&^`*IcP8xI;5r=iQOnZ42(m3P^E@)oV%2jX!>6 zD+<%xI5$*Ub82g*ao!dvXSf?YZO~xMWU`pKsbknV$;=>js2avAhRb}cQBRVjvXySE z_(m>L>H8}-Z38hafb252=noYAT?K#F+`a|>?s@lal`0dogm!YFz&`9Ne9$yE$W1uM z`60V@)m3dBcMe&5eAQzxY^ByRPpf862T!e5_i7P%2+azu*VELi>~V}c?Ve=Eg<~A2 zZopVQc5V48JH~~Ntz~6n@|NrDlD%D38DqwVT%RsGp5@-+QCGXZhJ!TH!i;W(_lD{p zY;X59A%4x=I)-Q=*QIgsVYKX-u&>aE!cgNn61XkT8RVxkw_J@)&624zq_~vGrql5r zO~Fo#>xwL;lA11M2W$mp@v;=p$WmI-;}@Z@qSYlb2k5o5)%buUL5-!L+y!=jA}u@@g6Rx+|t9isu7&xDkcF}QW!#R{qW+E=O;njBPuFCobw*4_M!%3a0gitiv zj^;8jX`pVweXgt0-mffKsJ-^zkzMAN8@Rd+dFPV1zUXba?QL1~)m?k;%5yWWVyLSS z>YCeC2=(0YMHi`l({1mjRrQfVC^EOX5bD0;>$&T#&FkNNZ1VN*9I{*RGyCrNwwQzq z-j+Mww#7j6^ueiv^MS5{uWK>5X*x5Nxg9(>=laBZ!&~fptkC(`Lg&H!ahpQb2et3l z&W?UGaed;)Z!U!P-|;=Vbw${NdOZuTj17OQq-!;ZK*WdYuk|O z)|!w(#CkVOCU4UWG%ossGmTf?oOicAIC>IQOw1BEA{0?ke{huqtX{$hL&P2HQd#H7 z4qLQ+Z0V*6$G8J?BII%}xW_pKQ!5laq~31zYpwn0KovdNE@+T^^|FB7Q)(i;=i_Z^ZHajHA<4TjG` zF4U`LxOL@{KB~rt4VSDCqKOEmiWJ#E3?Z!zYNUOzIZQq2vzCO_=cI=$8f$R`?`pls zuraDRe`~RJYoT`Q>`TRteT9yFe}3t&-u$ySe>SqP|M_3)3mq>l)V`b-7X2IY)ekNu zEeBi5|AhiEqI#hW009hEGc8(Bl6iY+R6%x3I5G}dz~b;jrKL67v9={$HbGjZq~pph zN?LASv}H3$&`rMuQ*ct;_;<0mIRIep{wt>+fHPyBN0Lilw4 zxy6<(GskE5%)T+3zPWooybn(Tt@FOtr9k6@>_dB#u@7Mc#y(&KOg0~J^sy;aA4P>N zv0TbB`uxhM{FspK#A2J7Klh;5{t3gJeUk_QGf4(#{+EaEaarQ8t(9kLgDe$r- zUXF3sgoI-dK=~}VbOPqkI1|HDj;kIgaO4E6{YnCDHS$QnH;`~l2&3E$eExCt3$s(y zhEqvh-9>kzDF&P*A4vU@Y%rW8Gz<@9R*Z=cjYba1V95r?VU0@@85wo8@S@G#9JiT9y?xb;v#vT)SWM0)VligSsauK8 z7Rty~qCQ1gA7$U7jO2q+V_BRDC6$WBZt!Xgo@&H-PnyVx;I~Q{VOx#H_|@Co-#ZWg z&MAsrE4941XW7m5@h|erLP%^`40f2;oqNpd@n_j}$>UoQQNQwtAhxYkyTrgsU7Z+Q z*(!>`FKZp*RDpRn zg>iI5)3fPHzKIdIERq??^wF4n^8#}ZS$O-U^HAmZKSCWS8fj%{W3v-zbjS-uQZ5Zc zexrA)O?ON26mTkTnWm;klAe`-fk#0F&|g)Rgbr+gZiyOmn2-U0H>^&Nq_nJLI*254 z5J}`9lHeec^s!;vjioX2YfR}96mmdQGM5SmUC33kBL72PFUhCMEp(^7B(^ToO#7@N zy-M1>kA!O}BittVEOo}`E=+Fb|ZW4R8Sb?(Mx&O9eQwmD-ANApye^{EH)+l1;S9X z-KKmUcj_b*St?6>yQc}^YMYZA7qBrLeTMMzi>D&BDyeCsI;p|P(&L$gVtXZ5bG%U( zGr2rwGq~ZlOKJ}h5a8uf$w)A2O`f+~G7F1IM^YeUvZ=~&3hpbF0Mi;1t=1xGT6mh_ zVXil(g9I3TrZ6IL&y>z(QzB(>pX+|;CXcQi5$Rd&F0!wnf|^_MwToW=wS!j<&U?4q z4YbV2A6$6Be{^xn&iT!|CTs7xxQ5o5%unPyfjx_x+b3(6nmWGV_?kX`Qdr#7QQXv1 z*wizZxU=W@FNK9YrxrFnKjm2#sD9bS)iuw%L#6~J41y_+;iCR~%Houf3RY>}RFbZ$ zjBK@xAE1Yn4N?WMHDvtf4wvZuvaUgF{+vT*lBY&QqLeHS=2!ONQP~&0+S^QJ8IcHh zk_E*ni||f6ZEW2y!Xxhj12UPsngQ3yGQu6qJ^Ve^i-R14r6H6H;|@4=1#;?Qw^Xzc zDp>;dSRijIzeAFAT^i@H*C1CZ;XNnz7oY1o$-EY@<|Ok=j;mP+`M55{rNJbevy$yp zjzUe<#bw#{R}NA`qbAFYx){6D3}HAstnNSuHaHWK@+A`i5%@7gv)x)uW&}*v$r{SJ zZ4b_Gv_iW)$Z98$!FY3X_1h+$#k!6{UB|3GU$<}WVxewdUR-kfitcd19WJ_C3+~oC zZfUXn1TNssv+c7ZcicTo{)W8Igyj~F1znCKJp!KLSH@8Q_N};%h)(fg4%Sh{^|0jO z*VuLAj!K+i%Wj@y@(_jqVBq7&6xzV(4=;K6c#8TrF$$)+~S4T2uJ=zx$ z46n6dL_xiT4>DYU&+us3#+HCMk-;a|8dwBP5m*4E))4YZrE*&;tj@YN?}E7YBr>dw zi-WtlwzW{(`u^+lwVPo;*EbgH+Y9yW5E!0q`6G)y|FvhYJUjXN^u*M}r#>JuJSH&_ zuRQVrPGdf_4zu+uX9lBQ`Dug3AJ3+qRh3=q`3$^0cgoc)lFuT(w_7 zP6bv3lt^L)Ou9refxl8BzC+?y&Le*SNWxF>1Ae{Cg48mjY0kH6Su~AeWr(IxJdMT6 zT!^DlysQdwG>VtG5l5qVnTLVVYVcT{O3awkEXZjtsvUA1J)caRFJZ}~uC2n7V^ZS0 zlDJ^O$ZAr5iPeEbc#05cV}2vVe3EK5LqVx{N`l)q89#@*XDC#e)Uqk^DVJhxB(h4v zloSF1LkKgD6o#2rgA#k&pxzR8074bFtO*Cpp#lb*>d;z%NOszBHWfe$;>>W8xuTL! z#c-M5#gGKET5Nzo!bp9GGG_FV$g7M82o&WuRsijG*y=hOXcTPz3cIJ4Yi!OtuX^qV z+hFc_bq#6nK`hiNpx(4_T5&C|tId!wyKF;Uj@13@>9v%L(tccf3(|nu)Pj$T!ad z*@id_GCGXxG0ku)my)`rxR{A;2p5zwRRc*wP%b6bxe|;Tvl9ys<|^4>Yg*9UYtJLY zk~*B85Rh3h&`}6<%qHgcEChPzeZ61Z^*0s$odtjA7o5Wry6dZ-Z+QIHnOjfKZ+PmC z@914f$rD#jOn!^J_5ZpoqRD-Yp!!?&4cvQyBMrhw?MM8=U;9NAOB)FFoC|;LBun1G zls^ak&%)Iew}tE&6v)d5AC4mdbOIj^wjZJTLGE40)hhUJ$U|9C&piyQKnDVf{Q+1C z{vQ#MD%#ZRl8tN7w$Ezony4DD(wcPo0+uTIH4$)k*^Ep2a@;lKwcD4kKy)R)CL4!) z!ZYq3=Pv?TUVUs_76oNcJ&#q!BqBKJe3m?K?S`$v()}64+4M z-l1)m;;`i*bXjnTta>FqtdB+S^HCP9id3mg0$ssZ7$Sn`X~e7GA{<1_NtBgyBZKNo zs8TzTMXF8jS#1^vAJimb@>x|zi3k`q8Z3O$_a+TKW{74y%WGGZHb#~8MEzsDsF8un z>>iex-gqfSXA2m0MUJge2`2sAo=Sr78(#Vg>hAv{`#(%Xy19+*v&TLmYx4BI1W~m^>l1<%as$$beFGL=5RrEbIS+b_r1jsMYI+|JHFt2p2Js8 z7Pm$|dhYsjKYsoT&RcW1P$x}#XU_blDSWpfJbh~F)MDs`#Zdb_QD_W;Ok>MZTUW7d zXQ6H9&A`q0LffNLzR9YYz+xaglerz}UToMryB$VVv0+!CVb{$)w}hKrpEex&ya}Y2 z1@yVx%7wNO42mKM*0go@_Xo>*srFP+nt)kO*d?e+dd<`Wp_UU{|kJ8+etHEvBJTNxrgF z7VY+)Wip|{uCwcpag+R6#2?wt6PUGA!OH<9!aT)xpClc3$HDf+lBkz$tNjY01IVJV8lbD97B zHFMx$bFd3%58Bp|!mYicSVJeYgv;{uH$o1&(EsKK-xwDmA6@pDHbeoMSQNmO`RHr< zuV(%KC)5(luS?ddJBB*eRp1tHRNxbvn_%~fL)#yGtMo-xsE<5YKVDU~o$=M;P}hTP zaKeL5GkT#5#G&r5t50$h9{2((eivp5{fu*i&T;pT_@BA}Lp>%8%>*7YuTFbjX*~dp zE6%{<7|nN83AFN!$4Ia3Rhd498Sutk^>Z=0#GdZ z3jqr0oXae-- z&GK}cE)3fVD2*oJi)NZkGhNc;zcw{e**dAV6&O`omP%AQmL=N-hPSTctco_QB$6;) z&cknxFw-DACJ1k#j({lhaU*;_P$Fd7P@2?9_NNw!<{UjeeF$bD)&lo?OjmJI#A}uZ z;weqZg-N&LI43&9Xp^#~@ZqeNa;Gh$zFWef89Efo#xgL5wsh`NfhWg=2dU%*MH<5a zx=glPqCR>VaS23r_3ngsK+|#LA!>+;?1*(ZF!#=S;#R9tCkkc|M^EDzU8X0a3?gW8 zkvt8$0+2zZA2JH6W<%(u(MYB(Ng(F+ktBu;W02wu7+aJf6vLf>r{Nrq0h(dYkorg9 zK*RM4p?6J9u^aZO@H^owta_cER5RSbV7}?|b>WmMpp5Ecwd`dJ`UCACmO&^~{g0F- zDPsWXJu3ZIWQG8bmr-lcw9e=O_-8XfO}b@Y)Y#*Uu>+C*(yetuvI?(L)Z2nw=Eyx{ zf6=G{$53ZwGqMu0QZHbHx%NunX`LVZHX3TLK|fsP?)kW;w(0Ct zc2@oDW|k_NBR_ z*ZUV5cjlkLIf=Sp{@aUnp{3RC3L|zy zXu4&pWp?}R`pDhJmLCi)G)6w>c-)w6CXaq8;O@7ps@m^{TV@j9?=-90f7=94-G|zp zrX6$I&2Rn5=wd@?`q`;x7dN)fbj-IscB}nX<1!~au@71EzTXKV@R`r)I_X?&ZYwtT7Mgo+H}Acz_D}g|U2|1Hkn()p zsar4It~>R!R~G6{Ed|5HU}quNITu7-Vj*|{6t`~ApO}1Q`n9Ro7JQqR<2)8>S?0Nh z7DAEx@<;D(A}kC9do!@GX)oHI`Ofp?P}>J;wAzdQro8{Fd(ZP+Xv-IzSRbr7k&Y+! z0xCD}{b#|6i4@T6{+G2_Ahu@rzjX5T?Nn_4e_sT-rW3rj6HNBk2fQbCIDX#YJ6SLO zjoWv!Rs2PF_~Z`PFLy{MYsJ5<;VG{dPj2-5ZL4^))3e4#C7-oGHtH}q_3QksT3gxK zQwgh9)?~K+KSQn$u2KZAlD%l70;bP^Zq}#DeO1C=HYIx;3@ewAVVSPo4jLMp8|Nm3 zp%U6Fw<_VE5-Kd$Reqz?uTwAKIUq?2o3Lc-dDy{+K%oMHvquIzE)2EX@0G8>E~V%K zxsfW3n<0p_llz7hEZNx%S&-aj3CJSC{Oho{*C)M%<5!{bQuNdQI_75LC-`skS3i^4 zb(NdRk^Amx(-dYN%&e5gIZo5nX}L7ZzRvgnPNOpo8qerS_A`mq`ksJ;sq<~WDS{|k z5-!eeX?=*YGa|_ZE$AIN33szZN9W76KIeY`M`=j2tXP4lYFS(&4;& zkwoZ@LU0E>r;v7@=lT3IYlEV}*6Gw#YIfg82d^Jo2=?ZWQ>=6QhkHKtZ(k?fJEO(U z1BK25xAy<+_(JEYN%u_fgN^TRyj|C^>?O+3u63bnZ(ezG=F)<{bKc$g)xAcp4nmeU zhkf$O$@kJ9o|y~$`1gyxXu%i#SCY%U_t}ZjpN5YK+%E*rvAx1Cd~L^e3cuJXqP)hM zC$z$3q>ciUk(j#m>EUi$TNW^>MlyF@(usFiVrTw%ICLS8DbdeP)H5i+9qwh0(-=EI zsZQb#qT&bxZh3)!A-#X3EUZ;^Yr|qhuKqX5Xo4$;%_+9S0z5xN zL6ecOusJX82S5wAeeUs!T}%EA%Ob86wcD^EXj-N^06zq{yj1dW)wRE?L1`r{ zilOD&jbe1k)4L+#x^m#K7+QJK(I7^?>~@GfW`K+Ojz}!9PshOqM(_hP90yau&k!x- zr-Yz2r5hbAVO+%ygBt!sHkC46l3Fx=E}=T1&PxNy3NNH89tc{5t^ zN;w)`Vk`zy}>E3W2OTr~>+z;*ls*Y;~p`X}zuUvnpa z%^h3vg!4^BPq^R-&pf)|*?QS^&vlyTx6X7H!;coikKW_x?w;&u;hX2T?!U+3dhba- gzz1eR#pYgfwz{a%41UT*7#u_c-RM);bE%wMUG8H+iMC~co^OkoUO2_shT;b zTP-Pe7;38Ks&wzUx6e6!``&ZDbMF1GrY0YO(#8E{`cRmVud(A6-XWN+HyA=bASzKA zon)B=!ywJ-Y=X60F2O;|>3mj52w6|UlNA%9&BNEVeF44a zB9ILxg4s|alxBTM{kV)3Pqf=I9=#*GE3wO_MZGiImFTi* zN$<|~Bzm&FiC%`VMDwfO8!%Tai9XG%d9=P=KuvuZBv^;+fU}% zSo^m)THbjPHZ zXnu-nhG7L`JR|JPnX;~$c%jBl2e3412 zdM`{itgYFRC3##qZgrJ2bTtWh48BZ!?$ zPK8JI!dc8DEDW2^SzJDywm7QHfuaz++sr6>a;ExCsj8t64whbm{~kh^t)H=k93u>v zdy!F@^A8hZh%bP#-@pxm@)lEMjps~P7R=r?xCP!sO?FXvchnSWV}j~g5pRHgET-tR zgt(eb?~W1w_K~!(AmpAcvOn;yrtSP@aL35bx724X)n?u7%BkKJpF5iNEC^=AeNq%u zzba>#Uoi`wqUT(zJ6>qxqaZA3du@ zXTd+BnOxMI)}pGGR%UfGn$4?P+~P91bm8ICuA#XEa?kPMhF@$wo~Jlfc@lIgXl~o7Qs4H28=yt*KU+YH9HM z>Ew(?lZFPKrhbcte2r1XF_4J`EFld5 zWKuLP8p2A(ss$^EJ%nN?qGuGW25?_ui76Wa4NG!Y)Dlr)GNW2TYI-(z-aw~_y5(MOXf99B8#78u zGlnLP4jw-|^3>o2f=g=f2<%Yua8A+Zjf^oAzo6wV4C$G(Lo@T{bUwE){=}0*2Fz&? zgwHEeAU~6t83J?yGy|cbl%5%KXOV;%8}XTWt1C$}sp+Iz1?U<=Ap?CHrq&04BMzAJ zC-VIwsRW4Ja>cyq?<(=fOFhRo_~T#sgPWn&E84H+CE**nt<-*aT^`w#cP;2G1b7aLyv>e^)qd3Q)Lk!#-$fm^qCXqGux@W1361tM ze+VBOZR0*|@&f&7n=slZe%d7hT?+yT=(Qkl0eVglXaIV~g~2+^yP#GF`PxW5K(MY{ znqOdd!u|qR2mT_faz#$%RpCPpV3jZO=g=Fr71aZwNi=tWJ%Xw#t$1%#^R@+{$k%{! z7=Y3P`f358t`vaW2hfQQxvl&gQT@M#`K-t;Oe4rv!InQ)3k7wtqTqflLoOfWA*=d3 zA+za3q4hr8asvCAg+h2I^nL4rH$$+e5V~zYcM<}xiJ3(P@&WoNJfM4_dLFoJH1IeI zE%8Fe$N+E@*f&n!W6oew(SVNhS&)hO9H_Ek374Bc`Y-}sAr>1Fx1#9UZvi$O zG<(kB9JUqL%MI|bqJT*v-SvPsc+S<5yt)Ec7G@y6&tTeed6b8=!A=;26RGM1Z2=Sq zCu6oQ1MvYdYg*1Va#cqkG*Oi)5^!R+$Ux2gw!t}nMAzS(_&ka6Ckoz|s)=;8z(@1x z=sm_4<1NmZH!P1~s`**d66PqxLJa$}#x!`Cn3|;&-4dO{z;B2~9qSL+oHeU2#FCJ; z*SZ)8_s0#gTk!(u-_k5Rpx1^3WsbhKg>T6fWuT8G*U2Xq}E$uqE zAsxDp;WMdo3&aS;c}yWiNa?wlhrS2|=3ve==}Xx4P|cjBIg3A$&uKB9Vzx_%@QFY* zMV-gS(9D?RIRBIQ*v>#sAcYzo^pW8#rzLggctiKYxFJDRMS|*LH1GI$`YJFbk^4=k zYy{YnS)r>Ukzn7=z@DqS7stwS=$-K^hZm1-MtYac^~k{D@vr#sl>^I1H~9W?^RDlR zAhawAWhwZZeOG3G{mh!wvm}=N?YI0rYyO@Mf8W&u*R-2^_WifqxqRU2(GB^LvfOb? z?p>36H{@tJ5P8>s+Yc)K-$2xT>+s;=A?7+uYoD5eQM+J9k1WtKTfYGU&Qfr7V7p0A z-8~;b%WUi>fmf0-9MrO-)$FL1Mh~e31Z?>+hu~pgu5`WB5Wh&=2 z7|uoA6g3J8`{$@K(;v4b?X$skjy?fXsxKq$#_nrS#RSWnp3SAqd|o#!aYmtdezg-q z+a4?)HPhFD)xb4}$vDo`iwEMJ*`)I^AaMqmFQC-Vp|bNyDRkwhH^uhNV8^XsbS)U& zlplgLtlZpM?isw}6+*rW5xl;NOdyWDa?{({!02*`JaX|~9|WCH%aWg-1m!9C+Xa0L z_tv%v^oa(W==zcUtlIks$z=OxZR|ey@lzYY@sc$DO)yej zdB|Nb4Y?N_$4eo|b55U~H#OsoJqb%3Q7GOL*=Bdo2Ur&^MiJT^&^il}^ko$9uH8R5 z@{ieEPJITj65mniuDxUDWz89TNo)|cHCCD7^6K;hm|gt*1x~<57JDi-lGY|g(W-#c z_8aAIaTeO$7Z}H;F*%U<+rkF@jG+N68=Tx`|qZnl=f)d38sI?2uit!{IDb+lU4#Vok%z z*gi5tZc@!dF`swN(#=SPv4WJrIaOPownq2#8Hdwn+;A@L3_FBbJ@+#}W*Ub-oL6mg zq-~(d>bjq2*39TeT+dHU;V0M`v7HCw#f=r(zIfE$AUwo6u7H8e1|W)teVy1aVZ+uv z=@49h%<9^+Gz*XL0A&nAUEvsp`JD8BO+x=ed|!~^H8T7K8C)ZScX^p%?-IAVjnw~j z6K3D%f!4LOWpg|A_qz&RQ5HO!UJo* zy^DAh9(ee+{~>07InYz#poJtk*j5pdl8C>x;zi0w+ILrw3mnnYztx1)BokqJ%YjEK z9Jc$1?e7UkFJqz-OcyRV7=yTbl>y;>^S^ z$@lj;2LLIk;@PS_78`$e|NVFO-`)SM+y5gF@G^W+`@byyuY-*JJ!P!VX#m2DUki+V z$|ROxk|5a>A!|$61cL2~Jz?j+j)Vih4#k;mOSJJir{c=G6K)Q-DW0r1;m!IIzN|mt z=VdM>kPRk+9Cj44lCQUI}$rM z98t!zI}n#8F9<`focDZ_0<4ZWv|FDN2jY zc>_ji>DAH&d*TFo^h;4`;Qrt}n}Lxy>0!oy(y%myo=(}=IVNqp&7=W2a?fsJonEuY zMvArRe6Enn3lYu%1PqYlqQR5C8cR`uXk=SqZt_yKqe=q zL`_~!si}f2X7kdDB8ys{Q%W1niEOGMN_jDtFNi5+HMORBbFwUnms06#sRj9LCMU_N zm`*LHu4a@>VGX#s@q)OL%gJe3(^6_iSraqa<-A%T!rsm8vZ?f9CMTL# zS&P|q`>EWT?w$tS)Kx{+U2|*8@_Q*2IHOlqt}d&28sh1dj3UkCu4mMIjyQKArxnmb zCN%GN7G+tP#wcaVrL$6gnRkg?#{~@S#yK^=vTQONh2blph%uQZ-^$#`0H%~tlh?4B zwX}KA`7xuzhCkuOSpc810xzUw$vmv}0xC0wa&ws^Sb{^cUE9gn6&AA>|BF||H@zsQ zuZfv?QI!`~loSpTwsJwmVa5^A7V|3#POmIx7IOS7T$R(Q6;0+%S7i}PW*p!QW{mR- zT-wK?xvBYiGD@1r^2YOWs<1+>HBrvd;!@KB4!B97313{r4ilFlJY*@(8|z~7(uGUO z3$w}7zjfiAGsz3*X5YO$lbn8c_R8GlQx|6EuIR#EaNm~KbeC)#D&3Bq`8kfLd3H47 zu=uqywVGG2Y0D|>;HfJ!lkc25eQ@#$9qIJsbY7B^r*bJ}P0MIgaR`L#Q%dIQ)H2`S z`{R4}O=+2eJc-66g|w;V%<@zcoRd{Fno28~DcWPE6pJsf>B9y`lLkAnKRM5VQRlh3 z8^hXzKWz}nE%q|V{K1cpesuKXw?2AnqyN}L-|?S^%f2%kjx#TSz;sX2Jk@i0XVYFZ z3$Z1gSMw`5sr7~uLE(q&hc@VLXzAOI-?K@Mb=x|dw@J3!{+mKcz*cb|h--2MXlQMZGwv6yZ4EW}**#hIB)r%t~!lboCR)}=ES zE+^-{duis1?$zW14!9y0WMH|$eBT8Utu(7@gtsk&ecEkQ%wkmus%;E^PZ{?xx&gBgbsv(e%Idz97EAwg$ z8QlT>p{a*BIKPrhYs3Rcsav;&Kz7 z=gjHpeCB3>@h0S|zoX_u`PZ5Uef-4p2K&3gQ{DEMLp^}JDk9O_R2lLur#oizIXUK5 z-=vyJN@$`g%}YIoTyD$L&5o>(a!juc+%j5zj^xV z8C21qhV#Py`4)Q-v^jVEliTm?tPL=K_|~kkw@_LC%#{^hz!ZlB_>{>kA;5mONp75e zoUPmbgk5$>9>@X5J+oQDDYubLD0wa0@b$lvPqN>3)?2!amJNK#-+=!uND4@fCR*-R z_)<`E!b{MV#xc=XgcEkD@S=*EKNTRJ z%tOQYvHE?mu_RBKGhfh3mpR8`JI#3=y@NoFh7w*HxIjAoo zh?C&wrqu`lXhG68fVO_unJTQ=;OjVwGiRVb)GX{yOnPA z5}_%{D_Y3Feh^LLBVG(C@Z(nrhd-L9eYruRsTae6<^2RS}d?goBKkC~XhE?;Sa!{Xbv7&J|R2|ID~L9x$)UJOK{6lS=#ZY zSxJP>s+Z6~(KDaY3X?cHTJgWbC?_vtMI*~pNfjv+AmvwcNsTe<+NwT3H+M-? zQ@I5hr}{&Aif=aX7gK~O%JcIuu4xuIOp)dT z3zZ8TL!Q*7Q(W)ho>;T9QEcZ$lMVkv_ZUd9*>#turjrEtEq3u-$iOf>J}3meZ%YBx zhZVc9sdHEk-SFv}dbVVlCCc=6#5U5`l4j>vH$7m$a78IxfWa6c4c!lhEI_twIp9^-2>13Y97UFx+#R~(vrw%D_I!@ zhzrP?I*rlCg1Tclh2^_UQ)%BSg(0}}3kx*D)s&jU9@AZLG*g9ws?uRn-=pNWDIvL} zzE8=&qvU&($Vg%#-JVu7JxHdq#e$4#7>d6`SRYVA_N+=;QT+}jX(W1hbCV<=r$jaF zTQz`sm0Hnqs0kz*8Q=WqH4;OM^kq}mhy(S|NfH_eXAM^OL<=SITI@Xa^6w$ap+kn) zw#mxS-ty4i4R^E}8rcZN%kFr!f7^QKX>_O(eWM(G<7eX!qo+6Ay;WcIPU(SfceQWq zGgoEj$@0#V8+|9&-~KYx_qe_L)8HQlYc@yM$XE8Zj?P*;+cvuXZnbY{{q1U~|IR{X z=ujE|LWfM$YUJB5?Y552mtHnFcK6)IyfPb1M!-~FR^Yfiw=+F1XNnhQ|P4Pupn{SOBA*F4CB`1spG zwY|GKvcJ0b+h4gH18du8z8gTaHfE+Wy*qC0Cn1og76fm$Eo^t1lqO5fyz zzR6mYY6e)OzcxrULu_EQ65abCy0^BCYD8*1Owb7H9jT2HG{$y9@RbW7{DWVh5KDQ8oK zUq*<*p*U^^N`Y23?@|kEwUsh#r2v=e%Fh}(+2ti$$x-q_9okzdzfxPtRdSa+CGUOb zJ(Dk2C=B9Ie815cTd2hUzhjKG702B-HbFriQ zxadr#DFm&z^CNExc@h*{D(PV}s8#n2AVBqYv(QorlHOg9eQ^P!C5>pB9)dzmliV>; z_4bwJ1r;iqVzjUg79g&d*OCz46xoK3na{@pDmfJ@nHYM&nn)6N2(lrpC!qV|^?+QQ zi^LTQTN~hY8Ai4Rs_<2;(4A?7b5zb3iWV8{)!mm(NL`_BcfPg@L;u#vs}z)o1=VXb zVwDmu&|?H?lyK30ouE}pZcwsDNs*EQB{?Lz9X)DfB{l>%L5A=SnBv$NY_Zv#G9!ZV zO&Anf(*6+%B8?*u8;||t)vkd`*RFEcu9r^xfENN8;%;EuW*Lnl{{WZLzwn=U8t(q| z_#Ymxgm;(2yDQ;Cxs{`ZJ;l0(N-PN((m9Z1$u@jUX zKVB852oR@gJuGrTc)|RUV2$|$!596^bL45L^W&Qz-K>Ph%c1cKltw6C2^}tn4p%}a z%b}CiuEA=!ui86W9h|K8k5|R|f`u?T-oI@pg+J0SDW#}V}5X}A|9 zkK}w!FG7Kg0RF*sX_K5*pZ8tXn7>i)N6~Xj$3&fOa!XobSaUFW<0*92N91|ksDE?b zfKm&`27Mmpyy|Q8iB)U4BCq9?`yPoPeBX#uZ*WevaEUM$_}rU!khy<6Ru90r0-SHM ze}s~2X}}m)bE-yLmoIH=#xh{3?&9VI$$8&vjp7^4^S7`cGY(c5w&+T}+pOd~^Gf_l zbrHvt9Tr|m(C)NeE$v4rZ^1e37Rp;V#aaRGGFuw6C^vpH6nd~N?P!!(kb0s(@|b@% zCIyyuS-Hlq)RAEY3gq&yfa!GL6qJD^9?rp)-T3KFJGO{$Qhl~r6BraSEAg&oyva-hSb9o!}KcJ!dLnH`w zbC@Vu1r60m{Q!ek)|+gK(ULsgPj>7902i4+!6)_sb_88twF*N0neeFqnb}EKMt^Nz z6^!_&ptr+!0Y@=CRTrboUCnBZm-2@wdO5UlFq_T7gFq zMZAT;4HR;?T4-K43RQfc8r&3jW>agpwq2ukxU4FOBNPTPE5DB|aZS59aw7J%AkqyX z&lk`C=DldLY*1d56^r~x%y64~`BkRwYiu7)C7Gm>xK+Q8L~ov_gGi|n%YBofAcmq9OQ8-x2JMz>h}Pte?VC;MFo<4Rw`La2ovyVjqZ>#>4NT9 z%HutRuMw&?DDh3lUF|=iHtzY1f=Fu?(F6VffIlZ7%kaZwA)iD*T>TNDIVeD`k%G34 zAASvEtbOZFD2{%E?ec#?O8X1!YWU3&w(r2Y{~tnoe%kXW1cPR@GB8yhn0n3vfdiko zACDZUMh2?eMyt_b)ZyPtU)yNsbLQ_j@X6b_IUbo2s=XuC;hmM?L*?N^)g8NEx*Q|j zpS)f3vaaDuWV{?1|IGVEWdE~1G^yD^6;5ZQ_c?QWCf27P_r_Y42-S_j%=@cwYcH}=3c_P8hh*=l9# ze0l2p!=4MzSzBPwC-%pKN2-yYDm>}IedWP@)sY<-+)(EyUJR~du+lzSZXdn-_809_ zwE*zp=|`fK@K`yFJ2{szx_vadp^^INHV@6?AUcV-LEmVlcUQT0 zSEV;z?u~CuoqW`L>gnL{%aDgpCbD@l&!V7Pv!hek+x`$v`)8#`!DEkn$Ew?7>*pT% zM-XQSbW}s#m5}%#BywQ%L1>f%J0FC0K8^I>IrE<`{P~5A@Q(E}ym3Du6Mi4e)@NFd2EVY5emJg*Zd>NE_w;&=5zsO$qG1?m5O3RTr5vytPi1?F~U({E-esy3z z!x4>;un66v=9h8%g?j~V@*uR{q&_VB2oDl1!F`n9D41`ZEER4AD2|HXS(I`4pb{}7 zhJnq6r!a`QX7GNgPKBtAm~vj5G~U9Eh}ZdRK(r9KT8fKjL|pwKrmc$1gBn#th> z4i6^a9Y&D4MN{)tpB}=a3+#Lfr4T-v75LjdGaM6hsbo{@ZE1cnqjn;r{w0;zsjtr| z+kpgl{AB|VV{qMhpQ?BSf zaYeoBp_lEfeGqn68S*t6qkuvGIJ6MO2^?meAlAm;X{fZ})psc2&7yo^VtIK;zKKP8kRl45sZWm%EmhlepC#^do1EOLCLL%@i64PKt2 zCXHb4UXnj z^bxbI5>Ag6A{L;>5M%=4F@!fsfkiw{2JBBJKU_&EMh$<;0G+|#4B|d=F)ta>M<0Lr zV3yEri2A#f{6|WDOvz7>=mGPEL|Voy@;$2fZ`k?2zRkX} zIh;qJ5ZXGQ+nmmU7j{53f?$fZb<{f9*v@KSe=U4caC)EiZm&5BfZfvBTXS*H&3eab z9u9h0=RnQJK|kvlss%V0WW58m5C_{?&v31SgPknWV^D<+>BMO8i@~5T7eQ_smWLoO>mIN92!gH~s09cL zvgo#2h@f^hyuH>zP$%mjs)Y%Pu;@^&i=b}SzlZlw>t){V=Y1$M2S&BaLP~HBJPr2L zoCKJx;GmlZ;^Cmd3J&_2cjQHYgJ+4m&uwn!sL5wQcv%(SSB>wh`T8-Z4v@t!Q5~qc z2m*h1*E|Gy+3*C%!koN4zY3s?tL9e(2S0HrJ&tw$deV9?{{H**2c8q6@uqwNI>dZ4 z_Q3=>^v2UM^=D`po7P>)q?At^TXuehUfCv-D%o4Qi>@l+kgMA%=b;yN1#EnchtYL6 zJQ?ok@YiX2TVZXPaJjf639gcM$3y8&F?HjX7B6G@^`;))T+1&ERMP)?$Cer;W4t8V z_DXr2u5@oeSMmRMK=o7CbXleMZbp@Fq-DcV=T07fPN)xV#^I#!KGRfthEgM6xanHJ zz}c*dxN_6SHY3u-f}+K@Xilyh^({0_)J-~74bvpH3@|4b=m9c_@)!Fm2|sVqt8LKkm8bIDZP)u-Ba<)9z5lKArx6e}^VUZlY{8?ZdmH*6NmNoL`oQLna94w+ z;n(4KvS8?25qRn_A$wrMzr(NTRl4!urn?cI@E9-1XJ+5iJ7zAOpZQkuJLhL+-bqfM znm#|HdoIs>+jwKH?xS`T_v6nk4XHd$*$GN^A^F;U%+L^Tsb3%qLCv%$NNRRL5T4nb zg5#?o6Gs1@1%JUjPuSoS7X2lQm09e6vU5+^t|x5g6L$Owd+(R*{1bNg2|MMgX7wzXI_FuDbvL literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f56b6c3af3962748adf96cb5864d89253b379acb GIT binary patch literal 11268 zcmb_CYj6|SdS_R=(#n!0zaKKT$~xikGyDCs2q(doUncjgBAvwu)*#+t?HrIU1~`DY^EA*FYw{l2pg zNwy%#OpmQ^&z{G3cE9tz&;DCwWd(uKV*B5b+iM8<5^v1H>lG&dIYY>0@(K}&$izv4 z2{8=T**F_w>D3mp(JL3?=#>xg^lA^;;cAOJ5<*CzbGW!OQ4y+0xI!*^&&S<~%1~v( z6Y?ayA#b88R7KnE@#;iPsD{=Z@!CXPsE*c!czvQF)IjUbcw?d|)I{qQ@#cgt^e2v0YYP|_>f+f@@xtuJcrrmYRo+Gx#RE3uA=tu2{9r87Uo3e0tYP2i!5BZv@Ku5sO7d_dDn$*}p~w&uFaeWqpqNyv z&)kml%nc@ZgVAb(DRnS07N;*Pi3eplB||f(Nbz9>XZat+HczDFGs+mOp==&Hxar8= zecLw;;rm86?N5nPcrVaCt;Cegy=SH5+0F6Tsm)_)btIMC*1PrT%}Pv_Ho@dGk<&1L zEH<_o2nNp#lQu`=vCWG99!l?68kU8dO#RAN>&51Fc$mBkz!X{Zbj*3W?g(9ZxFu18 zY*+`;_|6xX8)1yx1mFfMx4=bn4aXt`4z6w8K?MGXa-YL%A;!RY7_)!9BQN3nuw92d%u9LPR3?`{ zi#CMjs$d&9cv{>>TGGHA!9$N2|0CYt+uQ4xkurfw;FpA?C?G+=N@+#2E2@|pS2aF7 z90O(NIu=o-Be4WXnygiZK{HC>xN+-*A;`j#s5!A;O{Ls9EpMk2DJwIl$+_?U=mQn@~hk|cqG6cq*c#E(UnCg6H_ z7Bw8sw5(>FUbC|YCMn|prpQtiY4%TZ?^Whp-szo-wGEdC{%ToC*WU>o zm}@;a&CLtGTyq;VdcJDuzV_Ue=dKUTwe(?o(|y5xv0|oTL1@YfO|!LE-=1sVl5O7d z=`;Vl>mPSzoA-RypKX3&UU)Ir&^XP#@1hb^qEamO{ZpNN%WkdAzCg}1$a6so*>%4- z1KjBY2kh7_q_5xV#s4zq32%uE}|87rY%=Z^weSC+qE*_Xe;Lw#PN&`ryE9-9mF9 z+Z>py+i+KSYPCcoZ%~8uE2w-2MJ=-fLyaOpD(=%Q8UbN?<6ADi{hh zf>wtiF%`!_MN?@(8W*HRMykmj0E*oi>P?gt0^LRgar|BYC8XA=dg;i#&{4v^vvu=A zTS*Jm!mXf1J(T7k$j{+ptVgg1K*lq8^aQv zYv?q|-3WRB1e|gJ>l+X}g`gTiErR_BC@C!ON#2NU=$`4!){8X+h*fzBzy-1-5Px^h z*K>bU@13oCvzzuVRo3uL_p9rcc({TZ@U|{FuqKfDrX?rV++^KTc^s8rU%_|fn|OZX zvd7N1=_?`rDEzEquo08To+1y-4t^E`ewGdVEb82YpJfC8iU&W7`dw)r{H%JQ)@t#H z7V{?7;m71p(FIDKEb0=?ym3>3YCpd|-aKnK!o7$;Ipqu*@J^=8ld&Yg~ zwYx(5YO%Kz>4$*mv0_gR`43m63{fqgu`Kz}H7KJ*0SuLw5t92pi;f` z{H%B_aV2s6$9IKibkbV<1UM}2I}10DCGG#SjVjitz>z?@Dn*UO<9>NOnT#b*g99Dl z3f4$QS(lMAU+mZeZL>O=nFhn%OA%f2u{FHX#jA6EVCT%&%15>_Iw4;2bMjYsjhKg6n<7= z^%|4Mrzld_ypf5q8_F7kWKh;=4s2aN3@r&95D9D|llN03Pg2R0ef40E)z*Zc5K}>t zARbXvQ?=?D3>m3dvXMxlOkGi2XsJ?^P^AU{Y~aSj7$OC7UER~%U7>lkTwAX&3==Ms zLLO-p?pGGmS2+hKmqFEe7Q*I3~2cw!;7?OoEl3=@+nwEjsP(Id|NU#q4A;= zS0kln1f@GuUHrzf1kNXhNrvbydTK7lW@7K2nYQJsYA=Zk4Lw=-uj-lRbKbgHZlP&M z7XH0E?g%@cK#D%V_pTj4oTNuqiYS6=BVAxBfT#%NqYFAH-`EWb7{ z*!Y3v3WnEJoX+~i_5e*`7qb3up!G$XUTIRJ}1bPN&ExQZp zph+tUbB;;6RD3&Hirbw;MYoccCqKXGM{S39on$_=U1n(7AC4i+L^-yXO(7M<1!*AK zRtSwIScbd?m>BY2%Nw@W$OO|xR8(TLbc3_|SZqaJ+IgZjeXlu1*5o{yAo_~`V4Gk9 zTu|dg@YFRS8c9Z_IAoD{33J4OO8FVUEpG>)*<(sXRnziocvB52@q@#|5={yok!SW%4|3?4d4oo}j}waSs02)XlcbX-KCQ-sZ>N3slzLekExpT;2Tki zCh~!&(R6_4304^bh+>_mxl?0+%jl7jXMYAiu8#H z_^zH^Xz$Oq_s_NO`0cB|JNfIApSKS#cK3ZcG1vXvjN_}Cp6iaenl00gCANZZU##?9 z-F9u@%D`OZx(9@D`f@eR@4WQT2DPOc;;g#pnekjYdsk?CSc^?K;(xw!t@(zqyeB7k zX?F%Zs+>@{=&CDeo|qTfp?Qgip?_3R!JOaQvcHA7)z-YPlicd(_chpV?G&JXo2!BL z+YS7_cE{}&2ex$f?QgREYm*JyqcGDdsJo#s`Ii9}*)XOMY?LH?jliR%%?Lt7my!H+ z8_8b>X1Z`364L&$NK%SZT=-lQBltuVQ#683B0UgVAMi)U;d${i16l!rN}nk* zHYTUW3&u$u86AT4s&Y;nn6{FF( z-wG`X`peXMkWhxPFkdj|gEIkgOAhJTG^fVLBd4UeJOKSN=DGBE88b1EEH<_%tYUVC zW)f%u*kPP%fxxxk6lzA1ql{dx9CU;)d?_*)ohCT;3{G+C?XWk23E*Rq4=Wpk|% z#})Fni;e5%8rNUnmTl~X1cF<)zZMYz9WLI5LvVdN(Bv=8#u{?#vBI^yr)0hBrbRO4Xgp!VXK znKSPu=7g62R&a~Y*EKLDkvr}*yr?OsPkyO$wkLBIa3Kqa8V2DkZ%Td(7LhS8tJy$5 zgTp{~75xf%3R^kcfBJkVD|))#eEo!eB>IHcw?=#dxRg!+kh`~&s=AAB&b;~VxoK|E z>$~{&%-gdQ*BzhM&3XIo2z{$PEM#&@h~Gfvalw(|D-ZxkWeE*TF-nn08Dt=&kj^X{ zgO^QN19p#zvv8#;eoGt+?Kh1l8NxtR#<<$dV+WzG=RM!VS|tEYh$xDbfWv5c65CL^ zRt2TFWtoPR45u^jKS7^@mJpnH;IOyed26v_?JvcJb$!`&eRCcC(+B3=ZC^ppxtVjb z$FH5da`O5!pA6g>_;lhkZeh={?4DzD-l03fkiH3qr2uqA2dI9yfla`}G;F7(G>-&F z^tKF~1gFMy-3=Dr4+`234y!-nhj1|xH$zY3{HXVM5EKd}164IA0Bf-cryjuSch)1% zf5E}%rcIIitzCxhD2^~WosR2aNFkU6pO%!WK6yyZ9A@~S>3I@Ly$OD$=g}jI7H!pc?{F+>2 z+ma2hfqr_u@2t=BaKBW+@%^+Duht9-!*Gf<5+0Lecq9lE0goCjb93tIl*(^Q~$YV-PM+lTBi;#dRk|tIZrp#oR!n3=Qj*| zc6i=-zXkEnKEif5Q|O`n6`3r(DS3EFbC!4`;RV; z9d(z>DWgEk2?Q7(%1HzT)}=?guIC3291QP&<=D{CW14H|`J=BIHvvZ81LKR&3V(w0 z5!}NL$QbF&`3Hdr-bDzZ1Oi!}6Ei2?d;RM0LR(+9t#7XF+28j6Zs)Iee%^K%Mi}R_ zAN&Ynt|ivy>;{&+@2#*t`9PBVo)Tlwrw3Lo2SuL;$zcm^jhp&_1TO%3yRI3307ac$NWJ?bZ z=*G~%Uc`QHG!>6yBoCjv^+rxbWwZvGT}@+7Tt>0bKXq$@&$@cU@b#CNl6z5&^cs$} zOwBH}xYU56#ntLpjmB_|>Mm_HCd0SXo!8YHOgr2nM*)qzuXmB9n4Htch2t=f3j`h%0$Z61AnC3AEn}{Ug zqaB$hBXkY@K90VK;1UAL&ZX|bBVnihMc8inZ(sDwhRZfr3k+z(#{WGrlTHUjk>4*2Z3bk9x%7!UPvSDPLtm~Sd@uvEqYR@X#uZ^*y zk4$kWt7D{UBXp;k>L6=9>GD|7Oat{zWjH_sML+0ks)ioLk#sK`d+i6<(o0}BgKyz{ zN+R2F2{dG3DE6-fBerAD5u^~iNDOR0As&Ifr5h}v@4dh%i6>!j)w{Ta#EV^lny2Y>Uij|qyiTv@4 None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + # Don't complete if autocompletion environment variables + # are not present + if not os.environ.get("COMP_WORDS") or not os.environ.get("COMP_CWORD"): + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: str | None = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ``
    `` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + + # Complete sub-commands (unless one is already given). + if not any(name in cwords for name in subcommand.handler_map()): + for handler_name in subcommand.handler_map(): + if handler_name.startswith(current): + print(handler_name) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: list[str], cword: int, opts: Iterable[Any] +) -> str | None: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..7acc29c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,244 @@ +"""Base Command class, and related routines""" + +from __future__ import annotations + +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Callable + +from pip._vendor.rich import reconfigure +from pip._vendor.rich import traceback as rich_traceback + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: TempDirRegistry | None = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: list[str]) -> int: + raise NotImplementedError + + def _run_wrapper(self, level_number: int, options: Values, args: list[str]) -> int: + def _inner_run() -> int: + try: + return self.run(options, args) + finally: + self.handle_pip_version_check(options) + + if options.debug_mode: + rich_traceback.install(show_locals=True) + return _inner_run() + + try: + status = _inner_run() + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("%s", exc, extra={"rich": True}) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + def parse_args(self, args: list[str]) -> tuple[Values, list[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: list[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: list[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + if options.debug_mode: + self.verbosity = 2 + + if hasattr(options, "progress_bar") and options.progress_bar == "auto": + options.progress_bar = "on" if self.verbosity >= 0 else "off" + + reconfigure(no_color=options.no_color) + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + always_enabled_features = set(options.features_enabled) & set( + cmdoptions.ALWAYS_ENABLED_FEATURES + ) + if always_enabled_features: + logger.warning( + "The following features are always enabled: %s. ", + ", ".join(sorted(always_enabled_features)), + ) + + # Make sure that the --python argument isn't specified after the + # subcommand. We can tell, because if --python was specified, + # we should only reach this point if we're running in the created + # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment + # variable set. + if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + logger.critical( + "The --python option must be placed before the pip subcommand name" + ) + sys.exit(ERROR) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + return self._run_wrapper(level_number, options, args) + + def handler_map(self) -> dict[str, Callable[[Values, list[str]], None]]: + """ + map of names to handler actions for commands with sub-actions + """ + return {} diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..a473775 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1110 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False +from __future__ import annotations + +import logging +import os +import pathlib +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if not options.dry_run and dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target' or using '--dry-run'" + ) + + +def check_build_constraints(options: Values) -> None: + """Function for validating build constraints options. + + :param options: The OptionParser options. + """ + if hasattr(options, "build_constraints") and options.build_constraints: + if not options.build_isolation: + raise CommandError( + "--build-constraint cannot be used with --no-build-isolation." + ) + + # Import here to avoid circular imports + from pip._internal.network.session import PipSession + from pip._internal.req.req_file import get_file_content + + # Eagerly check build constraints file contents + # is valid so that we don't fail in when trying + # to check constraints in isolated build process + with PipSession() as session: + for constraint_file in options.build_constraints: + get_file_content(constraint_file, session) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; exit with an error otherwise." + ), +) + +override_externally_managed: Callable[..., Option] = partial( + Option, + "--break-system-packages", + dest="override_externally_managed", + action="store_true", + help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", +) + +python: Callable[..., Option] = partial( + Option, + "--python", + dest="python", + help="Run pip with the specified Python interpreter.", +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=["auto", "on", "off", "raw"], + default="auto", + help=( + "Specify whether the progress bar should be used. In 'auto'" + " mode, --quiet will suppress all progress bars." + " [auto, on, off, raw] (default: auto)" + ), +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +keyring_provider: Callable[..., Option] = partial( + Option, + "--keyring-provider", + dest="keyring_provider", + choices=["auto", "disabled", "import", "subprocess"], + default="auto", + help=( + "Enable the credential lookup via the keyring library if user input is allowed." + " Specify which mechanism to use [auto, disabled, import, subprocess]." + " (default: %default)" + ), +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum attempts to establish a new HTTP connection. (default: %default)", +) + +resume_retries: Callable[..., Option] = partial( + Option, + "--resume-retries", + dest="resume_retries", + type="int", + default=5, + help="Maximum attempts to resume or restart an incomplete download. " + "(default: %default)", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def build_constraints() -> Option: + return Option( + "--build-constraint", + dest="build_constraints", + action="append", + type="str", + default=[], + metavar="file", + help=( + "Constrain build dependencies using the given constraints file. " + "This option can be used multiple times." + ), + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> tuple[tuple[int, ...], str | None]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = f"invalid --python-version value: {value!r}: {error_msg}" + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help=( + "Prefer binary packages over source packages, even if the " + "source packages are newer." + ), + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + + +def _handle_dependency_group( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --group option. + + Splits on the rightmost ":", and validates that the path (if present) ends + in `pyproject.toml`. Defaults the path to `pyproject.toml` when one is not given. + + `:` cannot appear in dependency group names, so this is a safe and simple parse. + + This is an optparse.Option callback for the dependency_groups option. + """ + path, sep, groupname = value.rpartition(":") + if not sep: + path = "pyproject.toml" + else: + # check for 'pyproject.toml' filenames using pathlib + if pathlib.PurePath(path).name != "pyproject.toml": + msg = "group paths use 'pyproject.toml' filenames" + raise_option_error(parser, option=option, msg=msg) + + parser.values.dependency_groups.append((path, groupname)) + + +dependency_groups: Callable[..., Option] = partial( + Option, + "--group", + dest="dependency_groups", + default=[], + type=str, + action="callback", + callback=_handle_dependency_group, + metavar="[path:]group", + help='Install a named dependency-group from a "pyproject.toml" file. ' + 'If a path is given, the name of the file must be "pyproject.toml". ' + 'Defaults to using "pyproject.toml" in the current directory.', +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + +check_build_deps: Callable[..., Option] = partial( + Option, + "--check-build-dependencies", + dest="check_build_deps", + action="store_true", + default=False, + help="Check the build dependencies.", +) + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=True, + help=SUPPRESS_HELP, +) + + +def _handle_config_settings( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + key, sep, val = value.partition("=") + if sep != "=": + parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") + dest = getattr(parser.values, option.dest) + if dest is None: + dest = {} + setattr(parser.values, option.dest, dest) + if key in dest: + if isinstance(dest[key], list): + dest[key].append(val) + else: + dest[key] = [dest[key], val] + else: + dest[key] = val + + +config_settings: Callable[..., Option] = partial( + Option, + "-C", + "--config-settings", + dest="config_settings", + type=str, + action="callback", + callback=_handle_config_settings, + metavar="settings", + help="Configuration settings to be passed to the build backend. " + "Settings take the form KEY=VALUE. Use multiple --config-settings options " + "to pass multiple keys to the backend.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +json: Callable[..., Option] = partial( + Option, + "--json", + action="store_true", + default=False, + help="Output data in a machine-readable JSON format.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + +root_user_action: Callable[..., Option] = partial( + Option, + "--root-user-action", + dest="root_user_action", + default="warn", + choices=["warn", "ignore"], + help="Action if pip is run as a root user [warn, ignore] (default: warn)", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + f"Arguments to {opt_str} must be a hash name " + "followed by a value, like --hash=sha256:" + "abcde..." + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help=SUPPRESS_HELP, # No-op, a hold-over from the Python 2->3 transition. +) + + +# Features that are now always on. A warning is printed if they are used. +ALWAYS_ENABLED_FEATURES = [ + "truststore", # always on since 24.2 + "no-binary-enable-wheel-cache", # always on since 23.1 +] + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "fast-deps", + "build-constraint", + ] + + ALWAYS_ENABLED_FEATURES, + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + "legacy-certs", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + +########## +# groups # +########## + +general_group: dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + python, + verbose, + version, + quiet, + log, + no_input, + keyring_provider, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + resume_retries, + ], +} + +index_group: dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..9c167bd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,28 @@ +from collections.abc import Generator +from contextlib import AbstractContextManager, ExitStack, contextmanager +from typing import TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Generator[None, None, None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: AbstractContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py new file mode 100644 index 0000000..f6a82c8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py @@ -0,0 +1,175 @@ +""" +Contains command classes which may interact with an index / the network. + +Unlike its sister module, req_command, this module still uses lazy imports +so commands which don't always hit the network (e.g. list w/o --outdated or +--uptodate) don't need waste time importing PipSession and friends. +""" + +from __future__ import annotations + +import logging +import os +import sys +from functools import lru_cache +from optparse import Values +from typing import TYPE_CHECKING + +from pip._vendor import certifi + +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._internal.network.session import PipSession + +logger = logging.getLogger(__name__) + + +@lru_cache +def _create_truststore_ssl_context() -> SSLContext | None: + if sys.version_info < (3, 10): + logger.debug("Disabling truststore because Python version isn't 3.10+") + return None + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError: + logger.warning("Disabling truststore because platform isn't supported") + return None + + ctx = truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + ctx.load_verify_locations(certifi.where()) + return ctx + + +class SessionCommandMixin(CommandContextMixIn): + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: PipSession | None = None + + @classmethod + def _get_index_urls(cls, options: Values) -> list[str] | None: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> PipSession: + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: int | None = None, + timeout: int | None = None, + ) -> PipSession: + from pip._internal.network.session import PipSession + + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "legacy-certs" not in options.deprecated_features_enabled: + ssl_context = _create_truststore_ssl_context() + else: + ssl_context = None + + session = PipSession( + cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ssl_context=ssl_context, + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + session.trust_env = False + session.pip_proxy = options.proxy + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + session.auth.keyring_provider = options.keyring_provider + + return session + + +def _pip_self_version_check(session: PipSession, options: Values) -> None: + from pip._internal.self_outdated_check import pip_self_version_check as check + + check(session, options) + + +class IndexGroupCommand(Command, SessionCommandMixin): + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + try: + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + ) + with session: + _pip_self_version_check(session, options) + except Exception: + logger.warning("There was an error checking the latest version of pip.") + logger.debug("See below for error", exc_info=True) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..9a161fd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,80 @@ +"""Primary application entrypoint.""" + +from __future__ import annotations + +import locale +import logging +import os +import sys +import warnings + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: list[str] | None = None) -> int: + if args is None: + args = sys.argv[1:] + + # Suppress the pkg_resources deprecation warning + # Note - we use a module of .*pkg_resources to cover + # the normal case (pip._vendor.pkg_resources) and the + # devendored case (a bare pkg_resources) + warnings.filterwarnings( + action="ignore", category=DeprecationWarning, module=".*pkg_resources" + ) + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..5ce9f5a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,134 @@ +"""A single place for constructing and exposing the main parser""" + +from __future__ import annotations + +import os +import subprocess +import sys + +from pip._internal.build_env import get_runnable_pip +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def identify_python_interpreter(python: str) -> str | None: + # If the named file exists, use it. + # If it's a directory, assume it's a virtual environment and + # look for the environment's Python executable. + if os.path.exists(python): + if os.path.isdir(python): + # bin/python for Unix, Scripts/python.exe for Windows + # Try both in case of odd cases like cygwin. + for exe in ("bin/python", "Scripts/python.exe"): + py = os.path.join(python, exe) + if os.path.exists(py): + return py + else: + return python + + # Could not find the interpreter specified + return None + + +def parse_command(args: list[str]) -> tuple[str, list[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --python + if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + # Re-invoke pip using the specified Python interpreter + interpreter = identify_python_interpreter(general_options.python) + if interpreter is None: + raise CommandError( + f"Could not locate Python interpreter {general_options.python}" + ) + + pip_cmd = [ + interpreter, + get_runnable_pip(), + ] + pip_cmd.extend(args) + + # Set a flag so the child doesn't re-invoke itself, causing + # an infinite loop. + os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" + returncode = 0 + try: + proc = subprocess.run(pip_cmd) + returncode = proc.returncode + except (subprocess.SubprocessError, OSError) as exc: + raise CommandError(f"Failed to run pip under {interpreter}: {exc}") + sys.exit(returncode) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..3905a91 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,298 @@ +"""Base option parser setup""" + +from __future__ import annotations + +import logging +import optparse +import shutil +import sys +import textwrap +from collections.abc import Generator +from contextlib import suppress +from typing import Any, NoReturn + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: str | None) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: str | None) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> list[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: dict[str, list[tuple[str, Any]]] = { + name: [] for name in override_order + } + + for _, value in self.config.items(): # noqa: PERF102 + for section_key, val in value.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as its value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + yield from section_items[section] + + def _update_defaults(self, defaults: dict[str, Any]) -> dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> NoReturn: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..af1bb6a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,151 @@ +from __future__ import annotations + +import functools +import sys +from collections.abc import Generator, Iterable, Iterator +from typing import Callable, Literal, TypeVar + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + MofNCompleteColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.cli.spinners import RateLimiter +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import get_console, get_indentation + +T = TypeVar("T") +ProgressRenderer = Callable[[Iterable[T]], Iterator[T]] +BarType = Literal["on", "off", "raw"] + + +def _rich_download_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: BarType, + size: int | None, + initial_progress: int | None = None, +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("{task.fields[time_description]}"), + TimeRemainingColumn(elapsed_when_finished=True), + ) + + progress = Progress(*columns, refresh_per_second=5) + task_id = progress.add_task( + " " * (get_indentation() + 2), total=total, time_description="eta" + ) + if initial_progress is not None: + progress.update(task_id, advance=initial_progress) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + progress.update(task_id, time_description="") + + +def _rich_install_progress_bar( + iterable: Iterable[InstallRequirement], *, total: int +) -> Iterator[InstallRequirement]: + columns = ( + TextColumn("{task.fields[indent]}"), + BarColumn(), + MofNCompleteColumn(), + TextColumn("{task.description}"), + ) + console = get_console() + + bar = Progress(*columns, refresh_per_second=6, console=console, transient=True) + # Hiding the progress bar at initialization forces a refresh cycle to occur + # until the bar appears, avoiding very short flashes. + task = bar.add_task("", total=total, indent=" " * get_indentation(), visible=False) + with bar: + for req in iterable: + bar.update(task, description=rf"\[{req.name}]", visible=True) + yield req + bar.advance(task) + + +def _raw_progress_bar( + iterable: Iterable[bytes], + *, + size: int | None, + initial_progress: int | None = None, +) -> Generator[bytes, None, None]: + def write_progress(current: int, total: int) -> None: + sys.stdout.write(f"Progress {current} of {total}\n") + sys.stdout.flush() + + current = initial_progress or 0 + total = size or 0 + rate_limiter = RateLimiter(0.25) + + write_progress(current, total) + for chunk in iterable: + current += len(chunk) + if rate_limiter.ready() or current == total: + write_progress(current, total) + rate_limiter.reset() + yield chunk + + +def get_download_progress_renderer( + *, bar_type: BarType, size: int | None = None, initial_progress: int | None = None +) -> ProgressRenderer[bytes]: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial( + _rich_download_progress_bar, + bar_type=bar_type, + size=size, + initial_progress=initial_progress, + ) + elif bar_type == "raw": + return functools.partial( + _raw_progress_bar, + size=size, + initial_progress=initial_progress, + ) + else: + return iter # no-op, when passed an iterator + + +def get_install_progress_renderer( + *, bar_type: BarType, total: int +) -> ProgressRenderer[InstallRequirement]: + """Get an object that can be used to render the install progress. + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_install_progress_bar, total=total) + else: + return iter diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..f6d7f81 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,371 @@ +"""Contains the RequirementCommand base class. + +This class is in a separate module so the commands that do not always +need PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +from __future__ import annotations + +import logging +import os +from functools import partial +from optparse import Values +from typing import Any, Callable, TypeVar + +from pip._internal.build_env import SubprocessBuildEnvironmentInstaller +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.index_command import SessionCommandMixin as SessionCommandMixin +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_dependency_group import parse_dependency_groups +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import BaseResolver +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) + +logger = logging.getLogger(__name__) + + +def should_ignore_regular_constraints(options: Values) -> bool: + """ + Check if regular constraints should be ignored because + we are in a isolated build process and build constraints + feature is enabled but no build constraints were passed. + """ + + return os.environ.get("_PIP_IN_BUILD_IGNORE_CONSTRAINTS") == "1" + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +_CommandT = TypeVar("_CommandT", bound="RequirementCommand") + + +def with_cleanup( + func: Callable[[_CommandT, Values, list[str]], int], +) -> Callable[[_CommandT, Values, list[str]], int]: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper(self: _CommandT, options: Values, args: list[str]) -> int: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.dependency_groups()) + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "resolvelib" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + build_tracker: BuildTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: str | None = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + legacy_resolver = False + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "resolvelib": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + legacy_resolver = True + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + # Handle build constraints + build_constraints = getattr(options, "build_constraints", []) + build_constraint_feature_enabled = ( + "build-constraint" in options.features_enabled + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + build_isolation_installer=SubprocessBuildEnvironmentInstaller( + finder, + build_constraints=build_constraints, + build_constraint_feature_enabled=build_constraint_feature_enabled, + ), + check_build_deps=options.check_build_deps, + build_tracker=build_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + legacy_resolver=legacy_resolver, + resume_retries=options.resume_retries, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: WheelCache | None = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + py_version_info: tuple[int, ...] | None = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "resolvelib": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: list[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> list[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: list[InstallRequirement] = [] + + if not should_ignore_regular_constraints(options): + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + comes_from=None, + isolated=options.isolated_mode, + user_supplied=True, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + if options.dependency_groups: + for req in parse_dependency_groups(options.dependency_groups): + req_to_add = install_req_from_req_string( + req, + isolated=options.isolated_mode, + user_supplied=True, + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=True, + config_settings=( + parsed_req.options.get("config_settings") + if parsed_req.options + else None + ), + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not ( + args + or options.editables + or options.requirements + or options.dependency_groups + ): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: TargetPython | None = None, + ignore_requires_python: bool | None = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..58aad28 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,235 @@ +from __future__ import annotations + +import contextlib +import itertools +import logging +import sys +import time +from collections.abc import Generator +from typing import IO, Final + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + RenderableType, + RenderResult, +) +from pip._vendor.rich.live import Live +from pip._vendor.rich.measure import Measurement +from pip._vendor.rich.text import Text + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_console, get_indentation + +logger = logging.getLogger(__name__) + +SPINNER_CHARS: Final = r"-\|/" +SPINS_PER_SECOND: Final = 8 + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: IO[str] | None = None, + spin_chars: str = SPINNER_CHARS, + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 1 / SPINS_PER_SECOND, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +class _PipRichSpinner: + """ + Custom rich spinner that matches the style of the legacy spinners. + + (*) Updates will be handled in a background thread by a rich live panel + which will call render() automatically at the appropriate time. + """ + + def __init__(self, label: str) -> None: + self.label = label + self._spin_cycle = itertools.cycle(SPINNER_CHARS) + self._spinner_text = "" + self._finished = False + self._indent = get_indentation() * " " + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + yield self.render() + + def __rich_measure__( + self, console: Console, options: ConsoleOptions + ) -> Measurement: + text = self.render() + return Measurement.get(console, options, text) + + def render(self) -> RenderableType: + if not self._finished: + self._spinner_text = next(self._spin_cycle) + + return Text.assemble(self._indent, self.label, " ... ", self._spinner_text) + + def finish(self, status: str) -> None: + """Stop spinning and set a final status message.""" + self._spinner_text = status + self._finished = True + + +@contextlib.contextmanager +def open_rich_spinner(label: str, console: Console | None = None) -> Generator[None]: + if not logger.isEnabledFor(logging.INFO): + # Don't show spinner if --quiet is given. + yield + return + + console = console or get_console() + spinner = _PipRichSpinner(label) + with Live(spinner, refresh_per_second=SPINS_PER_SECOND, console=console): + try: + yield + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +HIDE_CURSOR = "\x1b[?25l" +SHOW_CURSOR = "\x1b[?25h" + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py b/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..bedeca9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,139 @@ +""" +Package containing all pip commands +""" + +from __future__ import annotations + +import importlib +from collections import namedtuple +from typing import Any + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "lock": CommandInfo( + "pip._internal.commands.lock", + "LockCommand", + "Generate a lock file.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "inspect": CommandInfo( + "pip._internal.commands.inspect", + "InspectCommand", + "Inspect the python environment.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> str | None: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da45ee5ca4c1b3d2240a97866f8b30651ce8c1ce GIT binary patch literal 4129 zcmaJ@&2tmU74OmKSh6G=Y-2En0c?W+Ntll%F)YN`7|e$u>t#vIQd47f%NjhI(e{k& zl~%6OAs1?^l2AFoAqNggRZ`@TV=DhbF1UQy$<%HY)YcwybK=cqFUjj}jdr|2nX+5m zzu)U$zkdDt<8P@{0>L*D{!jU@8HB!O4gZUainN152t7v+5JpP~OE_dmmC#a1V)d{Q zUJAo+#E4X)OHqzRjaVhV6zBDrAy;~qdL)n_Q5?teE6`%!QbI?#2hapg;3V#S6&Cn! zB%I=C8fS1{0PW}K9=sP11kgc_4&i-xIDqcw=m9)}4+hXtjvm5?u@XR!aP%lXhQ|Wv zI7cV&aeN|xW;uEipTegDXpWQ#U$70twU z;vZ}svyzw8Ow)2SN4HFS0on;us}Stess@2pc-pMPPkcsn^OEh#yjijuO2xu8gQ!)_ zDW6t~hGyF;>wQ|WYcL9}dvV>g9T>WC2*%E=^%QyPlZKW!v zV&}bxVHH;!BVB|T=_T(#=}QdWASR)jLljM6tWweqlJ{h6t(%6W;l|-EQoezgnQfc; zl6!n0;8sr!;wvV}0{pH?b}YQU2fnc{xwnG^G-D-7NP{#+y9f%}OU-dJUuyDR&8gNL zrR@&E9Yuf?N^{JAg^Z(X|@qB$)#UJZ1tPg7|PMIjxx>L4H zg_vtPwM;ewTP@vox~~?Huv$?1g2Sxw4%b1+E?etel^E$I7oqf(PO=6li8(@AE84R4 z&amXYXt7KnsSb9DGiSZt8D`|mU;Kzry;OgPt4dj0V|%Uw`$1neh=NI#n3$MFok0G^ zU^kZZmBv`N!8l!mj0K;)ftg^_AAI7jX0nY9`K%cV>|#$7Fk%d3XN9{TeXT9Es%r$?U zv1>Kmz`|YFGfcK_)#$FR1o>Ik>~h!qWTcn838k-k3@Wfq38af%CbnXgI?l2+)7O}{ zi6R&ogr!2`NY{k%O}u`lDa`$0a??tg7*#_3BVVc6a3rv01#NZ*@KhC@AUv2X*H*fQ zhqGSqEHm;)nE0QK1|yVe1|NfWSb>{|1ql4;9v~ngKv4R+`?xOa6!g~4H-@lYbRO9b zJ*~8D*){aoOSLCttIVJ%i5ChlV^Ag$l6F3Y%5&s&s3zJE^^f5-vk}?|Z$zB-y9S{r zk&aQP(hR+7t8PS{_InGVX0#dh-$@&>5NgJ7sEL{pEd4grlzu1uQrd_&a!!XJs)w2D(kva=I{z+gQ>7PHO~dIAuqyOUc7z7{t;y(^fdVC z_2`wVMIA$5_EMs%itE{nuMoK39h#MCo>|6L*EPCgd&$7{4GGt|zG;D5wR`))Rk?u| z_hT)C5t|eHzB3E!7G1UBvL<$6@p|sg^tB7QMfR#F=4LER)M>c&>$Ywe@-U&b0(e;v zx5l~rjN(yewiBjA~m*|8hiO@D>d1g`*L99#oWtVTLXpG-M^{2TiJma_2j8o9djnq9 zO{s|-mXZ8>(&N{@|MjgqSruxAXtWu^63f;_1n;{@!lKeo?ZbfFKSrpgo@;etdhE&4fFgEY+Cg8qi?hA z0V_?XSl0n2Z|fB}aH+orHk|>g1^@PYyz)&X`zD$B)zs6e&o8%T-wsZ^bpG`Ci`>=C z+|{kz^w!|D*23HPpqm+ep>1ZA*Rt{^vzM|*Z8j$IGz>ePo(F)kxOy>4oEkML3m_yt zOJzFCitA7`5@4(}l?BTr*^C!gRcsYi)k~;qsRrGMs!}!uIthiBELw&E@nUaY%C@@~ zbLv$%ti(t^e5@LJep!Q1`q{=jpzIV7!ON&>;0+A}v25hgpl4W(&56hDJNdHMR9EO7 zz}SgmUx5|d4oi~suTV&e{98uSv9D3zSLoXGvGiy7GQk zJ_uBQYzPwta+CCs8!@bk&uQyYfC)z64Yzwtb3I=TS8M zy&GAez>N!>y0XiSqdi7fDA-C z2P91Mo*;h)WdE~Mt_*(=+KWK$jcxy2kjuMe*;HVjML`<7Wsh*#e^xlzO1;jE@1RGL T6xwNqdZfMI4kx7no?rh3+LHK^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8305d0feabcac0cebe7cb9ee543562e5685d40d6 GIT binary patch literal 10184 zcmbt4TWlNGl`|xV9FilF5~;Ukj~{x_wj^8f+OcdWb!^9R;>xMz*oo3CLvcnDWxg^q zv@Dj|8byGm+AVDF$67{HgxMAd4HsDEPXYSjO@9{Xj~Ln@cdDQYw)@ea1ygy^g?EA7 zbMA2XG93rqfpj0|p8GoY-1EBpZA*)dg0I*3zw-k;Mg1FA^p7bQw*C1g4PE^iE=jKESD)!l^6!t4VIhYUw+Df$4Qm$-W zhGpNOL<-3@Z4l^bqhOde3C3wg=n~8yn5NBwNwkQpXccXuU1YnVzx&Z2K zI!Y_Fc$&7fK}$Pnaf>YMfQ5B>0M`V!YjOX8ypu zSUx!aB9Pj~!*?zs$Haib!%_2a-u^j}j|F3cGQT)4iXlFLoknZ~bt*m+(3nD=&>+LS z5R@kPsrl$4ugr@YHo{=UsI)Xfx()Ne$ZWKXg+=6oU^K$}XQFYX+E2$01!ZM|KMyI7 z%oOp5MVXJz@-ctlDlAXtWf)r&VAQAkN@6&AO`PB_lAMo5L_R90R8MO|)KOBwBP4J`}KO~5={&-07k^|L9>}6E5KY(1U zngmf+R7)92wFKs)!GI{Mrg6%|C^$%sF+ zBnRcuk!xb)+Gr>^Ga6e`=A)7Ek%MESGH~;-et|~ef{*%w5oBP0XjH$`quO1MEvfeE z8s$V+t=t%?X&Hir$!8$BK^0l|l-^%+Q%b|8(NsiAU_wEf|QZV>@IQ!gkl7@GQ0i_9(Lg_Se7W z3IqZj|Q`o(KL{>9oC~Ay~IONwa~$29 z8`P$|v*7N}x%-Qru7YPU=NTjgZ_eW_cJvfFhI1Xm#rEz(dw;II|7*M1Wh+r;t4-R4 zvspAw1Sa-Nb8?{eYFC88heTNe^=d^0bjI(#mQl;bB;D+M=ZpiwXTe@xOiiY==#`{VpQ(~pL`(h5+N{eaE7({`W732s zN0NrsFap&>RRxmLrjI>E?WPomUfV-SW6R7puQ$moxODt#uFb5kua+VK!`om@E;D}v zysG7k^dfcL_%^jjd(D%H<8afFMD|<%Ev?rh2==Xu%G`U9+uZ8jX}x# zl0Sn4#1b<4K(1pT-!YW3Z#p{)PW}rgzrnTLJil^&z5B{T?yU`XSL*!NX3FKcrL3O3 zy_mk5>pWP-D7p?7U7kDE+tv>U(!Kef;k;|)F=K3TJZ33Rck29RYx^z#?aq|BWHwp5 zi`#OD*w@xjIvh|9WhtTwQ;n4A$=Q=&P+Cb=>Vp(|5Zc za=T#}KRy57B?g+G$awkx`Iz%%7xlTzddhD6ynFDJ+4viZhVpOB45W2e60au_l;4K} z2ug!wS1OlMs9dEV(Mm;BF6izG^w2-Js!haWmF+;&8YZ8#U5ZB0P+a0cG{nPVM3KEF z3Gb+c(nspYWE_%v#)iX`agF-nNnWTVdg>0ZDm6ifUV(ObHzYTxf3-U|+P1In7|*vI zTIUY^fpwq;xplVS>CbukAF%^OXw{Jf`HGO_Fl_l7NrG7914-7DC^`Z3eA%ef_Gx0Y zB*E;_KFcln&QjvKJT*HJ=t!b@Drz%#G(bxPO zJhP6MfX;e(nXT#7M3yBj6-=w*)@NPt=%s2dRK{QEtU~otl1ZAAEXZL?(v-AXjJLFPb~9_5*xlY21XqeR5S67WPdL( zmks4nN|b-{AV2DL8`jYpKHcjUFG?k1#H zJD+hTsVf>vrst=qIFYk zW%_~;mN4EWp$JhOP}RJ862MX0HCGAk-C8iKh}V@x$q$!A5CzZ1CY%6eh1=avGCYAyF+56p%3*fRe7}`Vq@O+6%x$?=zGOn&j^S zf(#+GCfcQY+v=r4-&n41EPEv1cP!t1JmuKv>{&fj=-r>|-JiLV4di<#@}0+0+~)RO zA4Ts*GjrLc{PvUUY;SSbz$c?0k7ftg4(E5hyw2_@@_RmUe(cOz*1GaM0Qxq1_7r*! z_;#O+Y82N56o=9ja

    S z5X{x~3>|3F=SBGqI2A1jlb63_9S+#Y(ipT5K~L;m=|!xfVgh6I9F~b`^E#H$uvcAW zzK6_5;sa`14Wt}e@G=d&ty;# zq?Df=z4iW&Pt+PlU)h~t@va`cJ-2dpv!gq8cGKl4xOV1TJJW-iBYD?&iYeOL3ij=FHk-dC{h$sgD}Jl95EPH zwA`VP227gAfNBqAj#@S(>C@D^lgJJ=&QKG}v#GgMao3hjHHJnLBd6-vfmvl(a8?#s zDF}w7>1Pm%Pco32eqJ$qXzK6YFj3FhRSouYFwG0Cl_@KQs_9d`NIISLoERaNN$|j; zL<;mPC`5O_G@r0Np>5!q9fFyOX|5Wg;MHT4P-SQQ zGKsDdDPLu5h`DMa-t3RX#E2jr#?D6|(fu>z3e^H(PKb)hDyv6nRfcE~h+BcmY4p~l z%h0KT#cM7Oxk~>4DDo{xz~*;)&`o-M<@NQhqYt@>BGLw2+#@;nNalLp{X*(=k#paiT$x;*O1GyiX(_WO(~)_9 zz4zcFZmeX1Q9!b4;&0tE_>djiD0>#C@0`1R?!(#im7hgn*hlQBCKzk)0h*iS9tcpt zdmxQGhY#px?uAluACeV6O+SA}| zsiAsVT>S!j?S=$>EmxWDtEP{vcdfr1$h7}rINx>P5qGd;q`20nbwq^}|3gH=U!o)A zTJ2G};-EdAr71v`Nlw11kEp*X5@BVp(WZ&6H$ox^ z7#?0Yt_1~rA1SLqEw1DNsRr*rf%#x$PJbkkiS|u6FbuC_^ShqVyAn3-K}X>GSYJv9wVq}}+kx(#lRkd6b zrI{!M;zC4VvCd7@s`x`$`ktodH+v4GoJG6y7QJ%hR^Z1kZgQ=+ zE*0AM=GymyA<#aaJhyW0*8D?m2g(rae>~IGMAq*A zRUq4cf8p2r9)$A~mmaZiJ}p#CKm#NEZ@mo3HwAFuiX&dbhas3bT4#9(&?ZL#hb~MP?Pb@Q7C9eKgy>Di>T2x|1F@%U@HT$ zi=Dl9et7$bz+C2h=aCdwty}Y*6De-P*k?JCFQ&Z(-s>ZsJ0b>ssBt zWi%YKeN7qgmB&zi<&oZkahtQ`JhXhPBQgSk4N1c_N&-ShXu*V}TQ)q8)OAeCOiCxA z*Asd;!R#GboDU_;!z7pRPSnzttXQ=YD-#0`4fI4OEzw=iw&akszy`Xo<;O923cGXR z_J#D>4A_l_Q`XWR%H5MOW)|-`?p|4YHP?0~W%)yeo^NL@dFKo3>FgY-aWViJB* z!TNmotnc$d%)}Rt3URQUeGpCYy&w07$}JY3PlyHp><-RF;CBe1CEkxi%*2P!v?>$F zAcnLP284&?U_eog5GIk3Pb9o75=t8FUBw6ww$f3oV(6TNI3#o%iD6CbJc$T26ki&f z68(onxkr(eYg~t>h=d7R9dZI}whySU4IIOkwo$!1)=ixygSmyhac0Y9VZ0rTL>v#qFb1K z8FPt(EGw*ye;Opk2dB3XQrd234y1+5_{RW-Viv%Vm3j=!SjLo@x@QHBXU4L^7G@>3 zo4HJ921*p>Yo@iS&!8R44*&u4(qR*GBn=yZEbGYzK81}yaZSOc9w~7&v_f~tvb#yP zwtEX}B{Rd=aFvj0Tin88$H8~BYBc-zN z{Hpyl0C_+)D@!pnUXUx)?GV@rH1~mA&0(pre zFK%jA{cz&-fJlCXAZscTUo2F2Jx*K+hGb0!_BLr5!ACz_t{wX}j8FQGgoAQ`L=~kU z0FLI*5VrgPtGh7aA$h_c*DlqI(odlZoJz?UkuMo(n*JSS{T=1}lIn%Of2YQNPaXX| ob?i%O@0ZlUFR24xS=(;CkhgBTVSa4BVx*7WI`W?s=49~y1B`qS1ONa4 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b22f8ae8c21076a6051cd81b639ad36c7669c54f GIT binary patch literal 2592 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b75b0d5561a00b62812806416d360f291fbe77c GIT binary patch literal 13416 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be4751236c152f647a9de3953fc02b12b4871379 GIT binary patch literal 7270 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 DrZer2 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2fe9cbc1a9e06c9abf1776e6d17f3a10dd32bd72 GIT binary patch literal 2960 zcmai0-A^3J5%2ljnf>77z{Un_kA;bEr0j0aIoq*yMk1J;b7x_RC62t&X*A30&yPRX8ezQ=I`L6rdgQm;Ag?2gxUaxZLQ!(XqU=gV#Z9^@ zoKkfYI01LjuzntFT^T3g{5p)J78EnZQul0HZlAdMVbXvG66}W!+bF}B5zGPS2afF< zb=!GtmtcfAW$y{jB_sQpGN#yY?3yu)jRwW8G4F+CBb$w;do`F&@cRvq;3}?#)R^;p zY=nW~2B5EFJG5tg9IfQlXlVOB%|%jkaI{W>lJSF}9(qBIzGu9}r;Zu9TyBP`1cwb$ zn{wKbiyV^yD#7pIA3)a8BC15{S4o9i{8w`YS9GON?xiNy zcf7(@`&^y=7m2MzY$fn>r8_f@`%3pQ-{D;C^gC>cv4wyZkf~2K#jM>-WwW+l3IH?Z zD$|cyg@ysa%_|V6IHE^GJPHu7+eT2sJkC#-n&Q_DQ(>};X~+^zIq)1znQA*c0xaR; zIlJM9OfF-;PWTy2jcHERwID{6C2cq2z?Nt*NcfGJIv0?t4U;N?S7U13CKMCa2f@Z9 zs~!?d9@G|n3Q+o9Hn`V(Oi9jrH+qI zn*%43B6nhdXArf3ETcUwy_Q+c>}tlgX6&VV_R{C~dWZM>FYomYa@u=yw|8v2cWkex ze_j8v{*&xZ&+7-0_*z%18|jx1QBqH~<atmRe2iYFD?ltDC~+o4>sC{LW|EtpnHs zu|ym9OtwjhIww)fD{6%E-vI+S7is=#QpYOb&-FG}GNnz_`$>sC9%1oWd}8HGKaIR#{jQ_Y@HdOI1{ zjXS`OQd1|eIAW?vv36#Z?%gkAN(rKXvy(tk>RMeRnrKvYj6J z*~HJ^`RO}Zf`IjVSx>^zpA8M#)V5N&(g4Iota2HOQX{K3L&8}k0VoA%Y25!UWeA=?!Z`gi& zBw<-@;DB0*z0&8EYLMnuyVP1dBgjQqkZ_jTf+b92|Z#r(LsvMTkcxLU0S1brc>|@kRIs=%D2~S`xz}+*gjOGhZNXi$VvlOH$ab zuL$y?qXl&Kada+9r`7O9xnl=-JR>6=zBBk=XMd>F(rHzGtG#;xji5IW73M_&JwgKf z{qXjplZtZlBuE_gmjE@I)&X`{!LBF&z+0KUz<+Jp~FCyWyL!Zh+U+Mp=drA5G`Qgp+3({{dDC5@?=2>zBG%VoyLoP-8{s&atwz2>K literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da7173f8e3093d1e134c0a213e8c5bf03c60334e GIT binary patch literal 1650 zcmZux&2Jk;6rc63ch^p0Cyw)JTDD1{F_LYXijPB6kwy^(p-9LDslKc>yAx-f{cva2 zactS5LOBG41U)6FLgeTwm;4KG<>D%pXhu{Dq8zvx5(LTxX4c*&RE$<{e(&vjZ{F9; z4+8^HKv#hIV>o1mY`(zzn70HwTnPJEutZxb zNE`@(cYzV!1cnItJ-+L!AlIa{{2OD^91%a(tO~>wNeixRYmUKS{-cG3#eAN^{+@IZ zAs6Xg4_zwunB!RrwgChM&H#mw!4-HTR1gfl5H zNZ&1Jm3#i{qxn_0s;p9pvf?5|?*@bGqfy0QuauEnRIc~rH*OQjEqkWxU?OO!h>3`x zS3!>6%hC^yRgdwX-a!t7*p^=7M8tDE#PmORx>goly9Pr|Sh9Q=Q0(`bNWZieaO~o%TTGg z6~%^{<0(^hUdbrwJ~CQ1%URWQJcu04$_7UwR$LTggq4p(-*XJO;g29)O%bS&$(p*orkNw`RF0VceSi$n_I zU?$z^WAwC?tGZ|nmo**YTz)b0!TilPGI>w)Og*#U8c?05Nz|~3bJ=z1tmiCqIajWE ztFCh`dv!L4O%Gi8&T`wp=4TsyOxdxeJn|0#*#XOUXU(S4fCN ze+QIw`h`g9Xe_lef4{nQt0RN{__?1Bl*%}dHPv=bSw7v$;)7H@(;j8Qa=q(e!kSmYg8;qalfkGt!NhO1mz@EHC&y7a0Sy^kzupwxCp8U z-mRE)XT?SAUK7DGu}669A;QzHqYG5{5FAqq&`XT4x%UYJ_;pG)!J(jZ1a4sB-r~{Z z#kMfk5hlW8J8yOX-CD_({&2#F`}l-O&`jWBi9T5}eRR5m=AVD@h55D2?6QWR-x5Th zb3pz_3DcpeV0v#1h`SR#{$EdULxc-emE?*Q~7$gem78tvh20OEPvVo bj(ZAHzk=DP?7Mm*D%{vtSN;Ta^UePSnN+NB literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd8f92702341c07c7ee87cbd6edc7dd1af283195 GIT binary patch literal 7272 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef4ed1184f57043adb9ea25679972a222f5e34b8 GIT binary patch literal 3957 zcmb7HU2Gf25#Iad@lTXQ{Zh7dbmCYvOv;h%CT(Lowq&Pv4W)&g7GMxu&vz$^(vipP z9c@UE3C zk_E9lJ2N{ww>#g=^3U;j1VI}T{x?&MA@mPA37X^+TYmv!1)0d?Y?P-XZ*wI+&vTR( zY@sCPMMjIZRFd;Dqa{03Qt}F;WjkDo@mP zRqD=nmy-D;n@8=QQg6PO(J{NP)SvI?5RWW0dm?alXS4>_xYjJ6;?aA^jNd_Kht;tr z_}rm+E|d5dolIspBL76UtCkCtaK1bbL(;US^{VY@R{2H|JLQs9_JAF!;9}X+W?iQY zv#6%su&`Tn%9=)nM#*$49!#mB(7017>1C6WQy+|vU!0oC@TBvC?phN?*Tco@RjNu7 z1#9mvQP(r=;&rVuSD==n72TWBJV&cy+i1Dp>Scejbq$CWIEg%GqC9VMdBNoKqABDh zGiJ(n#Jp^VtdOZ#iWMFNT~o9o)3O-`Nz{y3F__1#u+=fmQ|Yv5MnRI8mojnEak=bP zEW`7^W+5L@q4`YJo3T{GDSL1_sxz(X>W}8V8K&Bd3u-sfmAhK?- zFc0~FBI1l?R~F=Kw(44#h_qig{(jk>SDmU?se0S1!JEJ!_(k=yZqc)H8Ig#l1qkYa z&%(X5>!Th0%8X1DK%oYaqJ%de=>l$rFQ8@hyDd9-78-?TTYCVmv{+4E= z>zuDAgI>ojz2Btj>C?6J>5cSTUn+0YouZ#c>&nrZa&(njJ@xxDkIp<(zPkl}AQJKc zOGF(PT%#R&^!yoEuQ0HB+d!W6gOeHv+9J0T{yT742kGY_1EJ0%Rx&!&5FoEuh246r1|4|a5B@qBf19DGW6a!25`Cs&k zpuHq|{ee;dc~f{OE=eBEz^pAwkGI!x$V&zMDOk@j8#hr#ngonR7@Rc+Kt#e6C@oTS z=ZY1=y$OH``E?3vNwE?XEfU^F7>TxJY#RTj?&+D17Hs;A8OxZ{w!!0r1=CX`B7@Tb z2yzT@?E_Xb+bWz(B<3HcUrYqo@^Bm|O!GI1GgVsL%%b68nj0}qiJJFnC_uQd7(tt{PNYV;jkvG3cPT|J+DxY3nvhEUfJxh*7iMV6&z z3=Irz4!zMhH}TiOi%+}3RyCci;D*#pUf&5Gv z-c0l@cl`I?QIxvGG0*=rGH^jv@M-YNXvYFY3qwqfAqJur7<(IV+t>JFlY7W7@gVcd zTl=adVNv*`XHl4?$G@iqk+{g4{5v2kr@_WP#RuYC{3PjZm!O^are(FrnbJc(umKkK zLEDnFKOakr60DTz?x4}J$3d9l1n{>Jx+8~GA-0O2LK$Teo?1%D@^l)$s|-nNdv z4}Ou5AJk+pu&=?hW|r<6xPj>h;&W7cUrRsNQ|r}PW^M}jrF7N zZVa7&F>v_viKf7(`(8@Yk?woKy{om(G?bX$!IjDTlgr^oG;#Or&(Ai7N5EXP7CZ1F zny5!do<>I+!>|47)-P}Q>_(z{IfB#RZidHQFid7TiK1y`y<}+`iD+60UYIteW199c zykC4tNYhNm0CuuiDAU&ty+yctNP^`XM5?;*P{Aq~#1w2qq*)GazB9X4tmM+lG0Sr(D1t0-{iUY;O&cBa<}xo=14;7 zfAF0qf?>61)p#_>$S3X=60)5_ zp;#^u1*&fAHN(C@_U0?VW}cFRknVHzQ%wiwT8|KrwK literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6f27fe5661121d1d6474a59d10f09c9eeb9e688 GIT binary patch literal 29796 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..460c8554abe4279b7333a3e2f108ef1f7e14c9be GIT binary patch literal 17036 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%0D_gQHgPE4WW&hBMdst7NPi6fZ zGX4!K?*3o9nvBHs)!>`6OaAo>rWN;wU%LWEItp*i__r?kx8JN?aqqzO_#3+}?Ya`7 z%X6)p`PAjvVpUx5S19nkH@~;y?$NzQ=SP0!2;@VUN4}qP*UUH0?Eqx`;@*=ySG$E7 za{ttOpc$S<*f--LF3JGi|G*wzCO84dPpGbchGS}WmYN_d-ilvCEqVal%#|S3j78-C z(8Ros0Oracc$Sf&k9@qypi}nf0@OTX6)iiEhf)>53Ub-cCBag_TFM`}w?yeTe-&Io zJ2t(S3a|vZc0ISTybsJC7pXG*Hc`sKN|`Epk`+KK)c;>txKxYLQbk{~wX%sMBzqv6 z@RMb%1qqn4XVwCf;(sZ~EGK@pE7QHFW-}ujgZ$qqAa)`zQP4&K-MYvb1R<}+lg?2B z?TE&w-lG_?v66}h=yPpt`EMzW41TIroQhAv{gdgW8kZv8qOnkFUA53%3+q%j^D_pc zF_%B4q7-}=)TR6bBIG=SqnfJ;+~aDk&2wb*a`xVCY`W4-o-50Zy>ka(QEO`y zy36+b-dm2Q{5p*Ieh&`h8`~~zn-`Z|EsK_x&+iAh8fG`>%{4Y>8+$U1JwH4^g17fe zc2j(*VZ?3v$lWl~ZT+Z=M+kL$nHHv!)*ejJFMc&0yQpaQGaq1PDELZco#aqxBmKPg z^b~G&@Pk?zEJ5E&dn`FV4#A>&b+29g5<(e_oEnpfBxT|ss#}UjqOn2kw-7q=ftR=T zO{$n`!!;Zlk;yB9d2FdI%;^^jy_l3ya|}PNMS(&5Qah$-{sNlo@B<}ugRe%PB%V~? zTL0m(SXA>!>v$kt^FIbiWnR%T0UWjc!BX%+OHC;#hTkbMe=s$$wh$cIB+VU>dBLfT zYqNovBZQ!3h86&9Ikmg21e%U1gJu5GnqzbG+M;Yl;4&SDo1ErHS2h@}Ks>69F(Vr@ zugNE9p-D+9_rOj_Df%fix@Nyo*NjcARGJ7&bpodz!H&ZcF3`7)wjUqNG{U4lJDuyO zLJtMK2yoA!{V@9p`5rz=CMbk(K+ZgWhwJ-uEx?4ZQXv?EeQckXrHp literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c767b9bc8647975da4088ef0ed2e61ff88b181fc GIT binary patch literal 7909 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..847bace610fac1e2b0a5531ca77078fd3b9fdeea GIT binary patch literal 7642 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..741c35367a4e43c9a4493a05b2191994eef4cb75 GIT binary patch literal 11215 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da27354e611b35c0372e6fd224b813dffd78b8ff GIT binary patch literal 4710 zcmbVPTW=f36`tktvb>5n>uzi4n@roJ9NW1WiflzTVmGPLLUB+t2-a)vNLqO>%NWH}JAwSfXn9{NUKf&h7G&kVUF<){zt zf}A;X=A5%<&dmAd?BC+?2!dxw{LkEQ4?_Q91Mdm8h{t~i;ucboD(I-hdY>*BzLHO1 zw5W@QzvSn%Uk@0;QjpUDJ!D8FiPJ$nY(z>CPKWfU5i7+wE$MM1QA%(+toInnQj*gV zJ!PazX(Ln0@Nrbn8oNrnjNVeO(O2pdkPi_wf6Q~V)02TUp*boI`p|1gjlGZ5IFU$X z&EMh=EeZL=zuDkoUT}kNDSDOIK&8rxX_;DC(Y0kFn~Fhz87Uj8RdF=SWFny{%PDY#Z1u&QG=Ln#m-lFHKFIo1O+Tb-}b9Mb{OkeU4I#0yAAvs7+)_-mPks7{qk! zywBaGHANX;o}rc@>zYa2eLrGzZM9oHFS`BZIa0nRlj{zlCcJP-1|OAKqPmAF)N)AK zktI6F$u6h=*Vc8CDnImdP4Zm($izX)5%cQw;SfS)p z(^vujtV#)1HQT8=nr^qXx(qF9&K$mSrLyGASthoLQ>_#$OP;`$D@XC-oK~LW&S9(* zWr5(UWDX*UO$!^uQB=iIn6D~AwTK#3V|U_ffoIouS~>{Ldq=v<%e5B0)>`kgc-CcE>N4qB^!jeg9D29Q&d0Zp z*+@<79OE@#Q&vDrDBp8&*;k;;@j{_%FWp$zz;=V|aG9#>XD4xazLRo*8rYd5oovt{ zK_I6zle1^F1!CfEQ~Zn+F@AFnQnPv5FyJTT0j}DhXjFAatFVmK49Mhs!1b%dcEE!& zgB~}ek{JbL+z`u`1%K~XscUQu>7+$6(3 z8CF5%ma{|F0-;n>$xav>vonmty8crT3U+SRcp3Y{oEcYMs&98&PWaSUK_ zOxDaM=8u(|7n42KhDU%bH`-a7y*%9B?iThIyJio8gZ6D`-a~aM_F?>k_?Cn>BwUXr z>#?DFYNVbSs%Lxa*};ZiNKFcj6bk2_plCSK=ttrBQwo`Ss<)mQsi)30qFgQra*1tn ze;nM(jc??}H**vBq|@8p$);Z0$i23iyKqnX37d+35Z#hSH>A;3VfEynU%CCt*V4<6 z!CB;nT1e;m6*_B|yFrJ63x}yJv>c{dsmBz(rzUu*enZsI4S&sd7QOQ(LN@|V+g2@5 z6XsjhgQv&(JA#*hH-fd`PH;j8YQdV{VSve>ouxbv#zE%hX{QYeJ3@i47VzFGpqp>` z5%`v9neXag6+eengq)Petc7YqO}rznwblg^6CfcunYM)V|E|*(ZjL_lO3(Pw&1vx8 zZy$7ac|NFqfVv%k`L}Ro{Lh)-?*d*7e<{EkdOd5M-i|n|AmNV(@&a-gB=AQK)%*+S zj^x<^;P=n(_GUZ1rwh?L4bfx!KGK=>DDVM$bf*XZ_jX1erG~Gag|ig#cJ)TM7KV5p ztA*zecru;ddq3>`B;WgkojH$Eqt_svX~fBUoQ{@r*yBy3e2f*ql4e^_qY`y_`hvLt z#jn~8^r!FvinUo2Kv=~Eei^h81`wE6!%%5epvbf_tC_cH1MvGOgBCYrH_PSa!_-R8_+H`4h&a8qqjxuQ68 zP{!KKXI5%AAIgpwSg4xI*-Ktg?OhGPJpZm`SWmH6)bGe0cp=*XxsK*OR$>dry2m z_1E)%IlsC0mAlD_Z<4*Y62DF~e7;==8bP#c;Ja`jm2RZKU}G48ss5uI{YM`mDSSa# zIe&l8v3j!qv(e9Ad?NZr5|2sK^ z^HTlX`St99dk0_qLi|elQrbK?c{ls&!ycyG5SitNX_U;}Pw%Uz$G>>|>$`KGUjF3r$FF}z8={ap@>qm5HINujG$JV3x7Bm}ZqM=ivHkaA2fvYy)dxq` z_nllHJo%mIgR4$L*#lddBO93`o0-BR6bv6(nX2P`e~SMhUf;d{)3-l)yWT(iY2uT_ zYHFkZa3g?n#m7j@CDvoRA3@M^^<-`BmNG4UMRayc*Ee-eh!-V(LCG3$n_U;3jXDQrwXtNa~^t zWsqvoVzcN0sUrVqYvyH&OL!Gfv8-#&`fbmT_{FOVd~>(Zin80q9r>{ke7}+FZ7Ehg zxI37FPkN_ngBX;vJY(Jd?WQ`Pog5k5r`&{u<=FAGZQvIHwjl7;GL*bFMh6d79S+X@eEga0E literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b88c6cdcfd84ba1867ab5eb6fb13df9b389f93ae GIT binary patch literal 8363 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 ZhX+0hz6$2Oo}MS^!SCQ3wWo)7`+rmbSCjw% literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 0000000..c8e7aed --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,231 @@ +import os +import textwrap +from optparse import Values +from typing import Callable + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import format_size + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def handler_map(self) -> dict[str, Callable[[Values, list[str]], None]]: + return { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + def run(self, options: Values, args: list[str]) -> int: + handler_map = self.handler_map() + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handler_map: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handler_map)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handler_map[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: list[str]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: list[str]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: list[str]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: list[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: list[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: list[str]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + bytes_removed = 0 + for filename in files: + bytes_removed += os.stat(filename).st_size + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s (%s)", len(files), format_size(bytes_removed)) + + def purge_cache(self, options: Values, args: list[str]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> list[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> list[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..516757e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,66 @@ +import logging +from optparse import Values + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import get_default_environment +from pip._internal.operations.check import ( + check_package_set, + check_unsupported, + create_package_set_from_installed, +) +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def run(self, options: Values, args: list[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + missing, conflicting = check_package_set(package_set) + unsupported = list( + check_unsupported( + get_default_environment().iter_installed_distributions(), + get_supported(), + ) + ) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + for package in unsupported: + write_output( + "%s %s is not supported on this platform", + package.raw_name, + package.version, + ) + if missing or conflicting or parsing_probs or unsupported: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..6d9597b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,135 @@ +import sys +import textwrap +from optparse import Values + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + #compdef -P pip[0-9.]# + __pip() {{ + compadd $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$((CURRENT-1)) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) + }} + if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + __pip "$@" + else + # eval/source/. command, register function for later + compdef __pip -P 'pip[0-9.]#' + fi + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS \\ + (commandline --current-process --tokenize --cut-at-cursor) \\ + (commandline --current-token --cut-at-cursor) + set -lx COMP_CWORD (math (count $COMP_WORDS) - 1) + set -lx PIP_AUTO_COMPLETE 1 + set -l completions + if string match -q '2.*' $version + set completions (eval $COMP_WORDS[1]) + else + set completions ($COMP_WORDS[1]) + end + string split \\ -- $completions + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, + "powershell": """ + if ((Test-Path Function:\\TabExpansion) -and -not ` + (Test-Path Function:\\_pip_completeBackup)) {{ + Rename-Item Function:\\TabExpansion _pip_completeBackup + }} + function TabExpansion($line, $lastWord) {{ + $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() + if ($lastBlock.StartsWith("{prog} ")) {{ + $Env:COMP_WORDS=$lastBlock + $Env:COMP_CWORD=$lastBlock.Split().Length - 1 + $Env:PIP_AUTO_COMPLETE=1 + (& {prog}).Split() + Remove-Item Env:COMP_WORDS + Remove-Item Env:COMP_CWORD + Remove-Item Env:PIP_AUTO_COMPLETE + }} + elseif (Test-Path Function:\\_pip_completeBackup) {{ + # Fall back on existing tab expansion + _pip_completeBackup $line $lastWord + }} + }} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + self.cmd_opts.add_option( + "--powershell", + "-p", + action="store_const", + const="powershell", + dest="shell", + help="Emit completion code for powershell", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: list[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..7bcea04 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,288 @@ +from __future__ import annotations + +import logging +import os +import subprocess +from optparse import Values +from typing import Any, Callable + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with command.option + - set: Set the command.option=value + - unset: Unset the value associated with command.option + - debug: List the configuration files and values defined under them + + Configuration keys should be dot separated command and option name, + with the special prefix "global" affecting any command. For example, + "pip config set global.index-url https://example.org/" would configure + the index url for all commands, but "pip config set download.timeout 10" + would configure a 10 second timeout only for "pip download" commands. + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get command.option + %prog [] set command.option value + %prog [] unset command.option + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def handler_map(self) -> dict[str, Callable[[Values, list[str]], None]]: + return { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + def run(self, options: Values, args: list[str]) -> int: + handler_map = self.handler_map() + + # Determine action + if not args or args[0] not in handler_map: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handler_map)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handler_map[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Kind | None: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: list[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + for key, value in sorted(value.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: list[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: list[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: list[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: list[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant, fname) + + def print_config_file_values(self, variant: Kind, fname: str) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + if name == fname: + for confname, confvalue in value.items(): + write_output("%s: %s", confname, confvalue) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: list[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + elif '"' in fname: + # This shouldn't happen, unless we see a username like that. + # If that happens, we'd appreciate a pull request fixing this. + raise PipError( + f'Can not open an editor for a file name containing "\n{fname}' + ) + + try: + subprocess.check_call(f'{editor} "{fname}"', shell=True) + except FileNotFoundError as e: + if not e.filename: + e.filename = editor + raise + except subprocess.CalledProcessError as e: + raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") + + def _get_n_args(self, args: list[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + f"Got unexpected number of arguments, expected {n}. " + f'(example: "{get_prog()} config {example}")' + ) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..0e187e7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,203 @@ +from __future__ import annotations + +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.compat import open_text_resource +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> dict[str, str]: + with open_text_resource("pip._vendor", "vendor.txt") as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) + + +def get_module_from_module_name(module_name: str) -> ModuleType | None: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower().replace("-", "_") + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + try: + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + except ImportError: + # We allow 'truststore' to fail to import due + # to being unavailable on Python 3.9 and earlier. + if module_name == "truststore" and sys.version_info < (3, 10): + return None + raise + + +def get_vendor_version_from_module(module_name: str) -> str | None: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if module and not version: + # Try to find version in debundled module info. + assert module.__file__ is not None + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + f" be {expected_version})" + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_sorted_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = f"Compatible tags: {len(tags)}{suffix}" + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = {key.split(".", 1)[0] for key, _ in config.items()} + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: list[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..903917b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,142 @@ +import logging +import os +from optparse import Values + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.build_constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into

    .", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: list[str]) -> int: + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + cmdoptions.check_build_constraints(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + downloaded: list[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..7794857 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,107 @@ +import sys +from optparse import Values + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + + +def _should_suppress_build_backends() -> bool: + return sys.version_info < (3, 12) + + +def _dev_pkgs() -> set[str]: + pkgs = {"pip"} + + if _should_suppress_build_backends(): + pkgs |= {"setuptools", "distribute", "wheel"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times." + ), + ) + self.cmd_opts.add_option( + "-l", + "--local", + dest="local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not output " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--all", + dest="freeze_all", + action="store_true", + help=( + "Do not skip these packages in the output:" + " {}".format(", ".join(_dev_pkgs())) + ), + ) + self.cmd_opts.add_option( + "--exclude-editable", + dest="exclude_editable", + action="store_true", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: list[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(_dev_pkgs()) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + "\n") + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..271a4c9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,58 @@ +import hashlib +import logging +import sys +from optparse import Values + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: list[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..2ae658f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,40 @@ +from optparse import Values + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: list[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..ecac998 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,159 @@ +from __future__ import annotations + +import json +import logging +from collections.abc import Iterable +from optparse import Values +from typing import Any, Callable + +from pip._vendor.packaging.version import Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import ( + get_installed_distribution, + print_dist_installation_info, +) +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + ignore_require_venv = True + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.json()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def handler_map(self) -> dict[str, Callable[[Values, list[str]], None]]: + return { + "versions": self.get_available_package_versions, + } + + def run(self, options: Values, args: list[str]) -> int: + handler_map = self.handler_map() + + # Determine action + if not args or args[0] not in handler_map: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handler_map)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handler_map[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: TargetPython | None = None, + ignore_requires_python: bool | None = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: list[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Version] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + f"No matching distribution found for {query}" + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + dist = get_installed_distribution(query) + + if options.json: + structured_output = { + "name": query, + "versions": formatted_versions, + "latest": latest, + } + + if dist is not None: + structured_output["installed_version"] = str(dist.version) + + write_output(json.dumps(structured_output)) + + else: + write_output(f"{query} ({latest})") + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(latest, dist) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 0000000..e262012 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py @@ -0,0 +1,92 @@ +import logging +from optparse import Values +from typing import Any + +from pip._vendor.packaging.markers import default_environment +from pip._vendor.rich import print_json + +from pip import __version__ +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +class InspectCommand(Command): + """ + Inspect the content of a Python environment and produce a report in JSON format. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: list[str]) -> int: + cmdoptions.check_list_path_option(options) + dists = get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + skip=set(stdlib_pkgs), + ) + output = { + "version": "1", + "pip_version": __version__, + "installed": [self._dist_to_dict(dist) for dist in dists], + "environment": default_environment(), + # TODO tags? scheme? + } + print_json(data=output) + return SUCCESS + + def _dist_to_dict(self, dist: BaseDistribution) -> dict[str, Any]: + res: dict[str, Any] = { + "metadata": dist.metadata_dict, + "metadata_location": dist.info_location, + } + # direct_url. Note that we don't have download_info (as in the installation + # report) since it is not recorded in installed metadata. + direct_url = dist.direct_url + if direct_url is not None: + res["direct_url"] = direct_url.to_dict() + else: + # Emulate direct_url for legacy editable installs. + editable_project_location = dist.editable_project_location + if editable_project_location is not None: + res["direct_url"] = { + "url": path_to_url(editable_project_location), + "dir_info": { + "editable": True, + }, + } + # installer + installer = dist.installer + if dist.installer: + res["installer"] = installer + # requested + if dist.installed_with_dist_info: + res["requested"] = dist.requested + return res diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..b16b8e3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,803 @@ +from __future__ import annotations + +import errno +import json +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from pathlib import Path + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.exceptions import InvalidProxyURL +from pip._vendor.rich import print_json + +# Eagerly import self_outdated_check to avoid crashes. Otherwise, +# this module would be imported *after* pip was replaced, resulting +# in crashes if the new self_outdated_check module was incompatible +# with the rest of pip that's already imported, or allowing a +# wheel to execute arbitrary code on install by replacing +# self_outdated_check. +import pip._internal.self_outdated_check # noqa: F401 +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import ( + CommandError, + InstallationError, + InstallWheelBuildError, +) +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.installation_report import InstallationReport +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import ( + InstallRequirement, +) +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + check_externally_managed, + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import build + +logger = getLogger(__name__) + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.build_constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "--dry-run", + action="store_true", + dest="dry_run", + default=False, + help=( + "Don't actually install anything, just print what would be. " + "Can be used in combination with --ignore-installed " + "to 'resolve' the requirements." + ), + ) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed. Note that the resulting installation may " + "contain scripts and other resources which reference the " + "Python interpreter of pip, and not that of ``--prefix``. " + "See also the ``--python`` option if the intention is to " + "install packages into another (possibly pip-free) " + "environment." + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + self.cmd_opts.add_option( + "--report", + dest="json_report_file", + metavar="file", + default=None, + help=( + "Generate a JSON file describing what pip did to install " + "the provided requirements. " + "Can be used in combination with --dry-run and --ignore-installed " + "to 'resolve' the requirements. " + "When - is used as file name it writes to stdout. " + "When writing to stdout, please combine with the --quiet option " + "to avoid mixing pip logging output with JSON output." + ), + ) + + @with_cleanup + def run(self, options: Values, args: list[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + # Check whether the environment we're installing into is externally + # managed, as specified in PEP 668. Specifying --root, --target, or + # --prefix disables the check, since there's no reliable way to locate + # the EXTERNALLY-MANAGED file for those cases. An exception is also + # made specifically for "--dry-run --report" for convenience. + installing_into_current_environment = ( + not (options.dry_run and options.json_report_file) + and options.root_path is None + and options.target_dir is None + and options.prefix_path is None + ) + if ( + installing_into_current_environment + and not options.override_externally_managed + ): + check_externally_managed() + + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_build_constraints(options) + cmdoptions.check_dist_restriction(options, check_target=True) + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: TempDirectory | None = None + target_temp_dir_path: str | None = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + if options.json_report_file: + report = InstallationReport(requirement_set.requirements_to_install) + if options.json_report_file == "-": + print_json(data=report.to_dict()) + else: + with open(options.json_report_file, "w", encoding="utf-8") as f: + json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) + + if options.dry_run: + would_install_items = sorted( + (r.metadata["name"], r.metadata["version"]) + for r in requirement_set.requirements_to_install + ) + if would_install_items: + write_output( + "Would install %s", + " ".join("-".join(item) for item in would_install_items), + ) + return SUCCESS + + # If there is any more preparation to do for the actual installation, do + # so now. This includes actually downloading the files in the case that + # we have been using PEP-658 metadata so far. + preparer.prepare_linked_requirements_more( + requirement_set.requirements.values() + ) + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + reqs_to_build = [ + r for r in requirement_set.requirements_to_install if not r.is_wheel + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + ) + + if build_failures: + raise InstallWheelBuildError(build_failures) + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: ConflictDetails | None = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + progress_bar=options.progress_bar, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + # Display a summary of installed packages, with extra care to + # display a package name as it was requested by the user. + installed.sort(key=operator.attrgetter("name")) + summary = [] + installed_versions = {} + for distribution in env.iter_all_distributions(): + installed_versions[distribution.canonical_name] = distribution.version + for package in installed: + display_name = package.name + version = installed_versions.get(canonicalize_name(display_name), None) + if version: + text = f"{display_name}-{version}" + else: + text = display_name + summary.append(text) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(summary) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: list[InstallRequirement] + ) -> ConflictDetails | None: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: list[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "resolvelib" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + f"{project_name} {version} requires {dependency[1]}, " + "which is not installed." + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "resolvelib" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: str | None = None, + root: str | None = None, + isolated: bool = False, + prefix: str | None = None, +) -> list[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: str | None, isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: bool | None, + prefix_path: str | None = None, + target_dir: str | None = None, + root_path: str | None = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + # If we have been asked for a user install explicitly, check compatibility. + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + # Catch all remaining cases which honour the site.ENABLE_USER_SITE + # value, such as a plain Python installation (e.g. no virtualenv). + if not site.ENABLE_USER_SITE: + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are disabled for this Python." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest to check "pip config debug" in case of invalid proxy + if type(error) is InvalidProxyURL: + parts.append( + 'Consider checking your local proxy configuration with "pip config debug"' + ) + parts.append(".\n") + + # On Windows, errors like EINVAL or ENOENT may occur + # if a file or folder name exceeds 255 characters, + # or if the full path exceeds 260 characters and long path support isn't enabled. + # This condition checks for such cases and adds a hint to the error output. + + if WINDOWS and error.errno in (errno.EINVAL, errno.ENOENT) and error.filename: + if any(len(part) > 255 for part in Path(error.filename).parts): + parts.append( + "HINT: This error might be caused by a file or folder name exceeding " + "255 characters, which is a Windows limitation even if long paths " + "are enabled.\n " + ) + if len(error.filename) > 260: + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + return "".join(parts).strip() + "\n" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..ad27e45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,400 @@ +from __future__ import annotations + +import json +import logging +from collections.abc import Generator, Sequence +from email.parser import Parser +from optparse import Values +from typing import TYPE_CHECKING, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: Version + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help=( + "Select the output format among: columns (default), freeze, or json. " + "The 'freeze' format cannot be used with the --outdated option." + ), + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package in output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def handle_pip_version_check(self, options: Values) -> None: + if options.outdated or options.uptodate: + super().handle_pip_version_check(options) + + def _build_package_finder( + self, options: Values, session: PipSession + ) -> PackageFinder: + """ + Create a package finder appropriate to this list command. + """ + # Lazy import the heavy index modules as most list invocations won't need 'em. + from pip._internal.index.collector import LinkCollector + from pip._internal.index.package_finder import PackageFinder + + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: list[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + if options.outdated and options.list_format == "freeze": + raise CommandError( + "List format 'freeze' cannot be used with the --outdated option." + ) + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: _ProcessedDists = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: _ProcessedDists, options: Values + ) -> _ProcessedDists: + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: _ProcessedDists, options: Values + ) -> _ProcessedDists: + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.version + ] + + def get_not_required( + self, packages: _ProcessedDists, options: Values + ) -> _ProcessedDists: + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: _ProcessedDists, options: Values + ) -> Generator[_DistWithLatestInfo, None, None]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: _DistWithLatestInfo, + ) -> _DistWithLatestInfo | None: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: _ProcessedDists, options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + try: + req_string = f"{dist.raw_name}=={dist.version}" + except InvalidVersion: + req_string = f"{dist.raw_name}==={dist.raw_version}" + if options.verbose >= 1: + write_output("%s (%s)", req_string, dist.location) + else: + write_output(req_string) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: list[list[str]], header: list[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join("-" * x for x in sizes)) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: _ProcessedDists, options: Values +) -> tuple[list[list[str]], list[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + def wheel_build_tag(dist: BaseDistribution) -> str | None: + try: + wheel_file = dist.read_text("WHEEL") + except FileNotFoundError: + return None + return Parser().parsestr(wheel_file).get("Build") + + build_tags = [wheel_build_tag(p) for p in pkgs] + has_build_tags = any(build_tags) + if has_build_tags: + header.append("Build") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + data = [] + for i, proj in enumerate(pkgs): + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, proj.raw_version] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_build_tags: + row.append(build_tags[i] or "") + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: _ProcessedDists, options: Values) -> str: + data = [] + for dist in packages: + try: + version = str(dist.version) + except InvalidVersion: + version = dist.raw_version + info = { + "name": dist.raw_name, + "version": version, + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/lock.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/lock.py new file mode 100644 index 0000000..b02fb95 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/lock.py @@ -0,0 +1,167 @@ +import sys +from optparse import Values +from pathlib import Path + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import ( + RequirementCommand, + with_cleanup, +) +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.models.pylock import Pylock, is_valid_pylock_file_name +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + get_pip_version, +) +from pip._internal.utils.temp_dir import TempDirectory + +logger = getLogger(__name__) + + +class LockCommand(RequirementCommand): + """ + EXPERIMENTAL - Lock packages and their dependencies from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports locking from "requirements files", which provide an easy + way to specify a whole environment to be installed. + + The generated lock file is only guaranteed to be valid for the current + python version and platform. + """ + + usage = """ + %prog [options] [-e] ... + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + cmdoptions.PipOption( + "--output", + "-o", + dest="output_file", + metavar="path", + type="path", + default="pylock.toml", + help="Lock file name (default=pylock.toml). Use - for stdout.", + ) + ) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.build_constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: list[str]) -> int: + logger.verbose("Using %s", get_pip_version()) + + logger.warning( + "pip lock is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + cmdoptions.check_build_constraints(options) + + session = self.get_default_session(options) + + finder = self._build_package_finder( + options=options, + session=session, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=False, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=False, + ignore_installed=True, + ignore_requires_python=options.ignore_requires_python, + upgrade_strategy="to-satisfy-only", + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + if options.output_file == "-": + base_dir = Path.cwd() + else: + output_file_path = Path(options.output_file) + if not is_valid_pylock_file_name(output_file_path): + logger.warning( + "%s is not a valid lock file name.", + output_file_path, + ) + base_dir = output_file_path.parent + pylock_toml = Pylock.from_install_requirements( + requirement_set.requirements.values(), base_dir=base_dir + ).as_toml() + if options.output_file == "-": + sys.stdout.write(pylock_toml) + else: + output_file_path.write_text(pylock_toml, encoding="utf-8") + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..b8dbc27 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,178 @@ +from __future__ import annotations + +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TypedDict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import BaseDistribution +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + + +class TransformedHit(TypedDict): + name: str + summary: str + versions: list[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: list[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: list[str], options: Values) -> list[dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = ( + f"XMLRPC request failed [code: {fault.faultCode}]\n{fault.faultString}" + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: list[dict[str, str]]) -> list[TransformedHit]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: dict[str, TransformedHit] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(latest: str, dist: BaseDistribution | None) -> None: + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def get_installed_distribution(name: str) -> BaseDistribution | None: + env = get_default_environment() + return env.get_distribution(name) + + +def print_results( + hits: list[TransformedHit], + name_column_width: int | None = None, + terminal_width: int | None = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + dist = get_installed_distribution(name) + print_dist_installation_info(latest, dist) + except UnicodeEncodeError: + pass + + +def highest_version(versions: list[str]) -> str: + return max(versions, key=parse_version) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..f9fcfa6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,231 @@ +from __future__ import annotations + +import logging +import string +from collections.abc import Generator, Iterable, Iterator +from optparse import Values +from typing import NamedTuple + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +def normalize_project_url_label(label: str) -> str: + # This logic is from PEP 753 (Well-known Project URLs in Metadata). + chars_to_remove = string.punctuation + string.whitespace + removal_map = str.maketrans("", "", chars_to_remove) + return label.translate(removal_map).lower() + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: list[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + editable_project_location: str | None + requires: list[str] + required_by: list[str] + installer: str + metadata_version: str + classifiers: list[str] + summary: str + homepage: str + project_urls: list[str] + author: str + author_email: str + license: str + license_expression: str + entry_points: list[str] + files: list[str] | None + + +def search_packages_info(query: list[str]) -> Generator[_PackageInfo, None, None]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + try: + requires = sorted( + # Avoid duplicates in requirements (e.g. due to environment markers). + {req.name for req in dist.iter_dependencies()}, + key=str.lower, + ) + except InvalidRequirement: + requires = sorted(dist.iter_raw_dependencies(), key=str.lower) + + try: + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + except InvalidRequirement: + required_by = ["#N/A"] + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: list[str] | None = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + project_urls = metadata.get_all("Project-URL", []) + homepage = metadata.get("Home-page", "") + if not homepage: + # It's common that there is a "homepage" Project-URL, but Home-page + # remains unset (especially as PEP 621 doesn't surface the field). + for url in project_urls: + url_label, url = url.split(",", maxsplit=1) + normalized_label = normalize_project_url_label(url_label) + if normalized_label == "homepage": + homepage = url.strip() + break + + yield _PackageInfo( + name=dist.raw_name, + version=dist.raw_version, + location=dist.location or "", + editable_project_location=dist.editable_project_location, + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=homepage, + project_urls=project_urls, + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + license_expression=metadata.get("License-Expression", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterable[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + metadata_version_tuple = tuple(map(int, dist.metadata_version.split("."))) + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + if metadata_version_tuple >= (2, 4) and dist.license_expression: + write_output("License-Expression: %s", dist.license_expression) + else: + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + if dist.editable_project_location is not None: + write_output( + "Editable project location: %s", dist.editable_project_location + ) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + write_output("Project-URLs:") + for project_url in dist.project_urls: + write_output(" %s", project_url) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..9c4f031 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,113 @@ +import logging +from optparse import Values + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.index_command import SessionCommandMixin +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import ( + check_externally_managed, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, +) + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: list[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + if not options.override_externally_managed: + check_externally_managed() + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..2850394 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,176 @@ +import logging +import os +import shutil +from optparse import Values + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import ( + InstallRequirement, +) +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + 'pip wheel' uses the build system interface as described here: + https://pip.pypa.io/en/stable/reference/build-system/ + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.build_constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: list[str]) -> int: + cmdoptions.check_build_constraints(options) + + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + wheel_cache = WheelCache(options.cache_dir) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + reqs_to_build: list[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + else: + reqs_to_build.append(req) + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py b/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..e164653 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py @@ -0,0 +1,396 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +from __future__ import annotations + +import configparser +import locale +import os +import sys +from collections.abc import Iterable +from typing import Any, NewType + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + name = name.removeprefix("--") # only prefer long opts + return name + + +def _disassemble_key(name: str) -> list[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + f"Perhaps you wanted to use 'global.{name}' instead?" + ) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> dict[Kind, list[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Kind | None = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: dict[Kind, list[tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: dict[Kind, dict[str, dict[str, Any]]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: list[tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> str | None: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + orig_key = key + key = _normalize_name(key) + try: + clean_config: dict[str, Any] = {} + for file_values in self._dictionary.values(): + clean_config.update(file_values) + return clean_config[key] + except KeyError: + # disassembling triggers a more useful error message than simply + # "No such key" in the case that the key isn't in the form command.option + _disassemble_key(key) + raise ConfigurationError(f"No such key - {orig_key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only].setdefault(fname, {}) + self._config[self.load_only][fname][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + orig_key = key + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if ( + key not in self._config[self.load_only][fname] + and key not in self._config[self.load_only] + ): + raise ConfigurationError(f"No such key - {orig_key}") + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + try: + del self._config[self.load_only][fname][key] + except KeyError: + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + # Ensure directory's permission(need to be writeable) + try: + with open(fname, "w") as f: + parser.write(f) + except OSError as error: + raise ConfigurationError( + f"An error occurred while writing to the configuration file " + f"{fname}: {error}" + ) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> dict[str, dict[str, Any]]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].setdefault(fname, {}) + self._config[variant][fname].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].setdefault(":env:", {}) + self._config[kinds.ENV_VAR][":env:"].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[tuple[str, Any]] + ) -> dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[tuple[Kind, list[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. The order + here doesn't affect what gets overridden. That is controlled + by OVERRIDE_ORDER. However this does control the order they are + displayed to the user. It's probably most ergonomic to display + things in the same order as OVERRIDE_ORDER + """ + # SMELL: Move the conditions out of this function + + env_config_file = os.environ.get("PIP_CONFIG_FILE", None) + config_files = get_configuration_files() + + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user config is not loaded when env_config_file exists + should_load_user_config = not self.isolated and not ( + env_config_file and os.path.exists(env_config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # virtualenv config + yield kinds.SITE, config_files[kinds.SITE] + + if env_config_file is not None: + yield kinds.ENV, [env_config_file] + else: + yield kinds.ENV, [] + + def get_values_in_config(self, variant: Kind) -> dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7aaa50e64f098c02eadd476a4765371d8e2345a GIT binary patch literal 953 zcmaJ;&1(}u6rbsS)+7zBy+}~D2*S4PE-K=|qDJdM5D(2k$Yt4Nr_GrCNM|N3ksdtw zKh$Hd;-BIrn1iwy5IlJcq^Dl=&6?F1r4MG_@4b2N&F{VUp;EboKx)d5PE$eXn=}eh zXJEPm-~@#z#1V>d6Jv>&qNP}ADmhjnHP)J1j@3wyjiv!uBSxqbyr+i78?|W;Ondpe zENSCxz24%21#PiILDN=W&@=)6S|jbVHd*klzUUAVEjZVnCR_wjv`Y^9l#!SuA}i5f zKA(|;OlL&&S<=R{Hl%_U^D`9yPS7!WDZLBAN3@*6U`7)kLA8lsKDoR9v0 z4I96@yPNakR$$GyWbLKQ5*=dg(?gP2|8{4qnMpz_f>uPBB$Anw`$uv#Oas%#OcLRe zuXWD7qm*@dFK83)HJ&)n>W}U?4G{?1b{?l8@#{$t4LIeV3*Q}j5p8+Bf#{^kZTIFa zk5fS$NbUyvkl&*{&!>qX43fNXZfD%{;eiU@cYA}(j)N}o=ihzk3Ig&?$*mNtVijPS z)4d1aHJX%>dHIu3`)Jg@R5wnyMpbucx)XiQYn|3cRcB~AXF4ihd)pnAHizow6w=Xi zdpWa!r2CtsJ5PeUt$-6Imzr%{6vp$ce6|Jnd$In-s?NWRwORN zb#89QY1og*eYOs!To}Ir*F?b>k5PS$9*)t2G1{K!D|qYk>h*~N`m1*3OaqN}!i5S1XhkJZ;lRx_1y#Mkd%Ir8ZcPOnWjyody?Jkb@AuyB z*F!^j0?&Br@9OC+A@^~SJVrdxcCW$Y7GZ>G9;s<%O~bkF>17>$Q(mf;E~g_|+B0gI zaweJ^UbbeIO^xuh%z$3T%hmGbyhe0#k+AGGVJ6qF98R3={eG3ZlZsd6!KPlw|Bj1- z77p0HF9JJog|8N1J#^`#59X}dcjji_onN>Jf{__p@wZ(SNVn2JHIN;c_f=qf-iQ2Z z!HT9lW^`HQuaj$9d0>$g^5LQB z3P4~xK{pikZJm&5S^9_F60C9G^TfJ(JvOIPbe+>$Lj|+~+vp(>l<|Pen(M=&_ju~tH6Hl|*JmI` zFm`PJ#eh0OO6~++GY&hp^o2jwsIN$yp_<}_cF^DzFIcyoReOaiy6y&5s(8?-_uS=N zCpOztA_*{Y|74u5>@kiG6^$T458<#GbCG(smmJaw;S2_Zw^eXMILKDQN4R9ep9)+M zF<$3BDE8OQYj-=tcR~sFFSb`XVpf218=+t~F&HbDd zqj())YUjZcgnw=KJWM{*Zjqp~bwl4IH=#!*1*VZrZIf6X>n7RJ77D4*P>nj5p=nvJ z?*^6?rhv^LPb=;%%V9V#%vn}c6qcpXA*EZ7MG3J`kUg$Si*r-&P0zeCwTSJDR(H{>UzMj5m?!pFfG#uLxLJ@(7T^6A0 z>?M$Wq7}4_@26>!uc{r;IFnFi?bHDoA$czFbgu_sW|7G~6iH|WbvwUI7lhBxp%Rh_ ztnt!NxQhC1mSJ%LKl*YF+EPMYy0lcROJ27nx4MC|5;mVHEGfRQ|e1Lmqby0H}=bS~Qi!A7xfnE$GO4o^l$TjbZ_6W!6K zL6|)Mfi!#37Sa)#;lUUiCKC8+!jgvBr2G4 z91Y=fiOA<+2-6iIJUM~u6F8u?q%af)vF+d+4cboLvTA}gJe&_&*42jXwRf_X#e`#7 zQ4a`HcEt%t?Dk8%E(LV2peaY;yl^-X1N*Cj$uabF40ndwEzIGbXITYJ;-^N$qqicK z%N(lWfQ(fi!|-UE{GpE+=AVcWK~#A>+#83C*$c4T=PhA+oKY$eM5*nrgArREtSFC}Ka2@)Yjx)qwsL zCwsJ4-l1-k(J(tbGy6V-62-Mc;ux_{JT~8m^Y^B_084Bj>MRVcl%{F-$jSR8e~-}L h$ZPk=`Cn2a_tMi3GiSBQ&lkVE{Ke(J2u!21{sHGADgXcg literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..32a9719eba8667a2b544f8384b2ba7fc5e60fe7b GIT binary patch literal 1778 zcma)6&2Jk;6rcU{+KFSMG%aabSfPNhP`srPoDh-|qS6#ui1fl0o{rYd>%(3i_*K1NZlY{+{4qRGKoVP zZ-C{PFk(xT*fN!Dg{f4h@{#&<;%jTPLX{)c)~jUpqXt#MUdgmpHD8(@M9)Vw{N@Xm za3&xSVY-p&Pokk_;(Gh;9&6WXCdmE1FH9OUVFD9o#25wd%!H+h%L`^qSD0y^nVdZw z_#Ec_XgB6zIoF3tH{i^rS+QM@vB>n|Fd3wbwhNOdO>>`&K!G$?i}W+{MCv{Pm8*gU zy8>O!m#Ott%=ZNZ%7nGEwf0$O;7?^#Kf_Ty;1 z{r+uB_$gbPWGSq~Pb|leQpRDCMb8ydSZAcPlPqucuz(KMd!KQ~r^9zHWww3MZxMnP z*t>`1Sz~bwfXw79gQ3W|58#+QCJ)f%f;>R43vyW5hAS{_hp(mozjBAP=Rvhp zz5qkMSe6EQ0xCYaeR-oa`XUaBp3R$HpLzREX{Ia@0*}GVP-cF!Y<@PA^cfYy^~3~PW8oV#&W3wAatR-`F=Q^mC!I3rAVSBrHWKUytC|6s=nH?!l6GaR02&oYm$kP?hOX70-TZK*!8p>% z^*2TpL303Q%F$A>c4(=73$J&py+O}NVKv#Z=b z-;$!;gBO|OCCsnRx=mZS;4{BAJ9*YGCBsFkv+2JyJ}Qa)n7<3V;{zpDL5&nil1|B6 f&x!e*bWX|ouS)Y&?Yz*Jr25H?TYnK4i{xGbK8xHb literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..690a3ef36974cc41b67b1d6449f41fbe8e2b8b80 GIT binary patch literal 8375 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 dbS?FW;4)71$@}`;W8 None: + super().__init__() + self.req = req + + @abc.abstractproperty + def build_tracker_id(self) -> str | None: + """A string that uniquely identifies this requirement to the build tracker. + + If None, then this dist has no work to do in the build tracker, and + ``.prepare_distribution_metadata()`` will not be called.""" + raise NotImplementedError() + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, + build_env_installer: BuildEnvironmentInstaller, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + raise NotImplementedError() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..b6a67df --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,33 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.metadata import BaseDistribution + +if TYPE_CHECKING: + from pip._internal.build_env import BuildEnvironmentInstaller + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + @property + def build_tracker_id(self) -> str | None: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, + build_env_installer: BuildEnvironmentInstaller, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..f7bd783 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,164 @@ +from __future__ import annotations + +import logging +from collections.abc import Iterable +from typing import TYPE_CHECKING + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +if TYPE_CHECKING: + from pip._internal.build_env import BuildEnvironmentInstaller + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated. + """ + + @property + def build_tracker_id(self) -> str | None: + """Identify this requirement uniquely by its link.""" + assert self.req.link + return self.req.link.url_without_fragment + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, + build_env_installer: BuildEnvironmentInstaller, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + # Load pyproject.toml + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + if build_isolation: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(build_env_installer) + # Check that the build backend supports PEP 660. This cannot be done + # earlier because we need to setup the build backend to verify it + # supports build_editable, nor can it be done later, because we want + # to avoid installing build requirements needlessly. + self.req.editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(build_env_installer) + else: + # When not using build isolation, we still need to check that + # the build backend supports PEP 660. + self.req.editable_sanity_check() + # Check if the current environment provides build dependencies + if check_build_deps: + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + conflicting, missing = self.req.build_env.check_requirements( + pyproject_requires + ) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + if missing: + self._raise_missing_reqs(missing) + self.req.prepare_metadata() + + def _prepare_build_backend( + self, build_env_installer: BuildEnvironmentInstaller + ) -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment(build_env_installer) + self.req.build_env.install_requirements( + pyproject_requires, "overlay", kind="build dependencies", for_req=self.req + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs( + self, build_env_installer: BuildEnvironmentInstaller + ) -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + missing, "normal", kind="backend dependencies", for_req=self.req + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: set[tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) + + def _raise_missing_reqs(self, missing: set[str]) -> None: + format_string = ( + "Some build dependencies for {requirement} are missing: {missing}." + ) + error_message = format_string.format( + requirement=self.req, missing=", ".join(map(repr, sorted(missing))) + ) + raise InstallationError(error_message) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..ee12bfa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,44 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + +if TYPE_CHECKING: + from pip._internal.build_env import BuildEnvironmentInstaller + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + @property + def build_tracker_id(self) -> str | None: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, + build_env_installer: BuildEnvironmentInstaller, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py b/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..d6e9095 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,898 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +from __future__ import annotations + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from collections.abc import Iterator +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Literal + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.version import InvalidVersion +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._vendor.requests.models import Request, Response + + from pip._internal.metadata import BaseDistribution + from pip._internal.network.download import _FileDownload + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Text | str, + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: Literal["error", "warning"] = "error", + reference: str | None = None, + message: str | Text, + context: str | Text | None, + hint_stmt: str | Text | None, + note_stmt: str | Text | None = None, + link: str | None = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class FailedToPrepareCandidate(InstallationError): + """Raised when we fail to prepare a candidate (i.e. fetch and generate metadata). + + This is intentionally not a diagnostic error, since the output will be presented + above this error, when this occurs. This should instead present information to the + user. + """ + + def __init__( + self, *, package_name: str, requirement_chain: str, failed_step: str + ) -> None: + super().__init__(f"Failed to build '{package_name}' when {failed_step.lower()}") + self.package_name = package_name + self.requirement_chain = requirement_chain + self.failed_step = failed_step + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: BaseDistribution, + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Response | None = None, + request: Request | None = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: InstallRequirement, field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class MetadataInvalid(InstallationError): + """Metadata is invalid.""" + + def __init__(self, ireq: InstallRequirement, error: str) -> None: + self.ireq = ireq + self.error = error + + def __str__(self) -> str: + return f"Requested {self.ireq} has invalid metadata: {self.error}" + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: list[str] | None, + ) -> None: + if output_lines is None: + output_prompt = Text("No available output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(DiagnosticPipError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super().__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: list[HashError] = [] + + def append(self, error: HashError) -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: InstallRequirement | None = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: dict[str, list[str]], gots: dict[str, _Hash]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> chain[str]: + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: list[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: str | None = None, + error: configparser.Error | None = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: str | None) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: str | None = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: pathlib.Path | str, + ) -> ExternallyManagedEnvironment: + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) + + +class UninstallMissingRecord(DiagnosticPipError): + reference = "uninstall-no-record-file" + + def __init__(self, *, distribution: BaseDistribution) -> None: + installer = distribution.installer + if not installer or installer == "pip": + dep = f"{distribution.raw_name}=={distribution.version}" + hint = Text.assemble( + "You might be able to recover from this via: ", + (f"pip install --force-reinstall --no-deps {dep}", "green"), + ) + else: + hint = Text( + f"The package was installed by {installer}. " + "You should check if it can uninstall the package." + ) + + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "The package's contents are unknown: " + f"no RECORD file was found for {distribution.raw_name}." + ), + hint_stmt=hint, + ) + + +class LegacyDistutilsInstall(DiagnosticPipError): + reference = "uninstall-distutils-installed-package" + + def __init__(self, *, distribution: BaseDistribution) -> None: + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "It is a distutils installed project and thus we cannot accurately " + "determine which files belong to it which would lead to only a partial " + "uninstall." + ), + hint_stmt=None, + ) + + +class InvalidInstalledPackage(DiagnosticPipError): + reference = "invalid-installed-package" + + def __init__( + self, + *, + dist: BaseDistribution, + invalid_exc: InvalidRequirement | InvalidVersion, + ) -> None: + installed_location = dist.installed_location + + if isinstance(invalid_exc, InvalidRequirement): + invalid_type = "requirement" + else: + invalid_type = "version" + + super().__init__( + message=Text( + f"Cannot process installed package {dist} " + + (f"in {installed_location!r} " if installed_location else "") + + f"because it has an invalid {invalid_type}:\n{invalid_exc.args[0]}" + ), + context=( + "Starting with pip 24.1, packages with invalid " + f"{invalid_type}s can not be processed." + ), + hint_stmt="To proceed this package must be uninstalled.", + ) + + +class IncompleteDownloadError(DiagnosticPipError): + """Raised when the downloader receives fewer bytes than advertised + in the Content-Length header.""" + + reference = "incomplete-download" + + def __init__(self, download: _FileDownload) -> None: + # Dodge circular import. + from pip._internal.utils.misc import format_size + + assert download.size is not None + download_status = ( + f"{format_size(download.bytes_received)}/{format_size(download.size)}" + ) + if download.reattempts: + retry_status = f"after {download.reattempts + 1} attempts " + hint = "Use --resume-retries to configure resume attempt limit." + else: + # Download retrying is not enabled. + retry_status = "" + hint = "Consider using --resume-retries to enable download resumption." + message = Text( + f"Download failed {retry_status}because not enough bytes " + f"were received ({download_status})" + ) + + super().__init__( + message=message, + context=f"URL: {download.link.redacted_url}", + hint_stmt=hint, + note_stmt="This is an issue with network connectivity, not pip.", + ) + + +class ResolutionTooDeepError(DiagnosticPipError): + """Raised when the dependency resolver exceeds the maximum recursion depth.""" + + reference = "resolution-too-deep" + + def __init__(self) -> None: + super().__init__( + message="Dependency resolution exceeded maximum depth", + context=( + "Pip cannot resolve the current dependencies as the dependency graph " + "is too complex for pip to solve efficiently." + ), + hint_stmt=( + "Try adding lower bounds to constrain your dependencies, " + "for example: 'package>=2.0.0' instead of just 'package'. " + ), + link="https://pip.pypa.io/en/stable/topics/dependency-resolution/#handling-resolution-too-deep-errors", + ) + + +class InstallWheelBuildError(DiagnosticPipError): + reference = "failed-wheel-build-for-install" + + def __init__(self, failed: list[InstallRequirement]) -> None: + super().__init__( + message=( + "Failed to build installable wheels for some " + "pyproject.toml based projects" + ), + context=", ".join(r.name for r in failed), # type: ignore + hint_stmt=None, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..197dd75 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1 @@ +"""Index interaction code""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a878d7419f9e7d1fca22e30d0e3bd9ec575f3cff GIT binary patch literal 241 zcmX@j%ge<81k%j^Gh~7EV-N=h7@>^M96-i&h7^V|N!0~v&Q44R>MzJF z(2ob(3e=>Z337yfJWwFBBtBlRpz;@oO>TZlX-=wL5gX8Mkn4*OD97Li3 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ee9ca83d2a71e0d9b8f2b8c28673037a9fd96420 GIT binary patch literal 21235 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 str | None: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in "+:": + return scheme + return None + + +class _NotAPIContent(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_api_header(response: Response) -> None: + """ + Check the Content-Type header to ensure the response contains a Simple + API Response. + + Raises `_NotAPIContent` if the content type is not a valid content-type. + """ + content_type = response.headers.get("Content-Type", "Unknown") + + content_type_l = content_type.lower() + if content_type_l.startswith( + ( + "text/html", + "application/vnd.pypi.simple.v1+html", + "application/vnd.pypi.simple.v1+json", + ) + ): + return + + raise _NotAPIContent(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_api_response(url: str, session: PipSession) -> None: + """ + Send a HEAD request to the URL, and ensure the response contains a simple + API Response. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotAPIContent` if the content type is not a valid content type. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {"http", "https"}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_api_header(resp) + + +def _get_simple_response(url: str, session: PipSession) -> Response: + """Access an Simple API response with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML or Simple API, to avoid downloading a + large file. Raise `_NotHTTP` if the content type cannot be determined, or + `_NotAPIContent` if it is not HTML or a Simple API. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got a Simple API response, + and raise `_NotAPIContent` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_api_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": ", ".join( + [ + "application/vnd.pypi.simple.v1+json", + "application/vnd.pypi.simple.v1+html; q=0.1", + "text/html; q=0.01", + ] + ), + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is a + # Simple API response or not. However we can check after we've + # downloaded it. + _ensure_api_header(resp) + + logger.debug( + "Fetched page %s as %s", + redact_auth_from_url(url), + resp.headers.get("Content-Type", "Unknown"), + ) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> str | None: + """Determine if we have any encoding information in our headers.""" + if headers and "Content-Type" in headers: + m = email.message.Message() + m["content-type"] = headers["Content-Type"] + charset = m.get_param("charset") + if charset: + return str(charset) + return None + + +class CacheablePageContent: + def __init__(self, page: IndexContent) -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return isinstance(other, type(self)) and self.page.url == other.page.url + + def __hash__(self) -> int: + return hash(self.page.url) + + +class ParseLinks(Protocol): + def __call__(self, page: IndexContent) -> Iterable[Link]: ... + + +def with_cached_index_content(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an IndexContent, cache the + function's result (keyed by CacheablePageContent), unless the IndexContent + `page` has `page.cache_link_parsing == False`. + """ + + @functools.cache + def wrapper(cacheable_page: CacheablePageContent) -> list[Link]: + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page: IndexContent) -> list[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_index_content +def parse_links(page: IndexContent) -> Iterable[Link]: + """ + Parse a Simple API's Index Content, and yield its anchor elements as Link objects. + """ + + content_type_l = page.content_type.lower() + if content_type_l.startswith("application/vnd.pypi.simple.v1+json"): + data = json.loads(page.content) + for file in data.get("files", []): + link = Link.from_json(file, page.url) + if link is None: + continue + yield link + return + + parser = HTMLLinkParser(page.url) + encoding = page.encoding or "utf-8" + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + link = Link.from_element(anchor, page_url=url, base_url=base_url) + if link is None: + continue + yield link + + +@dataclass(frozen=True) +class IndexContent: + """Represents one response (or page), along with its URL. + + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + + content: bytes + content_type: str + encoding: str | None + url: str + cache_link_parsing: bool = True + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, url: str) -> None: + super().__init__(convert_charrefs=True) + + self.url: str = url + self.base_url: str | None = None + self.anchors: list[dict[str, str | None]] = [] + + def handle_starttag(self, tag: str, attrs: list[tuple[str, str | None]]) -> None: + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: list[tuple[str, str | None]]) -> str | None: + for name, value in attrs: + if name == "href": + return value + return None + + +def _handle_get_simple_fail( + link: Link, + reason: str | Exception, + meth: Callable[..., None] | None = None, +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_index_content( + response: Response, cache_link_parsing: bool = True +) -> IndexContent: + encoding = _get_encoding_from_headers(response.headers) + return IndexContent( + response.content, + response.headers["Content-Type"], + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_index_content(link: Link, *, session: PipSession) -> IndexContent | None: + url = link.url.split("#", 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning( + "Cannot look at %s URL %s because it does not support lookup as web pages.", + vcs_scheme, + link, + ) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith("/"): + url += "/" + # TODO: In the future, it would be nice if pip supported PEP 691 + # style responses in the file:// URLs, however there's no + # standard file extension for application/vnd.pypi.simple.v1+json + # so we'll need to come up with something on our own. + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_simple_response(url, session=session) + except _NotHTTP: + logger.warning( + "Skipping page %s because it looks like an archive, and cannot " + "be checked by a HTTP HEAD request.", + link, + ) + except _NotAPIContent as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s. " + "The only supported Content-Types are application/vnd.pypi.simple.v1+json, " + "application/vnd.pypi.simple.v1+html, and text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_simple_fail(link, exc) + except RetryError as exc: + _handle_get_simple_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_simple_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_simple_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_simple_fail(link, "timed out") + else: + return _make_index_content(resp, cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[LinkSource | None] + index_urls: Sequence[LinkSource | None] + + +class LinkCollector: + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, + session: PipSession, + options: Values, + suppress_no_index: bool = False, + ) -> LinkCollector: + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + "Ignoring indexes: %s", + ",".join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, + index_urls=index_urls, + no_index=options.no_index, + ) + link_collector = LinkCollector( + session=session, + search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> list[str]: + return self.search_scope.find_links + + def fetch_response(self, location: Link) -> IndexContent | None: + """ + Fetch an HTML page containing package links. + """ + return _get_index_content(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + project_name=project_name, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + project_name=project_name, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..ae6f896 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1059 @@ +"""Routines related to PyPI, indexes""" + +from __future__ import annotations + +import enum +import functools +import itertools +import logging +import re +from collections.abc import Iterable +from dataclasses import dataclass +from typing import ( + TYPE_CHECKING, + Optional, + Union, +) + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import InvalidVersion, _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS + +if TYPE_CHECKING: + from typing_extensions import TypeGuard + +__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] + + +logger = getLogger(__name__) + +BuildTag = Union[tuple[()], tuple[int, str]] +CandidateSortingKey = tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] + + +def _check_link_requires_python( + link: Link, + version_info: tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, + link, + ) + else: + if not is_compatible: + version = ".".join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + "Link requires a different Python (%s not in: %r): %s", + version, + link.requires_python, + link, + ) + return False + + logger.debug( + "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", + version, + link.requires_python, + link, + ) + + return True + + +class LinkType(enum.Enum): + candidate = enum.auto() + different_project = enum.auto() + yanked = enum.auto() + format_unsupported = enum.auto() + format_invalid = enum.auto() + platform_mismatch = enum.auto() + requires_python_mismatch = enum.auto() + + +class LinkEvaluator: + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: NormalizedName, + formats: frozenset[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: bool | None = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> tuple[LinkType, str]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (result, detail), where *result* is an enum + representing whether the evaluation found a candidate, or the reason + why one is not found. If a candidate is found, *detail* will be the + candidate's version string; if one is not found, it contains the + reason the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (LinkType.yanked, f"yanked for reason: {reason}") + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (LinkType.format_unsupported, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return ( + LinkType.format_unsupported, + f"unsupported archive format: {ext}", + ) + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = f"No binaries permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + if "macosx10" in link.path and ext == ".zip": + return (LinkType.format_unsupported, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return ( + LinkType.format_invalid, + "invalid wheel filename", + ) + if wheel.name != self._canonical_name: + reason = f"wrong project name (not {self.project_name})" + return (LinkType.different_project, reason) + + supported_tags = self._target_python.get_unsorted_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = ", ".join(wheel.get_formatted_file_tags()) + reason = ( + f"none of the wheel's tags ({file_tags}) are compatible " + f"(run pip debug --verbose to show compatible tags)" + ) + return (LinkType.platform_mismatch, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f"No sources permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, + self._canonical_name, + ) + if not version: + reason = f"Missing project version for {self.project_name}" + return (LinkType.format_invalid, reason) + + match = self._py_version_re.search(version) + if match: + version = version[: match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return ( + LinkType.platform_mismatch, + "Python version is incorrect", + ) + + supports_python = _check_link_requires_python( + link, + version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + requires_python = link.requires_python + if requires_python: + + def get_version_sort_key(v: str) -> tuple[int, ...]: + return tuple(int(s) for s in v.split(".") if s.isdigit()) + + requires_python = ",".join( + sorted( + (str(s) for s in specifiers.SpecifierSet(requires_python)), + key=get_version_sort_key, + ) + ) + reason = f"{version} Requires-Python {requires_python}" + return (LinkType.requires_python_mismatch, reason) + + logger.debug("Found link %s, version: %s", link, version) + + return (LinkType.candidate, version) + + +def filter_unallowed_hashes( + candidates: list[InstallationCandidate], + hashes: Hashes | None, + project_name: str, +) -> list[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + "Given no hashes to check %s links for project %r: " + "discarding no candidates", + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = "discarding no candidates" + else: + discard_message = "discarding {} non-matches:\n {}".format( + len(non_matches), + "\n ".join(str(candidate.link) for candidate in non_matches), + ) + + logger.debug( + "Checked %s links for project %r against %s hashes " + "(%s matches, %s no digest): %s", + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message, + ) + + return filtered + + +@dataclass +class CandidatePreferences: + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + prefer_binary: bool = False + allow_all_prereleases: bool = False + + +@dataclass(frozen=True) +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + + :param all_candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + + all_candidates: list[InstallationCandidate] + applicable_candidates: list[InstallationCandidate] + best_candidate: InstallationCandidate | None + + def __post_init__(self) -> None: + assert set(self.applicable_candidates) <= set(self.all_candidates) + + if self.best_candidate is None: + assert not self.applicable_candidates + else: + assert self.best_candidate in self.applicable_candidates + + +class CandidateEvaluator: + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: TargetPython | None = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: specifiers.BaseSpecifier | None = None, + hashes: Hashes | None = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_sorted_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: list[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Hashes | None = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: list[InstallationCandidate], + ) -> list[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + candidates_and_versions = [(c, str(c.version)) for c in candidates] + versions = set( + specifier.filter( + (v for _, v in candidates_and_versions), + prereleases=allow_prereleases, + ) + ) + + applicable_candidates = [c for c, v in candidates_and_versions if v in versions] + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -( + wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + ) + ) + except ValueError: + raise UnsupportedWheel( + f"{wheel.filename} is not a supported wheel for this platform. It " + "can't be sorted." + ) + if self._prefer_binary: + binary_preference = 1 + build_tag = wheel.build_tag + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, + yank_value, + binary_preference, + candidate.version, + pri, + build_tag, + ) + + def sort_best_candidate( + self, + candidates: list[InstallationCandidate], + ) -> InstallationCandidate | None: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: list[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + format_control: FormatControl | None = None, + candidate_prefs: CandidatePreferences | None = None, + ignore_requires_python: bool | None = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: set[tuple[Link, LinkType, str]] = set() + + # Cache of the result of finding candidates + self._all_candidates: dict[str, list[InstallationCandidate]] = {} + self._best_candidates: dict[ + tuple[str, specifiers.BaseSpecifier | None, Hashes | None], + BestCandidateResult, + ] = {} + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: TargetPython | None = None, + ) -> PackageFinder: + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> list[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> list[str]: + return self.search_scope.index_urls + + @property + def proxy(self) -> str | None: + return self._link_collector.session.pip_proxy + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def custom_cert(self) -> str | None: + # session.verify is either a boolean (use default bundle/no SSL + # verification) or a string path to a custom CA bundle to use. We only + # care about the latter. + verify = self._link_collector.session.verify + return verify if isinstance(verify, str) else None + + @property + def client_cert(self) -> str | None: + cert = self._link_collector.session.cert + assert not isinstance(cert, tuple), "pip only supports PEM client certs" + return cert + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def requires_python_skipped_reasons(self) -> list[str]: + reasons = { + detail + for _, result, detail in self._logged_links + if result == LinkType.requires_python_mismatch + } + return sorted(reasons) + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> list[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, result: LinkType, detail: str) -> None: + entry = (link, result, detail) + if entry not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug("Skipping link: %s: %s", detail, link) + self._logged_links.add(entry) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> InstallationCandidate | None: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + result, detail = link_evaluator.evaluate_link(link) + if result != LinkType.candidate: + self._log_skipped_link(link, result, detail) + return None + + try: + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=detail, + ) + except InvalidVersion: + return None + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> list[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> list[InstallationCandidate]: + logger.debug( + "Fetching project page and analyzing links: %s", + project_url, + ) + index_response = self._link_collector.fetch_response(project_url) + if index_response is None: + return [] + + page_links = list(parse_links(index_response)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + def find_all_candidates(self, project_name: str) -> list[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + if project_name in self._all_candidates: + return self._all_candidates[project_name] + + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + self._all_candidates[project_name] = file_candidates + page_candidates + + return self._all_candidates[project_name] + + def make_candidate_evaluator( + self, + project_name: str, + specifier: specifiers.BaseSpecifier | None = None, + hashes: Hashes | None = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use.""" + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + def find_best_candidate( + self, + project_name: str, + specifier: specifiers.BaseSpecifier | None = None, + hashes: Hashes | None = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + if (project_name, specifier, hashes) in self._best_candidates: + return self._best_candidates[project_name, specifier, hashes] + + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + self._best_candidates[project_name, specifier, hashes] = ( + candidate_evaluator.compute_best_candidate(candidates) + ) + + return self._best_candidates[project_name, specifier, hashes] + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> InstallationCandidate | None: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + name = req.name + assert name is not None, "find_requirement() called with no name" + + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + name, + specifier=req.specifier, + hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: _BaseVersion | None = None + if req.satisfied_by is not None: + installed_version = req.satisfied_by.version + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ( + ", ".join( + sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + ) + ) + or "none" + ) + + if installed_version is None and best_candidate is None: + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req, + _format_versions(best_candidate_result.all_candidates), + ) + + raise DistributionNotFound(f"No matching distribution found for {req}") + + def _should_install_candidate( + candidate: InstallationCandidate | None, + ) -> TypeGuard[InstallationCandidate]: + if installed_version is None: + return True + if best_candidate is None: + return False + return best_candidate.version > installed_version + + if not upgrade and installed_version is not None: + if _should_install_candidate(best_candidate): + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + else: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + return None + + if _should_install_candidate(best_candidate): + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.applicable_candidates), + ) + return best_candidate + + # We have an existing version, and its the best version + logger.debug( + "Installed version (%s) is most up-to-date (past versions: %s)", + installed_version, + _format_versions(best_candidate_result.applicable_candidates), + ) + raise BestVersionAlreadyInstalled + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> str | None: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py b/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..c67c4d7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,287 @@ +from __future__ import annotations + +import logging +import mimetypes +import os +from collections import defaultdict +from collections.abc import Iterable +from typing import Callable + +from pip._vendor.packaging.utils import ( + InvalidSdistFilename, + InvalidWheelFilename, + canonicalize_name, + parse_sdist_filename, + parse_wheel_filename, +) + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Link | None: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectoryToUrls: + """Scans directory and caches results""" + + def __init__(self, path: str) -> None: + self._path = path + self._page_candidates: list[str] = [] + self._project_name_to_urls: dict[str, list[str]] = defaultdict(list) + self._scanned_directory = False + + def _scan_directory(self) -> None: + """Scans directory once and populates both page_candidates + and project_name_to_urls at the same time + """ + for entry in os.scandir(self._path): + url = path_to_url(entry.path) + if _is_html_file(url): + self._page_candidates.append(url) + continue + + # File must have a valid wheel or sdist name, + # otherwise not worth considering as a package + try: + project_filename = parse_wheel_filename(entry.name)[0] + except InvalidWheelFilename: + try: + project_filename = parse_sdist_filename(entry.name)[0] + except InvalidSdistFilename: + continue + + self._project_name_to_urls[project_filename].append(url) + self._scanned_directory = True + + @property + def page_candidates(self) -> list[str]: + if not self._scanned_directory: + self._scan_directory() + + return self._page_candidates + + @property + def project_name_to_urls(self) -> dict[str, list[str]]: + if not self._scanned_directory: + self._scan_directory() + + return self._project_name_to_urls + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + _paths_to_urls: dict[str, _FlatDirectoryToUrls] = {} + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + project_name: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._project_name = canonicalize_name(project_name) + + # Get existing instance of _FlatDirectoryToUrls if it exists + if path in self._paths_to_urls: + self._path_to_urls = self._paths_to_urls[path] + else: + self._path_to_urls = _FlatDirectoryToUrls(path=path) + self._paths_to_urls[path] = self._path_to_urls + + @property + def link(self) -> Link | None: + return None + + def page_candidates(self) -> FoundCandidates: + for url in self._path_to_urls.page_candidates: + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for url in self._path_to_urls.project_name_to_urls[self._project_name]: + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Link | None: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Link | None: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Link | None: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, + project_name: str, +) -> tuple[str | None, LinkSource | None]: + path: str | None = None + url: str | None = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + project_name=project_name, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..9f2c4fe --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,441 @@ +from __future__ import annotations + +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +if not _USE_SYSCONFIG: + # Import distutils lazily to avoid deprecation warnings, + # but import it soon enough that it is in memory and available during + # a pip reinstall. + from . import _distutils + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.cache +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.cache +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.cache +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +@functools.cache +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.cache +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +@functools.cache +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.cache +def _log_context( + *, + user: bool = False, + home: str | None = None, + root: str | None = None, + prefix: str | None = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: str | None = None, + root: str | None = None, + isolated: bool = False, + prefix: str | None = None, +) -> Scheme: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly continues + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + reason=( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621" + ), + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + from . import _distutils + + old = _distutils.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75cf374ec2a1ad8f8b35bddc7fa2a7ef5945f5db GIT binary patch literal 15329 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 E8=!|Lr2qf` literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03d84e0805c95323bde1f60a05e70be4b961c34d GIT binary patch literal 6778 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b06b33cbce1f385a370f240596c19c1abc82aaa GIT binary patch literal 3720 zcmbUjT}&IvdDiQH8{0sLNuXhqoMKGCzK|c%luJYi6e&aN?V zpmL{^4xdhiNR=RJt0Zcq(B4bl`_!m!eS!K^q7B!VOCPRJG(^=YFYPz8Uhr|Kk#4j* z^UcgR-+bRU-``(rYWxUV6aU}w|M(F4l1}XAv;c1BT@IlYbQ8%)=5lC~OK}{99XUtJ z!A3sCv(cGyveA`tvC*A!!^r16lirk_8Y`k{{x&Ld z@%pbQN}MwTlB#NkWGI@d55l~5K-CQ?mt!k^glGg7JyJd|D?|sdkrY%_QOCrBDq|u} zDa0s9Ijl~Zd|t_$o_vAeoHA`1xWx_L85j6C&m(t)QPi+t`hCR|mQZhis z8Qlz4E)W$pqx}KxP`+MIB#RoE&_QynCrA1^e%y2Qe8&h?bGoBfld;&NO1T+b(UXZO z&|MNVmdrDb;KI%%Ra=Lxwj}5^3DgZt;7~HBrLEUWj!HUC5Zn->w)%lXFG|&etK8aFmc1rUguxT?F^V& zEnAIMS(CYmR)olC71jZ7mG#&(_QpBRb{t)J!)XW%``a9X^A&zZ(04m8J7oSSI*`gi zk~*2BLvOe%u%A;zIjw||J3x2dG0)HOvg-&S%5Fx}1#`yBJpTsj2Wx__lA*@FU-ned zIzXP^Aldsn-sbE>F7A_l0&G@1DVCRvaaEecF`=j!<3dcuMUiNl5fkzR=P?8TIpJpx zGmsIguoYc^AOKc6h1)3h0{pf5M*BKJQf2Dqsz3=-B$zM`jiS~r6vvhHIAsPLK0PrbKmfQl zG?KifsIpdsNC1c5lhVS_NJXq072ZcR2!ur}3mKwKRzgQihqwVJBq9sozCe{k@VZ zKvWje^ql;drXI>n@;**rjshtbSb(t3QJTMreDwJ6hkKP zD1^Fa+-Z7k#hYGR@uthdpqWsoXf(2tS^&&|#SOCnavWBgDb8P@TR^Yskk|il@q^-W z>~EeUTjAQJVyU<^Uz%V2+2`R?TlEbqU3a@yy6<*B@UFF%>(8zS&%XHP;*&E^I@j9E z^dwzZ4p#&e~b#fD|)vp{&6D|Ic)pImuX zA6?~E9m^LNuh|#RmF8CaAIRnK>2>evS8fy*o`r-*b&sPDqYr%Bh->TRps(rWc6dJQ z-$uO8Z^b|mX17u4Sq%I+JlhH~=;N_wr(Kf#|JmuFh-Y|hDp^+a*fVRCcjMVSQqTI( zcc2d(TP+*3p}o=Oy!xIu+)=-G+J=6K?1(XfP9h^@uS5CK$RT4lK4ocI+1F%;eU?K| zkX+djmf*(3Yp=bIK+4eXH?V1s7(`t2M2LxVpY z?s>28*3j^eph$9#YFf_pL5Y;s)QmD_GWA)oI3*Dh2HMQ)tnd<1bWzi%#SDP}Myn@s z1`w{puhTTSfL;W`zxHiLS~nuC>+wtF$Pdba?saE3BN2C)Zo=w6Ld`GkCbUdvFlpI^ zXd!LwI|zdl6t~Iri(;k##UmC)Ld7?InSz=&fPbA?lIf)SV^&0xbiWboFtJ;bCGd0_ z=UD~KBCA>d&25$s2-UcG?0}ubUJcER*9@^IOH1i-EJD?7hHj4Z4U4@!z5RXSwSi&N zOYM-FDxo3742xn_4G$vFvX2F5W}#+1pi_!e2D_#tr|HR1j{%8rv|wP%5q#{Tk%1e1 zri)$Ao?zcYz4mrnsqHf90V32K^glwk&2t?04|L*76nTz(&r#qx@;^tBf1(Rtpx76v zciWBXT9>1nwXu!b*qWq+Q7+9PwJ1;<0>j-?@@2gkj$!y`xSzbW+f ub^v(~zeF6@@+@*_C3H9R;Q-~a<+V-~^yjw@Uk#zBq1vk__@~D?=>G>jB335= literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py new file mode 100644 index 0000000..28c066b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py @@ -0,0 +1,173 @@ +"""Locations where we look for configs, install stuff, etc""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +# If pip's going to use distutils, it should not be using the copy that setuptools +# might have injected into the environment. This is done by removing the injected +# shim, if it's injected. +# +# See https://github.com/pypa/pip/issues/8761 for the original discussion and +# rationale for why this is done within pip. +from __future__ import annotations + +try: + __import__("_distutils_hack").remove_shim() +except (ImportError, AttributeError): + pass + +import logging +import os +import sys +from distutils.cmd import Command as DistutilsCommand +from distutils.command.install import SCHEME_KEYS +from distutils.command.install import install as distutils_install_command +from distutils.sysconfig import get_python_lib + +from pip._internal.models.scheme import Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version + +logger = logging.getLogger(__name__) + + +def distutils_scheme( + dist_name: str, + user: bool = False, + home: str | None = None, + root: str | None = None, + isolated: bool = False, + prefix: str | None = None, + *, + ignore_config_files: bool = False, +) -> dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: dict[str, str | list[str]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + paths = d.find_config_files() + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: DistutilsCommand | None = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i: distutils_install_command = obj + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme: dict[str, str] = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: str | None = None, + root: str | None = None, + isolated: bool = False, + prefix: str | None = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..d4a448e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,215 @@ +from __future__ import annotations + +import logging +import os +import sys +import sysconfig + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import change_root, get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: str | None = None, + root: str | None = None, + isolated: bool = False, + prefix: str | None = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + converted_keys = {} + for key in SCHEME_KEYS: + converted_keys[key] = change_root(root, getattr(scheme, key)) + scheme = Scheme(**converted_keys) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..17cd0e8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,82 @@ +from __future__ import annotations + +import functools +import os +import site +import sys +import sysconfig + +from pip._internal.exceptions import InstallationError +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: str = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def change_root(new_root: str, pathname: str) -> str: + """Return 'pathname' with 'new_root' prepended. + + If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname). + Otherwise, it requires making 'pathname' relative and then joining the + two, which is tricky on DOS/Windows and Mac OS. + + This is borrowed from Python's standard library's distutils module. + """ + if os.name == "posix": + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) + else: + return os.path.join(new_root, pathname[1:]) + + elif os.name == "nt": + (drive, path) = os.path.splitdrive(pathname) + if path[0] == "\\": + path = path[1:] + return os.path.join(new_root, path) + + else: + raise InstallationError( + f"Unknown platform: {os.name}\n" + "Can not change root path prefix on unknown platform." + ) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: str | None = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.cache +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/main.py b/.venv/lib/python3.12/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..ec52c4e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from __future__ import annotations + + +def main(args: list[str] | None = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..1c24efc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,169 @@ +from __future__ import annotations + +import contextlib +import functools +import os +import sys +from typing import TYPE_CHECKING, Literal, Protocol, cast + +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.misc import strtobool + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +if TYPE_CHECKING: + from pip._vendor.packaging.utils import NormalizedName + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", + "select_backend", +] + + +def _should_use_importlib_metadata() -> bool: + """Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend. + + By default, pip uses ``importlib.metadata`` on Python 3.11+, and + ``pkg_resources`` otherwise. Up to Python 3.13, This can be + overridden by a couple of ways: + + * If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it + dictates whether ``importlib.metadata`` is used, for Python <3.14. + * On Python 3.11, 3.12 and 3.13, Python distributors can patch + ``importlib.metadata`` to add a global constant + ``_PIP_USE_IMPORTLIB_METADATA = False``. This makes pip use + ``pkg_resources`` (unless the user set the aforementioned environment + variable to *True*). + + On Python 3.14+, the ``pkg_resources`` backend cannot be used. + """ + if sys.version_info >= (3, 14): + # On Python >=3.14 we only support importlib.metadata. + return True + with contextlib.suppress(KeyError, ValueError): + # On Python <3.14, if the environment variable is set, we obey what it says. + return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"])) + if sys.version_info < (3, 11): + # On Python <3.11, we always use pkg_resources, unless the environment + # variable was set. + return False + # On Python 3.11, 3.12 and 3.13, we check if the global constant is set. + import importlib.metadata + + return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True)) + + +def _emit_pkg_resources_deprecation_if_needed() -> None: + if sys.version_info < (3, 11): + # All pip versions supporting Python<=3.11 will support pkg_resources, + # and pkg_resources is the default for these, so let's not bother users. + return + + import importlib.metadata + + if hasattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA"): + # The Python distributor has set the global constant, so we don't + # warn, since it is not a user decision. + return + + # The user has decided to use pkg_resources, so we warn. + deprecated( + reason="Using the pkg_resources metadata backend is deprecated.", + replacement=( + "to use the default importlib.metadata backend, " + "by unsetting the _PIP_USE_IMPORTLIB_METADATA environment variable" + ), + gone_in="26.3", + issue=13317, + ) + + +class Backend(Protocol): + NAME: Literal["importlib", "pkg_resources"] + Distribution: type[BaseDistribution] + Environment: type[BaseEnvironment] + + +@functools.cache +def select_backend() -> Backend: + if _should_use_importlib_metadata(): + from . import importlib + + return cast(Backend, importlib) + + _emit_pkg_resources_deprecation_if_needed() + + from . import pkg_resources + + return cast(Backend, pkg_resources) + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state across calls. + """ + return select_backend().Environment.default() + + +def get_environment(paths: list[str] | None) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + return select_backend().Environment.from_paths(paths) + + +def get_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + return select_backend().Distribution.from_directory(directory) + + +def get_wheel_distribution( + wheel: Wheel, canonical_name: NormalizedName +) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + return select_backend().Distribution.from_wheel(wheel, canonical_name) + + +def get_metadata_distribution( + metadata_contents: bytes, + filename: str, + canonical_name: str, +) -> BaseDistribution: + """Get the dist representation of the specified METADATA file contents. + + This returns a Distribution instance from the chosen backend sourced from the data + in `metadata_contents`. + + :param metadata_contents: Contents of a METADATA file within a dist, or one served + via PEP 658. + :param filename: Filename for the dist this metadata represents. + :param canonical_name: Normalized project name of the given dist. + """ + return select_backend().Distribution.from_metadata_file_contents( + metadata_contents, + filename, + canonical_name, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a556d7c4a4d0a23fc8e56abdca0735106743095 GIT binary patch literal 6786 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 SfZK|{K-_bABXx$a^8W|@(mO){ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9687da297afb971b1f95e186a3a274aa7b83c37f GIT binary patch literal 15814 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 str: + return field.lower().replace("-", "_") + + +def msg_to_json(msg: Message) -> dict[str, Any]: + """Convert a Message object into a JSON-compatible dictionary.""" + + def sanitise_header(h: Header | str) -> str: + if isinstance(h, Header): + chunks = [] + for bytes, encoding in decode_header(h): + if encoding == "unknown-8bit": + try: + # See if UTF-8 works + bytes.decode("utf-8") + encoding = "utf-8" + except UnicodeDecodeError: + # If not, latin1 at least won't fail + encoding = "latin1" + chunks.append((bytes, encoding)) + return str(make_header(chunks)) + return str(h) + + result = {} + for field, multi in METADATA_FIELDS: + if field not in msg: + continue + key = json_name(field) + if multi: + value: str | list[str] = [ + sanitise_header(v) for v in msg.get_all(field) # type: ignore + ] + else: + value = sanitise_header(msg.get(field)) # type: ignore + if key == "keywords": + # Accept both comma-separated and space-separated + # forms, for better compatibility with old data. + if "," in value: + value = [v.strip() for v in value.split(",")] + else: + value = value.split() + result[key] = value + + payload = cast(str, msg.get_payload()) + if payload: + result["description"] = payload + + return result diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 0000000..230e114 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,685 @@ +from __future__ import annotations + +import csv +import email.message +import functools +import json +import logging +import pathlib +import re +import zipfile +from collections.abc import Collection, Container, Iterable, Iterator +from typing import ( + IO, + Any, + NamedTuple, + Protocol, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import egg_link_path_from_sys_path +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +from ._json import msg_to_json + +InfoPath = Union[str, pathlib.PurePath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + entry: tuple[str, ...], + info: tuple[str, ...], +) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +class RequiresEntry(NamedTuple): + requirement: str + extra: str + marker: str + + +class BaseDistribution(Protocol): + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + """Load the distribution from a metadata directory. + + :param directory: Path to a metadata directory, e.g. ``.dist-info``. + """ + raise NotImplementedError() + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + """Load the distribution from the contents of a METADATA file. + + This is used to implement PEP 658 by generating a "shallow" dist object that can + be used for resolution without downloading or building the actual dist yet. + + :param metadata_contents: The contents of a METADATA file. + :param filename: File name for the dist with this metadata. + :param project_name: Name of the project this dist represents. + """ + raise NotImplementedError() + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + """Load the distribution from a given wheel. + + :param wheel: A concrete wheel definition. + :param name: File name of the wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + raise NotImplementedError() + + def __repr__(self) -> str: + return f"{self.raw_name} {self.raw_version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.raw_version}" + + @property + def location(self) -> str | None: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def editable_project_location(self) -> str | None: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> str | None: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + raise NotImplementedError() + + @property + def info_location(self) -> str | None: + """Location of the .[egg|dist]-info directory or file. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + # XXX if the distribution is a zipped egg, location has a trailing / + # so we resort to pathlib.Path to check the suffix in a reliable way. + return pathlib.Path(location).suffix == ".egg" + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> Version: + raise NotImplementedError() + + @property + def raw_version(self) -> str: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @property + def direct_url(self) -> DirectUrl | None: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def requested(self) -> bool: + return self.is_file("REQUESTED") + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iter_distutils_script_names(self) -> Iterator[str]: + """Find distutils 'scripts' entries metadata. + + If 'scripts' is supplied in ``setup.py``, distutils records those in the + installed distribution's ``scripts`` directory, a file for each script. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``path`` does not exist in the directory. + :raise NoneMetadataError: If ``path`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + def _metadata_impl(self) -> email.message.Message: + raise NotImplementedError() + + @functools.cached_property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + metadata = self._metadata_impl() + self._add_egg_info_requires(metadata) + return metadata + + @property + def metadata_dict(self) -> dict[str, Any]: + """PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO. + + This should return an empty dict if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return msg_to_json(self.metadata) + + @property + def metadata_version(self) -> str | None: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_raw_dependencies(self) -> Iterable[str]: + """Raw Requires-Dist metadata.""" + return self.metadata.get_all("Requires-Dist", []) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + + The return value of this function is expected to be normalised names, + per PEP 685, with the returned value being handled appropriately by + `iter_dependencies`. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Iterator[str] | None: + try: + text = self.read_text("RECORD") + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _iter_declared_entries_from_legacy(self) -> Iterator[str] | None: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Iterator[str] | None: + """Iterate through file entries declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]: + """Parse a ``requires.txt`` in an egg-info directory. + + This is an INI-ish format where an egg-info stores dependencies. A + section name describes extra other environment markers, while each entry + is an arbitrary string (not a key-value pair) representing a dependency + as a requirement string (no markers). + + There is a construct in ``importlib.metadata`` called ``Sectioned`` that + does mostly the same, but the format is currently considered private. + """ + try: + content = self.read_text("requires.txt") + except FileNotFoundError: + return + extra = marker = "" # Section-less entries don't have markers. + for line in content.splitlines(): + line = line.strip() + if not line or line.startswith("#"): # Comment; ignored. + continue + if line.startswith("[") and line.endswith("]"): # A section header. + extra, _, marker = line.strip("[]").partition(":") + continue + yield RequiresEntry(requirement=line, extra=extra, marker=marker) + + def _iter_egg_info_extras(self) -> Iterable[str]: + """Get extras from the egg-info directory.""" + known_extras = {""} + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra in known_extras: + continue + known_extras.add(extra) + yield extra + + def _iter_egg_info_dependencies(self) -> Iterable[str]: + """Get distribution dependencies from the egg-info directory. + + To ease parsing, this converts a legacy dependency entry into a PEP 508 + requirement string. Like ``_iter_requires_txt_entries()``, there is code + in ``importlib.metadata`` that does mostly the same, but not do exactly + what we need. + + Namely, ``importlib.metadata`` does not normalize the extra name before + putting it into the requirement string, which causes marker comparison + to fail because the dist-info format do normalize. This is consistent in + all currently available PEP 517 backends, although not standardized. + """ + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra and entry.marker: + marker = f'({entry.marker}) and extra == "{extra}"' + elif extra: + marker = f'extra == "{extra}"' + elif entry.marker: + marker = entry.marker + else: + marker = "" + if marker: + yield f"{entry.requirement} ; {marker}" + else: + yield entry.requirement + + def _add_egg_info_requires(self, metadata: email.message.Message) -> None: + """Add egg-info requires.txt information to the metadata.""" + if not metadata.get_all("Requires-Dist"): + for dep in self._iter_egg_info_dependencies(): + metadata["Requires-Dist"] = dep + if not metadata.get_all("Provides-Extra"): + for extra in self._iter_egg_info_extras(): + metadata["Provides-Extra"] = extra + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> BaseEnvironment: + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: list[str] | None) -> BaseEnvironment: + raise NotImplementedError() + + def get_distribution(self, name: str) -> BaseDistribution | None: + """Given a requirement name, return the installed distributions. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_all_distributions(self) -> Iterator[BaseDistribution]: + """Iterate through all installed distributions without any filtering.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + This is based on ``iter_all_distributions()`` with additional filtering + options. Note that ``iter_installed_distributions()`` without arguments + is *not* equal to ``iter_all_distributions()``, since some of the + configurations exclude packages by default. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_all_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 0000000..a779138 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py @@ -0,0 +1,6 @@ +from ._dists import Distribution +from ._envs import Environment + +__all__ = ["NAME", "Distribution", "Environment"] + +NAME = "importlib" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..238ddb4c02fafe4779dec9529c17fbb58d69b81a GIT binary patch literal 370 zcmX|6Jx{|h5Vh;1ftD^vOh|~445?KR8$v434Z3v8V!5@|T21W8b_>~H;wP}P@mu%@ zkt!jW*pRw)fh%7(ynCnjo_+V+YBdnlF8Q3?Lw{Qje^vV>%L5<}NFaeTl;afRHLqp0 zoTLP!F%skvr-2C4ungn+I|h4oYa%$Mvet1f<=!UWH8Rx%;t2jPWdE%!UwpLQ6ojx}n#`PF=xA($PULx$K@D zCj-yD8YSmONY>RnE1hz*J%^_#d_s%TPmDflcMhpjUM3Kp@-gHKRZyn1mli@am!1pm zIsIRcGEkLgtX-6=jg#DnStd_y3l>>l?sfn^2*!AU_7`aHwb8kaUZU;0z&1ho0vC&C AxBvhE literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ca33ba9a593eb43e50a89a2a0571aa28bffe6dc GIT binary patch literal 4249 zcmbVPO>7&-72aJge?&^6WywE^t$Hl0vguls-Lx?f#11Swv4g~f0lPn7+fXa+NLqQh z%gin%k)Z%JFi-_;Q57g^6>U-VR0}T9LoYe>(0eab6u|1%MGeG2k(*NK9ym|9|@4fw7S65QOb1d@T=^gYwrys2+8g|s}WpwTQbxBsO38e(l**@6MN_UTX7rw7#(3w$NT@sCB}d~J zP4IYowA<`7JMQWEbcYiDnO$ZQzYmz*W(x0~s+LKAK`Jt8kTM*{^$p*09WR%O1d%IF zHAvhNuJ0CIJJ5@U=V!E_JLig$VOuqB=8O^#dWweQI#y8*6&wr|Lz}`@3t#H?adhr0 zT*<4ZlGjY#RAE5GjG7wWdNq=X1*tK^yvcpTG<>7jT&Sp6M}3@B-DXlrU9Bqx^unjE z;TK8Cr>d-}xiu}&P0RCxnBa!zIyjB)aeGp9Lq??0c;q<7*t5COIal2E%0`iUqqpB0 zdGE^DH%D%h8;T=WU6U8CIEG#IEN?VB%bnR#+nN|HSN&<%c{O|C>!Y6K^ARk*YfNE% z*(#3~EXU^pi$+V$ql{XmvMYRAStz=tvf*dT@N5B+mR~5;`gR>V+Zs)gkq6K$Dw};r zm-L@>Y#u(or2jOvjWMOzJ}-U{zNB~FKnM7OcV^Ig@%c5dhMAUMcTHm^^4sWbC8OtR z2Ve|qSFE;?!y$T3t`7Yn z^ZU%|u?J%h{6BrT_ThulCl?y&OO3=O(F>VeCMNIa*@?ElvMoch*KnJ{ny3&u?G9a1_PL1Eps*v?0f9Yw;bFOGhJ+gh$7Vy$*|hCnP)jgj(zv4 zXRzCMU1*<^>fDN8wqz3XaK+`!?gO?o1E+?AWjHDhJ&n`))+|5A02Agqc9opt8qU?+2$qe#?7~caD|{{yXm775Nlnnd(YC(uRvy-_`j$;?LN8DeX5Z-B|-OpSt5p@ zY2UuFvLRqrE#2NZ92g|w)6_^x3X0m9Ca-8N6Bh$COEwB(HU$9FErMAIpta0}UlqeN znW2VJLz+TjN$u3okT;6vp7N!Zh$goBlvwwFG&MT39YJr4dRwtQV_(u(sEai0@kKiV zhDql6t<(_>O|6v=5#b`nFL7mWTfnkE%|j{yK-8y%(F!rAz2`B|v;>&uifR*rH?CZL z_w|rzg4-5Q1F-KW8B~;oHEZ|;_5!ht*yV>?@GJv5B)kl8V)xcf{*qD*-#y1X_a)ki zFGb)9mJtD3G~@GS7lfqaw6|ggEU8S`Rx!)QzzifQ*j7Yt3)u@zt_@1VB~U}sMH{?2 zC#}QgV1r2>k_=_WtZSKU+L#5QXlKFa1ahDxZ^>|~BnYZy*$seUvSNdUP=Fdis)N5u zmP0;~`aHJ;*`Em|7c6^_n~h=TZq&nX5{V}@Zwlqn<1{h@R)jg1uR|A7orQXdQ|9jy&jv? zZYx+HmFxSlo>KD*59+Jf!=~+KoHF79)|x77hPeAIhtz4z4W%|}D8tq;An(R=ZS z?=4iq{-HwMnHCtg|7mx{|5|DNjJ>^-t_WcgB~lRbgt zu}?{5@6T!<*H%uge6W!|xq5OvJ+!1_aQV(st&!+|k~*|MW3*xa7ufl7*qbUrWnNuS zMal>8!l$mbz<68nn_n}E;>X(aN(*W)gZ_f*w*g*PeaepVX|3_Pe5w=WgLtj|G18j( zNPW2t8NK#rg6~VBw$uJN*^5>R!i4qRF_>bgEE9}b!?KMD8?}HVs>spu+lErFN8D)v z`3MC}Vp^g7ohDH&u0ZHrlKw6lpte&v@cJi18|gRys;;NU8u773AI;-5TkYFO4>uCS zPgCh%M3(RT_{~SD6YHrHi`O2f4lSF%x%yd(J?`#b8ETw<`?K!rjl}iGspBhmHd2EP zeNcihqYFy);wUv#p+B!WSRHxL;gFElKbIIl&1duPAtN_MkO$lSAMBGCMBvOps`Mu- z_#!~1F9^QD!TpIj=xC1#s?~!SYFAum=wgDm^muR#i82e~JEkkL;U^xXviJnCJ-MH} zogn#b!>;hKx|1IcgQS7tR(OTvXThkU{3N5xv&0+W_sC^&17j5Lyd0XXh^ngpR0cm+ z`v0MH{7V^LSBC$syt5OFsh5|}?kITe9PCktmgaX9ytdDDs9)VWdPqIInapfO@O}~< P+>YYCbG}mzOUC~J6}mXJ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..55df4bed0daac2865869da4ae6adebbccadca128 GIT binary patch literal 12829 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py new file mode 100644 index 0000000..7de614d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py @@ -0,0 +1,87 @@ +from __future__ import annotations + +import importlib.metadata +import os +from typing import Any, Protocol, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + + +class BadMetadata(ValueError): + def __init__(self, dist: importlib.metadata.Distribution, *, reason: str) -> None: + self.dist = dist + self.reason = reason + + def __str__(self) -> str: + return f"Bad metadata in {self.dist} ({self.reason})" + + +class BasePath(Protocol): + """A protocol that various path objects conform. + + This exists because importlib.metadata uses both ``pathlib.Path`` and + ``zipfile.Path``, and we need a common base for type hints (Union does not + work well since ``zipfile.Path`` is too new for our linter setup). + + This does not mean to be exhaustive, but only contains things that present + in both classes *that we need*. + """ + + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def parent(self) -> BasePath: + raise NotImplementedError() + + +def get_info_location(d: importlib.metadata.Distribution) -> BasePath | None: + """Find the path to the distribution's metadata directory. + + HACK: This relies on importlib.metadata's private ``_path`` attribute. Not + all distributions exist on disk, so importlib.metadata is correct to not + expose the attribute as public. But pip's code base is old and not as clean, + so we do this to avoid having to rewrite too many things. Hopefully we can + eliminate this some day. + """ + return getattr(d, "_path", None) + + +def parse_name_and_version_from_info_directory( + dist: importlib.metadata.Distribution, +) -> tuple[str | None, str | None]: + """Get a name and version from the metadata directory name. + + This is much faster than reading distribution metadata. + """ + info_location = get_info_location(dist) + if info_location is None: + return None, None + + stem, suffix = os.path.splitext(info_location.name) + if suffix == ".dist-info": + name, sep, version = stem.partition("-") + if sep: + return name, version + + if suffix == ".egg-info": + name = stem.split("-", 1)[0] + return name, None + + return None, None + + +def get_dist_canonical_name(dist: importlib.metadata.Distribution) -> NormalizedName: + """Get the distribution's normalized name. + + The ``name`` attribute is only available in Python 3.10 or later. We are + targeting exactly that, but Mypy does not know this. + """ + if name := parse_name_and_version_from_info_directory(dist)[0]: + return canonicalize_name(name) + + name = cast(Any, dist).name + if not isinstance(name, str): + raise BadMetadata(dist, reason="invalid metadata entry 'name'") + return canonicalize_name(name) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 0000000..89364b8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py @@ -0,0 +1,229 @@ +from __future__ import annotations + +import email.message +import importlib.metadata +import pathlib +import zipfile +from collections.abc import Collection, Iterable, Iterator, Mapping, Sequence +from os import PathLike +from typing import ( + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, UnsupportedWheel +from pip._internal.metadata.base import ( + BaseDistribution, + BaseEntryPoint, + InfoPath, + Wheel, +) +from pip._internal.utils.misc import normalize_path +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from ._compat import ( + BadMetadata, + BasePath, + get_dist_canonical_name, + parse_name_and_version_from_info_directory, +) + + +class WheelDistribution(importlib.metadata.Distribution): + """An ``importlib.metadata.Distribution`` read from a wheel. + + Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``, + its implementation is too "lazy" for pip's needs (we can't keep the ZipFile + handle open for the entire lifetime of the distribution object). + + This implementation eagerly reads the entire metadata directory into the + memory instead, and operates from that. + """ + + def __init__( + self, + files: Mapping[pathlib.PurePosixPath, bytes], + info_location: pathlib.PurePosixPath, + ) -> None: + self._files = files + self.info_location = info_location + + @classmethod + def from_zipfile( + cls, + zf: zipfile.ZipFile, + name: str, + location: str, + ) -> WheelDistribution: + info_dir, _ = parse_wheel(zf, name) + paths = ( + (name, pathlib.PurePosixPath(name.split("/", 1)[-1])) + for name in zf.namelist() + if name.startswith(f"{info_dir}/") + ) + files = { + relpath: read_wheel_metadata_file(zf, fullpath) + for fullpath, relpath in paths + } + info_location = pathlib.PurePosixPath(location, info_dir) + return cls(files, info_location) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + # Only allow iterating through the metadata directory. + if pathlib.PurePosixPath(str(path)) in self._files: + return iter(self._files) + raise FileNotFoundError(path) + + def read_text(self, filename: str) -> str | None: + try: + data = self._files[pathlib.PurePosixPath(filename)] + except KeyError: + return None + try: + text = data.decode("utf-8") + except UnicodeDecodeError as e: + wheel = self.info_location.parent + error = f"Error decoding metadata for {wheel}: {e} in {filename} file" + raise UnsupportedWheel(error) + return text + + def locate_file(self, path: str | PathLike[str]) -> pathlib.Path: + # This method doesn't make sense for our in-memory wheel, but the API + # requires us to define it. + raise NotImplementedError + + +class Distribution(BaseDistribution): + def __init__( + self, + dist: importlib.metadata.Distribution, + info_location: BasePath | None, + installed_location: BasePath | None, + ) -> None: + self._dist = dist + self._info_location = info_location + self._installed_location = installed_location + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + info_location = pathlib.Path(directory) + dist = importlib.metadata.Distribution.at(info_location) + return cls(dist, info_location, info_location.parent) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + # Generate temp dir to contain the metadata file, and write the file contents. + temp_dir = pathlib.Path( + TempDirectory(kind="metadata", globally_managed=True).path + ) + metadata_path = temp_dir / "METADATA" + metadata_path.write_bytes(metadata_contents) + # Construct dist pointing to the newly created directory. + dist = importlib.metadata.Distribution.at(metadata_path.parent) + return cls(dist, metadata_path.parent, None) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + dist = WheelDistribution.from_zipfile(zf, name, wheel.location) + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location)) + + @property + def location(self) -> str | None: + if self._info_location is None: + return None + return str(self._info_location.parent) + + @property + def info_location(self) -> str | None: + if self._info_location is None: + return None + return str(self._info_location) + + @property + def installed_location(self) -> str | None: + if self._installed_location is None: + return None + return normalize_path(str(self._installed_location)) + + @property + def canonical_name(self) -> NormalizedName: + return get_dist_canonical_name(self._dist) + + @property + def version(self) -> Version: + try: + version = ( + parse_name_and_version_from_info_directory(self._dist)[1] + or self._dist.version + ) + return parse_version(version) + except TypeError: + raise BadMetadata(self._dist, reason="invalid metadata entry `version`") + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.read_text(str(path)) is not None + + def iter_distutils_script_names(self) -> Iterator[str]: + # A distutils installation is always "flat" (not in e.g. egg form), so + # if this distribution's info location is NOT a pathlib.Path (but e.g. + # zipfile.Path), it can never contain any distutils scripts. + if not isinstance(self._info_location, pathlib.Path): + return + for child in self._info_location.joinpath("scripts").iterdir(): + yield child.name + + def read_text(self, path: InfoPath) -> str: + content = self._dist.read_text(str(path)) + if content is None: + raise FileNotFoundError(path) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + # importlib.metadata's EntryPoint structure satisfies BaseEntryPoint. + return self._dist.entry_points + + def _metadata_impl(self) -> email.message.Message: + # From Python 3.10+, importlib.metadata declares PackageMetadata as the + # return type. This protocol is unfortunately a disaster now and misses + # a ton of fields that we need, including get() and get_payload(). We + # rely on the implementation that the object is actually a Message now, + # until upstream can improve the protocol. (python/cpython#94952) + return cast(email.message.Message, self._dist.metadata) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return [ + canonicalize_name(extra) + for extra in self.metadata.get_all("Provides-Extra", []) + ] + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + contexts: Sequence[dict[str, str]] = [{"extra": e} for e in extras] + for req_string in self.metadata.get_all("Requires-Dist", []): + # strip() because email.message.Message.get_all() may return a leading \n + # in case a long header was wrapped. + req = get_requirement(req_string.strip()) + if not req.marker: + yield req + elif not extras and req.marker.evaluate({"extra": ""}): + yield req + elif any(req.marker.evaluate(context) for context in contexts): + yield req diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 0000000..71a73b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py @@ -0,0 +1,143 @@ +from __future__ import annotations + +import importlib.metadata +import logging +import os +import pathlib +import sys +import zipfile +from collections.abc import Iterator, Sequence +from typing import Optional + +from pip._vendor.packaging.utils import ( + InvalidWheelFilename, + NormalizedName, + canonicalize_name, + parse_wheel_filename, +) + +from pip._internal.metadata.base import BaseDistribution, BaseEnvironment +from pip._internal.utils.filetypes import WHEEL_EXTENSION + +from ._compat import BadMetadata, BasePath, get_dist_canonical_name, get_info_location +from ._dists import Distribution + +logger = logging.getLogger(__name__) + + +def _looks_like_wheel(location: str) -> bool: + if not location.endswith(WHEEL_EXTENSION): + return False + if not os.path.isfile(location): + return False + try: + parse_wheel_filename(os.path.basename(location)) + except InvalidWheelFilename: + return False + return zipfile.is_zipfile(location) + + +class _DistributionFinder: + """Finder to locate distributions. + + The main purpose of this class is to memoize found distributions' names, so + only one distribution is returned for each package name. At lot of pip code + assumes this (because it is setuptools's behavior), and not doing the same + can potentially cause a distribution in lower precedence path to override a + higher precedence one if the caller is not careful. + + Eventually we probably want to make it possible to see lower precedence + installations as well. It's useful feature, after all. + """ + + FoundResult = tuple[importlib.metadata.Distribution, Optional[BasePath]] + + def __init__(self) -> None: + self._found_names: set[NormalizedName] = set() + + def _find_impl(self, location: str) -> Iterator[FoundResult]: + """Find distributions in a location.""" + # Skip looking inside a wheel. Since a package inside a wheel is not + # always valid (due to .data directories etc.), its .dist-info entry + # should not be considered an installed distribution. + if _looks_like_wheel(location): + return + # To know exactly where we find a distribution, we have to feed in the + # paths one by one, instead of dumping the list to importlib.metadata. + for dist in importlib.metadata.distributions(path=[location]): + info_location = get_info_location(dist) + try: + name = get_dist_canonical_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + if name in self._found_names: + continue + self._found_names.add(name) + yield dist, info_location + + def find(self, location: str) -> Iterator[BaseDistribution]: + """Find distributions in a location. + + The path can be either a directory, or a ZIP archive. + """ + for dist, info_location in self._find_impl(location): + if info_location is None: + installed_location: BasePath | None = None + else: + installed_location = info_location.parent + yield Distribution(dist, info_location, installed_location) + + def find_legacy_editables(self, location: str) -> Iterator[BaseDistribution]: + """Read location in egg-link files and return distributions in there. + + The path should be a directory; otherwise this returns nothing. This + follows how setuptools does this for compatibility. The first non-empty + line in the egg-link is read as a path (resolved against the egg-link's + containing directory if relative). Distributions found at that linked + location are returned. + """ + path = pathlib.Path(location) + if not path.is_dir(): + return + for child in path.iterdir(): + if child.suffix != ".egg-link": + continue + with child.open() as f: + lines = (line.strip() for line in f) + target_rel = next((line for line in lines if line), "") + if not target_rel: + continue + target_location = str(path.joinpath(target_rel)) + for dist, info_location in self._find_impl(target_location): + yield Distribution(dist, info_location, path) + + +class Environment(BaseEnvironment): + def __init__(self, paths: Sequence[str]) -> None: + self._paths = paths + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(sys.path) + + @classmethod + def from_paths(cls, paths: list[str] | None) -> BaseEnvironment: + if paths is None: + return cls(sys.path) + return cls(paths) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + finder = _DistributionFinder() + for location in self._paths: + yield from finder.find(location) + yield from finder.find_legacy_editables(location) + + def get_distribution(self, name: str) -> BaseDistribution | None: + canonical_name = canonicalize_name(name) + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonical_name + ) + return next(matches, None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..89fce8b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,298 @@ +from __future__ import annotations + +import email.message +import email.parser +import logging +import os +import zipfile +from collections.abc import Collection, Iterable, Iterator, Mapping +from typing import ( + NamedTuple, +) + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.misc import display_path, normalize_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + InfoPath, + Wheel, +) + +__all__ = ["NAME", "Distribution", "Environment"] + +logger = logging.getLogger(__name__) + +NAME = "pkg_resources" + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class InMemoryMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> list[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + # This is populated lazily, to avoid loading metadata for all possible + # distributions eagerly. + self.__extra_mapping: Mapping[NormalizedName, str] | None = None + + @property + def _extra_mapping(self) -> Mapping[NormalizedName, str]: + if self.__extra_mapping is None: + self.__extra_mapping = { + canonicalize_name(extra): extra for extra in self._dist.extras + } + + return self.__extra_mapping + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + dist_dir = directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + metadata_dict = { + "METADATA": metadata_contents, + } + dist = pkg_resources.DistInfoDistribution( + location=filename, + metadata=InMemoryMetadata(metadata_dict, filename), + project_name=project_name, + ) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_dict = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=InMemoryMetadata(metadata_dict, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> str | None: + return self._dist.location + + @property + def installed_location(self) -> str | None: + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> str | None: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> Version: + return parse_version(self._dist.version) + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iter_distutils_script_names(self) -> Iterator[str]: + yield from self._dist.metadata_listdir("scripts") + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + def _metadata_impl(self) -> email.message.Message: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: + relevant_extras = set(self._extra_mapping) & set( + map(canonicalize_name, extras) + ) + extras = [self._extra_mapping[extra] for extra in relevant_extras] + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return self._extra_mapping.keys() + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: list[str] | None) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) + + def _search_distribution(self, name: str) -> BaseDistribution | None: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_all_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> BaseDistribution | None: + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..7b1fc29 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1 @@ +"""A package that contains models that represent entities.""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..850579cf7d9b87ed144063e79fe504d631257e57 GIT binary patch literal 275 zcmXv}K}rKb5S%fhLC6cd>@|noK}Ec1U=?rTB{wg_xZAi*#+hNdjjSK>4Zg)6FSk~$szbu*bi1Nkq#2kWtbPt~d?)$8fO$5mY<*DTx%6x=y3 zni$w&pyD;Q;AtmjNErwM7t+WGR6S1h>e$*gHr9Tr_29no<~`;Gi64-e-d?PWP< z$Jms2VrT2%d{0QGT0&SFkIyFc+{JKFot+y(hH@WbYmXGB4@E;Ao{f@NOD|M3(g=_(Dh*6vX literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f27ee8a25e879fb8b9ac4b22efffd22d50aeec95 GIT binary patch literal 1616 zcmb7EUuYaf7@yhych_sAy~d`JvMq{THM=y8Z?V`0k!TGxNrf)Ly1ki8H`&|0&TJxg z+(V%Cy*^!_2*szC^dUak$M~e+OQaFQVnHi?@a@70LSFQny}cNMB7QL6{O0?tbyvqo zLKGAAk+zQe=Sb*XMD#m|80&D8p!NQQT%%dAioc1Kh0_A@6TcezoWnx@kTM>`5kR%! zGfn|0SAuA19)MP3af?RP{FrPq@03Ae;iwSb2Yv8;qFM!)$U{|3k)rdR^7E}kM zWXJ%d3Pfb860jjEHHb#^nn8>^id!HWRcjI{04_FltC*gcj(FmSp`U<_PNRgIzS)QqK!G2cXR8B~vt})3W^iD){ZLMo$gk5>U+G7jDj|f)O5hMXB3Kz% zsxg`@vuLKOz-mA`02xN_KCli-fcI%pNDomPGSSBCxd#8YwUi7R0kx$;G5^PYxh?-~ z-9(l$b0{cFPPO>PBCRHA$@4f({3KzXmzJ}FdwD)AB~>^LYlk*-kq8rLukL&jvnAf} ztCTx)?~Gl!botG(IXEn+j!ngcdY2+UZ1R9R_6m(woG`fIG@8lHIJ#h;A9r|=&@tG& z!Qhuqn(pWSGth6nl}@x0dQe{2JLpg#@{^0$DkqMwYTKN_dL zH%_fh+#h~W**5Hhl95LrJbv}b8<)3@se@uL{K2q$qKwu2DG7`;7+KZl0d!CsEeh!& zx+g)k(PIAK4l3`#TL8_$KFZagkw4ewM5S64b3bVFTwV#YrI>zV?qQ3G&%?qj3sLxH zvI_82hcb#1wnqOgHJSP(*z$A0R?*I};g0p0b$4{@^!UcaSCd~(ZrGd3=KMF;zrMct z{Sq=q0;(520{V>;n4A{6;+928VIOz#tw}{nQymtI|B@%!1o9 zCj0rj$X)@Ns39K*)|D~FPtlp@==@Xk_H*>wu7;%2-IurVi+@N%couh&;5`{hCwDVJ GcIIE$CWRLO literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a30e09640af38ed43203e4a8dd1ebaa5a9d4176e GIT binary patch literal 10507 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5987847f34959d94047ea34d708ac08b3122bdc GIT binary patch literal 4140 zcmai1Z)_9E6`$E%|95Q11~(xAHiUoXVjH+tPztGze+LJ+4P3vZLVJ#9lQ>!LhS@bC zmN`Xjs!OU!fOKt)Pz#kR9SBvuk9=%DwNm@RCZM>hREpG|)ccl_t9q9&?VDZOalpXD znVmmx-n@D5{ocI!OIw>4LFwZEH~N_ep?|PWy$E&#uN{ZR0wRcD1?BJ{#;naLT#g^) ztv0U+Ime&_BM!Zfh%keQ<1uHi9&}DQW3De*Cx%U5T2(b8ZDci7hi-c&t!ipElUA|? zSyIzE83z5Qv|KK&k~5TQG-GqIYu^6gwIOIMAQ=r}f(AK)2YJE~euNtoJjjEHkJa`c z@e{`kh(_9ob4D0+k^phR*Co42kho`r$2I5;5D!a6{ri^EjQiIbz*%&3?aC(@bm^oT6N0mUI%%&NMP zRuq{eOpmHbLs>OVr%a!wDpR#iDpNb1B@j~{^zqsct&rMZOIR+^?2ceS&}C(KV?<~2h@!Yolam@9*WpC6p1g7< ze(}AN--%ygM$E)dX+)OZQ`5?np4F3y>#}-1sbq(e6H~^hroNjvbU3MJ4LM#@hn}3s zP9&wQYRD88C3CP`(UZ0YrHrlR#Ke^8mVhX0NKzrX$pVS`cpC_($Dx`=t6t>aTK07> zcXZuz%$~3MqGjKX(z$C^m=9FD_Rb2=-5qPN0A(7gfDZF={d#|*LD&Q9^xaT>{V(+OG?dw|9N_G-_hrhqm}T$H#*zyr@eb|%wc-7x&<>eBby#c$|z}Fmn1Wg(v0)D2}RDy z;C6&f>568sDIOph<1D#plx@pw{n1C3=%!PWn1qEbt>oUusJ{=@H`8c2*jd{1V9RGa zezW6Q@ZfT!r|j=p@da=7&-IsnbYHqFJ@xffBOU(?hM$E8{;>N`i9aTwu^1dEy9a0p zc)Vgl%OOW$h8b@RzAu+nPI(W)Gf+1ia$^n5Km=&zhA_kb$_b7nq}K8N0@o+5<5*0f zov@f;kVRxk+K35{ux(`KbE2&#prY~wZG}{OyccNo!%$75YB;)(xRY24$134ix&6Sy zo`k$~EB7W<91L7Neh)~}NIPe7i z#~8R?DjQV9QGmIhaVHRQf?OCv2VAq3gn0gPkw1;Do&kspMS(aObZPtB_q7R@35Zm_ zmd{dI7Y~VPI+ABVO|0X-b;mIP=&>)Ei3`qSkSWN=Vs6t5S1C30$*eI-nH5ckKA~g{ z(~(i+GzCx-Vmh)ak#A522Gd2ddL~T?gb2s=w33%iCoq5@W?|msRe91Bn5XNE8{Bwe z&9$SWkcB9+l*=3Wv?9qjGD@DvdSUnGh|rp9FYwa;3e_}P@r9OrT@_zf>C`iyxE$V5 z4V_=(xkz9YaczNBCkk%4H9j|9>Rk-%nB}X1t)O ztE(Zjwc`bHdbZD=t_CBwZ#)eGkLZH`j{nm@HPo>j+5O z#A*gcnqU=6=1dQyp#@om^zr*ID{-X?wf^KVO_VQEDz#I{M7N`>Oy7b(W%w zL9y%>SKCmayJXz|`0mG*w#{VTW-<=~L2N zC#%B)mzbL-VS=7y)j_D%-F5!fa(aqQFmlTBCSZD$wJmZsS_m{8*AlA6+a~tY9w0Hj zk_0b?JcMM)^h?q;h{|?`V!9-WXcYF~l>PCAHRQJ8J>hd}EtweUMI^YWd zJi5mkfoX4G%>!d=+gy&zcrA>fhIwcB1-HeqeT|3Ks@3ZAI(ok9a5!wUSevF|E_T9U zxNRuQx|kE0UGQK^Nbs&A8co=*D0p)w@qNqQq5^zh&)~%{rm!o~AbL?O& u)wIsJ?mlj-v7cUqG3J6gOK4YljPc*mt}oDczd(on>pY9G_XT3Lwf6s-Se7#Y literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ea921a86e1f21d39a9de83bcd010ab0ccb07ea87 GIT binary patch literal 1706 zcmZ`(&u<$=6rTO*jpN8INnFbfXr&;K)5Z%)X%GTL8xV<9g{XlF`7&B|#>u*y-DPGI zYRiWpMIwmsRAm`anW#kjUhn&q z#Frt)fKP2m<)Pn2(vp*=rc&=3$w{BUSrpD8s45ews;t6k-$+%JC{!aVd>YYf`VOi| zB(t5X>ckK}s?}67w5?V%JLry7HC9kL8|Rj7=eE5{7kxtSG_T*JA)}o75jSnK8#0ra zY5T+sS+MC6%1vr>mon3K9Ll*F1t#@L7`TvE)?#IYd9m)($P1h}%iZs4|h;>Gz4dyR7O844AiMjYr{{-=+w1*DX0T=rc$^ z=-Lu$NiBrC;3E|E;6rtzmvg4;!)No}tR)>t>Aarn`OY-#-QTf=>iM%sZ$|q0u(p5Z z6V}STvtX^be==G!SPAun*+6AwDb`akV^siI9*#A>5mFW#7`wh3VVpo1>wvZAeh_P+ z%{Yw>FnQ>?5fe4XBccJg7BC#z(HhHukBI^kPioBn#qkD|AB(>W?UcBx@bgJ#M*zkCm{&1h&obL6%l}w-r!v4C2uidSHy~X4*#a zo>4j(E$pbD8V?E+d)^n`ap6+CaA|-3sPMvZVXj@6gV^v%>6zow<#y@v{`*IztKi9> z6eo_0Q|;o^{?()640uL5S@bL{{@E~3;Rpnn16)p@Qs5GBB!s*LlR-Mx2UkH%jJja= z{|3;ZPouLCP_LU0FH~A8tLz*E*?ACg26|VAcb4?0EVD5YDT3f4#WYz#I7UG;b{xh)3J#zIx-=b2qmZJ8D*&`)a;}K>gq(>PPaousTIayK;B3gFx+1J`^gcJlU#w zel3bZ{)z?k3*Ab~BjYfHU9eBnf$IGlOsFGbGD9~;S@{{qAHmuvt4 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c2ce18faa1d79c105a37759ee52eabeba9a4e96 GIT binary patch literal 2294 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 VW0Gh41UY!t02u019%@XO{~NEvbUy$9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..558f18b10310438b56702588b6de5990cee6c670 GIT binary patch literal 1035 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 UhB?8M5hZXSY|Dd66aDo60EZl(mjD0& literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8a2215e9f3b774ca770b56fd07e8b89d4c8e849d GIT binary patch literal 1890 zcmZuxL2DaF6rR=Y%CamwO-Vvy$7U)wtraY7>kw#7Tdq`Of8dV2={Cp)&Y4?xdv<9ixwX$C=If33Bx^FsxX;u{kjL=ta-X(UC!#S^I6h?9 zr#uJ)2(cPx;r1jAH-*H3=<-O=Amj(>B9MYZu3{QR(1n{}#8f36dEq7n=oMYkqx^^k z$!!yXC9tZ5EvRBDS%75$4dNR(l6kWwX@s20UUDZq;6gGY+0#xanIi38d?4M6J&mL`&J*3%W3@#MAkU$+YpV|La6URGy)$Y7orjO2=%OzO}j94 zM=}i##n*v~MdN!wx{^;1ukqb%Q%PI+Dh8YQ+d~FWO9K>cQ3=Rks<6QbuZ29NLNTt` zRtJ9xeF606G z0c%l#oQ_6H(t{%~r?fFa6Cf}nkcveVtm8%}#>X@YwVMiQs`4OIF&4+b1I3(m$A#n0{-*XeQ=oWXwAygZ8__g(#U~^2miJQe7IkSI00`JN=fq#ICIw93A_`okkz$iN zYE=pE5-MdA2heWH90YP!8~t#}Ic*AHl)e!fD~w+&uPfw{0w$R9_IJx)Z-4%%ysw`i zzq}&?Mz%SPdMZ?2<(TnfFA5u;xmXV?A8mLlj9Gb1qt_1G9tnBOBqVt)NRO0vNxZ(y zO;u_4k{p3qVNA%$@^v?)G9F&k#eNLt6b;utzSwE6*YI1;BVMo5w;1Ww+Gv|k|PX@^Fmkr_e);Y0TY%bQoL_Rc z&hIP^U1*0{gx?#^XfKEEmWQ+2%cFPh4d=91K<}=n^M?y4zwplu=rjB3Eo&uLSKjQv zsi1PHpSWZd2(4TaS}}xHre6lBpFdNzrfYJN*SW_Ahfn1)4Cwb%-3BwXEz9~H75_wA O|K`iq)++=iO?v|b1Q^Hw literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..437d095289e4b2c1059c37621198545a01ae22e9 GIT binary patch literal 4867 zcmcIo-ESMm5#KwKB6*}lyS5yCION)NBr~N>v1|v3?YMPow+K?mM&h6eUE^}%ouspm zcg*h5HVF!K0zW7~g4#$?CrFC~MIKVP1^k%*p)XXOLhK;{3?xOHJ}FUvHhO7i_Q<0s zDFyn_ld+urnw_2b&BywWgM$izZ#?qv#kY15@)>rzUo;@3^@~8{CPE?Ymq(o%$V`2>4B1Zh49B?fub-9rE0y_oC zPw9^1db(%14xfd7xdeU8g2 zx@|Q~ZS#_Ha8%Gnf}iefOj42z0ymIKkp;NTZ>3T+NrFEk(WQF7M$(Ahij`u9V#IDm zO9MszLGn)q1fq@pGN$sK4)=%$f{Irvtl}d%Kc;&!~^~n?kl|=ex^qYmHR2} z8fe+jJbi)tnN1yyo8D|Wwn^U!ph4x*`UVhpNmFhTEu3!3H}`rSAP{n;1GI1&2tzXD zF|s5(DKFj~Z_4+ifL@Y~$dzPwy!Y#+y0n+>QcWcg@*b*LC;Xz;vPbQ zdkkz1s9~yXVzQ|UH=4fuWuI%LPJjm+bsj`>jBa?tF#~Kpjd~xRb;E% z)T;sBQODqAoH7&qjDu1@-FRf5)E#&1#1Ytlejy?g^;}xxCOvGb3o3mX6sm5HHkVEu zz5H^aCl|_gaS_}YRk)~MGpTJl3*I6DlG9BLqBEco(#Q`4PleP z2C^MtyP+uz_)%`!^T7f!*V}~a`2aL%O-eUjnZE9_s~n(h^6BT#P5tD|4~|bgk72Yt z^+VS%wKD*>I=A>VV8gjKZCi8GRgn&ksz+v~x#gKtUB8&FTGeR?tPt^G({u&4+k83* z`VhD=hk(KSga&IYPtzL1o70Qh9o~;3z6#AvvQ{LMPcBD4PUIh^##*U^pJWfLX4RFf z`XRe7wX!p>pZ`32?7sFOdv5vs!{L#;FW!0a*X0lL@BjQh`$%d{o_LTw`C$0evhr~6 z$a3_JWIJ0#X5;PAgU}snj~#-aOgpFI=>D|S(thIDa`exM{p%nEDR*Kt(gZVt z$O8WW0!j#J38Li{oZ0fddeD%spq;mTM&uURdB<6Due0`EH!DD#hqXIolX=;QH6>^V zU>>cx<%5|x%!JXuH$5*eL?PQGc9bm%vdP=!c%BrL#@WyneIvlekI+NB=W}Y zD5;Y_M6OE(3Cb%r2795rlGP{tC?q70qi0dd5K0@#QwyeJ-l($Ejbb0*fUI;=A+R3o&4)2`HIMsL+$LrUq)`9y_@_p0=;iI3jf;hBU0dMk3g^IpBob0 z`Jzw4vhbqdus;J~m!u^biU{eAWK((fE~O5P4}`R%3tzR?;rgz_EBx+dl#1ZvU&T+?H6u8 z^Km*0mmg8S;fSu+lu_x;^eB`CB8ssQ7z>mUh8z%f97g?22Myi&%~wErEV)4VKI#4R zX2Uc_ztv{vfGvL$8VD2#GM-z`v{RYY)Wk|^qLrFyXAiu$_|D>&!fq3fuTGpN{#HU1$%Ezpb^>Q|-Y$w=dp(>CQ{7bgn)4=-b|EZe}Gn z(@Gy*OUCvo%gS1s?Ar5-8?WC0&Lc|u$VuQiq5#ib${LZA3d@2-eU?WD6+z=qKp?z# z3K%ypz&OHo%Lf5Qx*35$gQa6wkoFv6N#0yg?(Fn1iaBP>2cuz`*PHsie6JI5mLj5{ z45wgyNcRW`4w1$OVQ_fP^lB`qs(O{%g>x6^v68F_g0CFTZjrI2kBOYc|VFb5>WtLFYrA-Bgzr+ zz!Nn}V}Bojx6Hl-Y`6^#U^q?EyH-=q!zd#@07D4I?iksY!QdqkPJSzVq=tR&hF2X|2Qa0AdJ*XQ>D!fR0`j2=NH3B&eoL zj~xLD@&^Vej@hPT!`*15n!|g?H?rHT*f-CR1Ew&rqay5>TS?_wsmV|B6YqPglP6au zPd=D@`a%9QT7wE}JpTDmuXWxnFQt<`$XA)2`a22 zRaG^d6tVU=94=tmP+((cpFa?IjUUDQT#y+ipH8|IbR#K_g8!bl+?j18KrxrZKoV;; z2kfC~zM^SR(A8|D)0*~5O}9HUaZNMaG7Kj*joYrrHH|%r#}u(a4YOm|Ok#t9-B8>ci1d-s)jT4cY2RP@>{@Hbq zijWv*@7%dR=bn4+`Mz^*e&5oPAn@#x|CP%%6Y>}Qs6I+qp(`d-=7>o~h)GS!rg>>Z zqF9%0Ij@W;qORDHd~_r#>Jhss9~+5_dKBu3kwm4v8QNo%NaRIgHeDlT?2Z(!GLoE( zrxWE%udo7V9&>z8)z$GFW44;LY^LgtsTR0fvP=d&hQT~f^xX`cPwWtllVI>m!?6p?l`Wm`)?4C?Z*J_fI? z=bVymTjn=WiL;;sio|wU$77n%O+($V-3WIPmX$5hmDBJ&M;IBQU_8mBBeEGYrE6d^ zGj7W8j+hBkfp;`c>VIal8G*JYGigTQ9h+=Qw*(QPMmagqU=*XWkXSVWrA!E2`JGsF zicS$tbYKxDKJk+O#w!y#}WYBXPEPrWN>#R==R$RIU4)tF4Zr3QPo^SW_GAA@7v=%hGqB2aWb<^>8KQ4k+3TDGbA`dAQ0QCRZ=+4FhORASr% zS4c+!#bb7s0~Sb-2+!DZvTi_G5YsB7JhYaI&#Kim?(!>MK?jHIx^U*m%L89Me&hoB zm2u<+*JRp&quZ07<#lCB%qex*)@WB@($Bfh(aiHbU7qE$BQP1Z0rLx1p-ZzI@I;u@ zm51rJ*Clkw6eeML=(BuHD{m6Mkg0xmfHs~E#SD3{U7b~Kv@9!f{M6EpBlEe%9bcUN z+H#D1`5e6$I|+U9@13|g{Lbt1!@qcaDYf(FiMOX`mA8^lAIC{s<`JPVZOdnFz47zX zyQO*k-O0r*&%f_4Bv1ZxS%$7v50|>$e3JY+K5#((K-n>{NB&?>1nNe`rJ$b>bOPau zeNdSreyz`>*TC5>H@Yp3hvzi86IN=@aDk+y^08N#U*wK}xiG|M0rhZds*d#Fx!h-_ zYFnO}^+yxNfh2n5k^tGo@GK%aJ;hgJ=B z2vW~jvb^U%YNVnV+{6s|YikFrIe+NA%I zmfGpgk}QQ2j%`FW8=dbux@e}PP8U^gxY|Gj`VuVF;1ISu&fw%N$7B;B)w>R>@PEjX z;4M|4tA?8&wVaUf6Np`WbR%c65=0a$^szAuP+E7WVxbVa7#?~iQJZ$w16jxf5%S%0uVxZdkbwf{&gT68gmO z^JmVh$9j&3sDOZIoP;)w zOLE=vz(n8B?IJtFxy$?1b6M4C*i{vpwcV-U{64BfWK*q(d)W=8G6@0B>=~bjwxCJ^Uf-m`7Rg<@DV6d_-^*w``KkM1YH+cAa3MMPbg6YW z#)ExJTXw(Qxscq85n$hHsQhk~+}e6fHt>w94_Z%9!&jj4rqoFLvrz}udMkP4s4`?PelQ0(Sryh&?T6nQL5&S7FxxxZxad0{km_fJT6A!G`QY1h|k|>TZa=o(qYt zp(8@85XZz=FS(Xk(@%GRuL{iZfZu@L9Hw*CGoTg1rmotMBw=$HM%QuOf6F*^Sl1;q z+Nci}u9!*9a#wH~DqgdpNaW!}L7$2pYuiEU3T+BzLOa&!tHF+a|7YStMra_eO-Nc( z^tvSIDRy0&63K6cq}tYy)NPWM1wZjUAS7r78#LO^L*T7ts!HyW1&Y!T8{mr-LdWD| z1HO6@M0l8hgnadgNbQLS&wcK$@muYF|M2YBZ@%z{r23Hztrf zf{*y;K@9IkfuUlT1ce5vXJ}JROP}X_rtg~DGF);Ke`eopTIfLu>QG>qt-q3Brr)J`K0CVR_F&X3{i_W1Xb`l;E)0& z6L4b;gJ=Wqgh|Bz97btL*gQyBo@sfPUAQRl!?1_OY&3}1Vr#i|4gWLqB^-+}4`@F@ zwr-#6|9<};+dJ>Icg_zlw)ZTw_AJDDgguASinsuYyf=u3X-J?9!5%>gJf3nK+2U2m zxG%z3JpR?NWmq4(C`JS_=$DR$u5khe2>&Q=GA+Y@6-Hq~;)g?dFLYPLlv}D7aU4_; zrHs0+osQ!T2rqJ)79=!qa None: + object.__setattr__(self, "name", name) + object.__setattr__(self, "version", parse_version(version)) + object.__setattr__(self, "link", link) + + def __str__(self) -> str: + return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..aefc670 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,227 @@ +"""PEP 610""" + +from __future__ import annotations + +import json +import re +import urllib.parse +from collections.abc import Iterable +from dataclasses import dataclass +from typing import Any, ClassVar, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: dict[str, Any], expected_type: type[T], key: str, default: T | None = None +) -> T | None: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + f"{value!r} has unexpected type for {key} (expected {expected_type})" + ) + return value + + +def _get_required( + d: dict[str, Any], expected_type: type[T], key: str, default: T | None = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[InfoType | None]) -> InfoType: + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +@dataclass +class VcsInfo: + name: ClassVar = "vcs_info" + + vcs: str + commit_id: str + requested_revision: str | None = None + + @classmethod + def _from_dict(cls, d: dict[str, Any] | None) -> VcsInfo | None: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + ) + + def _to_dict(self) -> dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: str | None = None, + hashes: dict[str, str] | None = None, + ) -> None: + # set hashes before hash, since the hash setter will further populate hashes + self.hashes = hashes + self.hash = hash + + @property + def hash(self) -> str | None: + return self._hash + + @hash.setter + def hash(self, value: str | None) -> None: + if value is not None: + # Auto-populate the hashes key to upgrade to the new format automatically. + # We don't back-populate the legacy hash key from hashes. + try: + hash_name, hash_value = value.split("=", 1) + except ValueError: + raise DirectUrlValidationError( + f"invalid archive_info.hash format: {value!r}" + ) + if self.hashes is None: + self.hashes = {hash_name: hash_value} + elif hash_name not in self.hashes: + self.hashes = self.hashes.copy() + self.hashes[hash_name] = hash_value + self._hash = value + + @classmethod + def _from_dict(cls, d: dict[str, Any] | None) -> ArchiveInfo | None: + if d is None: + return None + return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes")) + + def _to_dict(self) -> dict[str, Any]: + return _filter_none(hash=self.hash, hashes=self.hashes) + + +@dataclass +class DirInfo: + name: ClassVar = "dir_info" + + editable: bool = False + + @classmethod + def _from_dict(cls, d: dict[str, Any] | None) -> DirInfo | None: + if d is None: + return None + return cls(editable=_get_required(d, bool, "editable", default=False)) + + def _to_dict(self) -> dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +@dataclass +class DirectUrl: + url: str + info: InfoType + subdirectory: str | None = None + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) + and self.info.vcs == "git" + and user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: dict[str, Any]) -> DirectUrl: + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> DirectUrl: + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..9f07e3f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,78 @@ +from __future__ import annotations + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed.""" + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: set[str] | None = None, + only_binary: set[str] | None = None, + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})" + + @staticmethod + def handle_mutual_excludes(value: str, target: set[str], other: set[str]) -> None: + if value.startswith("-"): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(",") + while ":all:" in new: + other.clear() + target.clear() + target.add(":all:") + del new[: new.index(":all:") + 1] + # Without a none, we want to discard everything as :all: covers it + if ":none:" not in new: + return + for name in new: + if name == ":none:": + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> frozenset[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard("source") + elif canonical_name in self.no_binary: + result.discard("binary") + elif ":all:" in self.only_binary: + result.discard("source") + elif ":all:" in self.no_binary: + result.discard("binary") + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ":all:", + self.no_binary, + self.only_binary, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..b94c325 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints""" + + __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path("simple") + self.pypi_url = self._url_for_path("pypi") + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") +TestPyPI = PackageIndex( + "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" +) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 0000000..3e8e968 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py @@ -0,0 +1,57 @@ +from collections.abc import Sequence +from typing import Any + +from pip._vendor.packaging.markers import default_environment + +from pip import __version__ +from pip._internal.req.req_install import InstallRequirement + + +class InstallationReport: + def __init__(self, install_requirements: Sequence[InstallRequirement]): + self._install_requirements = install_requirements + + @classmethod + def _install_req_to_dict(cls, ireq: InstallRequirement) -> dict[str, Any]: + assert ireq.download_info, f"No download_info for {ireq}" + res = { + # PEP 610 json for the download URL. download_info.archive_info.hashes may + # be absent when the requirement was installed from the wheel cache + # and the cache entry was populated by an older pip version that did not + # record origin.json. + "download_info": ireq.download_info.to_dict(), + # is_direct is true if the requirement was a direct URL reference (which + # includes editable requirements), and false if the requirement was + # downloaded from a PEP 503 index or --find-links. + "is_direct": ireq.is_direct, + # is_yanked is true if the requirement was yanked from the index, but + # was still selected by pip to conform to PEP 592. + "is_yanked": ireq.link.is_yanked if ireq.link else False, + # requested is true if the requirement was specified by the user (aka + # top level requirement), and false if it was installed as a dependency of a + # requirement. https://peps.python.org/pep-0376/#requested + "requested": ireq.user_supplied, + # PEP 566 json encoding for metadata + # https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata + "metadata": ireq.get_dist().metadata_dict, + } + if ireq.user_supplied and ireq.extras: + # For top level requirements, the list of requested extras, if any. + res["requested_extras"] = sorted(ireq.extras) + return res + + def to_dict(self) -> dict[str, Any]: + return { + "version": "1", + "pip_version": __version__, + "install": [ + self._install_req_to_dict(ireq) for ireq in self._install_requirements + ], + # https://peps.python.org/pep-0508/#environment-markers + # TODO: currently, the resolver uses the default environment to evaluate + # environment markers, so that is what we report here. In the future, it + # should also take into account options such as --python-version or + # --platform, perhaps under the form of an environment_override field? + # https://github.com/pypa/pip/issues/11198 + "environment": default_environment(), + } diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..295035f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py @@ -0,0 +1,613 @@ +from __future__ import annotations + +import functools +import itertools +import logging +import os +import posixpath +import re +import urllib.parse +from collections.abc import Mapping +from dataclasses import dataclass +from typing import ( + TYPE_CHECKING, + Any, + NamedTuple, +) + +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + pairwise, + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import IndexContent + +logger = logging.getLogger(__name__) + + +# Order matters, earlier hashes have a precedence over later hashes for what +# we will pick to use. +_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5") + + +@dataclass(frozen=True) +class LinkHash: + """Links to content may have embedded hash values. This class parses those. + + `name` must be any member of `_SUPPORTED_HASHES`. + + This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to + be JSON-serializable to conform to PEP 610, this class contains the logic for + parsing a hash name and value for correctness, and then checking whether that hash + conforms to a schema with `.is_hash_allowed()`.""" + + name: str + value: str + + _hash_url_fragment_re = re.compile( + # NB: we do not validate that the second group (.*) is a valid hex + # digest. Instead, we simply keep that string in this class, and then check it + # against Hashes when hash-checking is needed. This is easier to debug than + # proactively discarding an invalid hex digest, as we handle incorrect hashes + # and malformed hashes in the same place. + r"[#&]({choices})=([^&]*)".format( + choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES) + ), + ) + + def __post_init__(self) -> None: + assert self.name in _SUPPORTED_HASHES + + @classmethod + @functools.cache + def find_hash_url_fragment(cls, url: str) -> LinkHash | None: + """Search a string for a checksum algorithm name and encoded output value.""" + match = cls._hash_url_fragment_re.search(url) + if match is None: + return None + name, value = match.groups() + return cls(name=name, value=value) + + def as_dict(self) -> dict[str, str]: + return {self.name: self.value} + + def as_hashes(self) -> Hashes: + """Return a Hashes instance which checks only for the current hash.""" + return Hashes({self.name: [self.value]}) + + def is_hash_allowed(self, hashes: Hashes | None) -> bool: + """ + Return True if the current hash is allowed by `hashes`. + """ + if hashes is None: + return False + return hashes.is_hash_allowed(self.name, hex_digest=self.value) + + +@dataclass(frozen=True) +class MetadataFile: + """Information about a core metadata file associated with a distribution.""" + + hashes: dict[str, str] | None + + def __post_init__(self) -> None: + if self.hashes is not None: + assert all(name in _SUPPORTED_HASHES for name in self.hashes) + + +def supported_hashes(hashes: dict[str, str] | None) -> dict[str, str] | None: + # Remove any unsupported hash types from the mapping. If this leaves no + # supported hashes, return None + if hashes is None: + return None + hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES} + if not hashes: + return None + return hashes + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + ret = urllib.request.pathname2url(urllib.request.url2pathname(part)) + if ret.startswith("///"): + # Remove any URL authority section, leaving only the URL path. + ret = ret.removeprefix("//") + return ret + + +# percent-encoded: / +_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [""])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return "".join(cleaned_parts) + + +def _ensure_quoted_url(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path?query#fragment`. + result = urllib.parse.urlsplit(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + # Temporarily replace scheme with file to ensure the URL generated by + # urlunsplit() contains an empty netloc (file://) as per RFC 1738. + ret = urllib.parse.urlunsplit(result._replace(scheme="file", path=path)) + ret = result.scheme + ret[4:] # Restore original scheme. + return ret + + +def _absolute_link_url(base_url: str, url: str) -> str: + """ + A faster implementation of urllib.parse.urljoin with a shortcut + for absolute http/https URLs. + """ + if url.startswith(("https://", "http://")): + return url + else: + return urllib.parse.urljoin(base_url, url) + + +@functools.total_ordering +class Link: + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "_path", + "_hashes", + "comes_from", + "requires_python", + "yanked_reason", + "metadata_file_data", + "cache_link_parsing", + "egg_fragment", + ] + + def __init__( + self, + url: str, + comes_from: str | IndexContent | None = None, + requires_python: str | None = None, + yanked_reason: str | None = None, + metadata_file_data: MetadataFile | None = None, + cache_link_parsing: bool = True, + hashes: Mapping[str, str] | None = None, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of IndexContent where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param metadata_file_data: the metadata attached to the file, or None if + no such metadata is provided. This argument, if not None, indicates + that a separate metadata file exists, and also optionally supplies + hashes for that file. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link should be cached. PyPI + URLs should generally have this set to False, for example. + :param hashes: A mapping of hash names to digests to allow us to + determine the validity of a download. + """ + + # The comes_from, requires_python, and metadata_file_data arguments are + # only used by classmethods of this class, and are not used in client + # code directly. + + # url can be a UNC windows share + if url.startswith("\\\\"): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + # The .path property is hot, so calculate its value ahead of time. + self._path = urllib.parse.unquote(self._parsed_url.path) + + link_hash = LinkHash.find_hash_url_fragment(url) + hashes_from_link = {} if link_hash is None else link_hash.as_dict() + if hashes is None: + self._hashes = hashes_from_link + else: + self._hashes = {**hashes, **hashes_from_link} + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + self.metadata_file_data = metadata_file_data + + self.cache_link_parsing = cache_link_parsing + self.egg_fragment = self._egg_fragment() + + @classmethod + def from_json( + cls, + file_data: dict[str, Any], + page_url: str, + ) -> Link | None: + """ + Convert an pypi json document from a simple repository page into a Link. + """ + file_url = file_data.get("url") + if file_url is None: + return None + + url = _ensure_quoted_url(_absolute_link_url(page_url, file_url)) + pyrequire = file_data.get("requires-python") + yanked_reason = file_data.get("yanked") + hashes = file_data.get("hashes", {}) + + # PEP 714: Indexes must use the name core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = file_data.get("core-metadata") + if metadata_info is None: + metadata_info = file_data.get("dist-info-metadata") + + # The metadata info value may be a boolean, or a dict of hashes. + if isinstance(metadata_info, dict): + # The file exists, and hashes have been supplied + metadata_file_data = MetadataFile(supported_hashes(metadata_info)) + elif metadata_info: + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + else: + # False or not present: the file does not exist + metadata_file_data = None + + # The Link.yanked_reason expects an empty string instead of a boolean. + if yanked_reason and not isinstance(yanked_reason, str): + yanked_reason = "" + # The Link.yanked_reason expects None instead of False. + elif not yanked_reason: + yanked_reason = None + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + hashes=hashes, + metadata_file_data=metadata_file_data, + ) + + @classmethod + def from_element( + cls, + anchor_attribs: dict[str, str | None], + page_url: str, + base_url: str, + ) -> Link | None: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = anchor_attribs.get("href") + if not href: + return None + + url = _ensure_quoted_url(_absolute_link_url(base_url, href)) + pyrequire = anchor_attribs.get("data-requires-python") + yanked_reason = anchor_attribs.get("data-yanked") + + # PEP 714: Indexes must use the name data-core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = anchor_attribs.get("data-core-metadata") + if metadata_info is None: + metadata_info = anchor_attribs.get("data-dist-info-metadata") + # The metadata info value may be the string "true", or a string of + # the form "hashname=hashval" + if metadata_info == "true": + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + elif metadata_info is None: + # The file does not exist + metadata_file_data = None + else: + # The file exists, and hashes have been supplied + hashname, sep, hashval = metadata_info.partition("=") + if sep == "=": + metadata_file_data = MetadataFile(supported_hashes({hashname: hashval})) + else: + # Error - data is wrong. Treat as no hashes supplied. + logger.debug( + "Index returned invalid data-dist-info-metadata value: %s", + metadata_info, + ) + metadata_file_data = MetadataFile(None) + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + metadata_file_data=metadata_file_data, + ) + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return f"{self.redacted_url} (from {self.comes_from}){rp}" + else: + return self.redacted_url + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash(self.url) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url == other.url + + def __lt__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url < other.url + + @property + def url(self) -> str: + return self._url + + @property + def redacted_url(self) -> str: + return redact_auth_from_url(self.url) + + @property + def filename(self) -> str: + path = self.path.rstrip("/") + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f"URL {self._url!r} produced no filename" + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return self._path + + def splitext(self) -> tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip("/"))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + + _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") + + # Per PEP 508. + _project_name_re = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE + ) + + def _egg_fragment(self) -> str | None: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + + # An egg fragment looks like a PEP 508 project name, along with + # an optional extras specifier. Anything else is invalid. + project_name = match.group(1) + if not self._project_name_re.match(project_name): + deprecated( + reason=f"{self} contains an egg fragment with a non-PEP 508 name.", + replacement="to use the req @ url syntax, and remove the egg fragment", + gone_in="26.0", + issue=13157, + ) + + return project_name + + _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") + + @property + def subdirectory_fragment(self) -> str | None: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + def metadata_link(self) -> Link | None: + """Return a link to the associated core metadata file (if any).""" + if self.metadata_file_data is None: + return None + metadata_url = f"{self.url_without_fragment}.metadata" + if self.metadata_file_data.hashes is None: + return Link(metadata_url) + return Link(metadata_url, hashes=self.metadata_file_data.hashes) + + def as_hashes(self) -> Hashes: + return Hashes({k: [v] for k, v in self._hashes.items()}) + + @property + def hash(self) -> str | None: + return next(iter(self._hashes.values()), None) + + @property + def hash_name(self) -> str | None: + return next(iter(self._hashes), None) + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == "file" + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return bool(self._hashes) + + def is_hash_allowed(self, hashes: Hashes | None) -> bool: + """ + Return True if the link has a hash and it is allowed by `hashes`. + """ + if hashes is None: + return False + return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items()) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: dict[str, list[str]] + subdirectory: str + hashes: dict[str, str] + + +def _clean_link(link: Link) -> _CleanResult: + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return _CleanResult( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.cache +def links_equivalent(link1: Link, link2: Link) -> bool: + return _clean_link(link1) == _clean_link(link2) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/pylock.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/pylock.py new file mode 100644 index 0000000..1b6b8c1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/pylock.py @@ -0,0 +1,188 @@ +from __future__ import annotations + +import dataclasses +import re +from collections.abc import Iterable +from dataclasses import dataclass +from pathlib import Path +from typing import TYPE_CHECKING, Any + +from pip._vendor import tomli_w + +from pip._internal.models.direct_url import ArchiveInfo, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from typing_extensions import Self + +PYLOCK_FILE_NAME_RE = re.compile(r"^pylock\.([^.]+)\.toml$") + + +def is_valid_pylock_file_name(path: Path) -> bool: + return path.name == "pylock.toml" or bool(re.match(PYLOCK_FILE_NAME_RE, path.name)) + + +def _toml_dict_factory(data: list[tuple[str, Any]]) -> dict[str, Any]: + return {key.replace("_", "-"): value for key, value in data if value is not None} + + +@dataclass +class PackageVcs: + type: str + url: str | None + # (not supported) path: Optional[str] + requested_revision: str | None + commit_id: str + subdirectory: str | None + + +@dataclass +class PackageDirectory: + path: str + editable: bool | None + subdirectory: str | None + + +@dataclass +class PackageArchive: + url: str | None + # (not supported) path: Optional[str] + # (not supported) size: Optional[int] + # (not supported) upload_time: Optional[datetime] + hashes: dict[str, str] + subdirectory: str | None + + +@dataclass +class PackageSdist: + name: str + # (not supported) upload_time: Optional[datetime] + url: str | None + # (not supported) path: Optional[str] + # (not supported) size: Optional[int] + hashes: dict[str, str] + + +@dataclass +class PackageWheel: + name: str + # (not supported) upload_time: Optional[datetime] + url: str | None + # (not supported) path: Optional[str] + # (not supported) size: Optional[int] + hashes: dict[str, str] + + +@dataclass +class Package: + name: str + version: str | None = None + # (not supported) marker: Optional[str] + # (not supported) requires_python: Optional[str] + # (not supported) dependencies + vcs: PackageVcs | None = None + directory: PackageDirectory | None = None + archive: PackageArchive | None = None + # (not supported) index: Optional[str] + sdist: PackageSdist | None = None + wheels: list[PackageWheel] | None = None + # (not supported) attestation_identities: Optional[List[Dict[str, Any]]] + # (not supported) tool: Optional[Dict[str, Any]] + + @classmethod + def from_install_requirement(cls, ireq: InstallRequirement, base_dir: Path) -> Self: + base_dir = base_dir.resolve() + dist = ireq.get_dist() + download_info = ireq.download_info + assert download_info + package = cls(name=dist.canonical_name) + if ireq.is_direct: + if isinstance(download_info.info, VcsInfo): + package.vcs = PackageVcs( + type=download_info.info.vcs, + url=download_info.url, + requested_revision=download_info.info.requested_revision, + commit_id=download_info.info.commit_id, + subdirectory=download_info.subdirectory, + ) + elif isinstance(download_info.info, DirInfo): + package.directory = PackageDirectory( + path=( + Path(url_to_path(download_info.url)) + .resolve() + .relative_to(base_dir) + .as_posix() + ), + editable=( + download_info.info.editable + if download_info.info.editable + else None + ), + subdirectory=download_info.subdirectory, + ) + elif isinstance(download_info.info, ArchiveInfo): + if not download_info.info.hashes: + raise NotImplementedError() + package.archive = PackageArchive( + url=download_info.url, + hashes=download_info.info.hashes, + subdirectory=download_info.subdirectory, + ) + else: + # should never happen + raise NotImplementedError() + else: + package.version = str(dist.version) + if isinstance(download_info.info, ArchiveInfo): + if not download_info.info.hashes: + raise NotImplementedError() + link = Link(download_info.url) + if link.is_wheel: + package.wheels = [ + PackageWheel( + name=link.filename, + url=download_info.url, + hashes=download_info.info.hashes, + ) + ] + else: + package.sdist = PackageSdist( + name=link.filename, + url=download_info.url, + hashes=download_info.info.hashes, + ) + else: + # should never happen + raise NotImplementedError() + return package + + +@dataclass +class Pylock: + lock_version: str = "1.0" + # (not supported) environments: Optional[List[str]] + # (not supported) requires_python: Optional[str] + # (not supported) extras: List[str] = [] + # (not supported) dependency_groups: List[str] = [] + created_by: str = "pip" + packages: list[Package] = dataclasses.field(default_factory=list) + # (not supported) tool: Optional[Dict[str, Any]] + + def as_toml(self) -> str: + return tomli_w.dumps(dataclasses.asdict(self, dict_factory=_toml_dict_factory)) + + @classmethod + def from_install_requirements( + cls, install_requirements: Iterable[InstallRequirement], base_dir: Path + ) -> Self: + return cls( + packages=sorted( + ( + Package.from_install_requirement(ireq, base_dir) + for ireq in install_requirements + ), + key=lambda p: p.name, + ) + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..06a9a55 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,25 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + +from dataclasses import dataclass + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +@dataclass(frozen=True) +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + platlib: str + purelib: str + headers: str + scripts: str + data: str diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..136163c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,126 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from dataclasses import dataclass + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class SearchScope: + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls", "no_index"] + + find_links: list[str] + index_urls: list[str] + no_index: bool + + @classmethod + def create( + cls, + find_links: list[str], + index_urls: list[str], + no_index: bool, + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: list[str] = [] + for link in find_links: + if link.startswith("~"): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == "https": + logger.warning( + "pip is configured with locations that require " + "TLS/SSL, however the ssl module in Python is not " + "available." + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + no_index=no_index, + ) + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, please provide a scheme.', + redacted_index_url, + ) + + redacted_index_urls.append(redacted_index_url) + + lines.append( + "Looking in indexes: {}".format(", ".join(redacted_index_urls)) + ) + + if self.find_links: + lines.append( + "Looking in links: {}".format( + ", ".join(redact_auth_from_url(url) for url in self.find_links) + ) + ) + return "\n".join(lines) + + def get_index_urls_locations(self, project_name: str) -> list[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, urllib.parse.quote(canonicalize_name(project_name)) + ) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith("/"): + loc = loc + "/" + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..8d5b42d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,53 @@ +from __future__ import annotations + +from pip._internal.models.format_control import FormatControl + + +# TODO: This needs Python 3.10's improved slots support for dataclasses +# to be converted into a dataclass. +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = [ + "allow_yanked", + "allow_all_prereleases", + "format_control", + "prefer_binary", + "ignore_requires_python", + ] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: FormatControl | None = None, + prefer_binary: bool = False, + ignore_requires_python: bool | None = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..8c38392 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,122 @@ +from __future__ import annotations + +import sys + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + "_valid_tags_set", + ] + + def __init__( + self, + platforms: list[str] | None = None, + py_version_info: tuple[int, ...] | None = None, + abis: list[str] | None = None, + implementation: str | None = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = ".".join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_(un)sorted_tags. + self._valid_tags: list[Tag] | None = None + self._valid_tags_set: set[Tag] | None = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = ".".join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ("platforms", self.platforms), + ("version_info", display_version), + ("abis", self.abis), + ("implementation", self.implementation), + ] + return " ".join( + f"{key}={value!r}" for key, value in key_values if value is not None + ) + + def get_sorted_tags(self) -> list[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags + + def get_unsorted_tags(self) -> set[Tag]: + """Exactly the same as get_sorted_tags, but returns a set. + + This is important for performance. + """ + if self._valid_tags_set is None: + self._valid_tags_set = set(self.get_sorted_tags()) + + return self._valid_tags_set diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..fbd4902 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,80 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" + +from __future__ import annotations + +from collections.abc import Iterable + +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import ( + InvalidWheelFilename as _PackagingInvalidWheelFilename, +) +from pip._vendor.packaging.utils import parse_wheel_filename + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + def __init__(self, filename: str) -> None: + self.filename = filename + + try: + wheel_info = parse_wheel_filename(filename) + except _PackagingInvalidWheelFilename as e: + raise InvalidWheelFilename(e.args[0]) from None + + self.name, _version, self.build_tag, self.file_tags = wheel_info + self.version = str(_version) + + def get_formatted_file_tags(self) -> list[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: list[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + try: + return next(i for i, t in enumerate(tags) if t in self.file_tags) + except StopIteration: + raise ValueError() + + def find_most_preferred_tag( + self, tags: list[Tag], tag_to_priority: dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..0ae1f56 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1 @@ +"""Contains purely network-related utilities.""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..203511205952baaa7e50e884ca2070a1a7227e95 GIT binary patch literal 263 zcmXv}K}th05KXLT5qbhQe_J6xt>R9ETHJ}7?%ag<6WXC^5|a6qcoEOwS-e5FUO?!s z8=XLXn|W`TH#6^RG`e7f%fatzO7**nfAAyO4~cv*!(Le7OELZ{Rx+t-DMjjY2t>dt1lcoa{whg-2gjnIjCFjmdH zb|piW?biCObnq%;!By}#?etn^Kr6_+)=Tn7h*E(^o5&=Ok4Qx=K&9GP4#T@mFuk+) V>5Q(|Ou6Ry8F0>bY?4k%`~k#IO~C*F literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb09d02de1aaaa802c67fcb58473d0e597ed99d0 GIT binary patch literal 21476 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 E0q$lE>;M1& literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0eee6273169443657fc9ce70acbda31814c2fb7a GIT binary patch literal 8011 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 Ys|uh;1byClPL})ccBa0N2oN0nC;iwd?EnA( literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..951f515ebbf1a55147e74d808ae0269d7edde03c GIT binary patch literal 16089 zcmbVzTW}j!mRL8?02*(Q07>u-z6pv1DN!#=qHRi)M9LDSi1a)#A#Dy!LS)!I|3Sy%D{2y_AJk;|G|ZIb!J47FuP zNmX*rZFB>q;BjVK;_ch_o_qTCx#ynOJ@{{SyM=!bQ0L+*y4f!vKjBe|P`Cb% zgN>wak2b}cgUzv)U<-M6L|bFNpfA=IY$MOkXnU+9*g@*9XlJY|*hT79(e7AJuqW0V z>?P0DQGcv2*cUqxJV2h^(f-&#a3B^424aK3LDJ@l4#f@z55^7!55?R@n|B<`Q{=~ zUi96FNDICtAu%uTqUejnxyWo-N(f@$7l_MG%hqr_o{+*)BoP-U{W_VQka!_H6Xj*o zrSQ^HBt8#7W-cs+XQN?Jga^y`^z@Y}7_y8{?CD56EUZjihPv~Lz%PXbp1aC_Ync}% z?7qs2OMse(x(x@GJv;DuoDXxnFcz6bXxCMEnvTTy#Ikf&5E24R$aFd^Os_2Qa?3m~ zg}CD9h172f349z7@CaHr5uZ)OmZH4Gt7ITp(TK#~lxB;3M%Vy%ub!glU1Z5Sz+;luo1zwr977=q$pdy5{@qO3gOw;_!XsQ#x*3>9|5(I4kFIi_dGU;Dg>S9 z(bGo;ki8A66Ifc2>q5vz3zD=1oKsv3q`lCKvw=VH2o!5nL8mu(9y_Zy z58pX;`&8ODlyM)-IuE7UL!Upk)qbCS&!4vT|B9jwo<~l1K@a!mq76pAUDrT;&vQ_J zpFXJHvtCGHvR+ZB+@WBN;J*J_1c?0?NB;(}I(2uUqbL*42#mhr34q5i}0LJSx8?mbWA4Vye~56ix&s+HzT4X`U3>tG++=E zoY!&5eY4@XZ-)0Ri-05&_rcS|+`!dve4a1jRL02+FNNomc9191K&<#yzfNd_FPHVO zJVF=L6!s8$u(7woq9KkDY%RnRQn3jA0FFb%J}6)nEtJi5>(s`noV77yZQMGyJ@&6J z{)>yb&cm6`!}mkk&a+wTxioWb7oe%xqC&(vWr9DlTyMfwg5{zsEtjNivqfzykBOOt}AQT zm$mDEU|coEt6mtp7lv6iN=^;0CMtwF$)&a~y470g&M_&Y%5F3jAB0(c*$Bg)5w%}} z-&hV^23u2_gIZHnq*SZ6EPB;i>3(etRz}a6R!#BdieIesIa7L3&#?eyN$ELraTGr5 zaIDm*VoYhYT4hrvQI}$;D5+WN)ur?)=APyK;^tm8>!_4D#j5KAThuz4)cJa!(}T}x zf71E72x=F06Q~@{*Ci%Bpfs0b*rrM{Y;~wQ4m-NUbJG!uVqv$->`Yh)NvJXzqE%dx zctnbXqngh2J7put#%N+zsD??(ZnPCZMnNDIf&|Tn5<~P0Y`OE@UF{xrAH=yZG$f9O~NZ{6+pcAC*lA08^EjiOF-9 zg$5jn%;vWU-H3pRf(DjtnqG&GkZlr}Cee_hXk@E^q6BrRAjx{1nT5QRBeS%V`KrTZ zqoQGDR<#dAG=xzMDwiTy>>=vmi4t?JsI%~tiTUHG}l{m5GT#NE8vzcuq-tby$E@R)b;FwWbZsX;W)D3wd$g9myB9uYk3CfZI=2^h*n>|^_ME9TV`|Ns z+TJ^lqVAz-DDQ3Fus=4}Zc01mCi3veUZ3|iZP@eXnyrS1=1%hP#M``Xe`;^qn$FtW z*UtUi>diZApv5_muWH`D_`%6%dY#L-HvUT^W%F#F%UT=LOrtOWkjaVQd=)Bp zC<#jCs$`QamW$jXTxm1G#-NiIEVy7(VdUW?Pt;aB@@qUCOpmQB(n-ord~AhuZkjsy-ADU{iSGPIedpu|4LX8|EZ+!2RncxScmL!!6d`xi0I>EOVWyBFFd!Y7AFcd;WhXWzfm^uAf`a9#K7A>+D_|e`In# zGg6*`dsFwl@4u0CpIm42R`)||Pr9xr&Gfv;Kbj4>1@h^Oj1uIH|KGjF(d8>I*d&dU zKxOGvrM{{waSyb@yYb?5$o;EKiV=^Ncxn-i;C{oE5?23{vyW{kFei27mk7oocGOuGvkvI7UVtzM!i_VfyQ`3LYMwJ zVCR$_l2n;{pp3bHf$JnpLLsA)#ce}OY~cXbkZlDtQDk!r9B$lMqU@Xpw_OZ@tI5aF zn-xY8Y8;CRDEtPZs)Z43Ao!-CChGxSMA3#bE^e5{3KqL2K7R{fZ^EDW@1X!S%Tg}S zt<{aywecqnEkEr4Zhx+!FVoPMKJaR`VKmLuJpx7O?oSWA`ay5j{n|SFxVB~MX12EX zZdIoCz}lHdR>xyUouZ8IGXK{0BU`Tbc&7LGgO-n~v%MFyj!Wx$fXUlDTl$U5>*G)d zukQHm<6F`XZ+`dYLwC<(hwIk-#(d7vl5w;styu@6cO2L|6t?HuWo2K&)U~T<*wMQj zG~JOnoH;~7qmlA2?nW*{{q)J&wtLS)ShPnP17kvv(+lZ&%KEXc%F zadx<~Ts7x_yLrXwcgyzBInaWt4VXMI1?C$Be2`->+Q9n~bD$E@l8hF4NHrb<0vhqk zDxw1-TfwkfLfZ}yKDU7T>`M{PPdJ2dsK5jt!Z~JEBwhr+d6owT=46Y&hb0LmwYbLw zK-o!5fH|munkxznvO&w$A@t(KQOopAT7YmLY&jge@2V_5t^p=>Gfq)Iq9;MSGc$=q zRGIZGAi+q3$VcbOwK_(0B3hUz*|>*_fjymf07cP{eC%{@j@_BKJ+VEV_V^!qF5TsF zfzeE0^nU1q{Z|hd+8Z z1(n|{I-)WGVILU1|EgqTzF!2wNN^-D5a265F$|3EL)xGjgVGu# zyXs_sl=ea7C=nogWD-bB2n#&NUz1r$SdK%ml_zu;7T}HLd zw9I7&BRs$Z_#hyQ`YkdW3ZYFF3dxobMpl-=ISk3RQ0QCB;b^hP6auel7Mh)*P+0^y z6jHvHLv$E15fWI4Q2dA@lOpz%@Fuom@dxlHo`B+asGl=Oo>&~;xsb1_&ocFSizmx? z@(qn^lbdIy(q<=eOE6!NY1v0xohA#Fc_ z?M8((LAwGmfl0!l$y1Zdu^EW{foh0_ZxU-8Y;Rx@Ap)u+wk%2*znh7mCy#MK2;+nO zQsi=sEQCZQ%njN{-2@?Y)SVbiT?U>h;sRD9QpHq+7hZ;`%8tE2`)q7rI}B8WLP>Xt zGy%2oUjYK~Fcicsw>NHuAKF?AdY$1c#JUl`c>>Dn;OIg4lCnU{XLy=Qk>J zGN6$s$}EIr$WaVY&Wc+~oK@8WB4HiT2qVGLf=lsE3^QSAb|L91BO7V?4*(|~hvI)y zpA$2yrr}qV&U|ov>`|BhZs&bA+x1e$*1kTz8O>MMZh5y)rM*Mx>Y=P{=$Amyga3=H z(A&+e^lUlpw9x1u0ml(pt#KZ_t9X@E(5hb2MyE87bCoHbK2!>jR69_WXu&uWsMRWU)}?#O1amFo1^NJwAXh^Yh;AeDD2SKCU0AKy zSxiLY0^0F1lUM?a;!Uhpp-_Nh95fLXuZHLVxiwTY6N^$p#JD{ibrsL@#FAU$Hjm+mH2!BC^#BUc zv`+V}Z*P2ii_1DY)|toN!TU_sdjtYu?wUKtZXd(rplx=i@9YQMM`PK(f0lJ$1&_pD zwb{EhmbJGPD8_u2-u~v}y3XzCyQdyBXY0u09d1qbD*_Cm2 z?Kpe#E>F&NIO95e|7#DV9oN`rX2ejiQQoFIsoSYsT~DU2=dR;{E?akU-3BAKn$pg$ zG~4x=lK_$zJ{Q4Qq&{?y>Q0a7e==e?V>DIXvtF`i%S>_|_|io_2MpR(+1RXnm{Iv4 z;~xD!N?Ev8LA$2(AYH-l0B@dNv?}f8CG5ze6ah}I0lBJ!^GPk1&_OMx3Natt68iOD+yOnKyfXbZiIz6 zj47%I;ZLy#cY-j6-3BrxndbLv0^v4vC!5r7;Dx{oJMzB*g!mmO)~KgdEx?!H7T>zG zafxtfOU4FG%Cpy(^A2XbgU_tSYRkH@;9$+?=zM)EoO#;&Hw}50H|OfixH`9A|JZfl zmwIUY{HYUq4FLAUS%?07+Sv(a+otKMt@_sF#$>v2EN45Lv7PZt1sq#}kFP=7CN1D$Tag>f$7vG$|9lZ| zU7*m`s_e9Jy8SMig#I+SD)Bg{FVjyIBUtJl*aL^^e&40SRi?!Ii~>$WR=^i%H#()e zr$yQ@>bqDWDkgc<*H+S07*`{)xptUE1+AshmZr)M%Cvo$qDx*^N>5^z+JTw+R&<8< zXyM;*-G!nIF z<_zS}(G9DJ=TiGFpiY@Ru|luVATwK3AjzlI+SMA#>0nR>Zqo0*r^!8Ia&%M)}=QBt)l#_1slu8O-GVbRA4iKQh7L{17{hqok86%k=1Q^N(>0BT~6CK7$U zUE*Mu2*(4(H+OM;myx{9b_r%);APAdwWgiGott!h#$^q8OE3 zn!!@EG-NBr!j?sd+=J1BhASi~jb5Fe7`+%eb9r+5?Bq0YP8ItGrKjvHiF1;!BA{57 zO_!&Xr*V7&uR4~v4tY}ez@SSkxUgEM-HmrfZjYqh{TW+7$p4(J6`ZT>gBe@r$F|nTiuBIACLg;Rx5jf# z!FNa4T>pY*WwNgt2AUN{VglsRi##@e=H?RX5wa}ygAn+v(x zzD#Xju68g}JGf&TdR*%Hr}f8t}?%LP4U z>-hXx4OP>*({BP8M3iRCw0{bq=D$z%%dj{1}1Hq{&8Evc) z4nHxIVBfV^L6xXuzzl_6;?kQiTVt_x-(YxDVL9V&vR0s!nI5TItXH`}7syW3}QY?%958?@~R`H11`URtps{N%qXII|| zuDtCFX8TeJUah4pDVsVHLcRMO@Gs$g$6nrl!QJ*1-EC($4r11#x|^56aR{14SCsr6 zUzi--ff5aaPXOvtT%JV_d2Sg&RJ95|!}UmbUpy{g(QuMfAke#*bP9ubG2SB;@gEvG z>g$E`c}(z86CnJEiJU5edW91p2uQ)P(29l*Qgq27qNbD4g%$(8=><4=FNUsS>Su&G zPB~SYgG68DFcTF!Ak^@Y>G|N}Fhyv70fP+0GAR1@@O79CsGda$N^&sF46y)N=9VEZ zv4pMIFOqaZ$R)&ADIcpGb|RsZr>3q&NOrPHG?kPD5{!=%@P$PZ6$uxGs0Sq5LaNkc zvQ@-HWjrODNpR{?;khbI6kgdT>(8H^hJdG0p@wn}irXFneRjl$X(l8cNkH+T6c{!6 z#Ya$_gLDHpisDvCU_&-4Hi+z85_n9_R?`SbR8rOnGs#!ZD7jvWH2~)gY7#flR9hr< zP02?nG{d=`fDiIFD_$j71znh_ITU904YPNdO}V7;;jaOasTyEYE{8iSHKB z)E7`$$R?O35Qi7g`&Pcd00%`eQ8q*qH+Vsq!glmsW#{WxFG4=<@YN!_$(9nWWivrc zaNFl6jXmue&UPJ1v+enY1G$FbOv7-l;iXK&OWB5#7&bn>abf+;CZw=b-&)yN`Te)j z?Pni4&*l#uOS}5+4nK4a7T_hvVG_qrJ~;ljBR?L=9-9DU>5kzHd-!Q{f4<6{_XP6p z+I&+Rn29ZxG}};cQ8i%pb!R-?InPkWGj!jb^&D9@=e?~tZ(qjSm-8OUc#q_~Co|rY zd0TV3_2B*CUA?Z}vTlcOHoKHeoB9k}zvbV4V}~8iv#uQ5lwq54Yp2DG*~_} zK|2|zqaqPYe^Ll>( zE;>h&2+C4)v{am%^eU#vfW^cyr(iVLikjV5LI&713$UzJv+zjj%ApBSgjDWuF*}7M zZx^>wnLmdjSrt-&q>&sbjy$IaWCKa}PO@s^H$u|1yaJelb{neI6CU^LzM^15l$1V_`b*bS%Y5Bjt9m($kE>nEVdxA(7~-@K5q zwdRZQ;DsN?z8kyy)vOb?$dMOMlr+o8GtS`3z`~JQkBr`7x0J%lX;8h3M5R*&O!zQ{Gcf+ z;6b?>EJdy=G7&h^$QF<)tVB=02VF13Opz6no=W`m8Zy!R5&a8WKeeAIfQfPNxS?!2T(My@>^e&;;bH zJu@ry|I07w|JyI=Cjz8|A8UK&in1kHRs3PwH?%KOW<#KD!VP@KO)OTh_#G^MAB#W3 z0%JrZ7$dxgH55if!YL9hg^%cPDb~QZv4#bHm-yFEyaPWhvKj(Usu~LhxPuO>Ybltp z#!~f71vAzxl*O@Y#ae^Wa4=ufQPAUk@DRB_F%Rw<;Ca_&H+1i|R2k0Eh3;;{D|v5M zL67(0ljQ!yY~MA&bKweo)LzzQs&3I4sd2jIC^BiGyB-E`@Vn!5U%{Ue#)Z zF`XJ?5?%8K%;7bJ&{&t$V6CUM*4MQf*#!s*{iT_g-e2l}MMwe|=DjEeHsrIQbd&8Q z**H+lH5M)->XTTYnjz<+vU4^OjVeDb6a(RzS%JYW0~E4V`}rg<3aBS!233|4k2FH+ zB}hI2rMK*XAFu^NkVe2Ign;S@DQ0hqe+R^@nzW*=QtCo)01_tBDaM*}E6C3=@VN6uI88 z7e@K00Q_2&zp4B}rM@BnCQXoBMp+?_HlN}T{{m&M4GK}Yc`q6jOifZDz7fjOFT%Gh zMS$37&kn0}G`N=A_}sKb=NGck$I;p0UtzKX?f zVeuvwxaUZ=NJ+9hXHO}KSuYF!9eP1eQQ}i5AQVZ{kEp;uQ0;$Dd45JYenz=|MwvgQ z20o$MKA{@n|36SepWy#jKA}#+|NlWveM(J#LLK;o>id)$`;?mal)9Rsu6{~g$xv6G zm>bsXa^{ANxnb*g*4(*f+%+<^XV+n%&(nnls?}Gp4$)0{OLajHcgWu=7~l?K&D~Hi zVU4BS%>^^oEL3$9frg`PW6iD|+IHt?hVI^V*y!HfmTKBl=%aMj&vYKzSD>KS)x%=} SA3qCxOGkTtMPW&(@c#g~6oC!^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..838f324dfeb65bf6dcbf5b0d4ebe8998f7cc5ec6 GIT binary patch literal 11623 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 VXTA9SVBe%m=)Q-bRa1OY8KoZbk zO}UsDtk5B~rCma?T!!tfEEsXu+|5?PO*yfACCY9R&k)egs0EejSWZ^8RasDgBAHu> z^Zl=bJ6|;1}4_=C`q@-EU`4hu^`TPQQ~q zOZ+A5>GHeS)9rV&r^jE)o@M?rJWY}EXobHbTIsKhR{5*g7|fCCXpO%ny2igITI;Wk z*7@sLz9mv0ZSXfl8~u$eZH=srdi_ld79!2jb^dkH_5SrNZ9}@nzk$K_$i`@^zcuRf z`&il$*%WQ_w=vimX^(dJI~ZIN>5O*yyBO?>Y>sa6Z(*=IvNgKRzm373$oA+C{|*M1 zMs`M@@;}AkvdFIJ)BdL!TprmSea8O`gDWC?qI>;&8C)58HoDKhFS_5qpQWoJ2cif4 z2YF7ak!dcfBi+#+e-A6GiS$Mf`42I8P2_O&i2n%B892!{{JZ*c7M{|v*Lf}FKQ5h+ zPU2s!R44UGCx;AcP(Xh}MvDFYXrpX+8sLf`)=FLX>RvZ!**tfF6YIat`#&c(NTzJIsmeuXAFHwElJM zKnniPv)m2H-Kh8Nf1c&FBF`s1FKu|;l*4Ud`J0g6hWw^{zL({EMx`NEjdw|)HLsqn~vq$uHd%o~h}US)J-BrYeyu?yZ% zT$I`o#}dJCj530eh<7AB(xHqRWRFRSD{=XfSC+msDk%xV9SUCNprwBpm~TJTf?VN>3V8_bFK#3Cfaq zT6)X4n-K?x6EvIBRT_(f-s@yA7QBEadDVGJj$a+irBzG#LM$%R z{0O07Lb?!_$9xtnxA|fsF`}saCV2zx2P1o^Hgq10T#PG;;_Pw9maR{9Zl-@-yOtGL zckkZPwPmZGshWoH$_#_Hlu=PGvIL99%OYVVadv=BeZL&O5RRQwT?4({XHNG9`cEG{ ze6(+X_SwNRM^E$wSbVfc6|^KEL-$eDcIxP$$aT9!!PasbV!}&q!IUIMH z`+fcn&vQ3xOxzgvN5(7sUA_-{#1O|}%56VNc5YTpv0zkEs12|8Nu-MozcLaGNlMp1 zZ^wxP2X}M~(9sTcbmQ&_9KZ=3Q^HDD=Vdh0h3(fhGM2a)k8SJRvb77RMe0E1OV~e3 z7v8ih5XRP$QK>6;v2-cg&D1$E_Qba50xpWHBl5H3+6)C~h615*=N`6slxI8h7-0-h zA#(87+{f3rhpxlZ;$-3#`Of&u<8$t&wCnJ%6k58k)Hm{YF=G%{N=^6CKyTl3M^E?n zo$T!!3_N$>^w9$cPxKDll8bY?(fVBHp*h## zS;yg&>9G6^ir%M{!cnkBgIAUCxU_5&5kJE=(f7c=+`-lx$a=l)mzHt@Qq}yZN-%mcZH? zNC^5Uh8f4Er?e;S%3R5WnK~V-GI`%6-7uEl{Wn5(jnu7DX~^BPc-R}Sca=_ zot^@hRsL;0Y0`P0{4;lVO_*10qoTMCu~M{NFeF;^Hudr4+se(6J_8e$q(wF-ElIOj zMLRTUM#_xUsixFFU~X&lmgVh5t4Z{0MbJkkdT7$+264^b2cJ%Rew2k%kCVAF=>5nW zi`xGbyd*c=wz3VJwc0SJ&!K2!b5rQG{ge2s_WCJ!pP|>f6}=K2T@muVRu{eNr{G}* z>shN?^oH^+l;dRBBWotCN$c=-y|nN|%?4KUDLqfGIsCMqQ+SGv`mUG|lEOrmk-dc`K3k7xCq;e$FpphYHW(&lO-D5;y51nXo7AFPW3nRvWb?whs^JScPYjOPtYD!_VnZ z;fdNEV(Yz5eU9#R=_g|V^n+(KAEXhp}9%Kpf0h6l0<#|UHuyJ5}VhN3tQ;lGMd|y^r}pkC|DGW2xeK1FXJt#2sDRZB!W$RrO4Cj4{&!4eezyF@@_+b(8#Fjj*mbRR3f@Wr`i>8_#+9(N{U)mfb->Mc~nV+#%&!P zxrM)gz7QVm18-_k5@7iu8YjY0DL$G|h__=Eyo=gY)BLL?EK6^4P&I_YY7NOOX9jvt z2M!!2j+TKv2L=zQHntpMFcBPo`bB!2&2O=DXNkiRkiBV!|DIwr(~p}6YI&3Z(-EJe^q91CN_*2QQNK{=sZ2`4V94xFn_)QgF6 znXO^bmJ&$6L2rv;LS$DhkRc&{sK)W|h+I!&1-s7VW!X=G;Gz@do?66B?uEj^wg`}RzG zce=fMw!L@KlqzXR3yo7_4+US=R+4fxrfqAdEos}vnVk=9TjuN6X6m=3>$jwYHCab} z#^Fmld^4Ya=-8h1Zn@ule@n`{Bjs$!ws(E^$lW8^hR(loc1`g&2X2>s?YW1}u0^Av z!@jJK1q)|)75B31p>5lHpK(Nc9@?H-9XBob-m}`jntUmlu{NfyjZ;_VtQ+4IHau!r z_sz4fp8fi{nM2?0yW2P0zURTv_v3#apMADJ)zF_3YUek$%{$B9_B76W${$vAq`D5w zdJZm{jU}!{qq)^S>0EMho{Bum?K4wHQxzNT39s8{J==6V58m;ylXH5q>o!iFn5s%U zy>C0JvkktYTOp-t(D`z3Gm|$o;q4dr}vpbKx zS(@H?JiX?`q-pZ`8?N`P?yr9Nr7zD}Yvwoa`nT>sanEi(FloBwzTut{rkiJlmg%9i z&;hKBwK{FBp0lo*-}X#qTX%X}_v|(-a4}{$Eo@$fS=E@S+K{f=Fk97%-p<@`yk~V? zAA3irebn5NY2J};-a)I^m=@N)SJg3F)s?B*pRU^fM*VD6-?jd%wJK$8o^NTLS)1|g zPy6=IwqRtblBTrK{GPRhR^#^JS!;dD+PYwJ*iQ2EbuF2?t?9b0+0vS+wv=bXz41)f z{&d&=H`gs04fU?c6WHLM`iy%++Pz_VY|g!9LEwBlGOfGQt-Bv=pKaa$MrpdWJJWhB z-Fj@c^~7z{?Z87%3zn#M<7;bQu9y+8^-Na0bnHD(*&X}K_B*bZU8%KC&w6%WJDRn6 zQr7xxeG6XmY+6|J$Z;s+IGJ{w%$AhSmz3V}-|$bFW@;ZK=1O`N%$&22U*wEV%K~RK zTYmKcw8tfzKVFh~&a>tNj<=P*?er`d@qD7x;B@}5rmWvC{1-=SznlB1+ty!a{An$Z zIE1o%$Vm(QA~BqIIEnM~u(%j(;Q6$FqDhB7`4r8f;kwyx6fL3=8h6te@3X3|6Ql<` zG>}uh_JyDl$p<2R=#pQY218P;ZG$R-SdSO<~xp z!-eN?a{<;N)XKkkQWzj+dc9r-W;!(C6d_0z)+Dh}FHJi2u??>xMcU@Z2yowVm&;DW+2pK;vD)akKA$KcqAG)^{y1i1Q+6H@F#;^KJ8iJ+3` zI2jjVZIMLPAfFGvf*m<-*zNVLkxBWY8lj<=Y44~G@I8r9B|!WE;|Ej|<)~%}Mgnje z#BV67UE>VEm`SRjBmz-lELB?+aRNgC!UdReU@|~L2Gb8N2w0@FgegG^qG?4n5sRxD z<=_?79E!xj`C9u2dSw|V923=3g+PE9t3W`t$l#2@?-;^y)p~F&At^`uRSQfz7^JTR zBa|XT#6UCq5plb~kILt%Ukf%eacQQ&+zE;;S#t zmbXm`@42i0+4!U>Th};gniFcW<+XR7dHI=1(@kN)RAFnKuc*3n_~pY>M`kNpCVQ7W zTusBB7hircQ{9oS?wFCj8@n5OV=z_SF+JN&`(^jL@9#)8Kb>jbpKjhi+k9}gx_h$c){)603yokKCLMpb;G-rr zGV$k?-A&w&nryu##vg4uP}3_IeG6scYr=Nf6T+mc{2G@PoSKYiKGZkZ*XMJ|-$lMm_ltZVk!m^*d5i6%@#djOJecq% zy^z8p(pi>j_p--1BmX-T%QO#~97~EKwqfO0 z2%_jA{uDYT*E#SLH4WLFyR!{V*^VvQ_RS0K7IVd;QtyHpPpo`t<${$Ufh*g-U?a%R zmDVjd2y$}nwuKUcTwK{ERuc@iy=<`*c}smfZ!Tf;%sO30`)Mr^_(dAUSBt2>$b+UE zMB{6Gf#!?WNp1+1hwCoCNiq)=mFPI4z%b0$OW=)RW3c7A(~o*rc|WdKpIxmE6s(Uq z{@`TzD)bxca84QIO~k!HQS_3E<%?e=8Jt}OR})|SBAKSKM57@HsotP`VU(07ginTE zRAQ!KrPFSw>tPV}(GIM+WMeL%!xD$v^GZ+_CFtD3GOW9iF=~W59HGq<)vTeNXadMk z+QhFY(DtxafhUe(g~Q-*Pz{1ySd?J*!`{S;VQax$N{xY7c##L2A6?Duz<`8ERzMWs z-QwQ7fUGr(zT-J_INloXs3cfhc?m&jpSB--iv zME?|-eG(;l%qB4tj;)_)6VAUz4zB=wsxntcF#F` z=G_%HuB6=?7dW%Wo~>Dzt*FbERX?^OgUza(f`Gtav9Ob*SW_AvsqZE;5KzWwpz{WFlSX87Z@aPYnDGRD8HguA0(c)*2K*WjPs($0_R0@S0Da^&oA>jNIf^xMNds9%E@`9) zx(Zzvl_B&RWRj)&?iyFj$4c5ySPXR|+FGPzah=PW1g$?R{LK9kH{2(`L+#O>t+lX| zASz)|8~Tvv^M#bZtoht^$S-b3Nip@;>3Q)}G%$M3gPt21JvZT08P# jeIJDn#$4 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 z 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec2a3e13f67b4cbcc9513761874237a634794505 GIT binary patch literal 2937 zcmZuzO>7&-6`tk(^Iw!jQhzq%P>PvEl#{q=kQz;GMX}sCictw@!b8_9?nqjCxnyRS z`XN?@5f~^9BnTX!kb0^M6lenX&|{BndhErF42ap-sEZ(n-ss9f4foK#+2xY1>jC!7 zdo%CN&c6BHH~ZIEER3Lyv;SG277_Y}8bRZG%Hfxw>>>@7kj7{sgDEjyA1bk4&y{%S zSwpCbC6S>%oFP@^lI-cc5w1o`5l>HOszK^y zLtiN_6Vmoyo&#c2^Os>P@embCaNthO4~5?A?>+(KJSDZGRVLv9K_;yo`t z{nRvna*@KAz&t zdL6{WE9ilMkrYLOcD!XXp3RueKtc%<+Rvp`9tTxR0Wp z?6DU2aqJMHk;|<^?GT!5S6o+3&43g~3I3pgEn8WsY1@Pzrz>t?vQo2fAw(pwi{*gN zz(6!h9(?`;d;;Lwwpc83jG*;$T+Cd2a!KdrNcNO4Y*N5tHKU%_W@C% z?|hF|A+2~eZJuR60M!n=ZMe=MYuc+BXjj^MD4sIkB2ZuWM!BiTcNpCbjU zGsxipqJ5yl8%6@JLGMVF^uP+VV2vg8EV8q~XdaO_c4SAcj0Gcu-p`ml5sXxh1=^t3 z_@~EKas!`0bA*7o8T29KdPn}byvb~$E%tr1$rOaeW)x`H2GX9Pq}r5hyk%2xE*Dsr z113=cDp=Jpv0MSbgVk#D=)&^y#T=%botv_9o9nuPb8FbPb#n~{fC9t1rJKOnW*NII zM3D^ahYVA31cV!g@@<%20TY@Qm#b4`QVfu1s2%s_6oTPqF`?dBqHYp;Os>=)6O7v0 z8YPJ`(V;L^!;SdYgi?kQErbcJ8*-EinnaSL!dsn^2-H3cyC8WwN-sQ@#am^IvXw^y zo*?ubT(MUo&9SExX>X3MYwd%85{;we*k1m(?CnIpE#*5yBfAsVC-&?cKmAPm!<&E1 z-%7sG;_t+dd}3TP4&qbo_|y%&AAhmMc0(yS)yYiVXx>V{+&b6EjPLGT-|=g?lN|1h zJOkAXqg@$gpFc!=Hr`rz5Jj=cz4vZMr#s`vTW@}Jp);I07@lqqPv6-3o%0)KfB4j` z=&6Ty5>x*~BCI}~-aY;4>2~zkooMQlcdxzMNuGqIcca&%2gwud=#F0pUbj;$?~8Vn70ZM%G9P>#lX~IMXA=bhC%hH zqI}R$joyr?C|a$oDC9X@#?Ld0%zakibDhzNuGc^JlHZ@1_xgKs>^mOjyJKkd z=>5n9pSl+x?efrf1(X`;id2(OCf}8*7DlObmwI)hD4e*Jc(yI){}lt9Oa|L1WXbnI zcSVXxCsa%dUxq5a;8hhlMV)5oo`l|p z<^J!Cm-)|;|M|2;9!aPDGyfr30Fxe+wFsiiG7R$-I`IvPe~pH}Mn~?V+_&flchRZ4 z=(WGI$-i;0e#=eWlgC<_19_}1kL|s-FXyia4}=1f+Drd>@>i1wqbJ*=C%=RL0zcjV E1rv+dy#N3J literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..a42f702 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,564 @@ +"""Network Authentication Helpers + +Contains interface (MultiDomainBasicAuth) and associated glue code for +providing credentials in the context of network requests. +""" + +from __future__ import annotations + +import logging +import os +import shutil +import subprocess +import sysconfig +import typing +import urllib.parse +from abc import ABC, abstractmethod +from functools import cache +from os.path import commonprefix +from pathlib import Path +from typing import Any, NamedTuple + +from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth +from pip._vendor.requests.models import Request, Response +from pip._vendor.requests.utils import get_netrc_auth + +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ask, + ask_input, + ask_password, + remove_auth_from_url, + split_auth_netloc_from_url, +) +from pip._internal.vcs.versioncontrol import AuthInfo + +logger = getLogger(__name__) + +KEYRING_DISABLED = False + + +class Credentials(NamedTuple): + url: str + username: str + password: str + + +class KeyRingBaseProvider(ABC): + """Keyring base provider interface""" + + has_keyring: bool + + @abstractmethod + def get_auth_info(self, url: str, username: str | None) -> AuthInfo | None: ... + + @abstractmethod + def save_auth_info(self, url: str, username: str, password: str) -> None: ... + + +class KeyRingNullProvider(KeyRingBaseProvider): + """Keyring null provider""" + + has_keyring = False + + def get_auth_info(self, url: str, username: str | None) -> AuthInfo | None: + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return None + + +class KeyRingPythonProvider(KeyRingBaseProvider): + """Keyring interface which uses locally imported `keyring`""" + + has_keyring = True + + def __init__(self) -> None: + import keyring + + self.keyring = keyring + + def get_auth_info(self, url: str, username: str | None) -> AuthInfo | None: + # Support keyring's get_credential interface which supports getting + # credentials without a username. This is only available for + # keyring>=15.2.0. + if hasattr(self.keyring, "get_credential"): + logger.debug("Getting credentials from keyring for %s", url) + cred = self.keyring.get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username is not None: + logger.debug("Getting password from keyring for %s", url) + password = self.keyring.get_password(url, username) + if password: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + self.keyring.set_password(url, username, password) + + +class KeyRingCliProvider(KeyRingBaseProvider): + """Provider which uses `keyring` cli + + Instead of calling the keyring package installed alongside pip + we call keyring on the command line which will enable pip to + use which ever installation of keyring is available first in + PATH. + """ + + has_keyring = True + + def __init__(self, cmd: str) -> None: + self.keyring = cmd + + def get_auth_info(self, url: str, username: str | None) -> AuthInfo | None: + # This is the default implementation of keyring.get_credential + # https://github.com/jaraco/keyring/blob/97689324abcf01bd1793d49063e7ca01e03d7d07/keyring/backend.py#L134-L139 + if username is not None: + password = self._get_password(url, username) + if password is not None: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return self._set_password(url, username, password) + + def _get_password(self, service_name: str, username: str) -> str | None: + """Mirror the implementation of keyring.get_password using cli""" + if self.keyring is None: + return None + + cmd = [self.keyring, "get", service_name, username] + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + res = subprocess.run( + cmd, + stdin=subprocess.DEVNULL, + stdout=subprocess.PIPE, + env=env, + ) + if res.returncode: + return None + return res.stdout.decode("utf-8").strip(os.linesep) + + def _set_password(self, service_name: str, username: str, password: str) -> None: + """Mirror the implementation of keyring.set_password using cli""" + if self.keyring is None: + return None + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + subprocess.run( + [self.keyring, "set", service_name, username], + input=f"{password}{os.linesep}".encode(), + env=env, + check=True, + ) + return None + + +@cache +def get_keyring_provider(provider: str) -> KeyRingBaseProvider: + logger.verbose("Keyring provider requested: %s", provider) + + # keyring has previously failed and been disabled + if KEYRING_DISABLED: + provider = "disabled" + if provider in ["import", "auto"]: + try: + impl = KeyRingPythonProvider() + logger.verbose("Keyring provider set: import") + return impl + except ImportError: + pass + except Exception as exc: + # In the event of an unexpected exception + # we should warn the user + msg = "Installed copy of keyring fails with exception %s" + if provider == "auto": + msg = msg + ", trying to find a keyring executable as a fallback" + logger.warning(msg, exc, exc_info=logger.isEnabledFor(logging.DEBUG)) + if provider in ["subprocess", "auto"]: + cli = shutil.which("keyring") + if cli and cli.startswith(sysconfig.get_path("scripts")): + # all code within this function is stolen from shutil.which implementation + @typing.no_type_check + def PATH_as_shutil_which_determines_it() -> str: + path = os.environ.get("PATH", None) + if path is None: + try: + path = os.confstr("CS_PATH") + except (AttributeError, ValueError): + # os.confstr() or CS_PATH is not available + path = os.defpath + # bpo-35755: Don't use os.defpath if the PATH environment variable is + # set to an empty string + + return path + + scripts = Path(sysconfig.get_path("scripts")) + + paths = [] + for path in PATH_as_shutil_which_determines_it().split(os.pathsep): + p = Path(path) + try: + if not p.samefile(scripts): + paths.append(path) + except FileNotFoundError: + pass + + path = os.pathsep.join(paths) + + cli = shutil.which("keyring", path=path) + + if cli: + logger.verbose("Keyring provider set: subprocess with executable %s", cli) + return KeyRingCliProvider(cli) + + logger.verbose("Keyring provider set: disabled") + return KeyRingNullProvider() + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, + prompting: bool = True, + index_urls: list[str] | None = None, + keyring_provider: str = "auto", + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.keyring_provider = keyring_provider + self.passwords: dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Credentials | None = None + + @property + def keyring_provider(self) -> KeyRingBaseProvider: + return get_keyring_provider(self._keyring_provider) + + @keyring_provider.setter + def keyring_provider(self, provider: str) -> None: + # The free function get_keyring_provider has been decorated with + # functools.cache. If an exception occurs in get_keyring_auth that + # cache will be cleared and keyring disabled, take that into account + # if you want to remove this indirection. + self._keyring_provider = provider + + @property + def use_keyring(self) -> bool: + # We won't use keyring when --no-input is passed unless + # a specific provider is requested because it might require + # user interaction + return self.prompting or self._keyring_provider not in ["auto", "disabled"] + + def _get_keyring_auth( + self, + url: str | None, + username: str | None, + ) -> AuthInfo | None: + """Return the tuple auth for a given url from keyring.""" + # Do nothing if no url was provided + if not url: + return None + + try: + return self.keyring_provider.get_auth_info(url, username) + except Exception as exc: + # Log the full exception (with stacktrace) at debug, so it'll only + # show up when running in verbose mode. + logger.debug("Keyring is skipped due to an exception", exc_info=True) + # Always log a shortened version of the exception. + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + global KEYRING_DISABLED + KEYRING_DISABLED = True + get_keyring_provider.cache_clear() + return None + + def _get_index_url(self, url: str) -> str | None: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + url = remove_auth_from_url(url).rstrip("/") + "/" + parsed_url = urllib.parse.urlsplit(url) + + candidates = [] + + for index in self.index_urls: + index = index.rstrip("/") + "/" + parsed_index = urllib.parse.urlsplit(remove_auth_from_url(index)) + if parsed_url == parsed_index: + return index + + if parsed_url.netloc != parsed_index.netloc: + continue + + candidate = urllib.parse.urlsplit(index) + candidates.append(candidate) + + if not candidates: + return None + + candidates.sort( + reverse=True, + key=lambda candidate: commonprefix( + [ + parsed_url.path, + candidate.path, + ] + ).rfind("/"), + ) + + return urllib.parse.urlunsplit(candidates[0]) + + def _get_new_credentials( + self, + original_url: str, + *, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + self._get_keyring_auth(index_url, username) or + self._get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> tuple[str, str | None, str | None]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password(self, netloc: str) -> tuple[str | None, str | None, bool]: + username = ask_input(f"User for {netloc}: ") if self.prompting else None + if not username: + return None, None, False + if self.use_keyring: + auth = self._get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if ( + not self.prompting + or not self.use_keyring + or not self.keyring_provider.has_keyring + ): + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + username, password = None, None + + # Query the keyring for credentials: + if self.use_keyring: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # We are not able to prompt the user so simply return the response + if not self.prompting and not username and not password: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = Credentials( + url=parsed.netloc, + username=username, + password=password, + ) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + # The result of the assignment isn't used, it's just needed to consume + # the content. + _ = resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert ( + self.keyring_provider.has_keyring + ), "should never reach here without keyring" + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + self.keyring_provider.save_auth_info( + creds.url, creds.username, creds.password + ) + except Exception: + logger.exception("Failed to save credentials") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..2a372f2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,128 @@ +"""HTTP cache implementation.""" + +from __future__ import annotations + +import os +import shutil +from collections.abc import Generator +from contextlib import contextmanager +from datetime import datetime +from typing import Any, BinaryIO, Callable + +from pip._vendor.cachecontrol.cache import SeparateBodyBaseCache +from pip._vendor.cachecontrol.caches import SeparateBodyFileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import ( + adjacent_tmp_file, + copy_directory_permissions, + replace, +) +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Generator[None, None, None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(SeparateBodyBaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + + There is a race condition when two processes try to write and/or read the + same entry at the same time, since each entry consists of two separate + files (https://github.com/psf/cachecontrol/issues/324). We therefore have + additional logic that makes sure that both files to be present before + returning an entry; this fixes the read side of the race condition. + + For the write side, we assume that the server will only ever return the + same data for the same URL, which ought to be the case for files pip is + downloading. PyPI does not have a mechanism to swap out a wheel for + another wheel, for example. If this assumption is not true, the + CacheControl issue will need to be fixed. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = SeparateBodyFileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + with open(metadata_path, "rb") as f: + return f.read() + + def _write_to_file(self, path: str, writer_func: Callable[[BinaryIO], Any]) -> None: + """Common file writing logic with proper permissions and atomic replacement.""" + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + writer_func(f) + # Inherit the read/write permissions of the cache directory + # to enable multi-user cache use-cases. + copy_directory_permissions(self.directory, f) + + replace(f.name, path) + + def _write(self, path: str, data: bytes) -> None: + self._write_to_file(path, lambda f: f.write(data)) + + def _write_from_io(self, path: str, source_file: BinaryIO) -> None: + self._write_to_file(path, lambda f: shutil.copyfileobj(source_file, f)) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + path = self._get_cache_path(key) + self._write(path, value) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) + with suppressed_cache_errors(): + os.remove(path + ".body") + + def get_body(self, key: str) -> BinaryIO | None: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + return open(body_path, "rb") + + def set_body(self, key: str, body: bytes) -> None: + path = self._get_cache_path(key) + ".body" + self._write(path, body) + + def set_body_from_io(self, key: str, body_file: BinaryIO) -> None: + """Set the body of the cache entry from a file object.""" + path = self._get_cache_path(key) + ".body" + self._write_from_io(path, body_file) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..9881cc2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -0,0 +1,342 @@ +"""Download files with progress indicators.""" + +from __future__ import annotations + +import email.message +import logging +import mimetypes +import os +from collections.abc import Iterable, Mapping +from dataclasses import dataclass +from http import HTTPStatus +from typing import BinaryIO + +from pip._vendor.requests import PreparedRequest +from pip._vendor.requests.models import Response +from pip._vendor.urllib3 import HTTPResponse as URLlib3Response +from pip._vendor.urllib3._collections import HTTPHeaderDict +from pip._vendor.urllib3.exceptions import ReadTimeoutError + +from pip._internal.cli.progress_bars import BarType, get_download_progress_renderer +from pip._internal.exceptions import IncompleteDownloadError, NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import SafeFileCache, is_from_cache +from pip._internal.network.session import CacheControlAdapter, PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> int | None: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _get_http_response_etag_or_last_modified(resp: Response) -> str | None: + """ + Return either the ETag or Last-Modified header (or None if neither exists). + The return value can be used in an If-Range header. + """ + return resp.headers.get("etag", resp.headers.get("last-modified")) + + +def _log_download( + resp: Response, + link: Link, + progress_bar: BarType, + total_length: int | None, + range_start: int | None = 0, +) -> Iterable[bytes]: + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + if range_start: + logged_url = ( + f"{logged_url} ({format_size(range_start)}/{format_size(total_length)})" + ) + else: + logged_url = f"{logged_url} ({format_size(total_length)})" + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + elif range_start: + logger.info("Resuming download %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (512 * 1024): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp) + + if not show_progress: + return chunks + + renderer = get_download_progress_renderer( + bar_type=progress_bar, size=total_length, initial_progress=range_start + ) + return renderer(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + m = email.message.Message() + m["content-type"] = content_disposition + filename = m.get_param("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(str(filename)) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: str | None = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +@dataclass +class _FileDownload: + """Stores the state of a single link download.""" + + link: Link + output_file: BinaryIO + size: int | None + bytes_received: int = 0 + reattempts: int = 0 + + def is_incomplete(self) -> bool: + return bool(self.size is not None and self.bytes_received < self.size) + + def write_chunk(self, data: bytes) -> None: + self.bytes_received += len(data) + self.output_file.write(data) + + def reset_file(self) -> None: + """Delete any saved data and reset progress to zero.""" + self.output_file.seek(0) + self.output_file.truncate() + self.bytes_received = 0 + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: BarType, + resume_retries: int, + ) -> None: + assert ( + resume_retries >= 0 + ), "Number of max resume retries must be bigger or equal to zero" + self._session = session + self._progress_bar = progress_bar + self._resume_retries = resume_retries + + def batch( + self, links: Iterable[Link], location: str + ) -> Iterable[tuple[Link, tuple[str, str]]]: + """Convenience method to download multiple links.""" + for link in links: + filepath, content_type = self(link, location) + yield link, (filepath, content_type) + + def __call__(self, link: Link, location: str) -> tuple[str, str]: + """Download a link and save it under location.""" + resp = self._http_get(link) + download_size = _get_http_response_size(resp) + + filepath = os.path.join(location, _get_http_response_filename(resp, link)) + with open(filepath, "wb") as content_file: + download = _FileDownload(link, content_file, download_size) + self._process_response(download, resp) + if download.is_incomplete(): + self._attempt_resumes_or_redownloads(download, resp) + + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + def _process_response(self, download: _FileDownload, resp: Response) -> None: + """Download and save chunks from a response.""" + chunks = _log_download( + resp, + download.link, + self._progress_bar, + download.size, + range_start=download.bytes_received, + ) + try: + for chunk in chunks: + download.write_chunk(chunk) + except ReadTimeoutError as e: + # If the download size is not known, then give up downloading the file. + if download.size is None: + raise e + + logger.warning("Connection timed out while downloading.") + + def _attempt_resumes_or_redownloads( + self, download: _FileDownload, first_resp: Response + ) -> None: + """Attempt to resume/restart the download if connection was dropped.""" + + while download.reattempts < self._resume_retries and download.is_incomplete(): + assert download.size is not None + download.reattempts += 1 + logger.warning( + "Attempting to resume incomplete download (%s/%s, attempt %d)", + format_size(download.bytes_received), + format_size(download.size), + download.reattempts, + ) + + try: + resume_resp = self._http_get_resume(download, should_match=first_resp) + # Fallback: if the server responded with 200 (i.e., the file has + # since been modified or range requests are unsupported) or any + # other unexpected status, restart the download from the beginning. + must_restart = resume_resp.status_code != HTTPStatus.PARTIAL_CONTENT + if must_restart: + download.reset_file() + download.size = _get_http_response_size(resume_resp) + first_resp = resume_resp + + self._process_response(download, resume_resp) + except (ConnectionError, ReadTimeoutError, OSError): + continue + + # No more resume attempts. Raise an error if the download is still incomplete. + if download.is_incomplete(): + os.remove(download.output_file.name) + raise IncompleteDownloadError(download) + + # If we successfully completed the download via resume, manually cache it + # as a complete response to enable future caching + if download.reattempts > 0: + self._cache_resumed_download(download, first_resp) + + def _cache_resumed_download( + self, download: _FileDownload, original_response: Response + ) -> None: + """ + Manually cache a file that was successfully downloaded via resume retries. + + cachecontrol doesn't cache 206 (Partial Content) responses, since they + are not complete files. This method manually adds the final file to the + cache as though it was downloaded in a single request, so that future + requests can use the cache. + """ + url = download.link.url_without_fragment + adapter = self._session.get_adapter(url) + + # Check if the adapter is the CacheControlAdapter (i.e. caching is enabled) + if not isinstance(adapter, CacheControlAdapter): + logger.debug( + "Skipping resume download caching: no cache controller for %s", url + ) + return + + # Check SafeFileCache is being used + assert isinstance( + adapter.cache, SafeFileCache + ), "separate body cache not in use!" + + synthetic_request = PreparedRequest() + synthetic_request.prepare(method="GET", url=url, headers={}) + + synthetic_response_headers = HTTPHeaderDict() + for key, value in original_response.headers.items(): + if key.lower() not in ["content-range", "content-length"]: + synthetic_response_headers[key] = value + synthetic_response_headers["content-length"] = str(download.size) + + synthetic_response = URLlib3Response( + body="", + headers=synthetic_response_headers, + status=200, + preload_content=False, + ) + + # Save metadata and then stream the file contents to cache. + cache_url = adapter.controller.cache_url(url) + metadata_blob = adapter.controller.serializer.dumps( + synthetic_request, synthetic_response, b"" + ) + adapter.cache.set(cache_url, metadata_blob) + download.output_file.flush() + with open(download.output_file.name, "rb") as f: + adapter.cache.set_body_from_io(cache_url, f) + + logger.debug( + "Cached resumed download as complete response for future use: %s", url + ) + + def _http_get_resume( + self, download: _FileDownload, should_match: Response + ) -> Response: + """Issue a HTTP range request to resume the download.""" + # To better understand the download resumption logic, see the mdn web docs: + # https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/Range_requests + headers = HEADERS.copy() + headers["Range"] = f"bytes={download.bytes_received}-" + # If possible, use a conditional range request to avoid corrupted + # downloads caused by the remote file changing in-between. + if identifier := _get_http_response_etag_or_last_modified(should_match): + headers["If-Range"] = identifier + return self._http_get(download.link, headers) + + def _http_get(self, link: Link, headers: Mapping[str, str] = HEADERS) -> Response: + target_url = link.url_without_fragment + try: + resp = self._session.get(target_url, headers=headers, stream=True) + raise_for_status(resp) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + return resp diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..0039833 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,215 @@ +"""Lazy ZIP over HTTP""" + +from __future__ import annotations + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from collections.abc import Generator +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import NormalizedName +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url( + name: NormalizedName, url: str, session: PipSession +) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the portion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, name) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: list[int] = [] + self._right: list[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: int | None = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> LazyZipOverHTTP: + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> None: + self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Generator[None, None, None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) + except BadZipFile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Generator[tuple[int, int], None, None]: + """Return a generator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..a1f9444 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py @@ -0,0 +1,528 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +from __future__ import annotations + +import email.utils +import functools +import io +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from collections.abc import Generator, Mapping, Sequence +from typing import ( + TYPE_CHECKING, + Any, + Optional, + Union, +) + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter as _BaseCacheControlAdapter +from pip._vendor.requests.adapters import DEFAULT_POOLBLOCK, BaseAdapter +from pip._vendor.requests.adapters import HTTPAdapter as _BaseHTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._vendor.urllib3.poolmanager import PoolManager + from pip._vendor.urllib3.proxymanager import ProxyManager + + +logger = logging.getLogger(__name__) + +SecureOrigin = tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: list[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +@functools.lru_cache(maxsize=1) +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: dict[str, Any] = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: float | tuple[float, float] | None = None, + verify: bool | str = True, + cert: str | tuple[str, str] | None = None, + proxies: Mapping[str, str] | None = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode()) + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class _SSLContextAdapterMixin: + """Mixin to add the ``ssl_context`` constructor argument to HTTP adapters. + + The additional argument is forwarded directly to the pool manager. This allows us + to dynamically decide what SSL store to use at runtime, which is used to implement + the optional ``truststore`` backend. + """ + + def __init__( + self, + *, + ssl_context: SSLContext | None = None, + **kwargs: Any, + ) -> None: + self._ssl_context = ssl_context + super().__init__(**kwargs) + + def init_poolmanager( + self, + connections: int, + maxsize: int, + block: bool = DEFAULT_POOLBLOCK, + **pool_kwargs: Any, + ) -> PoolManager: + if self._ssl_context is not None: + pool_kwargs.setdefault("ssl_context", self._ssl_context) + return super().init_poolmanager( # type: ignore[misc] + connections=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + def proxy_manager_for(self, proxy: str, **proxy_kwargs: Any) -> ProxyManager: + # Proxy manager replaces the pool manager, so inject our SSL + # context here too. https://github.com/pypa/pip/issues/13288 + if self._ssl_context is not None: + proxy_kwargs.setdefault("ssl_context", self._ssl_context) + return super().proxy_manager_for(proxy, **proxy_kwargs) # type: ignore[misc] + + +class HTTPAdapter(_SSLContextAdapterMixin, _BaseHTTPAdapter): + pass + + +class CacheControlAdapter(_SSLContextAdapterMixin, _BaseCacheControlAdapter): + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: bool | str, + cert: str | tuple[str, str] | None, + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: bool | str, + cert: str | tuple[str, str] | None, + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + timeout: int | None = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: str | None = None, + trusted_hosts: Sequence[str] = (), + index_urls: list[str] | None = None, + ssl_context: SSLContext | None = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: list[tuple[str, int | None]] = [] + self.pip_proxy = None + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 502 may be a transient error from a CDN like CloudFlare or CloudFront + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 502, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ssl_context=ssl_context, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries, ssl_context=ssl_context) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: list[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: str | None = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + parsed_host, parsed_port = parse_netloc(host) + if parsed_host is None: + raise ValueError(f"Trusted host URL must include a host part: {host!r}") + if (parsed_host, parsed_port) not in self.pip_trusted_origins: + self.pip_trusted_origins.append((parsed_host, parsed_port)) + + self.mount( + build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not parsed_port: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Generator[SecureOrigin, None, None]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host or "") + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + # Allow setting a default proxies on a session + kwargs.setdefault("proxies", self.proxies) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..74d3111 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,98 @@ +from collections.abc import Generator + +from pip._vendor.requests.models import Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: dict[str, str] = {"Accept-Encoding": "identity"} + +DOWNLOAD_CHUNK_SIZE = 256 * 1024 + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = DOWNLOAD_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py b/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..f4bddb4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,61 @@ +"""xmlrpclib.Transport implementation""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + + from _typeshed import SizedBuffer + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: "SizedBuffer", + verbose: bool = False, + ) -> tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c688065b9953153cf706cf1676c9d49983dd525d GIT binary patch literal 209 zcmX@j%ge<81k%j^GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!D$p;_FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;O$Sly0&&(@HEdpxN&o4+V0-BSbSF9fo6wNG&kJl@x{Ka9Do1ape ZlWJGQ3UmM?5Ep|OADI~$8H<>KEC4W`II92v literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c6387ff8f2c3e98f1946fb00e73aa1a172f529a GIT binary patch literal 7218 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e6b584349a7127ea2ca6cad19a85fa697d214aa GIT binary patch literal 10257 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 ZXdlG52oGIKs?k=^L;Xfiq$8O0crog*j| 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..89288ef5b9bc981fdaea76e21382ba3df9e51c71 GIT binary patch literal 215 zcmX@j%ge<81k%j^GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!D$_5|FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;O$Sly0&&(@HEdpxN&o4+V0-BSbSFE2@nwgWL9}kqvEQycTE2#X% fVUwGmQks)$SHuc*1|tv`gBTx~85tRin1L(+weC9b literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49e7b09a279e57e14ed4e3dd33ac5560e95e6570 GIT binary patch literal 7633 zcmcgRTWl0rcDG*LRsC?gyRk71w%f)Y#td#Vyv#7b#5U$VXa<-~#v8V2cNMsrc6Cox zwT(ON#3FpyD;fy`LsAH4M`Lh(w2oObidl8CST!rmk`qLhZW7s}Z2FWd zozOsgz0m9Xlr8l&POx2p|HO|j#_}dKEn_B3HKQ5l;9EMOXo{XNGdg_uFY1Y;GMq?W zyEu_mpd)ljGt5LfeO~z}r|Qb6qM3A>GMYUG-$__Dk+hGoYd17+5W=iIfIFWd4A9&x zkEco)l{)~KWXuwe2yrMd$*N?ME07fKwyrpHj*&}YLjDwXoa843i4>RuzXj$NxB`C| zTLF6zy4AoF3Ap_UdmFf3;J#tkj`FUqf~&yhh|c3qN64)@)9WBpaG5>_cIa%dr^yWl z);Q!(eH7xOrGBK#@8Qt=zhKe$wB^8S^OdS@wlOqZ3s$y6!GofEq zOe?Hqw77CzHB69~_-I1Ers$T>NQ^0Rd@Pa9!Bk#Lj4GC-DdTpJRhQA#tE!ermu4XA zqjq`uXFcN?{hE;l*))1C40fOG>)+pf0fji(J&=)=cpt2rFjS)_HU<~yNvp#>*$Hzb zqwS5oxu?f~J9NY1YY9NIC#zrrKnmYd6MYguxeSLx7ys|4c zb#`TI`@JJ~j@*6c84-lGnZPtZt*)}1w11^-#{>Qc+osRXZz}p)R$Zj2ZQ3<$e%H6^ zg^8ufgU{cs*8d;u|9j&d zpv8^710m+8Vn56N+zrqp7vJAV9(fJ|{Ftrl4-1d$S%gCj!eI{K#LSwIirV zPe+fgBk?T`EsCe4d7#;rGUboyOR1Nf_V0H8++$so1$0>r2LC{}^{+;k={0J&r zP?wH!WI44<1mw&Dvc`{kw(7ts=rZB!Tn3d4gEFBSQ08`4K3bnqL3j*CJ;U` zLmUJcoF$bgdrHn9`an}Z$|>oIs44@C)GHInTksaxWcAD#bjwjQ6E#PaY6$>~d#;PO z#CROtLp*MI;_=apoJ%9@i^o68CDNr4cRVg>!mRx{)U_9qy)t_fV?m$HK@0Ik?LUavc<6V@b+Q1hTMo!BXhmotk{gob zdW_YEJc>7klC-YKL5SNb@t%Le(-qPo?jVU?Ao8GQrp~XBNbew-YqG**3R09aFWD~j~?}FtHV^qb!&Az?~ zbZf{Sx>ZU0qM0kv%a^OQC`R?>^{&g8W6@K9Pc<4*VIv0=)8UHB^`w$TCtSk(B1{2k$z+Y_6>$8~;mqi;5miQq6&d9Q5E}*SkyJA|xKzon z$CA~-B@e^|_A+ai0l1C9A&CQI7nQ(QNty{UaV{+z1%@)LOgR&(+KM5aAYJUa{FVV- zfheKIo+KFrp<(w=I{ta*KkocoJVNC^S-vqWD%0mU zeAI;KK(+OS(x6PG%4mfK1#-cr!XVn?4XMCYF0Jo{J-`{DSuzl-lDU=QNFcE1@qFXD zJD2)T;fe@UQ)K-$m&7A0f$+4~zH2qMNL4Be9RPqVkW@7#pbv|aRxl8<>k@Q;({d-% zN>}VANm%9 z-OIt=Vz75H_|~-RNgy~oJ~KXBm?_L3yLbA|=?AXGK+l5MWAmq4KU}aIl`IQ5^D4;# zT9o)U$w|a4uP>BCM+npS0{_2pZ&HvM{O3>=l1L_nr>`q_;Ys5!guCQ#xJj3ZQcO$1 zEA5UBA^k_ag)NtF{`XJ10b7(3~$zLm_${AYsmAW^zo zpt8n+%u4WE4$vJuAzWQ|U(L53bB(hxN87#;ZUq*T|8EGPF);Refa!AQ zclF6KdaAEKhhP*ljB#Z-hK+$Yh=K!4q`@V~6VYJ>qaK`N9*SDbcwWevSGo^^ff1<& zz-WFO>Rj>}v68Rl8<+&t@{$a#=ew4<1+3%DIer zJd@L8+NJNqWx}`)39yb)+j<-9E~yrT75X5~^;Go5Vy|Q^k$Qg3gqML)#V{~|#vmI_ z9TeNzaS2(@*Vm{W^n3`@jDLd)Y@A3MBg+k)#fHxN$;F19)1Fn)E$w&`Y?w^Mszp}OYUhkdWyKl{j5Y_rSS3M-se6Q(F)4XS){q2V*A0Aq0JU)HmNvL`L>SE}% z1>b8g{5TC)|L$oZig|7DSH5~oXoD|T>qvcgzT;l^o$g{_M^W4X`FLGuZs&aR!HFgR zK8%rDAF?aHy4jO6C%=DTKK${YEcse6oNj%AV_#wQ^2_GvG(YQ~@y{iTV&tjgS@-_r z!o!YV?ED${)B0!JALfqb6mFQKx&egc(tc#5Kaz;fj@6mly2RFc%z zUrU+uy${0=>$Rd1g;IXy5J zMlPM1IWy1AU-;bDhPvMlnl1%44uPw6j)(oXV~U^yPVWZs01WWIv9LNsKzo$`U(meo(DI4Wx<5q$p+yORfps}iShmf&FiA03cR|? zki>I#F8(c`6cvq93|&!H%Ts!CiL3Iu@L8ZE`B05$(7wNf?F>xj>C4M=A8BlzH$MK( zv}Z;1&5ASPTzD?EB(}kWDRy{gymJHdk_+7FQ5>M>{N2pzgu{bPzVM31-( z@JG3U0>>|)8BwO z`Yx=xv5H}J04ofT^`lr}$f1|{N3~UNfj+CQ#DC`z{5v?Y2P@=^{SecE5LQSWJ_S!_u zZ?6!kTGncbwHY6wuH-;Y;1NnkOF+q>{}Diz8($b9fU`YTAel+0;a3yi5 zECFT6(9ta*hlV|DM zrp?KASf>wTg}+G9M@sw3RJbTJY8muWJZ!(K9o18?0_~nL1r-=jhWUcD|AqvAP3q`> z=?l{N1!?_va`+2!;7choy?I%R6s5@g!9}TK$_1QbealRw$V8s8jZ6%bVwgc@j(bk9eIdTjFrCi`)|7Mq133YrD*ylh literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..845b83de04c2245c9c5b179728a5eddd9cf6f62f GIT binary patch literal 1887 zcmZ`)&2QX96d$kc^*UMSqp8wJTZlzV!XoXOl77P4&!h|*Ts_Rzgp&U%t{;xEm3 zv)yO|5#m54P{j!j9C}6V9{}{!oFZ{alu8K}NR_G{xTQ2GC>-F8*WS>o%*vj5^WHrF z=Dpv0`?I2SAs9LSpW0UO_B1cxFKuK&{sk1Tks4eB-QcgI26qCTLX>NyICLHE z!=W!P|IdE8y`Pts?Ksg`brJ^FspZatSgjeZMIEY|m{x&y*iSt>KYH3YWoDD^C?JPL{?CYC z#U-dI&9-JWzZuj#cdU5oO^sRsF2s?bns51B}`{RCd z7zlD4aP`4Me}dO4+Ur5bPHyDiS-<*VaAx)L!+}?}2SzssMprLBl#e_?vRLN!GU!NQ zqcF48U;ZM!qa58@A7Q# zU|)*-M_)N;yV{K~9ng0H{&z2xM)@DPQck?rKY3QTuVg^Je^xFHNo#4PG$5@Fh-^K? zgUMP>ES;3sR0(X>M#a(_Qoc8oblvo-x=xOQyD$f#E$WZ~(<2bRn2dT2nl2@*dxgg$ zizN8PP8TEs(+)kW#W$+hkGlDP==SonHqh;DT0CTMo6^T$WE4OLW(;c=01tl_Q8K?r zPvP5$RQ13uB|$;q0N<>4-G|Cp-kI;Q-~8tL ze&6h`s+vYHM#O&`4`qZNa3LPaXtCaa#n;F{Rb*g8uy7T_ELwssRz=Kpk|o)4RSws( zm9UknVkfJ~P)=AWJ6%nOYsJdg*=iQnNg^95A{uF;8X2NqOd8qGrD|VWD5wjQ9}-_T zbYIWU5Qk9RH(e)hxie-xf6=9R<~C`aij!;r2= zF&5CAvwZ|IK6Y?e0&s{{RrkvEn`PjN#YPocd!FdQPRi-CSA1fc6sQA#h^@-z< zK<${LTWw~tQgI&otYn$BlGpYdt}|KO|7MAqKADJ;!AhR#l{C}wA?>8dH(j$xuuWpZ-3>^_C2fH z_bi>hpBj9GGI9lPB+=l+-RzNdQ5Z~rkyuNhz8CJOPXC&Cct-ca#}*6pE_H$Pq(IQP$*$aPzrO1M$D-BuJc1h~cChO>P8QhA^F zBQEFUpSG2;^s|}-c^Rk5qsnqxEe|Wp!!lowir})GlgoQk%exisvrjG`PzwElqG^U( z*EG5V!UZFc`Jx5|GF%Etjp(X1;GSlbUwFZA=n>bZ*tpNxD>()2+O)_~Iu0VgQ`rf4 zKsqu04ZZaMr5>WA57B{5LBzseNrX@0-_fD9#EbaA-TvH~$miGI>CPXV3FrHAazh3^ IeH8-z2UG(YdH?_b literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de74436c80dfdf7c30a3edc5b1ff2f041b42e520 GIT binary patch literal 1734 zcmZuxO>7fK6rR~1+qubi=5mom`oVNK7Y%xpPf&E$a-Pa2eSYnfKzl>Lzc1gFGXmmr(l zs3TpM&ZAGUhQhu{eft*r3jl1XBj1yf6^uf)r?ce_`U=^~*K+T4*OU&fr+fN=>?l2p zS%eYTXaijjb>xopo!X0YO|`N3dUJ@I?^*ue4cB+{v;*0ZKk56sj3&_$#Boc)XaRD- z=!@c2c>%TXBno3rh*V?)W$88cq*n>zl@7Se2J0^<@5o6O@Ru)-P%ebTB? z>Jn#(@Mcw*Ej3-Y9q$ZF?3%>L@uJv>}~37?wi6;TDThG#ne4{q50MgNBxEh1Otgb?-ULajBi0 z=-*zacu|j1uD`rYS)|%@vAN6yiK0>7T--jpnQ%B7if_b>BSzZUt5q6^4v19Bn9m}~ z=aC{VCQ|CY;}uhp;#mzEr5BUFU>Wes1Oubgwnsh5UYK#w0OE=XdC85I&sKO~!Ic`9 z&(2&pU7nq}Ec&fFbH=x+dD^qwHg~vDx*URo zcZR>2csO)yT{-q*6m(tT;IHR8%I^9TNw1`F^!`VWGADi--qBTI`6WLLS%3a^SwTPS zJUu6`jbs3>&8cOaUVAqU_<{0z`H=iz3d6ssvoSD_WF9gm8kULIDXH0O0*S&gfuMRZ zn^$!(B^@F-UCc(hX)ZOPJE&bN{u`p0>t)%_kRG7Z@YQ` literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..832962997778362bde56ddac887de7b4c1dd9a31 GIT binary patch literal 2075 zcmZuyUu+ab7@ys}-MhWs6WT>o8sm#OX%kF+&~J9TJp|^Goo~MR z{?7bfGpo55VHJ$?>4t}4!8|mHFC^}To4LwCmH2bUy;vQ=DKZ)vF8M29mPXl}? zj*XSqZ0Z6y&f@o~Cc$NFyGoV8Lvc%3IdkHSGB$QVnPPBKD#R%QIC9CP0^=-ptHh>C zMR!Yz>nODn#+G7EE3{fIkU}>7PDA!w5b5+n_bZsXrX2uS zF`$m3>yY|UWiMR_q09=xhUw~47FMPmqAav2&sFMB(Ja{JT&HYh0r%U2BDAdtetQ|a zx}m#zQ@3zxB4EpAQ(IB@Qe_Gk^(w_d>tV}NA%zsf!Bhc?DJ6YA+z0a#kZED}N!_%t z5k`Be%)K<*;!Bn@GXv}s4LntyArjo1-$tubo9C&8Ec9E0lv-2}VRZ3DOo&5#`Na7m zt}uT4yhHsMJ9Ixb>zH;n?#FDsjQ#j#t%MPTB$%_b895mqOJK%f%6P_Z5XOe5)*LcN zD>_`6dhW#VspI)W!{^vjQXHOe46Gfub*oNIs^;dgJ+E5klv=5~CC47g9ehEhri+Kc zc@AC-s#eU3s+qQn2{@@v1(WbeQiIOau!^X^T&3=Jgf0JngLFfE4AJyY_*_7Z4wUL& zZpp61vJJjV?6{X`y_~v~TJAjXm3k+U|FvyswRP~uJ2y@)KYwgFHNGbB?a7N$Lqe^c zchmb;()(`A-%jWLLTNeE;8W?$YTw}9zLAx_k=4PG)%`CvMASdJhJ^n1E6GP97_IL? zsn*MfFCD%-erf#Lw$FQRw~Q{wM*m*li8^*aMDcXy-uAAmsVk`l&vhQT-?3}8qjOyr z+uGMsXjkS@FU!M{{nJQ+?Z%_@mSR1FQk@SG|5y)WU&rnwUixX!_R`5|@OX`TgQjPYgDf`k8)dzsU4M0@J8s{z!ajG|u$L zc2D#P-)A`ZW|L$G#PtR064C(@VUK$VlpZEAv=Al%WCD6FB*9ei6h_i)+D~fQbQS21 zHI1-0&5tuk1KJ6DSN&eN_?!m#FdPEcy2(n7@q>n`0xb6jW)VJeRoAp=uE~Rt81f8u zPlbF*Xc~ho^Q`pgj*z>(5C3 z9lh}zI(c92xw!ML+_NJ0Tsv}G9=rhf*ux!KO{N Generator[None, None, None]: + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values: dict[str, object | str] = {} + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_build_tracker() -> Generator[BuildTracker, None, None]: + root = os.environ.get("PIP_BUILD_TRACKER") + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context(TempDirectory(kind="build-tracker")).path + ctx.enter_context(update_env_context_manager(PIP_BUILD_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with BuildTracker(root) as tracker: + yield tracker + + +class TrackerId(str): + """Uniquely identifying string provided to the build tracker.""" + + +class BuildTracker: + """Ensure that an sdist cannot request itself as a setup requirement. + + When an sdist is prepared, it identifies its setup requirements in the + context of ``BuildTracker.track()``. If a requirement shows up recursively, this + raises an exception. + + This stops fork bombs embedded in malicious packages.""" + + def __init__(self, root: str) -> None: + self._root = root + self._entries: dict[TrackerId, InstallRequirement] = {} + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> BuildTracker: + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type: type[BaseException] | None, + exc_val: BaseException | None, + exc_tb: TracebackType | None, + ) -> None: + self.cleanup() + + def _entry_path(self, key: TrackerId) -> str: + hashed = hashlib.sha224(key.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement, key: TrackerId) -> None: + """Add an InstallRequirement to build tracking.""" + + # Get the file to write information about this requirement. + entry_path = self._entry_path(key) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = f"{req.link} is already being built: {contents}" + raise LookupError(message) + + # If we're here, req should really not be building already. + assert key not in self._entries + + # Start tracking this requirement. + with open(entry_path, "w", encoding="utf-8") as fp: + fp.write(str(req)) + self._entries[key] = req + + logger.debug("Added %s to build tracker %r", req, self._root) + + def remove(self, req: InstallRequirement, key: TrackerId) -> None: + """Remove an InstallRequirement from build tracking.""" + + # Delete the created file and the corresponding entry. + os.unlink(self._entry_path(key)) + del self._entries[key] + + logger.debug("Removed %s from build tracker %r", req, self._root) + + def cleanup(self) -> None: + for key, req in list(self._entries.items()): + self.remove(req, key) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement, key: str) -> Generator[None, None, None]: + """Ensure that `key` cannot install itself as a setup requirement. + + :raises LookupError: If `key` was already provided in a parent invocation of + the context introduced by this method.""" + tracker_id = TrackerId(key) + self.add(req, tracker_id) + yield + self.remove(req, tracker_id) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py new file mode 100644 index 0000000..a546809 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py @@ -0,0 +1,38 @@ +"""Metadata generation logic for source distributions.""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing metadata (pyproject.toml)") + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 0000000..27ecd7d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""Metadata generation logic for source distributions.""" + +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_editable_metadata( + build_env: BuildEnvironment, backend: BuildBackendHookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 660. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that BuildBackendHookCaller implements a fallback for + # prepare_metadata_for_build_wheel/editable, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message( + "Preparing editable metadata (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_editable(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + assert distinfo_dir is not None + return os.path.join(metadata_dir, distinfo_dir) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..8595e45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,38 @@ +from __future__ import annotations + +import logging +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + wheel_directory: str, +) -> str | None: + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", wheel_directory) + + runner = runner_with_spinner_message( + f"Building wheel for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + wheel_directory=wheel_directory, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error("Failed building wheel for %s", name) + return None + return os.path.join(wheel_directory, wheel_name) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 0000000..f00d9b2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,47 @@ +from __future__ import annotations + +import logging +import os + +from pip._vendor.pyproject_hooks import BuildBackendHookCaller, HookMissing + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: BuildBackendHookCaller, + metadata_directory: str, + wheel_directory: str, +) -> str | None: + """Build one InstallRequirement using the PEP 660 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", wheel_directory) + + runner = runner_with_spinner_message( + f"Building editable for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + wheel_name = backend.build_editable( + wheel_directory=wheel_directory, + metadata_directory=metadata_directory, + ) + except HookMissing as e: + logger.error( + "Cannot build editable %s because the build " + "backend does not have the %s hook", + name, + e, + ) + return None + except Exception: + logger.error("Failed building editable for %s", name) + return None + return os.path.join(wheel_directory, wheel_name) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..2d71fa5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,175 @@ +"""Validation of dependencies of packages""" + +from __future__ import annotations + +import logging +from collections.abc import Generator, Iterable +from contextlib import suppress +from email.parser import Parser +from functools import reduce +from typing import ( + Callable, + NamedTuple, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.tags import Tag, parse_tag +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import BaseDistribution +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: Version + dependencies: list[Requirement] + + +# Shorthands +PackageSet = dict[NormalizedName, PackageDetails] +Missing = tuple[NormalizedName, Requirement] +Conflicting = tuple[NormalizedName, Version, Requirement] + +MissingDict = dict[NormalizedName, list[Missing]] +ConflictingDict = dict[NormalizedName, list[Conflicting]] +CheckResult = tuple[MissingDict, ConflictingDict] +ConflictDetails = tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing dependencies of %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set( + package_set: PackageSet, should_ignore: Callable[[str], bool] | None = None +) -> CheckResult: + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps: set[Missing] = set() + conflicting_deps: set[Conflicting] = set() + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate({"extra": ""}) + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install: list[InstallRequirement]) -> ConflictDetails: + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ), + ) + + +def check_unsupported( + packages: Iterable[BaseDistribution], + supported_tags: Iterable[Tag], +) -> Generator[BaseDistribution, None, None]: + for p in packages: + with suppress(FileNotFoundError): + wheel_file = p.read_text("WHEEL") + wheel_tags: frozenset[Tag] = reduce( + frozenset.union, + map(parse_tag, Parser().parsestr(wheel_file).get_all("Tag", [])), + frozenset(), + ) + if wheel_tags.isdisjoint(supported_tags): + yield p + + +def _simulate_installation_of( + to_install: list[InstallRequirement], package_set: PackageSet +) -> set[NormalizedName]: + """Computes the version of packages after installing to_install.""" + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: set[NormalizedName], package_set: PackageSet +) -> set[NormalizedName]: + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..486a833 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,259 @@ +from __future__ import annotations + +import collections +import logging +import os +from collections.abc import Container, Generator, Iterable +from dataclasses import dataclass, field +from typing import NamedTuple + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import InvalidVersion + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: str + comments: list[str] + + +def freeze( + requirement: list[str] | None = None, + local_only: bool = False, + user_only: bool = False, + paths: list[str] | None = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Generator[str, None, None]: + installations: dict[str, FrozenRequirement] = {} + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options: set[str] = set() + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files: dict[str, list[str]] = collections.defaultdict(list) + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if ( + not line.strip() + or line.strip().startswith("#") + or line.startswith( + ( + "-r", + "--requirement", + "-f", + "--find-links", + "-i", + "--index-url", + "--pre", + "--trusted-host", + "--process-dependency-links", + "--extra-index-url", + "--use-feature", + ) + ) + ): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith(("-e", "--editable")): + if line.startswith("-e"): + line = line[2:].strip() + else: + line = line[len("--editable") :].strip().lstrip("=") + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub("", line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, + line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name(line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub("", line).strip(), + line_req.name, + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning( + "Requirement %s included multiple times [%s]", + name, + ", ".join(sorted(set(files))), + ) + + yield ("## The following requirements were added by pip freeze:") + for installation in sorted(installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + try: + dist_version = dist.version + except InvalidVersion: + # legacy version + return f"{dist.raw_name}==={dist.raw_version}" + else: + return f"{dist.raw_name}=={dist_version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', + display, + location, + ) + return _EditableInfo( + requirement=location, + comments=[f"# Editable install with no version control ({display})"], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + except BadCommand: + logger.warning( + "cannot determine version of editable source in %s " + "(%s command not found in path)", + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +@dataclass(frozen=True) +class FrozenRequirement: + name: str + req: str + editable: bool + comments: Iterable[str] = field(default_factory=tuple) + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self.name) + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> FrozenRequirement: + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..2645a4a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1 @@ +"""For modules related to installing packages.""" diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1bcdb9635f293fa76771e921ae86c998fe42b429 GIT binary patch literal 275 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 None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> tuple[str, str]: + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") + return (digest, str(length)) + + +def csv_io_kwargs(mode: str) -> dict[str, Any]: + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {"mode": mode, "newline": "", "encoding": "utf-8"} + + +def fix_script(path: str) -> bool: + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, "rb") as script: + firstline = script.readline() + if not firstline.startswith(b"#!python"): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b"#!" + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, "wb") as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata: Message) -> bool: + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> tuple[dict[str, str], dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> str | None: + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir: dict[str, set[str]] = collections.defaultdict(set) + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(os.path.normpath(i)).rstrip(os.sep) + for i in os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append( + os.path.normcase(os.path.normpath(os.path.dirname(sys.executable))) + ) + warn_for: dict[str, set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(os.path.normpath(parent_dir)) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: list[str] = sorted(dir_scripts) + if len(sorted_scripts) == 1: + start_text = f"script {sorted_scripts[0]} is" + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + f"The {start_text} installed in '{parent_dir}' which is not on PATH." + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows( + outrows: Iterable[InstalledCSVRow], +) -> list[tuple[str, str, str]]: + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath, lib_dir: str) -> str: + return os.path.join(lib_dir, record_path) + + +def _fs_to_record_path(path: str, lib_dir: str) -> RecordPath: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == os.path.splitdrive(lib_dir)[0].lower(): + path = os.path.relpath(path, lib_dir) + + path = path.replace(os.path.sep, "/") + return cast("RecordPath", path) + + +def get_csv_rows_for_installed( + old_csv_rows: list[list[str]], + installed: dict[RecordPath, RecordPath], + changed: set[RecordPath], + generated: list[str], + lib_dir: str, +) -> list[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: list[InstalledCSVRow] = [] + for row in old_csv_rows: + if len(row) > 3: + logger.warning("RECORD line has more than three elements: %s", row) + old_record_path = cast("RecordPath", row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path, lib_dir)) + else: + digest = row[1] if len(row) > 1 else "" + length = row[2] if len(row) > 2 else "" + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + return installed_rows + [ + (installed_record_path, "", "") for installed_record_path in installed.values() + ] + + +def get_console_script_specs(console: dict[str, str]) -> list[str]: + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points. + # Currently, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. As a workaround, we + # override the versioned entry points in the wheel and generate the + # correct ones. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop("pip", None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("pip = " + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append(f"pip{sys.version_info[0]} = {pip_script}") + + scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r"pip(\d+(\.\d+)?)?$", k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop("easy_install", None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("easy_install = " + easy_install_script) + + scripts_to_generate.append( + f"easy_install-{get_major_minor_version()} = {easy_install_script}" + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r"easy_install(-\d+\.\d+)?$", k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap("{} = {}".format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__( + self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile + ) -> None: + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> None: + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + # optimization: the file is created by open(), + # skip the decompression when there is 0 bytes to decompress. + with open(self.dest_path, "wb") as dest: + if zipinfo.file_size > 0: + with self._zip_file.open(zipinfo) as f: + blocksize = min(zipinfo.file_size, 1024 * 1024) + shutil.copyfileobj(f, dest, blocksize) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file: File) -> None: + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: str) -> None: + super().__init__( + f"Invalid script entry point: {entry_point} - A callable " + "suffix is required. See https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information." + ) + + +def _raise_for_invalid_entrypoint(specification: str) -> None: + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + # Override distlib's default script template with one that + # doesn't import `re` module, allowing scripts to load faster. + script_template = textwrap.dedent( + """\ + import sys + from %(module)s import %(import_name)s + if __name__ == '__main__': + if sys.argv[0].endswith('.exe'): + sys.argv[0] = sys.argv[0][:-4] + sys.exit(%(func)s()) +""" + ) + + def make( + self, specification: str, options: dict[str, Any] | None = None + ) -> list[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( # noqa: C901, PLR0915 function is too long + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: DirectUrl | None = None, + requested: bool = False, +) -> None: + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed: dict[RecordPath, RecordPath] = {} + changed: set[RecordPath] = set() + generated: list[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> None: + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(newpath) + + def is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker( + zip_file: ZipFile, dest: str + ) -> Callable[[RecordPath], File]: + def make_root_scheme_file(record_path: RecordPath) -> File: + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker( + zip_file: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], File]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: RecordPath) -> File: + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + f"Unexpected file in {wheel_path}: {record_path!r}. .data directory" + " contents should be named like: '/'." + ) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + f"Unknown scheme key used in {wheel_path}: {scheme_key} " + f"(for file {record_path!r}). .data directory contents " + f"should be in subdirectories named with a valid scheme " + f"key ({valid_scheme_keys})" + ) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(list[RecordPath], wheel_zip.namelist()) + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) + + make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: RecordPath) -> bool: + parts = path.split("/", 2) + return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: File) -> bool: + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith(".exe"): + matchname = name[:-4] + elif name.lower().endswith("-script.py"): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return matchname in console or matchname in gui + + script_scheme_files: Iterator[File] = map( + make_data_scheme_file, script_scheme_paths + ) + script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + existing_parents = set() + for file in files: + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(file.dest_path) + if parent_dir not in existing_parents: + ensure_dir(parent_dir) + existing_parents.add(parent_dir) + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths() -> Generator[str, None, None]: + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith(".py"): + continue + yield full_installed_path + + def pyc_output_path(path: str) -> str: + """Return the path the pyc file would have been written to.""" + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with contextlib.redirect_stdout( + StreamWrapper.from_stream(sys.stdout) + ) as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore") + for path in pyc_source_file_paths(): + success = compileall.compile_file(path, force=True, quiet=True) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {""} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, "INSTALLER") + with _generate_file(installer_path) as installer_file: + installer_file.write(b"pip\n") + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, "REQUESTED") + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text("RECORD") + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir, + ) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, "RECORD") + + with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Generator[None, None, None]: + try: + yield + except InstallationError as e: + message = f"For req: {req_description}. {e.args[0]}" + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: DirectUrl | None = None, + requested: bool = False, +) -> None: + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py b/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..a72e0e4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,748 @@ +"""Prepares a distribution for installation""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False +from __future__ import annotations + +import mimetypes +import os +import shutil +from collections.abc import Iterable +from dataclasses import dataclass +from pathlib import Path +from typing import TYPE_CHECKING + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.build_env import BuildEnvironmentInstaller +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + MetadataInconsistent, + NetworkConnectionError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_metadata_distribution +from pip._internal.models.direct_url import ArchiveInfo +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + display_path, + hash_file, + hide_url, + redact_auth_from_requirement, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +if TYPE_CHECKING: + from pip._internal.cli.progress_bars import BarType + +logger = getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + build_tracker: BuildTracker, + build_env_installer: BuildEnvironmentInstaller, + build_isolation: bool, + check_build_deps: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + tracker_id = abstract_dist.build_tracker_id + if tracker_id is not None: + with build_tracker.track(req, tracker_id): + abstract_dist.prepare_distribution_metadata( + build_env_installer, build_isolation, check_build_deps + ) + return abstract_dist.get_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) + + +@dataclass +class File: + path: str + content_type: str | None = None + + def __post_init__(self) -> None: + if self.content_type is None: + # Try to guess the file's MIME type. If the system MIME tables + # can't be loaded, give up. + try: + self.content_type = mimetypes.guess_type(self.path)[0] + except OSError: + pass + + +def get_http_url( + link: Link, + download: Downloader, + download_dir: str | None = None, + hashes: Hashes | None = None, +) -> File: + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def get_file_url( + link: Link, download_dir: str | None = None, hashes: Hashes | None = None +) -> File: + """Get file and optionally check its hash.""" + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: str | None = None, + hashes: Hashes | None = None, +) -> File | None: + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location, verbosity=verbosity) + return None + + assert not link.is_existing_dir() + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir( + link: Link, + download_dir: str, + hashes: Hashes | None, + warn_on_hash_mismatch: bool = True, +) -> str | None: + """Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info("File was already downloaded %s", download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + if warn_on_hash_mismatch: + logger.warning( + "Previously-downloaded file %s has bad hash. Re-downloading.", + download_path, + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement""" + + def __init__( # noqa: PLR0913 (too many parameters) + self, + *, + build_dir: str, + download_dir: str | None, + src_dir: str, + build_isolation: bool, + build_isolation_installer: BuildEnvironmentInstaller, + check_build_deps: bool, + build_tracker: BuildTracker, + session: PipSession, + progress_bar: BarType, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + legacy_resolver: bool, + resume_retries: int, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.build_tracker = build_tracker + self._session = session + self._download = Downloader(session, progress_bar, resume_retries) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + self.build_env_installer = build_isolation_installer + + # Should check build dependencies? + self.check_build_deps = check_build_deps + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Are we using the legacy resolver? + self.legacy_resolver = legacy_resolver + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: InstallRequirement) -> None: + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.is_wheel_from_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = redact_auth_from_requirement(req.req) if req.req else str(req) + + # If we used req.req, inject requirement source if available (this + # would already be included if we used req directly) + if req.req and req.comes_from: + if isinstance(req.comes_from, str): + comes_from: str | None = req.comes_from + else: + comes_from = req.comes_from.from_path() + if comes_from: + information += f" (from {comes_from})" + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.is_wheel_from_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir( + self, req: InstallRequirement, parallel_builds: bool + ) -> None: + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir(): + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + req.ensure_pristine_source_checkout() + + def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if not req.is_direct and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_only( + self, + req: InstallRequirement, + ) -> BaseDistribution | None: + if self.legacy_resolver: + logger.debug( + "Metadata-only fetching is not used in the legacy resolver", + ) + return None + if self.require_hashes: + logger.debug( + "Metadata-only fetching is not used as hash checking is required", + ) + return None + # Try PEP 658 metadata first, then fall back to lazy wheel if unavailable. + return self._fetch_metadata_using_link_data_attr( + req + ) or self._fetch_metadata_using_lazy_wheel(req.link) + + def _fetch_metadata_using_link_data_attr( + self, + req: InstallRequirement, + ) -> BaseDistribution | None: + """Fetch metadata from the data-dist-info-metadata attribute, if possible.""" + # (1) Get the link to the metadata file, if provided by the backend. + metadata_link = req.link.metadata_link() + if metadata_link is None: + return None + assert req.req is not None + logger.verbose( + "Obtaining dependency information for %s from %s", + req.req, + metadata_link, + ) + # (2) Download the contents of the METADATA file, separate from the dist itself. + metadata_file = get_http_url( + metadata_link, + self._download, + hashes=metadata_link.as_hashes(), + ) + with open(metadata_file.path, "rb") as f: + metadata_contents = f.read() + # (3) Generate a dist just from those file contents. + metadata_dist = get_metadata_distribution( + metadata_contents, + req.link.filename, + req.req.name, + ) + # (4) Ensure the Name: field from the METADATA file matches the name from the + # install requirement. + # + # NB: raw_name will fall back to the name from the install requirement if + # the Name: field is not present, but it's noted in the raw_name docstring + # that that should NEVER happen anyway. + if canonicalize_name(metadata_dist.raw_name) != canonicalize_name(req.req.name): + raise MetadataInconsistent( + req, "Name", req.req.name, metadata_dist.raw_name + ) + return metadata_dist + + def _fetch_metadata_using_lazy_wheel( + self, + link: Link, + ) -> BaseDistribution | None: + """Fetch metadata using lazy wheel, if possible.""" + # --use-feature=fast-deps must be provided. + if not self.use_lazy_wheel: + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not point to a remote wheel", + link, + ) + return None + + wheel = Wheel(link.filename) + name = wheel.name + logger.info( + "Obtaining dependency information from %s %s", + name, + wheel.version, + ) + url = link.url.split("#", 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug("%s does not support range requests", url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> None: + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download: dict[Link, InstallRequirement] = {} + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._download.batch(links_to_fully_download.keys(), temp_dir) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + # Record the downloaded file path so wheel reqs can extract a Distribution + # in .get_dist(). + req.local_file_path = filepath + # Record that the file is downloaded so we don't do it again in + # _prepare_linked_requirement(). + self._downloaded[req.link.url] = filepath + + # If this is an sdist, we need to unpack it after downloading, but the + # .source_dir won't be set up until we are in _prepare_linked_requirement(). + # Add the downloaded archive to the install requirement to unpack after + # preparing the source dir. + if not req.is_wheel: + req.needs_unpacked_archive(Path(filepath)) + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """Prepare a requirement to be obtained from req.link.""" + assert req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir( + req.link, + self.download_dir, + hashes, + # When a locally built wheel has been found in cache, we don't warn + # about re-downloading when the already downloaded wheel hash does + # not match. This is because the hash must be checked against the + # original link, not the cached link. It that case the already + # downloaded file will be removed and re-fetched from cache (which + # implies a hash check against the cache entry's origin.json). + warn_on_hash_mismatch=not req.is_wheel_from_cache, + ) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path + else: + # The file is not available, attempt to fetch only metadata + metadata_dist = self._fetch_metadata_only(req) + if metadata_dist is not None: + req.needs_more_preparation = True + req.set_dist(metadata_dist) + # Ensure download_info is available even in dry-run mode + if req.download_info is None: + req.download_info = direct_url_from_link( + req.link, req.source_dir + ) + return metadata_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more( + self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> None: + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs: list[InstallRequirement] = [] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, + parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + assert req.link + link = req.link + + hashes = self._get_linked_req_hashes(req) + + if hashes and req.is_wheel_from_cache: + assert req.download_info is not None + assert link.is_wheel + assert link.is_file + # We need to verify hashes, and we have found the requirement in the cache + # of locally built wheels. + if ( + isinstance(req.download_info.info, ArchiveInfo) + and req.download_info.info.hashes + and hashes.has_one_of(req.download_info.info.hashes) + ): + # At this point we know the requirement was built from a hashable source + # artifact, and we verified that the cache entry's hash of the original + # artifact matches one of the hashes we expect. We don't verify hashes + # against the cached wheel, because the wheel is not the original. + hashes = None + else: + logger.warning( + "The hashes of the source archive found in cache entry " + "don't match, ignoring cached built wheel " + "and re-downloading source." + ) + req.link = req.cached_wheel_source_link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + + if link.is_existing_dir(): + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, + req.source_dir, + self._download, + self.verbosity, + self.download_dir, + hashes, + ) + except NetworkConnectionError as exc: + raise InstallationError( + f"Could not install requirement {req} because of HTTP " + f"error {exc} for URL {link}" + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # If download_info is set, we got it from the wheel cache. + if req.download_info is None: + # Editables don't go through this function (see + # prepare_editable_requirement). + assert not req.editable + req.download_info = direct_url_from_link(link, req.source_dir) + # Make sure we have a hash in download_info. If we got it as part of the + # URL, it will have been verified and we can rely on it. Otherwise we + # compute it from the downloaded file. + # FIXME: https://github.com/pypa/pip/issues/11943 + if ( + isinstance(req.download_info.info, ArchiveInfo) + and not req.download_info.info.hashes + and local_file + ): + hash = hash_file(local_file.path)[0].hexdigest() + # We populate info.hash for backward compatibility. + # This will automatically populate info.hashes. + req.download_info.info.hash = f"sha256={hash}" + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.build_env_installer, + self.build_isolation, + self.check_build_deps, + ) + return dist + + def save_linked_requirement(self, req: InstallRequirement) -> None: + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + "Not copying link to destination directory " + "since it is a directory: %s", + link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info("Saved %s", download_path) + + def prepare_editable_requirement( + self, + req: InstallRequirement, + ) -> BaseDistribution: + """Prepare an editable requirement.""" + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info("Obtaining %s", req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + f"The editable requirement {req} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash." + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + assert req.source_dir + req.download_info = direct_url_for_editable(req.unpacked_source_directory) + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.build_env_installer, + self.build_isolation, + self.check_build_deps, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """Prepare an already-installed requirement.""" + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + f"is set to {req.satisfied_by}" + ) + logger.info( + "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + "Since it is already installed, we are trusting this " + "package without checking its hash. To ensure a " + "completely repeatable environment, install into an " + "empty virtualenv." + ) + return InstalledDistribution(req).get_metadata_distribution() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py b/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..8c2f722 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,123 @@ +from __future__ import annotations + +import os +from collections import namedtuple +from typing import Any + +from pip._vendor.packaging.requirements import InvalidRequirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) +from pip._internal.utils.compat import tomllib +from pip._internal.utils.packaging import get_requirement + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: str) -> str: + return os.path.join(unpacked_source_directory, "pyproject.toml") + + +BuildSystemDetails = namedtuple( + "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] +) + + +def load_pyproject_toml( + pyproject_toml: str, setup_py: str, req_name: str +) -> BuildSystemDetails: + """Load the pyproject.toml file. + + Parameters: + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomllib.loads(f.read()) + build_system = pp_toml.get("build-system") + else: + build_system = None + + if build_system is None: + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + get_requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: list[str] = [] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend. So we + # make a note to check that this requirement is present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..5fc8752 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,103 @@ +from __future__ import annotations + +import collections +import logging +from collections.abc import Generator +from dataclasses import dataclass + +from pip._internal.cli.progress_bars import BarType, get_install_progress_renderer +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", + "InstallRequirement", + "parse_requirements", + "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class InstallationResult: + name: str + + +def _validate_requirements( + requirements: list[InstallRequirement], +) -> Generator[tuple[str, InstallRequirement], None, None]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: list[InstallRequirement], + root: str | None, + home: str | None, + prefix: str | None, + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, + progress_bar: BarType, +) -> list[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + "Installing collected packages: %s", + ", ".join(to_install.keys()), + ) + + installed = [] + + show_progress = logger.isEnabledFor(logging.INFO) and len(to_install) > 1 + + items = iter(to_install.values()) + if show_progress: + renderer = get_install_progress_renderer( + bar_type=progress_bar, total=len(to_install) + ) + items = renderer(items) + + with indent_log(): + for requirement in items: + req_name = requirement.name + assert req_name is not None + if requirement.should_reinstall: + logger.info("Attempting uninstall: %s", req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall(auto_confirm=True) + else: + uninstalled_pathset = None + + try: + requirement.install( + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e5d62eda17609ae37a96eb4c9d3f5c1ec29dfd3 GIT binary patch literal 4026 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e9be4da990b40aeeb469c280254cb46b2783a91 GIT binary patch literal 4027 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
    (m)9j4dJ~%tCN{pD z=z9r1DyS<3zA7mNzA7n2Emi*SIX-)Z$0}sb@Q8YA7Na|I zQeBqQ2Czhe9p(UBEOA@h4vh&>uy9#1V>bba7A}@UEUmEXn#Ki)xD|lR5O);gubGt9 z8Ox!VcuqEb69$gcjyD|F`Rm*b<15^CUbAB9pQ<=M2H{kA6|=odc*;8hHq}QK6$Db~ ze3D{aCd!Pdt>w27QcE>ngeW8sLz)$=aa0**uz?v21zc;P0w0w7sg~1Jfo9tX9r+bW z&cX&VcmuGIH4Pyz$&1LSkglQNglEb8-$m?H^RGYR)c-qlw*MHJHNy)FSJ}RJ^`Yr6 z+<)dyRqUN}%<{9_Kdoq7w5BRLXC2E;>p$l_b`RuD(7u&t3}*MXbW__>)23t-lya%2 z9d|tQwuRO&TwGaw+E-1wHS){TzSIfw=oq(u&Kcd?maDrTh!0+T zxanc&FQh+{9=?>Q+%s={Qn}$_S*j8zV(YImR%H91N+@|P9*NpHdMkC^hXJSlH2@1(Xs;iEZAmnL9Frzyu!bB#Z$j1P46XheK zQ#0P93{RVK2Gg&ya?BdBi!t+>e+lMe#Y+D^N>BNjb#C776ib)2GQD(3GeCP6*#g$J z257U?iT&ge_K;~Q*P5LXlfyWjleB(wczcV>z-+8@xx}9_;|bVQDP*h^vT+X2ik(6} zi`kK`_GgUr40N;SvVGkO3V?gtWcDwYR%Fb0qI5+~#!4X@SHB};r;vkltY2|b=qg`f z_OOcRNfqIVioP)8$+#Dd3q#*>4z#i+a3j*{ZL+&C%yLjb@^86F!$5{F{i{?Gbm~FW z@hk19=J)wRyUZL3f`TJd@fw#)H;7!^5X`}`IlEjkXD>!jBUi4TSl%{=(}^J+-r2dB zQ*W%8mJe2R*+Bye@*~BFQZpc0wnwa1E3}@*xOK>Ij-Z-HuN_dW9ON!|<|NNkVnj%LUel$#A*5>y#Zn`r&`w7 zx8=1(jACL8{GVW5lpmlXC;$L@N*n%J!>lDuLiny^Sy!s82NL-Drdiu#TkTJrCF%CA zrS|8N?a$2~d+ciYlq?QX!j7b^e%3a>K4UW4U*exs`tQDW=e5Q4smh+&qc|t1tF$Fq zO6F=Wr%JcYS!YeNp=EE?Liy|)30wUyzHoBB+Rr(j%9ge!I`)6$|Hz$a>ra)QPF#2~ z;d=2`86zb=RY*nrvAN>FX71z7_Jcm-$Gg1;oyJd`W`to-%S1g*$islhRHnDZS0)PjbL3=(R+qE5VJ{UWk7zo@hXCf}=Y~>qL#7jkb2+0aq~;tkrZ^$| z%0D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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e3f045b0b96da00fc8ab8a7e94f12036a098864 GIT binary patch literal 5430 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21ef724e620f18a08e84bcf7e571b27938bdfbca GIT binary patch literal 31762 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 tuple[str, str | None]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1).rstrip() + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: str | None) -> set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def _set_requirement_extras(req: Requirement, new_extras: set[str]) -> Requirement: + """ + Returns a new requirement based on the given one, with the supplied extras. If the + given requirement already has extras those are replaced (or dropped if no new extras + are given). + """ + match: re.Match[str] | None = re.fullmatch( + # see https://peps.python.org/pep-0508/#complete-grammar + r"([\w\t .-]+)(\[[^\]]*\])?(.*)", + str(req), + flags=re.ASCII, + ) + # ireq.req is a valid requirement so the regex should always match + assert ( + match is not None + ), f"regex match on requirement {req} failed, this should never happen" + pre: str | None = match.group(1) + post: str | None = match.group(3) + assert ( + pre is not None and post is not None + ), f"regex group selection for requirement {req} failed, this should never happen" + extras: str = "[{}]".format(",".join(sorted(new_extras)) if new_extras else "") + return get_requirement(f"{pre}{extras}{post}") + + +def _parse_direct_url_editable(editable_req: str) -> tuple[str | None, str, set[str]]: + try: + req = Requirement(editable_req) + except InvalidRequirement: + pass + else: + if req.url: + # Join the marker back into the name part. This will be parsed out + # later into a Requirement again. + if req.marker: + name = f"{req.name} ; {req.marker}" + else: + name = req.name + return (name, req.url, req.extras) + + raise ValueError + + +def _parse_pip_syntax_editable(editable_req: str) -> tuple[str | None, str, set[str]]: + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + return Link(url).egg_fragment, url, set() + + +def parse_editable(editable_req: str) -> tuple[str | None, str, set[str]]: + """Parses an editable requirement into: + - a requirement name with environment markers + - an URL + - extras + Accepted requirements: + - svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + - local_path[some_extra] + - Foobar[extra] @ svn+http://blahblah@rev#subdirectory=subdir ; markers + """ + try: + package_name, url, extras = _parse_direct_url_editable(editable_req) + except ValueError: + package_name, url, extras = _parse_pip_syntax_editable(editable_req) + + link = Link(url) + + if not link.is_vcs and not link.url.startswith("file:"): + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + # The project name can be inferred from local file URIs easily. + if not package_name and not link.url.startswith("file:"): + raise InstallationError( + f"Could not detect requirement name for '{editable_req}', " + "please specify one with your_package_name @ URL" + ) + return package_name, url, extras + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + get_requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +@dataclass(frozen=True) +class RequirementParts: + requirement: Requirement | None + link: Link | None + markers: Marker | None + extras: set[str] + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Requirement | None = get_requirement(name) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {name!r}: {exc}") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: InstallRequirement | str | None = None, + *, + isolated: bool = False, + hash_options: dict[str, list[str]] | None = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, + config_settings: dict[str, str | list[str]] | None = None, +) -> InstallRequirement: + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + isolated=isolated, + hash_options=hash_options, + config_settings=config_settings, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> str | None: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: str | None) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + return get_requirement(req_as_string) + except InvalidRequirement as exc: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}: {exc}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + + if req_as_string is not None: + req: Requirement | None = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: str | InstallRequirement | None = None, + *, + isolated: bool = False, + hash_options: dict[str, list[str]] | None = None, + constraint: bool = False, + line_source: str | None = None, + user_supplied: bool = False, + config_settings: dict[str, str | list[str]] | None = None, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + isolated=isolated, + hash_options=hash_options, + config_settings=config_settings, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: InstallRequirement | None = None, + isolated: bool = False, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {req_string!r}: {exc}") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + f"{comes_from.name} depends on {req} " + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + user_supplied: bool = False, + config_settings: dict[str, str | list[str]] | None = None, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + config_settings=config_settings, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + isolated=isolated, + hash_options=( + parsed_req.options.get("hashes", {}) if parsed_req.options else {} + ), + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + config_settings=config_settings, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + isolated=ireq.isolated, + hash_options=ireq.hash_options, + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + ) + + +def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: + """ + Creates a new InstallationRequirement using the given template but without + any extras. Sets the original requirement as the new one's parent + (comes_from). + """ + return InstallRequirement( + req=( + _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None + ), + comes_from=ireq, + editable=ireq.editable, + link=ireq.link, + markers=ireq.markers, + isolated=ireq.isolated, + hash_options=ireq.hash_options, + constraint=ireq.constraint, + extras=[], + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + permit_editable_wheels=ireq.permit_editable_wheels, + ) + + +def install_req_extend_extras( + ireq: InstallRequirement, + extras: Collection[str], +) -> InstallRequirement: + """ + Returns a copy of an installation requirement with some additional extras. + Makes a shallow copy of the ireq object. + """ + result = copy.copy(ireq) + result.extras = {*ireq.extras, *extras} + result.req = ( + _set_requirement_extras(ireq.req, result.extras) + if ireq.req is not None + else None + ) + return result diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py new file mode 100644 index 0000000..396ac1b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py @@ -0,0 +1,75 @@ +from collections.abc import Iterable, Iterator +from typing import Any + +from pip._vendor.dependency_groups import DependencyGroupResolver + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.compat import tomllib + + +def parse_dependency_groups(groups: list[tuple[str, str]]) -> list[str]: + """ + Parse dependency groups data as provided via the CLI, in a `[path:]group` syntax. + + Raises InstallationErrors if anything goes wrong. + """ + resolvers = _build_resolvers(path for (path, _) in groups) + return list(_resolve_all_groups(resolvers, groups)) + + +def _resolve_all_groups( + resolvers: dict[str, DependencyGroupResolver], groups: list[tuple[str, str]] +) -> Iterator[str]: + """ + Run all resolution, converting any error from `DependencyGroupResolver` into + an InstallationError. + """ + for path, groupname in groups: + resolver = resolvers[path] + try: + yield from (str(req) for req in resolver.resolve(groupname)) + except (ValueError, TypeError, LookupError) as e: + raise InstallationError( + f"[dependency-groups] resolution failed for '{groupname}' " + f"from '{path}': {e}" + ) from e + + +def _build_resolvers(paths: Iterable[str]) -> dict[str, Any]: + resolvers = {} + for path in paths: + if path in resolvers: + continue + + pyproject = _load_pyproject(path) + if "dependency-groups" not in pyproject: + raise InstallationError( + f"[dependency-groups] table was missing from '{path}'. " + "Cannot resolve '--group' option." + ) + raw_dependency_groups = pyproject["dependency-groups"] + if not isinstance(raw_dependency_groups, dict): + raise InstallationError( + f"[dependency-groups] table was malformed in {path}. " + "Cannot resolve '--group' option." + ) + + resolvers[path] = DependencyGroupResolver(raw_dependency_groups) + return resolvers + + +def _load_pyproject(path: str) -> dict[str, Any]: + """ + This helper loads a pyproject.toml as TOML. + + It raises an InstallationError if the operation fails. + """ + try: + with open(path, "rb") as fp: + return tomllib.load(fp) + except FileNotFoundError: + raise InstallationError(f"{path} not found. Cannot resolve '--group' option.") + except tomllib.TOMLDecodeError as e: + raise InstallationError(f"Error parsing {path}: {e}") from e + except OSError as e: + raise InstallationError(f"Error reading {path}: {e}") from e diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..a4f54b4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,619 @@ +""" +Requirements file parsing +""" + +from __future__ import annotations + +import codecs +import locale +import logging +import optparse +import os +import re +import shlex +import sys +import urllib.parse +from collections.abc import Generator, Iterable +from dataclasses import dataclass +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + NoReturn, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[tuple[int, str]] + +LineParser = Callable[[str], tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: list[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: list[Callable[..., optparse.Option]] = [ + cmdoptions.hash, + cmdoptions.config_settings, +] + +SUPPORTED_OPTIONS_EDITABLE_REQ: list[Callable[..., optparse.Option]] = [ + cmdoptions.config_settings, +] + + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] +SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ + str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ +] + +# order of BOMS is important: codecs.BOM_UTF16_LE is a prefix of codecs.BOM_UTF32_LE +# so data.startswith(BOM_UTF16_LE) would be true for UTF32_LE data +BOMS: list[tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), +] + +PEP263_ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") +DEFAULT_ENCODING = "utf-8" + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class ParsedRequirement: + # TODO: replace this with slots=True when dropping Python 3.9 support. + __slots__ = ( + "requirement", + "is_editable", + "comes_from", + "constraint", + "options", + "line_source", + ) + + requirement: str + is_editable: bool + comes_from: str + constraint: bool + options: dict[str, Any] | None + line_source: str | None + + +@dataclass(frozen=True) +class ParsedLine: + __slots__ = ("filename", "lineno", "args", "opts", "constraint") + + filename: str + lineno: int + args: str + opts: Values + constraint: bool + + @property + def is_editable(self) -> bool: + return bool(self.opts.editables) + + @property + def requirement(self) -> str | None: + if self.args: + return self.args + elif self.is_editable: + # We don't support multiple -e on one line + return self.opts.editables[0] + return None + + +def parse_requirements( + filename: str, + session: PipSession, + finder: PackageFinder | None = None, + options: optparse.Values | None = None, + constraint: bool = False, +) -> Generator[ParsedRequirement, None, None]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: optparse.Values | None = None, +) -> ParsedRequirement: + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.requirement is not None + + # get the options that apply to requirements + if line.is_editable: + supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST + else: + supported_dest = SUPPORTED_OPTIONS_REQ_DEST + req_options = {} + for dest in supported_dest: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: PackageFinder | None = None, + options: optparse.Values | None = None, + session: PipSession | None = None, +) -> None: + if opts.hashes: + logger.warning( + "%s line %s has --hash but no requirement, and will be ignored.", + filename, + lineno, + ) + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + no_index = finder.search_scope.no_index + if opts.no_index is True: + no_index = True + index_urls = [] + if opts.index_url and not no_index: + index_urls = [opts.index_url] + if opts.extra_index_urls and not no_index: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + no_index=no_index, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: optparse.Values | None = None, + finder: PackageFinder | None = None, + session: PipSession | None = None, +) -> ParsedRequirement | None: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.requirement is not None: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: PipSession, + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse( + filename, constraint, [{os.path.abspath(filename): None}] + ) + + def _parse_and_recurse( + self, + filename: str, + constraint: bool, + parsed_files_stack: list[dict[str, str | None]], + ) -> Generator[ParsedLine, None, None]: + for line in self._parse_file(filename, constraint): + if line.requirement is None and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + # and then abspath so that we can identify recursive references + req_path = os.path.abspath( + os.path.join( + os.path.dirname(filename), + req_path, + ) + ) + parsed_files = parsed_files_stack[0] + if req_path in parsed_files: + initial_file = parsed_files[req_path] + tail = ( + f" and again in {initial_file}" + if initial_file is not None + else "" + ) + raise RequirementsFileParseError( + f"{req_path} recursively references itself in {filename}{tail}" + ) + # Keeping a track where was each file first included in + new_parsed_files = parsed_files.copy() + new_parsed_files[req_path] = filename + yield from self._parse_and_recurse( + req_path, nested_constraint, [new_parsed_files, *parsed_files_stack] + ) + else: + yield line + + def _parse_file( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: PackageFinder | None) -> LineParser: + def parse_line(line: str) -> tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + try: + options = shlex.split(options_str) + except ValueError as e: + raise OptionParsingError(f"Could not split options: {options_str}") from e + + opts, _ = parser.parse_args(options, defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith(("-", "--")): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> NoReturn: + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: list[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: PipSession) -> tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = urllib.parse.urlsplit(url).scheme + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + # Delay importing heavy network modules until absolutely necessary. + from pip._internal.network.utils import raise_for_status + + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + raw_content = f.read() + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + + content = _decode_req_file(raw_content, url) + + return url, content + + +def _decode_req_file(data: bytes, url: str) -> str: + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#": + result = PEP263_ENCODING_RE.search(line) + if result is not None: + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + + try: + return data.decode(DEFAULT_ENCODING) + except UnicodeDecodeError: + locale_encoding = locale.getpreferredencoding(False) or sys.getdefaultencoding() + logging.warning( + "unable to decode data from %s with default encoding %s, " + "falling back to encoding from locale: %s. " + "If this is intentional you should specify the encoding with a " + "PEP-263 style comment, e.g. '# -*- coding: %s -*-'", + url, + DEFAULT_ENCODING, + locale_encoding, + locale_encoding, + ) + return data.decode(locale_encoding) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..bd4fb07 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,828 @@ +from __future__ import annotations + +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from collections.abc import Collection, Iterable +from optparse import Values +from pathlib import Path +from typing import Any + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, PreviousBuildDirError +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, + get_wheel_distribution, +) +from pip._internal.metadata.base import FilesystemWheel +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_metadata +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ConfiguredBuildBackendHookCaller, + ask_path_exists, + backup_dir, + display_path, + hide_url, + is_installable_dir, + redact_auth_from_requirement, + redact_auth_from_url, +) +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.unpacking import unpack_file +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Requirement | None, + comes_from: str | InstallRequirement | None, + editable: bool = False, + link: Link | None = None, + markers: Marker | None = None, + isolated: bool = False, + *, + hash_options: dict[str, list[str]] | None = None, + config_settings: dict[str, str | list[str]] | None = None, + constraint: bool = False, + extras: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.permit_editable_wheels = permit_editable_wheels + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: str | None = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) + + # original_link is the direct URL that was provided by the user for the + # requirement, either directly or via a constraints file. + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + + # When this InstallRequirement is a wheel obtained from the cache of locally + # built wheels, this is the source link corresponding to the cache entry, which + # was used to download and build the cached wheel. + self.cached_wheel_source_link: Link | None = None + + # Information about the location of the artifact that was downloaded . This + # property is guaranteed to be set in resolver results. + self.download_info: DirectUrl | None = None + + # Path to any downloaded or already-existing package. + self.local_file_path: str | None = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = req.extras + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the Distribution object if this requirement is already installed. + self.satisfied_by: BaseDistribution | None = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: TempDirectory | None = None + # Set to True after successful installation + self.install_succeeded: bool | None = None + # Supplied options + self.hash_options = hash_options if hash_options else {} + self.config_settings = config_settings + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: str | None = None + + # The cached metadata distribution that this requirement represents. + # See get_dist / set_dist. + self._distribution: BaseDistribution | None = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: list[str] | None = None + + # Build requirements that we will check are available + self.requirements_to_check: list[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: BuildBackendHookCaller | None = None + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + # This requirement needs to be unpacked before it can be installed. + self._archive_source: Path | None = None + + def __str__(self) -> str: + if self.req: + s = redact_auth_from_requirement(self.req) + if self.link: + s += f" from {redact_auth_from_url(self.link.url)}" + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = "" + if self.satisfied_by is not None: + if self.satisfied_by.location is not None: + location = display_path(self.satisfied_by.location) + else: + location = "" + s += f" in {location}" + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: str | None = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f" (from {comes_from})" + return s + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__} object: " + f"{str(self)} editable={self.editable!r}>" + ) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging.""" + attributes = vars(self) + names = sorted(attributes) + + state = (f"{attr}={attributes[attr]!r}" for attr in sorted(names)) + return "<{name} object: {{{state}}}>".format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> str | None: + if self.req is None: + return None + return self.req.name + + @functools.cached_property + def supports_pyproject_editable(self) -> bool: + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @property + def specifier(self) -> SpecifierSet: + assert self.req is not None + return self.req.specifier + + @property + def is_direct(self) -> bool: + """Whether this requirement was specified as a direct URL.""" + return self.original_link is not None + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + assert self.req is not None + specifiers = self.req.specifier + return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} + + def match_markers(self, extras_requested: Iterable[str] | None = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ("",) + if self.markers is not None: + return any( + self.markers.evaluate({"extra": extra}) for extra in extras_requested + ) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + if trust_internet: + link = self.link + elif self.is_direct and self.user_supplied: + link = self.original_link + else: + link = None + if link and link.hash: + assert link.hash_name is not None + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> str | None: + """Format a nice indicator to show where this "comes from" """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + comes_from: str | None + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += "->" + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.req.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug("Creating directory %s", build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata.""" + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = get_requirement( + "".join( + [ + self.metadata["Name"], + op, + self.metadata["Version"], + ] + ) + ) + + def warn_on_mismatching_name(self) -> None: + assert self.req is not None + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + "Generating metadata for package %s " + "produced metadata for project name %s. Fix your " + "#egg=%s fragments.", + self.name, + metadata_name, + self.name, + ) + self.req = get_requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {existing_dist.location}" + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + @property + def is_wheel_from_cache(self) -> bool: + # When True, it means that this InstallRequirement is a local wheel file in the + # cache of locally built wheels. + return self.cached_wheel_source_link is not None + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return os.path.join( + self.source_dir, self.link and self.link.subdirectory_fragment or "" + ) + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, "setup.py") + + return setup_py + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. + """ + pyproject_toml_data = load_pyproject_toml( + self.pyproject_toml_path, self.setup_py_path, str(self) + ) + assert pyproject_toml_data + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = ConfiguredBuildBackendHookCaller( + self, + self.unpacked_source_directory, + backend, + backend_path=backend_path, + ) + + def editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable has a build backend that supports PEP 660. + """ + if self.editable and not self.supports_pyproject_editable: + raise InstallationError( + f"Project {self} uses a build backend " + f"that is missing the 'build_editable' hook, so " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir, f"No source dir for {self}" + details = self.name or f"from {self.link}" + + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, "_metadata"): + self._metadata = self.get_dist().metadata + + return self._metadata + + def set_dist(self, distribution: BaseDistribution) -> None: + self._distribution = distribution + + def get_dist(self) -> BaseDistribution: + if self._distribution is not None: + return self._distribution + elif self.metadata_directory: + return get_directory_distribution(self.metadata_directory) + elif self.local_file_path and self.is_wheel: + assert self.req is not None + return get_wheel_distribution( + FilesystemWheel(self.local_file_path), + canonicalize_name(self.req.name), + ) + raise AssertionError( + f"InstallRequirement {self} has no metadata directory and no wheel: " + f"can't make a distribution." + ) + + def assert_source_matches_version(self) -> None: + assert self.source_dir, f"No source dir for {self}" + version = self.metadata["version"] + if self.req and self.req.specifier and version not in self.req.specifier: + logger.warning( + "Requested %s, but installing version %s", + self, + version, + ) + else: + logger.debug( + "Source in %s has version %s, which satisfies requirement %s", + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + def needs_unpacked_archive(self, archive_source: Path) -> None: + assert self._archive_source is None + self._archive_source = archive_source + + def ensure_pristine_source_checkout(self) -> None: + """Ensure the source directory has not yet been built in.""" + assert self.source_dir is not None + if self._archive_source is not None: + unpack_file(str(self._archive_source), self.source_dir) + elif is_installable_dir(self.source_dir): + # If a checkout exists, it's unwise to keep going. + # version inconsistencies are logged later, but do not fail + # the installation. + raise PreviousBuildDirError( + f"pip can't proceed with requirements '{self}' due to a " + f"pre-existing build directory ({self.source_dir}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again." + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == "file": + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> UninstallPathSet | None: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_default_environment().get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info("Found existing installation: %s", dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith( + prefix + os.path.sep + ), f"name {name!r} doesn't start with prefix {prefix!r}" + name = name[len(prefix) + 1 :] + name = name.replace(os.path.sep, "/") + return name + + assert self.req is not None + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.req.name + "/" + name + + def archive(self, build_dir: str | None) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + f"The file {display_path(archive_path)} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ", + ("i", "w", "b", "a"), + ) + if response == "i": + create_archive = False + elif response == "w": + logger.warning("Deleting %s", display_path(archive_path)) + os.remove(archive_path) + elif response == "b": + dest_file = backup_dir(archive_path) + logger.warning( + "Backing up %s to %s", + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == "a": + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, + "w", + zipfile.ZIP_DEFLATED, + allowZip64=True, + ) + with zip_output: + dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, + parentdir=dirpath, + rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + "/") + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, "") + for filename in filenames: + file_arcname = self._get_archive_name( + filename, + parentdir=dirpath, + rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info("Saved %s", display_path(archive_path)) + + def install( + self, + root: str | None = None, + home: str | None = None, + prefix: str | None = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True, + ) -> None: + assert self.req is not None + scheme = get_scheme( + self.req.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + assert self.is_wheel + assert self.local_file_path + + install_wheel( + self.req.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=self.download_info if self.is_direct else None, + requested=self.user_supplied, + ) + self.install_succeeded = True + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem + + +def _has_option(options: Values, reqs: list[InstallRequirement], option: str) -> bool: + if getattr(options, option, None): + return True + for req in reqs: + if getattr(req, option, None): + return True + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..3451b24 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,81 @@ +import logging +from collections import OrderedDict + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class RequirementSet: + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet.""" + + self.requirements: dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: list[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return " ".join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = "<{classname} object; {count} requirement(s): {reqs}>" + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=", ".join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements + and not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> list[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) + + @property + def requirements_to_install(self) -> list[InstallRequirement]: + """Return the list of requirements that need to be installed. + + TODO remove this property together with the legacy resolver, since the new + resolver only returns requirements that need to be installed. + """ + return [ + install_req + for install_req in self.all_requirements + if not install_req.constraint and not install_req.satisfied_by + ] diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..3f3dde2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,639 @@ +from __future__ import annotations + +import functools +import os +import sys +import sysconfig +from collections.abc import Generator, Iterable +from importlib.util import cache_from_source +from typing import Any, Callable + +from pip._internal.exceptions import LegacyDistutilsInstall, UninstallMissingRecord +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = getLogger(__name__) + + +def _script_names( + bin_dir: str, script_name: str, is_gui: bool +) -> Generator[str, None, None]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +def _unique( + fn: Callable[..., Generator[Any, None, None]], +) -> Callable[..., Generator[Any, None, None]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Generator[Any, None, None]: + seen: set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + + return unique + + +@_unique +def uninstallation_paths(dist: BaseDistribution) -> Generator[str, None, None]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises an error, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + raise UninstallMissingRecord(distribution=dist) + + for entry in entries: + path = os.path.join(location, entry) + yield path + if path.endswith(".py"): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + ".pyc") + yield path + path = os.path.join(dn, base + ".pyo") + yield path + + +def compact(paths: Iterable[str]) -> set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) + and path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) for w in wildcards): + # This directory has already been handled. + continue + + all_files: set[str] = set() + all_subdirs: set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) + all_files.update(norm_join(root, dirname, f) for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> tuple[set[str], set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + _normcased_files = set(map(os.path.normcase, files)) + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if ( + os.path.isfile(file_) + and os.path.normcase(file_) not in _normcased_files + ): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | {os.path.join(folder, "*") for folder in folders} + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: list[tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if path_is_dir and os.path.isdir(new_path): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for save_dir in self._save_dirs.values(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug("Replacing %s from %s", new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + + def __init__(self, dist: BaseDistribution) -> None: + self._paths: set[str] = set() + self._refuse: set[str] = set() + self._pth: dict[str, UninstallPthEntries] = {} + self._dist = dist + self._moved_paths = StashedUninstallPathSet() + # Create local cache of normalize_path results. Creating an UninstallPathSet + # can result in hundreds/thousands of redundant calls to normalize_path with + # the same args, which hurts performance. + self._normalize_path_cached = functools.lru_cache(normalize_path) + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + # aka is_local, but caching normalized sys.prefix + if not running_under_virtualenv(): + return True + return path.startswith(self._normalize_path_cached(sys.prefix)) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(self._normalize_path_cached(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self._paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == ".py": + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = self._normalize_path_cached(pth_file) + if self._permitted(pth_file): + if pth_file not in self._pth: + self._pth[pth_file] = UninstallPthEntries(pth_file) + self._pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self._paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self._paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self._dist.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_name}-{self._dist.raw_version}" + logger.info("Uninstalling %s:", dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self._paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose("Removing file or directory %s", path) + + for pth in self._pth.values(): + pth.remove() + + logger.info("Successfully uninstalled %s", dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation""" + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self._paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self._paths) + will_skip = set() + + _display("Would remove:", will_remove) + _display("Would not remove (might be manually added):", will_skip) + _display("Would not remove (outside of prefix):", self._refuse) + if verbose: + _display("Will actually move:", compress_for_rename(self._paths)) + + return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self._dist.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_name) + self._moved_paths.rollback() + for pth in self._pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> UninstallPathSet: + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location in { + p + for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + if p + }: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("top_level.txt").splitlines() + if p and p not in namespaces + ]: + path = os.path.join(dist_location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + raise LegacyDistutilsInstall(distribution=dist) + + elif dist.installed_as_egg: + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + # XXX We use normalized_dist_location because dist_location my contain + # a trailing / if the distribution is a zipped egg + # (which is not a directory). + paths_to_remove.add(normalized_dist_location) + easy_install_egg = os.path.split(normalized_dist_location)[1] + easy_install_pth = os.path.join( + os.path.dirname(normalized_dist_location), + "easy-install.pth", + ) + paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) + + elif dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + normalized_link_pointer = paths_to_remove._normalize_path_cached( + link_pointer + ) + assert os.path.samefile( + normalized_link_pointer, normalized_dist_location + ), ( + f"Egg-link {develop_egg_link} (to {link_pointer}) does not match " + f"installed location of {dist.raw_name} (at {dist_location})" + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join( + os.path.dirname(develop_egg_link), "easy-install.pth" + ) + paths_to_remove.add_pth(easy_install_pth, dist_location) + + else: + logger.debug( + "Not sure how to uninstall: %s - Check: %s", + dist, + dist_location, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iter_distutils_script_names(): + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Generator[str, None, None]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: set[str] = set() + self._saved_lines: list[bytes] | None = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace("\\", "/") + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose("Removing pth entries from %s:", self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning("Cannot remove entries from nonexistent file %s", self.file) + return + with open(self.file, "rb") as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b"\r\n" in line for line in lines): + endline = "\r\n" + else: + endline = "\n" + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose("Removing entry: %s", entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, "wb") as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error("Cannot roll back changes to %s, none were made", self.file) + return False + logger.debug("Rolling %s back to previous state", self.file) + with open(self.file, "wb") as fh: + fh.writelines(self._saved_lines) + return True diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63064352ddc62a2568a2f0a7271fe1ef0a5d6c1e GIT binary patch literal 209 zcmX@j%ge<81k%j^GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!D$p;_FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;O$Sly0&&(@HEdpxNFG?-W&nYd*%+J%02a0Bv#K-FuRQ}?y$<0qG a%}KQ@Vg)*Y5r~UHjE~HWjEqIhKo$Tq@;JKy literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..faa6f19fa90e0be5abeadbcfb796f9ec329b565c GIT binary patch literal 1180 zcma)5PiquO6tC*;>FF7h=o(E(Br>}(x_!vB|CT)%#3&--62)AWzBHZbm!wHecTZK# z$mFyvIrt6o8G;|h%LFf>Kvq~hc+2hxf){$`sS9htsmynC?_@rD57JuY;bXR+|PIr}hE8W)~Ir<+P> zL#C0P`pR7g-J%dD;*O2s3L5(iSjZC=S_ubxlvH9tC9%QXbTJ(#tR@w3(I2mFI*E&{ z*RT4XnYbG(cnT^PJ&>j*^IS&~I?BwnwxP8Xscuo^QbQ6w+XfKIxDs?%W-a?98`M-S z`NJ86eWp38QeKSppZtKY9dI+fmg|S@LX=fPa$m|^`nGWth)r3;&60+tC|0A<_$Y#B zx!h4j+yWJ>-(UW1_3kgr>pIqHYx!QDK(vZ2?5k7-%^qaEK%^T%(bwB~cB6UidZ1Db z%XoMv-oo=mS_Dy=X^?m*kW_M)h7fFE2bx9SR7^J~V7qAYGh6q$MywezGa$exIzPB#|g6-T5>%L-lYY~;C+ z^xWiGf?0%vQM58U=@CnC3O{uRVUHbKcIDF1+`{1E)x)`K$2NJ79+&z}ZFX2e|F}-% z?9!N=985J1Yd^lHr83nr RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> list[InstallRequirement]: + raise NotImplementedError() diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7b8ea65b1763ecdf81bb43cebfe4cf51120ac08 GIT binary patch literal 216 zcmX@j%ge<81k%j^GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!D%UU1FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;O$Sly0&&(@HEdpxNFG?-W&nYd*%+J%$Nli~ouGEhQN@kYC$LkeT h{^GF7%}*)KNwq6t1-gR~h>JmtkIamWj77{q76AOnJ7xd? literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9dacd45f8d1730c45c6f842037b02c7efe9990ab GIT binary patch literal 22540 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 Y1UCIhdzf)ddL6aPi@)XQ$;SNu0E{lx(f|Me literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 0000000..33a4fdc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,598 @@ +"""Dependency Resolution + +The dependency resolution in pip is performed as follows: + +for top-level requirements: + a. only one spec allowed per project, regardless of conflicts or not. + otherwise a "double requirement" exception is raised + b. they override sub-dependency requirements. +for sub-dependencies + a. "first found, wins" (where the order is breadth first) +""" + +from __future__ import annotations + +import logging +import sys +from collections import defaultdict +from collections.abc import Iterable +from itertools import chain +from typing import Optional + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.requirements import Requirement + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + InstallationError, + NoneMetadataError, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.utils import compatibility_tags +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import normalize_version_info +from pip._internal.utils.packaging import check_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = defaultdict[Optional[str], list[InstallRequirement]] + + +def _check_dist_requires_python( + dist: BaseDistribution, + version_info: tuple[int, int, int], + ignore_requires_python: bool = False, +) -> None: + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + try: + is_compatible = check_requires_python( + requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + f"Package {dist.raw_name!r} requires a different Python: " + f"{version} not in {requires_python!r}" + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: WheelCache | None, + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: tuple[int, ...] | None = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: list[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + self._add_requirement_to_set(requirement_set, req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: list[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _add_requirement_to_set( + self, + requirement_set: RequirementSet, + install_req: InstallRequirement, + parent_req_name: str | None = None, + extras_requested: Iterable[str] | None = None, + ) -> tuple[list[InstallRequirement], InstallRequirement | None]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, + install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if requirement_set.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + f"{wheel.filename} is not a supported wheel on this platform." + ) + + # This next bit is really a sanity check. + assert ( + not install_req.user_supplied or parent_req_name is None + ), "a user supplied req shouldn't have a parent" + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + requirement_set.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: InstallRequirement | None = requirement_set.get_requirement( + install_req.name + ) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None + and existing_req + and not existing_req.constraint + and existing_req.extras == install_req.extras + and existing_req.req + and install_req.req + and existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + f"Double requirement given: {install_req} " + f"(already in {existing_req}, name={install_req.name!r})" + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + requirement_set.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = install_req.link and not ( + existing_req.link and install_req.link.path == existing_req.link.path + ) + if does_not_satisfy_constraint: + raise InstallationError( + f"Could not satisfy constraints for '{install_req.name}': " + "installation from path or url cannot be " + "constrained to a version" + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple( + sorted(set(existing_req.extras) | set(install_req.extras)) + ) + logger.debug( + "Setting %s extras to: %s", + existing_req, + existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + assert req.satisfied_by is not None + if not self.use_user_site or req.satisfied_by.in_usersite: + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed(self, req_to_install: InstallRequirement) -> str | None: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Link | None: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + f"yanked version: {best_candidate}\n" + f"Reason for being yanked: {reason}" + ) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + + assert req.link is not None, "_find_requirement_link unexpectedly returned None" + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.cached_wheel_source_link = req.link + if cache_entry.origin is not None: + req.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + req.download_info = direct_url_from_link( + req.link, link_is_in_wheel_cache=cache_entry.persistent + ) + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> list[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: list[InstallRequirement] = [] + + def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + sub_install_req = self._make_install_req(str(subreq), req_to_install) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = self._add_requirement_to_set( + requirement_set, + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + assert req_to_install.name is not None + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + self._add_requirement_to_set( + requirement_set, req_to_install, parent_req_name=None + ) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> list[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..580d71a78f42ff1074de39ea9d0c922af9adc4b3 GIT binary patch literal 220 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d33ed74d252a2125b5edd18d8d550dbc2d622b4 GIT binary patch literal 29444 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 U1*PwU>D$%%j`VLB+HxQN4XDKIa{vGU literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2e97ea01b225d1af06a04aa07bf8473df0fd7b4 GIT binary patch literal 11650 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 IfD6}u0}a+QzW@LL literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b989889bc4ede5b23161adec40bb5dc70c1d407b GIT binary patch literal 5817 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 T`Fq0BkZ4_E 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2e32f4c0690b28c57425f8138efc6cef86bae69 GIT binary patch literal 12395 zcma)CX>c3ImF~fP5&!{S;Gq!@iI51=ltfuqWJ;ngOO|Cx@c~PQAupi5p+>m;I+t+jL2DkW8|Q@d5p=ErU-*?-Aa5u&m{CQ^l|IJK33aHNzI?N;r+ z*E0h^G?iLN?0M7E{rYwH>we#R-9PhsT?Bru=Kmef?I7g0_+tF58o@mHHbck_!V!)U zNScW;4ALgS6f@DMIcBC$OUy!_)|eHZX2F)W$LwiG%t6ar1ZUb6b5YtVxYM4PC+&@S z({-^rnrDMNU(8QwyAVj%$LcBV5Q6DYEJSIi(2#D7HB#CoG^Lwk&6IWvE$MJ9OlgnM znr@4=QQ9lCr#oUDl&%vtq}dotX`iq$-5Kjlcg4EsyI<%|_r!WA9S}C9H^(-odt<%y zy3f6FpB{(}Fod^DbdsY#Y39VZO^~n$2g0aP4Y^RAFC0x@L!Zq`qx6FF3&q=EPxK^&^iY4}RHOEP~ zHZBZ#yJk(1_TOWr2&1|anT)6;l$4l}Pen|s_uMO|562H3JACNG@l!`tOEMuV-)Gc7 zGLaE8sboS(&GGR}BF#t4s^?%r=Fjj`qNMPW8al(vqA-n|j;E(YSx#LPcr{SXJtvAI zJU<1EI%wu4UIN-Xl9KqO!gEKZ#MC%sxLz9PdErnZInKjdF7a=~`O6BQ;qW0PWME%^T>Ds46>{rp zUeEFh42#}X=paa~hCg5Hv?N|iX>zzvr=}{eCN%`FBmBkbv9VNUtTI|y$asMkePg_W z0vhuF9;X`GbskD&xD=OAc-37a6x6UENhB3fng!AZV>B%&Nlg#5)S^9@2XjEY4NHN^6?=UelsDrguIsP)u+45wR;Y?S&F-vVp&d!-Zr7D~_2WNqID1DiU+0T-Q zQ*wg<`%y<9)rlElHkulZW_X_Cxko-ljLM*T^5|?7KdDw8=2J>~G}&p2wV^We;O~L> z8gqjvm5&RaEO{3;o?ChjL$aM6qtgyu%Yh(oo?(^H_ZjyPnblz3bX#$hRlGdvfUVF@VwSc;dWcIc97AJr5} z4eIPUehStKpGiUy)jvHoCM7uDs5YzGK}J-&h*!19yf7;D02iqnlg*fH!lW0IK}@z_ zvK5mECfhLSgG6=4<4GYQ%kjAEg?F~*H~;9(ff-Snl&2C&ULH7mIC}EH!J+6`+^>?+ zLn4TCAd?Vg<&-?oe~Hgr8W2(!2ei@H-aoi)07oj;;88$R4o?Alv^ z|GvEi$KFqxI!eKoQbT*GJz8q+Dup+f+O{IywHt_sL07XYZ@KCzHWYIp+_aDrw(o=nu%&_87v!+PY*N>!oPt)Ded zRFu5R8QOAG-wXUBvoFSYmq1ISXe}>Wn%QeuJt$FA>SD1dVrNiRY}D zMy0{X&05xz^R~ItQ>)TcEt|F8GHGu)8*F}-oIPusK$E-X2eOCPWWj6Je!EitGLv(_ z(yz#`phnYQ)^yumY2B@$x@-B43DlZ3zlni08SrZKlyh7mx1EN>BV^HZ0cJJl$$BPm zIj#8_wQ}C9cm5ib!R58)2f2XS*8V1+hIKftK&t&Fb{SOlsq8Umqi;h5He2_^7mWPs zbNyC~dbv8N^-Q(2K`93eDqE*ixUSz1gV)4CqfYf{jF(Y{qB20BMm|HXe(wou=5UpZ zL1jG#pPVo2n|E-otT*0ee9ipy37n1@C8|%!!MPu+`@O7h;@RqVgMuEflS}7lEr%;m z_M}m-`jkDu`Be4Ypgt!72lY=IU#m~)#r5+i&Q!}7lr;Q=vgeEv)u+^{ylA{lykbz* zC+Ep}*VEeS%q=okzp`c&O_2BQ`ZDDFS-*{X%Zs{N*7pUnunvFHTY{1Ymx~A4y9a(R+#G>h{%>rxhEa@Uj zhrz0wNV{^*C+Oowqg3^&RJ540Wh=YP`un~y134GKE9YC_$K{+~a?UUcntJ+!*1>O6 z(BRV_N8U2ckjv&*$PCj(28qnfz?i%Odj>;b#(tuGiTF=NtkP3ZLv<&?`v5oswprHD z0?vb4M^O=?99{+oL9IW1{B-=x;j_=5eDUy^_{iadUpyLNq}@<7HS9H`H{(htF2^Nt zI>X6xeSnHT=a0Nv1ETxb3b?)ibsGVUB`4zmn5aX;#VJUWlML;XmY@Lvqr^PGo%BiO z7p6fsG&MB|F5o<+Z~06Z1sEy&d{zp5$kb zoSXY{kIbfIHX%rSf}3S^l*x1KOiCGNm2sYxK{!^&k!(Vyc_1pfH&6 z3RR;OsLCoLOS9NS#$Zf6OI94ET(rt_Uq1(}fJ3P{HY|Wg>HuP0mJ??(f|%e~pmo`( zxa@2qGYReMa_wQ?#4+3`f%w#U&I>RSqF+&@<2;h25=Lno& zB;ZSK&a)4ET%H|E0hHVyu}H%(aH?JBrCN}WYSRiw1~tuXNs0nW4@xIK=D^8PBh;qK zS=DF>4XJ7pWz`N~H6@7|sR>IpW47zeNn@f_yFSyZN5}Z+)5_9zER0@?+KB$5K0b7a z<2<^>65=Zf0hxs8L_(ENZ8AFOoN7-erlz3ds_jxjfF-3i)i9}bK556L16bDuD^me) z8KAN1z@-6#$*SW7KTF+k3GtKKkl;9~#N1|>)m9s@EiNT1aYc+zXDZH(JT6WP zSWnNjdKvBt%jcv4JH2|R2?l`ROIy-fTfkNSg7lgjYm?c$W-T)z>Qc?B9WmITNS znW`C+I(=ZkW5eN-j-X8Dv^*x)16AWJ=_K7fBt!;t{xiC0#>RoUvIlVFJSp2qL(7em z*H0EhdkUdFKis_%I-Gaj3wD%3&6r(k-dJpo7Mi0aw!6sgDzLjs?Hh~j+Y0U5O0C_+ z*6oGX?GN3ykSp&f*AWl<-EIG{=UaOU?&!UPFRmPXdEwY6O`SI{7Y7a%1`geA8p$8~ zWZ#jJCj|c=Sj}I+S}w11duiLQWzRsVyRX>2qtLyhMwmbbrHHj|#A2gKA< zS0*NJUH-`8xv!po7$(7u%ezk9t$#jmf9N7%w&bb5c52~N(X+AO*|_5ADnw2^G@HV% z2jl?bd@6q&`Wb3326q&KJ63`_^CKl+FrO_2+ivW?zW>8liamP^J$vs2_kPmSRcz@i zwDjG6d8K9Nr^MC}E_L)2JBA7!Lm#DzJ5LsNo?Pj8ZpmC~-cW2FDl`w>Ya1%DUEhs= z^vcJt{ou8go{?hDi9*kb2WC@y$3wHFCH$Ecn84TsTFMU6(fPso_sj2}DNbD+YTD!QNtU@J?{> zlTi4^iR&lICR580)NN`1!1=!Oq0`#X_^F39v{%{v#@}42njiV4FSum+pza%WWrwL@ zg!#-yf-ToKm0CJK=y<=Q)YemMix%3VrIz+m>xN=$w9p#8)B4Ou9c3q!dqAwgdY}TK zhanPZx>0w%Zb`oD?^^W)i=Ifq6S>*_pPqs8ArsDB`G|@5oAPykdYA;F`wztG+@LFG zG4ymH^z=P{Xu09gk6&2vAEk=ZQ}FkIay8WD55tHDo0nc#_H_LBJsDYAQ8S?M@4}_kpxBl!I=W{;u&mG%O?lu2>ZwToB zsJA}X<^(yaKMef9N@5;-35@oWpuoKSSqQfo-q~ABmRS!P$fhxX22Vh5I*P0|3|^qA zHjt(0VJq-a*X2IpuC1%lhC~LgtYAE|f-xBSdjdC~@xA&qxGA{f)87Q{O>2Hi$jHc= zZ<~x3IrD9c5y8$`vX&8Y&3et2G>?&_=>m-Lc^LDYHD}A(uA8npEf5XK*>cvi@RiZ& z84|H3Vo>ZTuK;R*7%a8%wZ;+gN39_RWWk=P23sM-+wXE2TPcDQiC3nj48RQmwp>`MaN&W6>eZg4O|4`0bGe*#Na8vrUS`oNunIl4k2$1hb6)0 zDLi&W5vN2jlo-+11`QFB2Gc5SRRVysEX4k%#`_Q&VYxK+dxlSqjVp-xi~ySkAq7AP z6&8TvGNL{zS|qU#AS4)U_9BQfiOdq2SvEPFglae~I3%<&fNm8o3F%@A+yiNrof6SU z=x1NzS&XV8^RelKlmL)|-MT1FD+p2P00YKEwiPZjh%{i}bnuv_T& zE!6`3m6~%c>1osh2%UlkP;=iKVMkMvtN^gKYa=0_iILBp`;Rm8bX+bkRgs`;uPLV z5j%x1QU)qZGnh;x8;=J5Xh~UR;?fl4%D8#e;)QkaBwa~!8!8Z@1}kcSlNR_9a>LL( zAc_v+4_(VHWS4!LmmMR^k&(NOkyT$~(bsjy*R>jK$RA(zhi-VTdy4+fg1<9wy;mQ( z+4IlAk6tPc9WM+WFAkk544qmTI=wRZ!b<&_y#14=_7YkKw%}olo=pYMrWH@`J;Vqb z3;vCFJ9qxre%F5tY{Emk1tO`QvWxT#7JY;7H!TI0M*h~a;u~Cc4E`A&GR8B167d|| zZIjT!jx=h~YCq6g$Qrjb8n>Pcyi_@VVzcZiSX){s8^ew?o~>Fg!hC3`{w>Vhf(fOz zRwx?erg_wrH3M>^;qJLcWg3>`tDwexY=3|M1-*?307Iz!s2O*hSC4=0RO$i+qqG&o zkhncjbPsL{opD6^(qCb61rmt-L&zUJBnbJt;_@Eg zz6^=#)x+^g9*)f7;9n0xE_F_o~%T8GMRq&%d#t?Wgr4j@w5hm@bRZYT$kswW$J%0Z+; zB-~MMK&p|nc9fftY9`^Q{)larhZ%vfHkDci%VtWPcwQq`olOs{m{UG)ZnthLHT9J7 zx$4~bnH8SYF{V9v%&=pSn;Lc#*p#=)+sxapx7}}h;N%ItbNVw3-aD=odB?+9@+9xd zGkJI3Giv3SE1q}U&UH%XObcX$T!?}}GiS~7%vIY0SvOQ)31CBMkR)e;uw@$reM}Qp zLxSovTPY2t2C$UOWOi2p!UDOa%gveRz%$HQvnJpRW*&{|0&|Ixn5&Mgb&P@YG}}I4 zeAS0spbY3#4rQzWjG9($23Kgc!9uQHHjxE4XR78_M{B|J|A8PA72r{AWuba#Vb9tn z08?4JG4^kPyc2%`i~x{uTyrMPDFhM#Oem0WK#64NF@!%U z8l9yUbgkuPF9LH3-EPg^3Vh-c+RF@Qm~@agO}V219tX<~Ave9ZdjKxzCcYvKN?U0J z&Ieh|k4NKK@mDE3Dx4000N!vIU`dPtnxc(sly3HE+-W8;TY(v9MOlOsx*(c-BJE*@ zpAlvO=s~CtiePWB5uO!9af+3}z(S>QK7#g}>9YLV1;Hm%!f@4xaFyp`p zX9Ma$|54aVFK20OV|J)DuS_m9Gy`x0aAGPmt<4#gvf6?UpkN*p4ffzT3w&k_f^Hc1 zf>$b&Ac8(X(^CnI#)(udsFICJVw%O!L?27fXN{@Ef*7L%p>>=J( z+neg=`*o}pSu-cfID}2d#-T2BSQ(G%O2sE6&~p8wHvR@cGl1MA=sOAn04+IbMEVTz zv6m=;K2nF)!FgIhgw@cQ{sJ1Itt=X-12~n!lU$5GB6Nh%r$}Yd;&`y|QVKxsnG7AZ ze)c%RNKiJoyTbS3cvGARr`vEaz8)5z(S{y$bF;!Cz?PM1=nCqnHd?y$01P0DZUoq2 z4Y@%BRPA8eByHBTVHOe+=4ewKL1+)Lvr!27@SMR8dICC$Hy@xaIF+VRZbQLzT!;f& z(M~$cSVvnix)N6|jl>Z>YN++Gs5M#**vpv*aO;VD&5F+If&~s(nOU-6pQu>1>b{#L zW0fPb9HW?xFV#b2j+s0UFaSAN*0o9%tHY25^916}HNR}71XvohOJHsnY}pzMa@Au& z?(12fN?kZIAq!TtVYBG|A~sp`t4hCMxuy5jctUMv!JZ{(_2~VL-{Vk4Y^oWwKsCeM zsb+|6s$Nh&DV_x7eZj7A)K684nITjp?p{sSJhH$Z=x6sgg zGqlpsk5QAB{NZ1E0*gKGp2V<8%c{e3&As4W1Z3Z`>h>)+Z7#Ss1D91tu;>UE9O1v) zzNCC}_gzO1+;+&@7cK92Dabk{g+Vlcs_$W!T!4iQWQ~YbwIIlbn?kejB4H<_Ync2E zCf6~UgG6<4sZm%z;6?J%o0wsS!=8v&^L1`uhE3b)H7Crb&6jG^77~Q-`NXL74P=K> zsFs;Ah^T)Z-*KR|Nk9zp`s*+a^fx@LL*C0+023AdWEQmOf8grJF4E3^^YHvgX=`-; z=x3I&wfj>7N%Q|C+BHfQp~i6My5XC-6xiwD`sM!b^$k9l$jd{sS>P zduTXwxpiy7w-q_JcP$;uA6*=I=ee>Sz5=s`R-DBRP|g#$c5>n5Qs@_+4xGvj<*gv( zr#p$&mG8cC;-Q1oH!Qw%5uRRA$ zAat)?k2E%G7F{gd^(&zy{UlB1!Ax^(nonN@^8lF;i%IcOx|h?K2;?HVG{Qs}jKUKG z-GXqbBs~zJ))!1Ov;e~}IxSF}02V|y01`MaL_)V0E^1mZPCzwW8ipJhH+0Z&ZJYTL zyhxZFfbo?#0s*=mBA)i8b02Pe|D_do52(1i9=4P(EOjrtJC-dS+L5A-F1@*y$1ZTb zT3y^1BwUqq4hU3W?gi?eK5D=o)RY1^lTj{!`}=Jy+@X2LP`nS!IGxd&K-~qc58r{3 zl-ZoG#+k+@BD>Ms)sS;ME@3~VvzTNdQSEp#1eRMmj&C+)7IBM&DoM}H)K<74)(!5HnCgJ8y59YM9H|ipvzzQAfSLg>}r<1V% zc(72A7NQUUE~fRlc zg^JgT;V&=JBt5Q_{u)`uF`?E5 z7v%S~vwONs;XZ&C#Mv+X2tL75CGs*Pu$eQ=ebV_`68IJI|BBT8ia38wHvNw5{xx~I zKwiF2cHbwven+<4CwuRcefP=meKJCc9ls`Lfd0&6W=wx{5N6MRk>2~H?KfuseaoR$ zZ^Po`hr4ekmm3EQ-fiFxxZ4^Y+JT~5%l`p`=Z+Ns literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py new file mode 100644 index 0000000..03877b6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py @@ -0,0 +1,142 @@ +from __future__ import annotations + +from collections.abc import Iterable +from dataclasses import dataclass +from typing import Optional + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName +from pip._vendor.packaging.version import Version + +from pip._internal.models.link import Link, links_equivalent +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.hashes import Hashes + +CandidateLookup = tuple[Optional["Candidate"], Optional[InstallRequirement]] + + +def format_name(project: NormalizedName, extras: frozenset[NormalizedName]) -> str: + if not extras: + return project + extras_expr = ",".join(sorted(extras)) + return f"{project}[{extras_expr}]" + + +@dataclass(frozen=True) +class Constraint: + specifier: SpecifierSet + hashes: Hashes + links: frozenset[Link] + + @classmethod + def empty(cls) -> Constraint: + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> Constraint: + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __and__(self, other: InstallRequirement) -> Constraint: + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: Candidate) -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: Candidate) -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> Version: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Link | None: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> InstallRequirement | None: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..aa126d4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,591 @@ +from __future__ import annotations + +import logging +import sys +from collections.abc import Iterable +from typing import TYPE_CHECKING, Any, Union, cast + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + FailedToPrepareCandidate, + HashError, + InstallationSubprocessError, + InvalidInstalledPackage, + MetadataInconsistent, + MetadataInvalid, +) +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.misc import normalize_version_info + +from .base import Candidate, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> BaseCandidate | None: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + isolated=template.isolated, + constraint=template.constraint, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.original_link = template.original_link + ireq.link = link + ireq.extras = template.extras + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + if template.name: + req_string = f"{template.name} @ {link.url}" + else: + req_string = link.url + ireq = install_req_from_editable( + req_string, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + isolated=template.isolated, + constraint=template.constraint, + permit_editable_wheels=template.permit_editable_wheels, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.extras = template.extras + return ireq + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + isolated=template.isolated, + constraint=template.constraint, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + dist: BaseDistribution + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: Factory, + name: NormalizedName | None = None, + version: Version | None = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + self._hash: int | None = None + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._link)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self.__class__, self._link)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Link | None: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = self.dist.canonical_name + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return ( + f"{self.name} {self.version} " + f"(from {self._link.file_path if self._link.is_file else self._link})" + ) + + def _prepare_distribution(self) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + # check dependencies are valid + # TODO performance: this means we iterate the dependencies at least twice, + # we may want to cache parsed Requires-Dist + try: + list(dist.iter_dependencies(list(dist.iter_provided_extras()))) + except InvalidRequirement as e: + raise MetadataInvalid(self._ireq, str(e)) + + def _prepare(self) -> BaseDistribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + except InstallationSubprocessError as exc: + if isinstance(self._ireq.comes_from, InstallRequirement): + request_chain = self._ireq.comes_from.from_path() + else: + request_chain = self._ireq.comes_from + + if request_chain is None: + request_chain = "directly requested" + + raise FailedToPrepareCandidate( + package_name=self._ireq.name or str(self._link), + requirement_chain=request_chain, + failed_step=exc.command_description, + ) + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]: + # Emit the Requires-Python requirement first to fail fast on + # unsupported candidates and avoid pointless downloads/preparation. + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + + def get_install_requirement(self) -> InstallRequirement | None: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: Factory, + name: NormalizedName | None = None, + version: Version | None = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(source_link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = wheel.name + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert ( + version == wheel_version + ), f"{version!r} != {wheel_version!r} for wheel {name}" + + if cache_entry is not None: + assert ireq.link.is_wheel + assert ireq.link.is_file + if cache_entry.persistent and template.link is template.original_link: + ireq.cached_wheel_source_link = source_link + if cache_entry.origin is not None: + ireq.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + ireq.download_info = direct_url_from_link( + source_link, link_is_in_wheel_cache=cache_entry.persistent + ) + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + preparer = self._factory.preparer + return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: Factory, + name: NormalizedName | None = None, + version: Version | None = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + template: InstallRequirement, + factory: Factory, + ) -> None: + self.dist = dist + self._ireq = _make_install_req_from_dist(dist, template) + self._factory = factory + self._version = None + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in _make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.dist!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, AlreadyInstalledCandidate): + return NotImplemented + return self.name == other.name and self.version == other.version + + def __hash__(self) -> int: + return hash((self.name, self.version)) + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]: + if not with_requires: + return + + try: + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + except InvalidRequirement as exc: + raise InvalidInstalledPackage(dist=self.dist, invalid_exc=exc) from None + + def get_install_requirement(self) -> InstallRequirement | None: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: frozenset[str], + *, + comes_from: InstallRequirement | None = None, + ) -> None: + """ + :param comes_from: the InstallRequirement that led to this candidate if it + differs from the base's InstallRequirement. This will often be the + case in the sense that this candidate's requirement has the extras + while the base's does not. Unlike the InstallRequirement backed + candidates, this requirement is used solely for reporting purposes, + it does not do any leg work. + """ + self.base = base + self.extras = frozenset(canonicalize_name(e) for e in extras) + self._comes_from = comes_from if comes_from is not None else self.base._ireq + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})" + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> Version: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Link | None: + return self.base.source_link + + def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.iter_provided_extras()) + invalid_extras = self.extras.difference(self.base.dist.iter_provided_extras()) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.iter_dependencies(valid_extras): + yield from factory.make_requirements_from_spec( + str(r), + self._comes_from, + valid_extras, + ) + + def get_install_requirement(self) -> InstallRequirement | None: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: tuple[int, ...] | None) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._version!r})" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> Version: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]: + return () + + def get_install_requirement(self) -> InstallRequirement | None: + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..07be569 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,845 @@ +from __future__ import annotations + +import contextlib +import functools +import logging +from collections.abc import Iterable, Iterator, Mapping, Sequence +from typing import ( + TYPE_CHECKING, + Callable, + NamedTuple, + Protocol, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import InvalidVersion, Version +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + InvalidInstalledPackage, + MetadataInconsistent, + MetadataInvalid, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_drop_extras, + install_req_from_link_and_ireq, +) +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + SpecifierWithoutExtrasRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: list[Requirement] + constraints: dict[str, Constraint] + user_requested: dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: WheelCache | None, + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + py_version_info: tuple[int, ...] | None = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: dict[ + tuple[int, frozenset[NormalizedName]], ExtrasCandidate + ] = {} + self._supported_tags_cache = get_supported() + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_unsorted_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, + base: BaseCandidate, + extras: frozenset[str], + *, + comes_from: InstallRequirement | None = None, + ) -> ExtrasCandidate: + cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras)) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras, comes_from=comes_from) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: frozenset[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_candidate_from_link( + self, + link: Link, + extras: frozenset[str], + template: InstallRequirement, + name: NormalizedName | None, + version: Version | None, + ) -> Candidate | None: + base: BaseCandidate | None = self._make_base_candidate_from_link( + link, template, name, version + ) + if not extras or base is None: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_base_candidate_from_link( + self, + link: Link, + template: InstallRequirement, + name: NormalizedName | None, + version: Version | None, + ) -> BaseCandidate | None: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (MetadataInconsistent, MetadataInvalid) as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + + return self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + return self._link_candidate_cache[link] + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: frozenset[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Candidate | None: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + + try: + # Don't use the installed distribution if its version + # does not fit the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + except InvalidVersion as e: + raise InvalidInstalledPackage(dist=installed_dist, invalid_exc=e) + + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatibility. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = result.applicable_candidates + + # PEP 592: Yanked releases are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: frozenset[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_base_candidate_from_link( + link, + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterable[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + is_satisfied_by: Callable[[Requirement, Candidate], bool], + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: set[Candidate] = set() + ireqs: list[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add requires and explicit + # candidates from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + if parsed_requirement.name != identifier: + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + for req in requirements.get(parsed_requirement.name, []): + _, ireq = req.get_candidate_lookup() + if ireq is not None: + ireqs.append(ireq) + + # Add explicit candidates from constraints. We only do this if there are + # known ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(is_satisfied_by(req, c) for req in requirements[identifier]) + ) + + def _make_requirements_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given InstallRequirement. In + most cases this will be a single object but the following special cases exist: + - the InstallRequirement has markers that do not apply -> result is empty + - the InstallRequirement has both a constraint (or link) and extras + -> result is split in two requirement objects: one with the constraint + (or link) and one with the extra. This allows centralized constraint + handling for the base, resulting in fewer candidate rejections. + """ + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + elif not ireq.link: + if ireq.extras and ireq.req is not None and ireq.req.specifier: + yield SpecifierWithoutExtrasRequirement(ireq) + yield SpecifierRequirement(ireq) + else: + self._fail_if_link_is_unsupported_wheel(ireq.link) + # Always make the link candidate for the base requirement to make it + # available to `find_candidates` for explicit candidate lookup for any + # set of extras. + # The extras are required separately via a second requirement. + cand = self._make_base_candidate_from_link( + ireq.link, + template=install_req_drop_extras(ireq) if ireq.extras else ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + yield UnsatisfiableRequirement(canonicalize_name(ireq.name)) + else: + # require the base from the link + yield self.make_requirement_from_candidate(cand) + if ireq.extras: + # require the extras on top of the base candidate + yield self.make_requirement_from_candidate( + self._make_extras_candidate(cand, frozenset(ireq.extras)) + ) + + def collect_root_requirements( + self, root_ireqs: list[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + reqs = list( + self._make_requirements_from_install_req( + ireq, + requested_extras=(), + ) + ) + if not reqs: + continue + template = reqs[0] + if ireq.user_supplied and template.name not in collected.user_requested: + collected.user_requested[template.name] = i + collected.requirements.extend(reqs) + # Put requirements with extras at the end of the root requires. This does not + # affect resolvelib's picking preference but it does affect its initial criteria + # population: by putting extras at the end we enable the candidate finder to + # present resolvelib with a smaller set of candidates to resolvelib, already + # taking into account any non-transient constraints on the associated base. This + # means resolvelib will have fewer candidates to visit and reject. + # Python's list sort is stable, meaning relative order is kept for objects with + # the same key. + collected.requirements.sort(key=lambda r: r.name != r.project_name) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirements_from_spec( + self, + specifier: str, + comes_from: InstallRequirement | None, + requested_extras: Iterable[str] = (), + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given specifier. In most cases + this will be a single object but the following special cases exist: + - the specifier has markers that do not apply -> result is empty + - the specifier has both a constraint and extras -> result is split + in two requirement objects: one with the constraint and one with the + extra. This allows centralized constraint handling for the base, + resulting in fewer candidate rejections. + """ + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirements_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, + specifier: SpecifierSet, + ) -> Requirement | None: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry(self, link: Link, name: str | None) -> CacheEntry | None: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=self._supported_tags_cache, + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> BaseDistribution | None: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence[ConflictCause] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Candidate | None + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + skipped_by_requires_python = self._finder.requires_python_skipped_reasons() + + versions_set: set[Version] = set() + yanked_versions_set: set[Version] = set() + for c in cands: + is_yanked = c.link.is_yanked if c.link else False + if is_yanked: + yanked_versions_set.add(c.version) + else: + versions_set.add(c.version) + + versions = [str(v) for v in sorted(versions_set)] + yanked_versions = [str(v) for v in sorted(yanked_versions_set)] + + if yanked_versions: + # Saying "version X is yanked" isn't entirely accurate. + # https://github.com/pypa/pip/issues/11745#issuecomment-1402805842 + logger.critical( + "Ignored the following yanked versions: %s", + ", ".join(yanked_versions) or "none", + ) + if skipped_by_requires_python: + logger.critical( + "Ignored the following versions that require a different python " + "version: %s", + "; ".join(skipped_by_requires_python) or "none", + ) + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def _has_any_candidates(self, project_name: str) -> bool: + """ + Check if there are any candidates available for the project name. + """ + return any( + self.find_candidates( + project_name, + requirements={project_name: []}, + incompatibilities={}, + constraint=Constraint.empty(), + prefers_installed=True, + is_satisfied_by=lambda r, c: True, + ) + ) + + def get_installation_error( + self, + e: ResolutionImpossible[Requirement, Candidate], + constraints: dict[str, Constraint], + ) -> InstallationError: + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convenience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = next(iter(e.causes)) + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: list[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + f"Cannot install {info} because these package versions " + "have conflicting dependencies." + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + # Check for causes that had no candidates + causes = set() + for req, _ in e.causes: + causes.add(req.name) + + no_candidates = {c for c in causes if not self._has_any_candidates(c)} + if no_candidates: + msg = ( + msg + + "\n\n" + + "Additionally, some packages in these conflicts have no " + + "matching distributions available for your environment:" + + "\n " + + "\n ".join(sorted(no_candidates)) + ) + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip to attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..f60653d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,166 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +from __future__ import annotations + +import logging +from collections.abc import Iterator, Sequence +from typing import Any, Callable, Optional + +from pip._vendor.packaging.version import _BaseVersion + +from pip._internal.exceptions import MetadataInvalid + +from .base import Candidate + +logger = logging.getLogger(__name__) + +IndexCandidateInfo = tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + try: + candidate = func() + except MetadataInvalid as e: + logger.warning( + "Ignoring version %s of %s since it has invalid metadata:\n" + "%s\n" + "Please use pip<24.1 if you need to use this version.", + version, + e.ireq.name, + e, + ) + # Mark version as found to avoid trying other candidates with the same + # version, since they most likely have invalid metadata as well. + versions_found.add(version) + else: + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(Sequence[Candidate]): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Candidate | None, + prefers_installed: bool, + incompatible_ids: set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + self._bool: bool | None = None + + def __getitem__(self, index: Any) -> Any: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __bool__(self) -> bool: + if self._bool is not None: + return self._bool + + if self._prefers_installed and self._installed: + self._bool = True + return True + + self._bool = any(self) + return self._bool diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..994748d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,285 @@ +from __future__ import annotations + +import math +from collections.abc import Iterable, Iterator, Mapping, Sequence +from functools import cache +from typing import ( + TYPE_CHECKING, + TypeVar, +) + +from pip._vendor.resolvelib.providers import AbstractProvider + +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory +from .requirements import ExplicitRequirement + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> D | V: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out three + # kinds of identifiers: normalized PEP 503 names, normalized names plus + # extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in mapping: + return mapping[name] + return default + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + + @property + def constraints(self) -> dict[str, Constraint]: + """Public view of user-specified constraints. + + Exposes the provider's constraints mapping without encouraging + external callers to reach into private attributes. + """ + return self._constraints + + def identify(self, requirement_or_candidate: Requirement | Candidate) -> str: + return requirement_or_candidate.name + + def narrow_requirement_selection( + self, + identifiers: Iterable[str], + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterator[PreferenceInformation]], + backtrack_causes: Sequence[PreferenceInformation], + ) -> Iterable[str]: + """Produce a subset of identifiers that should be considered before others. + + Currently pip narrows the following selection: + * Requires-Python, if present is always returned by itself + * Backtrack causes are considered next because they can be identified + in linear time here, whereas because get_preference() is called + for each identifier, it would be quadratic to check for them there. + Further, the current backtrack causes likely need to be resolved + before other requirements as a resolution can't be found while + there is a conflict. + """ + backtrack_identifiers = set() + for info in backtrack_causes: + backtrack_identifiers.add(info.requirement.name) + if info.parent is not None: + backtrack_identifiers.add(info.parent.name) + + current_backtrack_causes = [] + for identifier in identifiers: + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + # This skips calling get_preference() for all other identifiers. + if identifier == REQUIRES_PYTHON_IDENTIFIER: + return [identifier] + + # Check if this identifier is a backtrack cause + if identifier in backtrack_identifiers: + current_backtrack_causes.append(identifier) + continue + + if current_backtrack_causes: + return current_backtrack_causes + + return identifiers + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable[PreferenceInformation]], + backtrack_causes: Sequence[PreferenceInformation], + ) -> Preference: + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the following in order: + + * Any requirement that is "direct", e.g., points to an explicit URL. + * Any requirement that is "pinned", i.e., contains the operator ``===`` + or ``==`` without a wildcard. + * Any requirement that imposes an upper version limit, i.e., contains the + operator ``<``, ``<=``, ``~=``, or ``==`` with a wildcard. Because + pip prioritizes the latest version, preferring explicit upper bounds + can rule out infeasible candidates sooner. This does not imply that + upper bounds are good practice; they can make dependency management + and resolution harder. + * Order user-specified requirements as they are specified, placing + other requirements afterward. + * Any "non-free" requirement, i.e., one that contains at least one + operator, such as ``>=`` or ``!=``. + * Alphabetical order for consistency (aids debuggability). + """ + try: + next(iter(information[identifier])) + except StopIteration: + # There is no information for this identifier, so there's no known + # candidates. + has_information = False + else: + has_information = True + + if not has_information: + direct = False + ireqs: tuple[InstallRequirement | None, ...] = () + else: + # Go through the information and for each requirement, + # check if it's explicit (e.g., a direct link) and get the + # InstallRequirement (the second element) from get_candidate_lookup() + directs, ireqs = zip( + *( + (isinstance(r, ExplicitRequirement), r.get_candidate_lookup()[1]) + for r, _ in information[identifier] + ) + ) + direct = any(directs) + + operators: list[tuple[str, str]] = [ + (specifier.operator, specifier.version) + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + pinned = any(((op[:2] == "==") and ("*" not in ver)) for op, ver in operators) + upper_bounded = any( + ((op in ("<", "<=", "~=")) or (op == "==" and "*" in ver)) + for op, ver in operators + ) + unfree = bool(operators) + requested_order = self._user_requested.get(identifier, math.inf) + + return ( + not direct, + not pinned, + not upper_bounded, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + is_satisfied_by=self.is_satisfied_by, + ) + + @staticmethod + @cache + def is_satisfied_by(requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Iterable[Requirement]: + with_requires = not self._ignore_dependencies + # iter_dependencies() can perform nontrivial work so delay until needed. + return (r for r in candidate.iter_dependencies(with_requires) if r is not None) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..6ba9bbd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,98 @@ +from __future__ import annotations + +from collections import defaultdict +from collections.abc import Mapping +from logging import getLogger +from typing import Any + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Constraint, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter[Requirement, Candidate, str]): + def __init__(self, constraints: Mapping[str, Constraint] | None = None) -> None: + self.reject_count_by_package: defaultdict[str, int] = defaultdict(int) + self._constraints = constraints or {} + + self._messages_at_reject_count = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is still looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + """Report a candidate being rejected. + + Logs both the rejection count message (if applicable) and details about + the requirements and constraints that caused the rejection. + """ + self.reject_count_by_package[candidate.name] += 1 + + count = self.reject_count_by_package[candidate.name] + if count in self._messages_at_reject_count: + message = self._messages_at_reject_count[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + msg = "Will try a different candidate, due to conflict:" + for req_info in criterion.information: + req, parent = req_info.requirement, req_info.parent + msg += "\n " + if parent: + msg += f"{parent.name} {parent.version} depends on " + else: + msg += "The user requested " + msg += req.format_for_error() + + # Add any relevant constraints + if self._constraints: + name = candidate.name + constraint = self._constraints.get(name) + if constraint and constraint.specifier: + constraint_text = f"{name}{constraint.specifier}" + msg += f"\n The user requested (constraint) {constraint_text}" + + logger.debug(msg) + + +class PipDebuggingReporter(BaseReporter[Requirement, Candidate, str]): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + logger.debug("Reporter.ending_round(%r, %r)", index, state) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement( + self, requirement: Requirement, parent: Candidate | None + ) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..447e36b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,247 @@ +from __future__ import annotations + +from typing import Any + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.constructors import install_req_drop_extras +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.candidate!r})" + + def __hash__(self) -> int: + return hash(self.candidate) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, ExplicitRequirement): + return False + return self.candidate == other.candidate + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._equal_cache: str | None = None + self._hash: int | None = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._ireq.req)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class SpecifierWithoutExtrasRequirement(SpecifierRequirement): + """ + Requirement backed by an install requirement on a base package. + Trims extras from its install requirement if there are any. + """ + + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = install_req_drop_extras(ireq) + self._equal_cache: str | None = None + self._hash: int | None = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierWithoutExtrasRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._specifier_string = str(specifier) # for faster __eq__ + self._hash: int | None = None + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self.specifier)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self._specifier_string, self._candidate)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, RequiresPythonRequirement): + return False + return ( + self._specifier_string == other._specifier_string + and self._candidate == other._candidate + ) + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._name)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, UnsatisfiableRequirement): + return NotImplemented + return self._name == other._name + + def __hash__(self) -> int: + return hash(self._name) + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..7e44c17 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,332 @@ +from __future__ import annotations + +import contextlib +import functools +import logging +import os +from typing import TYPE_CHECKING, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible, ResolutionTooDeep +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ResolutionTooDeepError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_extend_extras +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.packaging import get_requirement + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: WheelCache | None, + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: tuple[int, ...] | None = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Result | None = None + + def resolve( + self, root_reqs: list[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter[Requirement, Candidate, str] = PipDebuggingReporter() + else: + reporter = PipReporter(constraints=provider.constraints) + + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + limit_how_complex_resolution_can_be = 200000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=limit_how_complex_resolution_can_be + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + except ResolutionTooDeep: + raise ResolutionTooDeepError from None + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + # process candidates with extras last to ensure their base equivalent is + # already in the req_set if appropriate. + # Python's sort is stable so using a binary key function keeps relative order + # within both subsets. + for candidate in sorted( + result.mapping.values(), key=lambda c: c.name != c.project_name + ): + ireq = candidate.get_install_requirement() + if ireq is None: + if candidate.name != candidate.project_name: + # extend existing req's extras + with contextlib.suppress(KeyError): + req = req_set.get_requirement(candidate.project_name) + req_set.add_named_requirement( + install_req_extend_extras( + req, get_requirement(candidate.name).extras + ) + ) + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> list[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights(graph, set(req_set.requirements.keys())) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: DirectedGraph[str | None], requirement_keys: set[str] +) -> dict[str | None, int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking the length for the + longest path to any node from root, ignoring any paths that contain a single + node twice (i.e. cycles). This is done through a depth-first search through + the graph, while keeping track of the path to the node. + + Cycles in the graph result would result in node being revisited while also + being on its own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + + We are only interested in the weights of packages that are in the + requirement_keys. + """ + path: set[str | None] = set() + weights: dict[str | None, list[int]] = {} + + def visit(node: str | None) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # The walk is exponential and for pathologically connected graphs (which + # are the ones most likely to contain cycles in the first place) it can + # take until the heat-death of the universe. To counter this we limit + # the number of attempts to visit (i.e. traverse through) any given + # node. We choose a value here which gives decent enough coverage for + # fairly well behaved graphs, and still limits the walk complexity to be + # linear in nature. + cur_weights = weights.get(node, []) + if len(cur_weights) >= 5: + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + if node not in requirement_keys: + return + + cur_weights.append(len(path)) + weights[node] = cur_weights + + # Simplify the graph, pruning leaves that have no dependencies. This is + # needed for large graphs (say over 200 packages) because the `visit` + # function is slower for large/densely connected graphs, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We repeat the pruning step until we have no more leaves to remove. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + if leaf not in requirement_keys: + continue + weights[leaf] = [weight] + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph, this will only have nodes to handle if the + # graph had a cycle in it, which the pruning step above could not handle. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity check: all requirement keys should be in the weights, + # and no other keys should be in the weights. + difference = set(weights.keys()).difference(requirement_keys) + assert not difference, difference + + # Now give back all the weights, choosing the largest ones from what we + # accumulated. + return {node: max(wgts) for (node, wgts) in weights.items()} + + +def _req_set_item_sorter( + item: tuple[str, InstallRequirement], + weights: dict[str | None, int], +) -> tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py b/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..5999ddb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,262 @@ +from __future__ import annotations + +import datetime +import functools +import hashlib +import json +import logging +import optparse +import os.path +import sys +from dataclasses import dataclass +from typing import Any, Callable + +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.rich.console import Group +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.entrypoints import ( + get_best_invocation_for_this_pip, + get_best_invocation_for_this_python, +) +from pip._internal.utils.filesystem import ( + adjacent_tmp_file, + check_path_owner, + copy_directory_permissions, + replace, +) +from pip._internal.utils.misc import ( + ExternallyManagedEnvironment, + check_externally_managed, + ensure_dir, +) + +_WEEK = datetime.timedelta(days=7) + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +def _convert_date(isodate: str) -> datetime.datetime: + """Convert an ISO format string to a date. + + Handles the format 2020-01-22T14:24:01Z (trailing Z) + which is not supported by older versions of fromisoformat. + """ + return datetime.datetime.fromisoformat(isodate.replace("Z", "+00:00")) + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self._state: dict[str, Any] = {} + self._statefile_path = None + + # Try to load the existing state + if cache_dir: + self._statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self._statefile_path, encoding="utf-8") as statefile: + self._state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self) -> str: + return sys.prefix + + def get(self, current_time: datetime.datetime) -> str | None: + """Check if we have a not-outdated version loaded already.""" + if not self._state: + return None + + if "last_check" not in self._state: + return None + + if "pypi_version" not in self._state: + return None + + # Determine if we need to refresh the state + last_check = _convert_date(self._state["last_check"]) + time_since_last_check = current_time - last_check + if time_since_last_check > _WEEK: + return None + + return self._state["pypi_version"] + + def set(self, pypi_version: str, current_time: datetime.datetime) -> None: + # If we do not have a path to cache in, don't bother saving. + if not self._statefile_path: + return + + statefile_directory = os.path.dirname(self._statefile_path) + + # Check to make sure that we own the directory + if not check_path_owner(statefile_directory): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(statefile_directory) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.isoformat(), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self._statefile_path) as f: + f.write(text.encode()) + copy_directory_permissions(statefile_directory, f) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self._statefile_path) + except OSError: + # Best effort. + pass + + +@dataclass +class UpgradePrompt: + old: str + new: str + + def __rich__(self) -> Group: + if WINDOWS: + pip_cmd = f"{get_best_invocation_for_this_python()} -m pip" + else: + pip_cmd = get_best_invocation_for_this_pip() + + notice = "[bold][[reset][blue]notice[reset][bold]][reset]" + return Group( + Text(), + Text.from_markup( + f"{notice} A new release of pip is available: " + f"[red]{self.old}[reset] -> [green]{self.new}[reset]" + ), + Text.from_markup( + f"{notice} To update, run: " + f"[green]{escape(pip_cmd)} install --upgrade pip" + ), + ) + + +def was_installed_by_pip(pkg: str) -> bool: + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def _get_current_remote_pip_version( + session: PipSession, options: optparse.Values +) -> str | None: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return None + + return str(best_candidate.version) + + +def _self_version_check_logic( + *, + state: SelfCheckState, + current_time: datetime.datetime, + local_version: Version, + get_remote_version: Callable[[], str | None], +) -> UpgradePrompt | None: + remote_version_str = state.get(current_time) + if remote_version_str is None: + remote_version_str = get_remote_version() + if remote_version_str is None: + logger.debug("No remote pip version found") + return None + state.set(remote_version_str, current_time) + + remote_version = parse_version(remote_version_str) + logger.debug("Remote version of pip: %s", remote_version) + logger.debug("Local version of pip: %s", local_version) + + pip_installed_by_pip = was_installed_by_pip("pip") + logger.debug("Was pip installed by pip? %s", pip_installed_by_pip) + if not pip_installed_by_pip: + return None # Only suggest upgrade if pip is installed by pip. + + local_version_is_older = ( + local_version < remote_version + and local_version.base_version != remote_version.base_version + ) + if local_version_is_older: + return UpgradePrompt(old=str(local_version), new=remote_version_str) + + return None + + +def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + try: + check_externally_managed() + except ExternallyManagedEnvironment: + return + + upgrade_prompt = _self_version_check_logic( + state=SelfCheckState(cache_dir=options.cache_dir), + current_time=datetime.datetime.now(datetime.timezone.utc), + local_version=installed_dist.version, + get_remote_version=functools.partial( + _get_current_remote_pip_version, session, options + ), + ) + if upgrade_prompt is not None: + logger.warning("%s", upgrade_prompt, extra={"rich": True}) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b802a7139c379c25611a541205e212d7e1d74b05 GIT binary patch literal 204 zcmX@j%ge<81k%j^GeGoX5P=Rpvj9b=GgLBYGWxA#C}INgK7-W!%GNK>FUl@1NK8&G z)(>{o^>K7E)eSC5EXhpPbEFQ_cZ$j>v@Gc?jK z&MZmQ1!~StOb6;O$Sly0&&(@HEdpxNFD=Q;Db|k%3S^eV$LkeT{^GF7%}*)KNwq6t V1=`IB#Kj=SM`lJw#v*1Q3jpo9Hj@AV literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61f746ede3e197332c263f90253569232f7a695d GIT binary patch literal 4544 zcmcgvO>7g{9e-mxkc}$*PVecW?$x(IZlAstceNgf^lD%9 zFg8)M%f9K@9-k9VZK2|G=aM1#yl|>~Q4?C(iTTE5Kc=e1is2c2zC*7GgWHbJy_)Mf zo}qK!;d2JB(QwK1E2hmaxTYH`nYM2TTeB|2cvA*A)rw)cq^Be9S@jpX^j{$9hONz6 z2ESz3x+6?`f!oHCA=I+tnuf=ndFZ>iP!fjc)I{0vE=V(+n$IiRB_fB2CNJMCTC;U- z`X1!_CQQ=}7a9z^T<2xSHjZ)6sT#B&NT_H4s3y8>@C?7^a?_JolxspjiUm&1mBu>r zY6bEwa0A1PSvG8-C=6FPdaVqoB+}TgW9>ax6ijd7e`?HOS+-Q?6C9F^xin&zlzT9`P#%A1t&u1|y^d*kKd! zJgv2tI&Oexd|}FPi-M?Z)pW9ff`zik8aBJf-{R)(&ms}axYD{B7tD4gj+g58qxG> zYssr`8tCeA!%)XVRzBMF=hCI4Nw2N~gd#!B4012gxG94JCTQ$)ag{V7=u>K@zmRR;f2XWCPS*! z#5AnWlYM+VH#L(_pPVf6$y_Fx!sLk*EK8ioq?)R*sqsuAeLBjMiPMRbWL=);ASJI7 zS<^axW->)nq%VR0@nSlcrEQGovc)`Jqu6D>*kL`BE~KJ7kxv(3sydO+K|H|;4oHU( z@MTj?DFn3ysN)fk5Ma~TblVo5OeHdqRZzi9i*4eV`XyEPY`InFWx1!;LcjGGZY%5x zyR3*;6g(HZsU#^w(`h$}ZLGi|f$U>tD55k}1d{MQN=dv0kyIWr^T$qn$q^SlS3_Zq z7g9$ui4#9KQlNA#9~pOaqm)4Ts(YpvkD2EQYkS7;^x`Y*R*Sn0 zAmCH94*-+Oam|>9rSnUgW$LJCcC#^QoXQglf+Nsr3_+~{8ALs%=t1{0?M6Sf*iswzMzE^6 zjc^y*2=w0eYBSme`CaU2-$pR-IBr+jSDbCzef{{gPAC^C@8E^}M4W@;KaH-*~nUgPovk$)%voMz%Dz zpjiVDnL}bb_yj3w^iVvyNO#vVeHn8=Aw;>?g+N0oi9Mh`hM#u`x2x@n-?(6s1w{Q&IZnVx$Ks$6STa6xl1b3auLMqiUZr!$KqgWR<5jKRY^q%2)A`H`C0Bgk zeIp(>E^Ad6ISY+(D5KyXZf5B4H&94hmIHi9kXL|kpNr}$4+I3a#9fwG8E}nl-J25o z!SW`4-mAD>WoxgpZ9A`zT^qZ3cs2a`XUe_s;N8&Rvw%}H4dJ)`H{4D!WmD9lc(o$% zUAQ92&ZilBSGl4rlAE5oHadhj+Q+WoBSjDHXU{8>?HJrBmm7MPA@wCRC?6laqWnx* zQ55#^sSv9NhS)~QJfHoY{8N5?ewJTWYTvX#A=)DO3&k?N;*|4zXU(Z zZz>$K+dihVw+o9s9N1y441kw04LRKMZQIGq7;N%ytED_vX0u=Z`^l3h=q({?6OCSc z9m*4u7(j40LN=;qqrc!gZW_xnfFglLkF-UyR6R<6&YM}j>zVKnhq0W)&!Z#CKiSvl zGcne`>&EVnPF+ns*tz==+tM@e)6j$MuUxNQtKLlhdHbQYK(K%BgS`iCj^E7RsIR>L z$@{B&M{a-r_dU0c-P`-a8=73w*bg~hf7Q#rb?6aO`u8?=?pX`s z`7e)-j2{dpjwru+J#jE_C$tO0JA1a${a{~WwCB#ZgEWpPG#;gKB;43qD&fPhRBH6e z&v@#&f?AYpHjV8bV#q=yq2T)EifpHiUSTZYumhJ<86y;4xa9~XiAN6iihSpzuO&O5-{{x=#)DZvx literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a88b7f27411d703911758402d2456e159598e9f GIT binary patch literal 1875 zcmZux&2Jk;6rcUD*I7F?ABB{*QbuseO3AuVk@NsaNg4`LaHU36$d~QLGjTRq?}nLi zQb#%DkON$xNJ!}+hX`>1Dx@CyAGkCWlxl^<0WQ6zawMc);Jsb1+f;edzV~+K&By!A z@4a7#hiw9K!T4|aUxSdp@h6u;-{~!Zvr8Ch5T-Fb)EXLCBh=eQ!)TigQzOi56m)Wp zu)+>uMXs$>@=c!Ed$2!B!(tXMu@bkIOg6M*HilT4*8^n(asxw}VYi!?@K7 zqLyu6N=#q0WKvw+$gJS1Bcgg!&$9rFbinL-S3vC&oota6@Lm)(ShJ#qxD)CEY{Y#@b1xN_w9FTGEjU17O(m( zSicsm)x025T)?7QM+Kp*AursuZesP3+_Bo|q$6Jkp+9r>xBVVYmZ-04v&)R?W zL3MIp{Z^g)Vf~;w`Jgn}gAn3aNy+mfzs)@_u{|#%6!;a-`@G|a{Ta*iSlonRLn?q13 z*%44zaYxV-Aor^o$eMAFGshH2fi(TZ>hG5f4eHO)#2YX#@pzgcbrIuHoyQ4O+vJ~e z_1odSjlFr3@g@w8EjGVQDNZ$DI(n*C~ArI~(+`m<|9N zbH>wEfy-SQL=;NF9h8FWfeS6tOGCsNxMZBlu@=L!mwSUmDgP}}6VLJE~b^ZbE%e((L?P3KRud}y9KFwgCc>^py$MV!>BP4^N8oX;;pwWdw&)Hc<3VUhHYLvw6f J+C+Ni{{bI3#$f;e literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6de0ae3b4bd8faae2025435731392f309427fcc9 GIT binary patch literal 2464 zcmbVOK}_666t%tH^4Yg;p3 z7SPfXDN@KO=_w#ZVtXS>4jeh=7^xRFAd$M5Haa$ahEQO6oD9J_>R`PayyzPzAHW-x~YZa6@0kOb?3?ABNg-rY0-||@A zCaURKNG)T-Cu)#K>NIjK4FMnMU?>a^jM5K#?`WYa79 zMqp2X*`$Y=ky*kRxq<52eiUKCASf$CNTk|s08_T-st_LhVpPUIY1;Js&5d|CmXJ%BG_@j>{JVTKG=X)V=_Qkg~e*a8EjKE^M;#4 zR#yI#;y;q%!*<^>0@!kqo-~x;$gWXDVIn%B$y2+Ah@fNe>|TK80T=Ae6@-Sx0abx~ zJ`o-_W=6S8Y-AY1wLt)*6y!ae5yGV2KsY>7A_(iIVdjwz8_DpP1|u|r`nsT%Jv>Ex z!$d?I{igrMi61KCe6Y6O7ohs9GA zQVp`9=@fnpi?mW;J49>jBJ0oMHi*cYG>zW{%>uWh9NSjT)|9i=!8Np{3~h)*yD-6p z684NDB*i><{y5AqlwL#UT~Mk}oahRWc_E+&XHtNgX_W%qUyD?P$Bj&2p(2cOR%||2 z;ednx?MZ2I1FscW*UZ>_>@Dk4hplh!1oAD83_lVut#jNC&7Ay$mNh+h(#~la2`6DF zOtGw6MqtpShk{2!5vnL3#%)3e#DZtLp^RpHU^%tTh>RD^A?~Cu(vIzxW^~7%LONYa z=%G~*Oz)oXxL!0&kLVG-Sacc+ABV|f@R0AJS>RsM44d4}!KB5o?lvhkDT!n9DX_O0^Hz`-3 zn6?O1p#c1fHTlKz5+*DImu+_#9|7}BJdBZ95+<7$0RtyWP`U-TjIfVCp`>r%j88(J zHD{nh==}g?BguCvw<`B%o=YF@q|aA#tL4q~;6`$gq1{tcdaBpfN>6iJ%E*Q|62Y{0 zrGSUMLi!v=-w~$4eV7g_9}0&Rdm=XBnCC0}VI>u?4;So#D^TvX$UeyrM59o)$eYpL zlIl21b*#eY_)$pm|KFLF$nkTq8%Vb_g5QVU@EGKdQYCCFmYl$j$_z*_aB)u5P+(?~ zn0_8{H*KQoq!*{YSDkUe^17 zucd%p>s`;zZKZB53^#dKelC6RqT~4D%wihKw*Bb6p}Rv5g%x>O-URARSM#;~`pocS znN%q0y5*U=&JM}o2o?BVWcBEe0Mko4!X`!n%svyLIN^CtR5G*(Lea5dj-Koh$2iR{ zqSwix=qKV!{0U4^nv*g#^%&3duY?3I?sjmz{2M3#!Cj~)c>ar}t91@k_3AEFuaXL{ zRbdF!+Bv44_UzKPSEoe&CciXV=cr!&EYj-(yX?JwROYoMv(AC4TB`#;+keq6+t|M@ CxhLiT literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c40989851088185d9f44854b062f32f99f65c845 GIT binary patch literal 3031 zcmaJDTWlLy_0Geuu~WNo(mYCF+H~8RCU!~GY)MN|pAZOfsk@u4Rmqxo#?Cn78SCEb zx{i`1tX3kCR!YhuB?wlFfR9#PY5C-n{o;e4I9Vy>Hb@nZkN$Z#i-am9ICmT;-n4M# zx#vF4>z=3o)YhgT7)Pc5Om74b`WxRgM`(Ak^IHL-RivXd(gj_#gtX{FDJ{8BPRlOz zq&)y7%UkrNeFDlOUH-L@_KV1n3hhm%`_NDx17AMULEU47a-!~iS5CL-KI0JV!#P>^ z!#-ko3db9Gt+O7O5fQ>&hFCb!dfr$UPQHAW?y#c)q<82F@DIWlg0Ib$1rmFJAgAbu z-u0wA{-?ydAd$aOv^vwBwii}m>qxOH-6^1Hq(^=uq`QH3=w;c3b1$Fihnw%eFA!Bg zucp-7XHFw@U%+9&kP9QP;1lH->9179Sm*5bQ?#7RsdQSSs&3|T1}3U$?=B6SsyC~2 z+OgGpaA7(&Q8imvOO{4+4lXLXNhmg_%9LNlpL1CgF@cF=$(YPSd4pz38lBFRO`Qb^ z)h%->Q<}*W=A%y0f*tcsj!j%kPNtX_8?=n=Y^%C5Y$W)0F2b~mz!!p!EHsa*Vn3qb z&Bi!^uq2>6$d)VUzH|pw1i+Ilu_(<80-6(2C?-!}j(!_-3yq~RH}52GUY|&%#z9Lt zLx{zKW5tq#>2-`9%(_cvDW17!*t&z`Wy}>Fj>8)*%ws<$;vfKbO*mIoePJdl4xS+; zEo+cO>iXdLtwv5^-RAF994ACD*XS@ox+zh)In>AfD0k zKo8Or8Plc)2BHL)OA=Y92$qbOs?0a7kqos64uj|jeB|peEugyS@w7elN1uhG|Jn{7 z`5XzJwmu1jnH~8PQ zAlh}P941k7Wjo7j052VlP*wG^p;BkBkU(OnaDRF1EnY!f6~5;tz(Aw+kZGrE>8b(g zLCczDRn@$sY89=z` zIWc|*^H#+?IRfdd&XctqVqhLP%xe;EcqY3TzTFqZq{gk7)0sbKS_Y>hJd;3Q z%;OXDWOAoISda%WEub&Dkw5$%Ub*6M&0fg9(~Jz;xRH?@WQF z`UHFn?jg9-#lgopem|e~C<%WLxUJzg*3JVYLyh}1(`16r0LCTw$S6$UMlU+tyA|oL zMf$fQv05bd@YH5x=yz|`BH!8yU#*3&J_&`_PCp!}ODJ+p*g;}MsUtC<;I9EWbTJQa zpynn18s=?u66ULryorq*^J_R?(l9ZYR55KPWi6A5HjRn1o-)l1p65}D%`A=eF<&O5 zJK0QzMfYAFZ|Y1i{7nFdT24L>&cnQpF^N`HR2tdCd2V4U)eB@KjPB4!J z=5PKPVG86IrlbPZjLBR)=7I1Cxi)h%>V^Me(b3D6aS4A1u6SD`|Aq;gq#%4I3PSsi z7YRq7qC-zn;3-o6f;#`Ie0#xH_af!!V%Junw-)GKJHHt?vEZ$H6`^~jV+R4K_jU^% zE2NG9tdSiK>Z3^ZZAsCZ6kW-0NPSOwj&Jo0)OrTCdPZvSlaD}J{Xlp__)PM6lqZKf z>Mm6K8!$1{fH%fm_$&}yyt>r2;{n`yWS?_oL;C8r-2M-F;PVIypIrz7)8L`yfu(^h yXt9jA%(RDNEeK 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07af57d106961fa7645bc0ce660f21d2a3324e09 GIT binary patch literal 688 zcmZuvzi-n(6h7PMGy(@IwF8KuMlcY8V`$Y4kV+dS+9g{S%k>?#YsY8ZT@o3&QU;bz zu(e}HP!~r22NqBV#EAi^6I)Q2y1=`T2nq3|_q`v!@80L9`_O1yLSQ$nU-1u!=en3% zeU?n_Kyri#>LOwgGc&pdv8YKfxD8&T*7G`9c!|5XG@JDo-c!ciVN7$kND6lt=2Ezl zxlv4`)Ri%HNhqlcXJpc&t?zouj>07kxw3mKm$9-)SgIPQvd{C#n#s_?2G{ju0C0pP z;2+yJ=h@%5uTTGDr?dLNlE(bg|F{*ZjLJNn%|5`DRpE3Cp$=*qJ55W~^*?C+3hPYS zl7Z%?%{7B#4SG7)+g0{nGN8H84OiPm>JJ%DMG;0+_?@=*Y~#tg*O8%2B5#us8f@fY zR*FRUEg%m3EZOyoQpPM_Ydu)?MIxyO_B)>0{O!#wkt)f&*Q)xjW zf((@MK*nLt8=$2IF75-2&{t>q)%M}`XJ_S;vvTI#9JObizp(^@lx1`Wb!9m!Q;}7xw_h kmSGrQ(Aqh=I<8^k`f)Ty5Z>IHhIgCO@P6y3ZccCe4UfpDDgXcg literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a179f4aaf62de7439d46d821d9d0e2f25d9a1f3e GIT binary patch literal 4217 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 AivR!s literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e560d046e8bc4e6e5c66e32fff8211620fc4893 GIT binary patch literal 3538 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ead23727247b8284fd5b0487686bcd4430a28903 GIT binary patch literal 4064 zcmb7HZ*1Gf6+cqcU;mMn$g=A?&BadRskNy!iHjvoI@pe9*GQZoPM1tYAkZRZQK3lf zj*_E59z38x6RbnxVSrn7MH8SvI%L4|F(0>Kz%X>cBxr*(#s!9T{je{Cn|K2j4A|b0 zqU5^Xyd6Z|@$TNcckj>dJ$>BK5kk!8g6hh}%f-?relBQuplQCN=7YtQ5sTc}jXwxb+4Wg!DM;U|sI4ezOUXNZx<=f*Bf4`W)UVnH&q!#H2mOtqjX_*~h{ zf(D1NnN?JRK^8bCZEJNHOS+8n1~qMdz#aDFL7Wm}E7|g?IyFI9MIOc=0il={Ga0xh z6Ss^_HLn1ZEmGqJ#dO5W8zqq4x%LHv=|m~1lBvKUD#ZmbrgMIQ7$sE(HaM@Ovy!gT zysgAViRerY=U9-`7E)G;0@B00EvpHPbqty(MuFJe3!0QxYzA3HD-7dB1?$FQLzj+a zGR}32WV?|t7^7iFYO{bdaJoncSOpupB075S2eV%sJ3sr{?9_2bNfgg3OeR$?8CMh; z&zG54%mrwgs0GvID&h<5@{1}sNJdgMAb@*kie`~07&J=3*_oBWGsMt2O_9LpR8er& zGz;{2BC(*F+2XvIHu8x=xgaHAU&8T-#OUa;V~+F5B^5LPj56xghN5s$mldLwZ5f#d zi6Lf^lA+2Ca}Z-*1KXF4B2I(o&P5u|1M-?#JT#JLat*;6H5G7KkdqX3+eXZj9m{BC zF%%ap4|t;Gqb8h6Ebk&w!RrKwA{NIIS)h~!D}Jgc77cQR7QkdQF*iAKdTe}jWR3-W zdSt?omDHFnX=SR?gjiDaQbJSb;o{7pkBBcFPEcSw0>oFO1)yijNZI}kM2VuQYBaGW zoWw%e3Zxq5C1E(90V5rP*D~7dMc%+$GvA$A6QVUCy1{#c1DhVd*SFb)+PiKE-#cCv zx}U&Slx8otu{7a9hDPUX6HKC=oULU_RqYlB-BTiI`02^i?AV#fIRKO_3u^$BteVbRKIJN;Q)&gMln2(DVhsYL z6uTMVK*>nk#X|}*a*E}gl!F{`ztsiuOQf7~Aj=?StD`Z~kTJxBNEIXk+`~{?q$HvM z%M`n^6<`xO9BFlB3;@;?D?W;*1ORG98hlz)l=%}&{m=-DIg6#p|01MXATPqU1U&Sw z@LEQn9ei=6e80OYMAxIS)v1-K)zd4dKiqq_?@nKJhhV*0NN8>?OEwriyWv$ z4tzLp_k}wz+!gPL_hS$C)CW$~BPZ7)6Sc_1FUNm1^YfW{`GT$c*pa{0-SolGe2qCPoF7B~BKuo^E zcEsUDAw?qB{mCGkX0I8xv;ePV^yg5=P4R}fJh2{*++4h|xE9`D3-7<}sfQ0PPjC8A z?{lk_mCEhudd~<%!RG-K=>5_72UG7(t@RJr`iFmV{->9Ie5v~KH|ir(zuEKK-e31t z&%gfhzTfpHPz9^UYw_VDtI?OJheHZBmBWv+E;fF5s9lU&9XJPYNW|h~8I#1LRw$Kn%CuC9uYpTfpy4dxP z)%V3kyGmj88~~1ko$ZY>5Ex_(%bS;S22@aa6;P9~e`nU-6qM4&qQY>;RCHD{Qb0{& z$i=itdSHuP+}I#u>ltb;uMK5((e+gugq{XYZ^tN)1T zRvSE49e@(*l?}hp%~w(6^AHl+9zMJ8ozgqQRiOu%$A)fwYpwfGt@}`Q=xf#EXX@Rv zfA@Nx@%^zqvf)9&wwwMN{#)MfcRu#OBot$t?NKiFMC|2GZob^fh5zyR+Z-%V7W2Od J^p3wI{2LRu)C>Rs literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79d4e3150338a13d79178ea8f8a4354d4001e3bd GIT binary patch literal 7995 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 s?*KY;x#MBD&0cTOU>#A zbSpOGb+cfhlIrS~DW2j0AW(kPu?^jYJFdry+eJg5y{PD_NL=@ZG2^a#q931@hn4K= za&|E{|9CMcguF-~+3|?t91X8c;zLK^HN2AQ$5!Plky!5OwjY=0pIl)DrX9KweD54p zKQ-466-Hpa2TMUlei@Z<3k&=jsbh`T9bV=0mg(pkL{Q^Zd^dR&<%{|j_wGENqGqp4`H~%zy<=+GvMTvsJb8zsR13Z6bNZS_LbZj*b9VwU1 zEKE(`&*WS@y?kcI(x5VBsz$}p9ZB4R=9XmW>ylk@ig(XRLj-BH@LE5w1iaTUFIJ9jWt!7r|-Ho7MsBD1Tec18GmeY=grcaXX_5cNy;c+y!U_~75FrpF0qnYE89~V(0ZI}&f#EDV zQL?nM0Ux5<_)3Q1>|tm!6h--<|2N3|=;^B_8tJiWycVkE4@PRmcZm}))}+H}x*B^^ zuH_B}YpZWxwLqAnn{hC7_rs&(^!Ro8cq2V|otbQ;1`o}8YV^~~dMf)RR!^-QgPvwM SL?sUfn*f``p+Cd~#r^}#T{3?F literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab34f3db13ca3601cb6fac2bf493c44cb5bbeb85 GIT binary patch literal 2359 zcmb7F&2JM&6rb7k$J(2aq_JZl0k)7fF^O#;s;UA7OqxVKSY- zpj4R|1)6g9kStZ~$Y#4CJdZ*6XaqzJJ(c?!a{Qir>VD#bM&eZ6cZx_5*l^!|a5(q< z3m9$;BSdgT2qDHtI&C`OS?f9{-f3oT9#v5dMpV&sXg%&(UiQwz zYV&wrs0!m~4`L1=c^}r|^<)4|x8=oNL`00vp^7kzE{W&REROr;j(tRoqDCr;Q7jeo zqHenQQmnk2;+GQJ%)UjF%?u}P|EysS9mv?7!{h3S%qQyD$>YQ7*^x8jCr@YMk}c8- zwWU%)V|j}dZNZ{;&_joxmI?;5x1@HL1)uV%{$Yrw$J2TyZEzSIB)XnHO2>%pp^a&$XQKvls5&%DSwJbzVWuX*;J zCWL86Rh*7`-gW%~NX4q?0B;TSuR;u9xd!x2qidjjH45;2_kFEUxB!p)|KT(15KNNr zjb&`VMze+ym+gS-x8;+?l0}#cGT-ofV`GHBec%T`*rd)jpp10#kd#%kQyNiAc97_l zPj80}U_#0?Gphs2f$Rb~Jqvsl_mOTsq@zSEpfswQT2XiCjqK!p`30_|90~y2CT{sv z5iS(?=no)jXel82Bafu$(r(a;J-cs?-Wa{@YxE@Q(zYeZ558Ud9_$*qyKAH_^(<{c zy?cK=`u)+mZ|i-Z@-Q~gh$U*HPvz*4~xHsFvty0f@jKk61`w-R>7K#2oI%-^1yd- zaqgRsfw!2Yq5&m}P3aqpSUAit*Q;-u!pgvMoZQ?xMU{RaltHiL#g*A9BRd5X z=CyKx@wxS4iB-Jb&SZwEWHsupRj{m?a!JW+P-c=&6e=PjeQ*Zb?-ZLjcIpdM@74{) zhjOBKvu;Zssgb?lJP#jLKsb~YjW;5DYacEKBlTdT}8xtQR0o z`JM~InUtzitK$M0fEni6ob!GPfkA$T&w!7^s+uoDxz|;dz=b2y&IK5Pj;&n6 JVchS`@*h}(Mg0H( literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49a731819c3886a46db09d3410d3e10b939a6162 GIT binary patch literal 7477 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17f4213d0777f55e97095eda2c20664d87a761a8 GIT binary patch literal 13858 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b5461e4f87449b57c8b4bd810278218ec02a7fb GIT binary patch literal 32709 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

    XMwe#*Lv$g8jIpIBEV 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 w+IyK^N3WCD*(>mhAj=irKyR>D9b+D<@QBhV6U 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

    !I7S{BS4i1|@R7s@ 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..e8bebdba6d8f242244bf397ab067965d47c5093e GIT binary patch literal 108032 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%0AHbpwE%ZM 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 H#ex3;_fXA_ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 0000000..0d5bd7a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,1984 @@ +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import codecs +from collections import deque +import contextlib +import csv +from glob import iglob as std_iglob +import io +import json +import logging +import os +import py_compile +import re +import socket +try: + import ssl +except ImportError: # pragma: no cover + ssl = None +import subprocess +import sys +import tarfile +import tempfile +import textwrap + +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import time + +from . import DistlibException +from .compat import (string_types, text_type, shutil, raw_input, StringIO, cache_from_source, urlopen, urljoin, httplib, + xmlrpclib, HTTPHandler, BaseConfigurator, valid_ident, Container, configparser, URLError, ZipFile, + fsdecode, unquote, urlparse) + +logger = logging.getLogger(__name__) + +# +# Requirement parsing code as per PEP 508 +# + +IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') +VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') +COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + # Some packages have a trailing comma which would break things + # See issue #148 + if not ver_remaining: + break + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join(['%s %s' % con for con in versions])) + return Container(name=distname, extras=extras, constraints=versions, marker=mark_expr, url=uri, requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): + # The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as + # changes to the stub launcher mean that sys.executable always points + # to the stub on OS X + # if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' + # in os.environ): + # result = os.environ['__PYVENV_LAUNCHER__'] + # else: + # result = sys.executable + # return result + # Avoid normcasing: see issue #143 + # result = os.path.normcase(sys.executable) + result = sys.executable + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + # entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + + def __init__(self, func): + self.func = func + # for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + # obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, path, optimize=False, force=False, prefix=None, hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, 'PycInvalidationMode'): + if not isinstance(hashed_invalidation, py_compile.PycInvalidationMode): + hashed_invalidation = py_compile.PycInvalidationMode.CHECKED_HASH + compile_kwargs['invalidation_mode'] = hashed_invalidation + py_compile.compile(path, dpath, diagpath, True, **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and self.prefix == other.prefix and self.suffix == other.suffix and + self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile( + r'''(?P([^\[]\S*)) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path, use_abspath=True): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path) if use_abspath else path) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + + +PROJECT_NAME_AND_VERSION = re.compile('([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result + + +# +# Extended metadata functionality +# + + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + # data = reader.read().decode('utf-8') + # result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix, use_abspath=True): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix, use_abspath=use_abspath) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', event, args, kwargs, result) + return result + + +# +# Simple sequencing +# +class Sequencer(object): + + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs or step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + # http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node], lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node], index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: + break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz', '.whl') + + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + + # Limit extraction of dangerous items, if this Python + # allows it easily. If not, just trust the input. + # See: https://docs.python.org/3/library/tarfile.html#extraction-filters + def extraction_filter(member, path): + """Run tarfile.tar_filter, but raise the expected ValueError""" + # This is only called if the current Python has tarfile filters + try: + return tarfile.tar_filter(member, path) + except tarfile.FilterError as exc: + raise ValueError(str(exc)) + + archive.extraction_filter = extraction_filter + + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G', 'T', 'P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + # elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + # import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + # import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, CertificateError) + + # + # HTTPSConnection which verifies certificates/matches domains + # + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if getattr(self, 'cert_file', None): + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError('Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + + def http_open(self, req): + raise URLError('Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + + +# +# XML-RPC with timeouts +# +class Transport(xmlrpclib.Transport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + return self._connection[1] + + +if ssl: + + class SafeTransport(xmlrpclib.SafeTransport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection(h, None, **kwargs) + return self._connection[1] + + +class ServerProxy(xmlrpclib.ServerProxy): + + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + # scheme = splittype(uri) # deprecated as of Python 3.8 + scheme = urlparse(uri)[0] + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + + +class CSVWriter(CSVBase): + + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + + +# +# Configurator functionality +# + + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() + + +# def _get_pypirc_command(): +# """ +# Get the distutils command for interacting with PyPI configurations. +# :return: the command. +# """ +# from distutils.core import Distribution +# from distutils.config import PyPIRCCommand +# d = Distribution() +# return PyPIRCCommand(d) + + +class PyPIRCFile(object): + + DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' + DEFAULT_REALM = 'pypi' + + def __init__(self, fn=None, url=None): + if fn is None: + fn = os.path.join(os.path.expanduser('~'), '.pypirc') + self.filename = fn + self.url = url + + def read(self): + result = {} + + if os.path.exists(self.filename): + repository = self.url or self.DEFAULT_REPOSITORY + + config = configparser.RawConfigParser() + config.read(self.filename) + sections = config.sections() + if 'distutils' in sections: + # let's get the list of servers + index_servers = config.get('distutils', 'index-servers') + _servers = [server.strip() for server in index_servers.split('\n') if server.strip() != ''] + if _servers == []: + # nothing set, let's try to get the default pypi + if 'pypi' in sections: + _servers = ['pypi'] + else: + for server in _servers: + result = {'server': server} + result['username'] = config.get(server, 'username') + + # optional params + for key, default in (('repository', self.DEFAULT_REPOSITORY), ('realm', self.DEFAULT_REALM), + ('password', None)): + if config.has_option(server, key): + result[key] = config.get(server, key) + else: + result[key] = default + + # work around people having "repository" for the "pypi" + # section of their config set to the HTTP (rather than + # HTTPS) URL + if (server == 'pypi' and repository in (self.DEFAULT_REPOSITORY, 'pypi')): + result['repository'] = self.DEFAULT_REPOSITORY + elif (result['server'] != repository and result['repository'] != repository): + result = {} + elif 'server-login' in sections: + # old format + server = 'server-login' + if config.has_option(server, 'repository'): + repository = config.get(server, 'repository') + else: + repository = self.DEFAULT_REPOSITORY + result = { + 'username': config.get(server, 'username'), + 'password': config.get(server, 'password'), + 'repository': repository, + 'server': server, + 'realm': self.DEFAULT_REALM + } + return result + + def update(self, username, password): + # import pdb; pdb.set_trace() + config = configparser.RawConfigParser() + fn = self.filename + config.read(fn) + if not config.has_section('pypi'): + config.add_section('pypi') + config.set('pypi', 'username', username) + config.set('pypi', 'password', password) + with open(fn, 'w') as f: + config.write(f) + + +def _load_pypirc(index): + """ + Read the PyPI access configuration as supported by distutils. + """ + return PyPIRCFile(url=index.url).read() + + +def _store_pypirc(index): + PyPIRCFile().update(index.username, index.password) + + +# +# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor +# tweaks +# + + +def get_host_platform(): + """Return a string that identifies the current platform. This is used mainly to + distinguish platform-specific build directories and platform-specific built + distributions. Typically includes the OS name and version and the + architecture (as supplied by 'os.uname()'), although the exact information + included depends on the OS; eg. on Linux, the kernel version isn't + particularly important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + + """ + if os.name == 'nt': + if 'amd64' in sys.version.lower(): + return 'win-amd64' + if '(arm)' in sys.version.lower(): + return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' + return sys.platform + + # Set for cross builds explicitly + if "_PYTHON_HOST_PLATFORM" in os.environ: + return os.environ["_PYTHON_HOST_PLATFORM"] + + if os.name != 'posix' or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + + (osname, host, release, version, machine) = os.uname() + + # Convert the OS name to lowercase, remove '/' characters, and translate + # spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_').replace('/', '-') + + if osname[:5] == 'linux': + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + + elif osname[:5] == 'sunos': + if release[0] >= '5': # SunOS 5 == Solaris 2 + osname = 'solaris' + release = '%d.%s' % (int(release[0]) - 3, release[2:]) + # We can't use 'platform.architecture()[0]' because a + # bootstrap problem. We use a dict to get an error + # if some suspicious happens. + bitness = {2147483647: '32bit', 9223372036854775807: '64bit'} + machine += '.%s' % bitness[sys.maxsize] + # fall through to standard osname-release-machine representation + elif osname[:3] == 'aix': + from _aix_support import aix_platform + return aix_platform() + elif osname[:6] == 'cygwin': + osname = 'cygwin' + rel_re = re.compile(r'[\d.]+', re.ASCII) + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == 'darwin': + import _osx_support + try: + from distutils import sysconfig + except ImportError: + import sysconfig + osname, release, machine = _osx_support.get_platform_osx(sysconfig.get_config_vars(), osname, release, machine) + + return '%s-%s-%s' % (osname, release, machine) + + +_TARGET_TO_PLAT = { + 'x86': 'win32', + 'x64': 'win-amd64', + 'arm': 'win-arm32', +} + + +def get_platform(): + if os.name != 'nt': + return get_host_platform() + cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') + if cross_compilation_target not in _TARGET_TO_PLAT: + return get_host_platform() + return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..4ee2d3a31b59e8b50f433ecdf0be9e496e8cc3b8 GIT binary patch literal 91648 zcmeFae|%KMxj%k3yGb@-le0hq;dg{!!Jx)2QPL&2NH)YubYozb6#{w->ALj?hI0Tb zfutv^IULt|d$ph1tM^LLe(bgP*4xStt3bli1S)Dki}6A=wyDl~VvT~yA~EOle&*~Z zLEHPee|*2M?>}EO=bV{&=9!sio_Xe(XP%j@zU@)LDhPrNe}*9l2k@qU9{&9A9|*qL*S!FoDk2>;;Q0JsgS!E#|Np=L2Pm*g>+^@! ze&i91{FPlELF?b0n7dSnw8>K<1Jbpj5K{a`{t6`RF%zVzp#$RtAuNQP=%hh(?A64I^Ygs)dNNee8#q3xXNzV;c>_P>vRaEk?dT?X4biy~du%5rpGZV<1M3 zzmNFhrHE_%95G^j>^H-I1F8V$R{33Z_8aO_-fc?lLSFI>WH*S(_W$| zEz50})3iji%A$Gg#qH6Gk|F&Kt#dsmrqZ{-9|(1WDpBu{%Lw&M0}{1yNNwzAKSwdH zR5U**Gx~fn0CfuEkR<$t!$OHl9 zn!q6&MqJoZ%kG^j2(?;2E8}DqR_2m)FOSE|AZ&Toiyeia3pGY5lG?_n`QATWAQ)P~|=!tEXsh zU$OUmI32|X0sO>hxy%N6qa0nJRrgw}d&0u}YG%mze@J;(U`x%C4pUIGv77 zYdch^dxXJmzmH`Af4w&Dz+yxwM~mvw2kB~EzrK>1K%}}q&D9nbz*$4Azlc|z<5~q= zS_0MWoYuw>9sH6QpeR}~%g}S{HRnr&vEDsi%B*t7Hvd((s@{G=a_2XY(c2$fzmBt< z(&zApufh;=4XAR0&2|VvFbJNQ;SVKdEHzo!k7SH3I~W!zQl)-hAmjn|sQ0`N+~8yP z@Rpv}cpsK=zRGhC%Qr^73EyEKAc+(7!Z9e(o>7!?9svgY>>cz5Skm1gzolDU1C>$Q$#bsOzzk^=+Iwq-t^8C&P<4uKOr4fmo6 z-xK$*vIn$9+8f_Hp02dp+$S3Xwf@j>9!M=^+SoPd^XTG3(RB{+HAbG@{odwc?PBq; zW<~BvO2UxFD~Vyrp>?(=(tPX@jHaLxvnic6cb&cA9U|w)1&CX>W$O)=DctzS{7BaXS3D){WO&bYlpvW?)} z-UNLhseA+V_8BQxxoAjPwZ_{(hWfeAl+_JMPNi|kkg`E~ zHytAW_lL8LQc5=ROQ?ozsNq2Z*d(We{d5SH&|^U1W6j9joI}G$D53rjZyJ-AMo{QQ z4i^MmxFQ;P5=a6*cJ*!OrK5Rf7^7$rAO|DIkSJsbf*6U6bl4^R73l$lak^HG^x}gZ z8#0VeThUv*guw)OXD}-x8i$iPBO*Fza5cbOXy0BOe23S0-?uvbI+hCKU;|D9x~D>?c=hFcrP$2 zx~3zT|sZ!mvFLn z@U`oBqzyVkZAkc-l!S4pP4s~RaepQ>A}U}a;eH~CTT1b0ZKwj^K6ZA1H(cpVLknDj(J>*9+R9G)3H>K?yaf1XL)kzAQujFqyC@Re;^qR0g&Wyh&aTt!C)Fq0OntaVW-w zmOs?I4z&a-+PXDK{jnr-toT638u_*^=mE;2*^(_>sHcZ#D{Z!5jgKt?o11;u8F>rM zUx|UH7ezOv>Eo#m6aH3l>Ry606`Dh&0s5hM=P%#|lv8-NWLNi|1&p548KL)|5UH>< z?QsgYjz^!OkzB7jZs;)8P_~-}Nw=#la)#8d5GToJ=fS2?h4d!ZKu~+t-Mu+~*Z8I{ zawJF77uizgQuncjPxLhHQ)C;UY)w4d%akn`h(^xS2Iz#~1icDUbDSybjaZackNWcp|c0DgU zoVMQVthdBuhHUE~^%dq0#wRTvHq1OvsjlC7>8$v~J;AJH!L6BZ#^_reSdp1~ua# z!q-9y)GIq@&X$YA&Nb2Hh2hygmIH$Wk&Y8PkYxO7lmg*T#LI}<*87quqLE%q62P<) zn4$+Mpmj!lY4w_2X-lh*9G5>YK5{al^=rJ=(JG`kdCDoIw4Y3&Q(bNP1Avend|83@%ex?0*%A&donqn~TCUiUGly;CIiY0<`f)6* z>dV}6A^XkeU@*uX=q$bLKaoEM zfzA$s3xYAtpmnh(+aa$fvJ51KC#_RUm=9IeI`pDY6Y>Ek*0F2?@SqSi17gXBc4V^C zsI4YI0pw_)o78Ko9J;;U{d;Kwx?e3)W?47dYP3ScIB;sYk>gUDaZ>59xn)N~U#dw;`O52-3W78xL~nNQ zH7F33hN6c0P*jjT2L&ngG};hq#e?mp>e5WO61wztHHaw!z=0;D9csZNs3qJTn?)@X zXwr->(!_@wK2^$BQ#tF`Nz+2~#nO`{IiNbGkxZpnB4M~N)I;p{%xrX(odt;mqiQMrjqI5s^?E z-%{(&s*T;sCpLV$FE-r7PRtjCvP|h?1eO@rQ8xAxqSQ>|O%oqQrBIaBot2?McT2g1 zr>;x&c5|#+U6=lRr?>YR(4e`o_XWH*j|W3)!~{eLZ?8@Npwrv)A_wR>kOb%%1?b@b zCOa3RF-oITkmq;uRzr3XIqt(CBxYfJ@r!iHj@UI68)N$}1M7261yN~v!+wRK0gg^` z8)9ie#-2#UVuc1krkddxE!YtJelo~0v5(PFl<8XZaxesgwZMJ_7C6CEv5*s_E0K)i zN`_&uwYDS9jYN$`K79GNXb`buvC`ao@Wie0-%Dh9; zM7A1Ph#A=}gsFN+wev-BYApJ-Pdh3dfRMjq_E)7{tGY|g)v7}3%{DF9opZpkRFEcU zIh(SvV6NIEXR;^V=+_Lb(&kRzmW9Mg8ZwQf+u21I(kpF<9q?>Qlk=3SO=&2^qGxM% zVD{K35i7zYHo+u7pVQS=8z}QS#g-ESYFTHGoRO!pryw|!Lh%FWfd@dbo$==hpwSUA zr1xN8$ct9@bF&dvTFSOOL0($?p19xURuW4aa+JhvTQPkUiu?O9?e~+$i0E+?ox!8q zpmZ74PN||EO6c|V?tUqzFCuv!eJrI-%UL>C5#{vCKx67ouwgzkENYUTSGGHH3@Q$?P{XM_M`r8O&R% ze@Cl!K;ZnT_*1kf_bV;xLW{b@{g$t_sGYY6^*TlM>XKr-UPp@C^@+sJB%_H_uyzJh zJ5!ugOB(pao~`%#14=pZpdc5p>#oLdnaP^3gzVxx8~uWdtuvBMi^0-@CHg4K{sb(m zB_f7=dDyY8EWHRgq?}q7rBMa$`UNI}*I*gItkJ<=q<-powd^heV82FOrvQlz5w)f+ zc0dr83bEZD$Qyq+ZyoYy9uS~T=o#*g#!Rha52b`{KK9~b@H#*^0TIxSv?tOvTcq%E z$iXj^4`;Q1n4#IgK89p>cStr=C{4Wv*>7mRun8HqzrG&k;~2Z{dO>I^Cuu53>C9SA zvXshV6KN$kI-~IRx%(StHxJ*AvbRpvUN1h@egW1SXAOJ)GC^p**&#HcX?nKOQ3wOl zlb~*@uP}ouiM+;1N}JQib^sXad~=lv4(#@?@bC`n1?5x2^#=9h`+~*NEcIyL9s>S3-_)fk?QthQ9r#Ss zkFAg1V62HnZx~)rPmD}Fhww~^LezJH!tBk9{`g0*KL-3dV)rBoYidT#E42`st}_Am zIVf%yV0$!`p=B^$#1~k&p!YL3I03dJue~9Y>$>_MKt)Z^Jb6&+=W8AHWizE|P<@mO zB#|zVL~1XrSGl%ZRv`by)fWE~=v7-AHvESLV1?o20Cx4XW6(|1>V*4Mc{1CM!aD`% zE&{s`pPCT=4}6zZ+c%Hrg|anNyV>zNNKW^wJC=oeT&GqKehTwq!*$V$EPFW_Ew)Z% z2MO^}cTAezDV%@=*2nwUU!d&=5tY>`5IvMOJ0zOc4Z)nlY`k0=t@?w!Sv6G6fUzl$ z;x>4;VXiefmYyxVYoQl?fX0A5AcGlzqh<}H2%y69= z94zzZZMlq$d5+pJ>=aeYdBXwFJ_@jPulTFRyunI`16_(u5bZt5u2mLb??KP(^qwc9 z5mss~{{_+}fussdv><1>*!me_wTtfV25h&u8;8V)UPeT~xR#75Fv9yQ1!4XUn`Mcm zF;V;;g!}x)A+51L9s!iQ?tH^qrSZHV&3cKZQP(N=J6p1}_Cai7wCkB#j6Pz;NAz)g z?s0c-P19m9T5eqfq9^?9hp2AQ$G)sE+temKK(cUy#hWPZp6?yfi~P)vo)1#&t*~7R z(rmDc;Z3w!(7c-r=pEkkSgc1bN9me3Fa8S6KaCF9YSC%bJ$5!3^+&g{pTn5kDL``- z;y)y)n;nH(XECJrpzMsdm@!VhFYE{jpF+oN132wM^p?p^>FP2$Pr9N^E|9O}*hOHc zeF*kjuZjFdj+`&FeuN3d)y95@7_4;)%;ByQEekH;mbbB{$C7o-GAW%p!rQC!Y(FI_ zVG5CvY_P1M%-c90=A|SEC@To{WnR0CbbjHw`oWQhf$#bYV-> zYsb^be+I%B6OQ#VGO5vDwPQ|ulIJ1Wk(AFG(4r)Nz6`WrIF#yfCW{8to&rot$zXHe zJjmiP@(h!IfEYKkmN`JDpz>@F<|`q*0?TrIU>}KnA3Yz9P_!E9#xoiz;bd{ZRLUcJ z5LBaQ>G^m!J)e4uo_o9KdGG|D^$$Ou;IC*Oe?4`KzamHZ>)AH``uA7xdh&!M9_NIYirmI{UbuiZ#cY=A(bC(_|i#v1&B0 z6aAdWcIA!q^P2!5KEk>j>OO3!)pm%g85%t&vpYrs|BVC29|6;f`^N`JGrUUNzXaLp zA>}4$o%QY`(irn#KWvo(BHFPu9}j5x5A{l!pjHn_iy`dA{fn@Cr=0oX{%a_62Vjo? z7G|0@EaR1L2{L7-OxTd)=28p7XaWSkcc{31uzOnD9PbcqUL^H@M=c~T6b1K1jKiN# z9BJbxM9^bKd?R=o8%J5x-~B=CIF_xqVF!4<4f~^h_JN3A<0JghR>0Qgql1}i^aQvzva}nPuTE;R6XMlA#Px~!y>l4$V<0@YWB-k zosU0D!McPdCyLvxN7^r@qonBcr>IOAa5O6~wFIT!&lm8J;&!t!v|&`JEytv5w;t28 znigftR>N!eK!rOuxZEKWV(#^j+~lJF&83_Ik+%EOK`wm}SC%1KwmP+290Tok$v)Ul zbG>BMmSeI(!2=Z~Hk(8!AsisVHSc+=cW50gS0GpmNw9tw?W47d9cCvkWO7Ct%>3vH zDrp|cxw$aLa`OTOu0WSzpYdxZrFF>6O-k6!O36zU?GHrSwguhkc2HzrktaO00d#>tHSbGLyYzk*-x1 zml#q>vMTb7;#Vc-jgtMwzf%jvk%1wq=d(94uP1A92A^sHuLKr4DcuwMui*T{NJ9j&gxbWgA6hZ21J;h&I_yUOYuqRx|4q#m##8B(ObaF@3!P}u) z6h4#+weihIc$_ioG9ygjW223kHIkiJ@W4#u(| z*H~v$dL~a#C7vEhOozIv!$1Yzu2(B|42w^-VQY#@O0(5iB|rn~$C@Ikft8tcuZuxe zQ3LG(teTuK$vMkphdcpGJ6fh;&d%h9EZNC^Gm<&3A&Kol7%egt1oy=)S7?it!KGuR z1m6Egu4ELD#JG`tpH?!9X3KSK6TZ|%Z~!U@BmqMJbREY!r(RvLW0>Hlz!+*kIpFIb zX+I*Q@3LpUEeLxGpH-a15?$2UZ@elbX zGZX5xl-q{gRG+~raI2Qk=lNJ4eY!ihOw}^#mBri2?z)6Rlq;4Q?D4PbSTmyKl}N7>iGnlawFcX7Tbr| zILGt@p~O|RHw=A(RyiFV1%Ii;hoDmZbga7S9RgWJIrko;Zu$#~;L{wo0!p6z!36I0^{oPXQ70vxoH*53|M8M`L)GmazI;KnwRdf-D>R z^1j_%J07;kSp!Wi$YOzNj}bC`z*Aw7CSl3r258uVwtkcHfGefxes(#1W6~xs6EI=6 zxqSiVO>e@Lpgy2yrM@JkjvW`2a^mH~a#`xB6H5yu4eyljL z!aRn^1J$>Y2?2fSfxVfA>9xBT?2 zlRZVK8*8}i_lSu9QwVGC>f6W)+0u(Y1$FngCn_wpXK zNExtk9Mi4gY)rD`)uFTEH^}5B)05+o##JEVcS9oRjCngcJm= zH!{t87U0mC1cJYT;Qs-Sq(s3~&t3!BVl0Fz$7%154{*~mvZus}59e3$SI%Pono+=C>3RG$*U4X3I`De(hv^=?G_SB{A%ENUEW#Vcojny4 z<~Ehi^d{m9{I{DD_bf!HGkqSOSuibhrZ3>BNt=ynfZ5%O)sSg?F-;wNwgCua{k97< zzzof;9wFN)4?fA}p_CHXk0oM1wP`w~;d$a>tldl5WvT&G~^mNDZEsjJSbs}kxe z^6G?Jl(M8yA_o;EaR(Mdi3VwolGrLuW_>U#C3T?EPslnEzavc$UbY}w&vBhms)sCk z*2`HW39EqUB^S9`2A#z-7nT{~F*px)A_``p~ppteftWazj zz^B5-Nw-!>%M?~1U8%5a=`!pIh>_jMQRYpEkrROF^d=A#lvkbc7~bRF;~M8c%p*qr zoyU9lR$`~OpTOcz;4u(O6C;n}16B&<&%@9{lvmTnb)x<8Cd9(~Qjnz)yoLHb3R@}N zrm$SeTLn6xQuzwY5F=B7aWE#df!N-0|D`V{yQ}PO-Z*3&CJsDL1?t!E*tuD&hEg%J zl6l5Azbc?ST|B_e!QF79IIgFS>mG675+i3x<7({3HvZGV6)s$F_Dk6kDG|2%Lk@I0 zyP*bECT&2Bv;s)!$QT7e50=X^btTV|9?C-w%v2CTJPV|JM>eVfy-QyTU#LQ!yl`x? zlakW}eReoAw2&v~k0ei1I&vx5B8=e|7yP4^NE28mnxAA6=f@bq(?d;&fgTa{l3yV7 zn2?WZo`>m?)TTn{-$r^Kc$apss~lwT+h$W2soU)8w&`k>lbhnh&d|Ki(CS|Um+K67 zu>qgo4jD=-SkiHN+X|(c7CE?sUAzF$3 zwY88ESObYIv=HIBjD;`w*=ER+V33D3+Y198%=-?XpZ%UkSL**r-VD9^cfyOWD1iO>J>chIb@~hXG?ZZi(h}Oty7&c@psuII z)1>C_^4&k!!_@V5b(Xq*x^jy%CF|HY)LiRi*u=qv)YuEMY_g$FBen0VG6w*YR zxKz1tWy7b@s*jZmJ)SMXL#pzwrBDm=mlqZCyXuy^QG z?<#Ue@mJgfUqo)Gz6Qrfe&-J!!s$z;lGW2p$&T|Urej+-=IPtMBCQWmeOD9 zYGTPP$>j31fN%0>o9(Vra)=6O8692&l7f%O=mSnHeqcwv*=Bvidi3@i*s}pQ)`E`H4u_at?pAU4omB!HwsbP8g0dcdC`gou?p=cMK^(+ z{5-DBaLy(Fzh}5xF*!PZE1wXICx7g1q>^*O`E{2Lz zYxUzGYjfFmHs9SN&sWL|F%t_?VTj)B&rnB{qqKh{YO5gmZ#D8MUO5WGq60DPG1Lbt zciC!(G=Y1G1++J{W9-LfH1=?4#C@e!g+WtFohkS0LwaA)bt~T8G$j3qF!) zUu8>?6rX~a6XZI)vdD?9&eK*D6|B0|S5p)6RgUn0xi@iCtthf@Q0G!30a~K1wgY;B zYl^nXp$rd8Zs1s`d@(H9+@Ec^D!On>bnS1P+Bno$dB7&fCqfo##WFklQMDkvgl`^r z1_Awr4L`)dCfXE$m@%NW4KB4oS_lUSPI93Q>`6C@{<*`P(|u-q#MQuaJU1J!osbg0g$DJEqRC>zpw^hrQKCzzqQ7Yit^ZA zng&pjBX&5_&>5A(z6t2u#h=@3q-D;C+CCTXr7q$k$0$)c3sTlQ$x*2c7j1tNP8{pk z#grlrh#KghYDTR#qYHAze~2;%v?Wl=Co0%jlyU;bn*p}`3`)Hm3VMgVdAKkg-VbLv z2R(Q|~VNN#@t8>Y)x4w(k~;|%gZfjwv+ zxEBs60wkEJBRkL+!5~&G(S^Li*hIH!o%-G30=5x*(&RRGQ5M+-AWM0Z=suX(R-=2k zC3B`+%xM7!=cE;La)52Yzz(vjM>4^#sgF~a=$QewhLTdtPzXDWm0tEwfQ$j_e01-q z81+ZZmSOWmp6Fw9D3NQ>Y3b zbl6n6pF^2uGpW$f;VM$+_#V{L6CrX_RNeCoLVKR0$1mye0v<_w3|Uok&NK99na>6> z@agvk99CFL+pwB%==L8kPV7DY^ zp>aEJlJd1!I4xM*F3rXt4*yB`mY1N2{`x7*vO-io5BduQIl-)!t-v zM55>>yOyEXXmINgrEfxik}j))mazK*bs-i<0{aM)s{Ya;s?%S8d%D_J#uE)$`*lx%Dla_=vao)6Lhsfy;CmQVg9)| z4(6YWHf-|Ta=Tjnmb(0Q#LG*xTQ;cGU7gD}JPb4xvp~yXASYHFT23E6tUOp&eYSCm zR(%!()dFkPit%>CdshD=dl9+Rj8s>`qRw&5GPZ80HCFWm^(i1GOu@8Lfg7U0-oh?r zFvim^trq+sQ+3MFyj|+@4cNT4gG{4LZ~#;o?e#scTpDZ}4H~5sFbPF-1Jo{~3*5?2 zPtYkdEJKrg7Blj@K~Cdu@Ox0txW;+5J1Pe*lv;!WJ#Fh zGfKNgAmPcGLn+2?!bj=3=(b*DQgV0+@hxC?43p=G_1?t-I#h9rIR9b7E89CO*RBTT zm3lk8sh6ue^3)xhIvzX*;x6lW@FpZ~_@1h~Qn|vPeZEU%VeL^;}R1WGs_86)YL$Rm_&=;Yi@H2L>Y5arauxaiv zN~wjgj2xxeu#1!H=1?An2E_dkFkvS%2z%AHKr~K^(i3CogT8>76(>`PNwLW8C)(U> zGhn#N^0T9VK&)#3CG{bmj@N++{A?!*;^o-GPWA(Wp%jp@i^%xD$nL`JNG%DpL#u>y zKaGQ}9I$eM8M@O9Ei^-G%+O*pRBeVlX6Sk|RAGj$F+){mXpR|LTTb0Xg-oCbkn44b z5!0r!BZPTnDw=Q}O#s!!W`lZ6g4F%XTL4PYJYe?HY?z7xK;tu=lYE5p&Z&_+4~%6ta%s$B z3$YafTNF0iOIM(}p(b!+z&IU}=)LDCb=>JthzIz1I32p32Y8pBR>}zi9@R7~_RuhZ ztS=`(_(&?{1SD{$!lK6G!Vn;>mCcksOCfZUTDIbusY+GY+zpK+R& zDlZ^{jXMcuD5dOLDa{wgX%i+{S;NFHy#S>fQ`5CTq+c zYY^eaG{jC#0K3qnJSn=&iP$AP_LXF;balIt=8G;okep!22_Aw`E9c~Uo6daM{KngR z$O|5ms%f0$?!Er74f}EPI35y$<^)aoIWWw{>EQx6ph9aRH&IyO6Q5x~X25vMYTkf0 zMe{z4f#kJ5)<~ODIA#Md#!3Kbl89jUqkGAbVz4_{MKa%i;Dvsi9-v3yZ=N22nnzFv z2#Oy69Td)v8vEyAG@4COAEIxZLQsr(4Igksq|8;@lLkl&E!0torHifY&5O9*@e{bx znwH0^0`ajU+L5}{T8x%tDYZqbT5N^a^wPXqzqtRt4A-eZw8Bn4b?|62%B6$Ca{1USuJ8E z31LD&rhV}Wkkec!;RwC`N^UE-4`*2b^ja_r{B`5rEVUKj3 zY9^~JjxD0)V^le8vy54!CNq#?ObK?k<9E(85SQ5=B{8W1I}sqM?RR;IN>1v{eI)+I zIBq5F^)I1{IOKIEs2;R|h1?g#mb(B5b>{>|1uXecf-=pBmni}x0Ah!`Q;02p1r3^q zi4)aHGR1l6(P*TdG67eaYJ zQ2b7X zR9{z1|Kj(9R5&`FUx6BvD3P!XGNh%hwq1_ptq-T$fvdi3`f|zcDW|1+1FMZjr~n*P zqcmS@-9@%!8EBY_z-UhpE_jcvBlj`u@5y}(q_08UiS$xF0u>Y>;-p+hCWVONY%Xw` zOPguFf8FI%`2_<;AXX`|N*begwuo(G20bW$)n@Tx3=?k=B^C6~0s@^H?XC`H&Q0ee0 zbE2?}P79V|sf14-<_1pcIJPGSef(>JL@T0dWi z(?ufF13p$VomRRym7uk&J8bF>ySl^C{=Rcudvu5M`RAX1iIf2JEr5$(KTIq5U3r#P zr{@-VF#6yO1P=*3&W^a7<-wFNYVMnk0XJr7;6NvX%HT7$*l;N9q(|Uh)HFR3;azR5 zE&QGgkGr$s{I1Af0ooBE`CHi1CY3~=`UDZ;zGLD(tNYm2NyY6RU-YpYN)H#_%I==V zd1}`(3l4*{w8^K@U0di17i29;}uB& zOp&7iAsAQ*b1l1q0~Hb79`;f(1MLgB{DazhSijXIV`ronX#N!yb{(J3zqQ9HCfbrqnXFyW+X|J7Q?_O|t;n6>jMfzD zIm#DPwmK+S7_I4Pb?Vj*9H(%<(a@1{oy>&OBKIF#1UbyU(TC}6BRES-?B<7umT!_~ zC_C>Gq{-UW5SY`BN%Jg*3$#>rJ%D4-5B~$+m!^KWHG~ZPIOrd`l9_ z?VG;TI!2BI^%ag`R`NZE4jNz^&>xWG19VHru$-&K*l*F1*htxp%AjG`dOy&F#)>Wf zNR{*UDs3g@{rGJ7u-RZ=k_?vs*=*41Ww9lMZ*hMo)>aNwk(l3)n5dWepm)=tps4E* z#Ybp#*>vp1KUx5OJ#_e<0Y!x6aCLesgtlrS-h*#feh}3?23w7dXR?c&W#o&jtq-Bk*?kzibeMOUO>7BJR}^B4-7tP zN2)!MkLHnzztce#pFtxWcci2ig&>ijm!PuGa_0qoE^G*LVe>_^xwUK$okm4XwcT+!vqGF5|4hA2p&s!<>Re^xChu5`Z_uNZ9++qDN@LA~fqR7|?Jd=WV~g|r8W zVu)CW^GvsC4-&}`nv4+4qiMgxpxZ~e*gr!lR2@54=a6nFaAE*{mD3~lGg+7M#*;S>Hj+Ji*@ z@@>>x)5?BAb)xD{_CVV1qa;=ZK-~DSW2A3)nteN7%S7$Rp%O56%pst%^+Ry4Uv3+X zc2Km^$-BDK&%T71z>Qid&pPxmoojVt0RpaA=+{czgVMZ!x`>5osME5@&;E)}n3#jG zmke`zM<#Y7iG{V!b$m(6-G{c3-1&JgCg5I-X55d*C*aCW(A;)l0-nxZqv%a{C1+tj zRRpu}OUOaCta*@Frp>IBY%5B~U49lse~`Et@yg<3@DQLcW0YI&H5uXn9dl9o^5|%b z*zyoaR*Mrjj%alsdkDp7a-Vi{9$fujmGjZiXw~6*<-(M$wtA(l5ZnFwP5fL;*uqc7 z%%qj>p%Xxli3*2gg3s;jk9?lINoiTW-!cW^7j>4w*81NCLq zABZivkTAHR&D}1x(Cs}MuA;EP{%nmMB1r5Ky5HTNroCInotGNFcen_pa$nyQfaX_; z)Fl0TqpdtgCJgu2ByfBv$IkTgI_9MADb}j8g1~8xP$|6m(8fOUPaUj`hzIKqxx$8K09fogw(tn(1 z#<_6s&@Q31()KkkX|aWdJ2^>v6Sn0BPHSA;{s`Q_&k+hvHri-3aGC^VXEfbxYtrw7 zKXfykXVb$2tM%;YGH&ru+CE23_yR7W;JTF?FlLrOpGnruH5dFRs7v@IYQW;rvy_BY zw&BzMwK_=)P#-;;z&hzpJ!6@2(JDS1!k5AO9Ct%PO@hf`4Nj|Iiq{7?6VYZH@#f(p z;OImUHo|X|rO(48xMdb}&pc#_KFF|Aa+{G>QV#lQj{3dn;WvT=D+lw?;$>VnphfNf z7+35oxRRLOSPITcfLjcCL7CSf{SRx_{xxiLG>;ltd;=jgs|JkD|0%|UCPuhs{Dj2O zWVmp-&R}y5_U}#z8rqNxTi2_NJ??Tkv)#B-8|1zXWz%1Pww-jV5Pj_9(*P#Uz;Tsc z#mL(}&vb!EIYrQBC66J`iC-K7Fb~0VV!6IMr7@&zX{X;K5ocj{{TXm$r?5(gcC6`r ztLseDg*4go3(_s6GHm{11GE@M;2jGBaPW8t7mdK@xTT6O0O7AH!e<#S%c9crCAlnT z(rHEIRbxFeD)lz({H)VrDfvz_B?K<)_od*_pnkQVZ3mx0wqfH5tThWqJ_Qeo&GWOF zD9Fe9QBDvRzG-bF+Q~CCFLZ!t`Rco%rMVk-7LD0PjlmYiC4MfXDsV!OpUWa?ohEQU z6+fEsVmsi2(DKz)Ln&Iq+&0jz-~{C=yNvU{-=>-o(Px6_`joOpyPQWWO!UXq$t2mD z1uwhCAqLqcRO&4*2=|^;NBG%6UI@GtXf1582>^mSGj0j(#W5uBS+)Xgpq}{C`zVP% zW)a?$kp6o|30nV{(&^Yq&n3;^7n84hLt++jO z^vFQ+d;#_)Iv8-#H#|^6W^pr<(Qo zZ;l828ybY!e&l$-V4(~GXXm)mKYHEqlW{&k<2rf&7eF5I{cLHpN4y}2*}Coh)f<0sKJ^7^dD7VzJ4^| zf>}sXSA-{5q-_W05#YggJ!Uks6%=908r*XU*_i|<$9>0^39xt3Swbnxg9RPTT@9aJ zVoN4Fa7`4R7sbbv_eE>_wBzI2gYnyH={mk-Y-TF90w6sr=jH?w51Wa`wndPy+@yD0APUPe=k1 zKmoC(iLm2-l_j`f7ni5pTu_|25jV5AFYcHT0Norcv5ds7{-ytb{wnHPU65LPE=WK{LG`CexMDy9o(4;rMz%jZEX$v!>xia=Loc5;_JC6 zbyu~$)viy%W+yH#we#ZCk>bi4hv4l&@($(EF+x7^@`=)%-b`_q&;Ibv2=C8?+8_Ud zHwi9xV#_D^e9j|AKBRXVrheW4e#TNcMh8Vq+CgN_LDvQKbW}>sFt!vJTj05V0kbcp z@prMrB69_ulNVbwphEq{mLK2)Zt*{mYjDjIK~k$q{48dE4@*V3J9Zxe@B{ZJ9l_bp z5eBV-M5oN)`XrHdd2B^LSo{MylkVjx#CmQAKZybj76)A}J)q)5cjX#4+r)jArE0F8 zM|(6%5AG^+W}#;=C4gGw_(N8IrEj{nik}b)53g3eed?-SFvK*rA5IENAxwvOkGi%u z!i)vZbD!I8cXQpOVHS%5LM>pMM*!I?(6LcO{ANINFZ%#o+f#1tbdqt`iV_=iI-Fqe znVGL0$*hN($%46a>&-au>V8vf$p8`veKGQ-jSlxYq|#j#B}Hj%U5Qrjuz0AgDr^f% zQ>tL7Ix^TrLqhq}u)4|#a~54j{CzW4p29wOn^*G$UP-5pd{k4vRy%SMZgWl?YQ;Un z5CKm1FSJSB4b`9@YTr!uQ=Wrt&+KRXlcpMK-aV+0dGiu!DF5pgG*(nAa_510)s?vm zG|~F{z*1Y47L&fe>&En^3)#4Egl>Ae3m5k^H4Y1{<1{h44BI$lAw4HTDYsXiaA$gm9vO=3$gs)o9zi7n(c05g1c zlRH~ZZ?fBTYg6Gxt*)O=?Z(tPI2oRIcZvtPoC+ZCIAl*J-Tw3eYF%C#6PzUF4ucu=X z8MZ1Z56+9((n}rI94&KKwb8mFBVC{CuIraGc*4`@CnL;nMEC^0cjzG=Z3Fx=RERD^ z`avbwPS4je&9-}}k!gDRE(sMX?jV>Sqhbk?V2d=`@MKbr65ko=P+_#FfUKhzmKaSWt+8I z_h{lk#WiTs+-0pRuSv%eVtdxEiJI8DGI#DWT1BKnmoF>s)+Y>hKLM9Yh($ZgH(Lhf zrns*EBqLD?XXbuv=ZxMXNmpRB$qQ4LdG(Svf>PZFkIsHfYvd)-_ZviE2N6@P7}3!E zpif*e-`Zp>Ph&W*VTF651|68WuPLQB6-8BQYcn7pnF62n#>(y~| zl~r3BdOp4vv9wTbAI5@mCS9PYlx1U+kd~*;a5ld@fS9O-a(kV)Y>snD8r{Hs32%?# zk~N%5R;9RP9&W5oWJ|w>S8=^+B~D2Yr_jd*e9YA{J1R0R&(^OX&dD@^Bb;@HiNG)3 z#97CT&oYsq{wW5UN(?jwV_M3!4P+1l<)-Ob^_qaP0ESM1NQ?gn>WE4HaQZr&beqh| z-b{&DwiKUgNjyv{OX6-ZavObY>=WW^@sV5sVlC4{`u9zMA^8wm(gx*~!t6hn&8@mQClA8vF=S zXO)uI-PE!lT|lw?+@e02eS5U*TTMJ;&-Rj>B?re}Bgs6ww1Lo?lNB_kJgi=@)34t_ z#}aW9G$yCHwm;iyY*mi>oW{#8xeQbFu3-srid0U~0(4jb*Tt-~?1W zhBr%4&-o(JM= z6Ye8|LjmwcsVK6=l({y-JwgI#9aU|nE`izVV%L}+*Q;?16Y>-7gngnAq8^K85_=}c z(FzVLJ%^9!$i9^CdvWEkPLpCUkPv~z6P@y9@kOSo-w z5^VJd7~B2w|AgCWS=V8z-{0b;0U8o1UK)l!im9Ej470Gm#Y^=_GI^6a zGFk+>L@j-&$*+p(*Si23W znXv4D*|A`B0|+K{BFk^FJ$0}RDYP{Zc?BP|X-LB4<7~`u1MXqz z4RQZubuUAbx|c5GRrem{&*$j*cn_ZS?$ct+Gk}L@uJwX?@M*-A@f_mA+YlYSp{HI+ ztllb$`;UnGn!4g1LFo~RJ2j5$du>_bzLt`H#E0$e%(hOAP!V*M{w+k+M5g#q4)7R7 zk@GvrG^RwUxoFc*@KPgYdrdl+6fh}66o~g=ZH01il1r*mm{nR>+#wagZ#WMDF|rS- zS$hdQz8{}Tls;|o=SRLR@qfj4GmodSAAgi`@L)WG&wAyHE97Dg65p2U9I6Nu2DN?! ziEZ#Hij1#B46YN#=l9yO#r?mB>rofZ)=^R!0Y6L465>~;@XoyiFC`LQIs%iVKs=3O zq?EB3DIEV0iYqldaidhDBtnu$N!%r2mA)0H)sSR1iA=ijgLvRl^1I~m)(gpKtSRC@ zN3=;0XZ)ul--Yo<@Xc?wyjGrqE11(3$`fGTO=bj*;&&5p!eyp@(@cFffjSvGQLkHg z>IUpG@{c>kmU8}auh_DXf5>7>G5^>mw#?=qtHqWn^zkgQ1t|CyUbjX$hjm7%m!Yo+ z=H2!2ei-F>vp0x8ye19bEr;>sXZq-TAD!u2DmlRbx0w#)V&r`+Ig}%Xot&EplgZT@ zXEKujp6J0L6vHpMQ4jXxQ{|UaL!DM10s77ek(~D3;_o6j7@^jdpvq$8I3i6Xh4F*< z9!--olkwU?%1weh{V)*;yfnZu6q+ohtr=3EqC&-%3y>99ri|PDG5x}i044DV>0;2THdX=Y{5N0Dy(G$NGbr>@y(2{RyRW|6P zE|aXp&f;M~jS?-S2~QLs8Rd`or&#VN&r*ej_=or&LqlBJKLezRcM(Wplla5GfDgo$ z*YH#l8^wnY@%ZnGk9_zg$)h`^dz8dIQjwClSB(4&X(l;VM5)%C;_c6FVaW2)4HDB0+xEe)c3bs5LIh zgKC7tI_T;gOLv^3&o+@!M$Kw^%PKKod=%i?vLQ9{7(SAnZtVRD0^*?~#$IAIXb=h&uESShaEl~1l+W1@(_9DCSilYdgUO|;Jdg7 z@yu9=su75$>#vl@Cwl(M822BgE zBcloR4L~J(*Q7oqBWS)Ikl_+6DJZ{r#gfZeK8k&&x{B@GktV`>shzp z=OY9u!`hCGsB^_UJKfVye5V{F*@8}Z4qdBp=?Wuj@h`{&13x%%rJf68k}X`UXTT_! z7cLCet5ND&{5k}l01~u=-S{fz0<-ua#j2bYpL57X`b=|D3KyEQ(k<*Ec%dl=XOHABa>=riv ztJwdf9OQyc{+{*}H5Xf}cW8W~x>#chu^uFVVC2ls7xb%?C~uZN*BsGiiwxe2sdn)O{RSCv+Yu*%u-%nxkaR_|L0==; zO2A)AGUecNC>E!LjlJ~2uHOTQXL(#u<7%eH6=G;3*oWfWNS6aYPb&>eB5`pv(PD;3VvYFj<~m(=kOz(}+a07ZN%yLuF2+XzGq5CN_RxZm57 z&&G|ytOQK_he*b@5qS_k|11-#K=5!IR*(#7Z z>0;Qa!`M7bDTqs6LO$yJki3OljF34nNt;q&O44S>zo%%^f^_U5phoW8Ay@nqdp=*_BdwEF9AU7nR zR=yDX!gPVMuNIzT?qDiAyi_GYd#hmo)^V+bq&-{5B#x zf-J~DKi#&}AMi0@Kaq)C;cvuj7G1c5Zts+ThcjiU4*TbSMe1Do6yP@4nNF8dk@&<7 zZ8(37lb%#AlQ|T9l5Jgwm#L5bv6;{F-zb1b!#uKP^uqx8DH(v)#p=s)@pEMOWtK9# zoJhX=Yl}OgtJ5(3yz?%a#l0eOkhh5Pc4A*BhO-##4lpvAgFYD9BceSNMVg6yl&RR& zVGIMlx!y4dA%R+|87g*sDs8DP6R?3MG%wJHuHx{_zdZ@J zfudLn>2Crwvy#?K^5^_$W6E1IomBucMjBl)WR5htNR#huEH=m4p7FpFl`($UrSzf->eQiDyKT34H2&D1`_<+`0@ zvd4*KJN!j)(%NgcsS_csnwHF#=^jGw&~Ikr*P|+F$9J)j3Dc#0S4L|Zd^sGuW{Ue_ zzDkyHy-CiAMkX1%U`?ua?8-2_j#f)03P5o!XK>h>uC)C{)5St5z3F0>{I9@d>$m~l z05JWbnPN*E)u5h}Y>Ttxj7t67&HA5tLKhNf@<0XgV+2$|r(wYrnRHQ2<>%r>(sK4LUA=N^JoHNUL}q z?Wn>{i?gKV_!*jVY&-e@JcnJj#B5~Ft_(EKY@C59FV#{#hYgpTAl6DF6G^Kam2p2L zDzayGqzObZ%HWLWA`&fGw+6j#RSE^eGU6=g;1|S}%^?3^@b(ed`ppwiCGht0*S5}B zh?|md0t!NIH?h20Du5p_vyiQFQGsm5rCHjlA=)UZt&KLGXW5w7Xs$l$C`YN+Z~ivz zyIe3f-=HPhKTM0-MC^uM>tl~&(;O!%aYAW+GP`v+;3ovfX$im)RPE^nSE;28PnhM& z%M8vKW2&B#+}*GpzH44WSYPH!O74=R@k4$kXaIh;v^eHJneg~({eEmRnX_hx zvqi|X(xvqQQ9zk`ZN6F+GSD4I0MOKgahJV6lh5bikT5+B@&U$x}l$*D7?p>gvn z{RSp6T5aI)%^!GPei>2*w**Q#5&Y!9VAmeH-AdmGM@7TZqmc@H(4dYsQVPt#!j{U82)_g7!u5D@9V4TK5(%Z*gM%?R|^JXltDj^`7;y zStcurk#}KrIzWbih}S7k81y;?PbS!=%zIX{HB}o;IA5joSc_vXA#>Yr@o18kRY~)z zq(XKCIw>v&&NbMx_%gRuKG}n=?ufq&K(+e3J`Ht)P$0Ad(Ds=Zz<6*xVbyu~)`XpO z6~lG-y8?eR@aI&RM}D?!)pmd;iso& zK()J!Rgw}_D5x{pe0+5ZIJ<&l8~DUeYTRzh2CcjT+(o-P{heHe!Y?*Qy(cgX`Y;l( z=R<>~2iP`YJd>|`+ni(ARW3%CS){qm8?l@+cJl1Vg}h(Sc%63b-`fuwPVE`Lun&Wb zwcyDw6^g^31U2eOIlsyk|5qIJ188Bw!n19FDuhY;-`O>Y>J)NNZ~bZ0bGF(T@tmzT z>;!!+t9%9pXJ|M8J8Sgvbn=x6V&A{%xTSSP8txtaN;<#9IjyLvu&K5B%chNAR<%|e z^3H+wCb8u?a1RKSCT)TP67c`H7x+mu;u@DJ?1jD11Q#i&ljK9W zqAv*^uvw!M{+!;kb2{bptZJNZ%knzGgmXIG?NSA15{n?shf;~xY=qLx5MC6rVYP)c zTst(g!#ixz3oxx5po{M~7i1$YO}F7GBnPk9@=Nfz%RoIm@I@3OPaz1|#RbEhc3>1d z=1G3~Y?AJS&v@j14#V*4#t+_uPxR9kT-a;dQjEhmVq^`X#6#X;mr*6Q%tW9{j4a2C zZb}}e?V$Jsgs_IdPlm9K3y3(*aYv*RxK0%jD-pqczu;rg@(8FLw({SqzLwRTNm5O0 z*+SG$q)B1;LWmKvALCcrK6&}DAg`uYbH6R}Z$|}RLn1)M2k!*qqmtr70emD&|FAe& zy4XT~re+OJnUQmjpav0AJL8#rs_dN$tAkKJjE6iGHN6$9k|1mPKkR)8Tvb)O{$f&8 z6iiJV%A?{?m|~8I!y!O{Kv7h*G(rIZ5fILCD3zl?iAPMEXEU{I{IndJ%rU3RAsfsF zt*katNoi_DuK)9_z4zgOXjb>T_jmvITkxK>_8Q;!UGJKwmyId}uK|=NgRns)(%vR1 z%M*U$zjWce9nGa;|6oODFWsf$VX%dmXL;R>9VWXI$|48hN$kDpJ$K~Wfi+rz-KkxXWFa-D5)a?VJuqXge5pDgVzT?ZnhWi|I{}2m( z?d?@<-iD#-xb)oH;cKZ;lgv{!$t+i~HS3Zr94Eq=im20IlPrYU51ZprRiP?!Z8e$w zk}9`#r(-z}vVY(}wtNK!U8q6!SKq*{--}x6-2^?3@-dhwSI4L|@5j)0#b#s+m!}6K zcC{H9ONjPB|DMmfX3wW(7A1KAyHKGPKC&5Zj`gy z_F+G<>lqbHd{72)FlE9y<|p1@Ic{zzZUF(oc`iib#WqtSEnLci^h4*KuyqZcdmMKN z==nkB9Itv!Xd`h_6u@M7-?%hBvS`|`~=ynf-4 zj_zXP^e|7H8NpG*?Vc6iz|wzH!{BW-w=eLyWQ={suo}wPbGH>$wy%~QCd5QEe7L9X z!u!Xr$L53P&giOMd$gCF>i)3+XF}Ie&V-;*T631HoxT@bKZX<#Dqu_kEdL#+c#E2}4Jeuu)J@vzh1r6-&A1M?s5$*!E{zNF<27n?UPgu1 zQolzn@?~EwhD@g+8HS2Y+>&8jxd&!}7Tg?^>SQA#=Fj#f4p=iE>E|5f7dq0{?(+&t zso0S?^7R0;6{d+xAd|WRzmqtzhmwbLbIxtfLteYW&d>10%kc}I z02X-i4XEU|HFu6QOB!4Bt$)!s{$b~DNw)ix&*_ato!#un*qdXA2=<9!(4K$Isns&* zzNPnBF`e-m9gE7n^Re02%WDr7!&lvld<`ml0?tdJ2T@-SyW;?Fd~`g7QCfYReO)-r zW6@AgM7wYp?m+b_+N~mg#}zr|I$eI1FAtnl#Y=@m;VGA|rMjP@T^>Xb8(iSJ(B+Ca z?nIh4KsF#1FaaU`MSEbiElN*vmuK}zF>|xv(OC|5!v6K|Mn|1098{k-jBVdQ=7jN-amCXsQGV&m( zIu9EEacXrH((U#DQjxe=EvW3%`*GR^^TS4-{Ho_kF!Lk?PVhm`ORX@c0u}=n4fX1H zXyGugq8}CaPAcxb+gOBbL5nalr9stue!!AMG&I;>G&TvRMYNyMym233(V&4C>f@B2W}lle0o!9_ zi}%re)(>e1pjL4Xio8`F{!eQPFD;-uc68RCoyQy!h>pMVwN1ER& z<6uJV7m#sIQ!ygU%4pcF;19MB>kGf=oDK_ZOux1v@PXx7x}M{6yO`_hhAES-YG%7t zS^TFXvv3Zxa%7eVu4hEd_0HguWIF~(7%o{vMXwdaB`iv_U4w|=-a#J3u5=h$tsqu( z!9_}R!Fb?%M9ne#)wDuoSW+dW6vPlKv&gAcL!E%k1QhL^3d>*oILytzM>F&euGpH+!s zP8aJ!&GFh0U*dQVFL8`fFL9vF!uvXy4$@!ZXr^7`LZ;we)o1xkUrS0a^{hCE=ETIx z6PM?2$Ma$KKPYUt~?diNK$)vjf;|UtWxN=l&cG1W?fzMtLHqN@$j-Y zU%^}DC+<*MX=D9EOGZ$mSgyIpD3*q>2e=9Qm_Rkb6?S-DJM_ey`(pYB;_@4u&OKAK zS32=-Y;@T6xgOTis6fnxgiZ{yH$wT~mC4u{9OUf7H5Q(I>WcLfdm#FCTn_Vo3#9?) z*X==&Lfm&yiQyb4$w$H3e1-BX1_ykFa)|2{%6>TKTl*EtzJT~QF=*{Q)*o8xC+!}ryX*>Jy98qGT?g5hNCqGmxK>BrQYI>sty|`w`hys}pVlH_K(Bm!S=tG9Bjc-jy{nbXca<~TZo>XEmL>!4faKV_VvdY48S#>7 zs=#7H>em?O6zvSEv1VwL)*A1g@~JE(1#R7>pl!7jSSSU}l@tV2OF>&o0YrdXhYRNo zoG&XeP?_1=J@3QzU6}Wi@4SG0xDUhjTABBdge;M$eamgvJN?KXQbGwpN?>DCh(rQx zF%Vh>@dVcrwU%glbY@jQH#*Ky2eZCHO$9b7W*HCgm~5)x=yzw^y4b`$qFh3nj5ZB7 z{b(H-3l_85DBVwMrgS`&qV(pPm(l~Z-;3a{uXdW+42$-?(t|Xda>aL7?Ng<9)81El zi1v=sduuzD-d1}<>HW3!N*|~_54~uoRnD+#E0k5F_K?z}wPi|=(@K?|pv_nMXl=IA z$7$1*K0(V=`mI`u(o?nZO3%Y%u7OSzHabv}v^KQe zSWIJpGA^XiM;RB>_}c<{SW4qbWxSWh6Uz7?jUOxHqcrYU#wTdpp^U3&d_@`8(D;Hf zs!JuFRK~5eeLxv^(zsX|_s}?B8Bth;HUmb5@+;ORuDx-zQdCC|>V}UYur7=Sp zyU{pN8AE6srHs949Hxx@X+&8D_5*3`sf<<{J1b)(jct@Mn#KSa70Pk^@>C89G@eB< zlp9CW_`NcYqwx!6oIvA;%6Kb{Z^MY8rnwrd7dzW{XT2~Vb?XSu(5!)%@#=B?;1~!H8urcUjQaSI6m@hxE1F=w|n?M=N*J=!!Zf6SHd2>`9<}V(=HGHmEJ)G zKjQT1PK){2CwgM&g}L>(HZ3>1e;#bmc2)GkoGTWUycc>_e2LCg@+XDFkKw~OmbCaMZyTnz7x{=Kj9y!b$;=Kv3TcOcbyK#GUGQ$xH`xJ?Tf z5bkMj1?F?lR(tJ0mE`hmlK*zRKdZz2B8=nGaX)VcQ#=YKAPe@>|w=Z7)9V%$$=lfKX2B7Sv^g{^tm=LG@5r^aRpuVabYN%XeR?(>L@d9%VRCvcoxOK;(Rbc5qJ2qpFj zl$P}Vn)?I$tKSg(hGM3l9nu%EIE70b+G$b13-{~jJ zIAhJm6Hd|CmCIL{u#qCc=_PyDcm5<>IFM1i$;Q9!Hzq2^zlfN$BNn6mJg zVu=cjySYlbktsMNct=N!zDrB2_*_&%da!Z5WC{wvqDIaQq_WpmoO$JHVo6(kIqP}t zE}Dg1o-Gz7^jvfgw}h``Uamt2!NA|irNIMEuY4YcoO9lV4Z%CCpq2_-kd6FXBnl%Yg=gv zWhZn4+2p_Y3_5v5n@PXGu5<{CD^9LTRY$rj>U8585wBAL8HtDg;DaIK7RBG!-(Qr5i|JX&F;CJdTpePTOw*lheZ#C;dxen2w6n z)4^MGenw6&|Ed#|E`;s7lX&!LNTnNPXe%Y_h1Cj^)D9{=J<|N+bRI zm!E_*_1a6(>`&2LfltR~$_#e=6H)B$1x31~h2n(s9e==w^X*<|f|VeYl|;i6jy@N3 zUepXnlpkZJIex>bWF3!PqOo--F8Lff|GaF5$=VN`m3ok1oT@D==?dS-LlsHg*%-m( zls^x}3!GqD97ekx!Ky;QiAw(k*&w^TlM8hmb!UdUAsr33qSY)Az+K0jB1_zFA@ULa zo0@rj?zLaXzX$0^V*{hmf743?ymrmsOpEiR?3KStStiO& zZOT$;=T6x$Qg);Ash4$C#+eUxT9)zCAk2-dUk$RtocAeV-*knCl6tTGBn?jjk*JH3 zvj!Df{?=Y+#*WPx)0n4SDl1SR%gUk=ZSXc606B!?!rSnsn|>&oV_Lo&>0kT+nC{9| zkg+SFthf&Y*Oj$4Kd%kU{;$$Qk1dlf+OV16RK;7*V!hm|jBW&WR15(w49PS3 zas$~Sd-pdBK3=m>(o(dV(u){bCThlCq}mW+&o0`m{MfF;IpR=N1aY6j5BIZrZvaxX zUtlZ^sTg7u&tLI5zM`jD+psdXV&zMTp`(9mH8Kv;UQprNGW-S@i!5rtn4eQ260E8U z4)gI!{Vm#~(>Zp>Y*?L&*78M=QVLQfgRgD9pqYQ8TT;4PXI^}Gce|n@Eh}o$a)nmla@O8J->Bl~MIU#p=gr3*_a|x<7=gQJsE5aGdM0W)w8K84 zIS?rHKpPpN1!8c0uhYB z3z9M3vl=;@F7!l8fICqAu&E6v!ctyE`n;wDH!Ib{@mGDq^b)6E2b-r~Log|~h=*UD zZ)-qG;$3$feYH2?$ya~p+iQoYldtOF>jyOszN*gJ{O=v8<*FwI^=GowsaNM*&aIS{ zJ&&fKbi+aZZa%@^k~QkLQvLF!=+Y8R{l24qSE=8f_|=vb;O7vgAaUvy-{_qNYuoW@ z^n@A}@)*D?a8ajTd8?^;>NTYi`bT)!)Q%ha8qWo9UgM25yvC&sZb-nMAl&%V&RMzb zybs>4_VU}ntM{hEIV(>4qcf_YL*?1b!FZcM`wF@A((Mgd<-OrH^gJXQ=Y*zqk}uI9EH6r)uA< zeX6#Mk?5yteceyh(we7gPhwgrtNwU&*zU9-9xPkk@;Z8OTXC`jKESob&`L{mj_RD& zd93rEJTCth#T+TuJXafyt2xvGs=aV+uz}vo--NNKj7IPBmt1C#@~2>)uk0NtT;&hA zoIJ~&FgtLrwj1`p>Y48>tSa41OfZ98n(gw6gSE6QzX>+Z5*m37_D$npt#TSd&#N^! ziSk}Xyq#;tOGn1rT*b>T^g&dNG`q*h@A4mfiCv6sjN`WqTcqPRoT_#FhEug4z+NXv zz*N4A-omo&S4J3?Sn|;Gu>3hV=`0B-U+ywn%I|@Bk=MY!_NyJYd-S#kq9bO61&fTZ zx$rZvm-2DF?qfB1D+`fhNz9$qo^ClYX{INsL5S#}VHG9`xEBiOyM$jcB-o;ba)3N@9x zkJ<21{yKK}QC803OztLh1^kQ0u#dxcHn}6w7N^eSLU@7zzR}o4v<8C$2hZeE5)ne^ zg`qqV;m($jVEuIM<8X50IZww_JKGypJ2{nTW7n(Q2UVUdgaqgw138te zKaQbmqZRsTGg{)X8-90}kU>PKd@uZ{6SM5j0`Eeentd5g#GiW;ovPZZBOzOe|E6J8 z3F@x(vXaw?Frlo3r9VOQZ;42G8rIfsw<>>3s-oGVVO0y2$KA>wE%ksn^n`HbvzZ(& zoiIuZf)CWs#rDyOq(G{3vGi?guDV5Tr1T~!de)bBh1ob6OV0_~_Aim|<-A*8os8{^ z9KgA3m47%HE7|cshm)}{11Fx0oyC)}*Q%4TU%~B+$}ES@3%!oBWgFRoI4W)}Dmj5< zyq!vO=HbZ{lst}!V$~U0X0=6~k^K}VuFd&6OK8LkS1tyX4~DoH>{c}jPRf#>sN2x( zWE5w&2?z2146O4y?;Li{nN(HY00`6wh0|y7E6N^Yp6G|YA0rcR(ExsVe3I_yaf*s8 zds7F_*iP21R4yfjDrcUeq__DhvX$^WZ;*3?ve~7dx9#>kN{y=Aao+X`ctw8U44z79 z15{bnY7vN+Fjh>09Hj#0C;D3?w;5~9z z$@_>fWMRn%&~}%+gJ0yNC~pcs$Y=!cFKNm6cjMYIi!D%R$eC@p0K|XGFm=XuSk*%n z&A>-m8s}?OY2|laXKPLJjN-HuIJ?f)D(;!Wp(FukYn9L$XKU%flnS1l<=I*yU1mRp zqlYj^RXMpItflno2Wuy@cILraT`*h+YspjnU~SYXb*fgO2tMFK2{_>>I(}`FAzJmF z`yHVnwsEqIR!;T1%Ok{EVU1DeW$WWK6&9I)4ptI)=v+ltRrNiAd0Aa3^{TI;evAY2 zEnd9FUSH!YxB^#yVpo;!hI*d- zAn){6JXp~XtZendcV?R(u0T6iag}@Pveq&}3;YEcy_q$FROf7u$qkGPr&9U**g^c3 zDS1I1OJ7=R1keSH=WM&{MsGyEnH;WYr8jNp!G?^`UO!zk@~?1|6rO-3d2F-e$n12d z;xtae!v^OpWf=_#S@k$CQ&zH&AJ|Q$^}(?pRkPdshALZIce#PCH853S6q*GpX~u;s z8|+V2bSx@UL{_xc1E72}I}M_6a)SMM#RoCxdV?q|HtR%Pz_l+=)g04<2viup!j;u!eC`Szvw3P@mzT&{eHqHNm^d}KwMAnqAxsbyArgyGk~i5h#5=E#_~Jox<6w5 zh?C#APIt`lidNc6tk~<^(4K=4$muAXn_oFSkB#ciF~_xfK!)3`v{#vgK4R3L%T^Bw zY4NLJjU6MU;k;D7aZ!w)@9ywG=1xUZe0Z0IH-{6fSZO=MeT!0XYq5uM@shzJf9(nv zLfi$5$BRv_T%mE)Zs2OgV5;JCbF^jbxW%B$|4r<=Ejn&BV#Uq`x3MPoX>yR4 zY3q@Nde^c(PWvD;CgK3)+{$?&xH@#!6;9mJIp{R5lx$*LBiaNk9CRA5vkb=mBsE1~ z+cPX|ZsnYV>ByrBOVLp8^RpT|u}j-Gz0{+qo@Yg4UW1PS8Au3^B$ykqQj=N875j0) zDwYs@#$jg{4`LdxOYu=0W(hAEwY3PH7+?$Ne>LB=@x?YAecuue0OOFEDxsCy%cwPQ z?mcu|bNki0r+WSyn_zd7`@1)o@2_~9bo+0tm!RzgKh?!Ib9rEX;q&+``qg7zCrlF0 zvGjTmt3m$vZ65`GjU1cRK<457ChjsS*$Us>B^3~+g5+EJ-{OHy-VTOGV*bVHXmyMe z@8vhatWCf^1O19ecVsw&6b5H*TjEai1f+zhvpj01=3g=Zo+@5b6&N?$t8F?cXdmc> zwOW|5B*$$w&rCv-vk{x4;wzn{dw>+q|A%*CPq(feBa9J+7D{%~FU*0!CE)BgUWf9Vgu&lT-+cct_?^*UcrYB=j1I!13^4h^?e3MB^WPQk8&Qy4sE!3gvZ){+g8Cah{^j# z`?;IS$AH6G4P}d25TTX4C(w2BTis_k4=2=dk>6t0l6aEd8HL-f)eY5w+AL+qm#0v1 z;{95CAiZ*15wG;KA-;+$o%@6L;B^AeaTSelyWd{_hqjhQ3Xket1L}NzMNkrDOuOw( z*77{6AKmr8Gyrw&RxMi=g`;NcFyzc5yn&fT~VpGrFggz2Q3a@ z8)RH)eXPK5^S0u8Z2Q@<)+}#qI$MrHfR|-)5)(6RzF7^l*~y^I$pg(Tg3l*tZ(~HK z-m-Lh_rp|z{fDB?XiKWNUt7hG3IOGJEU%J3jVm$(HEv%p=IWBCf&vsD=3pYO631-| zVV~R5vIZq;?Is{yEZ5?Wx-ntLY$LICGjyh>I(K+(1t|*isluz< zbJ4g1($))Ch4j$w+5$Iqa{=%1$Hn7GS}SF+4cC?wns@*Ob+ljW_Y zJPt}%GDbvpv@|4CvESYdPD7QGo~mt2X^2zZxB%o|4(5Rq++>MuirUcgiioiD{)_(r ziJ`sxi+_P$*86pA(i(9K>x}W-Ca8`+p-#nx+-O-ndYvH!GqXHz#;&s}Ep9W=@Y<1} zU5P{up4{3SX>UwKO5lR63FCedU&y-gpbpo@9wjZqy@!=H0s5i!?5DWnMh@{W z8V)VX8}~So8=4<*R6>bS9UN4~ln29vXzj?&xt?c_l@0U6k*>uhh;fh}$89hsWO*BL z?0HPZ!O6@Nri$avey@}^EuHR7_Vm=_{1`4cU_5rLwmSon0N?Wz8HF#F;)5B`xWWa6 zg%#>J(1QvUr#Mb88q>UZw8vHUtJS5UxDwv2itUJ-i}kxT@e-l6&broH)wXzy?_s1| zv@^g}cL(CoOs`L{zKo3X#ii5OSgOUM4~M&gC7~I7xZR2@AI*V|3xHuy;oW+X|-A0wRqP9EA-Va~c+Uhn>pzcJ4smW*4dvNRh8r|CnMpQS18< zQ=e6@@Gy$|0VlVVV*S8ZJA}x2zkU@+H&M73DD?V7U6-sSBHg0?KK4dhUxf@N7Dds1 zi9%noIqdhs>2r{5!Bh}!)OcDi3?j_S;r)vv!AK?(h8lrOCfSHue~vc#q0*?zj@xl0 z8R*%s(LTDJv@&|_7>wqY5j+%Quk2_)jU!0@#k^M(N#P`|#z^;IJXD<&1qT8`O$ms( zI-&agWzF?184dMbx7Yqf;kchX$$#T)Z>*{4lPZVK&Hr6kG5Ae@?tp#+bc}{=ovC{Y z+tt)@(rJ(*#@pd+SQghaXi-zgm-8L_JQg;s=u*>mfn%R%h2}`{F05!=?c!+fDBZmDVx_ohbmERA=PuRC z`j>1Is2UCxeNnjWyZW}Yih5;_zyeKWZau(oG_|>7E%>>GO>KR^2v`*+!KyGBR=Md` z{NyCyXU47gnU@ELDX=TdgSAl`yt1@q8D6(6^p3$43YKKNYz=s@XXvmP``K}~;GwYB zP!vS)!Qg!(o!dskSL8l-91?=u?19lcr4(m?E(x?TV9 zD)N=8hAf=XOzSwCnQ}{Mh&C-1sO+jh%OA)p>8)}2RJ~pQlBFODDK&o;-FK0W7X|yG z$Lx>j8ztfO+nA?S5!H^&GOKItT^OC}Ey)@eGa*#xu-|7|v=`u>)q$y=MW>ow))EY1 zxfoUseB{DQV8kKAW zaC={)h)L-0Yj_&(YXrZI2R88HkMY391IHElsJknM8}C!F6~u83HUXFSz($KiZtohY z6`ZWD*>Gha(w&F_TVTai+%i>#>fO(Yd;MWGu}W*_N;ecQZ8UPRt)jkjMH`l$_U zwZm9OZ6m;?P^t=D4`Imj$nqSk9U22<^+WZxc5uTbOmAb`i{2CU#*RHd{Y-BNa!lRS zF>!}FKbeT3R-?VPcx>6lI7FW*8{pgf>=ziLB%b}k7$#xJ zk)G#OmWKZ(CmVt z`DtkadSaSwY)ZCWnTNTV!?UwR3;MZGrlx&#Ayo$K8f>Nj)X005N7OKe-|uc8rg5Wm1-+Qa1T?o#GRD znF&8>z}X_YiXO1dMr_yMD;@FW;G5haPPCyEke?}l3ptgeaHRAwlrAs&Z*|B>g;P9Y zAYR>7?lQ;C{J!3m-#LhZ97uyda%&1`wIGE&gq^IYPB+rXhOSdfUNBzWWg2{%*qbtI zrqk1vPTg|FSZd}s<2Lyn0enZ}oB2ZC>n=Kn$t&X5{of)Nwdn|P(P83b@~tikQfu-1 zdekju`C@LTs8XTR!_rk(92O;Wlv@**>ioN2^mD~$;&FNTHxp^qo#KUg=$>BRzmXnG z63gh{Nw1G9y*$XIp7%2lS3csjgMZoJ+Jz;@EQ{3~)8+7b(c2Z@S}IM&z&xPR>F8NY zj))CoVm+YOEv%;~GncOKd%DRF@w+gdY2Y$zIZ~dX_@AQcF1-$z`ls>#9eJslQmW#2 ziopew{_1i_?z2{~p+03jngRc8c_x7xlec=!OwO2jq{kEDmOqy-4~$ipLCOW&Y_{Hd z%x1jR<^1yFO#u~Cz;83g0vEPszK5Wf!F1R@rz2l-6>nH;ur1BQH_fcY**dYM(>cS| zL$BTSFqE!pUQn*shgy3ScZfhA2OU%V=sa4H7W!=;<6aTyw?fCR2O*$eLHi?C(Tw)c z1EE)bWEHKTKLNcp^bqK6pl|)qD%wKNgMKybp|^vc@qrbXLP2j2E#R;fa*TfNdsejA z=)Xe04f=ZM=w^!Np>w8WG4yy$O6J2*#fUC5Dns3D$d8aWG8+ zr^#)mB0!_wzv_-QgfB}C1m76*6y=NUFKcQ&G~=48xH%KQgH`z2DMTTh-hXSa;!da$ z+W=-ryc2wbp9*G=g z-NAkr`;%0|K@v5`Be6v4fnptm9g)6?Xe?uI} z-^nPAc-R;2trmgEaMmoeqPuon_Oq2eY z4&!01%@&09iH`eFd}X?Qj|R5%QQ&5mg!EGp1N(bs$kFiS{v8j#vKMN`n+W%s-%Oi0 zF+KLfmAZF1VQNogv>hv&|4nMX{v<QYtK;`8J?G)sq!!- zf3nKIv`P8)lziP!N{%uj9f9}-;$@ryaWNi1j)+g0Ef5Fvd@(d_l88;o5s4`_dwwb$ zpoZpWD%0o;dwzjomz0*8lV*I3w(F+&+#KbaXgBl}8^a2O6YwwKPr#3WyYTSz^7g4$ z-?u@-Mt+T(_y;t-qFM76SGEjn)w)gFtFCTmY2Tq^P^Zpax?Xc_aJTEa_Xz2EeXrhq z`u6J|Iv{M|put0|;WtD?MhzVn9TR(FT>S762_r`(jvg~MY25gmZk{mlmgHMgCQVLF zOP`XFnKd^!x&wea6gLvv0e7&fIy0B{l`PUWgvHn-nzV5GRv@n(Apdm6?Oo z7kE_vd3s#lpBer_>i??EpOpZn)Es|iiu|fJ2jDuhzoKgUzdUNIeFcbWvu;vX&I`x< z1x3Xrcig$Kbdhs$*^;}KF1!1ld+)pdfd?OY_>o5+dwls5E1q1rYV}i3uX*O#=bnGz z#ec0`_tMMjH*DPW%B!!v{>J7vw`|?EeaFtXcJ1D?ci-FZyu1Iv!9(vIe*c3HKRWX9 z(N8}8?DJ#CzxeX26JLMxtycbB#rHq_c(U@RpHH3s<;>Z0zy9`n)gQRw^`ABb7q93q zt0DNGrvHCB{eR5=KWm6D?yef*|7rStFxGvDoIzQ@hX*EYOQw~W82e-JC0$ccGTjq?kgxoxPp0d-w^=L#qX4+Gxq}`A^D+%-D ziE3uN_MCWE^lCYB$i_IGs%wrtJ6ku3dIJ9*7y}BgdZM0ZfOk|>ln+&(5R7f;+0s8@ zTzy~BFC-)>0q4&w7DcY_tr@pM2{9{g7L+f1i2B0U7n(2r_^DJqhvN>%dGlCY( zv!|#r0moDNXl`hVEhXC$m7kxRZ^_KD#HHACCTF03pO29i)zFm8?6g#iE!UEpmzHBm zo0T@%ZcCYz%?|#U92)4B4jHhd$W$bo;j7(|4|RC}Ue$im^2yl?B2n0LE$G78 z+sWWQXWck@=4=e-05}Hc_+DQ*F=uMJh)yU41)>W^{}#h6#N^x@TYhe~B_ky#H9IZe zQk%Z&Je`teLzZURER%Cn(=55^mOOKZmSZ#h*Tgq1e_Cb^QyT zB{{cpsJLwKu@3%&U5YNfJiGI|MqZ_+sVsMQx7Z8Fj4`8!Ue~{dUzK8)j$JG%2KJN` z_mFkTL6`Pjz)CDl&SazvT`T+Rz`bS;)=1$38A-{XVrS+SSh}XoK+TkyZb_S#XPbS^ zrPG-NkuoZ+6t0`5AjeICrBGU?rA^Dl6h#N4G<9&5D@z@Am|LMx{Y_Qu87`ivv0Ueh!fuy#f2HT8-FNh=>At5{`V0H$?gDCOZ>uoztc}M#{cFZk+r8d^OS?yh)pS2t z3y(DeYr5kyEyYjb(`Yc}rvX$Zezn7gM$~k#jbBl8P4^>i@gIZRSGC-0=hHi}7Y`4# z#DchL-Ys)8yQf2ck;AL~CAgVu<9j;6O7AXu-Q#&=lvTV4aCfgAzR$Rt?zoB9#ZQK- zkG&mKCO>P3cP7_#ug!03YEAdr@$XC1-I0X2A7(S1+VP}LuNhBm_q7Ez-D{`Q^6r}M zwZk8J;nMEUzF5<}cKiXGt>XLB!lhEr!FUjL0rn)B>OB+mY_{z<4S`?`y@OmFDk8UG4?BDWEO3Abh&CO3llb)TX#}+k9Tq(i}3NokU z7%_~_txihZ;sO5{0vh8Nj8KjdZxRxLKBo~xh~}QKjn7TBXQvIt@L+h#G!P_KdyQn@ z-3^QCsHb?v+p}$%H_W!Bjm}NVOihc(z&gQX#)H9VzRjM;U`e8cHlxuu(AgsHGw5~2 z6pm7$hf39n#wsSiIaXBzBlJ}GOc)bOY{ zb0nB!;I9vuqcBeH<(ZI{Hnp0=oxO~Fipj~d+hQ;V!2UtcgxmtRT$o7wTtS|~dQSny z46}_<_?X0~QD%BhLB@?jw`hjSnnZN?lSGt9qAef)F~D|!@&Qpq2c5Z=7#)`so)Du3 zu7Tv7p07GJaNoz(C1!qZW)8Zm;(%v#T1uYU<|f`&W_?TBk0Ofh5g2}DPEN^A1baBe zAVR(3(o$xmU0|Q7=VCsjlUzqihrP$-WGF#SjhZzXOI8SvOktv8HFdkU+1(bRfP8Z+8*jN$JUWA;{Fqei zo_7z8>^4Jp@<~E=DnSzOD(dvw2fG(lJPD*!WY8QQksw4r=IMy2c$ym`Pk?1+s;W6K zOC)lMi!N6>3&l&`iP>pbN4(A}E+Rf94-yJ#0R3CNMgcPxNFmZ0ibhiaMT)8sqpF9D zdbollag>OE%+TjfHaG)W@ufM(4WfC-Jmik0qq#V|0nZ@#HjxF2wL2#xgo{ z@>B!=ZEoB&-M&#g;Xlb^Xtuo|gAv_ePfy2~13PiSaRZCo{Gn(i?D-INy)>j^f9$lpl>9Uo zkCVt(H(rfR$vCb#k;t(BCCb_bnGQu=U%4<4 z4={8$jeBD}+`elY=}!2M`VR*#mjjd+zFNDk)fSBOb@{pyx+zPXTcFt+5D4%AGzMUv zT+QcW23*bObAH>;u%q4(KsT;Im~M=hVX6BA7%#<~c1;0S7(n~>0NVEf@SCNC-<-AO zH>w~NW)yVVCmK3SKI0z`VA|OLx=#aG0H`X|9xycE3V+f;{|*3go^R+2pmXn85rFQ+ z0LHTnz@>u6jqerEiO(tk(|Z~~f13cLX+MDO9|7nd2&Rxf1oDN-L)Too@#*?D-7jW; zG55df-;Br9&G7$|I)?8`t$)BOE(iX-xCUHQ>FHW7s{Xxr{ddKF@kMDJgNrYU{&!*c z?@#BVB4D)G7Zm}^zaO{%#uWaSi$a1A`dgmfzN^r{-MV1*g7yaMo;s!*R;KME03z$<{YfHi<801pC|0vv#Bz^#DM0Q!#x34YvbC#Np%_tUx3E1k=Ng1Z#>dI-U#dN zUtu3Sl!G0o|D)>9_PTl2QeK8K*+ssN0v}Cf@wum!X{OG;qr2*k4?+m?CIPo>{23G) zsyFr&mj zcNfEk4HHR8Ng^{dQ`qfx;h;x{1OE>3;DZl}r=NaWy!z^^V(Zqe;-il~66epKXPvKn zDbM(Tym3H#*E8Kf_aHpT&0-(m$|EeIpUZe~jrXbr$L4=8*$jB&8kkt2*%O zF?^k&2ZjHFszvWqy>o_f@caCz2{G_cm5uoE?eoUo=GQ#>&H<2+PX72Fd0~DtG63ov zzyBz?zG>V$2jF8dyd(Z+9`4y+_n^Mdy?bC)hv(l>e(8>I--i#B=MY@YB>?~ZD@VU` zuIhkeE8W2#`NxdkDimtS@EAyXu31~s~a1S=*}vBg&QMhdfOe8{9ssZa{!Gq$ z_wJ1|N;ma^Me!Y_M4?p}+eEs#;E;-NRw9Q(~8?D_` zpOSui-tBT@`W8{R<>Z$1skx#MS(Ls77yoamNQNX#E&TD98Tvha?%uD* zj2W{fJ+Ak2(37XeP9GuVhGaRfw9A&8$0UnFxpK>fF^uokC5*pN${)_2T`QCn-;Vn* z+O?Ab_1j6|WdLXg>*@y65B(GTbv}_tR>db&OqWodI&~7k!NJ&v8X^V_8YIHQaaTi3 zjN;wMks}3eyu(FoFEDIzN?OH7+KP2}g}Tpj93b>W&z~K_o@5EQX zN>N!^DbAift7L_2_3VKbJOOi~5E|d5m`_{_;Xz?;6tm@Y@t|BL zHpq3@H+9IYPepTt?~s7LU7iqwmI@KK7W0@0Kcy0V0ohb6Lik4!{zZh}itz6t{0X=4 zoe|!eAjD01LfDpKPxo3Oo6#Wm=|t|Io|f@GX5mGz>?I-B?Gf_OF}Ls*gzt;+aR@&N;b$TI5`5)>LnJ&fIWm5dQPKw_T zNmuwb2!9>I4?*}*2tOI&XCVASgny{16i@Y(V*N-dwojMhz%nU5T_;7wq3ZCy2u}{Q zK=?KY-yY#RBYZc6AKX-maXqD&K2nOs(-GG)DYmSW;^?93@HMN3WL>#iMnv2YenWVq zvWmO5Yp0+N9Xbzlc?iEDHYO%AGB#q!knqUl>$-O7(kW=zu#U-whsYQ><39$5$jId2 zYv^IvFpJ?H8y^uBI|R{3MT8HzAw0PoJ#^~Sp}pZA6K@TV4UdS7KzL%-y<2ebU;{^b ziH(mn)zCJ9Et9*$17is4(B9G!NX9V!*w~mMvB_68YZVB0c<5?)=$wr3L&6zBL~L@K zX3bjZ?h41C4i+F8S@bK%s{Cz@(B*!Pm$3(^JSfUEiRZK+h8zOpmdo&zw zIFMH{k*KZ=_vFwX0S)STcr=X$hD0$wb_fKi+C98qpO9V+ynL^Sfn&rCkmcUJBOHU;-Qq_^ z$Ak~485-rIri!l-IqFxrweXz3W5{uIF17+3I{cIVTp{A94YIDjoI?z$)t|d`KgI0N zjT$vd^+)EV4RiH9o}M*WEX<4&59UXR^$ViJ+K1aBFOP{Yzx-01IB`N$R8)xXzyDtR{L@L*H~8h3U&J4O{2`W|m0}(G3Wt7ot7m(( zM?=>S4IRqm(#dG(W}~6I3k}^~velNlwbG0-7>8F5w|LLdvuk5GrJ{PLi zty`lI3DHW;mbMP;)T2j_YiVz3-8!&!`)k_;G-+}*`opa{bnVosOQ#-91N^UPjPKU% zJ9g;;zfA+$^$6|}EZTOswrh{88un-k4^0|3zPfGuPF;I6YS{H^!@^?edTkG1U%##h zbIlb^8n+H?d2NqIzP=3``1tr;d^PIWut9@hj04(tYU9-wt_X4!zL9=#+vZ(52KVR@+y(d}{cD4RgMx$G2P^v8 zLUBd0eS7sO3jJ{}OnrDnUs-_%^tu%7O+WOHaH1WKFG552T-*xq5ElIYBjt(E=&=j* z*j?ZQGgJQWP#2^AQfU+4Mt~OW+O=yBoe%`*+@L`NjDT=VM{x>WXlyG6GzOR)hw;Be zkw1(Vqnpc88I;<@80di`b6-+fde7=%zd?mhw)%^rSk2s@Q-=ThWU!lojZ4gPF``E`f^m@%{SjX zq%Raax4}H(T^L8pEnBw8Z@>LkqCJ(Eci{w;Ja+7u#Q0m%9W+Rc!9UY9tsJy|@!osy zJ-%(*w!#~3xS6@T=nB+_yL@i&2dHGz3z0`VuWsGDYf6HGd&6CV?RvoryDE=@4)O#ScR zzhlRa#mL7Fkcnc_vVHq@MFZsn^G%X@fO#e*FT{~$0%cg~hYuf?1eOiv2X&SYmK}z9 z`|Y5|NZ;-?@T!+Fb^+bCRXut+$it7qA9cMnf%uzX=7p*MopQo*KzT{} zT*_fMbQkdf_)i*;2Yug`@_Nva^AXlNsxaSu2(M(msl=-Ca`DGJDP?(auU@@6Ko*Kg z2l7GDW70vLyrdkF|8>zpzLV$7BgzfspY<-rYzm=*8l4@kg5>&HA76kM>9s%>1BE{7pHh{4+l&SCkEt7M5|!8Red3!_-+W zs1m=BayV#+h5Qc%ze&R&9PSH!SEnHaWdZZ#vg;P*o%QJDs8+-ub@4LH@%KSKEMYlg z-BK4Fly~<$G3AOn`A>JY3k=J8#$Am)fig-OK9e#AG(>@hwLiG~xTqNq8_0(*LQJb) zfBjXWov8t&!32|zy7I)N#hs4dfB#(`di626dQPl-c=`}|f38&_cGEXfj`>Q;k;kQs zCk-DPXduRb!|FK`J${-mX5u%UOqi@pj>GmBp)vrtY{zs6U*@?gh4~XF)8DKQ#5FBm1ojm zl;`fOlTfF2LY>qeG_-p~uUiq#{8}_9{5y2$;Hv-8#C!=#0I!1lmBPfS{<6Mxo|8|H`07jF-f z&w_^4pkakg$Dhw)+*$z|G`u(h8d#oLC&i*pGRre*Fv~M(Fv~ORq^_?k{Lj|LpXH40 z3;J0uAPpwero${N?sU*h8mKlEhRT=b43ID07ABvW1sY}ylD|}bCqF`QCJo7;0c&hB z$*nxIPGWfuM_FK<)E{*c+h?;*>aqn-g6R0yu9sR7fAsGc_vzE81Ntb%q=WS$b;=Cs zV4sINX`vn4TC-n9H@3IzGf=(e2$dV>h01lH;RVpJ1~k0!P_8_E62fyCsvLAqL!R_! z`wSY)K1P=}^}x0H&-%iY{{aIAbY@WZtUdcc3Swh^27j@!9yjdQ|XERS&$Gi8B*&iZ}l>Z$I2g}W%;T6!ZelBQ0 zSzvi44J^;BlO967N*b1uhO8Upof)7ZJyOm~jZ!oaPxdj`KAU}vK4{;dE|7oL8EnJY zk07jBvqnDm+;fusQWMPlpnj=xf_Yha@bMJ6t*D=TV?Jm=S$G*V{L3iMtdmyQ2g}Fu z2g?WZhRAz!tn#kxaOngMcYuZkpkXd(psL-+xCLbc>Vo=*_(K+y{6nsbNy{B~+##QT z{&_`@NdxtZ(LtIhTMVlmdRcBS?kBf`hSx!ZD$k&Sb&^@0pFo}TX#NoSK%Q0J0~(fq zhDD&E1adS#Em9%MIw{<(kMT0fJ=6vDKk+x^KP)V)GjSlE*cIZUf%)Q2$E9fb1Lw$8# z%C~FDK0jMA&(Z!a!#;-CoSd9}#FgcdWnkXCd5Q*i`KnDz?L6T(>jajCKT{v=e9_g% zV0kVx%5$x7m+b!#f98F3bTsopKJ&~os_(@<4dw^rj2SarG+c^~OXUgiVV$&|b<&@e zXV5@Z2e0e0YDGR_ugx~pow7@pE;2beSz>R7WWTPUpg`JeHo185VpXm&<)i8y_J!)A zg}i6mz`BZkA@)Z(9-v}*KJb)XR{e(Y#>yG0eRl6-JYzjbs=loVXnd-ef`n+ zR`_3c-F1DjwI>HxAXlItt@7c?C!drfMvRcyTO`ZM$|Tm5< zP_76Z!;l8nr<6msh2+srXQX`ZY2trI?prmZx{rafz&-}cGwY;>XT=l!KOKKz?ynR} zq4Oy}ko9F4_xHg*nCDT3CEO(Ls*@-alHWJpc%$m~U_XqiKZ!eWWgd|R6KF?%Q}#H{ zVc(8?ckm*;mjEoVRQ5tG-K(nCW-@5P=TH4nnHjj}AUN0IMv zO3Z1=Yp%IQqHnEmAs*~+xC3c0!K8ya<0DX}%(z*%zWdlD`9_Hq?X%v;VEg>s+z7ep zo+Qc&zx;9-`F+{*57!LOe)zy9j{5931FeFAfo$8Nv< z_VdIO`$iS8Oq(=Zd+oInd)HJxu+5;%v+rZlL41inWuA0$Y(Smmfn|i{!ORotltK1Q z%(jPPZ;qcKFMnzNlVywY4_R7){bKL4oMJ^>&Y3eudje&N^Ub7*xN*)I zd+${FjfjYlR;yKFcZ$jfx-*PP19elb%ses63Cjm@H+9Mp#|)G!_5+!B=KKcm=W?4L z;Bu6zKSB3mECF-?4~tozH*emoXdr($Z;0}tXh=y(k#TWxO17{juka_Y$#c>|yjc!d z|InUe1j-Nl+FMW#SO!=o7%%H!;C>$Q6bA+dT9NNhV%|vu(p>Z5y3XY&)qgN$ko_N% zuf*rrv11A!y^9dg&$k;)^e;Ht=8n z`j-mFIRfxWL)|tJZR8x_z8!XV0%@*$T<-c!E8@%k59@!F$0ht`d81BTnD49?Ag8J? zfprp9x1y}8_KkH7<(o1`{8Orni((ii21?x9Q3XR-mEvdPI$RW z;cv<*b$1yi4JHsb(nT3!S-A7gJ0nKx!1g6lez zd&&}d&N75L<3Zr@cW`&%?=JtWBi!?&t~?=KoMWFbVS>cITqWNo&)s$UqbyO@Y0ox* zxSQ)E7$ZIQ4{%rbGYxb6i?(M8<&td>>0lWopICpeu48-To+sq(#*G{0!w)~KpCl1`{roCyWDoqE$SUF@_;+ z#Fw(Q1$8HBF>y!#^r^oo?>g4iziR#mlc;<0`rD; z%m>z;ET_yf)Wb4->GM+F|KJ+_?z;NzCvg6iEybrVgH`}AJWBjIRa&i z`mSBORJ}_cu)I>i=FAq{Lh*?(dEM>$}7#I}<> z=9rVbXFjkmVCDnAS?9B^Wj%&5g<97D&HvT7lMW^S?y^x^&dqPL+`8+Ob$-(i^MW!@ zK9feuI^^g)`Uo2GitQ@*Sp1c?iTM4Qx&j`!2jSldOoMwLxKHCBE9pSvvSsGXDp6ma zA2M_1ah%Vo)ODED_kW%4WyI%U=s5j?^q~HsZpLTE?}oR7(c^oop&$PzdZB@*)O8O- z_cHYQhVF0Z?F@a0p%)su)O8Q)+^1y$SOI@?pO!a*vVTjUJYTf0h@74ez$~~t18`UT z=88(~`9MThr(#-x7z>7=&5un>OB;#)ekA7n!(kr+V4u4Mz$K@Q`?GUW&cIqv^oRNy z8|Q+#rf@yhb|zqM_`{zSN|(Zcw6?`9{rxbun~pMlj`bP(oWG#HEk|4MJ?f>S=$}7{ zd9p0@fg|C+C!hoR8z-k=jf3lCoC~#L{+4UrTrYnAl#~ZBD~Iz)R6oN1#ne@(!&f5B zbF4pEM{>MG90=wbhSBFgk9zeK>fFPqH(z7KTr=f*BiFgOzQQ?it`B{1TFQf<{W8{i z+p(U;yg~}*p2iXf_MJHPWc$c^oox~8YW8K>PoW#lR5xR-iff)+YvURZ_b+gbit9UE z_vacL)y0U1eLIc;Fb2)Rcp;1JFWWVabD1vt(d3Cizv?^bG3viuFS`kIw_NYzTG{$a zch@@2T*Pvh2bDg@gX|*^hy#K3JApi5`}M=uN9EH+W7WC@=fkNc{ebnZ@AP%kMBu=6 zU+#h6+&7$dh(#$1(4cgY$P;Y?}!t z4(xM~C+u6lI4?r2^>KZM^N3VTo4~bKt{-#F&s`q5mxXIIT|INgOAvmwhxxkf}&*Yjf&eF;GC}Zw8P#(wDl1J>{S7m~GX(*4i*6G?Y zeXOUXU|wOYJ047%a!#F!>up>k;d&w0sWv{4_or)y-~A?K{xPh10tfErVVU5XEtN?> z`xST#FQ>4uFpGUqf{6#`O~?x>&aZQ=iEA8OE8{v7*EhIM#x*9cZE%f@>q~Pc>u~>q zOi3J+JYwC|T>EBx?&-4*Ah2&kaL0qVF#osRIYe^3>m}g8IZe)ubB%@a$aOBRuW+qV zt#KLY&rKc5q*R$O<#7=B0OiVm_RX*kk%DuVV_6q)ywCnQ=_W4Z0rmG*W~y~Vu2*sG zmTQJwdtPp=7qU!neS~X;4y;j`JYZt(bu`y*pvy6*-u1nMOX`b=O_0 z-ebMX_K)>HWr6&lEHZ84Ld7!ib3ta{r2{^3|enwHLsY$0uhG zl`q|wCo4{%b5bp9HP|qC@ZesU@10FLu#TBKY0{+KIKM5YPMxaefw4zY&0UydAM%|1 zApbeOqb!gg#J{#;obdM^WXrv+t&u)Iur4+RITS>kIBn#9a6a#LKb5@Raoh5dHW@F)_!+_Z_GO5c=c@|8e52uzRd5$;G(bp!XR zl6J}*^NYMD-K>)__wv+VOk1VTbWqo*`oAtb%sw#A97vpZRCC4b7jn*t^7s$ZR_T*o zv;CzkkzU40V4cS@$Ffa2DP!Ef!@Ut5D<%xByQ zLHYXu^I@fkgYzeUSMjV#z~2OxuRp8bE{a!GJDl0|aGlp}=KwDN9sqF}K!0YKb_hZk z0y`55VJ1jN9e1!eE;zSq5f@X~tHrqMRFKDr<;$0^#~RHU)KNcTU&!50J@r(LdIxI& zClN>Pv(G-O?BU0I<;s;Yn9qLmg%@5>`DwOc%xBc;AG#;T^)&2%<~-}~h~qfq?=;IH z$HtV`7cmA&M8A&v8i!zP^$5m+P@Bv+=$A6hKAhQ~G0PO|vSf^#IA-D;!h7h}^v1qU zD6@YoxPHL2Sk_oC5h$+=OO=A*3CF;j^e&mQGk$)7zL9kk%Mo#9-+{7y@Qqb+S+3qU zoNSEWIDX{#m16~tRYEXUdI)%Nt(9YP;!gQzy3fpuQGJ|K7=t|moEZnl;v9Q%E`sAe zjywBf+{rm=_Njn$pdVK|0*`M&9rak#4rRI!}X;XDGzY~&yFiER-3K~%5b5vBTD z9Di`^!Lbkfx*Tsj|7fXX92|#70}tjO?w(QW+^oaMhvPd}$c>IcYCOrlJNxY%H*oAU zH*J_oBk`D&YcQ_GId555Sg7`ha9xdgNqI5(uRP=D;I_4@-#-^)A48GY4dfr%1yyfx zO^*8q7}k`zb@K+x?~Wf<{Nxzw|Fw7R;Z+n@{02e=U!({Eg_KJOe1c%+u{%3EGdr7L zfPev_Am*!p2_XrA5Fj@|q^J?GJPak!D6s|%5;Z`?sKCcdL5hlqZKTM{d_2Slz5pYY zAXs|lLU?HV+5Xo**!%6>-8-){zd3Wx+`V_t@9~^)`==W9$LOB1^~Ua)v4m&W!fI@!;7Z*HI3!r*_H5G&DbxaH^y$8HJ2F=V^6P?#he>o z-dNTgP5#F5H`q0LIWWFbux{X~1-~Y&!<&B*-a+`V#7LXpEPsV4P`$?v( z`JQcjH~bcJRasNd!`D?OM8O_tdT|fH@jva2c}#w@w={Vp;6`RJ2zT_pSn46b z%a|YLLCl8Qav(x^Ce)l4$O4weK%jRx4+?O&UFyPaK^z(oJ}>~5BM}h&d;&x=p9su> zdBATu2#({!k^4;i^PF&ssV(?3=F1@PM1~+GKP=Bkc(gU*Qrn5}c?e?77?~!5Y&p{;2F*sgb{-jCm`e0BMJ1W5*d$J}79dG}({L;drnOc_4bqYAT$VRby)~6wS~Ls1@pjx}n=q zJW4?$(P%Ud6{1JbO!PEbjy9pQs0|*93-B!bGG32Az-6R?w4nFXa#~H-)1&kRJx}kn z23o0Bx;4$3WzDyqv?{ITR*kjAddJ#peP_kmkJ^M~vA5W*4t6}Jx0C9mJK0W=Q|v5u zmN`|<`_574dfu5kJexnp=keuyBj3Sm`5u0rw{|jHh1$#INr{FZ4 zg{R^gya6A^pW_J9oKSLr947T7mln`Dw3M!~M%wf2KiSXON9@n-2o}YnS$F2Lcs7{b z&&IG~wuDu)H`#maTNdk3M>%QEd}lJhPJO7pQPk_>b=7fN>9KmE{=F{JOLdiAqc=iq zGh>vu!66xKL1}mw{uFp4hYom44 zYGX&+_uHpg(23=hyqdqx-{nWRbUzkj<%{wa`L3*&u_{?@P>0lU^}TB9we&i8ojvMF zudg@HTj-U0-*^w`Og&Cd(o^+AdZvCtFVs)#3jLy9rPt~=^xJxu{zxCzpXrnOjE?l9 z{5F19zlV=}<|q3@{84@&9(Wl+_d4Ob@kBfy*W)(CA-zc@AaI zw#<{$WRWbE3*|F%sazq~%1xkIJLDc&C%=&2$uqL4>Z*iFQx)n3Rjc->I?%K0J>;$M z-uL!;Ep=O+rnB^P{ivR!=j*3*xn8E1>sRzT{kncj|5YE*hx8}yOqZ z>r?An%dtJXpIv9SXNXleuQ*>h4Nemt#oO~P{60R4=kmw-eEuANoBzm(+Xrym<#rHr z#d7gm*+Y7AupBG%0k;K!*W2=M@1UC;m9! z1O+LAzVt=8C?A!hBj_0V5hdb5_(8k?tj^zYQ__aqNwP>Td5SzsR+5j&SL8H7)TMo( zFHg`#v<7tK0FAJ2wr;UHTj#7!b`N`?U2fm%_|8X8yxY&cSLBK&lFD@|&nxtLYN=n< zn{}zb#Du*IC}>}!>1Y+&gQB3FWuyl5@JpCai8Rf+%g(T8*(H3p+fv>mAC?tzj(5s$ z@Xz^1@Yzr{fFe?&K zR^O>sUaaSM{k=Kfau3=s2^gBpz{8*k`%wS~aSxmTc4`i0WE1I3d(r3VX1bmJKnGaU zty1e5YnfGLRfCn@Z=JWIVP@TC_q361*&OCrygk=0u}keTK(GnBiQUHHn8i3#Yy_Ld z*0U{a8{5uyvRbyA?PGPUo72-lj^%K$<*S^bd@7&8XT$tk%vbTXd=qHPPO#;5{4;)n z{{Zu`In2jsH`UE|i`^*MRz}MNu-jdrSL4AxcQ<%aPu&2aMKira zUJKn_KcI8;unRW7#;i!-Pp!y9OVN6C2%ViI}HN@jsh=YdvF0lhvU z&&f85stIb5>g+x4Re4*zqh2#TNH5X}VBcV7Lcr-jU^pB`A_}rUMplr6AaM;?$uaOR zQM4yTG=)wC`%yz{X&r5#?VvZQR-siEUQ$Pd*A)Sn4OeSaqMc+X+l6kSm=3mfrkE{? zMTsaCWujbEh)PiY~7RSx4&t!mV2wN7nP0UfD1_~&??sFQTE wPSHbksvfS#=v?sF1-cMyei8V_+29u|jW%D~t|4#@folj{L*N<${}%}S3sXxjq5uE@ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe new file mode 100644 index 0000000000000000000000000000000000000000..951d5817c9e6d81c94a173a0d9fead7f1f143331 GIT binary patch literal 168448 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..5763076d2878093971a0ef9870e1cde7f556b18b GIT binary patch literal 101888 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

    qx{CqlSNQ_YhQ()VtG-D; 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 z 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 bB!6W7g#4-b3-g!cLzth+PZapSNrC?c%T_@< literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE new file mode 100644 index 0000000..e06d208 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE @@ -0,0 +1,202 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 0000000..7686fe8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py @@ -0,0 +1,54 @@ +from .distro import ( + NORMALIZED_DISTRO_ID, + NORMALIZED_LSB_ID, + NORMALIZED_OS_ID, + LinuxDistribution, + __version__, + build_number, + codename, + distro_release_attr, + distro_release_info, + id, + info, + like, + linux_distribution, + lsb_release_attr, + lsb_release_info, + major_version, + minor_version, + name, + os_release_attr, + os_release_info, + uname_attr, + uname_info, + version, + version_parts, +) + +__all__ = [ + "NORMALIZED_DISTRO_ID", + "NORMALIZED_LSB_ID", + "NORMALIZED_OS_ID", + "LinuxDistribution", + "build_number", + "codename", + "distro_release_attr", + "distro_release_info", + "id", + "info", + "like", + "linux_distribution", + "lsb_release_attr", + "lsb_release_info", + "major_version", + "minor_version", + "name", + "os_release_attr", + "os_release_info", + "uname_attr", + "uname_info", + "version", + "version_parts", +] + +__version__ = __version__ diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 0000000..0c01d5b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py @@ -0,0 +1,4 @@ +from .distro import main + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..96f1683f1b31f598a699caa24463ac8d33d27fef GIT binary patch literal 973 zcmcJNzfaph6vxkwNkS5npO8SMs%wT|(H~4zC1@CsQjkcex11b&g#$l3Iy))Z+P|WE zxBe}iyWHBT8!7`5OMA~DQc&BmH+=N&>-W?5zPfISne!<3>-<}evF~(Q9Q)q5xiZEl z7O=ny8CqbW4L0T=hYmQn0xOt@JQkpUMJVDbtYQgDScWoIpn@*AxCU!jg(}vdhIOc8 z0~*+bCbpo3>#&X+uz_u8V+T4GJ7a;7BN4 zJdFbp`6zTVppcj=5eh#M+)q>WhbW_Wv9@KPoy>AVc`0-wq>4O?UzDtc$>?FK2TB(0 zqJI&qMQhqc87*C%tgC9AJWR7JWLZiRa-6q&Z)bYpeq`+~W*_@1O}cGm-kvFkutLZa ziiA}H?T9K9Dg>9XMyL{MggT)?XcAh4b;1UrP3RCd30nq7-7TG;|KGn>FOcK^Z9x|} z_rs9$FYLxtV|N$c`&eBjWB*hn-teF|*xP^68>W6LPkXP;Qt-XV4`+!?yzQxord}vV z-guUt$I-Lxou^(RQ_(ZQm;RZFAIq_49x@7I<;~~xIG2%3Io}@7?usul4kn>^rJk75 owByOH!FA5EtXq52vTxZxa6=z{?sm%dhr;!9R^9qoR*y~SZ*zzU8UO$Q literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..304c3e0c8768a0ac0e3d1cb0dd1ebf2ec7c52722 GIT binary patch literal 305 zcmX@j%ge<81k%j^GaP{QV-N=hn4pZ$T0q8hh7^Vr#vF!R#wbQchE%2$rfdxch9V9o zhE&GYP=$;PmCTjQnk+9FfdZP0w^(u$GxKh7#K(i^_;^1}=38tjnZ+eV`9;h?6(E_s z#N5>Q_>~NwK}P(_(l5_1$}TQQOinG<4|dh{ada}(4K7J6$xPOD&QD2=cg#!7sVvSc z*4Hab%`4N-$xPBOs4U6I&okCDG}155EJ@V`YR*nf2kI}#EYOb!Doe>P(udfp4|9oL zLFF$Fo80`A(wtPgB2Wl`TwE*#Bt9@RGBVy}ka)n%-BERkS@I?eN2}WhW(F3iA`YN5 E0C#Xv+yDRo literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1869496d1f6486d8f0689692fcf1e62ff8ebbd75 GIT binary patch literal 53856 zcmeIb3sf9enkE?eBq0-$HwYvY0whQTiG|)+4DB~SNs$=!XbYrE&nA)Trvo#i>LnW?k8wR?6q z^{91?d(P?o{(B=LBa;BhYPq*}&W1!}#C<>h`@img|M=_t{5%0ywe9bQ%Rdx^|41*| zm8(A7`&TwWxFSeGpCDNz>xiY#!hWrNR`zS_v$0=$pPl_W`W)=n+2>@xIej_o*VX4@ zzqx(6__dAXjk^2Xqn;f-?8%N zzV)9YpGV5q^KFm{`f4PvR45hw(Au{VPhP2*{VVyQqfeAdrQ)!qZK^pd^MGq)nmXP$T^t zw5>zogLbL*JB~gd!W##zQr&m#eNEC+QawxAh}g}D-70mkkS%JcQ))nHGt%*p>=GLh z+oH!(DL#bwGeVjW(wY&n6(LWk?Px|jwyDo8cy7yR!MZ`GQlMG7tjO-iT z-?!f)Fj#yNu((f$j02d@1MjF)-gi(sB<)AOr$QalfwPT*AiEI%looFhCasg!Iw4e6 zFUU@d5GwC0eMy+Ly#CsG;ezcY;k-qS%UA2#i@MtNy7s>$ynaYa={p?wTYz<5?{G*w zeOd}DQ8{w@v^X9Jo(&9z#70Ay5)F(=iZ~dN#pB_zi3?&Ur4A2FM8lCWpExc@&V{9r zk{2FBlF&s6`G1Bnl9D>%^|kW)W>T7m^jK!cd(*FRv>qh80$!912E8M?+&$NJ5$8BY|KD zZ&B9%=O&}Wk+B9;Er*A~V}X&p_VLN~!HKb8`)Q<%QV0Aa)X9Ehi%*M`ggVwNqTAE~ zt=Hlxbzn3ihw`*Efst@@(l2&k6h@*Uc?=_RE+mFW$46L0_y7%rf`QSHI2HFmhUc(WKMV-P7WEnu!q__(@~!N_Z?7%Hu5)+x)v&{d%QihNk$%o@jVv zq?u+y4v7K$jRwXh#b7`QDVQ?x{BSrpoEHdEx5a2gJlVsiSBDJ)5TVOsAv9k?sUd)= z+JLa4OoYU3+uPdm_6%hd2;vZ+T>yOAott<^CIdHn4%{FNo6bs~hJNIH8%7ouG!laAgA z%xco!J2@WmS(3T*D^dO_$2R|7{}VxVWwRfZCJFbN@p?rF380ulpY?emWD9{t?n5Yh zvg%JZdYZKR97*>J9O_xy9HW6V5jp7?4Ugf+GcXYzk^09bMh8N2H`2QL`^NxV{r$j{ThB-2vkGuQNNMdk z(sI1x(9V_~N)~K69Fao(9T<&CC9Jgi&xOX$wT^@bTKU*-_it-!Rl?Cwi;75;*75Lo zYd?}n5xJEwWc3HrB^RJNcH55!r5Ly05fbi#Z$HCt#bvkbWpbsK$b2-PLi7Vi(}59Y zqsd0tu8**Tjj+>~g9!)ZvEj9brDTqZWs>>oL;rX{jw(s}Nce0h=?Y>LXe7IRPMKOQ zm(Z=0Ze?^UryJ{B1wFAI5M`39wcBAlDC==Uhh6S(A4}vHe*1W$q$X~!N#x~!yDL#p z^qmttBjriDpYQJa^5K)+M?1StP1##R(O@#4f}Za=b-e2k1-e=%6q)8?Dleh{d5(mz z=912c90&qLU6Jw7m;wajvnH*Pk*R#`y#?vUlXiJHGy>Qu2c`_k<8oLDrJn*yvMT+S zeo{g*MkiSf6f+DgrRQYO!=Wl!o*lVbCLrzc2^4~nO*(m|sgA~j?O%D-_e#^tzD9qO z@8w3{L9q#8J-x?8-@(SOye#>*zT6UMnL-N5$D%??06mw*CdB)<`lhNIUp~Lp_m!6Z zR~pqJnO0}iSMMvD^7Kpqz}1+kLSRpZ{q+z}Kn@P4-v%(G`ddK|T}}`6RKZ{fKpsfP z4^ez1{XPoH8cxR-0y9c-;B2}?9uhv6PE*FxASAO{UId>B$cD1{G^gw0BdEXU%aP#O zN&PiX8PT7M6p+ZX=YgtQG@vh#LIdHz7?v#~wNvg9Wk65wj)X?_mjY!{i5lMXfew|k zdURnJ?HCP&)3xOfL;|v;B}lqM!8Wa$WclF4$Vdj^Wr&QxAvz(C1yv>(%Rvwv_#=dR zPr~hr5Y^+(sLVQo^-Hou?b?fEeb=Um2Nogf)WXkbf{hk{-)TW(s(S>VJ@6w`nkVA& z`wi5wyF+_gxB=I@tfi1IgWDO@97oY@|!~ zJ*!1}^=gx-1!2PcgWwi0RGFMA4X6gTVC2~}QRzDS&6dmOWxz=Bcuz6O9tA*#u`GBAT1&!F)-YWrX+)VS_Z@~D1O&pwETc%H0Ezj1>Hu}1 zGUUME1QbYCBdRws=SQ9Yr!x0IMhafl-o?@e95a2`-95HPe zi~wrm0w2aGOW*^!o8X{IO$n&5NzgSO8J`#l$k_vinI=e@`l~f??gLRS&Gkc~T5%0w zvC)@-SJf7UrAA*f7j+^U3T?!~gdnG;ARK`Z4SW8Y=on;*Jc!@Hvm>E%j6ZXMPLE*( z!HLpSvba-~5h0k(%tH0#nd93ZonK*Ft(S(S7UwDB>53V@@Skf>1(7NH7{Sa!hw91gQV ziUXbs??d5EQ&vMjWW_lOH6BA zcI!2=xIg0(#f;arURd8dnZk(XgJ0}jZ6!;PS;FTnzII|@Vk|mQtClW4&t6%#@U)zH*Ha(HB%SQxQJjz0qmDARo<}KQZ}kXK z?0LTD2rtxFOAnKacm_?(QZvyjW#W;6(Wx;*X&s}1DWG3NBT4!&CcvvPno0h0BogIm z4v`{&UU})kk;sI^PymZQOs}kLU{9VRbOBg@AfnZ9gufbV;3ABcKs**2>y1Q=3Bm)T z{o|4IA^GgNQ6%d+bV7WNUY~v81g`_(NTZj4a7JG!;gs0JqzAs7YFSgE(@=ZEn|cE8 zydW+;=>?r&!ju*TK?*{W8hL``D!dxoNld}WNN7Zzz2~%7Uch*mBsab6=h!Qck^{;( z2}5e+DfN{{a;Zztcaq84yjro57Q7mg4T3(NT?vK(cHzNrkQLFRzZzSvi)Xx=9!*-~ zMO+|^Lt;3O{W8ES3;G5WNo(LqK;NOBPM&it6g5PN-Jz%+H7JKdhPb16)#FCP(pY$C zSj&4tebwWcps7`eHAr%&u{(kAg>yS7?Orb`XK&`+KLNOr*!M{b(1L($? zij)&2R@7;=EFJ-YA$T?kJENaXCqxHue!(i2E#l2a==Fs7htuG3fAo0_;p zbu=t1QBEU40MPl!08t>cXi$!fGOEQzFrq^$kD4ZtWN#RUiSabS}55Gs*=l~%K!h$QHcwkD%=-YFm-l2G`_paCNBdRl-wGiq5F z2EBnaDhk8~l4XDwQ8$L0cNZ-u5l zmB>mEZBq2|u<%r=f$xy0|sp<9<3bUzDIn0cWN2#xSJfkcnjPjdBFyz?a;Zhm4M^xPm<~GP! zI!@C>jWNvTFtI(v;05H~Aav2nU0IaIZ;EWDfq24fiw!+O`fSjq9Wnw4V={VQ9bCCo zu0a-o6L=<$i1>OwPXV+uguSG5;mCvnaXAf>>agi6-vpc)xN`~3XO(G_T_(-9oTVFQ zVRZXz{3%7aK@b_RLfCkt{Zjk)_AS{fn3$1tq9M`fWKh@nAt?zJOx)m`D{G4z8G1cS z;4GAbtQ!V_!?;2J*LRZUc$P<2vTVT4b$(%6y=jDsDZ-8I%`lcL4l z{%!tkJD=DtHXg=O^=VbDBo{hq=mn^0-FhUdfIbsNU`?XJ9)&7o4F%Kasn|^vTiEi* zBpTfvCyqQc*)T8S??X7UNr!n2`)FJb)M7+Jq$V~KaRl&DM2~RwoQ%0s>AuJB=qr)1Qw_Y;tZS!zv~*v3;^Jxq%XV1+I{Mx z=?_a7aauXG`?R%lpjI!9O$F4et4{{l9-wKBr^ NjpvGb&K3i=+2;!*@t(TZW|G( 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py new file mode 100644 index 0000000..78ccdfa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py @@ -0,0 +1,1403 @@ +#!/usr/bin/env python +# Copyright 2015-2021 Nir Cohen +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +The ``distro`` package (``distro`` stands for Linux Distribution) provides +information about the Linux distribution it runs on, such as a reliable +machine-readable distro ID, or version information. + +It is the recommended replacement for Python's original +:py:func:`platform.linux_distribution` function, but it provides much more +functionality. An alternative implementation became necessary because Python +3.5 deprecated this function, and Python 3.8 removed it altogether. Its +predecessor function :py:func:`platform.dist` was already deprecated since +Python 2.6 and removed in Python 3.8. Still, there are many cases in which +access to OS distribution information is needed. See `Python issue 1322 +`_ for more information. +""" + +import argparse +import json +import logging +import os +import re +import shlex +import subprocess +import sys +import warnings +from typing import ( + Any, + Callable, + Dict, + Iterable, + Optional, + Sequence, + TextIO, + Tuple, + Type, +) + +try: + from typing import TypedDict +except ImportError: + # Python 3.7 + TypedDict = dict + +__version__ = "1.9.0" + + +class VersionDict(TypedDict): + major: str + minor: str + build_number: str + + +class InfoDict(TypedDict): + id: str + version: str + version_parts: VersionDict + like: str + codename: str + + +_UNIXCONFDIR = os.environ.get("UNIXCONFDIR", "/etc") +_UNIXUSRLIBDIR = os.environ.get("UNIXUSRLIBDIR", "/usr/lib") +_OS_RELEASE_BASENAME = "os-release" + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + "ol": "oracle", # Oracle Linux + "opensuse-leap": "opensuse", # Newer versions of OpenSuSE report as opensuse-leap +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + "enterpriseenterpriseas": "oracle", # Oracle Enterprise Linux 4 + "enterpriseenterpriseserver": "oracle", # Oracle Linux 5 + "redhatenterpriseworkstation": "rhel", # RHEL 6, 7 Workstation + "redhatenterpriseserver": "rhel", # RHEL 6, 7 Server + "redhatenterprisecomputenode": "rhel", # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + "redhat": "rhel", # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r"(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)" +) + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile(r"(\w+)[-_](release|version)$") + +# Base file names to be looked up for if _UNIXCONFDIR is not readable. +_DISTRO_RELEASE_BASENAMES = [ + "SuSE-release", + "altlinux-release", + "arch-release", + "base-release", + "centos-release", + "fedora-release", + "gentoo-release", + "mageia-release", + "mandrake-release", + "mandriva-release", + "mandrivalinux-release", + "manjaro-release", + "oracle-release", + "redhat-release", + "rocky-release", + "sl-release", + "slackware-version", +] + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + "debian_version", + "lsb-release", + "oem-release", + _OS_RELEASE_BASENAME, + "system-release", + "plesk-release", + "iredmail-release", + "board-release", + "ec2_version", +) + + +def linux_distribution(full_distribution_name: bool = True) -> Tuple[str, str, str]: + """ + .. deprecated:: 1.6.0 + + :func:`distro.linux_distribution()` is deprecated. It should only be + used as a compatibility shim with Python's + :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, + :func:`distro.version` and :func:`distro.name` instead. + + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The extra item (usually in parentheses) after the + os-release version number, or the result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + warnings.warn( + "distro.linux_distribution() is deprecated. It should only be used as a " + "compatibility shim with Python's platform.linux_distribution(). Please use " + "distro.id(), distro.version() and distro.name() instead.", + DeprecationWarning, + stacklevel=2, + ) + return _distro.linux_distribution(full_distribution_name) + + +def id() -> str: + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amzn" Amazon Linux + "arch" Arch Linux + "buildroot" Buildroot + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + "rocky" Rocky Linux + "aix" AIX + "guix" Guix System + "altlinux" ALT Linux + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty: bool = False) -> str: + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + Some other distributions may not provide this kind of information. In these + cases, an empty string would be returned. This behavior can be observed + with rolling releases distributions (e.g. Arch Linux). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best: bool = False) -> str: + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best: bool = False) -> str: + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best: bool = False) -> str: + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like() -> str: + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename() -> str: + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute: str) -> str: + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute: str) -> str: + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +try: + from functools import cached_property +except ImportError: + # Python < 3.8 + class cached_property: # type: ignore + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + + def __init__(self, f: Callable[[Any], Any]) -> None: + self._fname = f.__name__ + self._f = f + + def __get__(self, obj: Any, owner: Type[Any]) -> Any: + assert obj is not None, f"call {self._fname} on an instance" + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution: + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__( + self, + include_lsb: Optional[bool] = None, + os_release_file: str = "", + distro_release_file: str = "", + include_uname: Optional[bool] = None, + root_dir: Optional[str] = None, + include_oslevel: Optional[bool] = None, + ) -> None: + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + * ``root_dir`` (string): The absolute path to the root directory to use + to find distro-related information files. Note that ``include_*`` + parameters must not be enabled in combination with ``root_dir``. + + * ``include_oslevel`` (bool): Controls whether (AIX) oslevel command + output is included as a data source. If the oslevel command is not + available in the program execution path the data source will be + empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + * ``include_oslevel`` (bool): The result of the ``include_oslevel`` + parameter. This controls whether (AIX) oslevel information will be + loaded. + + * ``root_dir`` (string): The result of the ``root_dir`` parameter. + The absolute path to the root directory to use to find distro-related + information files. + + Raises: + + * :py:exc:`ValueError`: Initialization parameters combination is not + supported. + + * :py:exc:`OSError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.root_dir = root_dir + self.etc_dir = os.path.join(root_dir, "etc") if root_dir else _UNIXCONFDIR + self.usr_lib_dir = ( + os.path.join(root_dir, "usr/lib") if root_dir else _UNIXUSRLIBDIR + ) + + if os_release_file: + self.os_release_file = os_release_file + else: + etc_dir_os_release_file = os.path.join(self.etc_dir, _OS_RELEASE_BASENAME) + usr_lib_os_release_file = os.path.join( + self.usr_lib_dir, _OS_RELEASE_BASENAME + ) + + # NOTE: The idea is to respect order **and** have it set + # at all times for API backwards compatibility. + if os.path.isfile(etc_dir_os_release_file) or not os.path.isfile( + usr_lib_os_release_file + ): + self.os_release_file = etc_dir_os_release_file + else: + self.os_release_file = usr_lib_os_release_file + + self.distro_release_file = distro_release_file or "" # updated later + + is_root_dir_defined = root_dir is not None + if is_root_dir_defined and (include_lsb or include_uname or include_oslevel): + raise ValueError( + "Including subprocess data sources from specific root_dir is disallowed" + " to prevent false information" + ) + self.include_lsb = ( + include_lsb if include_lsb is not None else not is_root_dir_defined + ) + self.include_uname = ( + include_uname if include_uname is not None else not is_root_dir_defined + ) + self.include_oslevel = ( + include_oslevel if include_oslevel is not None else not is_root_dir_defined + ) + + def __repr__(self) -> str: + """Return repr of all info""" + return ( + "LinuxDistribution(" + "os_release_file={self.os_release_file!r}, " + "distro_release_file={self.distro_release_file!r}, " + "include_lsb={self.include_lsb!r}, " + "include_uname={self.include_uname!r}, " + "include_oslevel={self.include_oslevel!r}, " + "root_dir={self.root_dir!r}, " + "_os_release_info={self._os_release_info!r}, " + "_lsb_release_info={self._lsb_release_info!r}, " + "_distro_release_info={self._distro_release_info!r}, " + "_uname_info={self._uname_info!r}, " + "_oslevel_info={self._oslevel_info!r})".format(self=self) + ) + + def linux_distribution( + self, full_distribution_name: bool = True + ) -> Tuple[str, str, str]: + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self._os_release_info.get("release_codename") or self.codename(), + ) + + def id(self) -> str: + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + + def normalize(distro_id: str, table: Dict[str, str]) -> str: + distro_id = distro_id.lower().replace(" ", "_") + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr("distributor_id") + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return "" + + def name(self, pretty: bool = False) -> str: + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = ( + self.os_release_attr("name") + or self.lsb_release_attr("distributor_id") + or self.distro_release_attr("name") + or self.uname_attr("name") + ) + if pretty: + name = self.os_release_attr("pretty_name") or self.lsb_release_attr( + "description" + ) + if not name: + name = self.distro_release_attr("name") or self.uname_attr("name") + version = self.version(pretty=True) + if version: + name = f"{name} {version}" + return name or "" + + def version(self, pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr("version_id"), + self.lsb_release_attr("release"), + self.distro_release_attr("version_id"), + self._parse_distro_release_content(self.os_release_attr("pretty_name")).get( + "version_id", "" + ), + self._parse_distro_release_content( + self.lsb_release_attr("description") + ).get("version_id", ""), + self.uname_attr("release"), + ] + if self.uname_attr("id").startswith("aix"): + # On AIX platforms, prefer oslevel command output. + versions.insert(0, self.oslevel_info()) + elif self.id() == "debian" or "debian" in self.like().split(): + # On Debian-like, add debian_version file content to candidates list. + versions.append(self._debian_version) + version = "" + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == "": + version = v + else: + for v in versions: + if v != "": + version = v + break + if pretty and version and self.codename(): + version = f"{version} ({self.codename()})" + return version + + def version_parts(self, best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r"(\d+)\.?(\d+)?\.?(\d+)?") + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or "", build_number or "" + return "", "", "" + + def major_version(self, best: bool = False) -> str: + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best: bool = False) -> str: + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best: bool = False) -> str: + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self) -> str: + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr("id_like") or "" + + def codename(self) -> str: + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info["codename"] + except KeyError: + return ( + self.lsb_release_attr("codename") + or self.distro_release_attr("codename") + or "" + ) + + def info(self, pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return InfoDict( + id=self.id(), + version=self.version(pretty, best), + version_parts=VersionDict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best), + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def oslevel_info(self) -> str: + """ + Return AIX' oslevel command output. + """ + return self._oslevel_info + + def os_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, "") + + def lsb_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, "") + + def distro_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, "") + + def uname_attr(self, attribute: str) -> str: + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_attr`. + """ + return self._uname_info.get(attribute, "") + + @cached_property + def _os_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file, encoding="utf-8") as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines: TextIO) -> Dict[str, str]: + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + # Ignore any tokens that are not variable assignments + if "=" in token: + k, v = token.split("=", 1) + props[k.lower()] = v + + if "version" in props: + # extract release codename (if any) from version attribute + match = re.search(r"\((\D+)\)|,\s*(\D+)", props["version"]) + if match: + release_codename = match.group(1) or match.group(2) + props["codename"] = props["release_codename"] = release_codename + + if "version_codename" in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props["codename"] = props["version_codename"] + elif "ubuntu_codename" in props: + # Same as above but a non-standard field name used on older Ubuntus + props["codename"] = props["ubuntu_codename"] + + return props + + @cached_property + def _lsb_release_info(self) -> Dict[str, str]: + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + try: + cmd = ("lsb_release", "-a") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + # Command not found or lsb_release returned error + except (OSError, subprocess.CalledProcessError): + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines: Iterable[str]) -> Dict[str, str]: + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip("\n").split(":", 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(" ", "_").lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self) -> Dict[str, str]: + if not self.include_uname: + return {} + try: + cmd = ("uname", "-rs") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @cached_property + def _oslevel_info(self) -> str: + if not self.include_oslevel: + return "" + try: + stdout = subprocess.check_output("oslevel", stderr=subprocess.DEVNULL) + except (OSError, subprocess.CalledProcessError): + return "" + return self._to_str(stdout).strip() + + @cached_property + def _debian_version(self) -> str: + try: + with open( + os.path.join(self.etc_dir, "debian_version"), encoding="ascii" + ) as fp: + return fp.readline().rstrip() + except FileNotFoundError: + return "" + + @staticmethod + def _parse_uname_content(lines: Sequence[str]) -> Dict[str, str]: + if not lines: + return {} + props = {} + match = re.search(r"^([^\s]+)\s+([\d\.]+)", lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == "Linux": + return {} + props["id"] = name.lower() + props["name"] = name + props["release"] = version + return props + + @staticmethod + def _to_str(bytestring: bytes) -> str: + encoding = sys.getfilesystemencoding() + return bytestring.decode(encoding) + + @cached_property + def _distro_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file(self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + else: + try: + basenames = [ + basename + for basename in os.listdir(self.etc_dir) + if basename not in _DISTRO_RELEASE_IGNORE_BASENAMES + and os.path.isfile(os.path.join(self.etc_dir, basename)) + ] + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = _DISTRO_RELEASE_BASENAMES + for basename in basenames: + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match is None: + continue + filepath = os.path.join(self.etc_dir, basename) + distro_info = self._parse_distro_release_file(filepath) + # The name is always present if the pattern matches. + if "name" not in distro_info: + continue + self.distro_release_file = filepath + break + else: # the loop didn't "break": no candidate. + return {} + + if match is not None: + distro_info["id"] = match.group(1) + + # CloudLinux < 7: manually enrich info with proper id. + if "cloudlinux" in distro_info.get("name", "").lower(): + distro_info["id"] = "cloudlinux" + + return distro_info + + def _parse_distro_release_file(self, filepath: str) -> Dict[str, str]: + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath, encoding="utf-8") as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except OSError: + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/python-distro/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line: str) -> Dict[str, str]: + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match(line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info["name"] = matches.group(3)[::-1] + if matches.group(2): + distro_info["version_id"] = matches.group(2)[::-1] + if matches.group(1): + distro_info["codename"] = matches.group(1)[::-1] + elif line: + distro_info["name"] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main() -> None: + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + "--json", "-j", help="Output in machine readable format", action="store_true" + ) + + parser.add_argument( + "--root-dir", + "-r", + type=str, + dest="root_dir", + help="Path to the root filesystem directory (defaults to /)", + ) + + args = parser.parse_args() + + if args.root_dir: + dist = LinuxDistribution( + include_lsb=False, + include_uname=False, + include_oslevel=False, + root_dir=args.root_dir, + ) + else: + dist = _distro + + if args.json: + logger.info(json.dumps(dist.info(), indent=4, sort_keys=True)) + else: + logger.info("Name: %s", dist.name(pretty=True)) + distribution_version = dist.version(pretty=True) + logger.info("Version: %s", distribution_version) + distribution_codename = dist.codename() + logger.info("Codename: %s", distribution_codename) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distro/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/distro/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md new file mode 100644 index 0000000..19b6b45 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md @@ -0,0 +1,31 @@ +BSD 3-Clause License + +Copyright (c) 2013-2024, Kim Davies and contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 0000000..cfdc030 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py @@ -0,0 +1,45 @@ +from .core import ( + IDNABidiError, + IDNAError, + InvalidCodepoint, + InvalidCodepointContext, + alabel, + check_bidi, + check_hyphen_ok, + check_initial_combiner, + check_label, + check_nfc, + decode, + encode, + ulabel, + uts46_remap, + valid_contextj, + valid_contexto, + valid_label_length, + valid_string_length, +) +from .intranges import intranges_contain +from .package_data import __version__ + +__all__ = [ + "__version__", + "IDNABidiError", + "IDNAError", + "InvalidCodepoint", + "InvalidCodepointContext", + "alabel", + "check_bidi", + "check_hyphen_ok", + "check_initial_combiner", + "check_label", + "check_nfc", + "decode", + "encode", + "intranges_contain", + "ulabel", + "uts46_remap", + "valid_contextj", + "valid_contexto", + "valid_label_length", + "valid_string_length", +] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8919ccffba4e4bf5537971d7b65bd08f168ffba8 GIT binary patch literal 899 zcmbu7JC74F5XbFJvUzOY$>oqhbV#H~Ry-?&baz~F61wI(H(bjoPAvIwC@m=%TLZp`PfYz8Ii^7^0yV zp^+G)G4%NYJ`qziE$tfL6Eie}U=7mx2Z;7}jd}PLI_de?_D)`$9vrfi9c!($ZF{#e zhbMANI7^RIN^`}evHLe8M@ky{*4U76vZCB}l8h!BymIO6pt7@Fo>7U_#?Gn$lgu!} zaiYYENvdsB#j6bM%8{=U8>TdI(l(^B`kq%?qH|L`eu^~}B)9#tM3<~AUy1 zJc&7#Ym?bY6)TKpa(x|~LpyRUY9iOPDAN%pT`&T<)(evng?0F14h8`o2vB$(?>To*0W$TI3^uKieDPh}xS}hB*-JB#F zvZgpChLla(CdPzwj6Z@4R}{F);x|ff3b&CK@!9d><-y^T#hD?7B?~_x_&^fAD_9XP zw^VLp&Q@{0GntZ)mJc4r1v7MUty07}%VT%1GF3WesU$JRek?Fv=DVxbGojLRPM_<$ nPS}rWv2gfSgAiT@6Bt~AzwzTffb-Ab-uL=m6ufKdJMP3UYRmO6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6fe218c00f337b716190ca035f1b07aff95b66e5 GIT binary patch literal 4999 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9ae9c0d533ab23b761c90992bca870f3b253428 GIT binary patch literal 2651 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py new file mode 100644 index 0000000..913abfd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py @@ -0,0 +1,122 @@ +import codecs +import re +from typing import Any, Optional, Tuple + +from .core import IDNAError, alabel, decode, encode, ulabel + +_unicode_dots_re = re.compile("[\u002e\u3002\uff0e\uff61]") + + +class Codec(codecs.Codec): + def encode(self, data: str, errors: str = "strict") -> Tuple[bytes, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return b"", 0 + + return encode(data), len(data) + + def decode(self, data: bytes, errors: str = "strict") -> Tuple[str, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return "", 0 + + return decode(data), len(data) + + +class IncrementalEncoder(codecs.BufferedIncrementalEncoder): + def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[bytes, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return b"", 0 + + labels = _unicode_dots_re.split(data) + trailing_dot = b"" + if labels: + if not labels[-1]: + trailing_dot = b"." + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = b"." + + result = [] + size = 0 + for label in labels: + result.append(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_bytes = b".".join(result) + trailing_dot + size += len(trailing_dot) + return result_bytes, size + + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: Any, errors: str, final: bool) -> Tuple[str, int]: + if errors != "strict": + raise IDNAError('Unsupported error handling "{}"'.format(errors)) + + if not data: + return ("", 0) + + if not isinstance(data, str): + data = str(data, "ascii") + + labels = _unicode_dots_re.split(data) + trailing_dot = "" + if labels: + if not labels[-1]: + trailing_dot = "." + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = "." + + result = [] + size = 0 + for label in labels: + result.append(ulabel(label)) + if size: + size += 1 + size += len(label) + + result_str = ".".join(result) + trailing_dot + size += len(trailing_dot) + return (result_str, size) + + +class StreamWriter(Codec, codecs.StreamWriter): + pass + + +class StreamReader(Codec, codecs.StreamReader): + pass + + +def search_function(name: str) -> Optional[codecs.CodecInfo]: + if name != "idna2008": + return None + return codecs.CodecInfo( + name=name, + encode=Codec().encode, + decode=Codec().decode, + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) + + +codecs.register(search_function) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 0000000..1df9f2a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py @@ -0,0 +1,15 @@ +from typing import Any, Union + +from .core import decode, encode + + +def ToASCII(label: str) -> bytes: + return encode(label) + + +def ToUnicode(label: Union[bytes, bytearray]) -> str: + return decode(label) + + +def nameprep(s: Any) -> None: + raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 0000000..9115f12 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -0,0 +1,437 @@ +import bisect +import re +import unicodedata +from typing import Optional, Union + +from . import idnadata +from .intranges import intranges_contain + +_virama_combining_class = 9 +_alabel_prefix = b"xn--" +_unicode_dots_re = re.compile("[\u002e\u3002\uff0e\uff61]") + + +class IDNAError(UnicodeError): + """Base exception for all IDNA-encoding related problems""" + + pass + + +class IDNABidiError(IDNAError): + """Exception when bidirectional requirements are not satisfied""" + + pass + + +class InvalidCodepoint(IDNAError): + """Exception when a disallowed or unallocated codepoint is used""" + + pass + + +class InvalidCodepointContext(IDNAError): + """Exception when the codepoint is not valid in the context it is used""" + + pass + + +def _combining_class(cp: int) -> int: + v = unicodedata.combining(chr(cp)) + if v == 0: + if not unicodedata.name(chr(cp)): + raise ValueError("Unknown character in unicodedata") + return v + + +def _is_script(cp: str, script: str) -> bool: + return intranges_contain(ord(cp), idnadata.scripts[script]) + + +def _punycode(s: str) -> bytes: + return s.encode("punycode") + + +def _unot(s: int) -> str: + return "U+{:04X}".format(s) + + +def valid_label_length(label: Union[bytes, str]) -> bool: + if len(label) > 63: + return False + return True + + +def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: + if len(label) > (254 if trailing_dot else 253): + return False + return True + + +def check_bidi(label: str, check_ltr: bool = False) -> bool: + # Bidi rules should only be applied if string contains RTL characters + bidi_label = False + for idx, cp in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + if direction == "": + # String likely comes from a newer version of Unicode + raise IDNABidiError("Unknown directionality in label {} at position {}".format(repr(label), idx)) + if direction in ["R", "AL", "AN"]: + bidi_label = True + if not bidi_label and not check_ltr: + return True + + # Bidi rule 1 + direction = unicodedata.bidirectional(label[0]) + if direction in ["R", "AL"]: + rtl = True + elif direction == "L": + rtl = False + else: + raise IDNABidiError("First codepoint in label {} must be directionality L, R or AL".format(repr(label))) + + valid_ending = False + number_type: Optional[str] = None + for idx, cp in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + + if rtl: + # Bidi rule 2 + if direction not in [ + "R", + "AL", + "AN", + "EN", + "ES", + "CS", + "ET", + "ON", + "BN", + "NSM", + ]: + raise IDNABidiError("Invalid direction for codepoint at position {} in a right-to-left label".format(idx)) + # Bidi rule 3 + if direction in ["R", "AL", "EN", "AN"]: + valid_ending = True + elif direction != "NSM": + valid_ending = False + # Bidi rule 4 + if direction in ["AN", "EN"]: + if not number_type: + number_type = direction + else: + if number_type != direction: + raise IDNABidiError("Can not mix numeral types in a right-to-left label") + else: + # Bidi rule 5 + if direction not in ["L", "EN", "ES", "CS", "ET", "ON", "BN", "NSM"]: + raise IDNABidiError("Invalid direction for codepoint at position {} in a left-to-right label".format(idx)) + # Bidi rule 6 + if direction in ["L", "EN"]: + valid_ending = True + elif direction != "NSM": + valid_ending = False + + if not valid_ending: + raise IDNABidiError("Label ends with illegal codepoint directionality") + + return True + + +def check_initial_combiner(label: str) -> bool: + if unicodedata.category(label[0])[0] == "M": + raise IDNAError("Label begins with an illegal combining character") + return True + + +def check_hyphen_ok(label: str) -> bool: + if label[2:4] == "--": + raise IDNAError("Label has disallowed hyphens in 3rd and 4th position") + if label[0] == "-" or label[-1] == "-": + raise IDNAError("Label must not start or end with a hyphen") + return True + + +def check_nfc(label: str) -> None: + if unicodedata.normalize("NFC", label) != label: + raise IDNAError("Label must be in Normalization Form C") + + +def valid_contextj(label: str, pos: int) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x200C: + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + + ok = False + for i in range(pos - 1, -1, -1): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord("T"): + continue + elif joining_type in [ord("L"), ord("D")]: + ok = True + break + else: + break + + if not ok: + return False + + ok = False + for i in range(pos + 1, len(label)): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord("T"): + continue + elif joining_type in [ord("R"), ord("D")]: + ok = True + break + else: + break + return ok + + if cp_value == 0x200D: + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + return False + + else: + return False + + +def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x00B7: + if 0 < pos < len(label) - 1: + if ord(label[pos - 1]) == 0x006C and ord(label[pos + 1]) == 0x006C: + return True + return False + + elif cp_value == 0x0375: + if pos < len(label) - 1 and len(label) > 1: + return _is_script(label[pos + 1], "Greek") + return False + + elif cp_value == 0x05F3 or cp_value == 0x05F4: + if pos > 0: + return _is_script(label[pos - 1], "Hebrew") + return False + + elif cp_value == 0x30FB: + for cp in label: + if cp == "\u30fb": + continue + if _is_script(cp, "Hiragana") or _is_script(cp, "Katakana") or _is_script(cp, "Han"): + return True + return False + + elif 0x660 <= cp_value <= 0x669: + for cp in label: + if 0x6F0 <= ord(cp) <= 0x06F9: + return False + return True + + elif 0x6F0 <= cp_value <= 0x6F9: + for cp in label: + if 0x660 <= ord(cp) <= 0x0669: + return False + return True + + return False + + +def check_label(label: Union[str, bytes, bytearray]) -> None: + if isinstance(label, (bytes, bytearray)): + label = label.decode("utf-8") + if len(label) == 0: + raise IDNAError("Empty Label") + + check_nfc(label) + check_hyphen_ok(label) + check_initial_combiner(label) + + for pos, cp in enumerate(label): + cp_value = ord(cp) + if intranges_contain(cp_value, idnadata.codepoint_classes["PVALID"]): + continue + elif intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTJ"]): + try: + if not valid_contextj(label, pos): + raise InvalidCodepointContext( + "Joiner {} not allowed at position {} in {}".format(_unot(cp_value), pos + 1, repr(label)) + ) + except ValueError: + raise IDNAError( + "Unknown codepoint adjacent to joiner {} at position {} in {}".format( + _unot(cp_value), pos + 1, repr(label) + ) + ) + elif intranges_contain(cp_value, idnadata.codepoint_classes["CONTEXTO"]): + if not valid_contexto(label, pos): + raise InvalidCodepointContext( + "Codepoint {} not allowed at position {} in {}".format(_unot(cp_value), pos + 1, repr(label)) + ) + else: + raise InvalidCodepoint( + "Codepoint {} at position {} of {} not allowed".format(_unot(cp_value), pos + 1, repr(label)) + ) + + check_bidi(label) + + +def alabel(label: str) -> bytes: + try: + label_bytes = label.encode("ascii") + ulabel(label_bytes) + if not valid_label_length(label_bytes): + raise IDNAError("Label too long") + return label_bytes + except UnicodeEncodeError: + pass + + check_label(label) + label_bytes = _alabel_prefix + _punycode(label) + + if not valid_label_length(label_bytes): + raise IDNAError("Label too long") + + return label_bytes + + +def ulabel(label: Union[str, bytes, bytearray]) -> str: + if not isinstance(label, (bytes, bytearray)): + try: + label_bytes = label.encode("ascii") + except UnicodeEncodeError: + check_label(label) + return label + else: + label_bytes = label + + label_bytes = label_bytes.lower() + if label_bytes.startswith(_alabel_prefix): + label_bytes = label_bytes[len(_alabel_prefix) :] + if not label_bytes: + raise IDNAError("Malformed A-label, no Punycode eligible content found") + if label_bytes.decode("ascii")[-1] == "-": + raise IDNAError("A-label must not end with a hyphen") + else: + check_label(label_bytes) + return label_bytes.decode("ascii") + + try: + label = label_bytes.decode("punycode") + except UnicodeError: + raise IDNAError("Invalid A-label") + check_label(label) + return label + + +def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: + """Re-map the characters in the string according to UTS46 processing.""" + from .uts46data import uts46data + + output = "" + + for pos, char in enumerate(domain): + code_point = ord(char) + try: + uts46row = uts46data[code_point if code_point < 256 else bisect.bisect_left(uts46data, (code_point, "Z")) - 1] + status = uts46row[1] + replacement: Optional[str] = None + if len(uts46row) == 3: + replacement = uts46row[2] + if ( + status == "V" + or (status == "D" and not transitional) + or (status == "3" and not std3_rules and replacement is None) + ): + output += char + elif replacement is not None and ( + status == "M" or (status == "3" and not std3_rules) or (status == "D" and transitional) + ): + output += replacement + elif status != "I": + raise IndexError() + except IndexError: + raise InvalidCodepoint( + "Codepoint {} not allowed at position {} in {}".format(_unot(code_point), pos + 1, repr(domain)) + ) + + return unicodedata.normalize("NFC", output) + + +def encode( + s: Union[str, bytes, bytearray], + strict: bool = False, + uts46: bool = False, + std3_rules: bool = False, + transitional: bool = False, +) -> bytes: + if not isinstance(s, str): + try: + s = str(s, "ascii") + except UnicodeDecodeError: + raise IDNAError("should pass a unicode string to the function rather than a byte string.") + if uts46: + s = uts46_remap(s, std3_rules, transitional) + trailing_dot = False + result = [] + if strict: + labels = s.split(".") + else: + labels = _unicode_dots_re.split(s) + if not labels or labels == [""]: + raise IDNAError("Empty domain") + if labels[-1] == "": + del labels[-1] + trailing_dot = True + for label in labels: + s = alabel(label) + if s: + result.append(s) + else: + raise IDNAError("Empty label") + if trailing_dot: + result.append(b"") + s = b".".join(result) + if not valid_string_length(s, trailing_dot): + raise IDNAError("Domain too long") + return s + + +def decode( + s: Union[str, bytes, bytearray], + strict: bool = False, + uts46: bool = False, + std3_rules: bool = False, +) -> str: + try: + if not isinstance(s, str): + s = str(s, "ascii") + except UnicodeDecodeError: + raise IDNAError("Invalid ASCII in A-label") + if uts46: + s = uts46_remap(s, std3_rules, False) + trailing_dot = False + result = [] + if not strict: + labels = _unicode_dots_re.split(s) + else: + labels = s.split(".") + if not labels or labels == [""]: + raise IDNAError("Empty domain") + if not labels[-1]: + del labels[-1] + trailing_dot = True + for label in labels: + s = ulabel(label) + if s: + result.append(s) + else: + raise IDNAError("Empty label") + if trailing_dot: + result.append("") + return ".".join(result) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 0000000..4be6004 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py @@ -0,0 +1,4243 @@ +# This file is automatically generated by tools/idna-data + +__version__ = "15.1.0" +scripts = { + "Greek": ( + 0x37000000374, + 0x37500000378, + 0x37A0000037E, + 0x37F00000380, + 0x38400000385, + 0x38600000387, + 0x3880000038B, + 0x38C0000038D, + 0x38E000003A2, + 0x3A3000003E2, + 0x3F000000400, + 0x1D2600001D2B, + 0x1D5D00001D62, + 0x1D6600001D6B, + 0x1DBF00001DC0, + 0x1F0000001F16, + 0x1F1800001F1E, + 0x1F2000001F46, + 0x1F4800001F4E, + 0x1F5000001F58, + 0x1F5900001F5A, + 0x1F5B00001F5C, + 0x1F5D00001F5E, + 0x1F5F00001F7E, + 0x1F8000001FB5, + 0x1FB600001FC5, + 0x1FC600001FD4, + 0x1FD600001FDC, + 0x1FDD00001FF0, + 0x1FF200001FF5, + 0x1FF600001FFF, + 0x212600002127, + 0xAB650000AB66, + 0x101400001018F, + 0x101A0000101A1, + 0x1D2000001D246, + ), + "Han": ( + 0x2E8000002E9A, + 0x2E9B00002EF4, + 0x2F0000002FD6, + 0x300500003006, + 0x300700003008, + 0x30210000302A, + 0x30380000303C, + 0x340000004DC0, + 0x4E000000A000, + 0xF9000000FA6E, + 0xFA700000FADA, + 0x16FE200016FE4, + 0x16FF000016FF2, + 0x200000002A6E0, + 0x2A7000002B73A, + 0x2B7400002B81E, + 0x2B8200002CEA2, + 0x2CEB00002EBE1, + 0x2EBF00002EE5E, + 0x2F8000002FA1E, + 0x300000003134B, + 0x31350000323B0, + ), + "Hebrew": ( + 0x591000005C8, + 0x5D0000005EB, + 0x5EF000005F5, + 0xFB1D0000FB37, + 0xFB380000FB3D, + 0xFB3E0000FB3F, + 0xFB400000FB42, + 0xFB430000FB45, + 0xFB460000FB50, + ), + "Hiragana": ( + 0x304100003097, + 0x309D000030A0, + 0x1B0010001B120, + 0x1B1320001B133, + 0x1B1500001B153, + 0x1F2000001F201, + ), + "Katakana": ( + 0x30A1000030FB, + 0x30FD00003100, + 0x31F000003200, + 0x32D0000032FF, + 0x330000003358, + 0xFF660000FF70, + 0xFF710000FF9E, + 0x1AFF00001AFF4, + 0x1AFF50001AFFC, + 0x1AFFD0001AFFF, + 0x1B0000001B001, + 0x1B1200001B123, + 0x1B1550001B156, + 0x1B1640001B168, + ), +} +joining_types = { + 0xAD: 84, + 0x300: 84, + 0x301: 84, + 0x302: 84, + 0x303: 84, + 0x304: 84, + 0x305: 84, + 0x306: 84, + 0x307: 84, + 0x308: 84, + 0x309: 84, + 0x30A: 84, + 0x30B: 84, + 0x30C: 84, + 0x30D: 84, + 0x30E: 84, + 0x30F: 84, + 0x310: 84, + 0x311: 84, + 0x312: 84, + 0x313: 84, + 0x314: 84, + 0x315: 84, + 0x316: 84, + 0x317: 84, + 0x318: 84, + 0x319: 84, + 0x31A: 84, + 0x31B: 84, + 0x31C: 84, + 0x31D: 84, + 0x31E: 84, + 0x31F: 84, + 0x320: 84, + 0x321: 84, + 0x322: 84, + 0x323: 84, + 0x324: 84, + 0x325: 84, + 0x326: 84, + 0x327: 84, + 0x328: 84, + 0x329: 84, + 0x32A: 84, + 0x32B: 84, + 0x32C: 84, + 0x32D: 84, + 0x32E: 84, + 0x32F: 84, + 0x330: 84, + 0x331: 84, + 0x332: 84, + 0x333: 84, + 0x334: 84, + 0x335: 84, + 0x336: 84, + 0x337: 84, + 0x338: 84, + 0x339: 84, + 0x33A: 84, + 0x33B: 84, + 0x33C: 84, + 0x33D: 84, + 0x33E: 84, + 0x33F: 84, + 0x340: 84, + 0x341: 84, + 0x342: 84, + 0x343: 84, + 0x344: 84, + 0x345: 84, + 0x346: 84, + 0x347: 84, + 0x348: 84, + 0x349: 84, + 0x34A: 84, + 0x34B: 84, + 0x34C: 84, + 0x34D: 84, + 0x34E: 84, + 0x34F: 84, + 0x350: 84, + 0x351: 84, + 0x352: 84, + 0x353: 84, + 0x354: 84, + 0x355: 84, + 0x356: 84, + 0x357: 84, + 0x358: 84, + 0x359: 84, + 0x35A: 84, + 0x35B: 84, + 0x35C: 84, + 0x35D: 84, + 0x35E: 84, + 0x35F: 84, + 0x360: 84, + 0x361: 84, + 0x362: 84, + 0x363: 84, + 0x364: 84, + 0x365: 84, + 0x366: 84, + 0x367: 84, + 0x368: 84, + 0x369: 84, + 0x36A: 84, + 0x36B: 84, + 0x36C: 84, + 0x36D: 84, + 0x36E: 84, + 0x36F: 84, + 0x483: 84, + 0x484: 84, + 0x485: 84, + 0x486: 84, + 0x487: 84, + 0x488: 84, + 0x489: 84, + 0x591: 84, + 0x592: 84, + 0x593: 84, + 0x594: 84, + 0x595: 84, + 0x596: 84, + 0x597: 84, + 0x598: 84, + 0x599: 84, + 0x59A: 84, + 0x59B: 84, + 0x59C: 84, + 0x59D: 84, + 0x59E: 84, + 0x59F: 84, + 0x5A0: 84, + 0x5A1: 84, + 0x5A2: 84, + 0x5A3: 84, + 0x5A4: 84, + 0x5A5: 84, + 0x5A6: 84, + 0x5A7: 84, + 0x5A8: 84, + 0x5A9: 84, + 0x5AA: 84, + 0x5AB: 84, + 0x5AC: 84, + 0x5AD: 84, + 0x5AE: 84, + 0x5AF: 84, + 0x5B0: 84, + 0x5B1: 84, + 0x5B2: 84, + 0x5B3: 84, + 0x5B4: 84, + 0x5B5: 84, + 0x5B6: 84, + 0x5B7: 84, + 0x5B8: 84, + 0x5B9: 84, + 0x5BA: 84, + 0x5BB: 84, + 0x5BC: 84, + 0x5BD: 84, + 0x5BF: 84, + 0x5C1: 84, + 0x5C2: 84, + 0x5C4: 84, + 0x5C5: 84, + 0x5C7: 84, + 0x610: 84, + 0x611: 84, + 0x612: 84, + 0x613: 84, + 0x614: 84, + 0x615: 84, + 0x616: 84, + 0x617: 84, + 0x618: 84, + 0x619: 84, + 0x61A: 84, + 0x61C: 84, + 0x620: 68, + 0x622: 82, + 0x623: 82, + 0x624: 82, + 0x625: 82, + 0x626: 68, + 0x627: 82, + 0x628: 68, + 0x629: 82, + 0x62A: 68, + 0x62B: 68, + 0x62C: 68, + 0x62D: 68, + 0x62E: 68, + 0x62F: 82, + 0x630: 82, + 0x631: 82, + 0x632: 82, + 0x633: 68, + 0x634: 68, + 0x635: 68, + 0x636: 68, + 0x637: 68, + 0x638: 68, + 0x639: 68, + 0x63A: 68, + 0x63B: 68, + 0x63C: 68, + 0x63D: 68, + 0x63E: 68, + 0x63F: 68, + 0x640: 67, + 0x641: 68, + 0x642: 68, + 0x643: 68, + 0x644: 68, + 0x645: 68, + 0x646: 68, + 0x647: 68, + 0x648: 82, + 0x649: 68, + 0x64A: 68, + 0x64B: 84, + 0x64C: 84, + 0x64D: 84, + 0x64E: 84, + 0x64F: 84, + 0x650: 84, + 0x651: 84, + 0x652: 84, + 0x653: 84, + 0x654: 84, + 0x655: 84, + 0x656: 84, + 0x657: 84, + 0x658: 84, + 0x659: 84, + 0x65A: 84, + 0x65B: 84, + 0x65C: 84, + 0x65D: 84, + 0x65E: 84, + 0x65F: 84, + 0x66E: 68, + 0x66F: 68, + 0x670: 84, + 0x671: 82, + 0x672: 82, + 0x673: 82, + 0x675: 82, + 0x676: 82, + 0x677: 82, + 0x678: 68, + 0x679: 68, + 0x67A: 68, + 0x67B: 68, + 0x67C: 68, + 0x67D: 68, + 0x67E: 68, + 0x67F: 68, + 0x680: 68, + 0x681: 68, + 0x682: 68, + 0x683: 68, + 0x684: 68, + 0x685: 68, + 0x686: 68, + 0x687: 68, + 0x688: 82, + 0x689: 82, + 0x68A: 82, + 0x68B: 82, + 0x68C: 82, + 0x68D: 82, + 0x68E: 82, + 0x68F: 82, + 0x690: 82, + 0x691: 82, + 0x692: 82, + 0x693: 82, + 0x694: 82, + 0x695: 82, + 0x696: 82, + 0x697: 82, + 0x698: 82, + 0x699: 82, + 0x69A: 68, + 0x69B: 68, + 0x69C: 68, + 0x69D: 68, + 0x69E: 68, + 0x69F: 68, + 0x6A0: 68, + 0x6A1: 68, + 0x6A2: 68, + 0x6A3: 68, + 0x6A4: 68, + 0x6A5: 68, + 0x6A6: 68, + 0x6A7: 68, + 0x6A8: 68, + 0x6A9: 68, + 0x6AA: 68, + 0x6AB: 68, + 0x6AC: 68, + 0x6AD: 68, + 0x6AE: 68, + 0x6AF: 68, + 0x6B0: 68, + 0x6B1: 68, + 0x6B2: 68, + 0x6B3: 68, + 0x6B4: 68, + 0x6B5: 68, + 0x6B6: 68, + 0x6B7: 68, + 0x6B8: 68, + 0x6B9: 68, + 0x6BA: 68, + 0x6BB: 68, + 0x6BC: 68, + 0x6BD: 68, + 0x6BE: 68, + 0x6BF: 68, + 0x6C0: 82, + 0x6C1: 68, + 0x6C2: 68, + 0x6C3: 82, + 0x6C4: 82, + 0x6C5: 82, + 0x6C6: 82, + 0x6C7: 82, + 0x6C8: 82, + 0x6C9: 82, + 0x6CA: 82, + 0x6CB: 82, + 0x6CC: 68, + 0x6CD: 82, + 0x6CE: 68, + 0x6CF: 82, + 0x6D0: 68, + 0x6D1: 68, + 0x6D2: 82, + 0x6D3: 82, + 0x6D5: 82, + 0x6D6: 84, + 0x6D7: 84, + 0x6D8: 84, + 0x6D9: 84, + 0x6DA: 84, + 0x6DB: 84, + 0x6DC: 84, + 0x6DF: 84, + 0x6E0: 84, + 0x6E1: 84, + 0x6E2: 84, + 0x6E3: 84, + 0x6E4: 84, + 0x6E7: 84, + 0x6E8: 84, + 0x6EA: 84, + 0x6EB: 84, + 0x6EC: 84, + 0x6ED: 84, + 0x6EE: 82, + 0x6EF: 82, + 0x6FA: 68, + 0x6FB: 68, + 0x6FC: 68, + 0x6FF: 68, + 0x70F: 84, + 0x710: 82, + 0x711: 84, + 0x712: 68, + 0x713: 68, + 0x714: 68, + 0x715: 82, + 0x716: 82, + 0x717: 82, + 0x718: 82, + 0x719: 82, + 0x71A: 68, + 0x71B: 68, + 0x71C: 68, + 0x71D: 68, + 0x71E: 82, + 0x71F: 68, + 0x720: 68, + 0x721: 68, + 0x722: 68, + 0x723: 68, + 0x724: 68, + 0x725: 68, + 0x726: 68, + 0x727: 68, + 0x728: 82, + 0x729: 68, + 0x72A: 82, + 0x72B: 68, + 0x72C: 82, + 0x72D: 68, + 0x72E: 68, + 0x72F: 82, + 0x730: 84, + 0x731: 84, + 0x732: 84, + 0x733: 84, + 0x734: 84, + 0x735: 84, + 0x736: 84, + 0x737: 84, + 0x738: 84, + 0x739: 84, + 0x73A: 84, + 0x73B: 84, + 0x73C: 84, + 0x73D: 84, + 0x73E: 84, + 0x73F: 84, + 0x740: 84, + 0x741: 84, + 0x742: 84, + 0x743: 84, + 0x744: 84, + 0x745: 84, + 0x746: 84, + 0x747: 84, + 0x748: 84, + 0x749: 84, + 0x74A: 84, + 0x74D: 82, + 0x74E: 68, + 0x74F: 68, + 0x750: 68, + 0x751: 68, + 0x752: 68, + 0x753: 68, + 0x754: 68, + 0x755: 68, + 0x756: 68, + 0x757: 68, + 0x758: 68, + 0x759: 82, + 0x75A: 82, + 0x75B: 82, + 0x75C: 68, + 0x75D: 68, + 0x75E: 68, + 0x75F: 68, + 0x760: 68, + 0x761: 68, + 0x762: 68, + 0x763: 68, + 0x764: 68, + 0x765: 68, + 0x766: 68, + 0x767: 68, + 0x768: 68, + 0x769: 68, + 0x76A: 68, + 0x76B: 82, + 0x76C: 82, + 0x76D: 68, + 0x76E: 68, + 0x76F: 68, + 0x770: 68, + 0x771: 82, + 0x772: 68, + 0x773: 82, + 0x774: 82, + 0x775: 68, + 0x776: 68, + 0x777: 68, + 0x778: 82, + 0x779: 82, + 0x77A: 68, + 0x77B: 68, + 0x77C: 68, + 0x77D: 68, + 0x77E: 68, + 0x77F: 68, + 0x7A6: 84, + 0x7A7: 84, + 0x7A8: 84, + 0x7A9: 84, + 0x7AA: 84, + 0x7AB: 84, + 0x7AC: 84, + 0x7AD: 84, + 0x7AE: 84, + 0x7AF: 84, + 0x7B0: 84, + 0x7CA: 68, + 0x7CB: 68, + 0x7CC: 68, + 0x7CD: 68, + 0x7CE: 68, + 0x7CF: 68, + 0x7D0: 68, + 0x7D1: 68, + 0x7D2: 68, + 0x7D3: 68, + 0x7D4: 68, + 0x7D5: 68, + 0x7D6: 68, + 0x7D7: 68, + 0x7D8: 68, + 0x7D9: 68, + 0x7DA: 68, + 0x7DB: 68, + 0x7DC: 68, + 0x7DD: 68, + 0x7DE: 68, + 0x7DF: 68, + 0x7E0: 68, + 0x7E1: 68, + 0x7E2: 68, + 0x7E3: 68, + 0x7E4: 68, + 0x7E5: 68, + 0x7E6: 68, + 0x7E7: 68, + 0x7E8: 68, + 0x7E9: 68, + 0x7EA: 68, + 0x7EB: 84, + 0x7EC: 84, + 0x7ED: 84, + 0x7EE: 84, + 0x7EF: 84, + 0x7F0: 84, + 0x7F1: 84, + 0x7F2: 84, + 0x7F3: 84, + 0x7FA: 67, + 0x7FD: 84, + 0x816: 84, + 0x817: 84, + 0x818: 84, + 0x819: 84, + 0x81B: 84, + 0x81C: 84, + 0x81D: 84, + 0x81E: 84, + 0x81F: 84, + 0x820: 84, + 0x821: 84, + 0x822: 84, + 0x823: 84, + 0x825: 84, + 0x826: 84, + 0x827: 84, + 0x829: 84, + 0x82A: 84, + 0x82B: 84, + 0x82C: 84, + 0x82D: 84, + 0x840: 82, + 0x841: 68, + 0x842: 68, + 0x843: 68, + 0x844: 68, + 0x845: 68, + 0x846: 82, + 0x847: 82, + 0x848: 68, + 0x849: 82, + 0x84A: 68, + 0x84B: 68, + 0x84C: 68, + 0x84D: 68, + 0x84E: 68, + 0x84F: 68, + 0x850: 68, + 0x851: 68, + 0x852: 68, + 0x853: 68, + 0x854: 82, + 0x855: 68, + 0x856: 82, + 0x857: 82, + 0x858: 82, + 0x859: 84, + 0x85A: 84, + 0x85B: 84, + 0x860: 68, + 0x862: 68, + 0x863: 68, + 0x864: 68, + 0x865: 68, + 0x867: 82, + 0x868: 68, + 0x869: 82, + 0x86A: 82, + 0x870: 82, + 0x871: 82, + 0x872: 82, + 0x873: 82, + 0x874: 82, + 0x875: 82, + 0x876: 82, + 0x877: 82, + 0x878: 82, + 0x879: 82, + 0x87A: 82, + 0x87B: 82, + 0x87C: 82, + 0x87D: 82, + 0x87E: 82, + 0x87F: 82, + 0x880: 82, + 0x881: 82, + 0x882: 82, + 0x883: 67, + 0x884: 67, + 0x885: 67, + 0x886: 68, + 0x889: 68, + 0x88A: 68, + 0x88B: 68, + 0x88C: 68, + 0x88D: 68, + 0x88E: 82, + 0x898: 84, + 0x899: 84, + 0x89A: 84, + 0x89B: 84, + 0x89C: 84, + 0x89D: 84, + 0x89E: 84, + 0x89F: 84, + 0x8A0: 68, + 0x8A1: 68, + 0x8A2: 68, + 0x8A3: 68, + 0x8A4: 68, + 0x8A5: 68, + 0x8A6: 68, + 0x8A7: 68, + 0x8A8: 68, + 0x8A9: 68, + 0x8AA: 82, + 0x8AB: 82, + 0x8AC: 82, + 0x8AE: 82, + 0x8AF: 68, + 0x8B0: 68, + 0x8B1: 82, + 0x8B2: 82, + 0x8B3: 68, + 0x8B4: 68, + 0x8B5: 68, + 0x8B6: 68, + 0x8B7: 68, + 0x8B8: 68, + 0x8B9: 82, + 0x8BA: 68, + 0x8BB: 68, + 0x8BC: 68, + 0x8BD: 68, + 0x8BE: 68, + 0x8BF: 68, + 0x8C0: 68, + 0x8C1: 68, + 0x8C2: 68, + 0x8C3: 68, + 0x8C4: 68, + 0x8C5: 68, + 0x8C6: 68, + 0x8C7: 68, + 0x8C8: 68, + 0x8CA: 84, + 0x8CB: 84, + 0x8CC: 84, + 0x8CD: 84, + 0x8CE: 84, + 0x8CF: 84, + 0x8D0: 84, + 0x8D1: 84, + 0x8D2: 84, + 0x8D3: 84, + 0x8D4: 84, + 0x8D5: 84, + 0x8D6: 84, + 0x8D7: 84, + 0x8D8: 84, + 0x8D9: 84, + 0x8DA: 84, + 0x8DB: 84, + 0x8DC: 84, + 0x8DD: 84, + 0x8DE: 84, + 0x8DF: 84, + 0x8E0: 84, + 0x8E1: 84, + 0x8E3: 84, + 0x8E4: 84, + 0x8E5: 84, + 0x8E6: 84, + 0x8E7: 84, + 0x8E8: 84, + 0x8E9: 84, + 0x8EA: 84, + 0x8EB: 84, + 0x8EC: 84, + 0x8ED: 84, + 0x8EE: 84, + 0x8EF: 84, + 0x8F0: 84, + 0x8F1: 84, + 0x8F2: 84, + 0x8F3: 84, + 0x8F4: 84, + 0x8F5: 84, + 0x8F6: 84, + 0x8F7: 84, + 0x8F8: 84, + 0x8F9: 84, + 0x8FA: 84, + 0x8FB: 84, + 0x8FC: 84, + 0x8FD: 84, + 0x8FE: 84, + 0x8FF: 84, + 0x900: 84, + 0x901: 84, + 0x902: 84, + 0x93A: 84, + 0x93C: 84, + 0x941: 84, + 0x942: 84, + 0x943: 84, + 0x944: 84, + 0x945: 84, + 0x946: 84, + 0x947: 84, + 0x948: 84, + 0x94D: 84, + 0x951: 84, + 0x952: 84, + 0x953: 84, + 0x954: 84, + 0x955: 84, + 0x956: 84, + 0x957: 84, + 0x962: 84, + 0x963: 84, + 0x981: 84, + 0x9BC: 84, + 0x9C1: 84, + 0x9C2: 84, + 0x9C3: 84, + 0x9C4: 84, + 0x9CD: 84, + 0x9E2: 84, + 0x9E3: 84, + 0x9FE: 84, + 0xA01: 84, + 0xA02: 84, + 0xA3C: 84, + 0xA41: 84, + 0xA42: 84, + 0xA47: 84, + 0xA48: 84, + 0xA4B: 84, + 0xA4C: 84, + 0xA4D: 84, + 0xA51: 84, + 0xA70: 84, + 0xA71: 84, + 0xA75: 84, + 0xA81: 84, + 0xA82: 84, + 0xABC: 84, + 0xAC1: 84, + 0xAC2: 84, + 0xAC3: 84, + 0xAC4: 84, + 0xAC5: 84, + 0xAC7: 84, + 0xAC8: 84, + 0xACD: 84, + 0xAE2: 84, + 0xAE3: 84, + 0xAFA: 84, + 0xAFB: 84, + 0xAFC: 84, + 0xAFD: 84, + 0xAFE: 84, + 0xAFF: 84, + 0xB01: 84, + 0xB3C: 84, + 0xB3F: 84, + 0xB41: 84, + 0xB42: 84, + 0xB43: 84, + 0xB44: 84, + 0xB4D: 84, + 0xB55: 84, + 0xB56: 84, + 0xB62: 84, + 0xB63: 84, + 0xB82: 84, + 0xBC0: 84, + 0xBCD: 84, + 0xC00: 84, + 0xC04: 84, + 0xC3C: 84, + 0xC3E: 84, + 0xC3F: 84, + 0xC40: 84, + 0xC46: 84, + 0xC47: 84, + 0xC48: 84, + 0xC4A: 84, + 0xC4B: 84, + 0xC4C: 84, + 0xC4D: 84, + 0xC55: 84, + 0xC56: 84, + 0xC62: 84, + 0xC63: 84, + 0xC81: 84, + 0xCBC: 84, + 0xCBF: 84, + 0xCC6: 84, + 0xCCC: 84, + 0xCCD: 84, + 0xCE2: 84, + 0xCE3: 84, + 0xD00: 84, + 0xD01: 84, + 0xD3B: 84, + 0xD3C: 84, + 0xD41: 84, + 0xD42: 84, + 0xD43: 84, + 0xD44: 84, + 0xD4D: 84, + 0xD62: 84, + 0xD63: 84, + 0xD81: 84, + 0xDCA: 84, + 0xDD2: 84, + 0xDD3: 84, + 0xDD4: 84, + 0xDD6: 84, + 0xE31: 84, + 0xE34: 84, + 0xE35: 84, + 0xE36: 84, + 0xE37: 84, + 0xE38: 84, + 0xE39: 84, + 0xE3A: 84, + 0xE47: 84, + 0xE48: 84, + 0xE49: 84, + 0xE4A: 84, + 0xE4B: 84, + 0xE4C: 84, + 0xE4D: 84, + 0xE4E: 84, + 0xEB1: 84, + 0xEB4: 84, + 0xEB5: 84, + 0xEB6: 84, + 0xEB7: 84, + 0xEB8: 84, + 0xEB9: 84, + 0xEBA: 84, + 0xEBB: 84, + 0xEBC: 84, + 0xEC8: 84, + 0xEC9: 84, + 0xECA: 84, + 0xECB: 84, + 0xECC: 84, + 0xECD: 84, + 0xECE: 84, + 0xF18: 84, + 0xF19: 84, + 0xF35: 84, + 0xF37: 84, + 0xF39: 84, + 0xF71: 84, + 0xF72: 84, + 0xF73: 84, + 0xF74: 84, + 0xF75: 84, + 0xF76: 84, + 0xF77: 84, + 0xF78: 84, + 0xF79: 84, + 0xF7A: 84, + 0xF7B: 84, + 0xF7C: 84, + 0xF7D: 84, + 0xF7E: 84, + 0xF80: 84, + 0xF81: 84, + 0xF82: 84, + 0xF83: 84, + 0xF84: 84, + 0xF86: 84, + 0xF87: 84, + 0xF8D: 84, + 0xF8E: 84, + 0xF8F: 84, + 0xF90: 84, + 0xF91: 84, + 0xF92: 84, + 0xF93: 84, + 0xF94: 84, + 0xF95: 84, + 0xF96: 84, + 0xF97: 84, + 0xF99: 84, + 0xF9A: 84, + 0xF9B: 84, + 0xF9C: 84, + 0xF9D: 84, + 0xF9E: 84, + 0xF9F: 84, + 0xFA0: 84, + 0xFA1: 84, + 0xFA2: 84, + 0xFA3: 84, + 0xFA4: 84, + 0xFA5: 84, + 0xFA6: 84, + 0xFA7: 84, + 0xFA8: 84, + 0xFA9: 84, + 0xFAA: 84, + 0xFAB: 84, + 0xFAC: 84, + 0xFAD: 84, + 0xFAE: 84, + 0xFAF: 84, + 0xFB0: 84, + 0xFB1: 84, + 0xFB2: 84, + 0xFB3: 84, + 0xFB4: 84, + 0xFB5: 84, + 0xFB6: 84, + 0xFB7: 84, + 0xFB8: 84, + 0xFB9: 84, + 0xFBA: 84, + 0xFBB: 84, + 0xFBC: 84, + 0xFC6: 84, + 0x102D: 84, + 0x102E: 84, + 0x102F: 84, + 0x1030: 84, + 0x1032: 84, + 0x1033: 84, + 0x1034: 84, + 0x1035: 84, + 0x1036: 84, + 0x1037: 84, + 0x1039: 84, + 0x103A: 84, + 0x103D: 84, + 0x103E: 84, + 0x1058: 84, + 0x1059: 84, + 0x105E: 84, + 0x105F: 84, + 0x1060: 84, + 0x1071: 84, + 0x1072: 84, + 0x1073: 84, + 0x1074: 84, + 0x1082: 84, + 0x1085: 84, + 0x1086: 84, + 0x108D: 84, + 0x109D: 84, + 0x135D: 84, + 0x135E: 84, + 0x135F: 84, + 0x1712: 84, + 0x1713: 84, + 0x1714: 84, + 0x1732: 84, + 0x1733: 84, + 0x1752: 84, + 0x1753: 84, + 0x1772: 84, + 0x1773: 84, + 0x17B4: 84, + 0x17B5: 84, + 0x17B7: 84, + 0x17B8: 84, + 0x17B9: 84, + 0x17BA: 84, + 0x17BB: 84, + 0x17BC: 84, + 0x17BD: 84, + 0x17C6: 84, + 0x17C9: 84, + 0x17CA: 84, + 0x17CB: 84, + 0x17CC: 84, + 0x17CD: 84, + 0x17CE: 84, + 0x17CF: 84, + 0x17D0: 84, + 0x17D1: 84, + 0x17D2: 84, + 0x17D3: 84, + 0x17DD: 84, + 0x1807: 68, + 0x180A: 67, + 0x180B: 84, + 0x180C: 84, + 0x180D: 84, + 0x180F: 84, + 0x1820: 68, + 0x1821: 68, + 0x1822: 68, + 0x1823: 68, + 0x1824: 68, + 0x1825: 68, + 0x1826: 68, + 0x1827: 68, + 0x1828: 68, + 0x1829: 68, + 0x182A: 68, + 0x182B: 68, + 0x182C: 68, + 0x182D: 68, + 0x182E: 68, + 0x182F: 68, + 0x1830: 68, + 0x1831: 68, + 0x1832: 68, + 0x1833: 68, + 0x1834: 68, + 0x1835: 68, + 0x1836: 68, + 0x1837: 68, + 0x1838: 68, + 0x1839: 68, + 0x183A: 68, + 0x183B: 68, + 0x183C: 68, + 0x183D: 68, + 0x183E: 68, + 0x183F: 68, + 0x1840: 68, + 0x1841: 68, + 0x1842: 68, + 0x1843: 68, + 0x1844: 68, + 0x1845: 68, + 0x1846: 68, + 0x1847: 68, + 0x1848: 68, + 0x1849: 68, + 0x184A: 68, + 0x184B: 68, + 0x184C: 68, + 0x184D: 68, + 0x184E: 68, + 0x184F: 68, + 0x1850: 68, + 0x1851: 68, + 0x1852: 68, + 0x1853: 68, + 0x1854: 68, + 0x1855: 68, + 0x1856: 68, + 0x1857: 68, + 0x1858: 68, + 0x1859: 68, + 0x185A: 68, + 0x185B: 68, + 0x185C: 68, + 0x185D: 68, + 0x185E: 68, + 0x185F: 68, + 0x1860: 68, + 0x1861: 68, + 0x1862: 68, + 0x1863: 68, + 0x1864: 68, + 0x1865: 68, + 0x1866: 68, + 0x1867: 68, + 0x1868: 68, + 0x1869: 68, + 0x186A: 68, + 0x186B: 68, + 0x186C: 68, + 0x186D: 68, + 0x186E: 68, + 0x186F: 68, + 0x1870: 68, + 0x1871: 68, + 0x1872: 68, + 0x1873: 68, + 0x1874: 68, + 0x1875: 68, + 0x1876: 68, + 0x1877: 68, + 0x1878: 68, + 0x1885: 84, + 0x1886: 84, + 0x1887: 68, + 0x1888: 68, + 0x1889: 68, + 0x188A: 68, + 0x188B: 68, + 0x188C: 68, + 0x188D: 68, + 0x188E: 68, + 0x188F: 68, + 0x1890: 68, + 0x1891: 68, + 0x1892: 68, + 0x1893: 68, + 0x1894: 68, + 0x1895: 68, + 0x1896: 68, + 0x1897: 68, + 0x1898: 68, + 0x1899: 68, + 0x189A: 68, + 0x189B: 68, + 0x189C: 68, + 0x189D: 68, + 0x189E: 68, + 0x189F: 68, + 0x18A0: 68, + 0x18A1: 68, + 0x18A2: 68, + 0x18A3: 68, + 0x18A4: 68, + 0x18A5: 68, + 0x18A6: 68, + 0x18A7: 68, + 0x18A8: 68, + 0x18A9: 84, + 0x18AA: 68, + 0x1920: 84, + 0x1921: 84, + 0x1922: 84, + 0x1927: 84, + 0x1928: 84, + 0x1932: 84, + 0x1939: 84, + 0x193A: 84, + 0x193B: 84, + 0x1A17: 84, + 0x1A18: 84, + 0x1A1B: 84, + 0x1A56: 84, + 0x1A58: 84, + 0x1A59: 84, + 0x1A5A: 84, + 0x1A5B: 84, + 0x1A5C: 84, + 0x1A5D: 84, + 0x1A5E: 84, + 0x1A60: 84, + 0x1A62: 84, + 0x1A65: 84, + 0x1A66: 84, + 0x1A67: 84, + 0x1A68: 84, + 0x1A69: 84, + 0x1A6A: 84, + 0x1A6B: 84, + 0x1A6C: 84, + 0x1A73: 84, + 0x1A74: 84, + 0x1A75: 84, + 0x1A76: 84, + 0x1A77: 84, + 0x1A78: 84, + 0x1A79: 84, + 0x1A7A: 84, + 0x1A7B: 84, + 0x1A7C: 84, + 0x1A7F: 84, + 0x1AB0: 84, + 0x1AB1: 84, + 0x1AB2: 84, + 0x1AB3: 84, + 0x1AB4: 84, + 0x1AB5: 84, + 0x1AB6: 84, + 0x1AB7: 84, + 0x1AB8: 84, + 0x1AB9: 84, + 0x1ABA: 84, + 0x1ABB: 84, + 0x1ABC: 84, + 0x1ABD: 84, + 0x1ABE: 84, + 0x1ABF: 84, + 0x1AC0: 84, + 0x1AC1: 84, + 0x1AC2: 84, + 0x1AC3: 84, + 0x1AC4: 84, + 0x1AC5: 84, + 0x1AC6: 84, + 0x1AC7: 84, + 0x1AC8: 84, + 0x1AC9: 84, + 0x1ACA: 84, + 0x1ACB: 84, + 0x1ACC: 84, + 0x1ACD: 84, + 0x1ACE: 84, + 0x1B00: 84, + 0x1B01: 84, + 0x1B02: 84, + 0x1B03: 84, + 0x1B34: 84, + 0x1B36: 84, + 0x1B37: 84, + 0x1B38: 84, + 0x1B39: 84, + 0x1B3A: 84, + 0x1B3C: 84, + 0x1B42: 84, + 0x1B6B: 84, + 0x1B6C: 84, + 0x1B6D: 84, + 0x1B6E: 84, + 0x1B6F: 84, + 0x1B70: 84, + 0x1B71: 84, + 0x1B72: 84, + 0x1B73: 84, + 0x1B80: 84, + 0x1B81: 84, + 0x1BA2: 84, + 0x1BA3: 84, + 0x1BA4: 84, + 0x1BA5: 84, + 0x1BA8: 84, + 0x1BA9: 84, + 0x1BAB: 84, + 0x1BAC: 84, + 0x1BAD: 84, + 0x1BE6: 84, + 0x1BE8: 84, + 0x1BE9: 84, + 0x1BED: 84, + 0x1BEF: 84, + 0x1BF0: 84, + 0x1BF1: 84, + 0x1C2C: 84, + 0x1C2D: 84, + 0x1C2E: 84, + 0x1C2F: 84, + 0x1C30: 84, + 0x1C31: 84, + 0x1C32: 84, + 0x1C33: 84, + 0x1C36: 84, + 0x1C37: 84, + 0x1CD0: 84, + 0x1CD1: 84, + 0x1CD2: 84, + 0x1CD4: 84, + 0x1CD5: 84, + 0x1CD6: 84, + 0x1CD7: 84, + 0x1CD8: 84, + 0x1CD9: 84, + 0x1CDA: 84, + 0x1CDB: 84, + 0x1CDC: 84, + 0x1CDD: 84, + 0x1CDE: 84, + 0x1CDF: 84, + 0x1CE0: 84, + 0x1CE2: 84, + 0x1CE3: 84, + 0x1CE4: 84, + 0x1CE5: 84, + 0x1CE6: 84, + 0x1CE7: 84, + 0x1CE8: 84, + 0x1CED: 84, + 0x1CF4: 84, + 0x1CF8: 84, + 0x1CF9: 84, + 0x1DC0: 84, + 0x1DC1: 84, + 0x1DC2: 84, + 0x1DC3: 84, + 0x1DC4: 84, + 0x1DC5: 84, + 0x1DC6: 84, + 0x1DC7: 84, + 0x1DC8: 84, + 0x1DC9: 84, + 0x1DCA: 84, + 0x1DCB: 84, + 0x1DCC: 84, + 0x1DCD: 84, + 0x1DCE: 84, + 0x1DCF: 84, + 0x1DD0: 84, + 0x1DD1: 84, + 0x1DD2: 84, + 0x1DD3: 84, + 0x1DD4: 84, + 0x1DD5: 84, + 0x1DD6: 84, + 0x1DD7: 84, + 0x1DD8: 84, + 0x1DD9: 84, + 0x1DDA: 84, + 0x1DDB: 84, + 0x1DDC: 84, + 0x1DDD: 84, + 0x1DDE: 84, + 0x1DDF: 84, + 0x1DE0: 84, + 0x1DE1: 84, + 0x1DE2: 84, + 0x1DE3: 84, + 0x1DE4: 84, + 0x1DE5: 84, + 0x1DE6: 84, + 0x1DE7: 84, + 0x1DE8: 84, + 0x1DE9: 84, + 0x1DEA: 84, + 0x1DEB: 84, + 0x1DEC: 84, + 0x1DED: 84, + 0x1DEE: 84, + 0x1DEF: 84, + 0x1DF0: 84, + 0x1DF1: 84, + 0x1DF2: 84, + 0x1DF3: 84, + 0x1DF4: 84, + 0x1DF5: 84, + 0x1DF6: 84, + 0x1DF7: 84, + 0x1DF8: 84, + 0x1DF9: 84, + 0x1DFA: 84, + 0x1DFB: 84, + 0x1DFC: 84, + 0x1DFD: 84, + 0x1DFE: 84, + 0x1DFF: 84, + 0x200B: 84, + 0x200D: 67, + 0x200E: 84, + 0x200F: 84, + 0x202A: 84, + 0x202B: 84, + 0x202C: 84, + 0x202D: 84, + 0x202E: 84, + 0x2060: 84, + 0x2061: 84, + 0x2062: 84, + 0x2063: 84, + 0x2064: 84, + 0x206A: 84, + 0x206B: 84, + 0x206C: 84, + 0x206D: 84, + 0x206E: 84, + 0x206F: 84, + 0x20D0: 84, + 0x20D1: 84, + 0x20D2: 84, + 0x20D3: 84, + 0x20D4: 84, + 0x20D5: 84, + 0x20D6: 84, + 0x20D7: 84, + 0x20D8: 84, + 0x20D9: 84, + 0x20DA: 84, + 0x20DB: 84, + 0x20DC: 84, + 0x20DD: 84, + 0x20DE: 84, + 0x20DF: 84, + 0x20E0: 84, + 0x20E1: 84, + 0x20E2: 84, + 0x20E3: 84, + 0x20E4: 84, + 0x20E5: 84, + 0x20E6: 84, + 0x20E7: 84, + 0x20E8: 84, + 0x20E9: 84, + 0x20EA: 84, + 0x20EB: 84, + 0x20EC: 84, + 0x20ED: 84, + 0x20EE: 84, + 0x20EF: 84, + 0x20F0: 84, + 0x2CEF: 84, + 0x2CF0: 84, + 0x2CF1: 84, + 0x2D7F: 84, + 0x2DE0: 84, + 0x2DE1: 84, + 0x2DE2: 84, + 0x2DE3: 84, + 0x2DE4: 84, + 0x2DE5: 84, + 0x2DE6: 84, + 0x2DE7: 84, + 0x2DE8: 84, + 0x2DE9: 84, + 0x2DEA: 84, + 0x2DEB: 84, + 0x2DEC: 84, + 0x2DED: 84, + 0x2DEE: 84, + 0x2DEF: 84, + 0x2DF0: 84, + 0x2DF1: 84, + 0x2DF2: 84, + 0x2DF3: 84, + 0x2DF4: 84, + 0x2DF5: 84, + 0x2DF6: 84, + 0x2DF7: 84, + 0x2DF8: 84, + 0x2DF9: 84, + 0x2DFA: 84, + 0x2DFB: 84, + 0x2DFC: 84, + 0x2DFD: 84, + 0x2DFE: 84, + 0x2DFF: 84, + 0x302A: 84, + 0x302B: 84, + 0x302C: 84, + 0x302D: 84, + 0x3099: 84, + 0x309A: 84, + 0xA66F: 84, + 0xA670: 84, + 0xA671: 84, + 0xA672: 84, + 0xA674: 84, + 0xA675: 84, + 0xA676: 84, + 0xA677: 84, + 0xA678: 84, + 0xA679: 84, + 0xA67A: 84, + 0xA67B: 84, + 0xA67C: 84, + 0xA67D: 84, + 0xA69E: 84, + 0xA69F: 84, + 0xA6F0: 84, + 0xA6F1: 84, + 0xA802: 84, + 0xA806: 84, + 0xA80B: 84, + 0xA825: 84, + 0xA826: 84, + 0xA82C: 84, + 0xA840: 68, + 0xA841: 68, + 0xA842: 68, + 0xA843: 68, + 0xA844: 68, + 0xA845: 68, + 0xA846: 68, + 0xA847: 68, + 0xA848: 68, + 0xA849: 68, + 0xA84A: 68, + 0xA84B: 68, + 0xA84C: 68, + 0xA84D: 68, + 0xA84E: 68, + 0xA84F: 68, + 0xA850: 68, + 0xA851: 68, + 0xA852: 68, + 0xA853: 68, + 0xA854: 68, + 0xA855: 68, + 0xA856: 68, + 0xA857: 68, + 0xA858: 68, + 0xA859: 68, + 0xA85A: 68, + 0xA85B: 68, + 0xA85C: 68, + 0xA85D: 68, + 0xA85E: 68, + 0xA85F: 68, + 0xA860: 68, + 0xA861: 68, + 0xA862: 68, + 0xA863: 68, + 0xA864: 68, + 0xA865: 68, + 0xA866: 68, + 0xA867: 68, + 0xA868: 68, + 0xA869: 68, + 0xA86A: 68, + 0xA86B: 68, + 0xA86C: 68, + 0xA86D: 68, + 0xA86E: 68, + 0xA86F: 68, + 0xA870: 68, + 0xA871: 68, + 0xA872: 76, + 0xA8C4: 84, + 0xA8C5: 84, + 0xA8E0: 84, + 0xA8E1: 84, + 0xA8E2: 84, + 0xA8E3: 84, + 0xA8E4: 84, + 0xA8E5: 84, + 0xA8E6: 84, + 0xA8E7: 84, + 0xA8E8: 84, + 0xA8E9: 84, + 0xA8EA: 84, + 0xA8EB: 84, + 0xA8EC: 84, + 0xA8ED: 84, + 0xA8EE: 84, + 0xA8EF: 84, + 0xA8F0: 84, + 0xA8F1: 84, + 0xA8FF: 84, + 0xA926: 84, + 0xA927: 84, + 0xA928: 84, + 0xA929: 84, + 0xA92A: 84, + 0xA92B: 84, + 0xA92C: 84, + 0xA92D: 84, + 0xA947: 84, + 0xA948: 84, + 0xA949: 84, + 0xA94A: 84, + 0xA94B: 84, + 0xA94C: 84, + 0xA94D: 84, + 0xA94E: 84, + 0xA94F: 84, + 0xA950: 84, + 0xA951: 84, + 0xA980: 84, + 0xA981: 84, + 0xA982: 84, + 0xA9B3: 84, + 0xA9B6: 84, + 0xA9B7: 84, + 0xA9B8: 84, + 0xA9B9: 84, + 0xA9BC: 84, + 0xA9BD: 84, + 0xA9E5: 84, + 0xAA29: 84, + 0xAA2A: 84, + 0xAA2B: 84, + 0xAA2C: 84, + 0xAA2D: 84, + 0xAA2E: 84, + 0xAA31: 84, + 0xAA32: 84, + 0xAA35: 84, + 0xAA36: 84, + 0xAA43: 84, + 0xAA4C: 84, + 0xAA7C: 84, + 0xAAB0: 84, + 0xAAB2: 84, + 0xAAB3: 84, + 0xAAB4: 84, + 0xAAB7: 84, + 0xAAB8: 84, + 0xAABE: 84, + 0xAABF: 84, + 0xAAC1: 84, + 0xAAEC: 84, + 0xAAED: 84, + 0xAAF6: 84, + 0xABE5: 84, + 0xABE8: 84, + 0xABED: 84, + 0xFB1E: 84, + 0xFE00: 84, + 0xFE01: 84, + 0xFE02: 84, + 0xFE03: 84, + 0xFE04: 84, + 0xFE05: 84, + 0xFE06: 84, + 0xFE07: 84, + 0xFE08: 84, + 0xFE09: 84, + 0xFE0A: 84, + 0xFE0B: 84, + 0xFE0C: 84, + 0xFE0D: 84, + 0xFE0E: 84, + 0xFE0F: 84, + 0xFE20: 84, + 0xFE21: 84, + 0xFE22: 84, + 0xFE23: 84, + 0xFE24: 84, + 0xFE25: 84, + 0xFE26: 84, + 0xFE27: 84, + 0xFE28: 84, + 0xFE29: 84, + 0xFE2A: 84, + 0xFE2B: 84, + 0xFE2C: 84, + 0xFE2D: 84, + 0xFE2E: 84, + 0xFE2F: 84, + 0xFEFF: 84, + 0xFFF9: 84, + 0xFFFA: 84, + 0xFFFB: 84, + 0x101FD: 84, + 0x102E0: 84, + 0x10376: 84, + 0x10377: 84, + 0x10378: 84, + 0x10379: 84, + 0x1037A: 84, + 0x10A01: 84, + 0x10A02: 84, + 0x10A03: 84, + 0x10A05: 84, + 0x10A06: 84, + 0x10A0C: 84, + 0x10A0D: 84, + 0x10A0E: 84, + 0x10A0F: 84, + 0x10A38: 84, + 0x10A39: 84, + 0x10A3A: 84, + 0x10A3F: 84, + 0x10AC0: 68, + 0x10AC1: 68, + 0x10AC2: 68, + 0x10AC3: 68, + 0x10AC4: 68, + 0x10AC5: 82, + 0x10AC7: 82, + 0x10AC9: 82, + 0x10ACA: 82, + 0x10ACD: 76, + 0x10ACE: 82, + 0x10ACF: 82, + 0x10AD0: 82, + 0x10AD1: 82, + 0x10AD2: 82, + 0x10AD3: 68, + 0x10AD4: 68, + 0x10AD5: 68, + 0x10AD6: 68, + 0x10AD7: 76, + 0x10AD8: 68, + 0x10AD9: 68, + 0x10ADA: 68, + 0x10ADB: 68, + 0x10ADC: 68, + 0x10ADD: 82, + 0x10ADE: 68, + 0x10ADF: 68, + 0x10AE0: 68, + 0x10AE1: 82, + 0x10AE4: 82, + 0x10AE5: 84, + 0x10AE6: 84, + 0x10AEB: 68, + 0x10AEC: 68, + 0x10AED: 68, + 0x10AEE: 68, + 0x10AEF: 82, + 0x10B80: 68, + 0x10B81: 82, + 0x10B82: 68, + 0x10B83: 82, + 0x10B84: 82, + 0x10B85: 82, + 0x10B86: 68, + 0x10B87: 68, + 0x10B88: 68, + 0x10B89: 82, + 0x10B8A: 68, + 0x10B8B: 68, + 0x10B8C: 82, + 0x10B8D: 68, + 0x10B8E: 82, + 0x10B8F: 82, + 0x10B90: 68, + 0x10B91: 82, + 0x10BA9: 82, + 0x10BAA: 82, + 0x10BAB: 82, + 0x10BAC: 82, + 0x10BAD: 68, + 0x10BAE: 68, + 0x10D00: 76, + 0x10D01: 68, + 0x10D02: 68, + 0x10D03: 68, + 0x10D04: 68, + 0x10D05: 68, + 0x10D06: 68, + 0x10D07: 68, + 0x10D08: 68, + 0x10D09: 68, + 0x10D0A: 68, + 0x10D0B: 68, + 0x10D0C: 68, + 0x10D0D: 68, + 0x10D0E: 68, + 0x10D0F: 68, + 0x10D10: 68, + 0x10D11: 68, + 0x10D12: 68, + 0x10D13: 68, + 0x10D14: 68, + 0x10D15: 68, + 0x10D16: 68, + 0x10D17: 68, + 0x10D18: 68, + 0x10D19: 68, + 0x10D1A: 68, + 0x10D1B: 68, + 0x10D1C: 68, + 0x10D1D: 68, + 0x10D1E: 68, + 0x10D1F: 68, + 0x10D20: 68, + 0x10D21: 68, + 0x10D22: 82, + 0x10D23: 68, + 0x10D24: 84, + 0x10D25: 84, + 0x10D26: 84, + 0x10D27: 84, + 0x10EAB: 84, + 0x10EAC: 84, + 0x10EFD: 84, + 0x10EFE: 84, + 0x10EFF: 84, + 0x10F30: 68, + 0x10F31: 68, + 0x10F32: 68, + 0x10F33: 82, + 0x10F34: 68, + 0x10F35: 68, + 0x10F36: 68, + 0x10F37: 68, + 0x10F38: 68, + 0x10F39: 68, + 0x10F3A: 68, + 0x10F3B: 68, + 0x10F3C: 68, + 0x10F3D: 68, + 0x10F3E: 68, + 0x10F3F: 68, + 0x10F40: 68, + 0x10F41: 68, + 0x10F42: 68, + 0x10F43: 68, + 0x10F44: 68, + 0x10F46: 84, + 0x10F47: 84, + 0x10F48: 84, + 0x10F49: 84, + 0x10F4A: 84, + 0x10F4B: 84, + 0x10F4C: 84, + 0x10F4D: 84, + 0x10F4E: 84, + 0x10F4F: 84, + 0x10F50: 84, + 0x10F51: 68, + 0x10F52: 68, + 0x10F53: 68, + 0x10F54: 82, + 0x10F70: 68, + 0x10F71: 68, + 0x10F72: 68, + 0x10F73: 68, + 0x10F74: 82, + 0x10F75: 82, + 0x10F76: 68, + 0x10F77: 68, + 0x10F78: 68, + 0x10F79: 68, + 0x10F7A: 68, + 0x10F7B: 68, + 0x10F7C: 68, + 0x10F7D: 68, + 0x10F7E: 68, + 0x10F7F: 68, + 0x10F80: 68, + 0x10F81: 68, + 0x10F82: 84, + 0x10F83: 84, + 0x10F84: 84, + 0x10F85: 84, + 0x10FB0: 68, + 0x10FB2: 68, + 0x10FB3: 68, + 0x10FB4: 82, + 0x10FB5: 82, + 0x10FB6: 82, + 0x10FB8: 68, + 0x10FB9: 82, + 0x10FBA: 82, + 0x10FBB: 68, + 0x10FBC: 68, + 0x10FBD: 82, + 0x10FBE: 68, + 0x10FBF: 68, + 0x10FC1: 68, + 0x10FC2: 82, + 0x10FC3: 82, + 0x10FC4: 68, + 0x10FC9: 82, + 0x10FCA: 68, + 0x10FCB: 76, + 0x11001: 84, + 0x11038: 84, + 0x11039: 84, + 0x1103A: 84, + 0x1103B: 84, + 0x1103C: 84, + 0x1103D: 84, + 0x1103E: 84, + 0x1103F: 84, + 0x11040: 84, + 0x11041: 84, + 0x11042: 84, + 0x11043: 84, + 0x11044: 84, + 0x11045: 84, + 0x11046: 84, + 0x11070: 84, + 0x11073: 84, + 0x11074: 84, + 0x1107F: 84, + 0x11080: 84, + 0x11081: 84, + 0x110B3: 84, + 0x110B4: 84, + 0x110B5: 84, + 0x110B6: 84, + 0x110B9: 84, + 0x110BA: 84, + 0x110C2: 84, + 0x11100: 84, + 0x11101: 84, + 0x11102: 84, + 0x11127: 84, + 0x11128: 84, + 0x11129: 84, + 0x1112A: 84, + 0x1112B: 84, + 0x1112D: 84, + 0x1112E: 84, + 0x1112F: 84, + 0x11130: 84, + 0x11131: 84, + 0x11132: 84, + 0x11133: 84, + 0x11134: 84, + 0x11173: 84, + 0x11180: 84, + 0x11181: 84, + 0x111B6: 84, + 0x111B7: 84, + 0x111B8: 84, + 0x111B9: 84, + 0x111BA: 84, + 0x111BB: 84, + 0x111BC: 84, + 0x111BD: 84, + 0x111BE: 84, + 0x111C9: 84, + 0x111CA: 84, + 0x111CB: 84, + 0x111CC: 84, + 0x111CF: 84, + 0x1122F: 84, + 0x11230: 84, + 0x11231: 84, + 0x11234: 84, + 0x11236: 84, + 0x11237: 84, + 0x1123E: 84, + 0x11241: 84, + 0x112DF: 84, + 0x112E3: 84, + 0x112E4: 84, + 0x112E5: 84, + 0x112E6: 84, + 0x112E7: 84, + 0x112E8: 84, + 0x112E9: 84, + 0x112EA: 84, + 0x11300: 84, + 0x11301: 84, + 0x1133B: 84, + 0x1133C: 84, + 0x11340: 84, + 0x11366: 84, + 0x11367: 84, + 0x11368: 84, + 0x11369: 84, + 0x1136A: 84, + 0x1136B: 84, + 0x1136C: 84, + 0x11370: 84, + 0x11371: 84, + 0x11372: 84, + 0x11373: 84, + 0x11374: 84, + 0x11438: 84, + 0x11439: 84, + 0x1143A: 84, + 0x1143B: 84, + 0x1143C: 84, + 0x1143D: 84, + 0x1143E: 84, + 0x1143F: 84, + 0x11442: 84, + 0x11443: 84, + 0x11444: 84, + 0x11446: 84, + 0x1145E: 84, + 0x114B3: 84, + 0x114B4: 84, + 0x114B5: 84, + 0x114B6: 84, + 0x114B7: 84, + 0x114B8: 84, + 0x114BA: 84, + 0x114BF: 84, + 0x114C0: 84, + 0x114C2: 84, + 0x114C3: 84, + 0x115B2: 84, + 0x115B3: 84, + 0x115B4: 84, + 0x115B5: 84, + 0x115BC: 84, + 0x115BD: 84, + 0x115BF: 84, + 0x115C0: 84, + 0x115DC: 84, + 0x115DD: 84, + 0x11633: 84, + 0x11634: 84, + 0x11635: 84, + 0x11636: 84, + 0x11637: 84, + 0x11638: 84, + 0x11639: 84, + 0x1163A: 84, + 0x1163D: 84, + 0x1163F: 84, + 0x11640: 84, + 0x116AB: 84, + 0x116AD: 84, + 0x116B0: 84, + 0x116B1: 84, + 0x116B2: 84, + 0x116B3: 84, + 0x116B4: 84, + 0x116B5: 84, + 0x116B7: 84, + 0x1171D: 84, + 0x1171E: 84, + 0x1171F: 84, + 0x11722: 84, + 0x11723: 84, + 0x11724: 84, + 0x11725: 84, + 0x11727: 84, + 0x11728: 84, + 0x11729: 84, + 0x1172A: 84, + 0x1172B: 84, + 0x1182F: 84, + 0x11830: 84, + 0x11831: 84, + 0x11832: 84, + 0x11833: 84, + 0x11834: 84, + 0x11835: 84, + 0x11836: 84, + 0x11837: 84, + 0x11839: 84, + 0x1183A: 84, + 0x1193B: 84, + 0x1193C: 84, + 0x1193E: 84, + 0x11943: 84, + 0x119D4: 84, + 0x119D5: 84, + 0x119D6: 84, + 0x119D7: 84, + 0x119DA: 84, + 0x119DB: 84, + 0x119E0: 84, + 0x11A01: 84, + 0x11A02: 84, + 0x11A03: 84, + 0x11A04: 84, + 0x11A05: 84, + 0x11A06: 84, + 0x11A07: 84, + 0x11A08: 84, + 0x11A09: 84, + 0x11A0A: 84, + 0x11A33: 84, + 0x11A34: 84, + 0x11A35: 84, + 0x11A36: 84, + 0x11A37: 84, + 0x11A38: 84, + 0x11A3B: 84, + 0x11A3C: 84, + 0x11A3D: 84, + 0x11A3E: 84, + 0x11A47: 84, + 0x11A51: 84, + 0x11A52: 84, + 0x11A53: 84, + 0x11A54: 84, + 0x11A55: 84, + 0x11A56: 84, + 0x11A59: 84, + 0x11A5A: 84, + 0x11A5B: 84, + 0x11A8A: 84, + 0x11A8B: 84, + 0x11A8C: 84, + 0x11A8D: 84, + 0x11A8E: 84, + 0x11A8F: 84, + 0x11A90: 84, + 0x11A91: 84, + 0x11A92: 84, + 0x11A93: 84, + 0x11A94: 84, + 0x11A95: 84, + 0x11A96: 84, + 0x11A98: 84, + 0x11A99: 84, + 0x11C30: 84, + 0x11C31: 84, + 0x11C32: 84, + 0x11C33: 84, + 0x11C34: 84, + 0x11C35: 84, + 0x11C36: 84, + 0x11C38: 84, + 0x11C39: 84, + 0x11C3A: 84, + 0x11C3B: 84, + 0x11C3C: 84, + 0x11C3D: 84, + 0x11C3F: 84, + 0x11C92: 84, + 0x11C93: 84, + 0x11C94: 84, + 0x11C95: 84, + 0x11C96: 84, + 0x11C97: 84, + 0x11C98: 84, + 0x11C99: 84, + 0x11C9A: 84, + 0x11C9B: 84, + 0x11C9C: 84, + 0x11C9D: 84, + 0x11C9E: 84, + 0x11C9F: 84, + 0x11CA0: 84, + 0x11CA1: 84, + 0x11CA2: 84, + 0x11CA3: 84, + 0x11CA4: 84, + 0x11CA5: 84, + 0x11CA6: 84, + 0x11CA7: 84, + 0x11CAA: 84, + 0x11CAB: 84, + 0x11CAC: 84, + 0x11CAD: 84, + 0x11CAE: 84, + 0x11CAF: 84, + 0x11CB0: 84, + 0x11CB2: 84, + 0x11CB3: 84, + 0x11CB5: 84, + 0x11CB6: 84, + 0x11D31: 84, + 0x11D32: 84, + 0x11D33: 84, + 0x11D34: 84, + 0x11D35: 84, + 0x11D36: 84, + 0x11D3A: 84, + 0x11D3C: 84, + 0x11D3D: 84, + 0x11D3F: 84, + 0x11D40: 84, + 0x11D41: 84, + 0x11D42: 84, + 0x11D43: 84, + 0x11D44: 84, + 0x11D45: 84, + 0x11D47: 84, + 0x11D90: 84, + 0x11D91: 84, + 0x11D95: 84, + 0x11D97: 84, + 0x11EF3: 84, + 0x11EF4: 84, + 0x11F00: 84, + 0x11F01: 84, + 0x11F36: 84, + 0x11F37: 84, + 0x11F38: 84, + 0x11F39: 84, + 0x11F3A: 84, + 0x11F40: 84, + 0x11F42: 84, + 0x13430: 84, + 0x13431: 84, + 0x13432: 84, + 0x13433: 84, + 0x13434: 84, + 0x13435: 84, + 0x13436: 84, + 0x13437: 84, + 0x13438: 84, + 0x13439: 84, + 0x1343A: 84, + 0x1343B: 84, + 0x1343C: 84, + 0x1343D: 84, + 0x1343E: 84, + 0x1343F: 84, + 0x13440: 84, + 0x13447: 84, + 0x13448: 84, + 0x13449: 84, + 0x1344A: 84, + 0x1344B: 84, + 0x1344C: 84, + 0x1344D: 84, + 0x1344E: 84, + 0x1344F: 84, + 0x13450: 84, + 0x13451: 84, + 0x13452: 84, + 0x13453: 84, + 0x13454: 84, + 0x13455: 84, + 0x16AF0: 84, + 0x16AF1: 84, + 0x16AF2: 84, + 0x16AF3: 84, + 0x16AF4: 84, + 0x16B30: 84, + 0x16B31: 84, + 0x16B32: 84, + 0x16B33: 84, + 0x16B34: 84, + 0x16B35: 84, + 0x16B36: 84, + 0x16F4F: 84, + 0x16F8F: 84, + 0x16F90: 84, + 0x16F91: 84, + 0x16F92: 84, + 0x16FE4: 84, + 0x1BC9D: 84, + 0x1BC9E: 84, + 0x1BCA0: 84, + 0x1BCA1: 84, + 0x1BCA2: 84, + 0x1BCA3: 84, + 0x1CF00: 84, + 0x1CF01: 84, + 0x1CF02: 84, + 0x1CF03: 84, + 0x1CF04: 84, + 0x1CF05: 84, + 0x1CF06: 84, + 0x1CF07: 84, + 0x1CF08: 84, + 0x1CF09: 84, + 0x1CF0A: 84, + 0x1CF0B: 84, + 0x1CF0C: 84, + 0x1CF0D: 84, + 0x1CF0E: 84, + 0x1CF0F: 84, + 0x1CF10: 84, + 0x1CF11: 84, + 0x1CF12: 84, + 0x1CF13: 84, + 0x1CF14: 84, + 0x1CF15: 84, + 0x1CF16: 84, + 0x1CF17: 84, + 0x1CF18: 84, + 0x1CF19: 84, + 0x1CF1A: 84, + 0x1CF1B: 84, + 0x1CF1C: 84, + 0x1CF1D: 84, + 0x1CF1E: 84, + 0x1CF1F: 84, + 0x1CF20: 84, + 0x1CF21: 84, + 0x1CF22: 84, + 0x1CF23: 84, + 0x1CF24: 84, + 0x1CF25: 84, + 0x1CF26: 84, + 0x1CF27: 84, + 0x1CF28: 84, + 0x1CF29: 84, + 0x1CF2A: 84, + 0x1CF2B: 84, + 0x1CF2C: 84, + 0x1CF2D: 84, + 0x1CF30: 84, + 0x1CF31: 84, + 0x1CF32: 84, + 0x1CF33: 84, + 0x1CF34: 84, + 0x1CF35: 84, + 0x1CF36: 84, + 0x1CF37: 84, + 0x1CF38: 84, + 0x1CF39: 84, + 0x1CF3A: 84, + 0x1CF3B: 84, + 0x1CF3C: 84, + 0x1CF3D: 84, + 0x1CF3E: 84, + 0x1CF3F: 84, + 0x1CF40: 84, + 0x1CF41: 84, + 0x1CF42: 84, + 0x1CF43: 84, + 0x1CF44: 84, + 0x1CF45: 84, + 0x1CF46: 84, + 0x1D167: 84, + 0x1D168: 84, + 0x1D169: 84, + 0x1D173: 84, + 0x1D174: 84, + 0x1D175: 84, + 0x1D176: 84, + 0x1D177: 84, + 0x1D178: 84, + 0x1D179: 84, + 0x1D17A: 84, + 0x1D17B: 84, + 0x1D17C: 84, + 0x1D17D: 84, + 0x1D17E: 84, + 0x1D17F: 84, + 0x1D180: 84, + 0x1D181: 84, + 0x1D182: 84, + 0x1D185: 84, + 0x1D186: 84, + 0x1D187: 84, + 0x1D188: 84, + 0x1D189: 84, + 0x1D18A: 84, + 0x1D18B: 84, + 0x1D1AA: 84, + 0x1D1AB: 84, + 0x1D1AC: 84, + 0x1D1AD: 84, + 0x1D242: 84, + 0x1D243: 84, + 0x1D244: 84, + 0x1DA00: 84, + 0x1DA01: 84, + 0x1DA02: 84, + 0x1DA03: 84, + 0x1DA04: 84, + 0x1DA05: 84, + 0x1DA06: 84, + 0x1DA07: 84, + 0x1DA08: 84, + 0x1DA09: 84, + 0x1DA0A: 84, + 0x1DA0B: 84, + 0x1DA0C: 84, + 0x1DA0D: 84, + 0x1DA0E: 84, + 0x1DA0F: 84, + 0x1DA10: 84, + 0x1DA11: 84, + 0x1DA12: 84, + 0x1DA13: 84, + 0x1DA14: 84, + 0x1DA15: 84, + 0x1DA16: 84, + 0x1DA17: 84, + 0x1DA18: 84, + 0x1DA19: 84, + 0x1DA1A: 84, + 0x1DA1B: 84, + 0x1DA1C: 84, + 0x1DA1D: 84, + 0x1DA1E: 84, + 0x1DA1F: 84, + 0x1DA20: 84, + 0x1DA21: 84, + 0x1DA22: 84, + 0x1DA23: 84, + 0x1DA24: 84, + 0x1DA25: 84, + 0x1DA26: 84, + 0x1DA27: 84, + 0x1DA28: 84, + 0x1DA29: 84, + 0x1DA2A: 84, + 0x1DA2B: 84, + 0x1DA2C: 84, + 0x1DA2D: 84, + 0x1DA2E: 84, + 0x1DA2F: 84, + 0x1DA30: 84, + 0x1DA31: 84, + 0x1DA32: 84, + 0x1DA33: 84, + 0x1DA34: 84, + 0x1DA35: 84, + 0x1DA36: 84, + 0x1DA3B: 84, + 0x1DA3C: 84, + 0x1DA3D: 84, + 0x1DA3E: 84, + 0x1DA3F: 84, + 0x1DA40: 84, + 0x1DA41: 84, + 0x1DA42: 84, + 0x1DA43: 84, + 0x1DA44: 84, + 0x1DA45: 84, + 0x1DA46: 84, + 0x1DA47: 84, + 0x1DA48: 84, + 0x1DA49: 84, + 0x1DA4A: 84, + 0x1DA4B: 84, + 0x1DA4C: 84, + 0x1DA4D: 84, + 0x1DA4E: 84, + 0x1DA4F: 84, + 0x1DA50: 84, + 0x1DA51: 84, + 0x1DA52: 84, + 0x1DA53: 84, + 0x1DA54: 84, + 0x1DA55: 84, + 0x1DA56: 84, + 0x1DA57: 84, + 0x1DA58: 84, + 0x1DA59: 84, + 0x1DA5A: 84, + 0x1DA5B: 84, + 0x1DA5C: 84, + 0x1DA5D: 84, + 0x1DA5E: 84, + 0x1DA5F: 84, + 0x1DA60: 84, + 0x1DA61: 84, + 0x1DA62: 84, + 0x1DA63: 84, + 0x1DA64: 84, + 0x1DA65: 84, + 0x1DA66: 84, + 0x1DA67: 84, + 0x1DA68: 84, + 0x1DA69: 84, + 0x1DA6A: 84, + 0x1DA6B: 84, + 0x1DA6C: 84, + 0x1DA75: 84, + 0x1DA84: 84, + 0x1DA9B: 84, + 0x1DA9C: 84, + 0x1DA9D: 84, + 0x1DA9E: 84, + 0x1DA9F: 84, + 0x1DAA1: 84, + 0x1DAA2: 84, + 0x1DAA3: 84, + 0x1DAA4: 84, + 0x1DAA5: 84, + 0x1DAA6: 84, + 0x1DAA7: 84, + 0x1DAA8: 84, + 0x1DAA9: 84, + 0x1DAAA: 84, + 0x1DAAB: 84, + 0x1DAAC: 84, + 0x1DAAD: 84, + 0x1DAAE: 84, + 0x1DAAF: 84, + 0x1E000: 84, + 0x1E001: 84, + 0x1E002: 84, + 0x1E003: 84, + 0x1E004: 84, + 0x1E005: 84, + 0x1E006: 84, + 0x1E008: 84, + 0x1E009: 84, + 0x1E00A: 84, + 0x1E00B: 84, + 0x1E00C: 84, + 0x1E00D: 84, + 0x1E00E: 84, + 0x1E00F: 84, + 0x1E010: 84, + 0x1E011: 84, + 0x1E012: 84, + 0x1E013: 84, + 0x1E014: 84, + 0x1E015: 84, + 0x1E016: 84, + 0x1E017: 84, + 0x1E018: 84, + 0x1E01B: 84, + 0x1E01C: 84, + 0x1E01D: 84, + 0x1E01E: 84, + 0x1E01F: 84, + 0x1E020: 84, + 0x1E021: 84, + 0x1E023: 84, + 0x1E024: 84, + 0x1E026: 84, + 0x1E027: 84, + 0x1E028: 84, + 0x1E029: 84, + 0x1E02A: 84, + 0x1E08F: 84, + 0x1E130: 84, + 0x1E131: 84, + 0x1E132: 84, + 0x1E133: 84, + 0x1E134: 84, + 0x1E135: 84, + 0x1E136: 84, + 0x1E2AE: 84, + 0x1E2EC: 84, + 0x1E2ED: 84, + 0x1E2EE: 84, + 0x1E2EF: 84, + 0x1E4EC: 84, + 0x1E4ED: 84, + 0x1E4EE: 84, + 0x1E4EF: 84, + 0x1E8D0: 84, + 0x1E8D1: 84, + 0x1E8D2: 84, + 0x1E8D3: 84, + 0x1E8D4: 84, + 0x1E8D5: 84, + 0x1E8D6: 84, + 0x1E900: 68, + 0x1E901: 68, + 0x1E902: 68, + 0x1E903: 68, + 0x1E904: 68, + 0x1E905: 68, + 0x1E906: 68, + 0x1E907: 68, + 0x1E908: 68, + 0x1E909: 68, + 0x1E90A: 68, + 0x1E90B: 68, + 0x1E90C: 68, + 0x1E90D: 68, + 0x1E90E: 68, + 0x1E90F: 68, + 0x1E910: 68, + 0x1E911: 68, + 0x1E912: 68, + 0x1E913: 68, + 0x1E914: 68, + 0x1E915: 68, + 0x1E916: 68, + 0x1E917: 68, + 0x1E918: 68, + 0x1E919: 68, + 0x1E91A: 68, + 0x1E91B: 68, + 0x1E91C: 68, + 0x1E91D: 68, + 0x1E91E: 68, + 0x1E91F: 68, + 0x1E920: 68, + 0x1E921: 68, + 0x1E922: 68, + 0x1E923: 68, + 0x1E924: 68, + 0x1E925: 68, + 0x1E926: 68, + 0x1E927: 68, + 0x1E928: 68, + 0x1E929: 68, + 0x1E92A: 68, + 0x1E92B: 68, + 0x1E92C: 68, + 0x1E92D: 68, + 0x1E92E: 68, + 0x1E92F: 68, + 0x1E930: 68, + 0x1E931: 68, + 0x1E932: 68, + 0x1E933: 68, + 0x1E934: 68, + 0x1E935: 68, + 0x1E936: 68, + 0x1E937: 68, + 0x1E938: 68, + 0x1E939: 68, + 0x1E93A: 68, + 0x1E93B: 68, + 0x1E93C: 68, + 0x1E93D: 68, + 0x1E93E: 68, + 0x1E93F: 68, + 0x1E940: 68, + 0x1E941: 68, + 0x1E942: 68, + 0x1E943: 68, + 0x1E944: 84, + 0x1E945: 84, + 0x1E946: 84, + 0x1E947: 84, + 0x1E948: 84, + 0x1E949: 84, + 0x1E94A: 84, + 0x1E94B: 84, + 0xE0001: 84, + 0xE0020: 84, + 0xE0021: 84, + 0xE0022: 84, + 0xE0023: 84, + 0xE0024: 84, + 0xE0025: 84, + 0xE0026: 84, + 0xE0027: 84, + 0xE0028: 84, + 0xE0029: 84, + 0xE002A: 84, + 0xE002B: 84, + 0xE002C: 84, + 0xE002D: 84, + 0xE002E: 84, + 0xE002F: 84, + 0xE0030: 84, + 0xE0031: 84, + 0xE0032: 84, + 0xE0033: 84, + 0xE0034: 84, + 0xE0035: 84, + 0xE0036: 84, + 0xE0037: 84, + 0xE0038: 84, + 0xE0039: 84, + 0xE003A: 84, + 0xE003B: 84, + 0xE003C: 84, + 0xE003D: 84, + 0xE003E: 84, + 0xE003F: 84, + 0xE0040: 84, + 0xE0041: 84, + 0xE0042: 84, + 0xE0043: 84, + 0xE0044: 84, + 0xE0045: 84, + 0xE0046: 84, + 0xE0047: 84, + 0xE0048: 84, + 0xE0049: 84, + 0xE004A: 84, + 0xE004B: 84, + 0xE004C: 84, + 0xE004D: 84, + 0xE004E: 84, + 0xE004F: 84, + 0xE0050: 84, + 0xE0051: 84, + 0xE0052: 84, + 0xE0053: 84, + 0xE0054: 84, + 0xE0055: 84, + 0xE0056: 84, + 0xE0057: 84, + 0xE0058: 84, + 0xE0059: 84, + 0xE005A: 84, + 0xE005B: 84, + 0xE005C: 84, + 0xE005D: 84, + 0xE005E: 84, + 0xE005F: 84, + 0xE0060: 84, + 0xE0061: 84, + 0xE0062: 84, + 0xE0063: 84, + 0xE0064: 84, + 0xE0065: 84, + 0xE0066: 84, + 0xE0067: 84, + 0xE0068: 84, + 0xE0069: 84, + 0xE006A: 84, + 0xE006B: 84, + 0xE006C: 84, + 0xE006D: 84, + 0xE006E: 84, + 0xE006F: 84, + 0xE0070: 84, + 0xE0071: 84, + 0xE0072: 84, + 0xE0073: 84, + 0xE0074: 84, + 0xE0075: 84, + 0xE0076: 84, + 0xE0077: 84, + 0xE0078: 84, + 0xE0079: 84, + 0xE007A: 84, + 0xE007B: 84, + 0xE007C: 84, + 0xE007D: 84, + 0xE007E: 84, + 0xE007F: 84, + 0xE0100: 84, + 0xE0101: 84, + 0xE0102: 84, + 0xE0103: 84, + 0xE0104: 84, + 0xE0105: 84, + 0xE0106: 84, + 0xE0107: 84, + 0xE0108: 84, + 0xE0109: 84, + 0xE010A: 84, + 0xE010B: 84, + 0xE010C: 84, + 0xE010D: 84, + 0xE010E: 84, + 0xE010F: 84, + 0xE0110: 84, + 0xE0111: 84, + 0xE0112: 84, + 0xE0113: 84, + 0xE0114: 84, + 0xE0115: 84, + 0xE0116: 84, + 0xE0117: 84, + 0xE0118: 84, + 0xE0119: 84, + 0xE011A: 84, + 0xE011B: 84, + 0xE011C: 84, + 0xE011D: 84, + 0xE011E: 84, + 0xE011F: 84, + 0xE0120: 84, + 0xE0121: 84, + 0xE0122: 84, + 0xE0123: 84, + 0xE0124: 84, + 0xE0125: 84, + 0xE0126: 84, + 0xE0127: 84, + 0xE0128: 84, + 0xE0129: 84, + 0xE012A: 84, + 0xE012B: 84, + 0xE012C: 84, + 0xE012D: 84, + 0xE012E: 84, + 0xE012F: 84, + 0xE0130: 84, + 0xE0131: 84, + 0xE0132: 84, + 0xE0133: 84, + 0xE0134: 84, + 0xE0135: 84, + 0xE0136: 84, + 0xE0137: 84, + 0xE0138: 84, + 0xE0139: 84, + 0xE013A: 84, + 0xE013B: 84, + 0xE013C: 84, + 0xE013D: 84, + 0xE013E: 84, + 0xE013F: 84, + 0xE0140: 84, + 0xE0141: 84, + 0xE0142: 84, + 0xE0143: 84, + 0xE0144: 84, + 0xE0145: 84, + 0xE0146: 84, + 0xE0147: 84, + 0xE0148: 84, + 0xE0149: 84, + 0xE014A: 84, + 0xE014B: 84, + 0xE014C: 84, + 0xE014D: 84, + 0xE014E: 84, + 0xE014F: 84, + 0xE0150: 84, + 0xE0151: 84, + 0xE0152: 84, + 0xE0153: 84, + 0xE0154: 84, + 0xE0155: 84, + 0xE0156: 84, + 0xE0157: 84, + 0xE0158: 84, + 0xE0159: 84, + 0xE015A: 84, + 0xE015B: 84, + 0xE015C: 84, + 0xE015D: 84, + 0xE015E: 84, + 0xE015F: 84, + 0xE0160: 84, + 0xE0161: 84, + 0xE0162: 84, + 0xE0163: 84, + 0xE0164: 84, + 0xE0165: 84, + 0xE0166: 84, + 0xE0167: 84, + 0xE0168: 84, + 0xE0169: 84, + 0xE016A: 84, + 0xE016B: 84, + 0xE016C: 84, + 0xE016D: 84, + 0xE016E: 84, + 0xE016F: 84, + 0xE0170: 84, + 0xE0171: 84, + 0xE0172: 84, + 0xE0173: 84, + 0xE0174: 84, + 0xE0175: 84, + 0xE0176: 84, + 0xE0177: 84, + 0xE0178: 84, + 0xE0179: 84, + 0xE017A: 84, + 0xE017B: 84, + 0xE017C: 84, + 0xE017D: 84, + 0xE017E: 84, + 0xE017F: 84, + 0xE0180: 84, + 0xE0181: 84, + 0xE0182: 84, + 0xE0183: 84, + 0xE0184: 84, + 0xE0185: 84, + 0xE0186: 84, + 0xE0187: 84, + 0xE0188: 84, + 0xE0189: 84, + 0xE018A: 84, + 0xE018B: 84, + 0xE018C: 84, + 0xE018D: 84, + 0xE018E: 84, + 0xE018F: 84, + 0xE0190: 84, + 0xE0191: 84, + 0xE0192: 84, + 0xE0193: 84, + 0xE0194: 84, + 0xE0195: 84, + 0xE0196: 84, + 0xE0197: 84, + 0xE0198: 84, + 0xE0199: 84, + 0xE019A: 84, + 0xE019B: 84, + 0xE019C: 84, + 0xE019D: 84, + 0xE019E: 84, + 0xE019F: 84, + 0xE01A0: 84, + 0xE01A1: 84, + 0xE01A2: 84, + 0xE01A3: 84, + 0xE01A4: 84, + 0xE01A5: 84, + 0xE01A6: 84, + 0xE01A7: 84, + 0xE01A8: 84, + 0xE01A9: 84, + 0xE01AA: 84, + 0xE01AB: 84, + 0xE01AC: 84, + 0xE01AD: 84, + 0xE01AE: 84, + 0xE01AF: 84, + 0xE01B0: 84, + 0xE01B1: 84, + 0xE01B2: 84, + 0xE01B3: 84, + 0xE01B4: 84, + 0xE01B5: 84, + 0xE01B6: 84, + 0xE01B7: 84, + 0xE01B8: 84, + 0xE01B9: 84, + 0xE01BA: 84, + 0xE01BB: 84, + 0xE01BC: 84, + 0xE01BD: 84, + 0xE01BE: 84, + 0xE01BF: 84, + 0xE01C0: 84, + 0xE01C1: 84, + 0xE01C2: 84, + 0xE01C3: 84, + 0xE01C4: 84, + 0xE01C5: 84, + 0xE01C6: 84, + 0xE01C7: 84, + 0xE01C8: 84, + 0xE01C9: 84, + 0xE01CA: 84, + 0xE01CB: 84, + 0xE01CC: 84, + 0xE01CD: 84, + 0xE01CE: 84, + 0xE01CF: 84, + 0xE01D0: 84, + 0xE01D1: 84, + 0xE01D2: 84, + 0xE01D3: 84, + 0xE01D4: 84, + 0xE01D5: 84, + 0xE01D6: 84, + 0xE01D7: 84, + 0xE01D8: 84, + 0xE01D9: 84, + 0xE01DA: 84, + 0xE01DB: 84, + 0xE01DC: 84, + 0xE01DD: 84, + 0xE01DE: 84, + 0xE01DF: 84, + 0xE01E0: 84, + 0xE01E1: 84, + 0xE01E2: 84, + 0xE01E3: 84, + 0xE01E4: 84, + 0xE01E5: 84, + 0xE01E6: 84, + 0xE01E7: 84, + 0xE01E8: 84, + 0xE01E9: 84, + 0xE01EA: 84, + 0xE01EB: 84, + 0xE01EC: 84, + 0xE01ED: 84, + 0xE01EE: 84, + 0xE01EF: 84, +} +codepoint_classes = { + "PVALID": ( + 0x2D0000002E, + 0x300000003A, + 0x610000007B, + 0xDF000000F7, + 0xF800000100, + 0x10100000102, + 0x10300000104, + 0x10500000106, + 0x10700000108, + 0x1090000010A, + 0x10B0000010C, + 0x10D0000010E, + 0x10F00000110, + 0x11100000112, + 0x11300000114, + 0x11500000116, + 0x11700000118, + 0x1190000011A, + 0x11B0000011C, + 0x11D0000011E, + 0x11F00000120, + 0x12100000122, + 0x12300000124, + 0x12500000126, + 0x12700000128, + 0x1290000012A, + 0x12B0000012C, + 0x12D0000012E, + 0x12F00000130, + 0x13100000132, + 0x13500000136, + 0x13700000139, + 0x13A0000013B, + 0x13C0000013D, + 0x13E0000013F, + 0x14200000143, + 0x14400000145, + 0x14600000147, + 0x14800000149, + 0x14B0000014C, + 0x14D0000014E, + 0x14F00000150, + 0x15100000152, + 0x15300000154, + 0x15500000156, + 0x15700000158, + 0x1590000015A, + 0x15B0000015C, + 0x15D0000015E, + 0x15F00000160, + 0x16100000162, + 0x16300000164, + 0x16500000166, + 0x16700000168, + 0x1690000016A, + 0x16B0000016C, + 0x16D0000016E, + 0x16F00000170, + 0x17100000172, + 0x17300000174, + 0x17500000176, + 0x17700000178, + 0x17A0000017B, + 0x17C0000017D, + 0x17E0000017F, + 0x18000000181, + 0x18300000184, + 0x18500000186, + 0x18800000189, + 0x18C0000018E, + 0x19200000193, + 0x19500000196, + 0x1990000019C, + 0x19E0000019F, + 0x1A1000001A2, + 0x1A3000001A4, + 0x1A5000001A6, + 0x1A8000001A9, + 0x1AA000001AC, + 0x1AD000001AE, + 0x1B0000001B1, + 0x1B4000001B5, + 0x1B6000001B7, + 0x1B9000001BC, + 0x1BD000001C4, + 0x1CE000001CF, + 0x1D0000001D1, + 0x1D2000001D3, + 0x1D4000001D5, + 0x1D6000001D7, + 0x1D8000001D9, + 0x1DA000001DB, + 0x1DC000001DE, + 0x1DF000001E0, + 0x1E1000001E2, + 0x1E3000001E4, + 0x1E5000001E6, + 0x1E7000001E8, + 0x1E9000001EA, + 0x1EB000001EC, + 0x1ED000001EE, + 0x1EF000001F1, + 0x1F5000001F6, + 0x1F9000001FA, + 0x1FB000001FC, + 0x1FD000001FE, + 0x1FF00000200, + 0x20100000202, + 0x20300000204, + 0x20500000206, + 0x20700000208, + 0x2090000020A, + 0x20B0000020C, + 0x20D0000020E, + 0x20F00000210, + 0x21100000212, + 0x21300000214, + 0x21500000216, + 0x21700000218, + 0x2190000021A, + 0x21B0000021C, + 0x21D0000021E, + 0x21F00000220, + 0x22100000222, + 0x22300000224, + 0x22500000226, + 0x22700000228, + 0x2290000022A, + 0x22B0000022C, + 0x22D0000022E, + 0x22F00000230, + 0x23100000232, + 0x2330000023A, + 0x23C0000023D, + 0x23F00000241, + 0x24200000243, + 0x24700000248, + 0x2490000024A, + 0x24B0000024C, + 0x24D0000024E, + 0x24F000002B0, + 0x2B9000002C2, + 0x2C6000002D2, + 0x2EC000002ED, + 0x2EE000002EF, + 0x30000000340, + 0x34200000343, + 0x3460000034F, + 0x35000000370, + 0x37100000372, + 0x37300000374, + 0x37700000378, + 0x37B0000037E, + 0x39000000391, + 0x3AC000003CF, + 0x3D7000003D8, + 0x3D9000003DA, + 0x3DB000003DC, + 0x3DD000003DE, + 0x3DF000003E0, + 0x3E1000003E2, + 0x3E3000003E4, + 0x3E5000003E6, + 0x3E7000003E8, + 0x3E9000003EA, + 0x3EB000003EC, + 0x3ED000003EE, + 0x3EF000003F0, + 0x3F3000003F4, + 0x3F8000003F9, + 0x3FB000003FD, + 0x43000000460, + 0x46100000462, + 0x46300000464, + 0x46500000466, + 0x46700000468, + 0x4690000046A, + 0x46B0000046C, + 0x46D0000046E, + 0x46F00000470, + 0x47100000472, + 0x47300000474, + 0x47500000476, + 0x47700000478, + 0x4790000047A, + 0x47B0000047C, + 0x47D0000047E, + 0x47F00000480, + 0x48100000482, + 0x48300000488, + 0x48B0000048C, + 0x48D0000048E, + 0x48F00000490, + 0x49100000492, + 0x49300000494, + 0x49500000496, + 0x49700000498, + 0x4990000049A, + 0x49B0000049C, + 0x49D0000049E, + 0x49F000004A0, + 0x4A1000004A2, + 0x4A3000004A4, + 0x4A5000004A6, + 0x4A7000004A8, + 0x4A9000004AA, + 0x4AB000004AC, + 0x4AD000004AE, + 0x4AF000004B0, + 0x4B1000004B2, + 0x4B3000004B4, + 0x4B5000004B6, + 0x4B7000004B8, + 0x4B9000004BA, + 0x4BB000004BC, + 0x4BD000004BE, + 0x4BF000004C0, + 0x4C2000004C3, + 0x4C4000004C5, + 0x4C6000004C7, + 0x4C8000004C9, + 0x4CA000004CB, + 0x4CC000004CD, + 0x4CE000004D0, + 0x4D1000004D2, + 0x4D3000004D4, + 0x4D5000004D6, + 0x4D7000004D8, + 0x4D9000004DA, + 0x4DB000004DC, + 0x4DD000004DE, + 0x4DF000004E0, + 0x4E1000004E2, + 0x4E3000004E4, + 0x4E5000004E6, + 0x4E7000004E8, + 0x4E9000004EA, + 0x4EB000004EC, + 0x4ED000004EE, + 0x4EF000004F0, + 0x4F1000004F2, + 0x4F3000004F4, + 0x4F5000004F6, + 0x4F7000004F8, + 0x4F9000004FA, + 0x4FB000004FC, + 0x4FD000004FE, + 0x4FF00000500, + 0x50100000502, + 0x50300000504, + 0x50500000506, + 0x50700000508, + 0x5090000050A, + 0x50B0000050C, + 0x50D0000050E, + 0x50F00000510, + 0x51100000512, + 0x51300000514, + 0x51500000516, + 0x51700000518, + 0x5190000051A, + 0x51B0000051C, + 0x51D0000051E, + 0x51F00000520, + 0x52100000522, + 0x52300000524, + 0x52500000526, + 0x52700000528, + 0x5290000052A, + 0x52B0000052C, + 0x52D0000052E, + 0x52F00000530, + 0x5590000055A, + 0x56000000587, + 0x58800000589, + 0x591000005BE, + 0x5BF000005C0, + 0x5C1000005C3, + 0x5C4000005C6, + 0x5C7000005C8, + 0x5D0000005EB, + 0x5EF000005F3, + 0x6100000061B, + 0x62000000640, + 0x64100000660, + 0x66E00000675, + 0x679000006D4, + 0x6D5000006DD, + 0x6DF000006E9, + 0x6EA000006F0, + 0x6FA00000700, + 0x7100000074B, + 0x74D000007B2, + 0x7C0000007F6, + 0x7FD000007FE, + 0x8000000082E, + 0x8400000085C, + 0x8600000086B, + 0x87000000888, + 0x8890000088F, + 0x898000008E2, + 0x8E300000958, + 0x96000000964, + 0x96600000970, + 0x97100000984, + 0x9850000098D, + 0x98F00000991, + 0x993000009A9, + 0x9AA000009B1, + 0x9B2000009B3, + 0x9B6000009BA, + 0x9BC000009C5, + 0x9C7000009C9, + 0x9CB000009CF, + 0x9D7000009D8, + 0x9E0000009E4, + 0x9E6000009F2, + 0x9FC000009FD, + 0x9FE000009FF, + 0xA0100000A04, + 0xA0500000A0B, + 0xA0F00000A11, + 0xA1300000A29, + 0xA2A00000A31, + 0xA3200000A33, + 0xA3500000A36, + 0xA3800000A3A, + 0xA3C00000A3D, + 0xA3E00000A43, + 0xA4700000A49, + 0xA4B00000A4E, + 0xA5100000A52, + 0xA5C00000A5D, + 0xA6600000A76, + 0xA8100000A84, + 0xA8500000A8E, + 0xA8F00000A92, + 0xA9300000AA9, + 0xAAA00000AB1, + 0xAB200000AB4, + 0xAB500000ABA, + 0xABC00000AC6, + 0xAC700000ACA, + 0xACB00000ACE, + 0xAD000000AD1, + 0xAE000000AE4, + 0xAE600000AF0, + 0xAF900000B00, + 0xB0100000B04, + 0xB0500000B0D, + 0xB0F00000B11, + 0xB1300000B29, + 0xB2A00000B31, + 0xB3200000B34, + 0xB3500000B3A, + 0xB3C00000B45, + 0xB4700000B49, + 0xB4B00000B4E, + 0xB5500000B58, + 0xB5F00000B64, + 0xB6600000B70, + 0xB7100000B72, + 0xB8200000B84, + 0xB8500000B8B, + 0xB8E00000B91, + 0xB9200000B96, + 0xB9900000B9B, + 0xB9C00000B9D, + 0xB9E00000BA0, + 0xBA300000BA5, + 0xBA800000BAB, + 0xBAE00000BBA, + 0xBBE00000BC3, + 0xBC600000BC9, + 0xBCA00000BCE, + 0xBD000000BD1, + 0xBD700000BD8, + 0xBE600000BF0, + 0xC0000000C0D, + 0xC0E00000C11, + 0xC1200000C29, + 0xC2A00000C3A, + 0xC3C00000C45, + 0xC4600000C49, + 0xC4A00000C4E, + 0xC5500000C57, + 0xC5800000C5B, + 0xC5D00000C5E, + 0xC6000000C64, + 0xC6600000C70, + 0xC8000000C84, + 0xC8500000C8D, + 0xC8E00000C91, + 0xC9200000CA9, + 0xCAA00000CB4, + 0xCB500000CBA, + 0xCBC00000CC5, + 0xCC600000CC9, + 0xCCA00000CCE, + 0xCD500000CD7, + 0xCDD00000CDF, + 0xCE000000CE4, + 0xCE600000CF0, + 0xCF100000CF4, + 0xD0000000D0D, + 0xD0E00000D11, + 0xD1200000D45, + 0xD4600000D49, + 0xD4A00000D4F, + 0xD5400000D58, + 0xD5F00000D64, + 0xD6600000D70, + 0xD7A00000D80, + 0xD8100000D84, + 0xD8500000D97, + 0xD9A00000DB2, + 0xDB300000DBC, + 0xDBD00000DBE, + 0xDC000000DC7, + 0xDCA00000DCB, + 0xDCF00000DD5, + 0xDD600000DD7, + 0xDD800000DE0, + 0xDE600000DF0, + 0xDF200000DF4, + 0xE0100000E33, + 0xE3400000E3B, + 0xE4000000E4F, + 0xE5000000E5A, + 0xE8100000E83, + 0xE8400000E85, + 0xE8600000E8B, + 0xE8C00000EA4, + 0xEA500000EA6, + 0xEA700000EB3, + 0xEB400000EBE, + 0xEC000000EC5, + 0xEC600000EC7, + 0xEC800000ECF, + 0xED000000EDA, + 0xEDE00000EE0, + 0xF0000000F01, + 0xF0B00000F0C, + 0xF1800000F1A, + 0xF2000000F2A, + 0xF3500000F36, + 0xF3700000F38, + 0xF3900000F3A, + 0xF3E00000F43, + 0xF4400000F48, + 0xF4900000F4D, + 0xF4E00000F52, + 0xF5300000F57, + 0xF5800000F5C, + 0xF5D00000F69, + 0xF6A00000F6D, + 0xF7100000F73, + 0xF7400000F75, + 0xF7A00000F81, + 0xF8200000F85, + 0xF8600000F93, + 0xF9400000F98, + 0xF9900000F9D, + 0xF9E00000FA2, + 0xFA300000FA7, + 0xFA800000FAC, + 0xFAD00000FB9, + 0xFBA00000FBD, + 0xFC600000FC7, + 0x10000000104A, + 0x10500000109E, + 0x10D0000010FB, + 0x10FD00001100, + 0x120000001249, + 0x124A0000124E, + 0x125000001257, + 0x125800001259, + 0x125A0000125E, + 0x126000001289, + 0x128A0000128E, + 0x1290000012B1, + 0x12B2000012B6, + 0x12B8000012BF, + 0x12C0000012C1, + 0x12C2000012C6, + 0x12C8000012D7, + 0x12D800001311, + 0x131200001316, + 0x13180000135B, + 0x135D00001360, + 0x138000001390, + 0x13A0000013F6, + 0x14010000166D, + 0x166F00001680, + 0x16810000169B, + 0x16A0000016EB, + 0x16F1000016F9, + 0x170000001716, + 0x171F00001735, + 0x174000001754, + 0x17600000176D, + 0x176E00001771, + 0x177200001774, + 0x1780000017B4, + 0x17B6000017D4, + 0x17D7000017D8, + 0x17DC000017DE, + 0x17E0000017EA, + 0x18100000181A, + 0x182000001879, + 0x1880000018AB, + 0x18B0000018F6, + 0x19000000191F, + 0x19200000192C, + 0x19300000193C, + 0x19460000196E, + 0x197000001975, + 0x1980000019AC, + 0x19B0000019CA, + 0x19D0000019DA, + 0x1A0000001A1C, + 0x1A2000001A5F, + 0x1A6000001A7D, + 0x1A7F00001A8A, + 0x1A9000001A9A, + 0x1AA700001AA8, + 0x1AB000001ABE, + 0x1ABF00001ACF, + 0x1B0000001B4D, + 0x1B5000001B5A, + 0x1B6B00001B74, + 0x1B8000001BF4, + 0x1C0000001C38, + 0x1C4000001C4A, + 0x1C4D00001C7E, + 0x1CD000001CD3, + 0x1CD400001CFB, + 0x1D0000001D2C, + 0x1D2F00001D30, + 0x1D3B00001D3C, + 0x1D4E00001D4F, + 0x1D6B00001D78, + 0x1D7900001D9B, + 0x1DC000001E00, + 0x1E0100001E02, + 0x1E0300001E04, + 0x1E0500001E06, + 0x1E0700001E08, + 0x1E0900001E0A, + 0x1E0B00001E0C, + 0x1E0D00001E0E, + 0x1E0F00001E10, + 0x1E1100001E12, + 0x1E1300001E14, + 0x1E1500001E16, + 0x1E1700001E18, + 0x1E1900001E1A, + 0x1E1B00001E1C, + 0x1E1D00001E1E, + 0x1E1F00001E20, + 0x1E2100001E22, + 0x1E2300001E24, + 0x1E2500001E26, + 0x1E2700001E28, + 0x1E2900001E2A, + 0x1E2B00001E2C, + 0x1E2D00001E2E, + 0x1E2F00001E30, + 0x1E3100001E32, + 0x1E3300001E34, + 0x1E3500001E36, + 0x1E3700001E38, + 0x1E3900001E3A, + 0x1E3B00001E3C, + 0x1E3D00001E3E, + 0x1E3F00001E40, + 0x1E4100001E42, + 0x1E4300001E44, + 0x1E4500001E46, + 0x1E4700001E48, + 0x1E4900001E4A, + 0x1E4B00001E4C, + 0x1E4D00001E4E, + 0x1E4F00001E50, + 0x1E5100001E52, + 0x1E5300001E54, + 0x1E5500001E56, + 0x1E5700001E58, + 0x1E5900001E5A, + 0x1E5B00001E5C, + 0x1E5D00001E5E, + 0x1E5F00001E60, + 0x1E6100001E62, + 0x1E6300001E64, + 0x1E6500001E66, + 0x1E6700001E68, + 0x1E6900001E6A, + 0x1E6B00001E6C, + 0x1E6D00001E6E, + 0x1E6F00001E70, + 0x1E7100001E72, + 0x1E7300001E74, + 0x1E7500001E76, + 0x1E7700001E78, + 0x1E7900001E7A, + 0x1E7B00001E7C, + 0x1E7D00001E7E, + 0x1E7F00001E80, + 0x1E8100001E82, + 0x1E8300001E84, + 0x1E8500001E86, + 0x1E8700001E88, + 0x1E8900001E8A, + 0x1E8B00001E8C, + 0x1E8D00001E8E, + 0x1E8F00001E90, + 0x1E9100001E92, + 0x1E9300001E94, + 0x1E9500001E9A, + 0x1E9C00001E9E, + 0x1E9F00001EA0, + 0x1EA100001EA2, + 0x1EA300001EA4, + 0x1EA500001EA6, + 0x1EA700001EA8, + 0x1EA900001EAA, + 0x1EAB00001EAC, + 0x1EAD00001EAE, + 0x1EAF00001EB0, + 0x1EB100001EB2, + 0x1EB300001EB4, + 0x1EB500001EB6, + 0x1EB700001EB8, + 0x1EB900001EBA, + 0x1EBB00001EBC, + 0x1EBD00001EBE, + 0x1EBF00001EC0, + 0x1EC100001EC2, + 0x1EC300001EC4, + 0x1EC500001EC6, + 0x1EC700001EC8, + 0x1EC900001ECA, + 0x1ECB00001ECC, + 0x1ECD00001ECE, + 0x1ECF00001ED0, + 0x1ED100001ED2, + 0x1ED300001ED4, + 0x1ED500001ED6, + 0x1ED700001ED8, + 0x1ED900001EDA, + 0x1EDB00001EDC, + 0x1EDD00001EDE, + 0x1EDF00001EE0, + 0x1EE100001EE2, + 0x1EE300001EE4, + 0x1EE500001EE6, + 0x1EE700001EE8, + 0x1EE900001EEA, + 0x1EEB00001EEC, + 0x1EED00001EEE, + 0x1EEF00001EF0, + 0x1EF100001EF2, + 0x1EF300001EF4, + 0x1EF500001EF6, + 0x1EF700001EF8, + 0x1EF900001EFA, + 0x1EFB00001EFC, + 0x1EFD00001EFE, + 0x1EFF00001F08, + 0x1F1000001F16, + 0x1F2000001F28, + 0x1F3000001F38, + 0x1F4000001F46, + 0x1F5000001F58, + 0x1F6000001F68, + 0x1F7000001F71, + 0x1F7200001F73, + 0x1F7400001F75, + 0x1F7600001F77, + 0x1F7800001F79, + 0x1F7A00001F7B, + 0x1F7C00001F7D, + 0x1FB000001FB2, + 0x1FB600001FB7, + 0x1FC600001FC7, + 0x1FD000001FD3, + 0x1FD600001FD8, + 0x1FE000001FE3, + 0x1FE400001FE8, + 0x1FF600001FF7, + 0x214E0000214F, + 0x218400002185, + 0x2C3000002C60, + 0x2C6100002C62, + 0x2C6500002C67, + 0x2C6800002C69, + 0x2C6A00002C6B, + 0x2C6C00002C6D, + 0x2C7100002C72, + 0x2C7300002C75, + 0x2C7600002C7C, + 0x2C8100002C82, + 0x2C8300002C84, + 0x2C8500002C86, + 0x2C8700002C88, + 0x2C8900002C8A, + 0x2C8B00002C8C, + 0x2C8D00002C8E, + 0x2C8F00002C90, + 0x2C9100002C92, + 0x2C9300002C94, + 0x2C9500002C96, + 0x2C9700002C98, + 0x2C9900002C9A, + 0x2C9B00002C9C, + 0x2C9D00002C9E, + 0x2C9F00002CA0, + 0x2CA100002CA2, + 0x2CA300002CA4, + 0x2CA500002CA6, + 0x2CA700002CA8, + 0x2CA900002CAA, + 0x2CAB00002CAC, + 0x2CAD00002CAE, + 0x2CAF00002CB0, + 0x2CB100002CB2, + 0x2CB300002CB4, + 0x2CB500002CB6, + 0x2CB700002CB8, + 0x2CB900002CBA, + 0x2CBB00002CBC, + 0x2CBD00002CBE, + 0x2CBF00002CC0, + 0x2CC100002CC2, + 0x2CC300002CC4, + 0x2CC500002CC6, + 0x2CC700002CC8, + 0x2CC900002CCA, + 0x2CCB00002CCC, + 0x2CCD00002CCE, + 0x2CCF00002CD0, + 0x2CD100002CD2, + 0x2CD300002CD4, + 0x2CD500002CD6, + 0x2CD700002CD8, + 0x2CD900002CDA, + 0x2CDB00002CDC, + 0x2CDD00002CDE, + 0x2CDF00002CE0, + 0x2CE100002CE2, + 0x2CE300002CE5, + 0x2CEC00002CED, + 0x2CEE00002CF2, + 0x2CF300002CF4, + 0x2D0000002D26, + 0x2D2700002D28, + 0x2D2D00002D2E, + 0x2D3000002D68, + 0x2D7F00002D97, + 0x2DA000002DA7, + 0x2DA800002DAF, + 0x2DB000002DB7, + 0x2DB800002DBF, + 0x2DC000002DC7, + 0x2DC800002DCF, + 0x2DD000002DD7, + 0x2DD800002DDF, + 0x2DE000002E00, + 0x2E2F00002E30, + 0x300500003008, + 0x302A0000302E, + 0x303C0000303D, + 0x304100003097, + 0x30990000309B, + 0x309D0000309F, + 0x30A1000030FB, + 0x30FC000030FF, + 0x310500003130, + 0x31A0000031C0, + 0x31F000003200, + 0x340000004DC0, + 0x4E000000A48D, + 0xA4D00000A4FE, + 0xA5000000A60D, + 0xA6100000A62C, + 0xA6410000A642, + 0xA6430000A644, + 0xA6450000A646, + 0xA6470000A648, + 0xA6490000A64A, + 0xA64B0000A64C, + 0xA64D0000A64E, + 0xA64F0000A650, + 0xA6510000A652, + 0xA6530000A654, + 0xA6550000A656, + 0xA6570000A658, + 0xA6590000A65A, + 0xA65B0000A65C, + 0xA65D0000A65E, + 0xA65F0000A660, + 0xA6610000A662, + 0xA6630000A664, + 0xA6650000A666, + 0xA6670000A668, + 0xA6690000A66A, + 0xA66B0000A66C, + 0xA66D0000A670, + 0xA6740000A67E, + 0xA67F0000A680, + 0xA6810000A682, + 0xA6830000A684, + 0xA6850000A686, + 0xA6870000A688, + 0xA6890000A68A, + 0xA68B0000A68C, + 0xA68D0000A68E, + 0xA68F0000A690, + 0xA6910000A692, + 0xA6930000A694, + 0xA6950000A696, + 0xA6970000A698, + 0xA6990000A69A, + 0xA69B0000A69C, + 0xA69E0000A6E6, + 0xA6F00000A6F2, + 0xA7170000A720, + 0xA7230000A724, + 0xA7250000A726, + 0xA7270000A728, + 0xA7290000A72A, + 0xA72B0000A72C, + 0xA72D0000A72E, + 0xA72F0000A732, + 0xA7330000A734, + 0xA7350000A736, + 0xA7370000A738, + 0xA7390000A73A, + 0xA73B0000A73C, + 0xA73D0000A73E, + 0xA73F0000A740, + 0xA7410000A742, + 0xA7430000A744, + 0xA7450000A746, + 0xA7470000A748, + 0xA7490000A74A, + 0xA74B0000A74C, + 0xA74D0000A74E, + 0xA74F0000A750, + 0xA7510000A752, + 0xA7530000A754, + 0xA7550000A756, + 0xA7570000A758, + 0xA7590000A75A, + 0xA75B0000A75C, + 0xA75D0000A75E, + 0xA75F0000A760, + 0xA7610000A762, + 0xA7630000A764, + 0xA7650000A766, + 0xA7670000A768, + 0xA7690000A76A, + 0xA76B0000A76C, + 0xA76D0000A76E, + 0xA76F0000A770, + 0xA7710000A779, + 0xA77A0000A77B, + 0xA77C0000A77D, + 0xA77F0000A780, + 0xA7810000A782, + 0xA7830000A784, + 0xA7850000A786, + 0xA7870000A789, + 0xA78C0000A78D, + 0xA78E0000A790, + 0xA7910000A792, + 0xA7930000A796, + 0xA7970000A798, + 0xA7990000A79A, + 0xA79B0000A79C, + 0xA79D0000A79E, + 0xA79F0000A7A0, + 0xA7A10000A7A2, + 0xA7A30000A7A4, + 0xA7A50000A7A6, + 0xA7A70000A7A8, + 0xA7A90000A7AA, + 0xA7AF0000A7B0, + 0xA7B50000A7B6, + 0xA7B70000A7B8, + 0xA7B90000A7BA, + 0xA7BB0000A7BC, + 0xA7BD0000A7BE, + 0xA7BF0000A7C0, + 0xA7C10000A7C2, + 0xA7C30000A7C4, + 0xA7C80000A7C9, + 0xA7CA0000A7CB, + 0xA7D10000A7D2, + 0xA7D30000A7D4, + 0xA7D50000A7D6, + 0xA7D70000A7D8, + 0xA7D90000A7DA, + 0xA7F60000A7F8, + 0xA7FA0000A828, + 0xA82C0000A82D, + 0xA8400000A874, + 0xA8800000A8C6, + 0xA8D00000A8DA, + 0xA8E00000A8F8, + 0xA8FB0000A8FC, + 0xA8FD0000A92E, + 0xA9300000A954, + 0xA9800000A9C1, + 0xA9CF0000A9DA, + 0xA9E00000A9FF, + 0xAA000000AA37, + 0xAA400000AA4E, + 0xAA500000AA5A, + 0xAA600000AA77, + 0xAA7A0000AAC3, + 0xAADB0000AADE, + 0xAAE00000AAF0, + 0xAAF20000AAF7, + 0xAB010000AB07, + 0xAB090000AB0F, + 0xAB110000AB17, + 0xAB200000AB27, + 0xAB280000AB2F, + 0xAB300000AB5B, + 0xAB600000AB69, + 0xABC00000ABEB, + 0xABEC0000ABEE, + 0xABF00000ABFA, + 0xAC000000D7A4, + 0xFA0E0000FA10, + 0xFA110000FA12, + 0xFA130000FA15, + 0xFA1F0000FA20, + 0xFA210000FA22, + 0xFA230000FA25, + 0xFA270000FA2A, + 0xFB1E0000FB1F, + 0xFE200000FE30, + 0xFE730000FE74, + 0x100000001000C, + 0x1000D00010027, + 0x100280001003B, + 0x1003C0001003E, + 0x1003F0001004E, + 0x100500001005E, + 0x10080000100FB, + 0x101FD000101FE, + 0x102800001029D, + 0x102A0000102D1, + 0x102E0000102E1, + 0x1030000010320, + 0x1032D00010341, + 0x103420001034A, + 0x103500001037B, + 0x103800001039E, + 0x103A0000103C4, + 0x103C8000103D0, + 0x104280001049E, + 0x104A0000104AA, + 0x104D8000104FC, + 0x1050000010528, + 0x1053000010564, + 0x10597000105A2, + 0x105A3000105B2, + 0x105B3000105BA, + 0x105BB000105BD, + 0x1060000010737, + 0x1074000010756, + 0x1076000010768, + 0x1078000010781, + 0x1080000010806, + 0x1080800010809, + 0x1080A00010836, + 0x1083700010839, + 0x1083C0001083D, + 0x1083F00010856, + 0x1086000010877, + 0x108800001089F, + 0x108E0000108F3, + 0x108F4000108F6, + 0x1090000010916, + 0x109200001093A, + 0x10980000109B8, + 0x109BE000109C0, + 0x10A0000010A04, + 0x10A0500010A07, + 0x10A0C00010A14, + 0x10A1500010A18, + 0x10A1900010A36, + 0x10A3800010A3B, + 0x10A3F00010A40, + 0x10A6000010A7D, + 0x10A8000010A9D, + 0x10AC000010AC8, + 0x10AC900010AE7, + 0x10B0000010B36, + 0x10B4000010B56, + 0x10B6000010B73, + 0x10B8000010B92, + 0x10C0000010C49, + 0x10CC000010CF3, + 0x10D0000010D28, + 0x10D3000010D3A, + 0x10E8000010EAA, + 0x10EAB00010EAD, + 0x10EB000010EB2, + 0x10EFD00010F1D, + 0x10F2700010F28, + 0x10F3000010F51, + 0x10F7000010F86, + 0x10FB000010FC5, + 0x10FE000010FF7, + 0x1100000011047, + 0x1106600011076, + 0x1107F000110BB, + 0x110C2000110C3, + 0x110D0000110E9, + 0x110F0000110FA, + 0x1110000011135, + 0x1113600011140, + 0x1114400011148, + 0x1115000011174, + 0x1117600011177, + 0x11180000111C5, + 0x111C9000111CD, + 0x111CE000111DB, + 0x111DC000111DD, + 0x1120000011212, + 0x1121300011238, + 0x1123E00011242, + 0x1128000011287, + 0x1128800011289, + 0x1128A0001128E, + 0x1128F0001129E, + 0x1129F000112A9, + 0x112B0000112EB, + 0x112F0000112FA, + 0x1130000011304, + 0x113050001130D, + 0x1130F00011311, + 0x1131300011329, + 0x1132A00011331, + 0x1133200011334, + 0x113350001133A, + 0x1133B00011345, + 0x1134700011349, + 0x1134B0001134E, + 0x1135000011351, + 0x1135700011358, + 0x1135D00011364, + 0x113660001136D, + 0x1137000011375, + 0x114000001144B, + 0x114500001145A, + 0x1145E00011462, + 0x11480000114C6, + 0x114C7000114C8, + 0x114D0000114DA, + 0x11580000115B6, + 0x115B8000115C1, + 0x115D8000115DE, + 0x1160000011641, + 0x1164400011645, + 0x116500001165A, + 0x11680000116B9, + 0x116C0000116CA, + 0x117000001171B, + 0x1171D0001172C, + 0x117300001173A, + 0x1174000011747, + 0x118000001183B, + 0x118C0000118EA, + 0x118FF00011907, + 0x119090001190A, + 0x1190C00011914, + 0x1191500011917, + 0x1191800011936, + 0x1193700011939, + 0x1193B00011944, + 0x119500001195A, + 0x119A0000119A8, + 0x119AA000119D8, + 0x119DA000119E2, + 0x119E3000119E5, + 0x11A0000011A3F, + 0x11A4700011A48, + 0x11A5000011A9A, + 0x11A9D00011A9E, + 0x11AB000011AF9, + 0x11C0000011C09, + 0x11C0A00011C37, + 0x11C3800011C41, + 0x11C5000011C5A, + 0x11C7200011C90, + 0x11C9200011CA8, + 0x11CA900011CB7, + 0x11D0000011D07, + 0x11D0800011D0A, + 0x11D0B00011D37, + 0x11D3A00011D3B, + 0x11D3C00011D3E, + 0x11D3F00011D48, + 0x11D5000011D5A, + 0x11D6000011D66, + 0x11D6700011D69, + 0x11D6A00011D8F, + 0x11D9000011D92, + 0x11D9300011D99, + 0x11DA000011DAA, + 0x11EE000011EF7, + 0x11F0000011F11, + 0x11F1200011F3B, + 0x11F3E00011F43, + 0x11F5000011F5A, + 0x11FB000011FB1, + 0x120000001239A, + 0x1248000012544, + 0x12F9000012FF1, + 0x1300000013430, + 0x1344000013456, + 0x1440000014647, + 0x1680000016A39, + 0x16A4000016A5F, + 0x16A6000016A6A, + 0x16A7000016ABF, + 0x16AC000016ACA, + 0x16AD000016AEE, + 0x16AF000016AF5, + 0x16B0000016B37, + 0x16B4000016B44, + 0x16B5000016B5A, + 0x16B6300016B78, + 0x16B7D00016B90, + 0x16E6000016E80, + 0x16F0000016F4B, + 0x16F4F00016F88, + 0x16F8F00016FA0, + 0x16FE000016FE2, + 0x16FE300016FE5, + 0x16FF000016FF2, + 0x17000000187F8, + 0x1880000018CD6, + 0x18D0000018D09, + 0x1AFF00001AFF4, + 0x1AFF50001AFFC, + 0x1AFFD0001AFFF, + 0x1B0000001B123, + 0x1B1320001B133, + 0x1B1500001B153, + 0x1B1550001B156, + 0x1B1640001B168, + 0x1B1700001B2FC, + 0x1BC000001BC6B, + 0x1BC700001BC7D, + 0x1BC800001BC89, + 0x1BC900001BC9A, + 0x1BC9D0001BC9F, + 0x1CF000001CF2E, + 0x1CF300001CF47, + 0x1DA000001DA37, + 0x1DA3B0001DA6D, + 0x1DA750001DA76, + 0x1DA840001DA85, + 0x1DA9B0001DAA0, + 0x1DAA10001DAB0, + 0x1DF000001DF1F, + 0x1DF250001DF2B, + 0x1E0000001E007, + 0x1E0080001E019, + 0x1E01B0001E022, + 0x1E0230001E025, + 0x1E0260001E02B, + 0x1E08F0001E090, + 0x1E1000001E12D, + 0x1E1300001E13E, + 0x1E1400001E14A, + 0x1E14E0001E14F, + 0x1E2900001E2AF, + 0x1E2C00001E2FA, + 0x1E4D00001E4FA, + 0x1E7E00001E7E7, + 0x1E7E80001E7EC, + 0x1E7ED0001E7EF, + 0x1E7F00001E7FF, + 0x1E8000001E8C5, + 0x1E8D00001E8D7, + 0x1E9220001E94C, + 0x1E9500001E95A, + 0x200000002A6E0, + 0x2A7000002B73A, + 0x2B7400002B81E, + 0x2B8200002CEA2, + 0x2CEB00002EBE1, + 0x2EBF00002EE5E, + 0x300000003134B, + 0x31350000323B0, + ), + "CONTEXTJ": (0x200C0000200E,), + "CONTEXTO": ( + 0xB7000000B8, + 0x37500000376, + 0x5F3000005F5, + 0x6600000066A, + 0x6F0000006FA, + 0x30FB000030FC, + ), +} diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 0000000..7bfaa8d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py @@ -0,0 +1,57 @@ +""" +Given a list of integers, made up of (hopefully) a small number of long runs +of consecutive integers, compute a representation of the form +((start1, end1), (start2, end2) ...). Then answer the question "was x present +in the original list?" in time O(log(# runs)). +""" + +import bisect +from typing import List, Tuple + + +def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: + """Represent a list of integers as a sequence of ranges: + ((start_0, end_0), (start_1, end_1), ...), such that the original + integers are exactly those x such that start_i <= x < end_i for some i. + + Ranges are encoded as single integers (start << 32 | end), not as tuples. + """ + + sorted_list = sorted(list_) + ranges = [] + last_write = -1 + for i in range(len(sorted_list)): + if i + 1 < len(sorted_list): + if sorted_list[i] == sorted_list[i + 1] - 1: + continue + current_range = sorted_list[last_write + 1 : i + 1] + ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) + last_write = i + + return tuple(ranges) + + +def _encode_range(start: int, end: int) -> int: + return (start << 32) | end + + +def _decode_range(r: int) -> Tuple[int, int]: + return (r >> 32), (r & ((1 << 32) - 1)) + + +def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: + """Determine if `int_` falls into one of the ranges in `ranges`.""" + tuple_ = _encode_range(int_, 0) + pos = bisect.bisect_left(ranges, tuple_) + # we could be immediately ahead of a tuple (start, end) + # with start < int_ <= end + if pos > 0: + left, right = _decode_range(ranges[pos - 1]) + if left <= int_ < right: + return True + # or we could be immediately behind a tuple (int_, end) + if pos < len(ranges): + left, _ = _decode_range(ranges[pos]) + if left == int_: + return True + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 0000000..514ff7e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1 @@ +__version__ = "3.10" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 0000000..eb89432 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py @@ -0,0 +1,8681 @@ +# This file is automatically generated by tools/idna-data +# vim: set fileencoding=utf-8 : + +from typing import List, Tuple, Union + +"""IDNA Mapping Table from UTS46.""" + + +__version__ = "15.1.0" + + +def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x0, "3"), + (0x1, "3"), + (0x2, "3"), + (0x3, "3"), + (0x4, "3"), + (0x5, "3"), + (0x6, "3"), + (0x7, "3"), + (0x8, "3"), + (0x9, "3"), + (0xA, "3"), + (0xB, "3"), + (0xC, "3"), + (0xD, "3"), + (0xE, "3"), + (0xF, "3"), + (0x10, "3"), + (0x11, "3"), + (0x12, "3"), + (0x13, "3"), + (0x14, "3"), + (0x15, "3"), + (0x16, "3"), + (0x17, "3"), + (0x18, "3"), + (0x19, "3"), + (0x1A, "3"), + (0x1B, "3"), + (0x1C, "3"), + (0x1D, "3"), + (0x1E, "3"), + (0x1F, "3"), + (0x20, "3"), + (0x21, "3"), + (0x22, "3"), + (0x23, "3"), + (0x24, "3"), + (0x25, "3"), + (0x26, "3"), + (0x27, "3"), + (0x28, "3"), + (0x29, "3"), + (0x2A, "3"), + (0x2B, "3"), + (0x2C, "3"), + (0x2D, "V"), + (0x2E, "V"), + (0x2F, "3"), + (0x30, "V"), + (0x31, "V"), + (0x32, "V"), + (0x33, "V"), + (0x34, "V"), + (0x35, "V"), + (0x36, "V"), + (0x37, "V"), + (0x38, "V"), + (0x39, "V"), + (0x3A, "3"), + (0x3B, "3"), + (0x3C, "3"), + (0x3D, "3"), + (0x3E, "3"), + (0x3F, "3"), + (0x40, "3"), + (0x41, "M", "a"), + (0x42, "M", "b"), + (0x43, "M", "c"), + (0x44, "M", "d"), + (0x45, "M", "e"), + (0x46, "M", "f"), + (0x47, "M", "g"), + (0x48, "M", "h"), + (0x49, "M", "i"), + (0x4A, "M", "j"), + (0x4B, "M", "k"), + (0x4C, "M", "l"), + (0x4D, "M", "m"), + (0x4E, "M", "n"), + (0x4F, "M", "o"), + (0x50, "M", "p"), + (0x51, "M", "q"), + (0x52, "M", "r"), + (0x53, "M", "s"), + (0x54, "M", "t"), + (0x55, "M", "u"), + (0x56, "M", "v"), + (0x57, "M", "w"), + (0x58, "M", "x"), + (0x59, "M", "y"), + (0x5A, "M", "z"), + (0x5B, "3"), + (0x5C, "3"), + (0x5D, "3"), + (0x5E, "3"), + (0x5F, "3"), + (0x60, "3"), + (0x61, "V"), + (0x62, "V"), + (0x63, "V"), + ] + + +def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x64, "V"), + (0x65, "V"), + (0x66, "V"), + (0x67, "V"), + (0x68, "V"), + (0x69, "V"), + (0x6A, "V"), + (0x6B, "V"), + (0x6C, "V"), + (0x6D, "V"), + (0x6E, "V"), + (0x6F, "V"), + (0x70, "V"), + (0x71, "V"), + (0x72, "V"), + (0x73, "V"), + (0x74, "V"), + (0x75, "V"), + (0x76, "V"), + (0x77, "V"), + (0x78, "V"), + (0x79, "V"), + (0x7A, "V"), + (0x7B, "3"), + (0x7C, "3"), + (0x7D, "3"), + (0x7E, "3"), + (0x7F, "3"), + (0x80, "X"), + (0x81, "X"), + (0x82, "X"), + (0x83, "X"), + (0x84, "X"), + (0x85, "X"), + (0x86, "X"), + (0x87, "X"), + (0x88, "X"), + (0x89, "X"), + (0x8A, "X"), + (0x8B, "X"), + (0x8C, "X"), + (0x8D, "X"), + (0x8E, "X"), + (0x8F, "X"), + (0x90, "X"), + (0x91, "X"), + (0x92, "X"), + (0x93, "X"), + (0x94, "X"), + (0x95, "X"), + (0x96, "X"), + (0x97, "X"), + (0x98, "X"), + (0x99, "X"), + (0x9A, "X"), + (0x9B, "X"), + (0x9C, "X"), + (0x9D, "X"), + (0x9E, "X"), + (0x9F, "X"), + (0xA0, "3", " "), + (0xA1, "V"), + (0xA2, "V"), + (0xA3, "V"), + (0xA4, "V"), + (0xA5, "V"), + (0xA6, "V"), + (0xA7, "V"), + (0xA8, "3", " ̈"), + (0xA9, "V"), + (0xAA, "M", "a"), + (0xAB, "V"), + (0xAC, "V"), + (0xAD, "I"), + (0xAE, "V"), + (0xAF, "3", " ̄"), + (0xB0, "V"), + (0xB1, "V"), + (0xB2, "M", "2"), + (0xB3, "M", "3"), + (0xB4, "3", " ́"), + (0xB5, "M", "μ"), + (0xB6, "V"), + (0xB7, "V"), + (0xB8, "3", " ̧"), + (0xB9, "M", "1"), + (0xBA, "M", "o"), + (0xBB, "V"), + (0xBC, "M", "1⁄4"), + (0xBD, "M", "1⁄2"), + (0xBE, "M", "3⁄4"), + (0xBF, "V"), + (0xC0, "M", "à"), + (0xC1, "M", "á"), + (0xC2, "M", "â"), + (0xC3, "M", "ã"), + (0xC4, "M", "ä"), + (0xC5, "M", "å"), + (0xC6, "M", "æ"), + (0xC7, "M", "ç"), + ] + + +def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC8, "M", "è"), + (0xC9, "M", "é"), + (0xCA, "M", "ê"), + (0xCB, "M", "ë"), + (0xCC, "M", "ì"), + (0xCD, "M", "í"), + (0xCE, "M", "î"), + (0xCF, "M", "ï"), + (0xD0, "M", "ð"), + (0xD1, "M", "ñ"), + (0xD2, "M", "ò"), + (0xD3, "M", "ó"), + (0xD4, "M", "ô"), + (0xD5, "M", "õ"), + (0xD6, "M", "ö"), + (0xD7, "V"), + (0xD8, "M", "ø"), + (0xD9, "M", "ù"), + (0xDA, "M", "ú"), + (0xDB, "M", "û"), + (0xDC, "M", "ü"), + (0xDD, "M", "ý"), + (0xDE, "M", "þ"), + (0xDF, "D", "ss"), + (0xE0, "V"), + (0xE1, "V"), + (0xE2, "V"), + (0xE3, "V"), + (0xE4, "V"), + (0xE5, "V"), + (0xE6, "V"), + (0xE7, "V"), + (0xE8, "V"), + (0xE9, "V"), + (0xEA, "V"), + (0xEB, "V"), + (0xEC, "V"), + (0xED, "V"), + (0xEE, "V"), + (0xEF, "V"), + (0xF0, "V"), + (0xF1, "V"), + (0xF2, "V"), + (0xF3, "V"), + (0xF4, "V"), + (0xF5, "V"), + (0xF6, "V"), + (0xF7, "V"), + (0xF8, "V"), + (0xF9, "V"), + (0xFA, "V"), + (0xFB, "V"), + (0xFC, "V"), + (0xFD, "V"), + (0xFE, "V"), + (0xFF, "V"), + (0x100, "M", "ā"), + (0x101, "V"), + (0x102, "M", "ă"), + (0x103, "V"), + (0x104, "M", "ą"), + (0x105, "V"), + (0x106, "M", "ć"), + (0x107, "V"), + (0x108, "M", "ĉ"), + (0x109, "V"), + (0x10A, "M", "ċ"), + (0x10B, "V"), + (0x10C, "M", "č"), + (0x10D, "V"), + (0x10E, "M", "ď"), + (0x10F, "V"), + (0x110, "M", "đ"), + (0x111, "V"), + (0x112, "M", "ē"), + (0x113, "V"), + (0x114, "M", "ĕ"), + (0x115, "V"), + (0x116, "M", "ė"), + (0x117, "V"), + (0x118, "M", "ę"), + (0x119, "V"), + (0x11A, "M", "ě"), + (0x11B, "V"), + (0x11C, "M", "ĝ"), + (0x11D, "V"), + (0x11E, "M", "ğ"), + (0x11F, "V"), + (0x120, "M", "ġ"), + (0x121, "V"), + (0x122, "M", "ģ"), + (0x123, "V"), + (0x124, "M", "ĥ"), + (0x125, "V"), + (0x126, "M", "ħ"), + (0x127, "V"), + (0x128, "M", "ĩ"), + (0x129, "V"), + (0x12A, "M", "ī"), + (0x12B, "V"), + ] + + +def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x12C, "M", "ĭ"), + (0x12D, "V"), + (0x12E, "M", "į"), + (0x12F, "V"), + (0x130, "M", "i̇"), + (0x131, "V"), + (0x132, "M", "ij"), + (0x134, "M", "ĵ"), + (0x135, "V"), + (0x136, "M", "ķ"), + (0x137, "V"), + (0x139, "M", "ĺ"), + (0x13A, "V"), + (0x13B, "M", "ļ"), + (0x13C, "V"), + (0x13D, "M", "ľ"), + (0x13E, "V"), + (0x13F, "M", "l·"), + (0x141, "M", "ł"), + (0x142, "V"), + (0x143, "M", "ń"), + (0x144, "V"), + (0x145, "M", "ņ"), + (0x146, "V"), + (0x147, "M", "ň"), + (0x148, "V"), + (0x149, "M", "ʼn"), + (0x14A, "M", "ŋ"), + (0x14B, "V"), + (0x14C, "M", "ō"), + (0x14D, "V"), + (0x14E, "M", "ŏ"), + (0x14F, "V"), + (0x150, "M", "ő"), + (0x151, "V"), + (0x152, "M", "œ"), + (0x153, "V"), + (0x154, "M", "ŕ"), + (0x155, "V"), + (0x156, "M", "ŗ"), + (0x157, "V"), + (0x158, "M", "ř"), + (0x159, "V"), + (0x15A, "M", "ś"), + (0x15B, "V"), + (0x15C, "M", "ŝ"), + (0x15D, "V"), + (0x15E, "M", "ş"), + (0x15F, "V"), + (0x160, "M", "š"), + (0x161, "V"), + (0x162, "M", "ţ"), + (0x163, "V"), + (0x164, "M", "ť"), + (0x165, "V"), + (0x166, "M", "ŧ"), + (0x167, "V"), + (0x168, "M", "ũ"), + (0x169, "V"), + (0x16A, "M", "ū"), + (0x16B, "V"), + (0x16C, "M", "ŭ"), + (0x16D, "V"), + (0x16E, "M", "ů"), + (0x16F, "V"), + (0x170, "M", "ű"), + (0x171, "V"), + (0x172, "M", "ų"), + (0x173, "V"), + (0x174, "M", "ŵ"), + (0x175, "V"), + (0x176, "M", "ŷ"), + (0x177, "V"), + (0x178, "M", "ÿ"), + (0x179, "M", "ź"), + (0x17A, "V"), + (0x17B, "M", "ż"), + (0x17C, "V"), + (0x17D, "M", "ž"), + (0x17E, "V"), + (0x17F, "M", "s"), + (0x180, "V"), + (0x181, "M", "ɓ"), + (0x182, "M", "ƃ"), + (0x183, "V"), + (0x184, "M", "ƅ"), + (0x185, "V"), + (0x186, "M", "ɔ"), + (0x187, "M", "ƈ"), + (0x188, "V"), + (0x189, "M", "ɖ"), + (0x18A, "M", "ɗ"), + (0x18B, "M", "ƌ"), + (0x18C, "V"), + (0x18E, "M", "ǝ"), + (0x18F, "M", "ə"), + (0x190, "M", "ɛ"), + (0x191, "M", "ƒ"), + (0x192, "V"), + (0x193, "M", "ɠ"), + ] + + +def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x194, "M", "ɣ"), + (0x195, "V"), + (0x196, "M", "ɩ"), + (0x197, "M", "ɨ"), + (0x198, "M", "ƙ"), + (0x199, "V"), + (0x19C, "M", "ɯ"), + (0x19D, "M", "ɲ"), + (0x19E, "V"), + (0x19F, "M", "ɵ"), + (0x1A0, "M", "ơ"), + (0x1A1, "V"), + (0x1A2, "M", "ƣ"), + (0x1A3, "V"), + (0x1A4, "M", "ƥ"), + (0x1A5, "V"), + (0x1A6, "M", "ʀ"), + (0x1A7, "M", "ƨ"), + (0x1A8, "V"), + (0x1A9, "M", "ʃ"), + (0x1AA, "V"), + (0x1AC, "M", "ƭ"), + (0x1AD, "V"), + (0x1AE, "M", "ʈ"), + (0x1AF, "M", "ư"), + (0x1B0, "V"), + (0x1B1, "M", "ʊ"), + (0x1B2, "M", "ʋ"), + (0x1B3, "M", "ƴ"), + (0x1B4, "V"), + (0x1B5, "M", "ƶ"), + (0x1B6, "V"), + (0x1B7, "M", "ʒ"), + (0x1B8, "M", "ƹ"), + (0x1B9, "V"), + (0x1BC, "M", "ƽ"), + (0x1BD, "V"), + (0x1C4, "M", "dž"), + (0x1C7, "M", "lj"), + (0x1CA, "M", "nj"), + (0x1CD, "M", "ǎ"), + (0x1CE, "V"), + (0x1CF, "M", "ǐ"), + (0x1D0, "V"), + (0x1D1, "M", "ǒ"), + (0x1D2, "V"), + (0x1D3, "M", "ǔ"), + (0x1D4, "V"), + (0x1D5, "M", "ǖ"), + (0x1D6, "V"), + (0x1D7, "M", "ǘ"), + (0x1D8, "V"), + (0x1D9, "M", "ǚ"), + (0x1DA, "V"), + (0x1DB, "M", "ǜ"), + (0x1DC, "V"), + (0x1DE, "M", "ǟ"), + (0x1DF, "V"), + (0x1E0, "M", "ǡ"), + (0x1E1, "V"), + (0x1E2, "M", "ǣ"), + (0x1E3, "V"), + (0x1E4, "M", "ǥ"), + (0x1E5, "V"), + (0x1E6, "M", "ǧ"), + (0x1E7, "V"), + (0x1E8, "M", "ǩ"), + (0x1E9, "V"), + (0x1EA, "M", "ǫ"), + (0x1EB, "V"), + (0x1EC, "M", "ǭ"), + (0x1ED, "V"), + (0x1EE, "M", "ǯ"), + (0x1EF, "V"), + (0x1F1, "M", "dz"), + (0x1F4, "M", "ǵ"), + (0x1F5, "V"), + (0x1F6, "M", "ƕ"), + (0x1F7, "M", "ƿ"), + (0x1F8, "M", "ǹ"), + (0x1F9, "V"), + (0x1FA, "M", "ǻ"), + (0x1FB, "V"), + (0x1FC, "M", "ǽ"), + (0x1FD, "V"), + (0x1FE, "M", "ǿ"), + (0x1FF, "V"), + (0x200, "M", "ȁ"), + (0x201, "V"), + (0x202, "M", "ȃ"), + (0x203, "V"), + (0x204, "M", "ȅ"), + (0x205, "V"), + (0x206, "M", "ȇ"), + (0x207, "V"), + (0x208, "M", "ȉ"), + (0x209, "V"), + (0x20A, "M", "ȋ"), + (0x20B, "V"), + (0x20C, "M", "ȍ"), + ] + + +def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x20D, "V"), + (0x20E, "M", "ȏ"), + (0x20F, "V"), + (0x210, "M", "ȑ"), + (0x211, "V"), + (0x212, "M", "ȓ"), + (0x213, "V"), + (0x214, "M", "ȕ"), + (0x215, "V"), + (0x216, "M", "ȗ"), + (0x217, "V"), + (0x218, "M", "ș"), + (0x219, "V"), + (0x21A, "M", "ț"), + (0x21B, "V"), + (0x21C, "M", "ȝ"), + (0x21D, "V"), + (0x21E, "M", "ȟ"), + (0x21F, "V"), + (0x220, "M", "ƞ"), + (0x221, "V"), + (0x222, "M", "ȣ"), + (0x223, "V"), + (0x224, "M", "ȥ"), + (0x225, "V"), + (0x226, "M", "ȧ"), + (0x227, "V"), + (0x228, "M", "ȩ"), + (0x229, "V"), + (0x22A, "M", "ȫ"), + (0x22B, "V"), + (0x22C, "M", "ȭ"), + (0x22D, "V"), + (0x22E, "M", "ȯ"), + (0x22F, "V"), + (0x230, "M", "ȱ"), + (0x231, "V"), + (0x232, "M", "ȳ"), + (0x233, "V"), + (0x23A, "M", "ⱥ"), + (0x23B, "M", "ȼ"), + (0x23C, "V"), + (0x23D, "M", "ƚ"), + (0x23E, "M", "ⱦ"), + (0x23F, "V"), + (0x241, "M", "ɂ"), + (0x242, "V"), + (0x243, "M", "ƀ"), + (0x244, "M", "ʉ"), + (0x245, "M", "ʌ"), + (0x246, "M", "ɇ"), + (0x247, "V"), + (0x248, "M", "ɉ"), + (0x249, "V"), + (0x24A, "M", "ɋ"), + (0x24B, "V"), + (0x24C, "M", "ɍ"), + (0x24D, "V"), + (0x24E, "M", "ɏ"), + (0x24F, "V"), + (0x2B0, "M", "h"), + (0x2B1, "M", "ɦ"), + (0x2B2, "M", "j"), + (0x2B3, "M", "r"), + (0x2B4, "M", "ɹ"), + (0x2B5, "M", "ɻ"), + (0x2B6, "M", "ʁ"), + (0x2B7, "M", "w"), + (0x2B8, "M", "y"), + (0x2B9, "V"), + (0x2D8, "3", " ̆"), + (0x2D9, "3", " ̇"), + (0x2DA, "3", " ̊"), + (0x2DB, "3", " ̨"), + (0x2DC, "3", " ̃"), + (0x2DD, "3", " ̋"), + (0x2DE, "V"), + (0x2E0, "M", "ɣ"), + (0x2E1, "M", "l"), + (0x2E2, "M", "s"), + (0x2E3, "M", "x"), + (0x2E4, "M", "ʕ"), + (0x2E5, "V"), + (0x340, "M", "̀"), + (0x341, "M", "́"), + (0x342, "V"), + (0x343, "M", "̓"), + (0x344, "M", "̈́"), + (0x345, "M", "ι"), + (0x346, "V"), + (0x34F, "I"), + (0x350, "V"), + (0x370, "M", "ͱ"), + (0x371, "V"), + (0x372, "M", "ͳ"), + (0x373, "V"), + (0x374, "M", "ʹ"), + (0x375, "V"), + (0x376, "M", "ͷ"), + (0x377, "V"), + ] + + +def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x378, "X"), + (0x37A, "3", " ι"), + (0x37B, "V"), + (0x37E, "3", ";"), + (0x37F, "M", "ϳ"), + (0x380, "X"), + (0x384, "3", " ́"), + (0x385, "3", " ̈́"), + (0x386, "M", "ά"), + (0x387, "M", "·"), + (0x388, "M", "έ"), + (0x389, "M", "ή"), + (0x38A, "M", "ί"), + (0x38B, "X"), + (0x38C, "M", "ό"), + (0x38D, "X"), + (0x38E, "M", "ύ"), + (0x38F, "M", "ώ"), + (0x390, "V"), + (0x391, "M", "α"), + (0x392, "M", "β"), + (0x393, "M", "γ"), + (0x394, "M", "δ"), + (0x395, "M", "ε"), + (0x396, "M", "ζ"), + (0x397, "M", "η"), + (0x398, "M", "θ"), + (0x399, "M", "ι"), + (0x39A, "M", "κ"), + (0x39B, "M", "λ"), + (0x39C, "M", "μ"), + (0x39D, "M", "ν"), + (0x39E, "M", "ξ"), + (0x39F, "M", "ο"), + (0x3A0, "M", "π"), + (0x3A1, "M", "ρ"), + (0x3A2, "X"), + (0x3A3, "M", "σ"), + (0x3A4, "M", "τ"), + (0x3A5, "M", "υ"), + (0x3A6, "M", "φ"), + (0x3A7, "M", "χ"), + (0x3A8, "M", "ψ"), + (0x3A9, "M", "ω"), + (0x3AA, "M", "ϊ"), + (0x3AB, "M", "ϋ"), + (0x3AC, "V"), + (0x3C2, "D", "σ"), + (0x3C3, "V"), + (0x3CF, "M", "ϗ"), + (0x3D0, "M", "β"), + (0x3D1, "M", "θ"), + (0x3D2, "M", "υ"), + (0x3D3, "M", "ύ"), + (0x3D4, "M", "ϋ"), + (0x3D5, "M", "φ"), + (0x3D6, "M", "π"), + (0x3D7, "V"), + (0x3D8, "M", "ϙ"), + (0x3D9, "V"), + (0x3DA, "M", "ϛ"), + (0x3DB, "V"), + (0x3DC, "M", "ϝ"), + (0x3DD, "V"), + (0x3DE, "M", "ϟ"), + (0x3DF, "V"), + (0x3E0, "M", "ϡ"), + (0x3E1, "V"), + (0x3E2, "M", "ϣ"), + (0x3E3, "V"), + (0x3E4, "M", "ϥ"), + (0x3E5, "V"), + (0x3E6, "M", "ϧ"), + (0x3E7, "V"), + (0x3E8, "M", "ϩ"), + (0x3E9, "V"), + (0x3EA, "M", "ϫ"), + (0x3EB, "V"), + (0x3EC, "M", "ϭ"), + (0x3ED, "V"), + (0x3EE, "M", "ϯ"), + (0x3EF, "V"), + (0x3F0, "M", "κ"), + (0x3F1, "M", "ρ"), + (0x3F2, "M", "σ"), + (0x3F3, "V"), + (0x3F4, "M", "θ"), + (0x3F5, "M", "ε"), + (0x3F6, "V"), + (0x3F7, "M", "ϸ"), + (0x3F8, "V"), + (0x3F9, "M", "σ"), + (0x3FA, "M", "ϻ"), + (0x3FB, "V"), + (0x3FD, "M", "ͻ"), + (0x3FE, "M", "ͼ"), + (0x3FF, "M", "ͽ"), + (0x400, "M", "ѐ"), + (0x401, "M", "ё"), + (0x402, "M", "ђ"), + ] + + +def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x403, "M", "ѓ"), + (0x404, "M", "є"), + (0x405, "M", "ѕ"), + (0x406, "M", "і"), + (0x407, "M", "ї"), + (0x408, "M", "ј"), + (0x409, "M", "љ"), + (0x40A, "M", "њ"), + (0x40B, "M", "ћ"), + (0x40C, "M", "ќ"), + (0x40D, "M", "ѝ"), + (0x40E, "M", "ў"), + (0x40F, "M", "џ"), + (0x410, "M", "а"), + (0x411, "M", "б"), + (0x412, "M", "в"), + (0x413, "M", "г"), + (0x414, "M", "д"), + (0x415, "M", "е"), + (0x416, "M", "ж"), + (0x417, "M", "з"), + (0x418, "M", "и"), + (0x419, "M", "й"), + (0x41A, "M", "к"), + (0x41B, "M", "л"), + (0x41C, "M", "м"), + (0x41D, "M", "н"), + (0x41E, "M", "о"), + (0x41F, "M", "п"), + (0x420, "M", "р"), + (0x421, "M", "с"), + (0x422, "M", "т"), + (0x423, "M", "у"), + (0x424, "M", "ф"), + (0x425, "M", "х"), + (0x426, "M", "ц"), + (0x427, "M", "ч"), + (0x428, "M", "ш"), + (0x429, "M", "щ"), + (0x42A, "M", "ъ"), + (0x42B, "M", "ы"), + (0x42C, "M", "ь"), + (0x42D, "M", "э"), + (0x42E, "M", "ю"), + (0x42F, "M", "я"), + (0x430, "V"), + (0x460, "M", "ѡ"), + (0x461, "V"), + (0x462, "M", "ѣ"), + (0x463, "V"), + (0x464, "M", "ѥ"), + (0x465, "V"), + (0x466, "M", "ѧ"), + (0x467, "V"), + (0x468, "M", "ѩ"), + (0x469, "V"), + (0x46A, "M", "ѫ"), + (0x46B, "V"), + (0x46C, "M", "ѭ"), + (0x46D, "V"), + (0x46E, "M", "ѯ"), + (0x46F, "V"), + (0x470, "M", "ѱ"), + (0x471, "V"), + (0x472, "M", "ѳ"), + (0x473, "V"), + (0x474, "M", "ѵ"), + (0x475, "V"), + (0x476, "M", "ѷ"), + (0x477, "V"), + (0x478, "M", "ѹ"), + (0x479, "V"), + (0x47A, "M", "ѻ"), + (0x47B, "V"), + (0x47C, "M", "ѽ"), + (0x47D, "V"), + (0x47E, "M", "ѿ"), + (0x47F, "V"), + (0x480, "M", "ҁ"), + (0x481, "V"), + (0x48A, "M", "ҋ"), + (0x48B, "V"), + (0x48C, "M", "ҍ"), + (0x48D, "V"), + (0x48E, "M", "ҏ"), + (0x48F, "V"), + (0x490, "M", "ґ"), + (0x491, "V"), + (0x492, "M", "ғ"), + (0x493, "V"), + (0x494, "M", "ҕ"), + (0x495, "V"), + (0x496, "M", "җ"), + (0x497, "V"), + (0x498, "M", "ҙ"), + (0x499, "V"), + (0x49A, "M", "қ"), + (0x49B, "V"), + (0x49C, "M", "ҝ"), + (0x49D, "V"), + ] + + +def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x49E, "M", "ҟ"), + (0x49F, "V"), + (0x4A0, "M", "ҡ"), + (0x4A1, "V"), + (0x4A2, "M", "ң"), + (0x4A3, "V"), + (0x4A4, "M", "ҥ"), + (0x4A5, "V"), + (0x4A6, "M", "ҧ"), + (0x4A7, "V"), + (0x4A8, "M", "ҩ"), + (0x4A9, "V"), + (0x4AA, "M", "ҫ"), + (0x4AB, "V"), + (0x4AC, "M", "ҭ"), + (0x4AD, "V"), + (0x4AE, "M", "ү"), + (0x4AF, "V"), + (0x4B0, "M", "ұ"), + (0x4B1, "V"), + (0x4B2, "M", "ҳ"), + (0x4B3, "V"), + (0x4B4, "M", "ҵ"), + (0x4B5, "V"), + (0x4B6, "M", "ҷ"), + (0x4B7, "V"), + (0x4B8, "M", "ҹ"), + (0x4B9, "V"), + (0x4BA, "M", "һ"), + (0x4BB, "V"), + (0x4BC, "M", "ҽ"), + (0x4BD, "V"), + (0x4BE, "M", "ҿ"), + (0x4BF, "V"), + (0x4C0, "X"), + (0x4C1, "M", "ӂ"), + (0x4C2, "V"), + (0x4C3, "M", "ӄ"), + (0x4C4, "V"), + (0x4C5, "M", "ӆ"), + (0x4C6, "V"), + (0x4C7, "M", "ӈ"), + (0x4C8, "V"), + (0x4C9, "M", "ӊ"), + (0x4CA, "V"), + (0x4CB, "M", "ӌ"), + (0x4CC, "V"), + (0x4CD, "M", "ӎ"), + (0x4CE, "V"), + (0x4D0, "M", "ӑ"), + (0x4D1, "V"), + (0x4D2, "M", "ӓ"), + (0x4D3, "V"), + (0x4D4, "M", "ӕ"), + (0x4D5, "V"), + (0x4D6, "M", "ӗ"), + (0x4D7, "V"), + (0x4D8, "M", "ә"), + (0x4D9, "V"), + (0x4DA, "M", "ӛ"), + (0x4DB, "V"), + (0x4DC, "M", "ӝ"), + (0x4DD, "V"), + (0x4DE, "M", "ӟ"), + (0x4DF, "V"), + (0x4E0, "M", "ӡ"), + (0x4E1, "V"), + (0x4E2, "M", "ӣ"), + (0x4E3, "V"), + (0x4E4, "M", "ӥ"), + (0x4E5, "V"), + (0x4E6, "M", "ӧ"), + (0x4E7, "V"), + (0x4E8, "M", "ө"), + (0x4E9, "V"), + (0x4EA, "M", "ӫ"), + (0x4EB, "V"), + (0x4EC, "M", "ӭ"), + (0x4ED, "V"), + (0x4EE, "M", "ӯ"), + (0x4EF, "V"), + (0x4F0, "M", "ӱ"), + (0x4F1, "V"), + (0x4F2, "M", "ӳ"), + (0x4F3, "V"), + (0x4F4, "M", "ӵ"), + (0x4F5, "V"), + (0x4F6, "M", "ӷ"), + (0x4F7, "V"), + (0x4F8, "M", "ӹ"), + (0x4F9, "V"), + (0x4FA, "M", "ӻ"), + (0x4FB, "V"), + (0x4FC, "M", "ӽ"), + (0x4FD, "V"), + (0x4FE, "M", "ӿ"), + (0x4FF, "V"), + (0x500, "M", "ԁ"), + (0x501, "V"), + (0x502, "M", "ԃ"), + ] + + +def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x503, "V"), + (0x504, "M", "ԅ"), + (0x505, "V"), + (0x506, "M", "ԇ"), + (0x507, "V"), + (0x508, "M", "ԉ"), + (0x509, "V"), + (0x50A, "M", "ԋ"), + (0x50B, "V"), + (0x50C, "M", "ԍ"), + (0x50D, "V"), + (0x50E, "M", "ԏ"), + (0x50F, "V"), + (0x510, "M", "ԑ"), + (0x511, "V"), + (0x512, "M", "ԓ"), + (0x513, "V"), + (0x514, "M", "ԕ"), + (0x515, "V"), + (0x516, "M", "ԗ"), + (0x517, "V"), + (0x518, "M", "ԙ"), + (0x519, "V"), + (0x51A, "M", "ԛ"), + (0x51B, "V"), + (0x51C, "M", "ԝ"), + (0x51D, "V"), + (0x51E, "M", "ԟ"), + (0x51F, "V"), + (0x520, "M", "ԡ"), + (0x521, "V"), + (0x522, "M", "ԣ"), + (0x523, "V"), + (0x524, "M", "ԥ"), + (0x525, "V"), + (0x526, "M", "ԧ"), + (0x527, "V"), + (0x528, "M", "ԩ"), + (0x529, "V"), + (0x52A, "M", "ԫ"), + (0x52B, "V"), + (0x52C, "M", "ԭ"), + (0x52D, "V"), + (0x52E, "M", "ԯ"), + (0x52F, "V"), + (0x530, "X"), + (0x531, "M", "ա"), + (0x532, "M", "բ"), + (0x533, "M", "գ"), + (0x534, "M", "դ"), + (0x535, "M", "ե"), + (0x536, "M", "զ"), + (0x537, "M", "է"), + (0x538, "M", "ը"), + (0x539, "M", "թ"), + (0x53A, "M", "ժ"), + (0x53B, "M", "ի"), + (0x53C, "M", "լ"), + (0x53D, "M", "խ"), + (0x53E, "M", "ծ"), + (0x53F, "M", "կ"), + (0x540, "M", "հ"), + (0x541, "M", "ձ"), + (0x542, "M", "ղ"), + (0x543, "M", "ճ"), + (0x544, "M", "մ"), + (0x545, "M", "յ"), + (0x546, "M", "ն"), + (0x547, "M", "շ"), + (0x548, "M", "ո"), + (0x549, "M", "չ"), + (0x54A, "M", "պ"), + (0x54B, "M", "ջ"), + (0x54C, "M", "ռ"), + (0x54D, "M", "ս"), + (0x54E, "M", "վ"), + (0x54F, "M", "տ"), + (0x550, "M", "ր"), + (0x551, "M", "ց"), + (0x552, "M", "ւ"), + (0x553, "M", "փ"), + (0x554, "M", "ք"), + (0x555, "M", "օ"), + (0x556, "M", "ֆ"), + (0x557, "X"), + (0x559, "V"), + (0x587, "M", "եւ"), + (0x588, "V"), + (0x58B, "X"), + (0x58D, "V"), + (0x590, "X"), + (0x591, "V"), + (0x5C8, "X"), + (0x5D0, "V"), + (0x5EB, "X"), + (0x5EF, "V"), + (0x5F5, "X"), + (0x606, "V"), + (0x61C, "X"), + (0x61D, "V"), + ] + + +def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x675, "M", "اٴ"), + (0x676, "M", "وٴ"), + (0x677, "M", "ۇٴ"), + (0x678, "M", "يٴ"), + (0x679, "V"), + (0x6DD, "X"), + (0x6DE, "V"), + (0x70E, "X"), + (0x710, "V"), + (0x74B, "X"), + (0x74D, "V"), + (0x7B2, "X"), + (0x7C0, "V"), + (0x7FB, "X"), + (0x7FD, "V"), + (0x82E, "X"), + (0x830, "V"), + (0x83F, "X"), + (0x840, "V"), + (0x85C, "X"), + (0x85E, "V"), + (0x85F, "X"), + (0x860, "V"), + (0x86B, "X"), + (0x870, "V"), + (0x88F, "X"), + (0x898, "V"), + (0x8E2, "X"), + (0x8E3, "V"), + (0x958, "M", "क़"), + (0x959, "M", "ख़"), + (0x95A, "M", "ग़"), + (0x95B, "M", "ज़"), + (0x95C, "M", "ड़"), + (0x95D, "M", "ढ़"), + (0x95E, "M", "फ़"), + (0x95F, "M", "य़"), + (0x960, "V"), + (0x984, "X"), + (0x985, "V"), + (0x98D, "X"), + (0x98F, "V"), + (0x991, "X"), + (0x993, "V"), + (0x9A9, "X"), + (0x9AA, "V"), + (0x9B1, "X"), + (0x9B2, "V"), + (0x9B3, "X"), + (0x9B6, "V"), + (0x9BA, "X"), + (0x9BC, "V"), + (0x9C5, "X"), + (0x9C7, "V"), + (0x9C9, "X"), + (0x9CB, "V"), + (0x9CF, "X"), + (0x9D7, "V"), + (0x9D8, "X"), + (0x9DC, "M", "ড়"), + (0x9DD, "M", "ঢ়"), + (0x9DE, "X"), + (0x9DF, "M", "য়"), + (0x9E0, "V"), + (0x9E4, "X"), + (0x9E6, "V"), + (0x9FF, "X"), + (0xA01, "V"), + (0xA04, "X"), + (0xA05, "V"), + (0xA0B, "X"), + (0xA0F, "V"), + (0xA11, "X"), + (0xA13, "V"), + (0xA29, "X"), + (0xA2A, "V"), + (0xA31, "X"), + (0xA32, "V"), + (0xA33, "M", "ਲ਼"), + (0xA34, "X"), + (0xA35, "V"), + (0xA36, "M", "ਸ਼"), + (0xA37, "X"), + (0xA38, "V"), + (0xA3A, "X"), + (0xA3C, "V"), + (0xA3D, "X"), + (0xA3E, "V"), + (0xA43, "X"), + (0xA47, "V"), + (0xA49, "X"), + (0xA4B, "V"), + (0xA4E, "X"), + (0xA51, "V"), + (0xA52, "X"), + (0xA59, "M", "ਖ਼"), + (0xA5A, "M", "ਗ਼"), + (0xA5B, "M", "ਜ਼"), + (0xA5C, "V"), + (0xA5D, "X"), + ] + + +def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA5E, "M", "ਫ਼"), + (0xA5F, "X"), + (0xA66, "V"), + (0xA77, "X"), + (0xA81, "V"), + (0xA84, "X"), + (0xA85, "V"), + (0xA8E, "X"), + (0xA8F, "V"), + (0xA92, "X"), + (0xA93, "V"), + (0xAA9, "X"), + (0xAAA, "V"), + (0xAB1, "X"), + (0xAB2, "V"), + (0xAB4, "X"), + (0xAB5, "V"), + (0xABA, "X"), + (0xABC, "V"), + (0xAC6, "X"), + (0xAC7, "V"), + (0xACA, "X"), + (0xACB, "V"), + (0xACE, "X"), + (0xAD0, "V"), + (0xAD1, "X"), + (0xAE0, "V"), + (0xAE4, "X"), + (0xAE6, "V"), + (0xAF2, "X"), + (0xAF9, "V"), + (0xB00, "X"), + (0xB01, "V"), + (0xB04, "X"), + (0xB05, "V"), + (0xB0D, "X"), + (0xB0F, "V"), + (0xB11, "X"), + (0xB13, "V"), + (0xB29, "X"), + (0xB2A, "V"), + (0xB31, "X"), + (0xB32, "V"), + (0xB34, "X"), + (0xB35, "V"), + (0xB3A, "X"), + (0xB3C, "V"), + (0xB45, "X"), + (0xB47, "V"), + (0xB49, "X"), + (0xB4B, "V"), + (0xB4E, "X"), + (0xB55, "V"), + (0xB58, "X"), + (0xB5C, "M", "ଡ଼"), + (0xB5D, "M", "ଢ଼"), + (0xB5E, "X"), + (0xB5F, "V"), + (0xB64, "X"), + (0xB66, "V"), + (0xB78, "X"), + (0xB82, "V"), + (0xB84, "X"), + (0xB85, "V"), + (0xB8B, "X"), + (0xB8E, "V"), + (0xB91, "X"), + (0xB92, "V"), + (0xB96, "X"), + (0xB99, "V"), + (0xB9B, "X"), + (0xB9C, "V"), + (0xB9D, "X"), + (0xB9E, "V"), + (0xBA0, "X"), + (0xBA3, "V"), + (0xBA5, "X"), + (0xBA8, "V"), + (0xBAB, "X"), + (0xBAE, "V"), + (0xBBA, "X"), + (0xBBE, "V"), + (0xBC3, "X"), + (0xBC6, "V"), + (0xBC9, "X"), + (0xBCA, "V"), + (0xBCE, "X"), + (0xBD0, "V"), + (0xBD1, "X"), + (0xBD7, "V"), + (0xBD8, "X"), + (0xBE6, "V"), + (0xBFB, "X"), + (0xC00, "V"), + (0xC0D, "X"), + (0xC0E, "V"), + (0xC11, "X"), + (0xC12, "V"), + (0xC29, "X"), + (0xC2A, "V"), + ] + + +def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC3A, "X"), + (0xC3C, "V"), + (0xC45, "X"), + (0xC46, "V"), + (0xC49, "X"), + (0xC4A, "V"), + (0xC4E, "X"), + (0xC55, "V"), + (0xC57, "X"), + (0xC58, "V"), + (0xC5B, "X"), + (0xC5D, "V"), + (0xC5E, "X"), + (0xC60, "V"), + (0xC64, "X"), + (0xC66, "V"), + (0xC70, "X"), + (0xC77, "V"), + (0xC8D, "X"), + (0xC8E, "V"), + (0xC91, "X"), + (0xC92, "V"), + (0xCA9, "X"), + (0xCAA, "V"), + (0xCB4, "X"), + (0xCB5, "V"), + (0xCBA, "X"), + (0xCBC, "V"), + (0xCC5, "X"), + (0xCC6, "V"), + (0xCC9, "X"), + (0xCCA, "V"), + (0xCCE, "X"), + (0xCD5, "V"), + (0xCD7, "X"), + (0xCDD, "V"), + (0xCDF, "X"), + (0xCE0, "V"), + (0xCE4, "X"), + (0xCE6, "V"), + (0xCF0, "X"), + (0xCF1, "V"), + (0xCF4, "X"), + (0xD00, "V"), + (0xD0D, "X"), + (0xD0E, "V"), + (0xD11, "X"), + (0xD12, "V"), + (0xD45, "X"), + (0xD46, "V"), + (0xD49, "X"), + (0xD4A, "V"), + (0xD50, "X"), + (0xD54, "V"), + (0xD64, "X"), + (0xD66, "V"), + (0xD80, "X"), + (0xD81, "V"), + (0xD84, "X"), + (0xD85, "V"), + (0xD97, "X"), + (0xD9A, "V"), + (0xDB2, "X"), + (0xDB3, "V"), + (0xDBC, "X"), + (0xDBD, "V"), + (0xDBE, "X"), + (0xDC0, "V"), + (0xDC7, "X"), + (0xDCA, "V"), + (0xDCB, "X"), + (0xDCF, "V"), + (0xDD5, "X"), + (0xDD6, "V"), + (0xDD7, "X"), + (0xDD8, "V"), + (0xDE0, "X"), + (0xDE6, "V"), + (0xDF0, "X"), + (0xDF2, "V"), + (0xDF5, "X"), + (0xE01, "V"), + (0xE33, "M", "ํา"), + (0xE34, "V"), + (0xE3B, "X"), + (0xE3F, "V"), + (0xE5C, "X"), + (0xE81, "V"), + (0xE83, "X"), + (0xE84, "V"), + (0xE85, "X"), + (0xE86, "V"), + (0xE8B, "X"), + (0xE8C, "V"), + (0xEA4, "X"), + (0xEA5, "V"), + (0xEA6, "X"), + (0xEA7, "V"), + (0xEB3, "M", "ໍາ"), + (0xEB4, "V"), + ] + + +def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xEBE, "X"), + (0xEC0, "V"), + (0xEC5, "X"), + (0xEC6, "V"), + (0xEC7, "X"), + (0xEC8, "V"), + (0xECF, "X"), + (0xED0, "V"), + (0xEDA, "X"), + (0xEDC, "M", "ຫນ"), + (0xEDD, "M", "ຫມ"), + (0xEDE, "V"), + (0xEE0, "X"), + (0xF00, "V"), + (0xF0C, "M", "་"), + (0xF0D, "V"), + (0xF43, "M", "གྷ"), + (0xF44, "V"), + (0xF48, "X"), + (0xF49, "V"), + (0xF4D, "M", "ཌྷ"), + (0xF4E, "V"), + (0xF52, "M", "དྷ"), + (0xF53, "V"), + (0xF57, "M", "བྷ"), + (0xF58, "V"), + (0xF5C, "M", "ཛྷ"), + (0xF5D, "V"), + (0xF69, "M", "ཀྵ"), + (0xF6A, "V"), + (0xF6D, "X"), + (0xF71, "V"), + (0xF73, "M", "ཱི"), + (0xF74, "V"), + (0xF75, "M", "ཱུ"), + (0xF76, "M", "ྲྀ"), + (0xF77, "M", "ྲཱྀ"), + (0xF78, "M", "ླྀ"), + (0xF79, "M", "ླཱྀ"), + (0xF7A, "V"), + (0xF81, "M", "ཱྀ"), + (0xF82, "V"), + (0xF93, "M", "ྒྷ"), + (0xF94, "V"), + (0xF98, "X"), + (0xF99, "V"), + (0xF9D, "M", "ྜྷ"), + (0xF9E, "V"), + (0xFA2, "M", "ྡྷ"), + (0xFA3, "V"), + (0xFA7, "M", "ྦྷ"), + (0xFA8, "V"), + (0xFAC, "M", "ྫྷ"), + (0xFAD, "V"), + (0xFB9, "M", "ྐྵ"), + (0xFBA, "V"), + (0xFBD, "X"), + (0xFBE, "V"), + (0xFCD, "X"), + (0xFCE, "V"), + (0xFDB, "X"), + (0x1000, "V"), + (0x10A0, "X"), + (0x10C7, "M", "ⴧ"), + (0x10C8, "X"), + (0x10CD, "M", "ⴭ"), + (0x10CE, "X"), + (0x10D0, "V"), + (0x10FC, "M", "ნ"), + (0x10FD, "V"), + (0x115F, "X"), + (0x1161, "V"), + (0x1249, "X"), + (0x124A, "V"), + (0x124E, "X"), + (0x1250, "V"), + (0x1257, "X"), + (0x1258, "V"), + (0x1259, "X"), + (0x125A, "V"), + (0x125E, "X"), + (0x1260, "V"), + (0x1289, "X"), + (0x128A, "V"), + (0x128E, "X"), + (0x1290, "V"), + (0x12B1, "X"), + (0x12B2, "V"), + (0x12B6, "X"), + (0x12B8, "V"), + (0x12BF, "X"), + (0x12C0, "V"), + (0x12C1, "X"), + (0x12C2, "V"), + (0x12C6, "X"), + (0x12C8, "V"), + (0x12D7, "X"), + (0x12D8, "V"), + (0x1311, "X"), + (0x1312, "V"), + ] + + +def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1316, "X"), + (0x1318, "V"), + (0x135B, "X"), + (0x135D, "V"), + (0x137D, "X"), + (0x1380, "V"), + (0x139A, "X"), + (0x13A0, "V"), + (0x13F6, "X"), + (0x13F8, "M", "Ᏸ"), + (0x13F9, "M", "Ᏹ"), + (0x13FA, "M", "Ᏺ"), + (0x13FB, "M", "Ᏻ"), + (0x13FC, "M", "Ᏼ"), + (0x13FD, "M", "Ᏽ"), + (0x13FE, "X"), + (0x1400, "V"), + (0x1680, "X"), + (0x1681, "V"), + (0x169D, "X"), + (0x16A0, "V"), + (0x16F9, "X"), + (0x1700, "V"), + (0x1716, "X"), + (0x171F, "V"), + (0x1737, "X"), + (0x1740, "V"), + (0x1754, "X"), + (0x1760, "V"), + (0x176D, "X"), + (0x176E, "V"), + (0x1771, "X"), + (0x1772, "V"), + (0x1774, "X"), + (0x1780, "V"), + (0x17B4, "X"), + (0x17B6, "V"), + (0x17DE, "X"), + (0x17E0, "V"), + (0x17EA, "X"), + (0x17F0, "V"), + (0x17FA, "X"), + (0x1800, "V"), + (0x1806, "X"), + (0x1807, "V"), + (0x180B, "I"), + (0x180E, "X"), + (0x180F, "I"), + (0x1810, "V"), + (0x181A, "X"), + (0x1820, "V"), + (0x1879, "X"), + (0x1880, "V"), + (0x18AB, "X"), + (0x18B0, "V"), + (0x18F6, "X"), + (0x1900, "V"), + (0x191F, "X"), + (0x1920, "V"), + (0x192C, "X"), + (0x1930, "V"), + (0x193C, "X"), + (0x1940, "V"), + (0x1941, "X"), + (0x1944, "V"), + (0x196E, "X"), + (0x1970, "V"), + (0x1975, "X"), + (0x1980, "V"), + (0x19AC, "X"), + (0x19B0, "V"), + (0x19CA, "X"), + (0x19D0, "V"), + (0x19DB, "X"), + (0x19DE, "V"), + (0x1A1C, "X"), + (0x1A1E, "V"), + (0x1A5F, "X"), + (0x1A60, "V"), + (0x1A7D, "X"), + (0x1A7F, "V"), + (0x1A8A, "X"), + (0x1A90, "V"), + (0x1A9A, "X"), + (0x1AA0, "V"), + (0x1AAE, "X"), + (0x1AB0, "V"), + (0x1ACF, "X"), + (0x1B00, "V"), + (0x1B4D, "X"), + (0x1B50, "V"), + (0x1B7F, "X"), + (0x1B80, "V"), + (0x1BF4, "X"), + (0x1BFC, "V"), + (0x1C38, "X"), + (0x1C3B, "V"), + (0x1C4A, "X"), + (0x1C4D, "V"), + (0x1C80, "M", "в"), + ] + + +def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1C81, "M", "д"), + (0x1C82, "M", "о"), + (0x1C83, "M", "с"), + (0x1C84, "M", "т"), + (0x1C86, "M", "ъ"), + (0x1C87, "M", "ѣ"), + (0x1C88, "M", "ꙋ"), + (0x1C89, "X"), + (0x1C90, "M", "ა"), + (0x1C91, "M", "ბ"), + (0x1C92, "M", "გ"), + (0x1C93, "M", "დ"), + (0x1C94, "M", "ე"), + (0x1C95, "M", "ვ"), + (0x1C96, "M", "ზ"), + (0x1C97, "M", "თ"), + (0x1C98, "M", "ი"), + (0x1C99, "M", "კ"), + (0x1C9A, "M", "ლ"), + (0x1C9B, "M", "მ"), + (0x1C9C, "M", "ნ"), + (0x1C9D, "M", "ო"), + (0x1C9E, "M", "პ"), + (0x1C9F, "M", "ჟ"), + (0x1CA0, "M", "რ"), + (0x1CA1, "M", "ს"), + (0x1CA2, "M", "ტ"), + (0x1CA3, "M", "უ"), + (0x1CA4, "M", "ფ"), + (0x1CA5, "M", "ქ"), + (0x1CA6, "M", "ღ"), + (0x1CA7, "M", "ყ"), + (0x1CA8, "M", "შ"), + (0x1CA9, "M", "ჩ"), + (0x1CAA, "M", "ც"), + (0x1CAB, "M", "ძ"), + (0x1CAC, "M", "წ"), + (0x1CAD, "M", "ჭ"), + (0x1CAE, "M", "ხ"), + (0x1CAF, "M", "ჯ"), + (0x1CB0, "M", "ჰ"), + (0x1CB1, "M", "ჱ"), + (0x1CB2, "M", "ჲ"), + (0x1CB3, "M", "ჳ"), + (0x1CB4, "M", "ჴ"), + (0x1CB5, "M", "ჵ"), + (0x1CB6, "M", "ჶ"), + (0x1CB7, "M", "ჷ"), + (0x1CB8, "M", "ჸ"), + (0x1CB9, "M", "ჹ"), + (0x1CBA, "M", "ჺ"), + (0x1CBB, "X"), + (0x1CBD, "M", "ჽ"), + (0x1CBE, "M", "ჾ"), + (0x1CBF, "M", "ჿ"), + (0x1CC0, "V"), + (0x1CC8, "X"), + (0x1CD0, "V"), + (0x1CFB, "X"), + (0x1D00, "V"), + (0x1D2C, "M", "a"), + (0x1D2D, "M", "æ"), + (0x1D2E, "M", "b"), + (0x1D2F, "V"), + (0x1D30, "M", "d"), + (0x1D31, "M", "e"), + (0x1D32, "M", "ǝ"), + (0x1D33, "M", "g"), + (0x1D34, "M", "h"), + (0x1D35, "M", "i"), + (0x1D36, "M", "j"), + (0x1D37, "M", "k"), + (0x1D38, "M", "l"), + (0x1D39, "M", "m"), + (0x1D3A, "M", "n"), + (0x1D3B, "V"), + (0x1D3C, "M", "o"), + (0x1D3D, "M", "ȣ"), + (0x1D3E, "M", "p"), + (0x1D3F, "M", "r"), + (0x1D40, "M", "t"), + (0x1D41, "M", "u"), + (0x1D42, "M", "w"), + (0x1D43, "M", "a"), + (0x1D44, "M", "ɐ"), + (0x1D45, "M", "ɑ"), + (0x1D46, "M", "ᴂ"), + (0x1D47, "M", "b"), + (0x1D48, "M", "d"), + (0x1D49, "M", "e"), + (0x1D4A, "M", "ə"), + (0x1D4B, "M", "ɛ"), + (0x1D4C, "M", "ɜ"), + (0x1D4D, "M", "g"), + (0x1D4E, "V"), + (0x1D4F, "M", "k"), + (0x1D50, "M", "m"), + (0x1D51, "M", "ŋ"), + (0x1D52, "M", "o"), + (0x1D53, "M", "ɔ"), + ] + + +def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D54, "M", "ᴖ"), + (0x1D55, "M", "ᴗ"), + (0x1D56, "M", "p"), + (0x1D57, "M", "t"), + (0x1D58, "M", "u"), + (0x1D59, "M", "ᴝ"), + (0x1D5A, "M", "ɯ"), + (0x1D5B, "M", "v"), + (0x1D5C, "M", "ᴥ"), + (0x1D5D, "M", "β"), + (0x1D5E, "M", "γ"), + (0x1D5F, "M", "δ"), + (0x1D60, "M", "φ"), + (0x1D61, "M", "χ"), + (0x1D62, "M", "i"), + (0x1D63, "M", "r"), + (0x1D64, "M", "u"), + (0x1D65, "M", "v"), + (0x1D66, "M", "β"), + (0x1D67, "M", "γ"), + (0x1D68, "M", "ρ"), + (0x1D69, "M", "φ"), + (0x1D6A, "M", "χ"), + (0x1D6B, "V"), + (0x1D78, "M", "н"), + (0x1D79, "V"), + (0x1D9B, "M", "ɒ"), + (0x1D9C, "M", "c"), + (0x1D9D, "M", "ɕ"), + (0x1D9E, "M", "ð"), + (0x1D9F, "M", "ɜ"), + (0x1DA0, "M", "f"), + (0x1DA1, "M", "ɟ"), + (0x1DA2, "M", "ɡ"), + (0x1DA3, "M", "ɥ"), + (0x1DA4, "M", "ɨ"), + (0x1DA5, "M", "ɩ"), + (0x1DA6, "M", "ɪ"), + (0x1DA7, "M", "ᵻ"), + (0x1DA8, "M", "ʝ"), + (0x1DA9, "M", "ɭ"), + (0x1DAA, "M", "ᶅ"), + (0x1DAB, "M", "ʟ"), + (0x1DAC, "M", "ɱ"), + (0x1DAD, "M", "ɰ"), + (0x1DAE, "M", "ɲ"), + (0x1DAF, "M", "ɳ"), + (0x1DB0, "M", "ɴ"), + (0x1DB1, "M", "ɵ"), + (0x1DB2, "M", "ɸ"), + (0x1DB3, "M", "ʂ"), + (0x1DB4, "M", "ʃ"), + (0x1DB5, "M", "ƫ"), + (0x1DB6, "M", "ʉ"), + (0x1DB7, "M", "ʊ"), + (0x1DB8, "M", "ᴜ"), + (0x1DB9, "M", "ʋ"), + (0x1DBA, "M", "ʌ"), + (0x1DBB, "M", "z"), + (0x1DBC, "M", "ʐ"), + (0x1DBD, "M", "ʑ"), + (0x1DBE, "M", "ʒ"), + (0x1DBF, "M", "θ"), + (0x1DC0, "V"), + (0x1E00, "M", "ḁ"), + (0x1E01, "V"), + (0x1E02, "M", "ḃ"), + (0x1E03, "V"), + (0x1E04, "M", "ḅ"), + (0x1E05, "V"), + (0x1E06, "M", "ḇ"), + (0x1E07, "V"), + (0x1E08, "M", "ḉ"), + (0x1E09, "V"), + (0x1E0A, "M", "ḋ"), + (0x1E0B, "V"), + (0x1E0C, "M", "ḍ"), + (0x1E0D, "V"), + (0x1E0E, "M", "ḏ"), + (0x1E0F, "V"), + (0x1E10, "M", "ḑ"), + (0x1E11, "V"), + (0x1E12, "M", "ḓ"), + (0x1E13, "V"), + (0x1E14, "M", "ḕ"), + (0x1E15, "V"), + (0x1E16, "M", "ḗ"), + (0x1E17, "V"), + (0x1E18, "M", "ḙ"), + (0x1E19, "V"), + (0x1E1A, "M", "ḛ"), + (0x1E1B, "V"), + (0x1E1C, "M", "ḝ"), + (0x1E1D, "V"), + (0x1E1E, "M", "ḟ"), + (0x1E1F, "V"), + (0x1E20, "M", "ḡ"), + (0x1E21, "V"), + (0x1E22, "M", "ḣ"), + (0x1E23, "V"), + ] + + +def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E24, "M", "ḥ"), + (0x1E25, "V"), + (0x1E26, "M", "ḧ"), + (0x1E27, "V"), + (0x1E28, "M", "ḩ"), + (0x1E29, "V"), + (0x1E2A, "M", "ḫ"), + (0x1E2B, "V"), + (0x1E2C, "M", "ḭ"), + (0x1E2D, "V"), + (0x1E2E, "M", "ḯ"), + (0x1E2F, "V"), + (0x1E30, "M", "ḱ"), + (0x1E31, "V"), + (0x1E32, "M", "ḳ"), + (0x1E33, "V"), + (0x1E34, "M", "ḵ"), + (0x1E35, "V"), + (0x1E36, "M", "ḷ"), + (0x1E37, "V"), + (0x1E38, "M", "ḹ"), + (0x1E39, "V"), + (0x1E3A, "M", "ḻ"), + (0x1E3B, "V"), + (0x1E3C, "M", "ḽ"), + (0x1E3D, "V"), + (0x1E3E, "M", "ḿ"), + (0x1E3F, "V"), + (0x1E40, "M", "ṁ"), + (0x1E41, "V"), + (0x1E42, "M", "ṃ"), + (0x1E43, "V"), + (0x1E44, "M", "ṅ"), + (0x1E45, "V"), + (0x1E46, "M", "ṇ"), + (0x1E47, "V"), + (0x1E48, "M", "ṉ"), + (0x1E49, "V"), + (0x1E4A, "M", "ṋ"), + (0x1E4B, "V"), + (0x1E4C, "M", "ṍ"), + (0x1E4D, "V"), + (0x1E4E, "M", "ṏ"), + (0x1E4F, "V"), + (0x1E50, "M", "ṑ"), + (0x1E51, "V"), + (0x1E52, "M", "ṓ"), + (0x1E53, "V"), + (0x1E54, "M", "ṕ"), + (0x1E55, "V"), + (0x1E56, "M", "ṗ"), + (0x1E57, "V"), + (0x1E58, "M", "ṙ"), + (0x1E59, "V"), + (0x1E5A, "M", "ṛ"), + (0x1E5B, "V"), + (0x1E5C, "M", "ṝ"), + (0x1E5D, "V"), + (0x1E5E, "M", "ṟ"), + (0x1E5F, "V"), + (0x1E60, "M", "ṡ"), + (0x1E61, "V"), + (0x1E62, "M", "ṣ"), + (0x1E63, "V"), + (0x1E64, "M", "ṥ"), + (0x1E65, "V"), + (0x1E66, "M", "ṧ"), + (0x1E67, "V"), + (0x1E68, "M", "ṩ"), + (0x1E69, "V"), + (0x1E6A, "M", "ṫ"), + (0x1E6B, "V"), + (0x1E6C, "M", "ṭ"), + (0x1E6D, "V"), + (0x1E6E, "M", "ṯ"), + (0x1E6F, "V"), + (0x1E70, "M", "ṱ"), + (0x1E71, "V"), + (0x1E72, "M", "ṳ"), + (0x1E73, "V"), + (0x1E74, "M", "ṵ"), + (0x1E75, "V"), + (0x1E76, "M", "ṷ"), + (0x1E77, "V"), + (0x1E78, "M", "ṹ"), + (0x1E79, "V"), + (0x1E7A, "M", "ṻ"), + (0x1E7B, "V"), + (0x1E7C, "M", "ṽ"), + (0x1E7D, "V"), + (0x1E7E, "M", "ṿ"), + (0x1E7F, "V"), + (0x1E80, "M", "ẁ"), + (0x1E81, "V"), + (0x1E82, "M", "ẃ"), + (0x1E83, "V"), + (0x1E84, "M", "ẅ"), + (0x1E85, "V"), + (0x1E86, "M", "ẇ"), + (0x1E87, "V"), + ] + + +def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E88, "M", "ẉ"), + (0x1E89, "V"), + (0x1E8A, "M", "ẋ"), + (0x1E8B, "V"), + (0x1E8C, "M", "ẍ"), + (0x1E8D, "V"), + (0x1E8E, "M", "ẏ"), + (0x1E8F, "V"), + (0x1E90, "M", "ẑ"), + (0x1E91, "V"), + (0x1E92, "M", "ẓ"), + (0x1E93, "V"), + (0x1E94, "M", "ẕ"), + (0x1E95, "V"), + (0x1E9A, "M", "aʾ"), + (0x1E9B, "M", "ṡ"), + (0x1E9C, "V"), + (0x1E9E, "M", "ß"), + (0x1E9F, "V"), + (0x1EA0, "M", "ạ"), + (0x1EA1, "V"), + (0x1EA2, "M", "ả"), + (0x1EA3, "V"), + (0x1EA4, "M", "ấ"), + (0x1EA5, "V"), + (0x1EA6, "M", "ầ"), + (0x1EA7, "V"), + (0x1EA8, "M", "ẩ"), + (0x1EA9, "V"), + (0x1EAA, "M", "ẫ"), + (0x1EAB, "V"), + (0x1EAC, "M", "ậ"), + (0x1EAD, "V"), + (0x1EAE, "M", "ắ"), + (0x1EAF, "V"), + (0x1EB0, "M", "ằ"), + (0x1EB1, "V"), + (0x1EB2, "M", "ẳ"), + (0x1EB3, "V"), + (0x1EB4, "M", "ẵ"), + (0x1EB5, "V"), + (0x1EB6, "M", "ặ"), + (0x1EB7, "V"), + (0x1EB8, "M", "ẹ"), + (0x1EB9, "V"), + (0x1EBA, "M", "ẻ"), + (0x1EBB, "V"), + (0x1EBC, "M", "ẽ"), + (0x1EBD, "V"), + (0x1EBE, "M", "ế"), + (0x1EBF, "V"), + (0x1EC0, "M", "ề"), + (0x1EC1, "V"), + (0x1EC2, "M", "ể"), + (0x1EC3, "V"), + (0x1EC4, "M", "ễ"), + (0x1EC5, "V"), + (0x1EC6, "M", "ệ"), + (0x1EC7, "V"), + (0x1EC8, "M", "ỉ"), + (0x1EC9, "V"), + (0x1ECA, "M", "ị"), + (0x1ECB, "V"), + (0x1ECC, "M", "ọ"), + (0x1ECD, "V"), + (0x1ECE, "M", "ỏ"), + (0x1ECF, "V"), + (0x1ED0, "M", "ố"), + (0x1ED1, "V"), + (0x1ED2, "M", "ồ"), + (0x1ED3, "V"), + (0x1ED4, "M", "ổ"), + (0x1ED5, "V"), + (0x1ED6, "M", "ỗ"), + (0x1ED7, "V"), + (0x1ED8, "M", "ộ"), + (0x1ED9, "V"), + (0x1EDA, "M", "ớ"), + (0x1EDB, "V"), + (0x1EDC, "M", "ờ"), + (0x1EDD, "V"), + (0x1EDE, "M", "ở"), + (0x1EDF, "V"), + (0x1EE0, "M", "ỡ"), + (0x1EE1, "V"), + (0x1EE2, "M", "ợ"), + (0x1EE3, "V"), + (0x1EE4, "M", "ụ"), + (0x1EE5, "V"), + (0x1EE6, "M", "ủ"), + (0x1EE7, "V"), + (0x1EE8, "M", "ứ"), + (0x1EE9, "V"), + (0x1EEA, "M", "ừ"), + (0x1EEB, "V"), + (0x1EEC, "M", "ử"), + (0x1EED, "V"), + (0x1EEE, "M", "ữ"), + (0x1EEF, "V"), + (0x1EF0, "M", "ự"), + ] + + +def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EF1, "V"), + (0x1EF2, "M", "ỳ"), + (0x1EF3, "V"), + (0x1EF4, "M", "ỵ"), + (0x1EF5, "V"), + (0x1EF6, "M", "ỷ"), + (0x1EF7, "V"), + (0x1EF8, "M", "ỹ"), + (0x1EF9, "V"), + (0x1EFA, "M", "ỻ"), + (0x1EFB, "V"), + (0x1EFC, "M", "ỽ"), + (0x1EFD, "V"), + (0x1EFE, "M", "ỿ"), + (0x1EFF, "V"), + (0x1F08, "M", "ἀ"), + (0x1F09, "M", "ἁ"), + (0x1F0A, "M", "ἂ"), + (0x1F0B, "M", "ἃ"), + (0x1F0C, "M", "ἄ"), + (0x1F0D, "M", "ἅ"), + (0x1F0E, "M", "ἆ"), + (0x1F0F, "M", "ἇ"), + (0x1F10, "V"), + (0x1F16, "X"), + (0x1F18, "M", "ἐ"), + (0x1F19, "M", "ἑ"), + (0x1F1A, "M", "ἒ"), + (0x1F1B, "M", "ἓ"), + (0x1F1C, "M", "ἔ"), + (0x1F1D, "M", "ἕ"), + (0x1F1E, "X"), + (0x1F20, "V"), + (0x1F28, "M", "ἠ"), + (0x1F29, "M", "ἡ"), + (0x1F2A, "M", "ἢ"), + (0x1F2B, "M", "ἣ"), + (0x1F2C, "M", "ἤ"), + (0x1F2D, "M", "ἥ"), + (0x1F2E, "M", "ἦ"), + (0x1F2F, "M", "ἧ"), + (0x1F30, "V"), + (0x1F38, "M", "ἰ"), + (0x1F39, "M", "ἱ"), + (0x1F3A, "M", "ἲ"), + (0x1F3B, "M", "ἳ"), + (0x1F3C, "M", "ἴ"), + (0x1F3D, "M", "ἵ"), + (0x1F3E, "M", "ἶ"), + (0x1F3F, "M", "ἷ"), + (0x1F40, "V"), + (0x1F46, "X"), + (0x1F48, "M", "ὀ"), + (0x1F49, "M", "ὁ"), + (0x1F4A, "M", "ὂ"), + (0x1F4B, "M", "ὃ"), + (0x1F4C, "M", "ὄ"), + (0x1F4D, "M", "ὅ"), + (0x1F4E, "X"), + (0x1F50, "V"), + (0x1F58, "X"), + (0x1F59, "M", "ὑ"), + (0x1F5A, "X"), + (0x1F5B, "M", "ὓ"), + (0x1F5C, "X"), + (0x1F5D, "M", "ὕ"), + (0x1F5E, "X"), + (0x1F5F, "M", "ὗ"), + (0x1F60, "V"), + (0x1F68, "M", "ὠ"), + (0x1F69, "M", "ὡ"), + (0x1F6A, "M", "ὢ"), + (0x1F6B, "M", "ὣ"), + (0x1F6C, "M", "ὤ"), + (0x1F6D, "M", "ὥ"), + (0x1F6E, "M", "ὦ"), + (0x1F6F, "M", "ὧ"), + (0x1F70, "V"), + (0x1F71, "M", "ά"), + (0x1F72, "V"), + (0x1F73, "M", "έ"), + (0x1F74, "V"), + (0x1F75, "M", "ή"), + (0x1F76, "V"), + (0x1F77, "M", "ί"), + (0x1F78, "V"), + (0x1F79, "M", "ό"), + (0x1F7A, "V"), + (0x1F7B, "M", "ύ"), + (0x1F7C, "V"), + (0x1F7D, "M", "ώ"), + (0x1F7E, "X"), + (0x1F80, "M", "ἀι"), + (0x1F81, "M", "ἁι"), + (0x1F82, "M", "ἂι"), + (0x1F83, "M", "ἃι"), + (0x1F84, "M", "ἄι"), + (0x1F85, "M", "ἅι"), + (0x1F86, "M", "ἆι"), + (0x1F87, "M", "ἇι"), + ] + + +def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F88, "M", "ἀι"), + (0x1F89, "M", "ἁι"), + (0x1F8A, "M", "ἂι"), + (0x1F8B, "M", "ἃι"), + (0x1F8C, "M", "ἄι"), + (0x1F8D, "M", "ἅι"), + (0x1F8E, "M", "ἆι"), + (0x1F8F, "M", "ἇι"), + (0x1F90, "M", "ἠι"), + (0x1F91, "M", "ἡι"), + (0x1F92, "M", "ἢι"), + (0x1F93, "M", "ἣι"), + (0x1F94, "M", "ἤι"), + (0x1F95, "M", "ἥι"), + (0x1F96, "M", "ἦι"), + (0x1F97, "M", "ἧι"), + (0x1F98, "M", "ἠι"), + (0x1F99, "M", "ἡι"), + (0x1F9A, "M", "ἢι"), + (0x1F9B, "M", "ἣι"), + (0x1F9C, "M", "ἤι"), + (0x1F9D, "M", "ἥι"), + (0x1F9E, "M", "ἦι"), + (0x1F9F, "M", "ἧι"), + (0x1FA0, "M", "ὠι"), + (0x1FA1, "M", "ὡι"), + (0x1FA2, "M", "ὢι"), + (0x1FA3, "M", "ὣι"), + (0x1FA4, "M", "ὤι"), + (0x1FA5, "M", "ὥι"), + (0x1FA6, "M", "ὦι"), + (0x1FA7, "M", "ὧι"), + (0x1FA8, "M", "ὠι"), + (0x1FA9, "M", "ὡι"), + (0x1FAA, "M", "ὢι"), + (0x1FAB, "M", "ὣι"), + (0x1FAC, "M", "ὤι"), + (0x1FAD, "M", "ὥι"), + (0x1FAE, "M", "ὦι"), + (0x1FAF, "M", "ὧι"), + (0x1FB0, "V"), + (0x1FB2, "M", "ὰι"), + (0x1FB3, "M", "αι"), + (0x1FB4, "M", "άι"), + (0x1FB5, "X"), + (0x1FB6, "V"), + (0x1FB7, "M", "ᾶι"), + (0x1FB8, "M", "ᾰ"), + (0x1FB9, "M", "ᾱ"), + (0x1FBA, "M", "ὰ"), + (0x1FBB, "M", "ά"), + (0x1FBC, "M", "αι"), + (0x1FBD, "3", " ̓"), + (0x1FBE, "M", "ι"), + (0x1FBF, "3", " ̓"), + (0x1FC0, "3", " ͂"), + (0x1FC1, "3", " ̈͂"), + (0x1FC2, "M", "ὴι"), + (0x1FC3, "M", "ηι"), + (0x1FC4, "M", "ήι"), + (0x1FC5, "X"), + (0x1FC6, "V"), + (0x1FC7, "M", "ῆι"), + (0x1FC8, "M", "ὲ"), + (0x1FC9, "M", "έ"), + (0x1FCA, "M", "ὴ"), + (0x1FCB, "M", "ή"), + (0x1FCC, "M", "ηι"), + (0x1FCD, "3", " ̓̀"), + (0x1FCE, "3", " ̓́"), + (0x1FCF, "3", " ̓͂"), + (0x1FD0, "V"), + (0x1FD3, "M", "ΐ"), + (0x1FD4, "X"), + (0x1FD6, "V"), + (0x1FD8, "M", "ῐ"), + (0x1FD9, "M", "ῑ"), + (0x1FDA, "M", "ὶ"), + (0x1FDB, "M", "ί"), + (0x1FDC, "X"), + (0x1FDD, "3", " ̔̀"), + (0x1FDE, "3", " ̔́"), + (0x1FDF, "3", " ̔͂"), + (0x1FE0, "V"), + (0x1FE3, "M", "ΰ"), + (0x1FE4, "V"), + (0x1FE8, "M", "ῠ"), + (0x1FE9, "M", "ῡ"), + (0x1FEA, "M", "ὺ"), + (0x1FEB, "M", "ύ"), + (0x1FEC, "M", "ῥ"), + (0x1FED, "3", " ̈̀"), + (0x1FEE, "3", " ̈́"), + (0x1FEF, "3", "`"), + (0x1FF0, "X"), + (0x1FF2, "M", "ὼι"), + (0x1FF3, "M", "ωι"), + (0x1FF4, "M", "ώι"), + (0x1FF5, "X"), + (0x1FF6, "V"), + ] + + +def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FF7, "M", "ῶι"), + (0x1FF8, "M", "ὸ"), + (0x1FF9, "M", "ό"), + (0x1FFA, "M", "ὼ"), + (0x1FFB, "M", "ώ"), + (0x1FFC, "M", "ωι"), + (0x1FFD, "3", " ́"), + (0x1FFE, "3", " ̔"), + (0x1FFF, "X"), + (0x2000, "3", " "), + (0x200B, "I"), + (0x200C, "D", ""), + (0x200E, "X"), + (0x2010, "V"), + (0x2011, "M", "‐"), + (0x2012, "V"), + (0x2017, "3", " ̳"), + (0x2018, "V"), + (0x2024, "X"), + (0x2027, "V"), + (0x2028, "X"), + (0x202F, "3", " "), + (0x2030, "V"), + (0x2033, "M", "′′"), + (0x2034, "M", "′′′"), + (0x2035, "V"), + (0x2036, "M", "‵‵"), + (0x2037, "M", "‵‵‵"), + (0x2038, "V"), + (0x203C, "3", "!!"), + (0x203D, "V"), + (0x203E, "3", " ̅"), + (0x203F, "V"), + (0x2047, "3", "??"), + (0x2048, "3", "?!"), + (0x2049, "3", "!?"), + (0x204A, "V"), + (0x2057, "M", "′′′′"), + (0x2058, "V"), + (0x205F, "3", " "), + (0x2060, "I"), + (0x2061, "X"), + (0x2064, "I"), + (0x2065, "X"), + (0x2070, "M", "0"), + (0x2071, "M", "i"), + (0x2072, "X"), + (0x2074, "M", "4"), + (0x2075, "M", "5"), + (0x2076, "M", "6"), + (0x2077, "M", "7"), + (0x2078, "M", "8"), + (0x2079, "M", "9"), + (0x207A, "3", "+"), + (0x207B, "M", "−"), + (0x207C, "3", "="), + (0x207D, "3", "("), + (0x207E, "3", ")"), + (0x207F, "M", "n"), + (0x2080, "M", "0"), + (0x2081, "M", "1"), + (0x2082, "M", "2"), + (0x2083, "M", "3"), + (0x2084, "M", "4"), + (0x2085, "M", "5"), + (0x2086, "M", "6"), + (0x2087, "M", "7"), + (0x2088, "M", "8"), + (0x2089, "M", "9"), + (0x208A, "3", "+"), + (0x208B, "M", "−"), + (0x208C, "3", "="), + (0x208D, "3", "("), + (0x208E, "3", ")"), + (0x208F, "X"), + (0x2090, "M", "a"), + (0x2091, "M", "e"), + (0x2092, "M", "o"), + (0x2093, "M", "x"), + (0x2094, "M", "ə"), + (0x2095, "M", "h"), + (0x2096, "M", "k"), + (0x2097, "M", "l"), + (0x2098, "M", "m"), + (0x2099, "M", "n"), + (0x209A, "M", "p"), + (0x209B, "M", "s"), + (0x209C, "M", "t"), + (0x209D, "X"), + (0x20A0, "V"), + (0x20A8, "M", "rs"), + (0x20A9, "V"), + (0x20C1, "X"), + (0x20D0, "V"), + (0x20F1, "X"), + (0x2100, "3", "a/c"), + (0x2101, "3", "a/s"), + (0x2102, "M", "c"), + (0x2103, "M", "°c"), + (0x2104, "V"), + ] + + +def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2105, "3", "c/o"), + (0x2106, "3", "c/u"), + (0x2107, "M", "ɛ"), + (0x2108, "V"), + (0x2109, "M", "°f"), + (0x210A, "M", "g"), + (0x210B, "M", "h"), + (0x210F, "M", "ħ"), + (0x2110, "M", "i"), + (0x2112, "M", "l"), + (0x2114, "V"), + (0x2115, "M", "n"), + (0x2116, "M", "no"), + (0x2117, "V"), + (0x2119, "M", "p"), + (0x211A, "M", "q"), + (0x211B, "M", "r"), + (0x211E, "V"), + (0x2120, "M", "sm"), + (0x2121, "M", "tel"), + (0x2122, "M", "tm"), + (0x2123, "V"), + (0x2124, "M", "z"), + (0x2125, "V"), + (0x2126, "M", "ω"), + (0x2127, "V"), + (0x2128, "M", "z"), + (0x2129, "V"), + (0x212A, "M", "k"), + (0x212B, "M", "å"), + (0x212C, "M", "b"), + (0x212D, "M", "c"), + (0x212E, "V"), + (0x212F, "M", "e"), + (0x2131, "M", "f"), + (0x2132, "X"), + (0x2133, "M", "m"), + (0x2134, "M", "o"), + (0x2135, "M", "א"), + (0x2136, "M", "ב"), + (0x2137, "M", "ג"), + (0x2138, "M", "ד"), + (0x2139, "M", "i"), + (0x213A, "V"), + (0x213B, "M", "fax"), + (0x213C, "M", "π"), + (0x213D, "M", "γ"), + (0x213F, "M", "π"), + (0x2140, "M", "∑"), + (0x2141, "V"), + (0x2145, "M", "d"), + (0x2147, "M", "e"), + (0x2148, "M", "i"), + (0x2149, "M", "j"), + (0x214A, "V"), + (0x2150, "M", "1⁄7"), + (0x2151, "M", "1⁄9"), + (0x2152, "M", "1⁄10"), + (0x2153, "M", "1⁄3"), + (0x2154, "M", "2⁄3"), + (0x2155, "M", "1⁄5"), + (0x2156, "M", "2⁄5"), + (0x2157, "M", "3⁄5"), + (0x2158, "M", "4⁄5"), + (0x2159, "M", "1⁄6"), + (0x215A, "M", "5⁄6"), + (0x215B, "M", "1⁄8"), + (0x215C, "M", "3⁄8"), + (0x215D, "M", "5⁄8"), + (0x215E, "M", "7⁄8"), + (0x215F, "M", "1⁄"), + (0x2160, "M", "i"), + (0x2161, "M", "ii"), + (0x2162, "M", "iii"), + (0x2163, "M", "iv"), + (0x2164, "M", "v"), + (0x2165, "M", "vi"), + (0x2166, "M", "vii"), + (0x2167, "M", "viii"), + (0x2168, "M", "ix"), + (0x2169, "M", "x"), + (0x216A, "M", "xi"), + (0x216B, "M", "xii"), + (0x216C, "M", "l"), + (0x216D, "M", "c"), + (0x216E, "M", "d"), + (0x216F, "M", "m"), + (0x2170, "M", "i"), + (0x2171, "M", "ii"), + (0x2172, "M", "iii"), + (0x2173, "M", "iv"), + (0x2174, "M", "v"), + (0x2175, "M", "vi"), + (0x2176, "M", "vii"), + (0x2177, "M", "viii"), + (0x2178, "M", "ix"), + (0x2179, "M", "x"), + (0x217A, "M", "xi"), + (0x217B, "M", "xii"), + (0x217C, "M", "l"), + ] + + +def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x217D, "M", "c"), + (0x217E, "M", "d"), + (0x217F, "M", "m"), + (0x2180, "V"), + (0x2183, "X"), + (0x2184, "V"), + (0x2189, "M", "0⁄3"), + (0x218A, "V"), + (0x218C, "X"), + (0x2190, "V"), + (0x222C, "M", "∫∫"), + (0x222D, "M", "∫∫∫"), + (0x222E, "V"), + (0x222F, "M", "∮∮"), + (0x2230, "M", "∮∮∮"), + (0x2231, "V"), + (0x2329, "M", "〈"), + (0x232A, "M", "〉"), + (0x232B, "V"), + (0x2427, "X"), + (0x2440, "V"), + (0x244B, "X"), + (0x2460, "M", "1"), + (0x2461, "M", "2"), + (0x2462, "M", "3"), + (0x2463, "M", "4"), + (0x2464, "M", "5"), + (0x2465, "M", "6"), + (0x2466, "M", "7"), + (0x2467, "M", "8"), + (0x2468, "M", "9"), + (0x2469, "M", "10"), + (0x246A, "M", "11"), + (0x246B, "M", "12"), + (0x246C, "M", "13"), + (0x246D, "M", "14"), + (0x246E, "M", "15"), + (0x246F, "M", "16"), + (0x2470, "M", "17"), + (0x2471, "M", "18"), + (0x2472, "M", "19"), + (0x2473, "M", "20"), + (0x2474, "3", "(1)"), + (0x2475, "3", "(2)"), + (0x2476, "3", "(3)"), + (0x2477, "3", "(4)"), + (0x2478, "3", "(5)"), + (0x2479, "3", "(6)"), + (0x247A, "3", "(7)"), + (0x247B, "3", "(8)"), + (0x247C, "3", "(9)"), + (0x247D, "3", "(10)"), + (0x247E, "3", "(11)"), + (0x247F, "3", "(12)"), + (0x2480, "3", "(13)"), + (0x2481, "3", "(14)"), + (0x2482, "3", "(15)"), + (0x2483, "3", "(16)"), + (0x2484, "3", "(17)"), + (0x2485, "3", "(18)"), + (0x2486, "3", "(19)"), + (0x2487, "3", "(20)"), + (0x2488, "X"), + (0x249C, "3", "(a)"), + (0x249D, "3", "(b)"), + (0x249E, "3", "(c)"), + (0x249F, "3", "(d)"), + (0x24A0, "3", "(e)"), + (0x24A1, "3", "(f)"), + (0x24A2, "3", "(g)"), + (0x24A3, "3", "(h)"), + (0x24A4, "3", "(i)"), + (0x24A5, "3", "(j)"), + (0x24A6, "3", "(k)"), + (0x24A7, "3", "(l)"), + (0x24A8, "3", "(m)"), + (0x24A9, "3", "(n)"), + (0x24AA, "3", "(o)"), + (0x24AB, "3", "(p)"), + (0x24AC, "3", "(q)"), + (0x24AD, "3", "(r)"), + (0x24AE, "3", "(s)"), + (0x24AF, "3", "(t)"), + (0x24B0, "3", "(u)"), + (0x24B1, "3", "(v)"), + (0x24B2, "3", "(w)"), + (0x24B3, "3", "(x)"), + (0x24B4, "3", "(y)"), + (0x24B5, "3", "(z)"), + (0x24B6, "M", "a"), + (0x24B7, "M", "b"), + (0x24B8, "M", "c"), + (0x24B9, "M", "d"), + (0x24BA, "M", "e"), + (0x24BB, "M", "f"), + (0x24BC, "M", "g"), + (0x24BD, "M", "h"), + (0x24BE, "M", "i"), + (0x24BF, "M", "j"), + (0x24C0, "M", "k"), + ] + + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24C1, "M", "l"), + (0x24C2, "M", "m"), + (0x24C3, "M", "n"), + (0x24C4, "M", "o"), + (0x24C5, "M", "p"), + (0x24C6, "M", "q"), + (0x24C7, "M", "r"), + (0x24C8, "M", "s"), + (0x24C9, "M", "t"), + (0x24CA, "M", "u"), + (0x24CB, "M", "v"), + (0x24CC, "M", "w"), + (0x24CD, "M", "x"), + (0x24CE, "M", "y"), + (0x24CF, "M", "z"), + (0x24D0, "M", "a"), + (0x24D1, "M", "b"), + (0x24D2, "M", "c"), + (0x24D3, "M", "d"), + (0x24D4, "M", "e"), + (0x24D5, "M", "f"), + (0x24D6, "M", "g"), + (0x24D7, "M", "h"), + (0x24D8, "M", "i"), + (0x24D9, "M", "j"), + (0x24DA, "M", "k"), + (0x24DB, "M", "l"), + (0x24DC, "M", "m"), + (0x24DD, "M", "n"), + (0x24DE, "M", "o"), + (0x24DF, "M", "p"), + (0x24E0, "M", "q"), + (0x24E1, "M", "r"), + (0x24E2, "M", "s"), + (0x24E3, "M", "t"), + (0x24E4, "M", "u"), + (0x24E5, "M", "v"), + (0x24E6, "M", "w"), + (0x24E7, "M", "x"), + (0x24E8, "M", "y"), + (0x24E9, "M", "z"), + (0x24EA, "M", "0"), + (0x24EB, "V"), + (0x2A0C, "M", "∫∫∫∫"), + (0x2A0D, "V"), + (0x2A74, "3", "::="), + (0x2A75, "3", "=="), + (0x2A76, "3", "==="), + (0x2A77, "V"), + (0x2ADC, "M", "⫝̸"), + (0x2ADD, "V"), + (0x2B74, "X"), + (0x2B76, "V"), + (0x2B96, "X"), + (0x2B97, "V"), + (0x2C00, "M", "ⰰ"), + (0x2C01, "M", "ⰱ"), + (0x2C02, "M", "ⰲ"), + (0x2C03, "M", "ⰳ"), + (0x2C04, "M", "ⰴ"), + (0x2C05, "M", "ⰵ"), + (0x2C06, "M", "ⰶ"), + (0x2C07, "M", "ⰷ"), + (0x2C08, "M", "ⰸ"), + (0x2C09, "M", "ⰹ"), + (0x2C0A, "M", "ⰺ"), + (0x2C0B, "M", "ⰻ"), + (0x2C0C, "M", "ⰼ"), + (0x2C0D, "M", "ⰽ"), + (0x2C0E, "M", "ⰾ"), + (0x2C0F, "M", "ⰿ"), + (0x2C10, "M", "ⱀ"), + (0x2C11, "M", "ⱁ"), + (0x2C12, "M", "ⱂ"), + (0x2C13, "M", "ⱃ"), + (0x2C14, "M", "ⱄ"), + (0x2C15, "M", "ⱅ"), + (0x2C16, "M", "ⱆ"), + (0x2C17, "M", "ⱇ"), + (0x2C18, "M", "ⱈ"), + (0x2C19, "M", "ⱉ"), + (0x2C1A, "M", "ⱊ"), + (0x2C1B, "M", "ⱋ"), + (0x2C1C, "M", "ⱌ"), + (0x2C1D, "M", "ⱍ"), + (0x2C1E, "M", "ⱎ"), + (0x2C1F, "M", "ⱏ"), + (0x2C20, "M", "ⱐ"), + (0x2C21, "M", "ⱑ"), + (0x2C22, "M", "ⱒ"), + (0x2C23, "M", "ⱓ"), + (0x2C24, "M", "ⱔ"), + (0x2C25, "M", "ⱕ"), + (0x2C26, "M", "ⱖ"), + (0x2C27, "M", "ⱗ"), + (0x2C28, "M", "ⱘ"), + (0x2C29, "M", "ⱙ"), + (0x2C2A, "M", "ⱚ"), + (0x2C2B, "M", "ⱛ"), + (0x2C2C, "M", "ⱜ"), + ] + + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C2D, "M", "ⱝ"), + (0x2C2E, "M", "ⱞ"), + (0x2C2F, "M", "ⱟ"), + (0x2C30, "V"), + (0x2C60, "M", "ⱡ"), + (0x2C61, "V"), + (0x2C62, "M", "ɫ"), + (0x2C63, "M", "ᵽ"), + (0x2C64, "M", "ɽ"), + (0x2C65, "V"), + (0x2C67, "M", "ⱨ"), + (0x2C68, "V"), + (0x2C69, "M", "ⱪ"), + (0x2C6A, "V"), + (0x2C6B, "M", "ⱬ"), + (0x2C6C, "V"), + (0x2C6D, "M", "ɑ"), + (0x2C6E, "M", "ɱ"), + (0x2C6F, "M", "ɐ"), + (0x2C70, "M", "ɒ"), + (0x2C71, "V"), + (0x2C72, "M", "ⱳ"), + (0x2C73, "V"), + (0x2C75, "M", "ⱶ"), + (0x2C76, "V"), + (0x2C7C, "M", "j"), + (0x2C7D, "M", "v"), + (0x2C7E, "M", "ȿ"), + (0x2C7F, "M", "ɀ"), + (0x2C80, "M", "ⲁ"), + (0x2C81, "V"), + (0x2C82, "M", "ⲃ"), + (0x2C83, "V"), + (0x2C84, "M", "ⲅ"), + (0x2C85, "V"), + (0x2C86, "M", "ⲇ"), + (0x2C87, "V"), + (0x2C88, "M", "ⲉ"), + (0x2C89, "V"), + (0x2C8A, "M", "ⲋ"), + (0x2C8B, "V"), + (0x2C8C, "M", "ⲍ"), + (0x2C8D, "V"), + (0x2C8E, "M", "ⲏ"), + (0x2C8F, "V"), + (0x2C90, "M", "ⲑ"), + (0x2C91, "V"), + (0x2C92, "M", "ⲓ"), + (0x2C93, "V"), + (0x2C94, "M", "ⲕ"), + (0x2C95, "V"), + (0x2C96, "M", "ⲗ"), + (0x2C97, "V"), + (0x2C98, "M", "ⲙ"), + (0x2C99, "V"), + (0x2C9A, "M", "ⲛ"), + (0x2C9B, "V"), + (0x2C9C, "M", "ⲝ"), + (0x2C9D, "V"), + (0x2C9E, "M", "ⲟ"), + (0x2C9F, "V"), + (0x2CA0, "M", "ⲡ"), + (0x2CA1, "V"), + (0x2CA2, "M", "ⲣ"), + (0x2CA3, "V"), + (0x2CA4, "M", "ⲥ"), + (0x2CA5, "V"), + (0x2CA6, "M", "ⲧ"), + (0x2CA7, "V"), + (0x2CA8, "M", "ⲩ"), + (0x2CA9, "V"), + (0x2CAA, "M", "ⲫ"), + (0x2CAB, "V"), + (0x2CAC, "M", "ⲭ"), + (0x2CAD, "V"), + (0x2CAE, "M", "ⲯ"), + (0x2CAF, "V"), + (0x2CB0, "M", "ⲱ"), + (0x2CB1, "V"), + (0x2CB2, "M", "ⲳ"), + (0x2CB3, "V"), + (0x2CB4, "M", "ⲵ"), + (0x2CB5, "V"), + (0x2CB6, "M", "ⲷ"), + (0x2CB7, "V"), + (0x2CB8, "M", "ⲹ"), + (0x2CB9, "V"), + (0x2CBA, "M", "ⲻ"), + (0x2CBB, "V"), + (0x2CBC, "M", "ⲽ"), + (0x2CBD, "V"), + (0x2CBE, "M", "ⲿ"), + (0x2CBF, "V"), + (0x2CC0, "M", "ⳁ"), + (0x2CC1, "V"), + (0x2CC2, "M", "ⳃ"), + (0x2CC3, "V"), + (0x2CC4, "M", "ⳅ"), + (0x2CC5, "V"), + (0x2CC6, "M", "ⳇ"), + ] + + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC7, "V"), + (0x2CC8, "M", "ⳉ"), + (0x2CC9, "V"), + (0x2CCA, "M", "ⳋ"), + (0x2CCB, "V"), + (0x2CCC, "M", "ⳍ"), + (0x2CCD, "V"), + (0x2CCE, "M", "ⳏ"), + (0x2CCF, "V"), + (0x2CD0, "M", "ⳑ"), + (0x2CD1, "V"), + (0x2CD2, "M", "ⳓ"), + (0x2CD3, "V"), + (0x2CD4, "M", "ⳕ"), + (0x2CD5, "V"), + (0x2CD6, "M", "ⳗ"), + (0x2CD7, "V"), + (0x2CD8, "M", "ⳙ"), + (0x2CD9, "V"), + (0x2CDA, "M", "ⳛ"), + (0x2CDB, "V"), + (0x2CDC, "M", "ⳝ"), + (0x2CDD, "V"), + (0x2CDE, "M", "ⳟ"), + (0x2CDF, "V"), + (0x2CE0, "M", "ⳡ"), + (0x2CE1, "V"), + (0x2CE2, "M", "ⳣ"), + (0x2CE3, "V"), + (0x2CEB, "M", "ⳬ"), + (0x2CEC, "V"), + (0x2CED, "M", "ⳮ"), + (0x2CEE, "V"), + (0x2CF2, "M", "ⳳ"), + (0x2CF3, "V"), + (0x2CF4, "X"), + (0x2CF9, "V"), + (0x2D26, "X"), + (0x2D27, "V"), + (0x2D28, "X"), + (0x2D2D, "V"), + (0x2D2E, "X"), + (0x2D30, "V"), + (0x2D68, "X"), + (0x2D6F, "M", "ⵡ"), + (0x2D70, "V"), + (0x2D71, "X"), + (0x2D7F, "V"), + (0x2D97, "X"), + (0x2DA0, "V"), + (0x2DA7, "X"), + (0x2DA8, "V"), + (0x2DAF, "X"), + (0x2DB0, "V"), + (0x2DB7, "X"), + (0x2DB8, "V"), + (0x2DBF, "X"), + (0x2DC0, "V"), + (0x2DC7, "X"), + (0x2DC8, "V"), + (0x2DCF, "X"), + (0x2DD0, "V"), + (0x2DD7, "X"), + (0x2DD8, "V"), + (0x2DDF, "X"), + (0x2DE0, "V"), + (0x2E5E, "X"), + (0x2E80, "V"), + (0x2E9A, "X"), + (0x2E9B, "V"), + (0x2E9F, "M", "母"), + (0x2EA0, "V"), + (0x2EF3, "M", "龟"), + (0x2EF4, "X"), + (0x2F00, "M", "一"), + (0x2F01, "M", "丨"), + (0x2F02, "M", "丶"), + (0x2F03, "M", "丿"), + (0x2F04, "M", "乙"), + (0x2F05, "M", "亅"), + (0x2F06, "M", "二"), + (0x2F07, "M", "亠"), + (0x2F08, "M", "人"), + (0x2F09, "M", "儿"), + (0x2F0A, "M", "入"), + (0x2F0B, "M", "八"), + (0x2F0C, "M", "冂"), + (0x2F0D, "M", "冖"), + (0x2F0E, "M", "冫"), + (0x2F0F, "M", "几"), + (0x2F10, "M", "凵"), + (0x2F11, "M", "刀"), + (0x2F12, "M", "力"), + (0x2F13, "M", "勹"), + (0x2F14, "M", "匕"), + (0x2F15, "M", "匚"), + (0x2F16, "M", "匸"), + (0x2F17, "M", "十"), + (0x2F18, "M", "卜"), + (0x2F19, "M", "卩"), + ] + + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F1A, "M", "厂"), + (0x2F1B, "M", "厶"), + (0x2F1C, "M", "又"), + (0x2F1D, "M", "口"), + (0x2F1E, "M", "囗"), + (0x2F1F, "M", "土"), + (0x2F20, "M", "士"), + (0x2F21, "M", "夂"), + (0x2F22, "M", "夊"), + (0x2F23, "M", "夕"), + (0x2F24, "M", "大"), + (0x2F25, "M", "女"), + (0x2F26, "M", "子"), + (0x2F27, "M", "宀"), + (0x2F28, "M", "寸"), + (0x2F29, "M", "小"), + (0x2F2A, "M", "尢"), + (0x2F2B, "M", "尸"), + (0x2F2C, "M", "屮"), + (0x2F2D, "M", "山"), + (0x2F2E, "M", "巛"), + (0x2F2F, "M", "工"), + (0x2F30, "M", "己"), + (0x2F31, "M", "巾"), + (0x2F32, "M", "干"), + (0x2F33, "M", "幺"), + (0x2F34, "M", "广"), + (0x2F35, "M", "廴"), + (0x2F36, "M", "廾"), + (0x2F37, "M", "弋"), + (0x2F38, "M", "弓"), + (0x2F39, "M", "彐"), + (0x2F3A, "M", "彡"), + (0x2F3B, "M", "彳"), + (0x2F3C, "M", "心"), + (0x2F3D, "M", "戈"), + (0x2F3E, "M", "戶"), + (0x2F3F, "M", "手"), + (0x2F40, "M", "支"), + (0x2F41, "M", "攴"), + (0x2F42, "M", "文"), + (0x2F43, "M", "斗"), + (0x2F44, "M", "斤"), + (0x2F45, "M", "方"), + (0x2F46, "M", "无"), + (0x2F47, "M", "日"), + (0x2F48, "M", "曰"), + (0x2F49, "M", "月"), + (0x2F4A, "M", "木"), + (0x2F4B, "M", "欠"), + (0x2F4C, "M", "止"), + (0x2F4D, "M", "歹"), + (0x2F4E, "M", "殳"), + (0x2F4F, "M", "毋"), + (0x2F50, "M", "比"), + (0x2F51, "M", "毛"), + (0x2F52, "M", "氏"), + (0x2F53, "M", "气"), + (0x2F54, "M", "水"), + (0x2F55, "M", "火"), + (0x2F56, "M", "爪"), + (0x2F57, "M", "父"), + (0x2F58, "M", "爻"), + (0x2F59, "M", "爿"), + (0x2F5A, "M", "片"), + (0x2F5B, "M", "牙"), + (0x2F5C, "M", "牛"), + (0x2F5D, "M", "犬"), + (0x2F5E, "M", "玄"), + (0x2F5F, "M", "玉"), + (0x2F60, "M", "瓜"), + (0x2F61, "M", "瓦"), + (0x2F62, "M", "甘"), + (0x2F63, "M", "生"), + (0x2F64, "M", "用"), + (0x2F65, "M", "田"), + (0x2F66, "M", "疋"), + (0x2F67, "M", "疒"), + (0x2F68, "M", "癶"), + (0x2F69, "M", "白"), + (0x2F6A, "M", "皮"), + (0x2F6B, "M", "皿"), + (0x2F6C, "M", "目"), + (0x2F6D, "M", "矛"), + (0x2F6E, "M", "矢"), + (0x2F6F, "M", "石"), + (0x2F70, "M", "示"), + (0x2F71, "M", "禸"), + (0x2F72, "M", "禾"), + (0x2F73, "M", "穴"), + (0x2F74, "M", "立"), + (0x2F75, "M", "竹"), + (0x2F76, "M", "米"), + (0x2F77, "M", "糸"), + (0x2F78, "M", "缶"), + (0x2F79, "M", "网"), + (0x2F7A, "M", "羊"), + (0x2F7B, "M", "羽"), + (0x2F7C, "M", "老"), + (0x2F7D, "M", "而"), + ] + + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7E, "M", "耒"), + (0x2F7F, "M", "耳"), + (0x2F80, "M", "聿"), + (0x2F81, "M", "肉"), + (0x2F82, "M", "臣"), + (0x2F83, "M", "自"), + (0x2F84, "M", "至"), + (0x2F85, "M", "臼"), + (0x2F86, "M", "舌"), + (0x2F87, "M", "舛"), + (0x2F88, "M", "舟"), + (0x2F89, "M", "艮"), + (0x2F8A, "M", "色"), + (0x2F8B, "M", "艸"), + (0x2F8C, "M", "虍"), + (0x2F8D, "M", "虫"), + (0x2F8E, "M", "血"), + (0x2F8F, "M", "行"), + (0x2F90, "M", "衣"), + (0x2F91, "M", "襾"), + (0x2F92, "M", "見"), + (0x2F93, "M", "角"), + (0x2F94, "M", "言"), + (0x2F95, "M", "谷"), + (0x2F96, "M", "豆"), + (0x2F97, "M", "豕"), + (0x2F98, "M", "豸"), + (0x2F99, "M", "貝"), + (0x2F9A, "M", "赤"), + (0x2F9B, "M", "走"), + (0x2F9C, "M", "足"), + (0x2F9D, "M", "身"), + (0x2F9E, "M", "車"), + (0x2F9F, "M", "辛"), + (0x2FA0, "M", "辰"), + (0x2FA1, "M", "辵"), + (0x2FA2, "M", "邑"), + (0x2FA3, "M", "酉"), + (0x2FA4, "M", "釆"), + (0x2FA5, "M", "里"), + (0x2FA6, "M", "金"), + (0x2FA7, "M", "長"), + (0x2FA8, "M", "門"), + (0x2FA9, "M", "阜"), + (0x2FAA, "M", "隶"), + (0x2FAB, "M", "隹"), + (0x2FAC, "M", "雨"), + (0x2FAD, "M", "靑"), + (0x2FAE, "M", "非"), + (0x2FAF, "M", "面"), + (0x2FB0, "M", "革"), + (0x2FB1, "M", "韋"), + (0x2FB2, "M", "韭"), + (0x2FB3, "M", "音"), + (0x2FB4, "M", "頁"), + (0x2FB5, "M", "風"), + (0x2FB6, "M", "飛"), + (0x2FB7, "M", "食"), + (0x2FB8, "M", "首"), + (0x2FB9, "M", "香"), + (0x2FBA, "M", "馬"), + (0x2FBB, "M", "骨"), + (0x2FBC, "M", "高"), + (0x2FBD, "M", "髟"), + (0x2FBE, "M", "鬥"), + (0x2FBF, "M", "鬯"), + (0x2FC0, "M", "鬲"), + (0x2FC1, "M", "鬼"), + (0x2FC2, "M", "魚"), + (0x2FC3, "M", "鳥"), + (0x2FC4, "M", "鹵"), + (0x2FC5, "M", "鹿"), + (0x2FC6, "M", "麥"), + (0x2FC7, "M", "麻"), + (0x2FC8, "M", "黃"), + (0x2FC9, "M", "黍"), + (0x2FCA, "M", "黑"), + (0x2FCB, "M", "黹"), + (0x2FCC, "M", "黽"), + (0x2FCD, "M", "鼎"), + (0x2FCE, "M", "鼓"), + (0x2FCF, "M", "鼠"), + (0x2FD0, "M", "鼻"), + (0x2FD1, "M", "齊"), + (0x2FD2, "M", "齒"), + (0x2FD3, "M", "龍"), + (0x2FD4, "M", "龜"), + (0x2FD5, "M", "龠"), + (0x2FD6, "X"), + (0x3000, "3", " "), + (0x3001, "V"), + (0x3002, "M", "."), + (0x3003, "V"), + (0x3036, "M", "〒"), + (0x3037, "V"), + (0x3038, "M", "十"), + (0x3039, "M", "卄"), + (0x303A, "M", "卅"), + (0x303B, "V"), + (0x3040, "X"), + ] + + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3041, "V"), + (0x3097, "X"), + (0x3099, "V"), + (0x309B, "3", " ゙"), + (0x309C, "3", " ゚"), + (0x309D, "V"), + (0x309F, "M", "より"), + (0x30A0, "V"), + (0x30FF, "M", "コト"), + (0x3100, "X"), + (0x3105, "V"), + (0x3130, "X"), + (0x3131, "M", "ᄀ"), + (0x3132, "M", "ᄁ"), + (0x3133, "M", "ᆪ"), + (0x3134, "M", "ᄂ"), + (0x3135, "M", "ᆬ"), + (0x3136, "M", "ᆭ"), + (0x3137, "M", "ᄃ"), + (0x3138, "M", "ᄄ"), + (0x3139, "M", "ᄅ"), + (0x313A, "M", "ᆰ"), + (0x313B, "M", "ᆱ"), + (0x313C, "M", "ᆲ"), + (0x313D, "M", "ᆳ"), + (0x313E, "M", "ᆴ"), + (0x313F, "M", "ᆵ"), + (0x3140, "M", "ᄚ"), + (0x3141, "M", "ᄆ"), + (0x3142, "M", "ᄇ"), + (0x3143, "M", "ᄈ"), + (0x3144, "M", "ᄡ"), + (0x3145, "M", "ᄉ"), + (0x3146, "M", "ᄊ"), + (0x3147, "M", "ᄋ"), + (0x3148, "M", "ᄌ"), + (0x3149, "M", "ᄍ"), + (0x314A, "M", "ᄎ"), + (0x314B, "M", "ᄏ"), + (0x314C, "M", "ᄐ"), + (0x314D, "M", "ᄑ"), + (0x314E, "M", "ᄒ"), + (0x314F, "M", "ᅡ"), + (0x3150, "M", "ᅢ"), + (0x3151, "M", "ᅣ"), + (0x3152, "M", "ᅤ"), + (0x3153, "M", "ᅥ"), + (0x3154, "M", "ᅦ"), + (0x3155, "M", "ᅧ"), + (0x3156, "M", "ᅨ"), + (0x3157, "M", "ᅩ"), + (0x3158, "M", "ᅪ"), + (0x3159, "M", "ᅫ"), + (0x315A, "M", "ᅬ"), + (0x315B, "M", "ᅭ"), + (0x315C, "M", "ᅮ"), + (0x315D, "M", "ᅯ"), + (0x315E, "M", "ᅰ"), + (0x315F, "M", "ᅱ"), + (0x3160, "M", "ᅲ"), + (0x3161, "M", "ᅳ"), + (0x3162, "M", "ᅴ"), + (0x3163, "M", "ᅵ"), + (0x3164, "X"), + (0x3165, "M", "ᄔ"), + (0x3166, "M", "ᄕ"), + (0x3167, "M", "ᇇ"), + (0x3168, "M", "ᇈ"), + (0x3169, "M", "ᇌ"), + (0x316A, "M", "ᇎ"), + (0x316B, "M", "ᇓ"), + (0x316C, "M", "ᇗ"), + (0x316D, "M", "ᇙ"), + (0x316E, "M", "ᄜ"), + (0x316F, "M", "ᇝ"), + (0x3170, "M", "ᇟ"), + (0x3171, "M", "ᄝ"), + (0x3172, "M", "ᄞ"), + (0x3173, "M", "ᄠ"), + (0x3174, "M", "ᄢ"), + (0x3175, "M", "ᄣ"), + (0x3176, "M", "ᄧ"), + (0x3177, "M", "ᄩ"), + (0x3178, "M", "ᄫ"), + (0x3179, "M", "ᄬ"), + (0x317A, "M", "ᄭ"), + (0x317B, "M", "ᄮ"), + (0x317C, "M", "ᄯ"), + (0x317D, "M", "ᄲ"), + (0x317E, "M", "ᄶ"), + (0x317F, "M", "ᅀ"), + (0x3180, "M", "ᅇ"), + (0x3181, "M", "ᅌ"), + (0x3182, "M", "ᇱ"), + (0x3183, "M", "ᇲ"), + (0x3184, "M", "ᅗ"), + (0x3185, "M", "ᅘ"), + (0x3186, "M", "ᅙ"), + (0x3187, "M", "ᆄ"), + (0x3188, "M", "ᆅ"), + ] + + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3189, "M", "ᆈ"), + (0x318A, "M", "ᆑ"), + (0x318B, "M", "ᆒ"), + (0x318C, "M", "ᆔ"), + (0x318D, "M", "ᆞ"), + (0x318E, "M", "ᆡ"), + (0x318F, "X"), + (0x3190, "V"), + (0x3192, "M", "一"), + (0x3193, "M", "二"), + (0x3194, "M", "三"), + (0x3195, "M", "四"), + (0x3196, "M", "上"), + (0x3197, "M", "中"), + (0x3198, "M", "下"), + (0x3199, "M", "甲"), + (0x319A, "M", "乙"), + (0x319B, "M", "丙"), + (0x319C, "M", "丁"), + (0x319D, "M", "天"), + (0x319E, "M", "地"), + (0x319F, "M", "人"), + (0x31A0, "V"), + (0x31E4, "X"), + (0x31F0, "V"), + (0x3200, "3", "(ᄀ)"), + (0x3201, "3", "(ᄂ)"), + (0x3202, "3", "(ᄃ)"), + (0x3203, "3", "(ᄅ)"), + (0x3204, "3", "(ᄆ)"), + (0x3205, "3", "(ᄇ)"), + (0x3206, "3", "(ᄉ)"), + (0x3207, "3", "(ᄋ)"), + (0x3208, "3", "(ᄌ)"), + (0x3209, "3", "(ᄎ)"), + (0x320A, "3", "(ᄏ)"), + (0x320B, "3", "(ᄐ)"), + (0x320C, "3", "(ᄑ)"), + (0x320D, "3", "(ᄒ)"), + (0x320E, "3", "(가)"), + (0x320F, "3", "(나)"), + (0x3210, "3", "(다)"), + (0x3211, "3", "(라)"), + (0x3212, "3", "(마)"), + (0x3213, "3", "(바)"), + (0x3214, "3", "(사)"), + (0x3215, "3", "(아)"), + (0x3216, "3", "(자)"), + (0x3217, "3", "(차)"), + (0x3218, "3", "(카)"), + (0x3219, "3", "(타)"), + (0x321A, "3", "(파)"), + (0x321B, "3", "(하)"), + (0x321C, "3", "(주)"), + (0x321D, "3", "(오전)"), + (0x321E, "3", "(오후)"), + (0x321F, "X"), + (0x3220, "3", "(一)"), + (0x3221, "3", "(二)"), + (0x3222, "3", "(三)"), + (0x3223, "3", "(四)"), + (0x3224, "3", "(五)"), + (0x3225, "3", "(六)"), + (0x3226, "3", "(七)"), + (0x3227, "3", "(八)"), + (0x3228, "3", "(九)"), + (0x3229, "3", "(十)"), + (0x322A, "3", "(月)"), + (0x322B, "3", "(火)"), + (0x322C, "3", "(水)"), + (0x322D, "3", "(木)"), + (0x322E, "3", "(金)"), + (0x322F, "3", "(土)"), + (0x3230, "3", "(日)"), + (0x3231, "3", "(株)"), + (0x3232, "3", "(有)"), + (0x3233, "3", "(社)"), + (0x3234, "3", "(名)"), + (0x3235, "3", "(特)"), + (0x3236, "3", "(財)"), + (0x3237, "3", "(祝)"), + (0x3238, "3", "(労)"), + (0x3239, "3", "(代)"), + (0x323A, "3", "(呼)"), + (0x323B, "3", "(学)"), + (0x323C, "3", "(監)"), + (0x323D, "3", "(企)"), + (0x323E, "3", "(資)"), + (0x323F, "3", "(協)"), + (0x3240, "3", "(祭)"), + (0x3241, "3", "(休)"), + (0x3242, "3", "(自)"), + (0x3243, "3", "(至)"), + (0x3244, "M", "問"), + (0x3245, "M", "幼"), + (0x3246, "M", "文"), + (0x3247, "M", "箏"), + (0x3248, "V"), + (0x3250, "M", "pte"), + (0x3251, "M", "21"), + ] + + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3252, "M", "22"), + (0x3253, "M", "23"), + (0x3254, "M", "24"), + (0x3255, "M", "25"), + (0x3256, "M", "26"), + (0x3257, "M", "27"), + (0x3258, "M", "28"), + (0x3259, "M", "29"), + (0x325A, "M", "30"), + (0x325B, "M", "31"), + (0x325C, "M", "32"), + (0x325D, "M", "33"), + (0x325E, "M", "34"), + (0x325F, "M", "35"), + (0x3260, "M", "ᄀ"), + (0x3261, "M", "ᄂ"), + (0x3262, "M", "ᄃ"), + (0x3263, "M", "ᄅ"), + (0x3264, "M", "ᄆ"), + (0x3265, "M", "ᄇ"), + (0x3266, "M", "ᄉ"), + (0x3267, "M", "ᄋ"), + (0x3268, "M", "ᄌ"), + (0x3269, "M", "ᄎ"), + (0x326A, "M", "ᄏ"), + (0x326B, "M", "ᄐ"), + (0x326C, "M", "ᄑ"), + (0x326D, "M", "ᄒ"), + (0x326E, "M", "가"), + (0x326F, "M", "나"), + (0x3270, "M", "다"), + (0x3271, "M", "라"), + (0x3272, "M", "마"), + (0x3273, "M", "바"), + (0x3274, "M", "사"), + (0x3275, "M", "아"), + (0x3276, "M", "자"), + (0x3277, "M", "차"), + (0x3278, "M", "카"), + (0x3279, "M", "타"), + (0x327A, "M", "파"), + (0x327B, "M", "하"), + (0x327C, "M", "참고"), + (0x327D, "M", "주의"), + (0x327E, "M", "우"), + (0x327F, "V"), + (0x3280, "M", "一"), + (0x3281, "M", "二"), + (0x3282, "M", "三"), + (0x3283, "M", "四"), + (0x3284, "M", "五"), + (0x3285, "M", "六"), + (0x3286, "M", "七"), + (0x3287, "M", "八"), + (0x3288, "M", "九"), + (0x3289, "M", "十"), + (0x328A, "M", "月"), + (0x328B, "M", "火"), + (0x328C, "M", "水"), + (0x328D, "M", "木"), + (0x328E, "M", "金"), + (0x328F, "M", "土"), + (0x3290, "M", "日"), + (0x3291, "M", "株"), + (0x3292, "M", "有"), + (0x3293, "M", "社"), + (0x3294, "M", "名"), + (0x3295, "M", "特"), + (0x3296, "M", "財"), + (0x3297, "M", "祝"), + (0x3298, "M", "労"), + (0x3299, "M", "秘"), + (0x329A, "M", "男"), + (0x329B, "M", "女"), + (0x329C, "M", "適"), + (0x329D, "M", "優"), + (0x329E, "M", "印"), + (0x329F, "M", "注"), + (0x32A0, "M", "項"), + (0x32A1, "M", "休"), + (0x32A2, "M", "写"), + (0x32A3, "M", "正"), + (0x32A4, "M", "上"), + (0x32A5, "M", "中"), + (0x32A6, "M", "下"), + (0x32A7, "M", "左"), + (0x32A8, "M", "右"), + (0x32A9, "M", "医"), + (0x32AA, "M", "宗"), + (0x32AB, "M", "学"), + (0x32AC, "M", "監"), + (0x32AD, "M", "企"), + (0x32AE, "M", "資"), + (0x32AF, "M", "協"), + (0x32B0, "M", "夜"), + (0x32B1, "M", "36"), + (0x32B2, "M", "37"), + (0x32B3, "M", "38"), + (0x32B4, "M", "39"), + (0x32B5, "M", "40"), + ] + + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B6, "M", "41"), + (0x32B7, "M", "42"), + (0x32B8, "M", "43"), + (0x32B9, "M", "44"), + (0x32BA, "M", "45"), + (0x32BB, "M", "46"), + (0x32BC, "M", "47"), + (0x32BD, "M", "48"), + (0x32BE, "M", "49"), + (0x32BF, "M", "50"), + (0x32C0, "M", "1月"), + (0x32C1, "M", "2月"), + (0x32C2, "M", "3月"), + (0x32C3, "M", "4月"), + (0x32C4, "M", "5月"), + (0x32C5, "M", "6月"), + (0x32C6, "M", "7月"), + (0x32C7, "M", "8月"), + (0x32C8, "M", "9月"), + (0x32C9, "M", "10月"), + (0x32CA, "M", "11月"), + (0x32CB, "M", "12月"), + (0x32CC, "M", "hg"), + (0x32CD, "M", "erg"), + (0x32CE, "M", "ev"), + (0x32CF, "M", "ltd"), + (0x32D0, "M", "ア"), + (0x32D1, "M", "イ"), + (0x32D2, "M", "ウ"), + (0x32D3, "M", "エ"), + (0x32D4, "M", "オ"), + (0x32D5, "M", "カ"), + (0x32D6, "M", "キ"), + (0x32D7, "M", "ク"), + (0x32D8, "M", "ケ"), + (0x32D9, "M", "コ"), + (0x32DA, "M", "サ"), + (0x32DB, "M", "シ"), + (0x32DC, "M", "ス"), + (0x32DD, "M", "セ"), + (0x32DE, "M", "ソ"), + (0x32DF, "M", "タ"), + (0x32E0, "M", "チ"), + (0x32E1, "M", "ツ"), + (0x32E2, "M", "テ"), + (0x32E3, "M", "ト"), + (0x32E4, "M", "ナ"), + (0x32E5, "M", "ニ"), + (0x32E6, "M", "ヌ"), + (0x32E7, "M", "ネ"), + (0x32E8, "M", "ノ"), + (0x32E9, "M", "ハ"), + (0x32EA, "M", "ヒ"), + (0x32EB, "M", "フ"), + (0x32EC, "M", "ヘ"), + (0x32ED, "M", "ホ"), + (0x32EE, "M", "マ"), + (0x32EF, "M", "ミ"), + (0x32F0, "M", "ム"), + (0x32F1, "M", "メ"), + (0x32F2, "M", "モ"), + (0x32F3, "M", "ヤ"), + (0x32F4, "M", "ユ"), + (0x32F5, "M", "ヨ"), + (0x32F6, "M", "ラ"), + (0x32F7, "M", "リ"), + (0x32F8, "M", "ル"), + (0x32F9, "M", "レ"), + (0x32FA, "M", "ロ"), + (0x32FB, "M", "ワ"), + (0x32FC, "M", "ヰ"), + (0x32FD, "M", "ヱ"), + (0x32FE, "M", "ヲ"), + (0x32FF, "M", "令和"), + (0x3300, "M", "アパート"), + (0x3301, "M", "アルファ"), + (0x3302, "M", "アンペア"), + (0x3303, "M", "アール"), + (0x3304, "M", "イニング"), + (0x3305, "M", "インチ"), + (0x3306, "M", "ウォン"), + (0x3307, "M", "エスクード"), + (0x3308, "M", "エーカー"), + (0x3309, "M", "オンス"), + (0x330A, "M", "オーム"), + (0x330B, "M", "カイリ"), + (0x330C, "M", "カラット"), + (0x330D, "M", "カロリー"), + (0x330E, "M", "ガロン"), + (0x330F, "M", "ガンマ"), + (0x3310, "M", "ギガ"), + (0x3311, "M", "ギニー"), + (0x3312, "M", "キュリー"), + (0x3313, "M", "ギルダー"), + (0x3314, "M", "キロ"), + (0x3315, "M", "キログラム"), + (0x3316, "M", "キロメートル"), + (0x3317, "M", "キロワット"), + (0x3318, "M", "グラム"), + (0x3319, "M", "グラムトン"), + ] + + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x331A, "M", "クルゼイロ"), + (0x331B, "M", "クローネ"), + (0x331C, "M", "ケース"), + (0x331D, "M", "コルナ"), + (0x331E, "M", "コーポ"), + (0x331F, "M", "サイクル"), + (0x3320, "M", "サンチーム"), + (0x3321, "M", "シリング"), + (0x3322, "M", "センチ"), + (0x3323, "M", "セント"), + (0x3324, "M", "ダース"), + (0x3325, "M", "デシ"), + (0x3326, "M", "ドル"), + (0x3327, "M", "トン"), + (0x3328, "M", "ナノ"), + (0x3329, "M", "ノット"), + (0x332A, "M", "ハイツ"), + (0x332B, "M", "パーセント"), + (0x332C, "M", "パーツ"), + (0x332D, "M", "バーレル"), + (0x332E, "M", "ピアストル"), + (0x332F, "M", "ピクル"), + (0x3330, "M", "ピコ"), + (0x3331, "M", "ビル"), + (0x3332, "M", "ファラッド"), + (0x3333, "M", "フィート"), + (0x3334, "M", "ブッシェル"), + (0x3335, "M", "フラン"), + (0x3336, "M", "ヘクタール"), + (0x3337, "M", "ペソ"), + (0x3338, "M", "ペニヒ"), + (0x3339, "M", "ヘルツ"), + (0x333A, "M", "ペンス"), + (0x333B, "M", "ページ"), + (0x333C, "M", "ベータ"), + (0x333D, "M", "ポイント"), + (0x333E, "M", "ボルト"), + (0x333F, "M", "ホン"), + (0x3340, "M", "ポンド"), + (0x3341, "M", "ホール"), + (0x3342, "M", "ホーン"), + (0x3343, "M", "マイクロ"), + (0x3344, "M", "マイル"), + (0x3345, "M", "マッハ"), + (0x3346, "M", "マルク"), + (0x3347, "M", "マンション"), + (0x3348, "M", "ミクロン"), + (0x3349, "M", "ミリ"), + (0x334A, "M", "ミリバール"), + (0x334B, "M", "メガ"), + (0x334C, "M", "メガトン"), + (0x334D, "M", "メートル"), + (0x334E, "M", "ヤード"), + (0x334F, "M", "ヤール"), + (0x3350, "M", "ユアン"), + (0x3351, "M", "リットル"), + (0x3352, "M", "リラ"), + (0x3353, "M", "ルピー"), + (0x3354, "M", "ルーブル"), + (0x3355, "M", "レム"), + (0x3356, "M", "レントゲン"), + (0x3357, "M", "ワット"), + (0x3358, "M", "0点"), + (0x3359, "M", "1点"), + (0x335A, "M", "2点"), + (0x335B, "M", "3点"), + (0x335C, "M", "4点"), + (0x335D, "M", "5点"), + (0x335E, "M", "6点"), + (0x335F, "M", "7点"), + (0x3360, "M", "8点"), + (0x3361, "M", "9点"), + (0x3362, "M", "10点"), + (0x3363, "M", "11点"), + (0x3364, "M", "12点"), + (0x3365, "M", "13点"), + (0x3366, "M", "14点"), + (0x3367, "M", "15点"), + (0x3368, "M", "16点"), + (0x3369, "M", "17点"), + (0x336A, "M", "18点"), + (0x336B, "M", "19点"), + (0x336C, "M", "20点"), + (0x336D, "M", "21点"), + (0x336E, "M", "22点"), + (0x336F, "M", "23点"), + (0x3370, "M", "24点"), + (0x3371, "M", "hpa"), + (0x3372, "M", "da"), + (0x3373, "M", "au"), + (0x3374, "M", "bar"), + (0x3375, "M", "ov"), + (0x3376, "M", "pc"), + (0x3377, "M", "dm"), + (0x3378, "M", "dm2"), + (0x3379, "M", "dm3"), + (0x337A, "M", "iu"), + (0x337B, "M", "平成"), + (0x337C, "M", "昭和"), + (0x337D, "M", "大正"), + ] + + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337E, "M", "明治"), + (0x337F, "M", "株式会社"), + (0x3380, "M", "pa"), + (0x3381, "M", "na"), + (0x3382, "M", "μa"), + (0x3383, "M", "ma"), + (0x3384, "M", "ka"), + (0x3385, "M", "kb"), + (0x3386, "M", "mb"), + (0x3387, "M", "gb"), + (0x3388, "M", "cal"), + (0x3389, "M", "kcal"), + (0x338A, "M", "pf"), + (0x338B, "M", "nf"), + (0x338C, "M", "μf"), + (0x338D, "M", "μg"), + (0x338E, "M", "mg"), + (0x338F, "M", "kg"), + (0x3390, "M", "hz"), + (0x3391, "M", "khz"), + (0x3392, "M", "mhz"), + (0x3393, "M", "ghz"), + (0x3394, "M", "thz"), + (0x3395, "M", "μl"), + (0x3396, "M", "ml"), + (0x3397, "M", "dl"), + (0x3398, "M", "kl"), + (0x3399, "M", "fm"), + (0x339A, "M", "nm"), + (0x339B, "M", "μm"), + (0x339C, "M", "mm"), + (0x339D, "M", "cm"), + (0x339E, "M", "km"), + (0x339F, "M", "mm2"), + (0x33A0, "M", "cm2"), + (0x33A1, "M", "m2"), + (0x33A2, "M", "km2"), + (0x33A3, "M", "mm3"), + (0x33A4, "M", "cm3"), + (0x33A5, "M", "m3"), + (0x33A6, "M", "km3"), + (0x33A7, "M", "m∕s"), + (0x33A8, "M", "m∕s2"), + (0x33A9, "M", "pa"), + (0x33AA, "M", "kpa"), + (0x33AB, "M", "mpa"), + (0x33AC, "M", "gpa"), + (0x33AD, "M", "rad"), + (0x33AE, "M", "rad∕s"), + (0x33AF, "M", "rad∕s2"), + (0x33B0, "M", "ps"), + (0x33B1, "M", "ns"), + (0x33B2, "M", "μs"), + (0x33B3, "M", "ms"), + (0x33B4, "M", "pv"), + (0x33B5, "M", "nv"), + (0x33B6, "M", "μv"), + (0x33B7, "M", "mv"), + (0x33B8, "M", "kv"), + (0x33B9, "M", "mv"), + (0x33BA, "M", "pw"), + (0x33BB, "M", "nw"), + (0x33BC, "M", "μw"), + (0x33BD, "M", "mw"), + (0x33BE, "M", "kw"), + (0x33BF, "M", "mw"), + (0x33C0, "M", "kω"), + (0x33C1, "M", "mω"), + (0x33C2, "X"), + (0x33C3, "M", "bq"), + (0x33C4, "M", "cc"), + (0x33C5, "M", "cd"), + (0x33C6, "M", "c∕kg"), + (0x33C7, "X"), + (0x33C8, "M", "db"), + (0x33C9, "M", "gy"), + (0x33CA, "M", "ha"), + (0x33CB, "M", "hp"), + (0x33CC, "M", "in"), + (0x33CD, "M", "kk"), + (0x33CE, "M", "km"), + (0x33CF, "M", "kt"), + (0x33D0, "M", "lm"), + (0x33D1, "M", "ln"), + (0x33D2, "M", "log"), + (0x33D3, "M", "lx"), + (0x33D4, "M", "mb"), + (0x33D5, "M", "mil"), + (0x33D6, "M", "mol"), + (0x33D7, "M", "ph"), + (0x33D8, "X"), + (0x33D9, "M", "ppm"), + (0x33DA, "M", "pr"), + (0x33DB, "M", "sr"), + (0x33DC, "M", "sv"), + (0x33DD, "M", "wb"), + (0x33DE, "M", "v∕m"), + (0x33DF, "M", "a∕m"), + (0x33E0, "M", "1日"), + (0x33E1, "M", "2日"), + ] + + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33E2, "M", "3日"), + (0x33E3, "M", "4日"), + (0x33E4, "M", "5日"), + (0x33E5, "M", "6日"), + (0x33E6, "M", "7日"), + (0x33E7, "M", "8日"), + (0x33E8, "M", "9日"), + (0x33E9, "M", "10日"), + (0x33EA, "M", "11日"), + (0x33EB, "M", "12日"), + (0x33EC, "M", "13日"), + (0x33ED, "M", "14日"), + (0x33EE, "M", "15日"), + (0x33EF, "M", "16日"), + (0x33F0, "M", "17日"), + (0x33F1, "M", "18日"), + (0x33F2, "M", "19日"), + (0x33F3, "M", "20日"), + (0x33F4, "M", "21日"), + (0x33F5, "M", "22日"), + (0x33F6, "M", "23日"), + (0x33F7, "M", "24日"), + (0x33F8, "M", "25日"), + (0x33F9, "M", "26日"), + (0x33FA, "M", "27日"), + (0x33FB, "M", "28日"), + (0x33FC, "M", "29日"), + (0x33FD, "M", "30日"), + (0x33FE, "M", "31日"), + (0x33FF, "M", "gal"), + (0x3400, "V"), + (0xA48D, "X"), + (0xA490, "V"), + (0xA4C7, "X"), + (0xA4D0, "V"), + (0xA62C, "X"), + (0xA640, "M", "ꙁ"), + (0xA641, "V"), + (0xA642, "M", "ꙃ"), + (0xA643, "V"), + (0xA644, "M", "ꙅ"), + (0xA645, "V"), + (0xA646, "M", "ꙇ"), + (0xA647, "V"), + (0xA648, "M", "ꙉ"), + (0xA649, "V"), + (0xA64A, "M", "ꙋ"), + (0xA64B, "V"), + (0xA64C, "M", "ꙍ"), + (0xA64D, "V"), + (0xA64E, "M", "ꙏ"), + (0xA64F, "V"), + (0xA650, "M", "ꙑ"), + (0xA651, "V"), + (0xA652, "M", "ꙓ"), + (0xA653, "V"), + (0xA654, "M", "ꙕ"), + (0xA655, "V"), + (0xA656, "M", "ꙗ"), + (0xA657, "V"), + (0xA658, "M", "ꙙ"), + (0xA659, "V"), + (0xA65A, "M", "ꙛ"), + (0xA65B, "V"), + (0xA65C, "M", "ꙝ"), + (0xA65D, "V"), + (0xA65E, "M", "ꙟ"), + (0xA65F, "V"), + (0xA660, "M", "ꙡ"), + (0xA661, "V"), + (0xA662, "M", "ꙣ"), + (0xA663, "V"), + (0xA664, "M", "ꙥ"), + (0xA665, "V"), + (0xA666, "M", "ꙧ"), + (0xA667, "V"), + (0xA668, "M", "ꙩ"), + (0xA669, "V"), + (0xA66A, "M", "ꙫ"), + (0xA66B, "V"), + (0xA66C, "M", "ꙭ"), + (0xA66D, "V"), + (0xA680, "M", "ꚁ"), + (0xA681, "V"), + (0xA682, "M", "ꚃ"), + (0xA683, "V"), + (0xA684, "M", "ꚅ"), + (0xA685, "V"), + (0xA686, "M", "ꚇ"), + (0xA687, "V"), + (0xA688, "M", "ꚉ"), + (0xA689, "V"), + (0xA68A, "M", "ꚋ"), + (0xA68B, "V"), + (0xA68C, "M", "ꚍ"), + (0xA68D, "V"), + (0xA68E, "M", "ꚏ"), + (0xA68F, "V"), + (0xA690, "M", "ꚑ"), + (0xA691, "V"), + ] + + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA692, "M", "ꚓ"), + (0xA693, "V"), + (0xA694, "M", "ꚕ"), + (0xA695, "V"), + (0xA696, "M", "ꚗ"), + (0xA697, "V"), + (0xA698, "M", "ꚙ"), + (0xA699, "V"), + (0xA69A, "M", "ꚛ"), + (0xA69B, "V"), + (0xA69C, "M", "ъ"), + (0xA69D, "M", "ь"), + (0xA69E, "V"), + (0xA6F8, "X"), + (0xA700, "V"), + (0xA722, "M", "ꜣ"), + (0xA723, "V"), + (0xA724, "M", "ꜥ"), + (0xA725, "V"), + (0xA726, "M", "ꜧ"), + (0xA727, "V"), + (0xA728, "M", "ꜩ"), + (0xA729, "V"), + (0xA72A, "M", "ꜫ"), + (0xA72B, "V"), + (0xA72C, "M", "ꜭ"), + (0xA72D, "V"), + (0xA72E, "M", "ꜯ"), + (0xA72F, "V"), + (0xA732, "M", "ꜳ"), + (0xA733, "V"), + (0xA734, "M", "ꜵ"), + (0xA735, "V"), + (0xA736, "M", "ꜷ"), + (0xA737, "V"), + (0xA738, "M", "ꜹ"), + (0xA739, "V"), + (0xA73A, "M", "ꜻ"), + (0xA73B, "V"), + (0xA73C, "M", "ꜽ"), + (0xA73D, "V"), + (0xA73E, "M", "ꜿ"), + (0xA73F, "V"), + (0xA740, "M", "ꝁ"), + (0xA741, "V"), + (0xA742, "M", "ꝃ"), + (0xA743, "V"), + (0xA744, "M", "ꝅ"), + (0xA745, "V"), + (0xA746, "M", "ꝇ"), + (0xA747, "V"), + (0xA748, "M", "ꝉ"), + (0xA749, "V"), + (0xA74A, "M", "ꝋ"), + (0xA74B, "V"), + (0xA74C, "M", "ꝍ"), + (0xA74D, "V"), + (0xA74E, "M", "ꝏ"), + (0xA74F, "V"), + (0xA750, "M", "ꝑ"), + (0xA751, "V"), + (0xA752, "M", "ꝓ"), + (0xA753, "V"), + (0xA754, "M", "ꝕ"), + (0xA755, "V"), + (0xA756, "M", "ꝗ"), + (0xA757, "V"), + (0xA758, "M", "ꝙ"), + (0xA759, "V"), + (0xA75A, "M", "ꝛ"), + (0xA75B, "V"), + (0xA75C, "M", "ꝝ"), + (0xA75D, "V"), + (0xA75E, "M", "ꝟ"), + (0xA75F, "V"), + (0xA760, "M", "ꝡ"), + (0xA761, "V"), + (0xA762, "M", "ꝣ"), + (0xA763, "V"), + (0xA764, "M", "ꝥ"), + (0xA765, "V"), + (0xA766, "M", "ꝧ"), + (0xA767, "V"), + (0xA768, "M", "ꝩ"), + (0xA769, "V"), + (0xA76A, "M", "ꝫ"), + (0xA76B, "V"), + (0xA76C, "M", "ꝭ"), + (0xA76D, "V"), + (0xA76E, "M", "ꝯ"), + (0xA76F, "V"), + (0xA770, "M", "ꝯ"), + (0xA771, "V"), + (0xA779, "M", "ꝺ"), + (0xA77A, "V"), + (0xA77B, "M", "ꝼ"), + (0xA77C, "V"), + (0xA77D, "M", "ᵹ"), + (0xA77E, "M", "ꝿ"), + (0xA77F, "V"), + ] + + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA780, "M", "ꞁ"), + (0xA781, "V"), + (0xA782, "M", "ꞃ"), + (0xA783, "V"), + (0xA784, "M", "ꞅ"), + (0xA785, "V"), + (0xA786, "M", "ꞇ"), + (0xA787, "V"), + (0xA78B, "M", "ꞌ"), + (0xA78C, "V"), + (0xA78D, "M", "ɥ"), + (0xA78E, "V"), + (0xA790, "M", "ꞑ"), + (0xA791, "V"), + (0xA792, "M", "ꞓ"), + (0xA793, "V"), + (0xA796, "M", "ꞗ"), + (0xA797, "V"), + (0xA798, "M", "ꞙ"), + (0xA799, "V"), + (0xA79A, "M", "ꞛ"), + (0xA79B, "V"), + (0xA79C, "M", "ꞝ"), + (0xA79D, "V"), + (0xA79E, "M", "ꞟ"), + (0xA79F, "V"), + (0xA7A0, "M", "ꞡ"), + (0xA7A1, "V"), + (0xA7A2, "M", "ꞣ"), + (0xA7A3, "V"), + (0xA7A4, "M", "ꞥ"), + (0xA7A5, "V"), + (0xA7A6, "M", "ꞧ"), + (0xA7A7, "V"), + (0xA7A8, "M", "ꞩ"), + (0xA7A9, "V"), + (0xA7AA, "M", "ɦ"), + (0xA7AB, "M", "ɜ"), + (0xA7AC, "M", "ɡ"), + (0xA7AD, "M", "ɬ"), + (0xA7AE, "M", "ɪ"), + (0xA7AF, "V"), + (0xA7B0, "M", "ʞ"), + (0xA7B1, "M", "ʇ"), + (0xA7B2, "M", "ʝ"), + (0xA7B3, "M", "ꭓ"), + (0xA7B4, "M", "ꞵ"), + (0xA7B5, "V"), + (0xA7B6, "M", "ꞷ"), + (0xA7B7, "V"), + (0xA7B8, "M", "ꞹ"), + (0xA7B9, "V"), + (0xA7BA, "M", "ꞻ"), + (0xA7BB, "V"), + (0xA7BC, "M", "ꞽ"), + (0xA7BD, "V"), + (0xA7BE, "M", "ꞿ"), + (0xA7BF, "V"), + (0xA7C0, "M", "ꟁ"), + (0xA7C1, "V"), + (0xA7C2, "M", "ꟃ"), + (0xA7C3, "V"), + (0xA7C4, "M", "ꞔ"), + (0xA7C5, "M", "ʂ"), + (0xA7C6, "M", "ᶎ"), + (0xA7C7, "M", "ꟈ"), + (0xA7C8, "V"), + (0xA7C9, "M", "ꟊ"), + (0xA7CA, "V"), + (0xA7CB, "X"), + (0xA7D0, "M", "ꟑ"), + (0xA7D1, "V"), + (0xA7D2, "X"), + (0xA7D3, "V"), + (0xA7D4, "X"), + (0xA7D5, "V"), + (0xA7D6, "M", "ꟗ"), + (0xA7D7, "V"), + (0xA7D8, "M", "ꟙ"), + (0xA7D9, "V"), + (0xA7DA, "X"), + (0xA7F2, "M", "c"), + (0xA7F3, "M", "f"), + (0xA7F4, "M", "q"), + (0xA7F5, "M", "ꟶ"), + (0xA7F6, "V"), + (0xA7F8, "M", "ħ"), + (0xA7F9, "M", "œ"), + (0xA7FA, "V"), + (0xA82D, "X"), + (0xA830, "V"), + (0xA83A, "X"), + (0xA840, "V"), + (0xA878, "X"), + (0xA880, "V"), + (0xA8C6, "X"), + (0xA8CE, "V"), + (0xA8DA, "X"), + (0xA8E0, "V"), + (0xA954, "X"), + ] + + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA95F, "V"), + (0xA97D, "X"), + (0xA980, "V"), + (0xA9CE, "X"), + (0xA9CF, "V"), + (0xA9DA, "X"), + (0xA9DE, "V"), + (0xA9FF, "X"), + (0xAA00, "V"), + (0xAA37, "X"), + (0xAA40, "V"), + (0xAA4E, "X"), + (0xAA50, "V"), + (0xAA5A, "X"), + (0xAA5C, "V"), + (0xAAC3, "X"), + (0xAADB, "V"), + (0xAAF7, "X"), + (0xAB01, "V"), + (0xAB07, "X"), + (0xAB09, "V"), + (0xAB0F, "X"), + (0xAB11, "V"), + (0xAB17, "X"), + (0xAB20, "V"), + (0xAB27, "X"), + (0xAB28, "V"), + (0xAB2F, "X"), + (0xAB30, "V"), + (0xAB5C, "M", "ꜧ"), + (0xAB5D, "M", "ꬷ"), + (0xAB5E, "M", "ɫ"), + (0xAB5F, "M", "ꭒ"), + (0xAB60, "V"), + (0xAB69, "M", "ʍ"), + (0xAB6A, "V"), + (0xAB6C, "X"), + (0xAB70, "M", "Ꭰ"), + (0xAB71, "M", "Ꭱ"), + (0xAB72, "M", "Ꭲ"), + (0xAB73, "M", "Ꭳ"), + (0xAB74, "M", "Ꭴ"), + (0xAB75, "M", "Ꭵ"), + (0xAB76, "M", "Ꭶ"), + (0xAB77, "M", "Ꭷ"), + (0xAB78, "M", "Ꭸ"), + (0xAB79, "M", "Ꭹ"), + (0xAB7A, "M", "Ꭺ"), + (0xAB7B, "M", "Ꭻ"), + (0xAB7C, "M", "Ꭼ"), + (0xAB7D, "M", "Ꭽ"), + (0xAB7E, "M", "Ꭾ"), + (0xAB7F, "M", "Ꭿ"), + (0xAB80, "M", "Ꮀ"), + (0xAB81, "M", "Ꮁ"), + (0xAB82, "M", "Ꮂ"), + (0xAB83, "M", "Ꮃ"), + (0xAB84, "M", "Ꮄ"), + (0xAB85, "M", "Ꮅ"), + (0xAB86, "M", "Ꮆ"), + (0xAB87, "M", "Ꮇ"), + (0xAB88, "M", "Ꮈ"), + (0xAB89, "M", "Ꮉ"), + (0xAB8A, "M", "Ꮊ"), + (0xAB8B, "M", "Ꮋ"), + (0xAB8C, "M", "Ꮌ"), + (0xAB8D, "M", "Ꮍ"), + (0xAB8E, "M", "Ꮎ"), + (0xAB8F, "M", "Ꮏ"), + (0xAB90, "M", "Ꮐ"), + (0xAB91, "M", "Ꮑ"), + (0xAB92, "M", "Ꮒ"), + (0xAB93, "M", "Ꮓ"), + (0xAB94, "M", "Ꮔ"), + (0xAB95, "M", "Ꮕ"), + (0xAB96, "M", "Ꮖ"), + (0xAB97, "M", "Ꮗ"), + (0xAB98, "M", "Ꮘ"), + (0xAB99, "M", "Ꮙ"), + (0xAB9A, "M", "Ꮚ"), + (0xAB9B, "M", "Ꮛ"), + (0xAB9C, "M", "Ꮜ"), + (0xAB9D, "M", "Ꮝ"), + (0xAB9E, "M", "Ꮞ"), + (0xAB9F, "M", "Ꮟ"), + (0xABA0, "M", "Ꮠ"), + (0xABA1, "M", "Ꮡ"), + (0xABA2, "M", "Ꮢ"), + (0xABA3, "M", "Ꮣ"), + (0xABA4, "M", "Ꮤ"), + (0xABA5, "M", "Ꮥ"), + (0xABA6, "M", "Ꮦ"), + (0xABA7, "M", "Ꮧ"), + (0xABA8, "M", "Ꮨ"), + (0xABA9, "M", "Ꮩ"), + (0xABAA, "M", "Ꮪ"), + (0xABAB, "M", "Ꮫ"), + (0xABAC, "M", "Ꮬ"), + (0xABAD, "M", "Ꮭ"), + (0xABAE, "M", "Ꮮ"), + ] + + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAF, "M", "Ꮯ"), + (0xABB0, "M", "Ꮰ"), + (0xABB1, "M", "Ꮱ"), + (0xABB2, "M", "Ꮲ"), + (0xABB3, "M", "Ꮳ"), + (0xABB4, "M", "Ꮴ"), + (0xABB5, "M", "Ꮵ"), + (0xABB6, "M", "Ꮶ"), + (0xABB7, "M", "Ꮷ"), + (0xABB8, "M", "Ꮸ"), + (0xABB9, "M", "Ꮹ"), + (0xABBA, "M", "Ꮺ"), + (0xABBB, "M", "Ꮻ"), + (0xABBC, "M", "Ꮼ"), + (0xABBD, "M", "Ꮽ"), + (0xABBE, "M", "Ꮾ"), + (0xABBF, "M", "Ꮿ"), + (0xABC0, "V"), + (0xABEE, "X"), + (0xABF0, "V"), + (0xABFA, "X"), + (0xAC00, "V"), + (0xD7A4, "X"), + (0xD7B0, "V"), + (0xD7C7, "X"), + (0xD7CB, "V"), + (0xD7FC, "X"), + (0xF900, "M", "豈"), + (0xF901, "M", "更"), + (0xF902, "M", "車"), + (0xF903, "M", "賈"), + (0xF904, "M", "滑"), + (0xF905, "M", "串"), + (0xF906, "M", "句"), + (0xF907, "M", "龜"), + (0xF909, "M", "契"), + (0xF90A, "M", "金"), + (0xF90B, "M", "喇"), + (0xF90C, "M", "奈"), + (0xF90D, "M", "懶"), + (0xF90E, "M", "癩"), + (0xF90F, "M", "羅"), + (0xF910, "M", "蘿"), + (0xF911, "M", "螺"), + (0xF912, "M", "裸"), + (0xF913, "M", "邏"), + (0xF914, "M", "樂"), + (0xF915, "M", "洛"), + (0xF916, "M", "烙"), + (0xF917, "M", "珞"), + (0xF918, "M", "落"), + (0xF919, "M", "酪"), + (0xF91A, "M", "駱"), + (0xF91B, "M", "亂"), + (0xF91C, "M", "卵"), + (0xF91D, "M", "欄"), + (0xF91E, "M", "爛"), + (0xF91F, "M", "蘭"), + (0xF920, "M", "鸞"), + (0xF921, "M", "嵐"), + (0xF922, "M", "濫"), + (0xF923, "M", "藍"), + (0xF924, "M", "襤"), + (0xF925, "M", "拉"), + (0xF926, "M", "臘"), + (0xF927, "M", "蠟"), + (0xF928, "M", "廊"), + (0xF929, "M", "朗"), + (0xF92A, "M", "浪"), + (0xF92B, "M", "狼"), + (0xF92C, "M", "郎"), + (0xF92D, "M", "來"), + (0xF92E, "M", "冷"), + (0xF92F, "M", "勞"), + (0xF930, "M", "擄"), + (0xF931, "M", "櫓"), + (0xF932, "M", "爐"), + (0xF933, "M", "盧"), + (0xF934, "M", "老"), + (0xF935, "M", "蘆"), + (0xF936, "M", "虜"), + (0xF937, "M", "路"), + (0xF938, "M", "露"), + (0xF939, "M", "魯"), + (0xF93A, "M", "鷺"), + (0xF93B, "M", "碌"), + (0xF93C, "M", "祿"), + (0xF93D, "M", "綠"), + (0xF93E, "M", "菉"), + (0xF93F, "M", "錄"), + (0xF940, "M", "鹿"), + (0xF941, "M", "論"), + (0xF942, "M", "壟"), + (0xF943, "M", "弄"), + (0xF944, "M", "籠"), + (0xF945, "M", "聾"), + (0xF946, "M", "牢"), + (0xF947, "M", "磊"), + (0xF948, "M", "賂"), + (0xF949, "M", "雷"), + ] + + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF94A, "M", "壘"), + (0xF94B, "M", "屢"), + (0xF94C, "M", "樓"), + (0xF94D, "M", "淚"), + (0xF94E, "M", "漏"), + (0xF94F, "M", "累"), + (0xF950, "M", "縷"), + (0xF951, "M", "陋"), + (0xF952, "M", "勒"), + (0xF953, "M", "肋"), + (0xF954, "M", "凜"), + (0xF955, "M", "凌"), + (0xF956, "M", "稜"), + (0xF957, "M", "綾"), + (0xF958, "M", "菱"), + (0xF959, "M", "陵"), + (0xF95A, "M", "讀"), + (0xF95B, "M", "拏"), + (0xF95C, "M", "樂"), + (0xF95D, "M", "諾"), + (0xF95E, "M", "丹"), + (0xF95F, "M", "寧"), + (0xF960, "M", "怒"), + (0xF961, "M", "率"), + (0xF962, "M", "異"), + (0xF963, "M", "北"), + (0xF964, "M", "磻"), + (0xF965, "M", "便"), + (0xF966, "M", "復"), + (0xF967, "M", "不"), + (0xF968, "M", "泌"), + (0xF969, "M", "數"), + (0xF96A, "M", "索"), + (0xF96B, "M", "參"), + (0xF96C, "M", "塞"), + (0xF96D, "M", "省"), + (0xF96E, "M", "葉"), + (0xF96F, "M", "說"), + (0xF970, "M", "殺"), + (0xF971, "M", "辰"), + (0xF972, "M", "沈"), + (0xF973, "M", "拾"), + (0xF974, "M", "若"), + (0xF975, "M", "掠"), + (0xF976, "M", "略"), + (0xF977, "M", "亮"), + (0xF978, "M", "兩"), + (0xF979, "M", "凉"), + (0xF97A, "M", "梁"), + (0xF97B, "M", "糧"), + (0xF97C, "M", "良"), + (0xF97D, "M", "諒"), + (0xF97E, "M", "量"), + (0xF97F, "M", "勵"), + (0xF980, "M", "呂"), + (0xF981, "M", "女"), + (0xF982, "M", "廬"), + (0xF983, "M", "旅"), + (0xF984, "M", "濾"), + (0xF985, "M", "礪"), + (0xF986, "M", "閭"), + (0xF987, "M", "驪"), + (0xF988, "M", "麗"), + (0xF989, "M", "黎"), + (0xF98A, "M", "力"), + (0xF98B, "M", "曆"), + (0xF98C, "M", "歷"), + (0xF98D, "M", "轢"), + (0xF98E, "M", "年"), + (0xF98F, "M", "憐"), + (0xF990, "M", "戀"), + (0xF991, "M", "撚"), + (0xF992, "M", "漣"), + (0xF993, "M", "煉"), + (0xF994, "M", "璉"), + (0xF995, "M", "秊"), + (0xF996, "M", "練"), + (0xF997, "M", "聯"), + (0xF998, "M", "輦"), + (0xF999, "M", "蓮"), + (0xF99A, "M", "連"), + (0xF99B, "M", "鍊"), + (0xF99C, "M", "列"), + (0xF99D, "M", "劣"), + (0xF99E, "M", "咽"), + (0xF99F, "M", "烈"), + (0xF9A0, "M", "裂"), + (0xF9A1, "M", "說"), + (0xF9A2, "M", "廉"), + (0xF9A3, "M", "念"), + (0xF9A4, "M", "捻"), + (0xF9A5, "M", "殮"), + (0xF9A6, "M", "簾"), + (0xF9A7, "M", "獵"), + (0xF9A8, "M", "令"), + (0xF9A9, "M", "囹"), + (0xF9AA, "M", "寧"), + (0xF9AB, "M", "嶺"), + (0xF9AC, "M", "怜"), + (0xF9AD, "M", "玲"), + ] + + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AE, "M", "瑩"), + (0xF9AF, "M", "羚"), + (0xF9B0, "M", "聆"), + (0xF9B1, "M", "鈴"), + (0xF9B2, "M", "零"), + (0xF9B3, "M", "靈"), + (0xF9B4, "M", "領"), + (0xF9B5, "M", "例"), + (0xF9B6, "M", "禮"), + (0xF9B7, "M", "醴"), + (0xF9B8, "M", "隸"), + (0xF9B9, "M", "惡"), + (0xF9BA, "M", "了"), + (0xF9BB, "M", "僚"), + (0xF9BC, "M", "寮"), + (0xF9BD, "M", "尿"), + (0xF9BE, "M", "料"), + (0xF9BF, "M", "樂"), + (0xF9C0, "M", "燎"), + (0xF9C1, "M", "療"), + (0xF9C2, "M", "蓼"), + (0xF9C3, "M", "遼"), + (0xF9C4, "M", "龍"), + (0xF9C5, "M", "暈"), + (0xF9C6, "M", "阮"), + (0xF9C7, "M", "劉"), + (0xF9C8, "M", "杻"), + (0xF9C9, "M", "柳"), + (0xF9CA, "M", "流"), + (0xF9CB, "M", "溜"), + (0xF9CC, "M", "琉"), + (0xF9CD, "M", "留"), + (0xF9CE, "M", "硫"), + (0xF9CF, "M", "紐"), + (0xF9D0, "M", "類"), + (0xF9D1, "M", "六"), + (0xF9D2, "M", "戮"), + (0xF9D3, "M", "陸"), + (0xF9D4, "M", "倫"), + (0xF9D5, "M", "崙"), + (0xF9D6, "M", "淪"), + (0xF9D7, "M", "輪"), + (0xF9D8, "M", "律"), + (0xF9D9, "M", "慄"), + (0xF9DA, "M", "栗"), + (0xF9DB, "M", "率"), + (0xF9DC, "M", "隆"), + (0xF9DD, "M", "利"), + (0xF9DE, "M", "吏"), + (0xF9DF, "M", "履"), + (0xF9E0, "M", "易"), + (0xF9E1, "M", "李"), + (0xF9E2, "M", "梨"), + (0xF9E3, "M", "泥"), + (0xF9E4, "M", "理"), + (0xF9E5, "M", "痢"), + (0xF9E6, "M", "罹"), + (0xF9E7, "M", "裏"), + (0xF9E8, "M", "裡"), + (0xF9E9, "M", "里"), + (0xF9EA, "M", "離"), + (0xF9EB, "M", "匿"), + (0xF9EC, "M", "溺"), + (0xF9ED, "M", "吝"), + (0xF9EE, "M", "燐"), + (0xF9EF, "M", "璘"), + (0xF9F0, "M", "藺"), + (0xF9F1, "M", "隣"), + (0xF9F2, "M", "鱗"), + (0xF9F3, "M", "麟"), + (0xF9F4, "M", "林"), + (0xF9F5, "M", "淋"), + (0xF9F6, "M", "臨"), + (0xF9F7, "M", "立"), + (0xF9F8, "M", "笠"), + (0xF9F9, "M", "粒"), + (0xF9FA, "M", "狀"), + (0xF9FB, "M", "炙"), + (0xF9FC, "M", "識"), + (0xF9FD, "M", "什"), + (0xF9FE, "M", "茶"), + (0xF9FF, "M", "刺"), + (0xFA00, "M", "切"), + (0xFA01, "M", "度"), + (0xFA02, "M", "拓"), + (0xFA03, "M", "糖"), + (0xFA04, "M", "宅"), + (0xFA05, "M", "洞"), + (0xFA06, "M", "暴"), + (0xFA07, "M", "輻"), + (0xFA08, "M", "行"), + (0xFA09, "M", "降"), + (0xFA0A, "M", "見"), + (0xFA0B, "M", "廓"), + (0xFA0C, "M", "兀"), + (0xFA0D, "M", "嗀"), + (0xFA0E, "V"), + (0xFA10, "M", "塚"), + (0xFA11, "V"), + (0xFA12, "M", "晴"), + ] + + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA13, "V"), + (0xFA15, "M", "凞"), + (0xFA16, "M", "猪"), + (0xFA17, "M", "益"), + (0xFA18, "M", "礼"), + (0xFA19, "M", "神"), + (0xFA1A, "M", "祥"), + (0xFA1B, "M", "福"), + (0xFA1C, "M", "靖"), + (0xFA1D, "M", "精"), + (0xFA1E, "M", "羽"), + (0xFA1F, "V"), + (0xFA20, "M", "蘒"), + (0xFA21, "V"), + (0xFA22, "M", "諸"), + (0xFA23, "V"), + (0xFA25, "M", "逸"), + (0xFA26, "M", "都"), + (0xFA27, "V"), + (0xFA2A, "M", "飯"), + (0xFA2B, "M", "飼"), + (0xFA2C, "M", "館"), + (0xFA2D, "M", "鶴"), + (0xFA2E, "M", "郞"), + (0xFA2F, "M", "隷"), + (0xFA30, "M", "侮"), + (0xFA31, "M", "僧"), + (0xFA32, "M", "免"), + (0xFA33, "M", "勉"), + (0xFA34, "M", "勤"), + (0xFA35, "M", "卑"), + (0xFA36, "M", "喝"), + (0xFA37, "M", "嘆"), + (0xFA38, "M", "器"), + (0xFA39, "M", "塀"), + (0xFA3A, "M", "墨"), + (0xFA3B, "M", "層"), + (0xFA3C, "M", "屮"), + (0xFA3D, "M", "悔"), + (0xFA3E, "M", "慨"), + (0xFA3F, "M", "憎"), + (0xFA40, "M", "懲"), + (0xFA41, "M", "敏"), + (0xFA42, "M", "既"), + (0xFA43, "M", "暑"), + (0xFA44, "M", "梅"), + (0xFA45, "M", "海"), + (0xFA46, "M", "渚"), + (0xFA47, "M", "漢"), + (0xFA48, "M", "煮"), + (0xFA49, "M", "爫"), + (0xFA4A, "M", "琢"), + (0xFA4B, "M", "碑"), + (0xFA4C, "M", "社"), + (0xFA4D, "M", "祉"), + (0xFA4E, "M", "祈"), + (0xFA4F, "M", "祐"), + (0xFA50, "M", "祖"), + (0xFA51, "M", "祝"), + (0xFA52, "M", "禍"), + (0xFA53, "M", "禎"), + (0xFA54, "M", "穀"), + (0xFA55, "M", "突"), + (0xFA56, "M", "節"), + (0xFA57, "M", "練"), + (0xFA58, "M", "縉"), + (0xFA59, "M", "繁"), + (0xFA5A, "M", "署"), + (0xFA5B, "M", "者"), + (0xFA5C, "M", "臭"), + (0xFA5D, "M", "艹"), + (0xFA5F, "M", "著"), + (0xFA60, "M", "褐"), + (0xFA61, "M", "視"), + (0xFA62, "M", "謁"), + (0xFA63, "M", "謹"), + (0xFA64, "M", "賓"), + (0xFA65, "M", "贈"), + (0xFA66, "M", "辶"), + (0xFA67, "M", "逸"), + (0xFA68, "M", "難"), + (0xFA69, "M", "響"), + (0xFA6A, "M", "頻"), + (0xFA6B, "M", "恵"), + (0xFA6C, "M", "𤋮"), + (0xFA6D, "M", "舘"), + (0xFA6E, "X"), + (0xFA70, "M", "並"), + (0xFA71, "M", "况"), + (0xFA72, "M", "全"), + (0xFA73, "M", "侀"), + (0xFA74, "M", "充"), + (0xFA75, "M", "冀"), + (0xFA76, "M", "勇"), + (0xFA77, "M", "勺"), + (0xFA78, "M", "喝"), + (0xFA79, "M", "啕"), + (0xFA7A, "M", "喙"), + (0xFA7B, "M", "嗢"), + (0xFA7C, "M", "塚"), + ] + + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA7D, "M", "墳"), + (0xFA7E, "M", "奄"), + (0xFA7F, "M", "奔"), + (0xFA80, "M", "婢"), + (0xFA81, "M", "嬨"), + (0xFA82, "M", "廒"), + (0xFA83, "M", "廙"), + (0xFA84, "M", "彩"), + (0xFA85, "M", "徭"), + (0xFA86, "M", "惘"), + (0xFA87, "M", "慎"), + (0xFA88, "M", "愈"), + (0xFA89, "M", "憎"), + (0xFA8A, "M", "慠"), + (0xFA8B, "M", "懲"), + (0xFA8C, "M", "戴"), + (0xFA8D, "M", "揄"), + (0xFA8E, "M", "搜"), + (0xFA8F, "M", "摒"), + (0xFA90, "M", "敖"), + (0xFA91, "M", "晴"), + (0xFA92, "M", "朗"), + (0xFA93, "M", "望"), + (0xFA94, "M", "杖"), + (0xFA95, "M", "歹"), + (0xFA96, "M", "殺"), + (0xFA97, "M", "流"), + (0xFA98, "M", "滛"), + (0xFA99, "M", "滋"), + (0xFA9A, "M", "漢"), + (0xFA9B, "M", "瀞"), + (0xFA9C, "M", "煮"), + (0xFA9D, "M", "瞧"), + (0xFA9E, "M", "爵"), + (0xFA9F, "M", "犯"), + (0xFAA0, "M", "猪"), + (0xFAA1, "M", "瑱"), + (0xFAA2, "M", "甆"), + (0xFAA3, "M", "画"), + (0xFAA4, "M", "瘝"), + (0xFAA5, "M", "瘟"), + (0xFAA6, "M", "益"), + (0xFAA7, "M", "盛"), + (0xFAA8, "M", "直"), + (0xFAA9, "M", "睊"), + (0xFAAA, "M", "着"), + (0xFAAB, "M", "磌"), + (0xFAAC, "M", "窱"), + (0xFAAD, "M", "節"), + (0xFAAE, "M", "类"), + (0xFAAF, "M", "絛"), + (0xFAB0, "M", "練"), + (0xFAB1, "M", "缾"), + (0xFAB2, "M", "者"), + (0xFAB3, "M", "荒"), + (0xFAB4, "M", "華"), + (0xFAB5, "M", "蝹"), + (0xFAB6, "M", "襁"), + (0xFAB7, "M", "覆"), + (0xFAB8, "M", "視"), + (0xFAB9, "M", "調"), + (0xFABA, "M", "諸"), + (0xFABB, "M", "請"), + (0xFABC, "M", "謁"), + (0xFABD, "M", "諾"), + (0xFABE, "M", "諭"), + (0xFABF, "M", "謹"), + (0xFAC0, "M", "變"), + (0xFAC1, "M", "贈"), + (0xFAC2, "M", "輸"), + (0xFAC3, "M", "遲"), + (0xFAC4, "M", "醙"), + (0xFAC5, "M", "鉶"), + (0xFAC6, "M", "陼"), + (0xFAC7, "M", "難"), + (0xFAC8, "M", "靖"), + (0xFAC9, "M", "韛"), + (0xFACA, "M", "響"), + (0xFACB, "M", "頋"), + (0xFACC, "M", "頻"), + (0xFACD, "M", "鬒"), + (0xFACE, "M", "龜"), + (0xFACF, "M", "𢡊"), + (0xFAD0, "M", "𢡄"), + (0xFAD1, "M", "𣏕"), + (0xFAD2, "M", "㮝"), + (0xFAD3, "M", "䀘"), + (0xFAD4, "M", "䀹"), + (0xFAD5, "M", "𥉉"), + (0xFAD6, "M", "𥳐"), + (0xFAD7, "M", "𧻓"), + (0xFAD8, "M", "齃"), + (0xFAD9, "M", "龎"), + (0xFADA, "X"), + (0xFB00, "M", "ff"), + (0xFB01, "M", "fi"), + (0xFB02, "M", "fl"), + (0xFB03, "M", "ffi"), + (0xFB04, "M", "ffl"), + (0xFB05, "M", "st"), + ] + + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB07, "X"), + (0xFB13, "M", "մն"), + (0xFB14, "M", "մե"), + (0xFB15, "M", "մի"), + (0xFB16, "M", "վն"), + (0xFB17, "M", "մխ"), + (0xFB18, "X"), + (0xFB1D, "M", "יִ"), + (0xFB1E, "V"), + (0xFB1F, "M", "ײַ"), + (0xFB20, "M", "ע"), + (0xFB21, "M", "א"), + (0xFB22, "M", "ד"), + (0xFB23, "M", "ה"), + (0xFB24, "M", "כ"), + (0xFB25, "M", "ל"), + (0xFB26, "M", "ם"), + (0xFB27, "M", "ר"), + (0xFB28, "M", "ת"), + (0xFB29, "3", "+"), + (0xFB2A, "M", "שׁ"), + (0xFB2B, "M", "שׂ"), + (0xFB2C, "M", "שּׁ"), + (0xFB2D, "M", "שּׂ"), + (0xFB2E, "M", "אַ"), + (0xFB2F, "M", "אָ"), + (0xFB30, "M", "אּ"), + (0xFB31, "M", "בּ"), + (0xFB32, "M", "גּ"), + (0xFB33, "M", "דּ"), + (0xFB34, "M", "הּ"), + (0xFB35, "M", "וּ"), + (0xFB36, "M", "זּ"), + (0xFB37, "X"), + (0xFB38, "M", "טּ"), + (0xFB39, "M", "יּ"), + (0xFB3A, "M", "ךּ"), + (0xFB3B, "M", "כּ"), + (0xFB3C, "M", "לּ"), + (0xFB3D, "X"), + (0xFB3E, "M", "מּ"), + (0xFB3F, "X"), + (0xFB40, "M", "נּ"), + (0xFB41, "M", "סּ"), + (0xFB42, "X"), + (0xFB43, "M", "ףּ"), + (0xFB44, "M", "פּ"), + (0xFB45, "X"), + (0xFB46, "M", "צּ"), + (0xFB47, "M", "קּ"), + (0xFB48, "M", "רּ"), + (0xFB49, "M", "שּ"), + (0xFB4A, "M", "תּ"), + (0xFB4B, "M", "וֹ"), + (0xFB4C, "M", "בֿ"), + (0xFB4D, "M", "כֿ"), + (0xFB4E, "M", "פֿ"), + (0xFB4F, "M", "אל"), + (0xFB50, "M", "ٱ"), + (0xFB52, "M", "ٻ"), + (0xFB56, "M", "پ"), + (0xFB5A, "M", "ڀ"), + (0xFB5E, "M", "ٺ"), + (0xFB62, "M", "ٿ"), + (0xFB66, "M", "ٹ"), + (0xFB6A, "M", "ڤ"), + (0xFB6E, "M", "ڦ"), + (0xFB72, "M", "ڄ"), + (0xFB76, "M", "ڃ"), + (0xFB7A, "M", "چ"), + (0xFB7E, "M", "ڇ"), + (0xFB82, "M", "ڍ"), + (0xFB84, "M", "ڌ"), + (0xFB86, "M", "ڎ"), + (0xFB88, "M", "ڈ"), + (0xFB8A, "M", "ژ"), + (0xFB8C, "M", "ڑ"), + (0xFB8E, "M", "ک"), + (0xFB92, "M", "گ"), + (0xFB96, "M", "ڳ"), + (0xFB9A, "M", "ڱ"), + (0xFB9E, "M", "ں"), + (0xFBA0, "M", "ڻ"), + (0xFBA4, "M", "ۀ"), + (0xFBA6, "M", "ہ"), + (0xFBAA, "M", "ھ"), + (0xFBAE, "M", "ے"), + (0xFBB0, "M", "ۓ"), + (0xFBB2, "V"), + (0xFBC3, "X"), + (0xFBD3, "M", "ڭ"), + (0xFBD7, "M", "ۇ"), + (0xFBD9, "M", "ۆ"), + (0xFBDB, "M", "ۈ"), + (0xFBDD, "M", "ۇٴ"), + (0xFBDE, "M", "ۋ"), + (0xFBE0, "M", "ۅ"), + (0xFBE2, "M", "ۉ"), + (0xFBE4, "M", "ې"), + (0xFBE8, "M", "ى"), + ] + + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBEA, "M", "ئا"), + (0xFBEC, "M", "ئە"), + (0xFBEE, "M", "ئو"), + (0xFBF0, "M", "ئۇ"), + (0xFBF2, "M", "ئۆ"), + (0xFBF4, "M", "ئۈ"), + (0xFBF6, "M", "ئې"), + (0xFBF9, "M", "ئى"), + (0xFBFC, "M", "ی"), + (0xFC00, "M", "ئج"), + (0xFC01, "M", "ئح"), + (0xFC02, "M", "ئم"), + (0xFC03, "M", "ئى"), + (0xFC04, "M", "ئي"), + (0xFC05, "M", "بج"), + (0xFC06, "M", "بح"), + (0xFC07, "M", "بخ"), + (0xFC08, "M", "بم"), + (0xFC09, "M", "بى"), + (0xFC0A, "M", "بي"), + (0xFC0B, "M", "تج"), + (0xFC0C, "M", "تح"), + (0xFC0D, "M", "تخ"), + (0xFC0E, "M", "تم"), + (0xFC0F, "M", "تى"), + (0xFC10, "M", "تي"), + (0xFC11, "M", "ثج"), + (0xFC12, "M", "ثم"), + (0xFC13, "M", "ثى"), + (0xFC14, "M", "ثي"), + (0xFC15, "M", "جح"), + (0xFC16, "M", "جم"), + (0xFC17, "M", "حج"), + (0xFC18, "M", "حم"), + (0xFC19, "M", "خج"), + (0xFC1A, "M", "خح"), + (0xFC1B, "M", "خم"), + (0xFC1C, "M", "سج"), + (0xFC1D, "M", "سح"), + (0xFC1E, "M", "سخ"), + (0xFC1F, "M", "سم"), + (0xFC20, "M", "صح"), + (0xFC21, "M", "صم"), + (0xFC22, "M", "ضج"), + (0xFC23, "M", "ضح"), + (0xFC24, "M", "ضخ"), + (0xFC25, "M", "ضم"), + (0xFC26, "M", "طح"), + (0xFC27, "M", "طم"), + (0xFC28, "M", "ظم"), + (0xFC29, "M", "عج"), + (0xFC2A, "M", "عم"), + (0xFC2B, "M", "غج"), + (0xFC2C, "M", "غم"), + (0xFC2D, "M", "فج"), + (0xFC2E, "M", "فح"), + (0xFC2F, "M", "فخ"), + (0xFC30, "M", "فم"), + (0xFC31, "M", "فى"), + (0xFC32, "M", "في"), + (0xFC33, "M", "قح"), + (0xFC34, "M", "قم"), + (0xFC35, "M", "قى"), + (0xFC36, "M", "قي"), + (0xFC37, "M", "كا"), + (0xFC38, "M", "كج"), + (0xFC39, "M", "كح"), + (0xFC3A, "M", "كخ"), + (0xFC3B, "M", "كل"), + (0xFC3C, "M", "كم"), + (0xFC3D, "M", "كى"), + (0xFC3E, "M", "كي"), + (0xFC3F, "M", "لج"), + (0xFC40, "M", "لح"), + (0xFC41, "M", "لخ"), + (0xFC42, "M", "لم"), + (0xFC43, "M", "لى"), + (0xFC44, "M", "لي"), + (0xFC45, "M", "مج"), + (0xFC46, "M", "مح"), + (0xFC47, "M", "مخ"), + (0xFC48, "M", "مم"), + (0xFC49, "M", "مى"), + (0xFC4A, "M", "مي"), + (0xFC4B, "M", "نج"), + (0xFC4C, "M", "نح"), + (0xFC4D, "M", "نخ"), + (0xFC4E, "M", "نم"), + (0xFC4F, "M", "نى"), + (0xFC50, "M", "ني"), + (0xFC51, "M", "هج"), + (0xFC52, "M", "هم"), + (0xFC53, "M", "هى"), + (0xFC54, "M", "هي"), + (0xFC55, "M", "يج"), + (0xFC56, "M", "يح"), + (0xFC57, "M", "يخ"), + (0xFC58, "M", "يم"), + (0xFC59, "M", "يى"), + (0xFC5A, "M", "يي"), + ] + + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC5B, "M", "ذٰ"), + (0xFC5C, "M", "رٰ"), + (0xFC5D, "M", "ىٰ"), + (0xFC5E, "3", " ٌّ"), + (0xFC5F, "3", " ٍّ"), + (0xFC60, "3", " َّ"), + (0xFC61, "3", " ُّ"), + (0xFC62, "3", " ِّ"), + (0xFC63, "3", " ّٰ"), + (0xFC64, "M", "ئر"), + (0xFC65, "M", "ئز"), + (0xFC66, "M", "ئم"), + (0xFC67, "M", "ئن"), + (0xFC68, "M", "ئى"), + (0xFC69, "M", "ئي"), + (0xFC6A, "M", "بر"), + (0xFC6B, "M", "بز"), + (0xFC6C, "M", "بم"), + (0xFC6D, "M", "بن"), + (0xFC6E, "M", "بى"), + (0xFC6F, "M", "بي"), + (0xFC70, "M", "تر"), + (0xFC71, "M", "تز"), + (0xFC72, "M", "تم"), + (0xFC73, "M", "تن"), + (0xFC74, "M", "تى"), + (0xFC75, "M", "تي"), + (0xFC76, "M", "ثر"), + (0xFC77, "M", "ثز"), + (0xFC78, "M", "ثم"), + (0xFC79, "M", "ثن"), + (0xFC7A, "M", "ثى"), + (0xFC7B, "M", "ثي"), + (0xFC7C, "M", "فى"), + (0xFC7D, "M", "في"), + (0xFC7E, "M", "قى"), + (0xFC7F, "M", "قي"), + (0xFC80, "M", "كا"), + (0xFC81, "M", "كل"), + (0xFC82, "M", "كم"), + (0xFC83, "M", "كى"), + (0xFC84, "M", "كي"), + (0xFC85, "M", "لم"), + (0xFC86, "M", "لى"), + (0xFC87, "M", "لي"), + (0xFC88, "M", "ما"), + (0xFC89, "M", "مم"), + (0xFC8A, "M", "نر"), + (0xFC8B, "M", "نز"), + (0xFC8C, "M", "نم"), + (0xFC8D, "M", "نن"), + (0xFC8E, "M", "نى"), + (0xFC8F, "M", "ني"), + (0xFC90, "M", "ىٰ"), + (0xFC91, "M", "ير"), + (0xFC92, "M", "يز"), + (0xFC93, "M", "يم"), + (0xFC94, "M", "ين"), + (0xFC95, "M", "يى"), + (0xFC96, "M", "يي"), + (0xFC97, "M", "ئج"), + (0xFC98, "M", "ئح"), + (0xFC99, "M", "ئخ"), + (0xFC9A, "M", "ئم"), + (0xFC9B, "M", "ئه"), + (0xFC9C, "M", "بج"), + (0xFC9D, "M", "بح"), + (0xFC9E, "M", "بخ"), + (0xFC9F, "M", "بم"), + (0xFCA0, "M", "به"), + (0xFCA1, "M", "تج"), + (0xFCA2, "M", "تح"), + (0xFCA3, "M", "تخ"), + (0xFCA4, "M", "تم"), + (0xFCA5, "M", "ته"), + (0xFCA6, "M", "ثم"), + (0xFCA7, "M", "جح"), + (0xFCA8, "M", "جم"), + (0xFCA9, "M", "حج"), + (0xFCAA, "M", "حم"), + (0xFCAB, "M", "خج"), + (0xFCAC, "M", "خم"), + (0xFCAD, "M", "سج"), + (0xFCAE, "M", "سح"), + (0xFCAF, "M", "سخ"), + (0xFCB0, "M", "سم"), + (0xFCB1, "M", "صح"), + (0xFCB2, "M", "صخ"), + (0xFCB3, "M", "صم"), + (0xFCB4, "M", "ضج"), + (0xFCB5, "M", "ضح"), + (0xFCB6, "M", "ضخ"), + (0xFCB7, "M", "ضم"), + (0xFCB8, "M", "طح"), + (0xFCB9, "M", "ظم"), + (0xFCBA, "M", "عج"), + (0xFCBB, "M", "عم"), + (0xFCBC, "M", "غج"), + (0xFCBD, "M", "غم"), + (0xFCBE, "M", "فج"), + ] + + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBF, "M", "فح"), + (0xFCC0, "M", "فخ"), + (0xFCC1, "M", "فم"), + (0xFCC2, "M", "قح"), + (0xFCC3, "M", "قم"), + (0xFCC4, "M", "كج"), + (0xFCC5, "M", "كح"), + (0xFCC6, "M", "كخ"), + (0xFCC7, "M", "كل"), + (0xFCC8, "M", "كم"), + (0xFCC9, "M", "لج"), + (0xFCCA, "M", "لح"), + (0xFCCB, "M", "لخ"), + (0xFCCC, "M", "لم"), + (0xFCCD, "M", "له"), + (0xFCCE, "M", "مج"), + (0xFCCF, "M", "مح"), + (0xFCD0, "M", "مخ"), + (0xFCD1, "M", "مم"), + (0xFCD2, "M", "نج"), + (0xFCD3, "M", "نح"), + (0xFCD4, "M", "نخ"), + (0xFCD5, "M", "نم"), + (0xFCD6, "M", "نه"), + (0xFCD7, "M", "هج"), + (0xFCD8, "M", "هم"), + (0xFCD9, "M", "هٰ"), + (0xFCDA, "M", "يج"), + (0xFCDB, "M", "يح"), + (0xFCDC, "M", "يخ"), + (0xFCDD, "M", "يم"), + (0xFCDE, "M", "يه"), + (0xFCDF, "M", "ئم"), + (0xFCE0, "M", "ئه"), + (0xFCE1, "M", "بم"), + (0xFCE2, "M", "به"), + (0xFCE3, "M", "تم"), + (0xFCE4, "M", "ته"), + (0xFCE5, "M", "ثم"), + (0xFCE6, "M", "ثه"), + (0xFCE7, "M", "سم"), + (0xFCE8, "M", "سه"), + (0xFCE9, "M", "شم"), + (0xFCEA, "M", "شه"), + (0xFCEB, "M", "كل"), + (0xFCEC, "M", "كم"), + (0xFCED, "M", "لم"), + (0xFCEE, "M", "نم"), + (0xFCEF, "M", "نه"), + (0xFCF0, "M", "يم"), + (0xFCF1, "M", "يه"), + (0xFCF2, "M", "ـَّ"), + (0xFCF3, "M", "ـُّ"), + (0xFCF4, "M", "ـِّ"), + (0xFCF5, "M", "طى"), + (0xFCF6, "M", "طي"), + (0xFCF7, "M", "عى"), + (0xFCF8, "M", "عي"), + (0xFCF9, "M", "غى"), + (0xFCFA, "M", "غي"), + (0xFCFB, "M", "سى"), + (0xFCFC, "M", "سي"), + (0xFCFD, "M", "شى"), + (0xFCFE, "M", "شي"), + (0xFCFF, "M", "حى"), + (0xFD00, "M", "حي"), + (0xFD01, "M", "جى"), + (0xFD02, "M", "جي"), + (0xFD03, "M", "خى"), + (0xFD04, "M", "خي"), + (0xFD05, "M", "صى"), + (0xFD06, "M", "صي"), + (0xFD07, "M", "ضى"), + (0xFD08, "M", "ضي"), + (0xFD09, "M", "شج"), + (0xFD0A, "M", "شح"), + (0xFD0B, "M", "شخ"), + (0xFD0C, "M", "شم"), + (0xFD0D, "M", "شر"), + (0xFD0E, "M", "سر"), + (0xFD0F, "M", "صر"), + (0xFD10, "M", "ضر"), + (0xFD11, "M", "طى"), + (0xFD12, "M", "طي"), + (0xFD13, "M", "عى"), + (0xFD14, "M", "عي"), + (0xFD15, "M", "غى"), + (0xFD16, "M", "غي"), + (0xFD17, "M", "سى"), + (0xFD18, "M", "سي"), + (0xFD19, "M", "شى"), + (0xFD1A, "M", "شي"), + (0xFD1B, "M", "حى"), + (0xFD1C, "M", "حي"), + (0xFD1D, "M", "جى"), + (0xFD1E, "M", "جي"), + (0xFD1F, "M", "خى"), + (0xFD20, "M", "خي"), + (0xFD21, "M", "صى"), + (0xFD22, "M", "صي"), + ] + + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD23, "M", "ضى"), + (0xFD24, "M", "ضي"), + (0xFD25, "M", "شج"), + (0xFD26, "M", "شح"), + (0xFD27, "M", "شخ"), + (0xFD28, "M", "شم"), + (0xFD29, "M", "شر"), + (0xFD2A, "M", "سر"), + (0xFD2B, "M", "صر"), + (0xFD2C, "M", "ضر"), + (0xFD2D, "M", "شج"), + (0xFD2E, "M", "شح"), + (0xFD2F, "M", "شخ"), + (0xFD30, "M", "شم"), + (0xFD31, "M", "سه"), + (0xFD32, "M", "شه"), + (0xFD33, "M", "طم"), + (0xFD34, "M", "سج"), + (0xFD35, "M", "سح"), + (0xFD36, "M", "سخ"), + (0xFD37, "M", "شج"), + (0xFD38, "M", "شح"), + (0xFD39, "M", "شخ"), + (0xFD3A, "M", "طم"), + (0xFD3B, "M", "ظم"), + (0xFD3C, "M", "اً"), + (0xFD3E, "V"), + (0xFD50, "M", "تجم"), + (0xFD51, "M", "تحج"), + (0xFD53, "M", "تحم"), + (0xFD54, "M", "تخم"), + (0xFD55, "M", "تمج"), + (0xFD56, "M", "تمح"), + (0xFD57, "M", "تمخ"), + (0xFD58, "M", "جمح"), + (0xFD5A, "M", "حمي"), + (0xFD5B, "M", "حمى"), + (0xFD5C, "M", "سحج"), + (0xFD5D, "M", "سجح"), + (0xFD5E, "M", "سجى"), + (0xFD5F, "M", "سمح"), + (0xFD61, "M", "سمج"), + (0xFD62, "M", "سمم"), + (0xFD64, "M", "صحح"), + (0xFD66, "M", "صمم"), + (0xFD67, "M", "شحم"), + (0xFD69, "M", "شجي"), + (0xFD6A, "M", "شمخ"), + (0xFD6C, "M", "شمم"), + (0xFD6E, "M", "ضحى"), + (0xFD6F, "M", "ضخم"), + (0xFD71, "M", "طمح"), + (0xFD73, "M", "طمم"), + (0xFD74, "M", "طمي"), + (0xFD75, "M", "عجم"), + (0xFD76, "M", "عمم"), + (0xFD78, "M", "عمى"), + (0xFD79, "M", "غمم"), + (0xFD7A, "M", "غمي"), + (0xFD7B, "M", "غمى"), + (0xFD7C, "M", "فخم"), + (0xFD7E, "M", "قمح"), + (0xFD7F, "M", "قمم"), + (0xFD80, "M", "لحم"), + (0xFD81, "M", "لحي"), + (0xFD82, "M", "لحى"), + (0xFD83, "M", "لجج"), + (0xFD85, "M", "لخم"), + (0xFD87, "M", "لمح"), + (0xFD89, "M", "محج"), + (0xFD8A, "M", "محم"), + (0xFD8B, "M", "محي"), + (0xFD8C, "M", "مجح"), + (0xFD8D, "M", "مجم"), + (0xFD8E, "M", "مخج"), + (0xFD8F, "M", "مخم"), + (0xFD90, "X"), + (0xFD92, "M", "مجخ"), + (0xFD93, "M", "همج"), + (0xFD94, "M", "همم"), + (0xFD95, "M", "نحم"), + (0xFD96, "M", "نحى"), + (0xFD97, "M", "نجم"), + (0xFD99, "M", "نجى"), + (0xFD9A, "M", "نمي"), + (0xFD9B, "M", "نمى"), + (0xFD9C, "M", "يمم"), + (0xFD9E, "M", "بخي"), + (0xFD9F, "M", "تجي"), + (0xFDA0, "M", "تجى"), + (0xFDA1, "M", "تخي"), + (0xFDA2, "M", "تخى"), + (0xFDA3, "M", "تمي"), + (0xFDA4, "M", "تمى"), + (0xFDA5, "M", "جمي"), + (0xFDA6, "M", "جحى"), + (0xFDA7, "M", "جمى"), + (0xFDA8, "M", "سخى"), + (0xFDA9, "M", "صحي"), + (0xFDAA, "M", "شحي"), + ] + + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDAB, "M", "ضحي"), + (0xFDAC, "M", "لجي"), + (0xFDAD, "M", "لمي"), + (0xFDAE, "M", "يحي"), + (0xFDAF, "M", "يجي"), + (0xFDB0, "M", "يمي"), + (0xFDB1, "M", "ممي"), + (0xFDB2, "M", "قمي"), + (0xFDB3, "M", "نحي"), + (0xFDB4, "M", "قمح"), + (0xFDB5, "M", "لحم"), + (0xFDB6, "M", "عمي"), + (0xFDB7, "M", "كمي"), + (0xFDB8, "M", "نجح"), + (0xFDB9, "M", "مخي"), + (0xFDBA, "M", "لجم"), + (0xFDBB, "M", "كمم"), + (0xFDBC, "M", "لجم"), + (0xFDBD, "M", "نجح"), + (0xFDBE, "M", "جحي"), + (0xFDBF, "M", "حجي"), + (0xFDC0, "M", "مجي"), + (0xFDC1, "M", "فمي"), + (0xFDC2, "M", "بحي"), + (0xFDC3, "M", "كمم"), + (0xFDC4, "M", "عجم"), + (0xFDC5, "M", "صمم"), + (0xFDC6, "M", "سخي"), + (0xFDC7, "M", "نجي"), + (0xFDC8, "X"), + (0xFDCF, "V"), + (0xFDD0, "X"), + (0xFDF0, "M", "صلے"), + (0xFDF1, "M", "قلے"), + (0xFDF2, "M", "الله"), + (0xFDF3, "M", "اكبر"), + (0xFDF4, "M", "محمد"), + (0xFDF5, "M", "صلعم"), + (0xFDF6, "M", "رسول"), + (0xFDF7, "M", "عليه"), + (0xFDF8, "M", "وسلم"), + (0xFDF9, "M", "صلى"), + (0xFDFA, "3", "صلى الله عليه وسلم"), + (0xFDFB, "3", "جل جلاله"), + (0xFDFC, "M", "ریال"), + (0xFDFD, "V"), + (0xFE00, "I"), + (0xFE10, "3", ","), + (0xFE11, "M", "、"), + (0xFE12, "X"), + (0xFE13, "3", ":"), + (0xFE14, "3", ";"), + (0xFE15, "3", "!"), + (0xFE16, "3", "?"), + (0xFE17, "M", "〖"), + (0xFE18, "M", "〗"), + (0xFE19, "X"), + (0xFE20, "V"), + (0xFE30, "X"), + (0xFE31, "M", "—"), + (0xFE32, "M", "–"), + (0xFE33, "3", "_"), + (0xFE35, "3", "("), + (0xFE36, "3", ")"), + (0xFE37, "3", "{"), + (0xFE38, "3", "}"), + (0xFE39, "M", "〔"), + (0xFE3A, "M", "〕"), + (0xFE3B, "M", "【"), + (0xFE3C, "M", "】"), + (0xFE3D, "M", "《"), + (0xFE3E, "M", "》"), + (0xFE3F, "M", "〈"), + (0xFE40, "M", "〉"), + (0xFE41, "M", "「"), + (0xFE42, "M", "」"), + (0xFE43, "M", "『"), + (0xFE44, "M", "』"), + (0xFE45, "V"), + (0xFE47, "3", "["), + (0xFE48, "3", "]"), + (0xFE49, "3", " ̅"), + (0xFE4D, "3", "_"), + (0xFE50, "3", ","), + (0xFE51, "M", "、"), + (0xFE52, "X"), + (0xFE54, "3", ";"), + (0xFE55, "3", ":"), + (0xFE56, "3", "?"), + (0xFE57, "3", "!"), + (0xFE58, "M", "—"), + (0xFE59, "3", "("), + (0xFE5A, "3", ")"), + (0xFE5B, "3", "{"), + (0xFE5C, "3", "}"), + (0xFE5D, "M", "〔"), + (0xFE5E, "M", "〕"), + (0xFE5F, "3", "#"), + (0xFE60, "3", "&"), + (0xFE61, "3", "*"), + ] + + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE62, "3", "+"), + (0xFE63, "M", "-"), + (0xFE64, "3", "<"), + (0xFE65, "3", ">"), + (0xFE66, "3", "="), + (0xFE67, "X"), + (0xFE68, "3", "\\"), + (0xFE69, "3", "$"), + (0xFE6A, "3", "%"), + (0xFE6B, "3", "@"), + (0xFE6C, "X"), + (0xFE70, "3", " ً"), + (0xFE71, "M", "ـً"), + (0xFE72, "3", " ٌ"), + (0xFE73, "V"), + (0xFE74, "3", " ٍ"), + (0xFE75, "X"), + (0xFE76, "3", " َ"), + (0xFE77, "M", "ـَ"), + (0xFE78, "3", " ُ"), + (0xFE79, "M", "ـُ"), + (0xFE7A, "3", " ِ"), + (0xFE7B, "M", "ـِ"), + (0xFE7C, "3", " ّ"), + (0xFE7D, "M", "ـّ"), + (0xFE7E, "3", " ْ"), + (0xFE7F, "M", "ـْ"), + (0xFE80, "M", "ء"), + (0xFE81, "M", "آ"), + (0xFE83, "M", "أ"), + (0xFE85, "M", "ؤ"), + (0xFE87, "M", "إ"), + (0xFE89, "M", "ئ"), + (0xFE8D, "M", "ا"), + (0xFE8F, "M", "ب"), + (0xFE93, "M", "ة"), + (0xFE95, "M", "ت"), + (0xFE99, "M", "ث"), + (0xFE9D, "M", "ج"), + (0xFEA1, "M", "ح"), + (0xFEA5, "M", "خ"), + (0xFEA9, "M", "د"), + (0xFEAB, "M", "ذ"), + (0xFEAD, "M", "ر"), + (0xFEAF, "M", "ز"), + (0xFEB1, "M", "س"), + (0xFEB5, "M", "ش"), + (0xFEB9, "M", "ص"), + (0xFEBD, "M", "ض"), + (0xFEC1, "M", "ط"), + (0xFEC5, "M", "ظ"), + (0xFEC9, "M", "ع"), + (0xFECD, "M", "غ"), + (0xFED1, "M", "ف"), + (0xFED5, "M", "ق"), + (0xFED9, "M", "ك"), + (0xFEDD, "M", "ل"), + (0xFEE1, "M", "م"), + (0xFEE5, "M", "ن"), + (0xFEE9, "M", "ه"), + (0xFEED, "M", "و"), + (0xFEEF, "M", "ى"), + (0xFEF1, "M", "ي"), + (0xFEF5, "M", "لآ"), + (0xFEF7, "M", "لأ"), + (0xFEF9, "M", "لإ"), + (0xFEFB, "M", "لا"), + (0xFEFD, "X"), + (0xFEFF, "I"), + (0xFF00, "X"), + (0xFF01, "3", "!"), + (0xFF02, "3", '"'), + (0xFF03, "3", "#"), + (0xFF04, "3", "$"), + (0xFF05, "3", "%"), + (0xFF06, "3", "&"), + (0xFF07, "3", "'"), + (0xFF08, "3", "("), + (0xFF09, "3", ")"), + (0xFF0A, "3", "*"), + (0xFF0B, "3", "+"), + (0xFF0C, "3", ","), + (0xFF0D, "M", "-"), + (0xFF0E, "M", "."), + (0xFF0F, "3", "/"), + (0xFF10, "M", "0"), + (0xFF11, "M", "1"), + (0xFF12, "M", "2"), + (0xFF13, "M", "3"), + (0xFF14, "M", "4"), + (0xFF15, "M", "5"), + (0xFF16, "M", "6"), + (0xFF17, "M", "7"), + (0xFF18, "M", "8"), + (0xFF19, "M", "9"), + (0xFF1A, "3", ":"), + (0xFF1B, "3", ";"), + (0xFF1C, "3", "<"), + (0xFF1D, "3", "="), + (0xFF1E, "3", ">"), + ] + + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1F, "3", "?"), + (0xFF20, "3", "@"), + (0xFF21, "M", "a"), + (0xFF22, "M", "b"), + (0xFF23, "M", "c"), + (0xFF24, "M", "d"), + (0xFF25, "M", "e"), + (0xFF26, "M", "f"), + (0xFF27, "M", "g"), + (0xFF28, "M", "h"), + (0xFF29, "M", "i"), + (0xFF2A, "M", "j"), + (0xFF2B, "M", "k"), + (0xFF2C, "M", "l"), + (0xFF2D, "M", "m"), + (0xFF2E, "M", "n"), + (0xFF2F, "M", "o"), + (0xFF30, "M", "p"), + (0xFF31, "M", "q"), + (0xFF32, "M", "r"), + (0xFF33, "M", "s"), + (0xFF34, "M", "t"), + (0xFF35, "M", "u"), + (0xFF36, "M", "v"), + (0xFF37, "M", "w"), + (0xFF38, "M", "x"), + (0xFF39, "M", "y"), + (0xFF3A, "M", "z"), + (0xFF3B, "3", "["), + (0xFF3C, "3", "\\"), + (0xFF3D, "3", "]"), + (0xFF3E, "3", "^"), + (0xFF3F, "3", "_"), + (0xFF40, "3", "`"), + (0xFF41, "M", "a"), + (0xFF42, "M", "b"), + (0xFF43, "M", "c"), + (0xFF44, "M", "d"), + (0xFF45, "M", "e"), + (0xFF46, "M", "f"), + (0xFF47, "M", "g"), + (0xFF48, "M", "h"), + (0xFF49, "M", "i"), + (0xFF4A, "M", "j"), + (0xFF4B, "M", "k"), + (0xFF4C, "M", "l"), + (0xFF4D, "M", "m"), + (0xFF4E, "M", "n"), + (0xFF4F, "M", "o"), + (0xFF50, "M", "p"), + (0xFF51, "M", "q"), + (0xFF52, "M", "r"), + (0xFF53, "M", "s"), + (0xFF54, "M", "t"), + (0xFF55, "M", "u"), + (0xFF56, "M", "v"), + (0xFF57, "M", "w"), + (0xFF58, "M", "x"), + (0xFF59, "M", "y"), + (0xFF5A, "M", "z"), + (0xFF5B, "3", "{"), + (0xFF5C, "3", "|"), + (0xFF5D, "3", "}"), + (0xFF5E, "3", "~"), + (0xFF5F, "M", "⦅"), + (0xFF60, "M", "⦆"), + (0xFF61, "M", "."), + (0xFF62, "M", "「"), + (0xFF63, "M", "」"), + (0xFF64, "M", "、"), + (0xFF65, "M", "・"), + (0xFF66, "M", "ヲ"), + (0xFF67, "M", "ァ"), + (0xFF68, "M", "ィ"), + (0xFF69, "M", "ゥ"), + (0xFF6A, "M", "ェ"), + (0xFF6B, "M", "ォ"), + (0xFF6C, "M", "ャ"), + (0xFF6D, "M", "ュ"), + (0xFF6E, "M", "ョ"), + (0xFF6F, "M", "ッ"), + (0xFF70, "M", "ー"), + (0xFF71, "M", "ア"), + (0xFF72, "M", "イ"), + (0xFF73, "M", "ウ"), + (0xFF74, "M", "エ"), + (0xFF75, "M", "オ"), + (0xFF76, "M", "カ"), + (0xFF77, "M", "キ"), + (0xFF78, "M", "ク"), + (0xFF79, "M", "ケ"), + (0xFF7A, "M", "コ"), + (0xFF7B, "M", "サ"), + (0xFF7C, "M", "シ"), + (0xFF7D, "M", "ス"), + (0xFF7E, "M", "セ"), + (0xFF7F, "M", "ソ"), + (0xFF80, "M", "タ"), + (0xFF81, "M", "チ"), + (0xFF82, "M", "ツ"), + ] + + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF83, "M", "テ"), + (0xFF84, "M", "ト"), + (0xFF85, "M", "ナ"), + (0xFF86, "M", "ニ"), + (0xFF87, "M", "ヌ"), + (0xFF88, "M", "ネ"), + (0xFF89, "M", "ノ"), + (0xFF8A, "M", "ハ"), + (0xFF8B, "M", "ヒ"), + (0xFF8C, "M", "フ"), + (0xFF8D, "M", "ヘ"), + (0xFF8E, "M", "ホ"), + (0xFF8F, "M", "マ"), + (0xFF90, "M", "ミ"), + (0xFF91, "M", "ム"), + (0xFF92, "M", "メ"), + (0xFF93, "M", "モ"), + (0xFF94, "M", "ヤ"), + (0xFF95, "M", "ユ"), + (0xFF96, "M", "ヨ"), + (0xFF97, "M", "ラ"), + (0xFF98, "M", "リ"), + (0xFF99, "M", "ル"), + (0xFF9A, "M", "レ"), + (0xFF9B, "M", "ロ"), + (0xFF9C, "M", "ワ"), + (0xFF9D, "M", "ン"), + (0xFF9E, "M", "゙"), + (0xFF9F, "M", "゚"), + (0xFFA0, "X"), + (0xFFA1, "M", "ᄀ"), + (0xFFA2, "M", "ᄁ"), + (0xFFA3, "M", "ᆪ"), + (0xFFA4, "M", "ᄂ"), + (0xFFA5, "M", "ᆬ"), + (0xFFA6, "M", "ᆭ"), + (0xFFA7, "M", "ᄃ"), + (0xFFA8, "M", "ᄄ"), + (0xFFA9, "M", "ᄅ"), + (0xFFAA, "M", "ᆰ"), + (0xFFAB, "M", "ᆱ"), + (0xFFAC, "M", "ᆲ"), + (0xFFAD, "M", "ᆳ"), + (0xFFAE, "M", "ᆴ"), + (0xFFAF, "M", "ᆵ"), + (0xFFB0, "M", "ᄚ"), + (0xFFB1, "M", "ᄆ"), + (0xFFB2, "M", "ᄇ"), + (0xFFB3, "M", "ᄈ"), + (0xFFB4, "M", "ᄡ"), + (0xFFB5, "M", "ᄉ"), + (0xFFB6, "M", "ᄊ"), + (0xFFB7, "M", "ᄋ"), + (0xFFB8, "M", "ᄌ"), + (0xFFB9, "M", "ᄍ"), + (0xFFBA, "M", "ᄎ"), + (0xFFBB, "M", "ᄏ"), + (0xFFBC, "M", "ᄐ"), + (0xFFBD, "M", "ᄑ"), + (0xFFBE, "M", "ᄒ"), + (0xFFBF, "X"), + (0xFFC2, "M", "ᅡ"), + (0xFFC3, "M", "ᅢ"), + (0xFFC4, "M", "ᅣ"), + (0xFFC5, "M", "ᅤ"), + (0xFFC6, "M", "ᅥ"), + (0xFFC7, "M", "ᅦ"), + (0xFFC8, "X"), + (0xFFCA, "M", "ᅧ"), + (0xFFCB, "M", "ᅨ"), + (0xFFCC, "M", "ᅩ"), + (0xFFCD, "M", "ᅪ"), + (0xFFCE, "M", "ᅫ"), + (0xFFCF, "M", "ᅬ"), + (0xFFD0, "X"), + (0xFFD2, "M", "ᅭ"), + (0xFFD3, "M", "ᅮ"), + (0xFFD4, "M", "ᅯ"), + (0xFFD5, "M", "ᅰ"), + (0xFFD6, "M", "ᅱ"), + (0xFFD7, "M", "ᅲ"), + (0xFFD8, "X"), + (0xFFDA, "M", "ᅳ"), + (0xFFDB, "M", "ᅴ"), + (0xFFDC, "M", "ᅵ"), + (0xFFDD, "X"), + (0xFFE0, "M", "¢"), + (0xFFE1, "M", "£"), + (0xFFE2, "M", "¬"), + (0xFFE3, "3", " ̄"), + (0xFFE4, "M", "¦"), + (0xFFE5, "M", "¥"), + (0xFFE6, "M", "₩"), + (0xFFE7, "X"), + (0xFFE8, "M", "│"), + (0xFFE9, "M", "←"), + (0xFFEA, "M", "↑"), + (0xFFEB, "M", "→"), + (0xFFEC, "M", "↓"), + (0xFFED, "M", "■"), + ] + + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEE, "M", "○"), + (0xFFEF, "X"), + (0x10000, "V"), + (0x1000C, "X"), + (0x1000D, "V"), + (0x10027, "X"), + (0x10028, "V"), + (0x1003B, "X"), + (0x1003C, "V"), + (0x1003E, "X"), + (0x1003F, "V"), + (0x1004E, "X"), + (0x10050, "V"), + (0x1005E, "X"), + (0x10080, "V"), + (0x100FB, "X"), + (0x10100, "V"), + (0x10103, "X"), + (0x10107, "V"), + (0x10134, "X"), + (0x10137, "V"), + (0x1018F, "X"), + (0x10190, "V"), + (0x1019D, "X"), + (0x101A0, "V"), + (0x101A1, "X"), + (0x101D0, "V"), + (0x101FE, "X"), + (0x10280, "V"), + (0x1029D, "X"), + (0x102A0, "V"), + (0x102D1, "X"), + (0x102E0, "V"), + (0x102FC, "X"), + (0x10300, "V"), + (0x10324, "X"), + (0x1032D, "V"), + (0x1034B, "X"), + (0x10350, "V"), + (0x1037B, "X"), + (0x10380, "V"), + (0x1039E, "X"), + (0x1039F, "V"), + (0x103C4, "X"), + (0x103C8, "V"), + (0x103D6, "X"), + (0x10400, "M", "𐐨"), + (0x10401, "M", "𐐩"), + (0x10402, "M", "𐐪"), + (0x10403, "M", "𐐫"), + (0x10404, "M", "𐐬"), + (0x10405, "M", "𐐭"), + (0x10406, "M", "𐐮"), + (0x10407, "M", "𐐯"), + (0x10408, "M", "𐐰"), + (0x10409, "M", "𐐱"), + (0x1040A, "M", "𐐲"), + (0x1040B, "M", "𐐳"), + (0x1040C, "M", "𐐴"), + (0x1040D, "M", "𐐵"), + (0x1040E, "M", "𐐶"), + (0x1040F, "M", "𐐷"), + (0x10410, "M", "𐐸"), + (0x10411, "M", "𐐹"), + (0x10412, "M", "𐐺"), + (0x10413, "M", "𐐻"), + (0x10414, "M", "𐐼"), + (0x10415, "M", "𐐽"), + (0x10416, "M", "𐐾"), + (0x10417, "M", "𐐿"), + (0x10418, "M", "𐑀"), + (0x10419, "M", "𐑁"), + (0x1041A, "M", "𐑂"), + (0x1041B, "M", "𐑃"), + (0x1041C, "M", "𐑄"), + (0x1041D, "M", "𐑅"), + (0x1041E, "M", "𐑆"), + (0x1041F, "M", "𐑇"), + (0x10420, "M", "𐑈"), + (0x10421, "M", "𐑉"), + (0x10422, "M", "𐑊"), + (0x10423, "M", "𐑋"), + (0x10424, "M", "𐑌"), + (0x10425, "M", "𐑍"), + (0x10426, "M", "𐑎"), + (0x10427, "M", "𐑏"), + (0x10428, "V"), + (0x1049E, "X"), + (0x104A0, "V"), + (0x104AA, "X"), + (0x104B0, "M", "𐓘"), + (0x104B1, "M", "𐓙"), + (0x104B2, "M", "𐓚"), + (0x104B3, "M", "𐓛"), + (0x104B4, "M", "𐓜"), + (0x104B5, "M", "𐓝"), + (0x104B6, "M", "𐓞"), + (0x104B7, "M", "𐓟"), + (0x104B8, "M", "𐓠"), + (0x104B9, "M", "𐓡"), + ] + + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104BA, "M", "𐓢"), + (0x104BB, "M", "𐓣"), + (0x104BC, "M", "𐓤"), + (0x104BD, "M", "𐓥"), + (0x104BE, "M", "𐓦"), + (0x104BF, "M", "𐓧"), + (0x104C0, "M", "𐓨"), + (0x104C1, "M", "𐓩"), + (0x104C2, "M", "𐓪"), + (0x104C3, "M", "𐓫"), + (0x104C4, "M", "𐓬"), + (0x104C5, "M", "𐓭"), + (0x104C6, "M", "𐓮"), + (0x104C7, "M", "𐓯"), + (0x104C8, "M", "𐓰"), + (0x104C9, "M", "𐓱"), + (0x104CA, "M", "𐓲"), + (0x104CB, "M", "𐓳"), + (0x104CC, "M", "𐓴"), + (0x104CD, "M", "𐓵"), + (0x104CE, "M", "𐓶"), + (0x104CF, "M", "𐓷"), + (0x104D0, "M", "𐓸"), + (0x104D1, "M", "𐓹"), + (0x104D2, "M", "𐓺"), + (0x104D3, "M", "𐓻"), + (0x104D4, "X"), + (0x104D8, "V"), + (0x104FC, "X"), + (0x10500, "V"), + (0x10528, "X"), + (0x10530, "V"), + (0x10564, "X"), + (0x1056F, "V"), + (0x10570, "M", "𐖗"), + (0x10571, "M", "𐖘"), + (0x10572, "M", "𐖙"), + (0x10573, "M", "𐖚"), + (0x10574, "M", "𐖛"), + (0x10575, "M", "𐖜"), + (0x10576, "M", "𐖝"), + (0x10577, "M", "𐖞"), + (0x10578, "M", "𐖟"), + (0x10579, "M", "𐖠"), + (0x1057A, "M", "𐖡"), + (0x1057B, "X"), + (0x1057C, "M", "𐖣"), + (0x1057D, "M", "𐖤"), + (0x1057E, "M", "𐖥"), + (0x1057F, "M", "𐖦"), + (0x10580, "M", "𐖧"), + (0x10581, "M", "𐖨"), + (0x10582, "M", "𐖩"), + (0x10583, "M", "𐖪"), + (0x10584, "M", "𐖫"), + (0x10585, "M", "𐖬"), + (0x10586, "M", "𐖭"), + (0x10587, "M", "𐖮"), + (0x10588, "M", "𐖯"), + (0x10589, "M", "𐖰"), + (0x1058A, "M", "𐖱"), + (0x1058B, "X"), + (0x1058C, "M", "𐖳"), + (0x1058D, "M", "𐖴"), + (0x1058E, "M", "𐖵"), + (0x1058F, "M", "𐖶"), + (0x10590, "M", "𐖷"), + (0x10591, "M", "𐖸"), + (0x10592, "M", "𐖹"), + (0x10593, "X"), + (0x10594, "M", "𐖻"), + (0x10595, "M", "𐖼"), + (0x10596, "X"), + (0x10597, "V"), + (0x105A2, "X"), + (0x105A3, "V"), + (0x105B2, "X"), + (0x105B3, "V"), + (0x105BA, "X"), + (0x105BB, "V"), + (0x105BD, "X"), + (0x10600, "V"), + (0x10737, "X"), + (0x10740, "V"), + (0x10756, "X"), + (0x10760, "V"), + (0x10768, "X"), + (0x10780, "V"), + (0x10781, "M", "ː"), + (0x10782, "M", "ˑ"), + (0x10783, "M", "æ"), + (0x10784, "M", "ʙ"), + (0x10785, "M", "ɓ"), + (0x10786, "X"), + (0x10787, "M", "ʣ"), + (0x10788, "M", "ꭦ"), + (0x10789, "M", "ʥ"), + (0x1078A, "M", "ʤ"), + (0x1078B, "M", "ɖ"), + (0x1078C, "M", "ɗ"), + ] + + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1078D, "M", "ᶑ"), + (0x1078E, "M", "ɘ"), + (0x1078F, "M", "ɞ"), + (0x10790, "M", "ʩ"), + (0x10791, "M", "ɤ"), + (0x10792, "M", "ɢ"), + (0x10793, "M", "ɠ"), + (0x10794, "M", "ʛ"), + (0x10795, "M", "ħ"), + (0x10796, "M", "ʜ"), + (0x10797, "M", "ɧ"), + (0x10798, "M", "ʄ"), + (0x10799, "M", "ʪ"), + (0x1079A, "M", "ʫ"), + (0x1079B, "M", "ɬ"), + (0x1079C, "M", "𝼄"), + (0x1079D, "M", "ꞎ"), + (0x1079E, "M", "ɮ"), + (0x1079F, "M", "𝼅"), + (0x107A0, "M", "ʎ"), + (0x107A1, "M", "𝼆"), + (0x107A2, "M", "ø"), + (0x107A3, "M", "ɶ"), + (0x107A4, "M", "ɷ"), + (0x107A5, "M", "q"), + (0x107A6, "M", "ɺ"), + (0x107A7, "M", "𝼈"), + (0x107A8, "M", "ɽ"), + (0x107A9, "M", "ɾ"), + (0x107AA, "M", "ʀ"), + (0x107AB, "M", "ʨ"), + (0x107AC, "M", "ʦ"), + (0x107AD, "M", "ꭧ"), + (0x107AE, "M", "ʧ"), + (0x107AF, "M", "ʈ"), + (0x107B0, "M", "ⱱ"), + (0x107B1, "X"), + (0x107B2, "M", "ʏ"), + (0x107B3, "M", "ʡ"), + (0x107B4, "M", "ʢ"), + (0x107B5, "M", "ʘ"), + (0x107B6, "M", "ǀ"), + (0x107B7, "M", "ǁ"), + (0x107B8, "M", "ǂ"), + (0x107B9, "M", "𝼊"), + (0x107BA, "M", "𝼞"), + (0x107BB, "X"), + (0x10800, "V"), + (0x10806, "X"), + (0x10808, "V"), + (0x10809, "X"), + (0x1080A, "V"), + (0x10836, "X"), + (0x10837, "V"), + (0x10839, "X"), + (0x1083C, "V"), + (0x1083D, "X"), + (0x1083F, "V"), + (0x10856, "X"), + (0x10857, "V"), + (0x1089F, "X"), + (0x108A7, "V"), + (0x108B0, "X"), + (0x108E0, "V"), + (0x108F3, "X"), + (0x108F4, "V"), + (0x108F6, "X"), + (0x108FB, "V"), + (0x1091C, "X"), + (0x1091F, "V"), + (0x1093A, "X"), + (0x1093F, "V"), + (0x10940, "X"), + (0x10980, "V"), + (0x109B8, "X"), + (0x109BC, "V"), + (0x109D0, "X"), + (0x109D2, "V"), + (0x10A04, "X"), + (0x10A05, "V"), + (0x10A07, "X"), + (0x10A0C, "V"), + (0x10A14, "X"), + (0x10A15, "V"), + (0x10A18, "X"), + (0x10A19, "V"), + (0x10A36, "X"), + (0x10A38, "V"), + (0x10A3B, "X"), + (0x10A3F, "V"), + (0x10A49, "X"), + (0x10A50, "V"), + (0x10A59, "X"), + (0x10A60, "V"), + (0x10AA0, "X"), + (0x10AC0, "V"), + (0x10AE7, "X"), + (0x10AEB, "V"), + (0x10AF7, "X"), + (0x10B00, "V"), + ] + + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10B36, "X"), + (0x10B39, "V"), + (0x10B56, "X"), + (0x10B58, "V"), + (0x10B73, "X"), + (0x10B78, "V"), + (0x10B92, "X"), + (0x10B99, "V"), + (0x10B9D, "X"), + (0x10BA9, "V"), + (0x10BB0, "X"), + (0x10C00, "V"), + (0x10C49, "X"), + (0x10C80, "M", "𐳀"), + (0x10C81, "M", "𐳁"), + (0x10C82, "M", "𐳂"), + (0x10C83, "M", "𐳃"), + (0x10C84, "M", "𐳄"), + (0x10C85, "M", "𐳅"), + (0x10C86, "M", "𐳆"), + (0x10C87, "M", "𐳇"), + (0x10C88, "M", "𐳈"), + (0x10C89, "M", "𐳉"), + (0x10C8A, "M", "𐳊"), + (0x10C8B, "M", "𐳋"), + (0x10C8C, "M", "𐳌"), + (0x10C8D, "M", "𐳍"), + (0x10C8E, "M", "𐳎"), + (0x10C8F, "M", "𐳏"), + (0x10C90, "M", "𐳐"), + (0x10C91, "M", "𐳑"), + (0x10C92, "M", "𐳒"), + (0x10C93, "M", "𐳓"), + (0x10C94, "M", "𐳔"), + (0x10C95, "M", "𐳕"), + (0x10C96, "M", "𐳖"), + (0x10C97, "M", "𐳗"), + (0x10C98, "M", "𐳘"), + (0x10C99, "M", "𐳙"), + (0x10C9A, "M", "𐳚"), + (0x10C9B, "M", "𐳛"), + (0x10C9C, "M", "𐳜"), + (0x10C9D, "M", "𐳝"), + (0x10C9E, "M", "𐳞"), + (0x10C9F, "M", "𐳟"), + (0x10CA0, "M", "𐳠"), + (0x10CA1, "M", "𐳡"), + (0x10CA2, "M", "𐳢"), + (0x10CA3, "M", "𐳣"), + (0x10CA4, "M", "𐳤"), + (0x10CA5, "M", "𐳥"), + (0x10CA6, "M", "𐳦"), + (0x10CA7, "M", "𐳧"), + (0x10CA8, "M", "𐳨"), + (0x10CA9, "M", "𐳩"), + (0x10CAA, "M", "𐳪"), + (0x10CAB, "M", "𐳫"), + (0x10CAC, "M", "𐳬"), + (0x10CAD, "M", "𐳭"), + (0x10CAE, "M", "𐳮"), + (0x10CAF, "M", "𐳯"), + (0x10CB0, "M", "𐳰"), + (0x10CB1, "M", "𐳱"), + (0x10CB2, "M", "𐳲"), + (0x10CB3, "X"), + (0x10CC0, "V"), + (0x10CF3, "X"), + (0x10CFA, "V"), + (0x10D28, "X"), + (0x10D30, "V"), + (0x10D3A, "X"), + (0x10E60, "V"), + (0x10E7F, "X"), + (0x10E80, "V"), + (0x10EAA, "X"), + (0x10EAB, "V"), + (0x10EAE, "X"), + (0x10EB0, "V"), + (0x10EB2, "X"), + (0x10EFD, "V"), + (0x10F28, "X"), + (0x10F30, "V"), + (0x10F5A, "X"), + (0x10F70, "V"), + (0x10F8A, "X"), + (0x10FB0, "V"), + (0x10FCC, "X"), + (0x10FE0, "V"), + (0x10FF7, "X"), + (0x11000, "V"), + (0x1104E, "X"), + (0x11052, "V"), + (0x11076, "X"), + (0x1107F, "V"), + (0x110BD, "X"), + (0x110BE, "V"), + (0x110C3, "X"), + (0x110D0, "V"), + (0x110E9, "X"), + (0x110F0, "V"), + ] + + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110FA, "X"), + (0x11100, "V"), + (0x11135, "X"), + (0x11136, "V"), + (0x11148, "X"), + (0x11150, "V"), + (0x11177, "X"), + (0x11180, "V"), + (0x111E0, "X"), + (0x111E1, "V"), + (0x111F5, "X"), + (0x11200, "V"), + (0x11212, "X"), + (0x11213, "V"), + (0x11242, "X"), + (0x11280, "V"), + (0x11287, "X"), + (0x11288, "V"), + (0x11289, "X"), + (0x1128A, "V"), + (0x1128E, "X"), + (0x1128F, "V"), + (0x1129E, "X"), + (0x1129F, "V"), + (0x112AA, "X"), + (0x112B0, "V"), + (0x112EB, "X"), + (0x112F0, "V"), + (0x112FA, "X"), + (0x11300, "V"), + (0x11304, "X"), + (0x11305, "V"), + (0x1130D, "X"), + (0x1130F, "V"), + (0x11311, "X"), + (0x11313, "V"), + (0x11329, "X"), + (0x1132A, "V"), + (0x11331, "X"), + (0x11332, "V"), + (0x11334, "X"), + (0x11335, "V"), + (0x1133A, "X"), + (0x1133B, "V"), + (0x11345, "X"), + (0x11347, "V"), + (0x11349, "X"), + (0x1134B, "V"), + (0x1134E, "X"), + (0x11350, "V"), + (0x11351, "X"), + (0x11357, "V"), + (0x11358, "X"), + (0x1135D, "V"), + (0x11364, "X"), + (0x11366, "V"), + (0x1136D, "X"), + (0x11370, "V"), + (0x11375, "X"), + (0x11400, "V"), + (0x1145C, "X"), + (0x1145D, "V"), + (0x11462, "X"), + (0x11480, "V"), + (0x114C8, "X"), + (0x114D0, "V"), + (0x114DA, "X"), + (0x11580, "V"), + (0x115B6, "X"), + (0x115B8, "V"), + (0x115DE, "X"), + (0x11600, "V"), + (0x11645, "X"), + (0x11650, "V"), + (0x1165A, "X"), + (0x11660, "V"), + (0x1166D, "X"), + (0x11680, "V"), + (0x116BA, "X"), + (0x116C0, "V"), + (0x116CA, "X"), + (0x11700, "V"), + (0x1171B, "X"), + (0x1171D, "V"), + (0x1172C, "X"), + (0x11730, "V"), + (0x11747, "X"), + (0x11800, "V"), + (0x1183C, "X"), + (0x118A0, "M", "𑣀"), + (0x118A1, "M", "𑣁"), + (0x118A2, "M", "𑣂"), + (0x118A3, "M", "𑣃"), + (0x118A4, "M", "𑣄"), + (0x118A5, "M", "𑣅"), + (0x118A6, "M", "𑣆"), + (0x118A7, "M", "𑣇"), + (0x118A8, "M", "𑣈"), + (0x118A9, "M", "𑣉"), + (0x118AA, "M", "𑣊"), + ] + + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118AB, "M", "𑣋"), + (0x118AC, "M", "𑣌"), + (0x118AD, "M", "𑣍"), + (0x118AE, "M", "𑣎"), + (0x118AF, "M", "𑣏"), + (0x118B0, "M", "𑣐"), + (0x118B1, "M", "𑣑"), + (0x118B2, "M", "𑣒"), + (0x118B3, "M", "𑣓"), + (0x118B4, "M", "𑣔"), + (0x118B5, "M", "𑣕"), + (0x118B6, "M", "𑣖"), + (0x118B7, "M", "𑣗"), + (0x118B8, "M", "𑣘"), + (0x118B9, "M", "𑣙"), + (0x118BA, "M", "𑣚"), + (0x118BB, "M", "𑣛"), + (0x118BC, "M", "𑣜"), + (0x118BD, "M", "𑣝"), + (0x118BE, "M", "𑣞"), + (0x118BF, "M", "𑣟"), + (0x118C0, "V"), + (0x118F3, "X"), + (0x118FF, "V"), + (0x11907, "X"), + (0x11909, "V"), + (0x1190A, "X"), + (0x1190C, "V"), + (0x11914, "X"), + (0x11915, "V"), + (0x11917, "X"), + (0x11918, "V"), + (0x11936, "X"), + (0x11937, "V"), + (0x11939, "X"), + (0x1193B, "V"), + (0x11947, "X"), + (0x11950, "V"), + (0x1195A, "X"), + (0x119A0, "V"), + (0x119A8, "X"), + (0x119AA, "V"), + (0x119D8, "X"), + (0x119DA, "V"), + (0x119E5, "X"), + (0x11A00, "V"), + (0x11A48, "X"), + (0x11A50, "V"), + (0x11AA3, "X"), + (0x11AB0, "V"), + (0x11AF9, "X"), + (0x11B00, "V"), + (0x11B0A, "X"), + (0x11C00, "V"), + (0x11C09, "X"), + (0x11C0A, "V"), + (0x11C37, "X"), + (0x11C38, "V"), + (0x11C46, "X"), + (0x11C50, "V"), + (0x11C6D, "X"), + (0x11C70, "V"), + (0x11C90, "X"), + (0x11C92, "V"), + (0x11CA8, "X"), + (0x11CA9, "V"), + (0x11CB7, "X"), + (0x11D00, "V"), + (0x11D07, "X"), + (0x11D08, "V"), + (0x11D0A, "X"), + (0x11D0B, "V"), + (0x11D37, "X"), + (0x11D3A, "V"), + (0x11D3B, "X"), + (0x11D3C, "V"), + (0x11D3E, "X"), + (0x11D3F, "V"), + (0x11D48, "X"), + (0x11D50, "V"), + (0x11D5A, "X"), + (0x11D60, "V"), + (0x11D66, "X"), + (0x11D67, "V"), + (0x11D69, "X"), + (0x11D6A, "V"), + (0x11D8F, "X"), + (0x11D90, "V"), + (0x11D92, "X"), + (0x11D93, "V"), + (0x11D99, "X"), + (0x11DA0, "V"), + (0x11DAA, "X"), + (0x11EE0, "V"), + (0x11EF9, "X"), + (0x11F00, "V"), + (0x11F11, "X"), + (0x11F12, "V"), + (0x11F3B, "X"), + (0x11F3E, "V"), + ] + + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F5A, "X"), + (0x11FB0, "V"), + (0x11FB1, "X"), + (0x11FC0, "V"), + (0x11FF2, "X"), + (0x11FFF, "V"), + (0x1239A, "X"), + (0x12400, "V"), + (0x1246F, "X"), + (0x12470, "V"), + (0x12475, "X"), + (0x12480, "V"), + (0x12544, "X"), + (0x12F90, "V"), + (0x12FF3, "X"), + (0x13000, "V"), + (0x13430, "X"), + (0x13440, "V"), + (0x13456, "X"), + (0x14400, "V"), + (0x14647, "X"), + (0x16800, "V"), + (0x16A39, "X"), + (0x16A40, "V"), + (0x16A5F, "X"), + (0x16A60, "V"), + (0x16A6A, "X"), + (0x16A6E, "V"), + (0x16ABF, "X"), + (0x16AC0, "V"), + (0x16ACA, "X"), + (0x16AD0, "V"), + (0x16AEE, "X"), + (0x16AF0, "V"), + (0x16AF6, "X"), + (0x16B00, "V"), + (0x16B46, "X"), + (0x16B50, "V"), + (0x16B5A, "X"), + (0x16B5B, "V"), + (0x16B62, "X"), + (0x16B63, "V"), + (0x16B78, "X"), + (0x16B7D, "V"), + (0x16B90, "X"), + (0x16E40, "M", "𖹠"), + (0x16E41, "M", "𖹡"), + (0x16E42, "M", "𖹢"), + (0x16E43, "M", "𖹣"), + (0x16E44, "M", "𖹤"), + (0x16E45, "M", "𖹥"), + (0x16E46, "M", "𖹦"), + (0x16E47, "M", "𖹧"), + (0x16E48, "M", "𖹨"), + (0x16E49, "M", "𖹩"), + (0x16E4A, "M", "𖹪"), + (0x16E4B, "M", "𖹫"), + (0x16E4C, "M", "𖹬"), + (0x16E4D, "M", "𖹭"), + (0x16E4E, "M", "𖹮"), + (0x16E4F, "M", "𖹯"), + (0x16E50, "M", "𖹰"), + (0x16E51, "M", "𖹱"), + (0x16E52, "M", "𖹲"), + (0x16E53, "M", "𖹳"), + (0x16E54, "M", "𖹴"), + (0x16E55, "M", "𖹵"), + (0x16E56, "M", "𖹶"), + (0x16E57, "M", "𖹷"), + (0x16E58, "M", "𖹸"), + (0x16E59, "M", "𖹹"), + (0x16E5A, "M", "𖹺"), + (0x16E5B, "M", "𖹻"), + (0x16E5C, "M", "𖹼"), + (0x16E5D, "M", "𖹽"), + (0x16E5E, "M", "𖹾"), + (0x16E5F, "M", "𖹿"), + (0x16E60, "V"), + (0x16E9B, "X"), + (0x16F00, "V"), + (0x16F4B, "X"), + (0x16F4F, "V"), + (0x16F88, "X"), + (0x16F8F, "V"), + (0x16FA0, "X"), + (0x16FE0, "V"), + (0x16FE5, "X"), + (0x16FF0, "V"), + (0x16FF2, "X"), + (0x17000, "V"), + (0x187F8, "X"), + (0x18800, "V"), + (0x18CD6, "X"), + (0x18D00, "V"), + (0x18D09, "X"), + (0x1AFF0, "V"), + (0x1AFF4, "X"), + (0x1AFF5, "V"), + (0x1AFFC, "X"), + (0x1AFFD, "V"), + ] + + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFFF, "X"), + (0x1B000, "V"), + (0x1B123, "X"), + (0x1B132, "V"), + (0x1B133, "X"), + (0x1B150, "V"), + (0x1B153, "X"), + (0x1B155, "V"), + (0x1B156, "X"), + (0x1B164, "V"), + (0x1B168, "X"), + (0x1B170, "V"), + (0x1B2FC, "X"), + (0x1BC00, "V"), + (0x1BC6B, "X"), + (0x1BC70, "V"), + (0x1BC7D, "X"), + (0x1BC80, "V"), + (0x1BC89, "X"), + (0x1BC90, "V"), + (0x1BC9A, "X"), + (0x1BC9C, "V"), + (0x1BCA0, "I"), + (0x1BCA4, "X"), + (0x1CF00, "V"), + (0x1CF2E, "X"), + (0x1CF30, "V"), + (0x1CF47, "X"), + (0x1CF50, "V"), + (0x1CFC4, "X"), + (0x1D000, "V"), + (0x1D0F6, "X"), + (0x1D100, "V"), + (0x1D127, "X"), + (0x1D129, "V"), + (0x1D15E, "M", "𝅗𝅥"), + (0x1D15F, "M", "𝅘𝅥"), + (0x1D160, "M", "𝅘𝅥𝅮"), + (0x1D161, "M", "𝅘𝅥𝅯"), + (0x1D162, "M", "𝅘𝅥𝅰"), + (0x1D163, "M", "𝅘𝅥𝅱"), + (0x1D164, "M", "𝅘𝅥𝅲"), + (0x1D165, "V"), + (0x1D173, "X"), + (0x1D17B, "V"), + (0x1D1BB, "M", "𝆹𝅥"), + (0x1D1BC, "M", "𝆺𝅥"), + (0x1D1BD, "M", "𝆹𝅥𝅮"), + (0x1D1BE, "M", "𝆺𝅥𝅮"), + (0x1D1BF, "M", "𝆹𝅥𝅯"), + (0x1D1C0, "M", "𝆺𝅥𝅯"), + (0x1D1C1, "V"), + (0x1D1EB, "X"), + (0x1D200, "V"), + (0x1D246, "X"), + (0x1D2C0, "V"), + (0x1D2D4, "X"), + (0x1D2E0, "V"), + (0x1D2F4, "X"), + (0x1D300, "V"), + (0x1D357, "X"), + (0x1D360, "V"), + (0x1D379, "X"), + (0x1D400, "M", "a"), + (0x1D401, "M", "b"), + (0x1D402, "M", "c"), + (0x1D403, "M", "d"), + (0x1D404, "M", "e"), + (0x1D405, "M", "f"), + (0x1D406, "M", "g"), + (0x1D407, "M", "h"), + (0x1D408, "M", "i"), + (0x1D409, "M", "j"), + (0x1D40A, "M", "k"), + (0x1D40B, "M", "l"), + (0x1D40C, "M", "m"), + (0x1D40D, "M", "n"), + (0x1D40E, "M", "o"), + (0x1D40F, "M", "p"), + (0x1D410, "M", "q"), + (0x1D411, "M", "r"), + (0x1D412, "M", "s"), + (0x1D413, "M", "t"), + (0x1D414, "M", "u"), + (0x1D415, "M", "v"), + (0x1D416, "M", "w"), + (0x1D417, "M", "x"), + (0x1D418, "M", "y"), + (0x1D419, "M", "z"), + (0x1D41A, "M", "a"), + (0x1D41B, "M", "b"), + (0x1D41C, "M", "c"), + (0x1D41D, "M", "d"), + (0x1D41E, "M", "e"), + (0x1D41F, "M", "f"), + (0x1D420, "M", "g"), + (0x1D421, "M", "h"), + (0x1D422, "M", "i"), + (0x1D423, "M", "j"), + (0x1D424, "M", "k"), + ] + + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D425, "M", "l"), + (0x1D426, "M", "m"), + (0x1D427, "M", "n"), + (0x1D428, "M", "o"), + (0x1D429, "M", "p"), + (0x1D42A, "M", "q"), + (0x1D42B, "M", "r"), + (0x1D42C, "M", "s"), + (0x1D42D, "M", "t"), + (0x1D42E, "M", "u"), + (0x1D42F, "M", "v"), + (0x1D430, "M", "w"), + (0x1D431, "M", "x"), + (0x1D432, "M", "y"), + (0x1D433, "M", "z"), + (0x1D434, "M", "a"), + (0x1D435, "M", "b"), + (0x1D436, "M", "c"), + (0x1D437, "M", "d"), + (0x1D438, "M", "e"), + (0x1D439, "M", "f"), + (0x1D43A, "M", "g"), + (0x1D43B, "M", "h"), + (0x1D43C, "M", "i"), + (0x1D43D, "M", "j"), + (0x1D43E, "M", "k"), + (0x1D43F, "M", "l"), + (0x1D440, "M", "m"), + (0x1D441, "M", "n"), + (0x1D442, "M", "o"), + (0x1D443, "M", "p"), + (0x1D444, "M", "q"), + (0x1D445, "M", "r"), + (0x1D446, "M", "s"), + (0x1D447, "M", "t"), + (0x1D448, "M", "u"), + (0x1D449, "M", "v"), + (0x1D44A, "M", "w"), + (0x1D44B, "M", "x"), + (0x1D44C, "M", "y"), + (0x1D44D, "M", "z"), + (0x1D44E, "M", "a"), + (0x1D44F, "M", "b"), + (0x1D450, "M", "c"), + (0x1D451, "M", "d"), + (0x1D452, "M", "e"), + (0x1D453, "M", "f"), + (0x1D454, "M", "g"), + (0x1D455, "X"), + (0x1D456, "M", "i"), + (0x1D457, "M", "j"), + (0x1D458, "M", "k"), + (0x1D459, "M", "l"), + (0x1D45A, "M", "m"), + (0x1D45B, "M", "n"), + (0x1D45C, "M", "o"), + (0x1D45D, "M", "p"), + (0x1D45E, "M", "q"), + (0x1D45F, "M", "r"), + (0x1D460, "M", "s"), + (0x1D461, "M", "t"), + (0x1D462, "M", "u"), + (0x1D463, "M", "v"), + (0x1D464, "M", "w"), + (0x1D465, "M", "x"), + (0x1D466, "M", "y"), + (0x1D467, "M", "z"), + (0x1D468, "M", "a"), + (0x1D469, "M", "b"), + (0x1D46A, "M", "c"), + (0x1D46B, "M", "d"), + (0x1D46C, "M", "e"), + (0x1D46D, "M", "f"), + (0x1D46E, "M", "g"), + (0x1D46F, "M", "h"), + (0x1D470, "M", "i"), + (0x1D471, "M", "j"), + (0x1D472, "M", "k"), + (0x1D473, "M", "l"), + (0x1D474, "M", "m"), + (0x1D475, "M", "n"), + (0x1D476, "M", "o"), + (0x1D477, "M", "p"), + (0x1D478, "M", "q"), + (0x1D479, "M", "r"), + (0x1D47A, "M", "s"), + (0x1D47B, "M", "t"), + (0x1D47C, "M", "u"), + (0x1D47D, "M", "v"), + (0x1D47E, "M", "w"), + (0x1D47F, "M", "x"), + (0x1D480, "M", "y"), + (0x1D481, "M", "z"), + (0x1D482, "M", "a"), + (0x1D483, "M", "b"), + (0x1D484, "M", "c"), + (0x1D485, "M", "d"), + (0x1D486, "M", "e"), + (0x1D487, "M", "f"), + (0x1D488, "M", "g"), + ] + + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D489, "M", "h"), + (0x1D48A, "M", "i"), + (0x1D48B, "M", "j"), + (0x1D48C, "M", "k"), + (0x1D48D, "M", "l"), + (0x1D48E, "M", "m"), + (0x1D48F, "M", "n"), + (0x1D490, "M", "o"), + (0x1D491, "M", "p"), + (0x1D492, "M", "q"), + (0x1D493, "M", "r"), + (0x1D494, "M", "s"), + (0x1D495, "M", "t"), + (0x1D496, "M", "u"), + (0x1D497, "M", "v"), + (0x1D498, "M", "w"), + (0x1D499, "M", "x"), + (0x1D49A, "M", "y"), + (0x1D49B, "M", "z"), + (0x1D49C, "M", "a"), + (0x1D49D, "X"), + (0x1D49E, "M", "c"), + (0x1D49F, "M", "d"), + (0x1D4A0, "X"), + (0x1D4A2, "M", "g"), + (0x1D4A3, "X"), + (0x1D4A5, "M", "j"), + (0x1D4A6, "M", "k"), + (0x1D4A7, "X"), + (0x1D4A9, "M", "n"), + (0x1D4AA, "M", "o"), + (0x1D4AB, "M", "p"), + (0x1D4AC, "M", "q"), + (0x1D4AD, "X"), + (0x1D4AE, "M", "s"), + (0x1D4AF, "M", "t"), + (0x1D4B0, "M", "u"), + (0x1D4B1, "M", "v"), + (0x1D4B2, "M", "w"), + (0x1D4B3, "M", "x"), + (0x1D4B4, "M", "y"), + (0x1D4B5, "M", "z"), + (0x1D4B6, "M", "a"), + (0x1D4B7, "M", "b"), + (0x1D4B8, "M", "c"), + (0x1D4B9, "M", "d"), + (0x1D4BA, "X"), + (0x1D4BB, "M", "f"), + (0x1D4BC, "X"), + (0x1D4BD, "M", "h"), + (0x1D4BE, "M", "i"), + (0x1D4BF, "M", "j"), + (0x1D4C0, "M", "k"), + (0x1D4C1, "M", "l"), + (0x1D4C2, "M", "m"), + (0x1D4C3, "M", "n"), + (0x1D4C4, "X"), + (0x1D4C5, "M", "p"), + (0x1D4C6, "M", "q"), + (0x1D4C7, "M", "r"), + (0x1D4C8, "M", "s"), + (0x1D4C9, "M", "t"), + (0x1D4CA, "M", "u"), + (0x1D4CB, "M", "v"), + (0x1D4CC, "M", "w"), + (0x1D4CD, "M", "x"), + (0x1D4CE, "M", "y"), + (0x1D4CF, "M", "z"), + (0x1D4D0, "M", "a"), + (0x1D4D1, "M", "b"), + (0x1D4D2, "M", "c"), + (0x1D4D3, "M", "d"), + (0x1D4D4, "M", "e"), + (0x1D4D5, "M", "f"), + (0x1D4D6, "M", "g"), + (0x1D4D7, "M", "h"), + (0x1D4D8, "M", "i"), + (0x1D4D9, "M", "j"), + (0x1D4DA, "M", "k"), + (0x1D4DB, "M", "l"), + (0x1D4DC, "M", "m"), + (0x1D4DD, "M", "n"), + (0x1D4DE, "M", "o"), + (0x1D4DF, "M", "p"), + (0x1D4E0, "M", "q"), + (0x1D4E1, "M", "r"), + (0x1D4E2, "M", "s"), + (0x1D4E3, "M", "t"), + (0x1D4E4, "M", "u"), + (0x1D4E5, "M", "v"), + (0x1D4E6, "M", "w"), + (0x1D4E7, "M", "x"), + (0x1D4E8, "M", "y"), + (0x1D4E9, "M", "z"), + (0x1D4EA, "M", "a"), + (0x1D4EB, "M", "b"), + (0x1D4EC, "M", "c"), + (0x1D4ED, "M", "d"), + (0x1D4EE, "M", "e"), + (0x1D4EF, "M", "f"), + ] + + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4F0, "M", "g"), + (0x1D4F1, "M", "h"), + (0x1D4F2, "M", "i"), + (0x1D4F3, "M", "j"), + (0x1D4F4, "M", "k"), + (0x1D4F5, "M", "l"), + (0x1D4F6, "M", "m"), + (0x1D4F7, "M", "n"), + (0x1D4F8, "M", "o"), + (0x1D4F9, "M", "p"), + (0x1D4FA, "M", "q"), + (0x1D4FB, "M", "r"), + (0x1D4FC, "M", "s"), + (0x1D4FD, "M", "t"), + (0x1D4FE, "M", "u"), + (0x1D4FF, "M", "v"), + (0x1D500, "M", "w"), + (0x1D501, "M", "x"), + (0x1D502, "M", "y"), + (0x1D503, "M", "z"), + (0x1D504, "M", "a"), + (0x1D505, "M", "b"), + (0x1D506, "X"), + (0x1D507, "M", "d"), + (0x1D508, "M", "e"), + (0x1D509, "M", "f"), + (0x1D50A, "M", "g"), + (0x1D50B, "X"), + (0x1D50D, "M", "j"), + (0x1D50E, "M", "k"), + (0x1D50F, "M", "l"), + (0x1D510, "M", "m"), + (0x1D511, "M", "n"), + (0x1D512, "M", "o"), + (0x1D513, "M", "p"), + (0x1D514, "M", "q"), + (0x1D515, "X"), + (0x1D516, "M", "s"), + (0x1D517, "M", "t"), + (0x1D518, "M", "u"), + (0x1D519, "M", "v"), + (0x1D51A, "M", "w"), + (0x1D51B, "M", "x"), + (0x1D51C, "M", "y"), + (0x1D51D, "X"), + (0x1D51E, "M", "a"), + (0x1D51F, "M", "b"), + (0x1D520, "M", "c"), + (0x1D521, "M", "d"), + (0x1D522, "M", "e"), + (0x1D523, "M", "f"), + (0x1D524, "M", "g"), + (0x1D525, "M", "h"), + (0x1D526, "M", "i"), + (0x1D527, "M", "j"), + (0x1D528, "M", "k"), + (0x1D529, "M", "l"), + (0x1D52A, "M", "m"), + (0x1D52B, "M", "n"), + (0x1D52C, "M", "o"), + (0x1D52D, "M", "p"), + (0x1D52E, "M", "q"), + (0x1D52F, "M", "r"), + (0x1D530, "M", "s"), + (0x1D531, "M", "t"), + (0x1D532, "M", "u"), + (0x1D533, "M", "v"), + (0x1D534, "M", "w"), + (0x1D535, "M", "x"), + (0x1D536, "M", "y"), + (0x1D537, "M", "z"), + (0x1D538, "M", "a"), + (0x1D539, "M", "b"), + (0x1D53A, "X"), + (0x1D53B, "M", "d"), + (0x1D53C, "M", "e"), + (0x1D53D, "M", "f"), + (0x1D53E, "M", "g"), + (0x1D53F, "X"), + (0x1D540, "M", "i"), + (0x1D541, "M", "j"), + (0x1D542, "M", "k"), + (0x1D543, "M", "l"), + (0x1D544, "M", "m"), + (0x1D545, "X"), + (0x1D546, "M", "o"), + (0x1D547, "X"), + (0x1D54A, "M", "s"), + (0x1D54B, "M", "t"), + (0x1D54C, "M", "u"), + (0x1D54D, "M", "v"), + (0x1D54E, "M", "w"), + (0x1D54F, "M", "x"), + (0x1D550, "M", "y"), + (0x1D551, "X"), + (0x1D552, "M", "a"), + (0x1D553, "M", "b"), + (0x1D554, "M", "c"), + (0x1D555, "M", "d"), + (0x1D556, "M", "e"), + ] + + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D557, "M", "f"), + (0x1D558, "M", "g"), + (0x1D559, "M", "h"), + (0x1D55A, "M", "i"), + (0x1D55B, "M", "j"), + (0x1D55C, "M", "k"), + (0x1D55D, "M", "l"), + (0x1D55E, "M", "m"), + (0x1D55F, "M", "n"), + (0x1D560, "M", "o"), + (0x1D561, "M", "p"), + (0x1D562, "M", "q"), + (0x1D563, "M", "r"), + (0x1D564, "M", "s"), + (0x1D565, "M", "t"), + (0x1D566, "M", "u"), + (0x1D567, "M", "v"), + (0x1D568, "M", "w"), + (0x1D569, "M", "x"), + (0x1D56A, "M", "y"), + (0x1D56B, "M", "z"), + (0x1D56C, "M", "a"), + (0x1D56D, "M", "b"), + (0x1D56E, "M", "c"), + (0x1D56F, "M", "d"), + (0x1D570, "M", "e"), + (0x1D571, "M", "f"), + (0x1D572, "M", "g"), + (0x1D573, "M", "h"), + (0x1D574, "M", "i"), + (0x1D575, "M", "j"), + (0x1D576, "M", "k"), + (0x1D577, "M", "l"), + (0x1D578, "M", "m"), + (0x1D579, "M", "n"), + (0x1D57A, "M", "o"), + (0x1D57B, "M", "p"), + (0x1D57C, "M", "q"), + (0x1D57D, "M", "r"), + (0x1D57E, "M", "s"), + (0x1D57F, "M", "t"), + (0x1D580, "M", "u"), + (0x1D581, "M", "v"), + (0x1D582, "M", "w"), + (0x1D583, "M", "x"), + (0x1D584, "M", "y"), + (0x1D585, "M", "z"), + (0x1D586, "M", "a"), + (0x1D587, "M", "b"), + (0x1D588, "M", "c"), + (0x1D589, "M", "d"), + (0x1D58A, "M", "e"), + (0x1D58B, "M", "f"), + (0x1D58C, "M", "g"), + (0x1D58D, "M", "h"), + (0x1D58E, "M", "i"), + (0x1D58F, "M", "j"), + (0x1D590, "M", "k"), + (0x1D591, "M", "l"), + (0x1D592, "M", "m"), + (0x1D593, "M", "n"), + (0x1D594, "M", "o"), + (0x1D595, "M", "p"), + (0x1D596, "M", "q"), + (0x1D597, "M", "r"), + (0x1D598, "M", "s"), + (0x1D599, "M", "t"), + (0x1D59A, "M", "u"), + (0x1D59B, "M", "v"), + (0x1D59C, "M", "w"), + (0x1D59D, "M", "x"), + (0x1D59E, "M", "y"), + (0x1D59F, "M", "z"), + (0x1D5A0, "M", "a"), + (0x1D5A1, "M", "b"), + (0x1D5A2, "M", "c"), + (0x1D5A3, "M", "d"), + (0x1D5A4, "M", "e"), + (0x1D5A5, "M", "f"), + (0x1D5A6, "M", "g"), + (0x1D5A7, "M", "h"), + (0x1D5A8, "M", "i"), + (0x1D5A9, "M", "j"), + (0x1D5AA, "M", "k"), + (0x1D5AB, "M", "l"), + (0x1D5AC, "M", "m"), + (0x1D5AD, "M", "n"), + (0x1D5AE, "M", "o"), + (0x1D5AF, "M", "p"), + (0x1D5B0, "M", "q"), + (0x1D5B1, "M", "r"), + (0x1D5B2, "M", "s"), + (0x1D5B3, "M", "t"), + (0x1D5B4, "M", "u"), + (0x1D5B5, "M", "v"), + (0x1D5B6, "M", "w"), + (0x1D5B7, "M", "x"), + (0x1D5B8, "M", "y"), + (0x1D5B9, "M", "z"), + (0x1D5BA, "M", "a"), + ] + + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5BB, "M", "b"), + (0x1D5BC, "M", "c"), + (0x1D5BD, "M", "d"), + (0x1D5BE, "M", "e"), + (0x1D5BF, "M", "f"), + (0x1D5C0, "M", "g"), + (0x1D5C1, "M", "h"), + (0x1D5C2, "M", "i"), + (0x1D5C3, "M", "j"), + (0x1D5C4, "M", "k"), + (0x1D5C5, "M", "l"), + (0x1D5C6, "M", "m"), + (0x1D5C7, "M", "n"), + (0x1D5C8, "M", "o"), + (0x1D5C9, "M", "p"), + (0x1D5CA, "M", "q"), + (0x1D5CB, "M", "r"), + (0x1D5CC, "M", "s"), + (0x1D5CD, "M", "t"), + (0x1D5CE, "M", "u"), + (0x1D5CF, "M", "v"), + (0x1D5D0, "M", "w"), + (0x1D5D1, "M", "x"), + (0x1D5D2, "M", "y"), + (0x1D5D3, "M", "z"), + (0x1D5D4, "M", "a"), + (0x1D5D5, "M", "b"), + (0x1D5D6, "M", "c"), + (0x1D5D7, "M", "d"), + (0x1D5D8, "M", "e"), + (0x1D5D9, "M", "f"), + (0x1D5DA, "M", "g"), + (0x1D5DB, "M", "h"), + (0x1D5DC, "M", "i"), + (0x1D5DD, "M", "j"), + (0x1D5DE, "M", "k"), + (0x1D5DF, "M", "l"), + (0x1D5E0, "M", "m"), + (0x1D5E1, "M", "n"), + (0x1D5E2, "M", "o"), + (0x1D5E3, "M", "p"), + (0x1D5E4, "M", "q"), + (0x1D5E5, "M", "r"), + (0x1D5E6, "M", "s"), + (0x1D5E7, "M", "t"), + (0x1D5E8, "M", "u"), + (0x1D5E9, "M", "v"), + (0x1D5EA, "M", "w"), + (0x1D5EB, "M", "x"), + (0x1D5EC, "M", "y"), + (0x1D5ED, "M", "z"), + (0x1D5EE, "M", "a"), + (0x1D5EF, "M", "b"), + (0x1D5F0, "M", "c"), + (0x1D5F1, "M", "d"), + (0x1D5F2, "M", "e"), + (0x1D5F3, "M", "f"), + (0x1D5F4, "M", "g"), + (0x1D5F5, "M", "h"), + (0x1D5F6, "M", "i"), + (0x1D5F7, "M", "j"), + (0x1D5F8, "M", "k"), + (0x1D5F9, "M", "l"), + (0x1D5FA, "M", "m"), + (0x1D5FB, "M", "n"), + (0x1D5FC, "M", "o"), + (0x1D5FD, "M", "p"), + (0x1D5FE, "M", "q"), + (0x1D5FF, "M", "r"), + (0x1D600, "M", "s"), + (0x1D601, "M", "t"), + (0x1D602, "M", "u"), + (0x1D603, "M", "v"), + (0x1D604, "M", "w"), + (0x1D605, "M", "x"), + (0x1D606, "M", "y"), + (0x1D607, "M", "z"), + (0x1D608, "M", "a"), + (0x1D609, "M", "b"), + (0x1D60A, "M", "c"), + (0x1D60B, "M", "d"), + (0x1D60C, "M", "e"), + (0x1D60D, "M", "f"), + (0x1D60E, "M", "g"), + (0x1D60F, "M", "h"), + (0x1D610, "M", "i"), + (0x1D611, "M", "j"), + (0x1D612, "M", "k"), + (0x1D613, "M", "l"), + (0x1D614, "M", "m"), + (0x1D615, "M", "n"), + (0x1D616, "M", "o"), + (0x1D617, "M", "p"), + (0x1D618, "M", "q"), + (0x1D619, "M", "r"), + (0x1D61A, "M", "s"), + (0x1D61B, "M", "t"), + (0x1D61C, "M", "u"), + (0x1D61D, "M", "v"), + (0x1D61E, "M", "w"), + ] + + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61F, "M", "x"), + (0x1D620, "M", "y"), + (0x1D621, "M", "z"), + (0x1D622, "M", "a"), + (0x1D623, "M", "b"), + (0x1D624, "M", "c"), + (0x1D625, "M", "d"), + (0x1D626, "M", "e"), + (0x1D627, "M", "f"), + (0x1D628, "M", "g"), + (0x1D629, "M", "h"), + (0x1D62A, "M", "i"), + (0x1D62B, "M", "j"), + (0x1D62C, "M", "k"), + (0x1D62D, "M", "l"), + (0x1D62E, "M", "m"), + (0x1D62F, "M", "n"), + (0x1D630, "M", "o"), + (0x1D631, "M", "p"), + (0x1D632, "M", "q"), + (0x1D633, "M", "r"), + (0x1D634, "M", "s"), + (0x1D635, "M", "t"), + (0x1D636, "M", "u"), + (0x1D637, "M", "v"), + (0x1D638, "M", "w"), + (0x1D639, "M", "x"), + (0x1D63A, "M", "y"), + (0x1D63B, "M", "z"), + (0x1D63C, "M", "a"), + (0x1D63D, "M", "b"), + (0x1D63E, "M", "c"), + (0x1D63F, "M", "d"), + (0x1D640, "M", "e"), + (0x1D641, "M", "f"), + (0x1D642, "M", "g"), + (0x1D643, "M", "h"), + (0x1D644, "M", "i"), + (0x1D645, "M", "j"), + (0x1D646, "M", "k"), + (0x1D647, "M", "l"), + (0x1D648, "M", "m"), + (0x1D649, "M", "n"), + (0x1D64A, "M", "o"), + (0x1D64B, "M", "p"), + (0x1D64C, "M", "q"), + (0x1D64D, "M", "r"), + (0x1D64E, "M", "s"), + (0x1D64F, "M", "t"), + (0x1D650, "M", "u"), + (0x1D651, "M", "v"), + (0x1D652, "M", "w"), + (0x1D653, "M", "x"), + (0x1D654, "M", "y"), + (0x1D655, "M", "z"), + (0x1D656, "M", "a"), + (0x1D657, "M", "b"), + (0x1D658, "M", "c"), + (0x1D659, "M", "d"), + (0x1D65A, "M", "e"), + (0x1D65B, "M", "f"), + (0x1D65C, "M", "g"), + (0x1D65D, "M", "h"), + (0x1D65E, "M", "i"), + (0x1D65F, "M", "j"), + (0x1D660, "M", "k"), + (0x1D661, "M", "l"), + (0x1D662, "M", "m"), + (0x1D663, "M", "n"), + (0x1D664, "M", "o"), + (0x1D665, "M", "p"), + (0x1D666, "M", "q"), + (0x1D667, "M", "r"), + (0x1D668, "M", "s"), + (0x1D669, "M", "t"), + (0x1D66A, "M", "u"), + (0x1D66B, "M", "v"), + (0x1D66C, "M", "w"), + (0x1D66D, "M", "x"), + (0x1D66E, "M", "y"), + (0x1D66F, "M", "z"), + (0x1D670, "M", "a"), + (0x1D671, "M", "b"), + (0x1D672, "M", "c"), + (0x1D673, "M", "d"), + (0x1D674, "M", "e"), + (0x1D675, "M", "f"), + (0x1D676, "M", "g"), + (0x1D677, "M", "h"), + (0x1D678, "M", "i"), + (0x1D679, "M", "j"), + (0x1D67A, "M", "k"), + (0x1D67B, "M", "l"), + (0x1D67C, "M", "m"), + (0x1D67D, "M", "n"), + (0x1D67E, "M", "o"), + (0x1D67F, "M", "p"), + (0x1D680, "M", "q"), + (0x1D681, "M", "r"), + (0x1D682, "M", "s"), + ] + + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D683, "M", "t"), + (0x1D684, "M", "u"), + (0x1D685, "M", "v"), + (0x1D686, "M", "w"), + (0x1D687, "M", "x"), + (0x1D688, "M", "y"), + (0x1D689, "M", "z"), + (0x1D68A, "M", "a"), + (0x1D68B, "M", "b"), + (0x1D68C, "M", "c"), + (0x1D68D, "M", "d"), + (0x1D68E, "M", "e"), + (0x1D68F, "M", "f"), + (0x1D690, "M", "g"), + (0x1D691, "M", "h"), + (0x1D692, "M", "i"), + (0x1D693, "M", "j"), + (0x1D694, "M", "k"), + (0x1D695, "M", "l"), + (0x1D696, "M", "m"), + (0x1D697, "M", "n"), + (0x1D698, "M", "o"), + (0x1D699, "M", "p"), + (0x1D69A, "M", "q"), + (0x1D69B, "M", "r"), + (0x1D69C, "M", "s"), + (0x1D69D, "M", "t"), + (0x1D69E, "M", "u"), + (0x1D69F, "M", "v"), + (0x1D6A0, "M", "w"), + (0x1D6A1, "M", "x"), + (0x1D6A2, "M", "y"), + (0x1D6A3, "M", "z"), + (0x1D6A4, "M", "ı"), + (0x1D6A5, "M", "ȷ"), + (0x1D6A6, "X"), + (0x1D6A8, "M", "α"), + (0x1D6A9, "M", "β"), + (0x1D6AA, "M", "γ"), + (0x1D6AB, "M", "δ"), + (0x1D6AC, "M", "ε"), + (0x1D6AD, "M", "ζ"), + (0x1D6AE, "M", "η"), + (0x1D6AF, "M", "θ"), + (0x1D6B0, "M", "ι"), + (0x1D6B1, "M", "κ"), + (0x1D6B2, "M", "λ"), + (0x1D6B3, "M", "μ"), + (0x1D6B4, "M", "ν"), + (0x1D6B5, "M", "ξ"), + (0x1D6B6, "M", "ο"), + (0x1D6B7, "M", "π"), + (0x1D6B8, "M", "ρ"), + (0x1D6B9, "M", "θ"), + (0x1D6BA, "M", "σ"), + (0x1D6BB, "M", "τ"), + (0x1D6BC, "M", "υ"), + (0x1D6BD, "M", "φ"), + (0x1D6BE, "M", "χ"), + (0x1D6BF, "M", "ψ"), + (0x1D6C0, "M", "ω"), + (0x1D6C1, "M", "∇"), + (0x1D6C2, "M", "α"), + (0x1D6C3, "M", "β"), + (0x1D6C4, "M", "γ"), + (0x1D6C5, "M", "δ"), + (0x1D6C6, "M", "ε"), + (0x1D6C7, "M", "ζ"), + (0x1D6C8, "M", "η"), + (0x1D6C9, "M", "θ"), + (0x1D6CA, "M", "ι"), + (0x1D6CB, "M", "κ"), + (0x1D6CC, "M", "λ"), + (0x1D6CD, "M", "μ"), + (0x1D6CE, "M", "ν"), + (0x1D6CF, "M", "ξ"), + (0x1D6D0, "M", "ο"), + (0x1D6D1, "M", "π"), + (0x1D6D2, "M", "ρ"), + (0x1D6D3, "M", "σ"), + (0x1D6D5, "M", "τ"), + (0x1D6D6, "M", "υ"), + (0x1D6D7, "M", "φ"), + (0x1D6D8, "M", "χ"), + (0x1D6D9, "M", "ψ"), + (0x1D6DA, "M", "ω"), + (0x1D6DB, "M", "∂"), + (0x1D6DC, "M", "ε"), + (0x1D6DD, "M", "θ"), + (0x1D6DE, "M", "κ"), + (0x1D6DF, "M", "φ"), + (0x1D6E0, "M", "ρ"), + (0x1D6E1, "M", "π"), + (0x1D6E2, "M", "α"), + (0x1D6E3, "M", "β"), + (0x1D6E4, "M", "γ"), + (0x1D6E5, "M", "δ"), + (0x1D6E6, "M", "ε"), + (0x1D6E7, "M", "ζ"), + (0x1D6E8, "M", "η"), + ] + + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E9, "M", "θ"), + (0x1D6EA, "M", "ι"), + (0x1D6EB, "M", "κ"), + (0x1D6EC, "M", "λ"), + (0x1D6ED, "M", "μ"), + (0x1D6EE, "M", "ν"), + (0x1D6EF, "M", "ξ"), + (0x1D6F0, "M", "ο"), + (0x1D6F1, "M", "π"), + (0x1D6F2, "M", "ρ"), + (0x1D6F3, "M", "θ"), + (0x1D6F4, "M", "σ"), + (0x1D6F5, "M", "τ"), + (0x1D6F6, "M", "υ"), + (0x1D6F7, "M", "φ"), + (0x1D6F8, "M", "χ"), + (0x1D6F9, "M", "ψ"), + (0x1D6FA, "M", "ω"), + (0x1D6FB, "M", "∇"), + (0x1D6FC, "M", "α"), + (0x1D6FD, "M", "β"), + (0x1D6FE, "M", "γ"), + (0x1D6FF, "M", "δ"), + (0x1D700, "M", "ε"), + (0x1D701, "M", "ζ"), + (0x1D702, "M", "η"), + (0x1D703, "M", "θ"), + (0x1D704, "M", "ι"), + (0x1D705, "M", "κ"), + (0x1D706, "M", "λ"), + (0x1D707, "M", "μ"), + (0x1D708, "M", "ν"), + (0x1D709, "M", "ξ"), + (0x1D70A, "M", "ο"), + (0x1D70B, "M", "π"), + (0x1D70C, "M", "ρ"), + (0x1D70D, "M", "σ"), + (0x1D70F, "M", "τ"), + (0x1D710, "M", "υ"), + (0x1D711, "M", "φ"), + (0x1D712, "M", "χ"), + (0x1D713, "M", "ψ"), + (0x1D714, "M", "ω"), + (0x1D715, "M", "∂"), + (0x1D716, "M", "ε"), + (0x1D717, "M", "θ"), + (0x1D718, "M", "κ"), + (0x1D719, "M", "φ"), + (0x1D71A, "M", "ρ"), + (0x1D71B, "M", "π"), + (0x1D71C, "M", "α"), + (0x1D71D, "M", "β"), + (0x1D71E, "M", "γ"), + (0x1D71F, "M", "δ"), + (0x1D720, "M", "ε"), + (0x1D721, "M", "ζ"), + (0x1D722, "M", "η"), + (0x1D723, "M", "θ"), + (0x1D724, "M", "ι"), + (0x1D725, "M", "κ"), + (0x1D726, "M", "λ"), + (0x1D727, "M", "μ"), + (0x1D728, "M", "ν"), + (0x1D729, "M", "ξ"), + (0x1D72A, "M", "ο"), + (0x1D72B, "M", "π"), + (0x1D72C, "M", "ρ"), + (0x1D72D, "M", "θ"), + (0x1D72E, "M", "σ"), + (0x1D72F, "M", "τ"), + (0x1D730, "M", "υ"), + (0x1D731, "M", "φ"), + (0x1D732, "M", "χ"), + (0x1D733, "M", "ψ"), + (0x1D734, "M", "ω"), + (0x1D735, "M", "∇"), + (0x1D736, "M", "α"), + (0x1D737, "M", "β"), + (0x1D738, "M", "γ"), + (0x1D739, "M", "δ"), + (0x1D73A, "M", "ε"), + (0x1D73B, "M", "ζ"), + (0x1D73C, "M", "η"), + (0x1D73D, "M", "θ"), + (0x1D73E, "M", "ι"), + (0x1D73F, "M", "κ"), + (0x1D740, "M", "λ"), + (0x1D741, "M", "μ"), + (0x1D742, "M", "ν"), + (0x1D743, "M", "ξ"), + (0x1D744, "M", "ο"), + (0x1D745, "M", "π"), + (0x1D746, "M", "ρ"), + (0x1D747, "M", "σ"), + (0x1D749, "M", "τ"), + (0x1D74A, "M", "υ"), + (0x1D74B, "M", "φ"), + (0x1D74C, "M", "χ"), + (0x1D74D, "M", "ψ"), + (0x1D74E, "M", "ω"), + ] + + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74F, "M", "∂"), + (0x1D750, "M", "ε"), + (0x1D751, "M", "θ"), + (0x1D752, "M", "κ"), + (0x1D753, "M", "φ"), + (0x1D754, "M", "ρ"), + (0x1D755, "M", "π"), + (0x1D756, "M", "α"), + (0x1D757, "M", "β"), + (0x1D758, "M", "γ"), + (0x1D759, "M", "δ"), + (0x1D75A, "M", "ε"), + (0x1D75B, "M", "ζ"), + (0x1D75C, "M", "η"), + (0x1D75D, "M", "θ"), + (0x1D75E, "M", "ι"), + (0x1D75F, "M", "κ"), + (0x1D760, "M", "λ"), + (0x1D761, "M", "μ"), + (0x1D762, "M", "ν"), + (0x1D763, "M", "ξ"), + (0x1D764, "M", "ο"), + (0x1D765, "M", "π"), + (0x1D766, "M", "ρ"), + (0x1D767, "M", "θ"), + (0x1D768, "M", "σ"), + (0x1D769, "M", "τ"), + (0x1D76A, "M", "υ"), + (0x1D76B, "M", "φ"), + (0x1D76C, "M", "χ"), + (0x1D76D, "M", "ψ"), + (0x1D76E, "M", "ω"), + (0x1D76F, "M", "∇"), + (0x1D770, "M", "α"), + (0x1D771, "M", "β"), + (0x1D772, "M", "γ"), + (0x1D773, "M", "δ"), + (0x1D774, "M", "ε"), + (0x1D775, "M", "ζ"), + (0x1D776, "M", "η"), + (0x1D777, "M", "θ"), + (0x1D778, "M", "ι"), + (0x1D779, "M", "κ"), + (0x1D77A, "M", "λ"), + (0x1D77B, "M", "μ"), + (0x1D77C, "M", "ν"), + (0x1D77D, "M", "ξ"), + (0x1D77E, "M", "ο"), + (0x1D77F, "M", "π"), + (0x1D780, "M", "ρ"), + (0x1D781, "M", "σ"), + (0x1D783, "M", "τ"), + (0x1D784, "M", "υ"), + (0x1D785, "M", "φ"), + (0x1D786, "M", "χ"), + (0x1D787, "M", "ψ"), + (0x1D788, "M", "ω"), + (0x1D789, "M", "∂"), + (0x1D78A, "M", "ε"), + (0x1D78B, "M", "θ"), + (0x1D78C, "M", "κ"), + (0x1D78D, "M", "φ"), + (0x1D78E, "M", "ρ"), + (0x1D78F, "M", "π"), + (0x1D790, "M", "α"), + (0x1D791, "M", "β"), + (0x1D792, "M", "γ"), + (0x1D793, "M", "δ"), + (0x1D794, "M", "ε"), + (0x1D795, "M", "ζ"), + (0x1D796, "M", "η"), + (0x1D797, "M", "θ"), + (0x1D798, "M", "ι"), + (0x1D799, "M", "κ"), + (0x1D79A, "M", "λ"), + (0x1D79B, "M", "μ"), + (0x1D79C, "M", "ν"), + (0x1D79D, "M", "ξ"), + (0x1D79E, "M", "ο"), + (0x1D79F, "M", "π"), + (0x1D7A0, "M", "ρ"), + (0x1D7A1, "M", "θ"), + (0x1D7A2, "M", "σ"), + (0x1D7A3, "M", "τ"), + (0x1D7A4, "M", "υ"), + (0x1D7A5, "M", "φ"), + (0x1D7A6, "M", "χ"), + (0x1D7A7, "M", "ψ"), + (0x1D7A8, "M", "ω"), + (0x1D7A9, "M", "∇"), + (0x1D7AA, "M", "α"), + (0x1D7AB, "M", "β"), + (0x1D7AC, "M", "γ"), + (0x1D7AD, "M", "δ"), + (0x1D7AE, "M", "ε"), + (0x1D7AF, "M", "ζ"), + (0x1D7B0, "M", "η"), + (0x1D7B1, "M", "θ"), + (0x1D7B2, "M", "ι"), + (0x1D7B3, "M", "κ"), + ] + + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B4, "M", "λ"), + (0x1D7B5, "M", "μ"), + (0x1D7B6, "M", "ν"), + (0x1D7B7, "M", "ξ"), + (0x1D7B8, "M", "ο"), + (0x1D7B9, "M", "π"), + (0x1D7BA, "M", "ρ"), + (0x1D7BB, "M", "σ"), + (0x1D7BD, "M", "τ"), + (0x1D7BE, "M", "υ"), + (0x1D7BF, "M", "φ"), + (0x1D7C0, "M", "χ"), + (0x1D7C1, "M", "ψ"), + (0x1D7C2, "M", "ω"), + (0x1D7C3, "M", "∂"), + (0x1D7C4, "M", "ε"), + (0x1D7C5, "M", "θ"), + (0x1D7C6, "M", "κ"), + (0x1D7C7, "M", "φ"), + (0x1D7C8, "M", "ρ"), + (0x1D7C9, "M", "π"), + (0x1D7CA, "M", "ϝ"), + (0x1D7CC, "X"), + (0x1D7CE, "M", "0"), + (0x1D7CF, "M", "1"), + (0x1D7D0, "M", "2"), + (0x1D7D1, "M", "3"), + (0x1D7D2, "M", "4"), + (0x1D7D3, "M", "5"), + (0x1D7D4, "M", "6"), + (0x1D7D5, "M", "7"), + (0x1D7D6, "M", "8"), + (0x1D7D7, "M", "9"), + (0x1D7D8, "M", "0"), + (0x1D7D9, "M", "1"), + (0x1D7DA, "M", "2"), + (0x1D7DB, "M", "3"), + (0x1D7DC, "M", "4"), + (0x1D7DD, "M", "5"), + (0x1D7DE, "M", "6"), + (0x1D7DF, "M", "7"), + (0x1D7E0, "M", "8"), + (0x1D7E1, "M", "9"), + (0x1D7E2, "M", "0"), + (0x1D7E3, "M", "1"), + (0x1D7E4, "M", "2"), + (0x1D7E5, "M", "3"), + (0x1D7E6, "M", "4"), + (0x1D7E7, "M", "5"), + (0x1D7E8, "M", "6"), + (0x1D7E9, "M", "7"), + (0x1D7EA, "M", "8"), + (0x1D7EB, "M", "9"), + (0x1D7EC, "M", "0"), + (0x1D7ED, "M", "1"), + (0x1D7EE, "M", "2"), + (0x1D7EF, "M", "3"), + (0x1D7F0, "M", "4"), + (0x1D7F1, "M", "5"), + (0x1D7F2, "M", "6"), + (0x1D7F3, "M", "7"), + (0x1D7F4, "M", "8"), + (0x1D7F5, "M", "9"), + (0x1D7F6, "M", "0"), + (0x1D7F7, "M", "1"), + (0x1D7F8, "M", "2"), + (0x1D7F9, "M", "3"), + (0x1D7FA, "M", "4"), + (0x1D7FB, "M", "5"), + (0x1D7FC, "M", "6"), + (0x1D7FD, "M", "7"), + (0x1D7FE, "M", "8"), + (0x1D7FF, "M", "9"), + (0x1D800, "V"), + (0x1DA8C, "X"), + (0x1DA9B, "V"), + (0x1DAA0, "X"), + (0x1DAA1, "V"), + (0x1DAB0, "X"), + (0x1DF00, "V"), + (0x1DF1F, "X"), + (0x1DF25, "V"), + (0x1DF2B, "X"), + (0x1E000, "V"), + (0x1E007, "X"), + (0x1E008, "V"), + (0x1E019, "X"), + (0x1E01B, "V"), + (0x1E022, "X"), + (0x1E023, "V"), + (0x1E025, "X"), + (0x1E026, "V"), + (0x1E02B, "X"), + (0x1E030, "M", "а"), + (0x1E031, "M", "б"), + (0x1E032, "M", "в"), + (0x1E033, "M", "г"), + (0x1E034, "M", "д"), + (0x1E035, "M", "е"), + (0x1E036, "M", "ж"), + ] + + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E037, "M", "з"), + (0x1E038, "M", "и"), + (0x1E039, "M", "к"), + (0x1E03A, "M", "л"), + (0x1E03B, "M", "м"), + (0x1E03C, "M", "о"), + (0x1E03D, "M", "п"), + (0x1E03E, "M", "р"), + (0x1E03F, "M", "с"), + (0x1E040, "M", "т"), + (0x1E041, "M", "у"), + (0x1E042, "M", "ф"), + (0x1E043, "M", "х"), + (0x1E044, "M", "ц"), + (0x1E045, "M", "ч"), + (0x1E046, "M", "ш"), + (0x1E047, "M", "ы"), + (0x1E048, "M", "э"), + (0x1E049, "M", "ю"), + (0x1E04A, "M", "ꚉ"), + (0x1E04B, "M", "ә"), + (0x1E04C, "M", "і"), + (0x1E04D, "M", "ј"), + (0x1E04E, "M", "ө"), + (0x1E04F, "M", "ү"), + (0x1E050, "M", "ӏ"), + (0x1E051, "M", "а"), + (0x1E052, "M", "б"), + (0x1E053, "M", "в"), + (0x1E054, "M", "г"), + (0x1E055, "M", "д"), + (0x1E056, "M", "е"), + (0x1E057, "M", "ж"), + (0x1E058, "M", "з"), + (0x1E059, "M", "и"), + (0x1E05A, "M", "к"), + (0x1E05B, "M", "л"), + (0x1E05C, "M", "о"), + (0x1E05D, "M", "п"), + (0x1E05E, "M", "с"), + (0x1E05F, "M", "у"), + (0x1E060, "M", "ф"), + (0x1E061, "M", "х"), + (0x1E062, "M", "ц"), + (0x1E063, "M", "ч"), + (0x1E064, "M", "ш"), + (0x1E065, "M", "ъ"), + (0x1E066, "M", "ы"), + (0x1E067, "M", "ґ"), + (0x1E068, "M", "і"), + (0x1E069, "M", "ѕ"), + (0x1E06A, "M", "џ"), + (0x1E06B, "M", "ҫ"), + (0x1E06C, "M", "ꙑ"), + (0x1E06D, "M", "ұ"), + (0x1E06E, "X"), + (0x1E08F, "V"), + (0x1E090, "X"), + (0x1E100, "V"), + (0x1E12D, "X"), + (0x1E130, "V"), + (0x1E13E, "X"), + (0x1E140, "V"), + (0x1E14A, "X"), + (0x1E14E, "V"), + (0x1E150, "X"), + (0x1E290, "V"), + (0x1E2AF, "X"), + (0x1E2C0, "V"), + (0x1E2FA, "X"), + (0x1E2FF, "V"), + (0x1E300, "X"), + (0x1E4D0, "V"), + (0x1E4FA, "X"), + (0x1E7E0, "V"), + (0x1E7E7, "X"), + (0x1E7E8, "V"), + (0x1E7EC, "X"), + (0x1E7ED, "V"), + (0x1E7EF, "X"), + (0x1E7F0, "V"), + (0x1E7FF, "X"), + (0x1E800, "V"), + (0x1E8C5, "X"), + (0x1E8C7, "V"), + (0x1E8D7, "X"), + (0x1E900, "M", "𞤢"), + (0x1E901, "M", "𞤣"), + (0x1E902, "M", "𞤤"), + (0x1E903, "M", "𞤥"), + (0x1E904, "M", "𞤦"), + (0x1E905, "M", "𞤧"), + (0x1E906, "M", "𞤨"), + (0x1E907, "M", "𞤩"), + (0x1E908, "M", "𞤪"), + (0x1E909, "M", "𞤫"), + (0x1E90A, "M", "𞤬"), + (0x1E90B, "M", "𞤭"), + (0x1E90C, "M", "𞤮"), + (0x1E90D, "M", "𞤯"), + ] + + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90E, "M", "𞤰"), + (0x1E90F, "M", "𞤱"), + (0x1E910, "M", "𞤲"), + (0x1E911, "M", "𞤳"), + (0x1E912, "M", "𞤴"), + (0x1E913, "M", "𞤵"), + (0x1E914, "M", "𞤶"), + (0x1E915, "M", "𞤷"), + (0x1E916, "M", "𞤸"), + (0x1E917, "M", "𞤹"), + (0x1E918, "M", "𞤺"), + (0x1E919, "M", "𞤻"), + (0x1E91A, "M", "𞤼"), + (0x1E91B, "M", "𞤽"), + (0x1E91C, "M", "𞤾"), + (0x1E91D, "M", "𞤿"), + (0x1E91E, "M", "𞥀"), + (0x1E91F, "M", "𞥁"), + (0x1E920, "M", "𞥂"), + (0x1E921, "M", "𞥃"), + (0x1E922, "V"), + (0x1E94C, "X"), + (0x1E950, "V"), + (0x1E95A, "X"), + (0x1E95E, "V"), + (0x1E960, "X"), + (0x1EC71, "V"), + (0x1ECB5, "X"), + (0x1ED01, "V"), + (0x1ED3E, "X"), + (0x1EE00, "M", "ا"), + (0x1EE01, "M", "ب"), + (0x1EE02, "M", "ج"), + (0x1EE03, "M", "د"), + (0x1EE04, "X"), + (0x1EE05, "M", "و"), + (0x1EE06, "M", "ز"), + (0x1EE07, "M", "ح"), + (0x1EE08, "M", "ط"), + (0x1EE09, "M", "ي"), + (0x1EE0A, "M", "ك"), + (0x1EE0B, "M", "ل"), + (0x1EE0C, "M", "م"), + (0x1EE0D, "M", "ن"), + (0x1EE0E, "M", "س"), + (0x1EE0F, "M", "ع"), + (0x1EE10, "M", "ف"), + (0x1EE11, "M", "ص"), + (0x1EE12, "M", "ق"), + (0x1EE13, "M", "ر"), + (0x1EE14, "M", "ش"), + (0x1EE15, "M", "ت"), + (0x1EE16, "M", "ث"), + (0x1EE17, "M", "خ"), + (0x1EE18, "M", "ذ"), + (0x1EE19, "M", "ض"), + (0x1EE1A, "M", "ظ"), + (0x1EE1B, "M", "غ"), + (0x1EE1C, "M", "ٮ"), + (0x1EE1D, "M", "ں"), + (0x1EE1E, "M", "ڡ"), + (0x1EE1F, "M", "ٯ"), + (0x1EE20, "X"), + (0x1EE21, "M", "ب"), + (0x1EE22, "M", "ج"), + (0x1EE23, "X"), + (0x1EE24, "M", "ه"), + (0x1EE25, "X"), + (0x1EE27, "M", "ح"), + (0x1EE28, "X"), + (0x1EE29, "M", "ي"), + (0x1EE2A, "M", "ك"), + (0x1EE2B, "M", "ل"), + (0x1EE2C, "M", "م"), + (0x1EE2D, "M", "ن"), + (0x1EE2E, "M", "س"), + (0x1EE2F, "M", "ع"), + (0x1EE30, "M", "ف"), + (0x1EE31, "M", "ص"), + (0x1EE32, "M", "ق"), + (0x1EE33, "X"), + (0x1EE34, "M", "ش"), + (0x1EE35, "M", "ت"), + (0x1EE36, "M", "ث"), + (0x1EE37, "M", "خ"), + (0x1EE38, "X"), + (0x1EE39, "M", "ض"), + (0x1EE3A, "X"), + (0x1EE3B, "M", "غ"), + (0x1EE3C, "X"), + (0x1EE42, "M", "ج"), + (0x1EE43, "X"), + (0x1EE47, "M", "ح"), + (0x1EE48, "X"), + (0x1EE49, "M", "ي"), + (0x1EE4A, "X"), + (0x1EE4B, "M", "ل"), + (0x1EE4C, "X"), + (0x1EE4D, "M", "ن"), + (0x1EE4E, "M", "س"), + ] + + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4F, "M", "ع"), + (0x1EE50, "X"), + (0x1EE51, "M", "ص"), + (0x1EE52, "M", "ق"), + (0x1EE53, "X"), + (0x1EE54, "M", "ش"), + (0x1EE55, "X"), + (0x1EE57, "M", "خ"), + (0x1EE58, "X"), + (0x1EE59, "M", "ض"), + (0x1EE5A, "X"), + (0x1EE5B, "M", "غ"), + (0x1EE5C, "X"), + (0x1EE5D, "M", "ں"), + (0x1EE5E, "X"), + (0x1EE5F, "M", "ٯ"), + (0x1EE60, "X"), + (0x1EE61, "M", "ب"), + (0x1EE62, "M", "ج"), + (0x1EE63, "X"), + (0x1EE64, "M", "ه"), + (0x1EE65, "X"), + (0x1EE67, "M", "ح"), + (0x1EE68, "M", "ط"), + (0x1EE69, "M", "ي"), + (0x1EE6A, "M", "ك"), + (0x1EE6B, "X"), + (0x1EE6C, "M", "م"), + (0x1EE6D, "M", "ن"), + (0x1EE6E, "M", "س"), + (0x1EE6F, "M", "ع"), + (0x1EE70, "M", "ف"), + (0x1EE71, "M", "ص"), + (0x1EE72, "M", "ق"), + (0x1EE73, "X"), + (0x1EE74, "M", "ش"), + (0x1EE75, "M", "ت"), + (0x1EE76, "M", "ث"), + (0x1EE77, "M", "خ"), + (0x1EE78, "X"), + (0x1EE79, "M", "ض"), + (0x1EE7A, "M", "ظ"), + (0x1EE7B, "M", "غ"), + (0x1EE7C, "M", "ٮ"), + (0x1EE7D, "X"), + (0x1EE7E, "M", "ڡ"), + (0x1EE7F, "X"), + (0x1EE80, "M", "ا"), + (0x1EE81, "M", "ب"), + (0x1EE82, "M", "ج"), + (0x1EE83, "M", "د"), + (0x1EE84, "M", "ه"), + (0x1EE85, "M", "و"), + (0x1EE86, "M", "ز"), + (0x1EE87, "M", "ح"), + (0x1EE88, "M", "ط"), + (0x1EE89, "M", "ي"), + (0x1EE8A, "X"), + (0x1EE8B, "M", "ل"), + (0x1EE8C, "M", "م"), + (0x1EE8D, "M", "ن"), + (0x1EE8E, "M", "س"), + (0x1EE8F, "M", "ع"), + (0x1EE90, "M", "ف"), + (0x1EE91, "M", "ص"), + (0x1EE92, "M", "ق"), + (0x1EE93, "M", "ر"), + (0x1EE94, "M", "ش"), + (0x1EE95, "M", "ت"), + (0x1EE96, "M", "ث"), + (0x1EE97, "M", "خ"), + (0x1EE98, "M", "ذ"), + (0x1EE99, "M", "ض"), + (0x1EE9A, "M", "ظ"), + (0x1EE9B, "M", "غ"), + (0x1EE9C, "X"), + (0x1EEA1, "M", "ب"), + (0x1EEA2, "M", "ج"), + (0x1EEA3, "M", "د"), + (0x1EEA4, "X"), + (0x1EEA5, "M", "و"), + (0x1EEA6, "M", "ز"), + (0x1EEA7, "M", "ح"), + (0x1EEA8, "M", "ط"), + (0x1EEA9, "M", "ي"), + (0x1EEAA, "X"), + (0x1EEAB, "M", "ل"), + (0x1EEAC, "M", "م"), + (0x1EEAD, "M", "ن"), + (0x1EEAE, "M", "س"), + (0x1EEAF, "M", "ع"), + (0x1EEB0, "M", "ف"), + (0x1EEB1, "M", "ص"), + (0x1EEB2, "M", "ق"), + (0x1EEB3, "M", "ر"), + (0x1EEB4, "M", "ش"), + (0x1EEB5, "M", "ت"), + (0x1EEB6, "M", "ث"), + (0x1EEB7, "M", "خ"), + (0x1EEB8, "M", "ذ"), + ] + + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB9, "M", "ض"), + (0x1EEBA, "M", "ظ"), + (0x1EEBB, "M", "غ"), + (0x1EEBC, "X"), + (0x1EEF0, "V"), + (0x1EEF2, "X"), + (0x1F000, "V"), + (0x1F02C, "X"), + (0x1F030, "V"), + (0x1F094, "X"), + (0x1F0A0, "V"), + (0x1F0AF, "X"), + (0x1F0B1, "V"), + (0x1F0C0, "X"), + (0x1F0C1, "V"), + (0x1F0D0, "X"), + (0x1F0D1, "V"), + (0x1F0F6, "X"), + (0x1F101, "3", "0,"), + (0x1F102, "3", "1,"), + (0x1F103, "3", "2,"), + (0x1F104, "3", "3,"), + (0x1F105, "3", "4,"), + (0x1F106, "3", "5,"), + (0x1F107, "3", "6,"), + (0x1F108, "3", "7,"), + (0x1F109, "3", "8,"), + (0x1F10A, "3", "9,"), + (0x1F10B, "V"), + (0x1F110, "3", "(a)"), + (0x1F111, "3", "(b)"), + (0x1F112, "3", "(c)"), + (0x1F113, "3", "(d)"), + (0x1F114, "3", "(e)"), + (0x1F115, "3", "(f)"), + (0x1F116, "3", "(g)"), + (0x1F117, "3", "(h)"), + (0x1F118, "3", "(i)"), + (0x1F119, "3", "(j)"), + (0x1F11A, "3", "(k)"), + (0x1F11B, "3", "(l)"), + (0x1F11C, "3", "(m)"), + (0x1F11D, "3", "(n)"), + (0x1F11E, "3", "(o)"), + (0x1F11F, "3", "(p)"), + (0x1F120, "3", "(q)"), + (0x1F121, "3", "(r)"), + (0x1F122, "3", "(s)"), + (0x1F123, "3", "(t)"), + (0x1F124, "3", "(u)"), + (0x1F125, "3", "(v)"), + (0x1F126, "3", "(w)"), + (0x1F127, "3", "(x)"), + (0x1F128, "3", "(y)"), + (0x1F129, "3", "(z)"), + (0x1F12A, "M", "〔s〕"), + (0x1F12B, "M", "c"), + (0x1F12C, "M", "r"), + (0x1F12D, "M", "cd"), + (0x1F12E, "M", "wz"), + (0x1F12F, "V"), + (0x1F130, "M", "a"), + (0x1F131, "M", "b"), + (0x1F132, "M", "c"), + (0x1F133, "M", "d"), + (0x1F134, "M", "e"), + (0x1F135, "M", "f"), + (0x1F136, "M", "g"), + (0x1F137, "M", "h"), + (0x1F138, "M", "i"), + (0x1F139, "M", "j"), + (0x1F13A, "M", "k"), + (0x1F13B, "M", "l"), + (0x1F13C, "M", "m"), + (0x1F13D, "M", "n"), + (0x1F13E, "M", "o"), + (0x1F13F, "M", "p"), + (0x1F140, "M", "q"), + (0x1F141, "M", "r"), + (0x1F142, "M", "s"), + (0x1F143, "M", "t"), + (0x1F144, "M", "u"), + (0x1F145, "M", "v"), + (0x1F146, "M", "w"), + (0x1F147, "M", "x"), + (0x1F148, "M", "y"), + (0x1F149, "M", "z"), + (0x1F14A, "M", "hv"), + (0x1F14B, "M", "mv"), + (0x1F14C, "M", "sd"), + (0x1F14D, "M", "ss"), + (0x1F14E, "M", "ppv"), + (0x1F14F, "M", "wc"), + (0x1F150, "V"), + (0x1F16A, "M", "mc"), + (0x1F16B, "M", "md"), + (0x1F16C, "M", "mr"), + (0x1F16D, "V"), + (0x1F190, "M", "dj"), + (0x1F191, "V"), + ] + + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F1AE, "X"), + (0x1F1E6, "V"), + (0x1F200, "M", "ほか"), + (0x1F201, "M", "ココ"), + (0x1F202, "M", "サ"), + (0x1F203, "X"), + (0x1F210, "M", "手"), + (0x1F211, "M", "字"), + (0x1F212, "M", "双"), + (0x1F213, "M", "デ"), + (0x1F214, "M", "二"), + (0x1F215, "M", "多"), + (0x1F216, "M", "解"), + (0x1F217, "M", "天"), + (0x1F218, "M", "交"), + (0x1F219, "M", "映"), + (0x1F21A, "M", "無"), + (0x1F21B, "M", "料"), + (0x1F21C, "M", "前"), + (0x1F21D, "M", "後"), + (0x1F21E, "M", "再"), + (0x1F21F, "M", "新"), + (0x1F220, "M", "初"), + (0x1F221, "M", "終"), + (0x1F222, "M", "生"), + (0x1F223, "M", "販"), + (0x1F224, "M", "声"), + (0x1F225, "M", "吹"), + (0x1F226, "M", "演"), + (0x1F227, "M", "投"), + (0x1F228, "M", "捕"), + (0x1F229, "M", "一"), + (0x1F22A, "M", "三"), + (0x1F22B, "M", "遊"), + (0x1F22C, "M", "左"), + (0x1F22D, "M", "中"), + (0x1F22E, "M", "右"), + (0x1F22F, "M", "指"), + (0x1F230, "M", "走"), + (0x1F231, "M", "打"), + (0x1F232, "M", "禁"), + (0x1F233, "M", "空"), + (0x1F234, "M", "合"), + (0x1F235, "M", "満"), + (0x1F236, "M", "有"), + (0x1F237, "M", "月"), + (0x1F238, "M", "申"), + (0x1F239, "M", "割"), + (0x1F23A, "M", "営"), + (0x1F23B, "M", "配"), + (0x1F23C, "X"), + (0x1F240, "M", "〔本〕"), + (0x1F241, "M", "〔三〕"), + (0x1F242, "M", "〔二〕"), + (0x1F243, "M", "〔安〕"), + (0x1F244, "M", "〔点〕"), + (0x1F245, "M", "〔打〕"), + (0x1F246, "M", "〔盗〕"), + (0x1F247, "M", "〔勝〕"), + (0x1F248, "M", "〔敗〕"), + (0x1F249, "X"), + (0x1F250, "M", "得"), + (0x1F251, "M", "可"), + (0x1F252, "X"), + (0x1F260, "V"), + (0x1F266, "X"), + (0x1F300, "V"), + (0x1F6D8, "X"), + (0x1F6DC, "V"), + (0x1F6ED, "X"), + (0x1F6F0, "V"), + (0x1F6FD, "X"), + (0x1F700, "V"), + (0x1F777, "X"), + (0x1F77B, "V"), + (0x1F7DA, "X"), + (0x1F7E0, "V"), + (0x1F7EC, "X"), + (0x1F7F0, "V"), + (0x1F7F1, "X"), + (0x1F800, "V"), + (0x1F80C, "X"), + (0x1F810, "V"), + (0x1F848, "X"), + (0x1F850, "V"), + (0x1F85A, "X"), + (0x1F860, "V"), + (0x1F888, "X"), + (0x1F890, "V"), + (0x1F8AE, "X"), + (0x1F8B0, "V"), + (0x1F8B2, "X"), + (0x1F900, "V"), + (0x1FA54, "X"), + (0x1FA60, "V"), + (0x1FA6E, "X"), + (0x1FA70, "V"), + (0x1FA7D, "X"), + (0x1FA80, "V"), + (0x1FA89, "X"), + ] + + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA90, "V"), + (0x1FABE, "X"), + (0x1FABF, "V"), + (0x1FAC6, "X"), + (0x1FACE, "V"), + (0x1FADC, "X"), + (0x1FAE0, "V"), + (0x1FAE9, "X"), + (0x1FAF0, "V"), + (0x1FAF9, "X"), + (0x1FB00, "V"), + (0x1FB93, "X"), + (0x1FB94, "V"), + (0x1FBCB, "X"), + (0x1FBF0, "M", "0"), + (0x1FBF1, "M", "1"), + (0x1FBF2, "M", "2"), + (0x1FBF3, "M", "3"), + (0x1FBF4, "M", "4"), + (0x1FBF5, "M", "5"), + (0x1FBF6, "M", "6"), + (0x1FBF7, "M", "7"), + (0x1FBF8, "M", "8"), + (0x1FBF9, "M", "9"), + (0x1FBFA, "X"), + (0x20000, "V"), + (0x2A6E0, "X"), + (0x2A700, "V"), + (0x2B73A, "X"), + (0x2B740, "V"), + (0x2B81E, "X"), + (0x2B820, "V"), + (0x2CEA2, "X"), + (0x2CEB0, "V"), + (0x2EBE1, "X"), + (0x2EBF0, "V"), + (0x2EE5E, "X"), + (0x2F800, "M", "丽"), + (0x2F801, "M", "丸"), + (0x2F802, "M", "乁"), + (0x2F803, "M", "𠄢"), + (0x2F804, "M", "你"), + (0x2F805, "M", "侮"), + (0x2F806, "M", "侻"), + (0x2F807, "M", "倂"), + (0x2F808, "M", "偺"), + (0x2F809, "M", "備"), + (0x2F80A, "M", "僧"), + (0x2F80B, "M", "像"), + (0x2F80C, "M", "㒞"), + (0x2F80D, "M", "𠘺"), + (0x2F80E, "M", "免"), + (0x2F80F, "M", "兔"), + (0x2F810, "M", "兤"), + (0x2F811, "M", "具"), + (0x2F812, "M", "𠔜"), + (0x2F813, "M", "㒹"), + (0x2F814, "M", "內"), + (0x2F815, "M", "再"), + (0x2F816, "M", "𠕋"), + (0x2F817, "M", "冗"), + (0x2F818, "M", "冤"), + (0x2F819, "M", "仌"), + (0x2F81A, "M", "冬"), + (0x2F81B, "M", "况"), + (0x2F81C, "M", "𩇟"), + (0x2F81D, "M", "凵"), + (0x2F81E, "M", "刃"), + (0x2F81F, "M", "㓟"), + (0x2F820, "M", "刻"), + (0x2F821, "M", "剆"), + (0x2F822, "M", "割"), + (0x2F823, "M", "剷"), + (0x2F824, "M", "㔕"), + (0x2F825, "M", "勇"), + (0x2F826, "M", "勉"), + (0x2F827, "M", "勤"), + (0x2F828, "M", "勺"), + (0x2F829, "M", "包"), + (0x2F82A, "M", "匆"), + (0x2F82B, "M", "北"), + (0x2F82C, "M", "卉"), + (0x2F82D, "M", "卑"), + (0x2F82E, "M", "博"), + (0x2F82F, "M", "即"), + (0x2F830, "M", "卽"), + (0x2F831, "M", "卿"), + (0x2F834, "M", "𠨬"), + (0x2F835, "M", "灰"), + (0x2F836, "M", "及"), + (0x2F837, "M", "叟"), + (0x2F838, "M", "𠭣"), + (0x2F839, "M", "叫"), + (0x2F83A, "M", "叱"), + (0x2F83B, "M", "吆"), + (0x2F83C, "M", "咞"), + (0x2F83D, "M", "吸"), + (0x2F83E, "M", "呈"), + (0x2F83F, "M", "周"), + (0x2F840, "M", "咢"), + ] + + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F841, "M", "哶"), + (0x2F842, "M", "唐"), + (0x2F843, "M", "啓"), + (0x2F844, "M", "啣"), + (0x2F845, "M", "善"), + (0x2F847, "M", "喙"), + (0x2F848, "M", "喫"), + (0x2F849, "M", "喳"), + (0x2F84A, "M", "嗂"), + (0x2F84B, "M", "圖"), + (0x2F84C, "M", "嘆"), + (0x2F84D, "M", "圗"), + (0x2F84E, "M", "噑"), + (0x2F84F, "M", "噴"), + (0x2F850, "M", "切"), + (0x2F851, "M", "壮"), + (0x2F852, "M", "城"), + (0x2F853, "M", "埴"), + (0x2F854, "M", "堍"), + (0x2F855, "M", "型"), + (0x2F856, "M", "堲"), + (0x2F857, "M", "報"), + (0x2F858, "M", "墬"), + (0x2F859, "M", "𡓤"), + (0x2F85A, "M", "売"), + (0x2F85B, "M", "壷"), + (0x2F85C, "M", "夆"), + (0x2F85D, "M", "多"), + (0x2F85E, "M", "夢"), + (0x2F85F, "M", "奢"), + (0x2F860, "M", "𡚨"), + (0x2F861, "M", "𡛪"), + (0x2F862, "M", "姬"), + (0x2F863, "M", "娛"), + (0x2F864, "M", "娧"), + (0x2F865, "M", "姘"), + (0x2F866, "M", "婦"), + (0x2F867, "M", "㛮"), + (0x2F868, "X"), + (0x2F869, "M", "嬈"), + (0x2F86A, "M", "嬾"), + (0x2F86C, "M", "𡧈"), + (0x2F86D, "M", "寃"), + (0x2F86E, "M", "寘"), + (0x2F86F, "M", "寧"), + (0x2F870, "M", "寳"), + (0x2F871, "M", "𡬘"), + (0x2F872, "M", "寿"), + (0x2F873, "M", "将"), + (0x2F874, "X"), + (0x2F875, "M", "尢"), + (0x2F876, "M", "㞁"), + (0x2F877, "M", "屠"), + (0x2F878, "M", "屮"), + (0x2F879, "M", "峀"), + (0x2F87A, "M", "岍"), + (0x2F87B, "M", "𡷤"), + (0x2F87C, "M", "嵃"), + (0x2F87D, "M", "𡷦"), + (0x2F87E, "M", "嵮"), + (0x2F87F, "M", "嵫"), + (0x2F880, "M", "嵼"), + (0x2F881, "M", "巡"), + (0x2F882, "M", "巢"), + (0x2F883, "M", "㠯"), + (0x2F884, "M", "巽"), + (0x2F885, "M", "帨"), + (0x2F886, "M", "帽"), + (0x2F887, "M", "幩"), + (0x2F888, "M", "㡢"), + (0x2F889, "M", "𢆃"), + (0x2F88A, "M", "㡼"), + (0x2F88B, "M", "庰"), + (0x2F88C, "M", "庳"), + (0x2F88D, "M", "庶"), + (0x2F88E, "M", "廊"), + (0x2F88F, "M", "𪎒"), + (0x2F890, "M", "廾"), + (0x2F891, "M", "𢌱"), + (0x2F893, "M", "舁"), + (0x2F894, "M", "弢"), + (0x2F896, "M", "㣇"), + (0x2F897, "M", "𣊸"), + (0x2F898, "M", "𦇚"), + (0x2F899, "M", "形"), + (0x2F89A, "M", "彫"), + (0x2F89B, "M", "㣣"), + (0x2F89C, "M", "徚"), + (0x2F89D, "M", "忍"), + (0x2F89E, "M", "志"), + (0x2F89F, "M", "忹"), + (0x2F8A0, "M", "悁"), + (0x2F8A1, "M", "㤺"), + (0x2F8A2, "M", "㤜"), + (0x2F8A3, "M", "悔"), + (0x2F8A4, "M", "𢛔"), + (0x2F8A5, "M", "惇"), + (0x2F8A6, "M", "慈"), + (0x2F8A7, "M", "慌"), + (0x2F8A8, "M", "慎"), + ] + + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A9, "M", "慌"), + (0x2F8AA, "M", "慺"), + (0x2F8AB, "M", "憎"), + (0x2F8AC, "M", "憲"), + (0x2F8AD, "M", "憤"), + (0x2F8AE, "M", "憯"), + (0x2F8AF, "M", "懞"), + (0x2F8B0, "M", "懲"), + (0x2F8B1, "M", "懶"), + (0x2F8B2, "M", "成"), + (0x2F8B3, "M", "戛"), + (0x2F8B4, "M", "扝"), + (0x2F8B5, "M", "抱"), + (0x2F8B6, "M", "拔"), + (0x2F8B7, "M", "捐"), + (0x2F8B8, "M", "𢬌"), + (0x2F8B9, "M", "挽"), + (0x2F8BA, "M", "拼"), + (0x2F8BB, "M", "捨"), + (0x2F8BC, "M", "掃"), + (0x2F8BD, "M", "揤"), + (0x2F8BE, "M", "𢯱"), + (0x2F8BF, "M", "搢"), + (0x2F8C0, "M", "揅"), + (0x2F8C1, "M", "掩"), + (0x2F8C2, "M", "㨮"), + (0x2F8C3, "M", "摩"), + (0x2F8C4, "M", "摾"), + (0x2F8C5, "M", "撝"), + (0x2F8C6, "M", "摷"), + (0x2F8C7, "M", "㩬"), + (0x2F8C8, "M", "敏"), + (0x2F8C9, "M", "敬"), + (0x2F8CA, "M", "𣀊"), + (0x2F8CB, "M", "旣"), + (0x2F8CC, "M", "書"), + (0x2F8CD, "M", "晉"), + (0x2F8CE, "M", "㬙"), + (0x2F8CF, "M", "暑"), + (0x2F8D0, "M", "㬈"), + (0x2F8D1, "M", "㫤"), + (0x2F8D2, "M", "冒"), + (0x2F8D3, "M", "冕"), + (0x2F8D4, "M", "最"), + (0x2F8D5, "M", "暜"), + (0x2F8D6, "M", "肭"), + (0x2F8D7, "M", "䏙"), + (0x2F8D8, "M", "朗"), + (0x2F8D9, "M", "望"), + (0x2F8DA, "M", "朡"), + (0x2F8DB, "M", "杞"), + (0x2F8DC, "M", "杓"), + (0x2F8DD, "M", "𣏃"), + (0x2F8DE, "M", "㭉"), + (0x2F8DF, "M", "柺"), + (0x2F8E0, "M", "枅"), + (0x2F8E1, "M", "桒"), + (0x2F8E2, "M", "梅"), + (0x2F8E3, "M", "𣑭"), + (0x2F8E4, "M", "梎"), + (0x2F8E5, "M", "栟"), + (0x2F8E6, "M", "椔"), + (0x2F8E7, "M", "㮝"), + (0x2F8E8, "M", "楂"), + (0x2F8E9, "M", "榣"), + (0x2F8EA, "M", "槪"), + (0x2F8EB, "M", "檨"), + (0x2F8EC, "M", "𣚣"), + (0x2F8ED, "M", "櫛"), + (0x2F8EE, "M", "㰘"), + (0x2F8EF, "M", "次"), + (0x2F8F0, "M", "𣢧"), + (0x2F8F1, "M", "歔"), + (0x2F8F2, "M", "㱎"), + (0x2F8F3, "M", "歲"), + (0x2F8F4, "M", "殟"), + (0x2F8F5, "M", "殺"), + (0x2F8F6, "M", "殻"), + (0x2F8F7, "M", "𣪍"), + (0x2F8F8, "M", "𡴋"), + (0x2F8F9, "M", "𣫺"), + (0x2F8FA, "M", "汎"), + (0x2F8FB, "M", "𣲼"), + (0x2F8FC, "M", "沿"), + (0x2F8FD, "M", "泍"), + (0x2F8FE, "M", "汧"), + (0x2F8FF, "M", "洖"), + (0x2F900, "M", "派"), + (0x2F901, "M", "海"), + (0x2F902, "M", "流"), + (0x2F903, "M", "浩"), + (0x2F904, "M", "浸"), + (0x2F905, "M", "涅"), + (0x2F906, "M", "𣴞"), + (0x2F907, "M", "洴"), + (0x2F908, "M", "港"), + (0x2F909, "M", "湮"), + (0x2F90A, "M", "㴳"), + (0x2F90B, "M", "滋"), + (0x2F90C, "M", "滇"), + ] + + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90D, "M", "𣻑"), + (0x2F90E, "M", "淹"), + (0x2F90F, "M", "潮"), + (0x2F910, "M", "𣽞"), + (0x2F911, "M", "𣾎"), + (0x2F912, "M", "濆"), + (0x2F913, "M", "瀹"), + (0x2F914, "M", "瀞"), + (0x2F915, "M", "瀛"), + (0x2F916, "M", "㶖"), + (0x2F917, "M", "灊"), + (0x2F918, "M", "災"), + (0x2F919, "M", "灷"), + (0x2F91A, "M", "炭"), + (0x2F91B, "M", "𠔥"), + (0x2F91C, "M", "煅"), + (0x2F91D, "M", "𤉣"), + (0x2F91E, "M", "熜"), + (0x2F91F, "X"), + (0x2F920, "M", "爨"), + (0x2F921, "M", "爵"), + (0x2F922, "M", "牐"), + (0x2F923, "M", "𤘈"), + (0x2F924, "M", "犀"), + (0x2F925, "M", "犕"), + (0x2F926, "M", "𤜵"), + (0x2F927, "M", "𤠔"), + (0x2F928, "M", "獺"), + (0x2F929, "M", "王"), + (0x2F92A, "M", "㺬"), + (0x2F92B, "M", "玥"), + (0x2F92C, "M", "㺸"), + (0x2F92E, "M", "瑇"), + (0x2F92F, "M", "瑜"), + (0x2F930, "M", "瑱"), + (0x2F931, "M", "璅"), + (0x2F932, "M", "瓊"), + (0x2F933, "M", "㼛"), + (0x2F934, "M", "甤"), + (0x2F935, "M", "𤰶"), + (0x2F936, "M", "甾"), + (0x2F937, "M", "𤲒"), + (0x2F938, "M", "異"), + (0x2F939, "M", "𢆟"), + (0x2F93A, "M", "瘐"), + (0x2F93B, "M", "𤾡"), + (0x2F93C, "M", "𤾸"), + (0x2F93D, "M", "𥁄"), + (0x2F93E, "M", "㿼"), + (0x2F93F, "M", "䀈"), + (0x2F940, "M", "直"), + (0x2F941, "M", "𥃳"), + (0x2F942, "M", "𥃲"), + (0x2F943, "M", "𥄙"), + (0x2F944, "M", "𥄳"), + (0x2F945, "M", "眞"), + (0x2F946, "M", "真"), + (0x2F948, "M", "睊"), + (0x2F949, "M", "䀹"), + (0x2F94A, "M", "瞋"), + (0x2F94B, "M", "䁆"), + (0x2F94C, "M", "䂖"), + (0x2F94D, "M", "𥐝"), + (0x2F94E, "M", "硎"), + (0x2F94F, "M", "碌"), + (0x2F950, "M", "磌"), + (0x2F951, "M", "䃣"), + (0x2F952, "M", "𥘦"), + (0x2F953, "M", "祖"), + (0x2F954, "M", "𥚚"), + (0x2F955, "M", "𥛅"), + (0x2F956, "M", "福"), + (0x2F957, "M", "秫"), + (0x2F958, "M", "䄯"), + (0x2F959, "M", "穀"), + (0x2F95A, "M", "穊"), + (0x2F95B, "M", "穏"), + (0x2F95C, "M", "𥥼"), + (0x2F95D, "M", "𥪧"), + (0x2F95F, "X"), + (0x2F960, "M", "䈂"), + (0x2F961, "M", "𥮫"), + (0x2F962, "M", "篆"), + (0x2F963, "M", "築"), + (0x2F964, "M", "䈧"), + (0x2F965, "M", "𥲀"), + (0x2F966, "M", "糒"), + (0x2F967, "M", "䊠"), + (0x2F968, "M", "糨"), + (0x2F969, "M", "糣"), + (0x2F96A, "M", "紀"), + (0x2F96B, "M", "𥾆"), + (0x2F96C, "M", "絣"), + (0x2F96D, "M", "䌁"), + (0x2F96E, "M", "緇"), + (0x2F96F, "M", "縂"), + (0x2F970, "M", "繅"), + (0x2F971, "M", "䌴"), + (0x2F972, "M", "𦈨"), + (0x2F973, "M", "𦉇"), + ] + + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F974, "M", "䍙"), + (0x2F975, "M", "𦋙"), + (0x2F976, "M", "罺"), + (0x2F977, "M", "𦌾"), + (0x2F978, "M", "羕"), + (0x2F979, "M", "翺"), + (0x2F97A, "M", "者"), + (0x2F97B, "M", "𦓚"), + (0x2F97C, "M", "𦔣"), + (0x2F97D, "M", "聠"), + (0x2F97E, "M", "𦖨"), + (0x2F97F, "M", "聰"), + (0x2F980, "M", "𣍟"), + (0x2F981, "M", "䏕"), + (0x2F982, "M", "育"), + (0x2F983, "M", "脃"), + (0x2F984, "M", "䐋"), + (0x2F985, "M", "脾"), + (0x2F986, "M", "媵"), + (0x2F987, "M", "𦞧"), + (0x2F988, "M", "𦞵"), + (0x2F989, "M", "𣎓"), + (0x2F98A, "M", "𣎜"), + (0x2F98B, "M", "舁"), + (0x2F98C, "M", "舄"), + (0x2F98D, "M", "辞"), + (0x2F98E, "M", "䑫"), + (0x2F98F, "M", "芑"), + (0x2F990, "M", "芋"), + (0x2F991, "M", "芝"), + (0x2F992, "M", "劳"), + (0x2F993, "M", "花"), + (0x2F994, "M", "芳"), + (0x2F995, "M", "芽"), + (0x2F996, "M", "苦"), + (0x2F997, "M", "𦬼"), + (0x2F998, "M", "若"), + (0x2F999, "M", "茝"), + (0x2F99A, "M", "荣"), + (0x2F99B, "M", "莭"), + (0x2F99C, "M", "茣"), + (0x2F99D, "M", "莽"), + (0x2F99E, "M", "菧"), + (0x2F99F, "M", "著"), + (0x2F9A0, "M", "荓"), + (0x2F9A1, "M", "菊"), + (0x2F9A2, "M", "菌"), + (0x2F9A3, "M", "菜"), + (0x2F9A4, "M", "𦰶"), + (0x2F9A5, "M", "𦵫"), + (0x2F9A6, "M", "𦳕"), + (0x2F9A7, "M", "䔫"), + (0x2F9A8, "M", "蓱"), + (0x2F9A9, "M", "蓳"), + (0x2F9AA, "M", "蔖"), + (0x2F9AB, "M", "𧏊"), + (0x2F9AC, "M", "蕤"), + (0x2F9AD, "M", "𦼬"), + (0x2F9AE, "M", "䕝"), + (0x2F9AF, "M", "䕡"), + (0x2F9B0, "M", "𦾱"), + (0x2F9B1, "M", "𧃒"), + (0x2F9B2, "M", "䕫"), + (0x2F9B3, "M", "虐"), + (0x2F9B4, "M", "虜"), + (0x2F9B5, "M", "虧"), + (0x2F9B6, "M", "虩"), + (0x2F9B7, "M", "蚩"), + (0x2F9B8, "M", "蚈"), + (0x2F9B9, "M", "蜎"), + (0x2F9BA, "M", "蛢"), + (0x2F9BB, "M", "蝹"), + (0x2F9BC, "M", "蜨"), + (0x2F9BD, "M", "蝫"), + (0x2F9BE, "M", "螆"), + (0x2F9BF, "X"), + (0x2F9C0, "M", "蟡"), + (0x2F9C1, "M", "蠁"), + (0x2F9C2, "M", "䗹"), + (0x2F9C3, "M", "衠"), + (0x2F9C4, "M", "衣"), + (0x2F9C5, "M", "𧙧"), + (0x2F9C6, "M", "裗"), + (0x2F9C7, "M", "裞"), + (0x2F9C8, "M", "䘵"), + (0x2F9C9, "M", "裺"), + (0x2F9CA, "M", "㒻"), + (0x2F9CB, "M", "𧢮"), + (0x2F9CC, "M", "𧥦"), + (0x2F9CD, "M", "䚾"), + (0x2F9CE, "M", "䛇"), + (0x2F9CF, "M", "誠"), + (0x2F9D0, "M", "諭"), + (0x2F9D1, "M", "變"), + (0x2F9D2, "M", "豕"), + (0x2F9D3, "M", "𧲨"), + (0x2F9D4, "M", "貫"), + (0x2F9D5, "M", "賁"), + (0x2F9D6, "M", "贛"), + (0x2F9D7, "M", "起"), + ] + + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D8, "M", "𧼯"), + (0x2F9D9, "M", "𠠄"), + (0x2F9DA, "M", "跋"), + (0x2F9DB, "M", "趼"), + (0x2F9DC, "M", "跰"), + (0x2F9DD, "M", "𠣞"), + (0x2F9DE, "M", "軔"), + (0x2F9DF, "M", "輸"), + (0x2F9E0, "M", "𨗒"), + (0x2F9E1, "M", "𨗭"), + (0x2F9E2, "M", "邔"), + (0x2F9E3, "M", "郱"), + (0x2F9E4, "M", "鄑"), + (0x2F9E5, "M", "𨜮"), + (0x2F9E6, "M", "鄛"), + (0x2F9E7, "M", "鈸"), + (0x2F9E8, "M", "鋗"), + (0x2F9E9, "M", "鋘"), + (0x2F9EA, "M", "鉼"), + (0x2F9EB, "M", "鏹"), + (0x2F9EC, "M", "鐕"), + (0x2F9ED, "M", "𨯺"), + (0x2F9EE, "M", "開"), + (0x2F9EF, "M", "䦕"), + (0x2F9F0, "M", "閷"), + (0x2F9F1, "M", "𨵷"), + (0x2F9F2, "M", "䧦"), + (0x2F9F3, "M", "雃"), + (0x2F9F4, "M", "嶲"), + (0x2F9F5, "M", "霣"), + (0x2F9F6, "M", "𩅅"), + (0x2F9F7, "M", "𩈚"), + (0x2F9F8, "M", "䩮"), + (0x2F9F9, "M", "䩶"), + (0x2F9FA, "M", "韠"), + (0x2F9FB, "M", "𩐊"), + (0x2F9FC, "M", "䪲"), + (0x2F9FD, "M", "𩒖"), + (0x2F9FE, "M", "頋"), + (0x2FA00, "M", "頩"), + (0x2FA01, "M", "𩖶"), + (0x2FA02, "M", "飢"), + (0x2FA03, "M", "䬳"), + (0x2FA04, "M", "餩"), + (0x2FA05, "M", "馧"), + (0x2FA06, "M", "駂"), + (0x2FA07, "M", "駾"), + (0x2FA08, "M", "䯎"), + (0x2FA09, "M", "𩬰"), + (0x2FA0A, "M", "鬒"), + (0x2FA0B, "M", "鱀"), + (0x2FA0C, "M", "鳽"), + (0x2FA0D, "M", "䳎"), + (0x2FA0E, "M", "䳭"), + (0x2FA0F, "M", "鵧"), + (0x2FA10, "M", "𪃎"), + (0x2FA11, "M", "䳸"), + (0x2FA12, "M", "𪄅"), + (0x2FA13, "M", "𪈎"), + (0x2FA14, "M", "𪊑"), + (0x2FA15, "M", "麻"), + (0x2FA16, "M", "䵖"), + (0x2FA17, "M", "黹"), + (0x2FA18, "M", "黾"), + (0x2FA19, "M", "鼅"), + (0x2FA1A, "M", "鼏"), + (0x2FA1B, "M", "鼖"), + (0x2FA1C, "M", "鼻"), + (0x2FA1D, "M", "𪘀"), + (0x2FA1E, "X"), + (0x30000, "V"), + (0x3134B, "X"), + (0x31350, "V"), + (0x323B0, "X"), + (0xE0100, "I"), + (0xE01F0, "X"), + ] + + +uts46data = tuple( + _seg_0() + + _seg_1() + + _seg_2() + + _seg_3() + + _seg_4() + + _seg_5() + + _seg_6() + + _seg_7() + + _seg_8() + + _seg_9() + + _seg_10() + + _seg_11() + + _seg_12() + + _seg_13() + + _seg_14() + + _seg_15() + + _seg_16() + + _seg_17() + + _seg_18() + + _seg_19() + + _seg_20() + + _seg_21() + + _seg_22() + + _seg_23() + + _seg_24() + + _seg_25() + + _seg_26() + + _seg_27() + + _seg_28() + + _seg_29() + + _seg_30() + + _seg_31() + + _seg_32() + + _seg_33() + + _seg_34() + + _seg_35() + + _seg_36() + + _seg_37() + + _seg_38() + + _seg_39() + + _seg_40() + + _seg_41() + + _seg_42() + + _seg_43() + + _seg_44() + + _seg_45() + + _seg_46() + + _seg_47() + + _seg_48() + + _seg_49() + + _seg_50() + + _seg_51() + + _seg_52() + + _seg_53() + + _seg_54() + + _seg_55() + + _seg_56() + + _seg_57() + + _seg_58() + + _seg_59() + + _seg_60() + + _seg_61() + + _seg_62() + + _seg_63() + + _seg_64() + + _seg_65() + + _seg_66() + + _seg_67() + + _seg_68() + + _seg_69() + + _seg_70() + + _seg_71() + + _seg_72() + + _seg_73() + + _seg_74() + + _seg_75() + + _seg_76() + + _seg_77() + + _seg_78() + + _seg_79() + + _seg_80() + + _seg_81() +) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING new file mode 100644 index 0000000..f067af3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING @@ -0,0 +1,14 @@ +Copyright (C) 2008-2011 INADA Naoki + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 0000000..f3266b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py @@ -0,0 +1,55 @@ +# ruff: noqa: F401 +import os + +from .exceptions import * # noqa: F403 +from .ext import ExtType, Timestamp + +version = (1, 1, 2) +__version__ = "1.1.2" + + +if os.environ.get("MSGPACK_PUREPYTHON"): + from .fallback import Packer, Unpacker, unpackb +else: + try: + from ._cmsgpack import Packer, Unpacker, unpackb + except ImportError: + from .fallback import Packer, Unpacker, unpackb + + +def pack(o, stream, **kwargs): + """ + Pack object `o` and write it to `stream` + + See :class:`Packer` for options. + """ + packer = Packer(**kwargs) + stream.write(packer.pack(o)) + + +def packb(o, **kwargs): + """ + Pack object `o` and return packed bytes + + See :class:`Packer` for options. + """ + return Packer(**kwargs).pack(o) + + +def unpack(stream, **kwargs): + """ + Unpack an object from `stream`. + + Raises `ExtraData` when `stream` contains extra bytes. + See :class:`Unpacker` for options. + """ + data = stream.read() + return unpackb(data, **kwargs) + + +# alias for compatibility to simplejson/marshal/pickle. +load = unpack +loads = unpackb + +dump = pack +dumps = packb diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9b164a46478720d33476c326f814cb637a8e87b GIT binary patch literal 1752 zcmb7E&rcgi6rS;}f3D3B2a+O`bQ`CQOoc5%n;_C6(S)>BDWL(>vKM>p9bk=j*P2-{ zMvi2pN~mhoQuRQNJ@isV{S$h~xff_!6^$YhDZOyBpofY}`(_tgB&CNwX}^6l`)20N z_r142ClWCP)-V0NG$$kUTnt(UW6zGB!fP8D$iQW!AtPW&W&C3R3r{WwEJ>3rS(9NL z)PhDx3lUW6I9Yq@Rq8%9IB|{eBka3Wf!!kIs1?&+5dYZbzyv!+Fut6P<{L?wvu;2;3rdT=N+l)1)}AJ4o$J$~z>-1OYN ziRt;-5AIH-B_5jAi_3)a$edmAz3__X6^deU%Yxu2@EmCX+sHj31i{5kR1bWQzry#W zIxdN$U$VMX602XbI%<*HdSg_>X=(klmCaZSf&882w+2L#+iArBt(w&Jq5aa!is;URxN z9$K#Ibdm9pPX-g^CGt65&Q=||%wU?Z?99aAgUHVfHG&0TWr;mpvrEQ8bs#h&^itgo1rY!1Q+C681k7p$W(;9q=^qt_yw_Owl9& z6XmC>R8YW!;)DXd0RAQM?IM6jNj$l$^l#k(_+3$V74^IBCrWBZPSIY7IGc)5__B@a zsC1erm=pHMf1&#Uw_VBgz(SiWpaZWz@aXXS1q!oOrVG@u+I5-nX}G7Gj4(A1ZA$gq zx~u2a>JqWrVQSH_UEQ>qN<@UupkJ=1Yr55&XH+%(1Z3z0gNp8i`WF8$k3TLOa2^xa zfco`m4Ee21`(g4bJnU6~25NSoc=GF;U)=oi-Nx;wN^i|3QWsk}9c^+^W zkCC+^@q3C(B4bfsGz7rItAsLWHm>BLvOPDK<6&q8lftaDNL(IS(97ilDCsLMe(GM@ zJen(>v;kK>v?>mDCn$BO-v>f;FJms39o^tTfefycC zj1ItJp);!iG$oAja}@mp_3fk7v)H*tc(0?kp)^BC4sDKZjBbu?jO`@f_*J^PFAx7B z4>x5gII1fD%k9SA0J6xXVE_OC literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a373de361a10cddfa1b882dbed6eba3893f7c370 GIT binary patch literal 2038 zcmb7FPjBNy6dyZw>bObUly-p@mFWSrUTu>F!~ukmw$Mc@p%iJm9CERy_N1}avBQj$ zuB#p@(Ze1<>aBa=3siiRy)3uNSH3{mL?smeaCR@p4x=)kc@W5-{fkbTywe zbzf^1Qr#(Ji%+92^PcTI_jor6;^^qrHj|usA(N7}VnJox;gpZXk_r|`?$g6|5OUg6 z#zAyYvuz5evAehPwIVEp& z)3gNkqmtbIP0Jv@{-&ws=$XCUYqhv|)C{^ziz-CnZW`j#cEAr{cIhZV&P={W||B79E!CU|+$28*5c>e97S1~k_ zJJX?8^3aIi9{K~2Tz_61Ss#{5)9?#G&D3zrthDny5e(~o^z($J!PJ=Y2*!;Ijv%N8 zAxtav!C*A9du zh=Rm*kCrEIUmIf|p*ptF3AucazA%2NT&}LYFn+aF-MvY0(7>Zo#l|@&I7yA8jXasV z`wkV{<3S(Rp2{jOpXx716YF3i(b*^`SSC;*NU1uVl7bvm#m<9_7V9dFhEtp!QVSFW zetWTjWM-1yMGOfFCC<+&`AauU>rGiV*9VqnKFIqDbsA0uTV%A`^F^bE9_=#wM;7+D z>R~k)sztMns=&cnp^{t#tO`kicVTA-_1`H_z_9jPbUKlGU@dmoDB`uWYii l@tQ0Ri)HP>>m@oQ@Vug=x^_~ztgfFdT&`^XL8_`w{{T2|)y4n- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3452136e24506fc3aab774a8a76502e84e5f36e9 GIT binary patch literal 8306 zcmb_hYit`=cAgnNL{XH6BK5W-Uq`kh#uh2rk`l>w9LIJH*N)eYl*G$;Lyb5iiw-%I zXNHc&l{enPK;>k2BX3bi$!<{vH4p_}VEuCo6lmHXZP8)@(sV18s{#d@AN4;)Hn0n$ zKzh!dCn?&&0=1lv@UX~;jL4>$ zxc>u4zPrN|KUEM!hs6B;SuFjaAYKJwWmO(Z2)v z3wDvwSjq=7$7<$k7;_hDgN8k55!t&&+dpL;y*SNlwy4>QvwMlIIX1~%fz7EP7Rvug21;$=J-SHl39ZL^{F^J+!^>+(0R`zYy5J z;bMZs$yn!GZhdg;!zFe3_{y#lA1nA`k6=DfQ`rZL0JBIW%Kk(mlNEDmd=4ZMS8_ty zr~zq;*<>O?mtSr)AvX^=3hgmC=`npc%DPzBLS34&4$0{O#D=0Ds6zjxPp`ZpLL zN{iVfUr)7;im7dr3(&ICB1KMgUE<wx-1AJBTqFV^2= z?m~Yo@dnWk+yHPJ9Nb1R0Nf_vHafVx*aY05$OCPLx}c*jG}{~r0}4|a31FF-5#ENa zTW?NBpiN7}t^fo`vYN`uTbzU64;UoxOiMDE%%##A`5>iDlVcQK`%D)?a;l_~VO_@jS%QEgf-I7pOdlt#$tI%qkU6lQOJpXeNPXw%kmiW{$mmo~PL57!*#tGD2|Ad; zoKmtGi>*jFz37~jPEc!NS}{JIQVF#(0uQN7CZ`FLX=#)k&k{MSk?d7TQBvR@R4JL2 zVLP}DS&*~FyT1N%o$*?3aMV@!QnX;|OAGMu|KdrX?SCshDOcf1p(l9KIz$_mDo

  1. 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 z zJv#%XQY5rUCOtA7S-9mY-s(&>CnFrD$>)%GVI|pB0+I(=&vXB`rINlJ#gi4O z4~E70c2Axbo|w}k1~CA73R0|E2tPv^%$P+YzjM#t_G8_>u;A8l?8wnQ{oP#$yLv_O z5X}zpjFD|2pFx|1&E#w)XE!;ta}@bWb{fV=3=s~om-HD<)|FJl7N1keL8kr^jIzgb*!}E5EjoNd(w_4+^vu z5S}9d&_qb+{eeU_zFCgjz_=bB6hBs5PiY#+p+RL9ml6gt5Yj}itI1g)Cq~Xs$eAbS z2ju(-Ie$vdACvQ!h=u1vO(NRzI||@U)FP|fA66q2itprqI)`pA5zo~ za@e2{@epB=3*YDFZ6h!hFznkQkmLvdxnLWH3>pGD-KX4!f6L|kIhXwxT;pFGvM2HB z+Uhw&&0iR6|H9aEue361Ec%(zVQP5D!TEpdI8*7pQa1u08g-_;pP4z`5#3$x@LzG& z_p&YLGa>LhZ^c&}qnr!66HzYjUT)rb8&-z%*^nfhH>WuFib|tgK1>MJdTyC8w7QCi zHlxn*&{m+cKUl{(^UvEK=*wOD1*3U#?POs3Tr|7kfdK*cSO7n@FPdHcz=QylVah@p zDJYYI%t=966qGFn`KG=S&8~Q0p&)BgP!0vzD9H1`PJV~z&n17Jm^46nofO~_BlF2$ zAo>f*UnKgA$zMYLh6knOFB8Md$zLJ*E6MK`{Z-^&MgFyuQWL8wsD^{-eK7z4OykR$ zJTnE@;QY)gL5X}KEK+^@quG^WnCc@is_7nXL8Vd7@v~jJ7czC#f6I~kvyg3%Nw@kT JM=ryy{{~)U-*f-~ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py new file mode 100644 index 0000000..d6d2615 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py @@ -0,0 +1,48 @@ +class UnpackException(Exception): + """Base class for some exceptions raised while unpacking. + + NOTE: unpack may raise exception other than subclass of + UnpackException. If you want to catch all error, catch + Exception instead. + """ + + +class BufferFull(UnpackException): + pass + + +class OutOfData(UnpackException): + pass + + +class FormatError(ValueError, UnpackException): + """Invalid msgpack format""" + + +class StackError(ValueError, UnpackException): + """Too nested""" + + +# Deprecated. Use ValueError instead +UnpackValueError = ValueError + + +class ExtraData(UnpackValueError): + """ExtraData is raised when there is trailing data. + + This exception is raised while only one-shot (not streaming) + unpack. + """ + + def __init__(self, unpacked, extra): + self.unpacked = unpacked + self.extra = extra + + def __str__(self): + return "unpack(b) received extra data." + + +# Deprecated. Use Exception instead to catch all exception during packing. +PackException = Exception +PackValueError = ValueError +PackOverflowError = OverflowError diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py new file mode 100644 index 0000000..9694819 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py @@ -0,0 +1,170 @@ +import datetime +import struct +from collections import namedtuple + + +class ExtType(namedtuple("ExtType", "code data")): + """ExtType represents ext type in msgpack.""" + + def __new__(cls, code, data): + if not isinstance(code, int): + raise TypeError("code must be int") + if not isinstance(data, bytes): + raise TypeError("data must be bytes") + if not 0 <= code <= 127: + raise ValueError("code must be 0~127") + return super().__new__(cls, code, data) + + +class Timestamp: + """Timestamp represents the Timestamp extension type in msgpack. + + When built with Cython, msgpack uses C methods to pack and unpack `Timestamp`. + When using pure-Python msgpack, :func:`to_bytes` and :func:`from_bytes` are used to pack and + unpack `Timestamp`. + + This class is immutable: Do not override seconds and nanoseconds. + """ + + __slots__ = ["seconds", "nanoseconds"] + + def __init__(self, seconds, nanoseconds=0): + """Initialize a Timestamp object. + + :param int seconds: + Number of seconds since the UNIX epoch (00:00:00 UTC Jan 1 1970, minus leap seconds). + May be negative. + + :param int nanoseconds: + Number of nanoseconds to add to `seconds` to get fractional time. + Maximum is 999_999_999. Default is 0. + + Note: Negative times (before the UNIX epoch) are represented as neg. seconds + pos. ns. + """ + if not isinstance(seconds, int): + raise TypeError("seconds must be an integer") + if not isinstance(nanoseconds, int): + raise TypeError("nanoseconds must be an integer") + if not (0 <= nanoseconds < 10**9): + raise ValueError("nanoseconds must be a non-negative integer less than 999999999.") + self.seconds = seconds + self.nanoseconds = nanoseconds + + def __repr__(self): + """String representation of Timestamp.""" + return f"Timestamp(seconds={self.seconds}, nanoseconds={self.nanoseconds})" + + def __eq__(self, other): + """Check for equality with another Timestamp object""" + if type(other) is self.__class__: + return self.seconds == other.seconds and self.nanoseconds == other.nanoseconds + return False + + def __ne__(self, other): + """not-equals method (see :func:`__eq__()`)""" + return not self.__eq__(other) + + def __hash__(self): + return hash((self.seconds, self.nanoseconds)) + + @staticmethod + def from_bytes(b): + """Unpack bytes into a `Timestamp` object. + + Used for pure-Python msgpack unpacking. + + :param b: Payload from msgpack ext message with code -1 + :type b: bytes + + :returns: Timestamp object unpacked from msgpack ext payload + :rtype: Timestamp + """ + if len(b) == 4: + seconds = struct.unpack("!L", b)[0] + nanoseconds = 0 + elif len(b) == 8: + data64 = struct.unpack("!Q", b)[0] + seconds = data64 & 0x00000003FFFFFFFF + nanoseconds = data64 >> 34 + elif len(b) == 12: + nanoseconds, seconds = struct.unpack("!Iq", b) + else: + raise ValueError( + "Timestamp type can only be created from 32, 64, or 96-bit byte objects" + ) + return Timestamp(seconds, nanoseconds) + + def to_bytes(self): + """Pack this Timestamp object into bytes. + + Used for pure-Python msgpack packing. + + :returns data: Payload for EXT message with code -1 (timestamp type) + :rtype: bytes + """ + if (self.seconds >> 34) == 0: # seconds is non-negative and fits in 34 bits + data64 = self.nanoseconds << 34 | self.seconds + if data64 & 0xFFFFFFFF00000000 == 0: + # nanoseconds is zero and seconds < 2**32, so timestamp 32 + data = struct.pack("!L", data64) + else: + # timestamp 64 + data = struct.pack("!Q", data64) + else: + # timestamp 96 + data = struct.pack("!Iq", self.nanoseconds, self.seconds) + return data + + @staticmethod + def from_unix(unix_sec): + """Create a Timestamp from posix timestamp in seconds. + + :param unix_float: Posix timestamp in seconds. + :type unix_float: int or float + """ + seconds = int(unix_sec // 1) + nanoseconds = int((unix_sec % 1) * 10**9) + return Timestamp(seconds, nanoseconds) + + def to_unix(self): + """Get the timestamp as a floating-point value. + + :returns: posix timestamp + :rtype: float + """ + return self.seconds + self.nanoseconds / 1e9 + + @staticmethod + def from_unix_nano(unix_ns): + """Create a Timestamp from posix timestamp in nanoseconds. + + :param int unix_ns: Posix timestamp in nanoseconds. + :rtype: Timestamp + """ + return Timestamp(*divmod(unix_ns, 10**9)) + + def to_unix_nano(self): + """Get the timestamp as a unixtime in nanoseconds. + + :returns: posix timestamp in nanoseconds + :rtype: int + """ + return self.seconds * 10**9 + self.nanoseconds + + def to_datetime(self): + """Get the timestamp as a UTC datetime. + + :rtype: `datetime.datetime` + """ + utc = datetime.timezone.utc + return datetime.datetime.fromtimestamp(0, utc) + datetime.timedelta( + seconds=self.seconds, microseconds=self.nanoseconds // 1000 + ) + + @staticmethod + def from_datetime(dt): + """Create a Timestamp from datetime with tzinfo. + + :rtype: Timestamp + """ + return Timestamp(seconds=int(dt.timestamp()), nanoseconds=dt.microsecond * 1000) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 0000000..b02e47c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py @@ -0,0 +1,929 @@ +"""Fallback pure Python implementation of msgpack""" + +import struct +import sys +from datetime import datetime as _DateTime + +if hasattr(sys, "pypy_version_info"): + from __pypy__ import newlist_hint + from __pypy__.builders import BytesBuilder + + _USING_STRINGBUILDER = True + + class BytesIO: + def __init__(self, s=b""): + if s: + self.builder = BytesBuilder(len(s)) + self.builder.append(s) + else: + self.builder = BytesBuilder() + + def write(self, s): + if isinstance(s, memoryview): + s = s.tobytes() + elif isinstance(s, bytearray): + s = bytes(s) + self.builder.append(s) + + def getvalue(self): + return self.builder.build() + +else: + from io import BytesIO + + _USING_STRINGBUILDER = False + + def newlist_hint(size): + return [] + + +from .exceptions import BufferFull, ExtraData, FormatError, OutOfData, StackError +from .ext import ExtType, Timestamp + +EX_SKIP = 0 +EX_CONSTRUCT = 1 +EX_READ_ARRAY_HEADER = 2 +EX_READ_MAP_HEADER = 3 + +TYPE_IMMEDIATE = 0 +TYPE_ARRAY = 1 +TYPE_MAP = 2 +TYPE_RAW = 3 +TYPE_BIN = 4 +TYPE_EXT = 5 + +DEFAULT_RECURSE_LIMIT = 511 + + +def _check_type_strict(obj, t, type=type, tuple=tuple): + if type(t) is tuple: + return type(obj) in t + else: + return type(obj) is t + + +def _get_data_from_buffer(obj): + view = memoryview(obj) + if view.itemsize != 1: + raise ValueError("cannot unpack from multi-byte object") + return view + + +def unpackb(packed, **kwargs): + """ + Unpack an object from `packed`. + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``ValueError`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + + See :class:`Unpacker` for options. + """ + unpacker = Unpacker(None, max_buffer_size=len(packed), **kwargs) + unpacker.feed(packed) + try: + ret = unpacker._unpack() + except OutOfData: + raise ValueError("Unpack failed: incomplete input") + except RecursionError: + raise StackError + if unpacker._got_extradata(): + raise ExtraData(ret, unpacker._get_extradata()) + return ret + + +_NO_FORMAT_USED = "" +_MSGPACK_HEADERS = { + 0xC4: (1, _NO_FORMAT_USED, TYPE_BIN), + 0xC5: (2, ">H", TYPE_BIN), + 0xC6: (4, ">I", TYPE_BIN), + 0xC7: (2, "Bb", TYPE_EXT), + 0xC8: (3, ">Hb", TYPE_EXT), + 0xC9: (5, ">Ib", TYPE_EXT), + 0xCA: (4, ">f"), + 0xCB: (8, ">d"), + 0xCC: (1, _NO_FORMAT_USED), + 0xCD: (2, ">H"), + 0xCE: (4, ">I"), + 0xCF: (8, ">Q"), + 0xD0: (1, "b"), + 0xD1: (2, ">h"), + 0xD2: (4, ">i"), + 0xD3: (8, ">q"), + 0xD4: (1, "b1s", TYPE_EXT), + 0xD5: (2, "b2s", TYPE_EXT), + 0xD6: (4, "b4s", TYPE_EXT), + 0xD7: (8, "b8s", TYPE_EXT), + 0xD8: (16, "b16s", TYPE_EXT), + 0xD9: (1, _NO_FORMAT_USED, TYPE_RAW), + 0xDA: (2, ">H", TYPE_RAW), + 0xDB: (4, ">I", TYPE_RAW), + 0xDC: (2, ">H", TYPE_ARRAY), + 0xDD: (4, ">I", TYPE_ARRAY), + 0xDE: (2, ">H", TYPE_MAP), + 0xDF: (4, ">I", TYPE_MAP), +} + + +class Unpacker: + """Streaming unpacker. + + Arguments: + + :param file_like: + File-like object having `.read(n)` method. + If specified, unpacker reads serialized data from it and `.feed()` is not usable. + + :param int read_size: + Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`) + + :param bool use_list: + If true, unpack msgpack array to Python list. + Otherwise, unpack to Python tuple. (default: True) + + :param bool raw: + If true, unpack msgpack raw to Python bytes. + Otherwise, unpack to Python str by decoding with UTF-8 encoding (default). + + :param int timestamp: + Control how timestamp type is unpacked: + + 0 - Timestamp + 1 - float (Seconds from the EPOCH) + 2 - int (Nanoseconds from the EPOCH) + 3 - datetime.datetime (UTC). + + :param bool strict_map_key: + If true (default), only str or bytes are accepted for map (dict) keys. + + :param object_hook: + When specified, it should be callable. + Unpacker calls it with a dict argument after unpacking msgpack map. + (See also simplejson) + + :param object_pairs_hook: + When specified, it should be callable. + Unpacker calls it with a list of key-value pairs after unpacking msgpack map. + (See also simplejson) + + :param str unicode_errors: + The error handler for decoding unicode. (default: 'strict') + This option should be used only when you have msgpack data which + contains invalid UTF-8 string. + + :param int max_buffer_size: + Limits size of data waiting unpacked. 0 means 2**32-1. + The default value is 100*1024*1024 (100MiB). + Raises `BufferFull` exception when it is insufficient. + You should set this parameter when unpacking data from untrusted source. + + :param int max_str_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of str. (default: max_buffer_size) + + :param int max_bin_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of bin. (default: max_buffer_size) + + :param int max_array_len: + Limits max length of array. + (default: max_buffer_size) + + :param int max_map_len: + Limits max length of map. + (default: max_buffer_size//2) + + :param int max_ext_len: + Deprecated, use *max_buffer_size* instead. + Limits max size of ext type. (default: max_buffer_size) + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + file_like=None, + *, + read_size=0, + use_list=True, + raw=False, + timestamp=0, + strict_map_key=True, + object_hook=None, + object_pairs_hook=None, + list_hook=None, + unicode_errors=None, + max_buffer_size=100 * 1024 * 1024, + ext_hook=ExtType, + max_str_len=-1, + max_bin_len=-1, + max_array_len=-1, + max_map_len=-1, + max_ext_len=-1, + ): + if unicode_errors is None: + unicode_errors = "strict" + + if file_like is None: + self._feeding = True + else: + if not callable(file_like.read): + raise TypeError("`file_like.read` must be callable") + self.file_like = file_like + self._feeding = False + + #: array of bytes fed. + self._buffer = bytearray() + #: Which position we currently reads + self._buff_i = 0 + + # When Unpacker is used as an iterable, between the calls to next(), + # the buffer is not "consumed" completely, for efficiency sake. + # Instead, it is done sloppily. To make sure we raise BufferFull at + # the correct moments, we have to keep track of how sloppy we were. + # Furthermore, when the buffer is incomplete (that is: in the case + # we raise an OutOfData) we need to rollback the buffer to the correct + # state, which _buf_checkpoint records. + self._buf_checkpoint = 0 + + if not max_buffer_size: + max_buffer_size = 2**31 - 1 + if max_str_len == -1: + max_str_len = max_buffer_size + if max_bin_len == -1: + max_bin_len = max_buffer_size + if max_array_len == -1: + max_array_len = max_buffer_size + if max_map_len == -1: + max_map_len = max_buffer_size // 2 + if max_ext_len == -1: + max_ext_len = max_buffer_size + + self._max_buffer_size = max_buffer_size + if read_size > self._max_buffer_size: + raise ValueError("read_size must be smaller than max_buffer_size") + self._read_size = read_size or min(self._max_buffer_size, 16 * 1024) + self._raw = bool(raw) + self._strict_map_key = bool(strict_map_key) + self._unicode_errors = unicode_errors + self._use_list = use_list + if not (0 <= timestamp <= 3): + raise ValueError("timestamp must be 0..3") + self._timestamp = timestamp + self._list_hook = list_hook + self._object_hook = object_hook + self._object_pairs_hook = object_pairs_hook + self._ext_hook = ext_hook + self._max_str_len = max_str_len + self._max_bin_len = max_bin_len + self._max_array_len = max_array_len + self._max_map_len = max_map_len + self._max_ext_len = max_ext_len + self._stream_offset = 0 + + if list_hook is not None and not callable(list_hook): + raise TypeError("`list_hook` is not callable") + if object_hook is not None and not callable(object_hook): + raise TypeError("`object_hook` is not callable") + if object_pairs_hook is not None and not callable(object_pairs_hook): + raise TypeError("`object_pairs_hook` is not callable") + if object_hook is not None and object_pairs_hook is not None: + raise TypeError("object_pairs_hook and object_hook are mutually exclusive") + if not callable(ext_hook): + raise TypeError("`ext_hook` is not callable") + + def feed(self, next_bytes): + assert self._feeding + view = _get_data_from_buffer(next_bytes) + if len(self._buffer) - self._buff_i + len(view) > self._max_buffer_size: + raise BufferFull + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Use extend here: INPLACE_ADD += doesn't reliably typecast memoryview in jython + self._buffer.extend(view) + view.release() + + def _consume(self): + """Gets rid of the used parts of the buffer.""" + self._stream_offset += self._buff_i - self._buf_checkpoint + self._buf_checkpoint = self._buff_i + + def _got_extradata(self): + return self._buff_i < len(self._buffer) + + def _get_extradata(self): + return self._buffer[self._buff_i :] + + def read_bytes(self, n): + ret = self._read(n, raise_outofdata=False) + self._consume() + return ret + + def _read(self, n, raise_outofdata=True): + # (int) -> bytearray + self._reserve(n, raise_outofdata=raise_outofdata) + i = self._buff_i + ret = self._buffer[i : i + n] + self._buff_i = i + len(ret) + return ret + + def _reserve(self, n, raise_outofdata=True): + remain_bytes = len(self._buffer) - self._buff_i - n + + # Fast path: buffer has n bytes already + if remain_bytes >= 0: + return + + if self._feeding: + self._buff_i = self._buf_checkpoint + raise OutOfData + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Read from file + remain_bytes = -remain_bytes + if remain_bytes + len(self._buffer) > self._max_buffer_size: + raise BufferFull + while remain_bytes > 0: + to_read_bytes = max(self._read_size, remain_bytes) + read_data = self.file_like.read(to_read_bytes) + if not read_data: + break + assert isinstance(read_data, bytes) + self._buffer += read_data + remain_bytes -= len(read_data) + + if len(self._buffer) < n + self._buff_i and raise_outofdata: + self._buff_i = 0 # rollback + raise OutOfData + + def _read_header(self): + typ = TYPE_IMMEDIATE + n = 0 + obj = None + self._reserve(1) + b = self._buffer[self._buff_i] + self._buff_i += 1 + if b & 0b10000000 == 0: + obj = b + elif b & 0b11100000 == 0b11100000: + obj = -1 - (b ^ 0xFF) + elif b & 0b11100000 == 0b10100000: + n = b & 0b00011111 + typ = TYPE_RAW + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif b & 0b11110000 == 0b10010000: + n = b & 0b00001111 + typ = TYPE_ARRAY + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif b & 0b11110000 == 0b10000000: + n = b & 0b00001111 + typ = TYPE_MAP + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + elif b == 0xC0: + obj = None + elif b == 0xC2: + obj = False + elif b == 0xC3: + obj = True + elif 0xC4 <= b <= 0xC6: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + n = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_bin_len: + raise ValueError(f"{n} exceeds max_bin_len({self._max_bin_len})") + obj = self._read(n) + elif 0xC7 <= b <= 0xC9: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + L, n = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if L > self._max_ext_len: + raise ValueError(f"{L} exceeds max_ext_len({self._max_ext_len})") + obj = self._read(L) + elif 0xCA <= b <= 0xD3: + size, fmt = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + obj = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + obj = self._buffer[self._buff_i] + self._buff_i += size + elif 0xD4 <= b <= 0xD8: + size, fmt, typ = _MSGPACK_HEADERS[b] + if self._max_ext_len < size: + raise ValueError(f"{size} exceeds max_ext_len({self._max_ext_len})") + self._reserve(size + 1) + n, obj = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + 1 + elif 0xD9 <= b <= 0xDB: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif 0xDC <= b <= 0xDD: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif 0xDE <= b <= 0xDF: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + else: + raise FormatError("Unknown header: 0x%x" % b) + return typ, n, obj + + def _unpack(self, execute=EX_CONSTRUCT): + typ, n, obj = self._read_header() + + if execute == EX_READ_ARRAY_HEADER: + if typ != TYPE_ARRAY: + raise ValueError("Expected array") + return n + if execute == EX_READ_MAP_HEADER: + if typ != TYPE_MAP: + raise ValueError("Expected map") + return n + # TODO should we eliminate the recursion? + if typ == TYPE_ARRAY: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call `list_hook` + self._unpack(EX_SKIP) + return + ret = newlist_hint(n) + for i in range(n): + ret.append(self._unpack(EX_CONSTRUCT)) + if self._list_hook is not None: + ret = self._list_hook(ret) + # TODO is the interaction between `list_hook` and `use_list` ok? + return ret if self._use_list else tuple(ret) + if typ == TYPE_MAP: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call hooks + self._unpack(EX_SKIP) + self._unpack(EX_SKIP) + return + if self._object_pairs_hook is not None: + ret = self._object_pairs_hook( + (self._unpack(EX_CONSTRUCT), self._unpack(EX_CONSTRUCT)) for _ in range(n) + ) + else: + ret = {} + for _ in range(n): + key = self._unpack(EX_CONSTRUCT) + if self._strict_map_key and type(key) not in (str, bytes): + raise ValueError("%s is not allowed for map key" % str(type(key))) + if isinstance(key, str): + key = sys.intern(key) + ret[key] = self._unpack(EX_CONSTRUCT) + if self._object_hook is not None: + ret = self._object_hook(ret) + return ret + if execute == EX_SKIP: + return + if typ == TYPE_RAW: + if self._raw: + obj = bytes(obj) + else: + obj = obj.decode("utf_8", self._unicode_errors) + return obj + if typ == TYPE_BIN: + return bytes(obj) + if typ == TYPE_EXT: + if n == -1: # timestamp + ts = Timestamp.from_bytes(bytes(obj)) + if self._timestamp == 1: + return ts.to_unix() + elif self._timestamp == 2: + return ts.to_unix_nano() + elif self._timestamp == 3: + return ts.to_datetime() + else: + return ts + else: + return self._ext_hook(n, bytes(obj)) + assert typ == TYPE_IMMEDIATE + return obj + + def __iter__(self): + return self + + def __next__(self): + try: + ret = self._unpack(EX_CONSTRUCT) + self._consume() + return ret + except OutOfData: + self._consume() + raise StopIteration + except RecursionError: + raise StackError + + next = __next__ + + def skip(self): + self._unpack(EX_SKIP) + self._consume() + + def unpack(self): + try: + ret = self._unpack(EX_CONSTRUCT) + except RecursionError: + raise StackError + self._consume() + return ret + + def read_array_header(self): + ret = self._unpack(EX_READ_ARRAY_HEADER) + self._consume() + return ret + + def read_map_header(self): + ret = self._unpack(EX_READ_MAP_HEADER) + self._consume() + return ret + + def tell(self): + return self._stream_offset + + +class Packer: + """ + MessagePack Packer + + Usage:: + + packer = Packer() + astream.write(packer.pack(a)) + astream.write(packer.pack(b)) + + Packer's constructor has some keyword arguments: + + :param default: + When specified, it should be callable. + Convert user type to builtin type that Packer supports. + See also simplejson's document. + + :param bool use_single_float: + Use single precision float type for float. (default: False) + + :param bool autoreset: + Reset buffer after each pack and return its content as `bytes`. (default: True). + If set this to false, use `bytes()` to get content and `.reset()` to clear buffer. + + :param bool use_bin_type: + Use bin type introduced in msgpack spec 2.0 for bytes. + It also enables str8 type for unicode. (default: True) + + :param bool strict_types: + If set to true, types will be checked to be exact. Derived classes + from serializable types will not be serialized and will be + treated as unsupported type and forwarded to default. + Additionally tuples will not be serialized as lists. + This is useful when trying to implement accurate serialization + for python types. + + :param bool datetime: + If set to true, datetime with tzinfo is packed into Timestamp type. + Note that the tzinfo is stripped in the timestamp. + You can get UTC datetime with `timestamp=3` option of the Unpacker. + + :param str unicode_errors: + The error handler for encoding unicode. (default: 'strict') + DO NOT USE THIS!! This option is kept for very specific usage. + + :param int buf_size: + Internal buffer size. This option is used only for C implementation. + """ + + def __init__( + self, + *, + default=None, + use_single_float=False, + autoreset=True, + use_bin_type=True, + strict_types=False, + datetime=False, + unicode_errors=None, + buf_size=None, + ): + self._strict_types = strict_types + self._use_float = use_single_float + self._autoreset = autoreset + self._use_bin_type = use_bin_type + self._buffer = BytesIO() + self._datetime = bool(datetime) + self._unicode_errors = unicode_errors or "strict" + if default is not None and not callable(default): + raise TypeError("default must be callable") + self._default = default + + def _pack( + self, + obj, + nest_limit=DEFAULT_RECURSE_LIMIT, + check=isinstance, + check_type_strict=_check_type_strict, + ): + default_used = False + if self._strict_types: + check = check_type_strict + list_types = list + else: + list_types = (list, tuple) + while True: + if nest_limit < 0: + raise ValueError("recursion limit exceeded") + if obj is None: + return self._buffer.write(b"\xc0") + if check(obj, bool): + if obj: + return self._buffer.write(b"\xc3") + return self._buffer.write(b"\xc2") + if check(obj, int): + if 0 <= obj < 0x80: + return self._buffer.write(struct.pack("B", obj)) + if -0x20 <= obj < 0: + return self._buffer.write(struct.pack("b", obj)) + if 0x80 <= obj <= 0xFF: + return self._buffer.write(struct.pack("BB", 0xCC, obj)) + if -0x80 <= obj < 0: + return self._buffer.write(struct.pack(">Bb", 0xD0, obj)) + if 0xFF < obj <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xCD, obj)) + if -0x8000 <= obj < -0x80: + return self._buffer.write(struct.pack(">Bh", 0xD1, obj)) + if 0xFFFF < obj <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xCE, obj)) + if -0x80000000 <= obj < -0x8000: + return self._buffer.write(struct.pack(">Bi", 0xD2, obj)) + if 0xFFFFFFFF < obj <= 0xFFFFFFFFFFFFFFFF: + return self._buffer.write(struct.pack(">BQ", 0xCF, obj)) + if -0x8000000000000000 <= obj < -0x80000000: + return self._buffer.write(struct.pack(">Bq", 0xD3, obj)) + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = True + continue + raise OverflowError("Integer value out of range") + if check(obj, (bytes, bytearray)): + n = len(obj) + if n >= 2**32: + raise ValueError("%s is too large" % type(obj).__name__) + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, str): + obj = obj.encode("utf-8", self._unicode_errors) + n = len(obj) + if n >= 2**32: + raise ValueError("String is too large") + self._pack_raw_header(n) + return self._buffer.write(obj) + if check(obj, memoryview): + n = obj.nbytes + if n >= 2**32: + raise ValueError("Memoryview is too large") + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, float): + if self._use_float: + return self._buffer.write(struct.pack(">Bf", 0xCA, obj)) + return self._buffer.write(struct.pack(">Bd", 0xCB, obj)) + if check(obj, (ExtType, Timestamp)): + if check(obj, Timestamp): + code = -1 + data = obj.to_bytes() + else: + code = obj.code + data = obj.data + assert isinstance(code, int) + assert isinstance(data, bytes) + L = len(data) + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xC7, L)) + elif L <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xC8, L)) + else: + self._buffer.write(struct.pack(">BI", 0xC9, L)) + self._buffer.write(struct.pack("b", code)) + self._buffer.write(data) + return + if check(obj, list_types): + n = len(obj) + self._pack_array_header(n) + for i in range(n): + self._pack(obj[i], nest_limit - 1) + return + if check(obj, dict): + return self._pack_map_pairs(len(obj), obj.items(), nest_limit - 1) + + if self._datetime and check(obj, _DateTime) and obj.tzinfo is not None: + obj = Timestamp.from_datetime(obj) + default_used = 1 + continue + + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = 1 + continue + + if self._datetime and check(obj, _DateTime): + raise ValueError(f"Cannot serialize {obj!r} where tzinfo=None") + + raise TypeError(f"Cannot serialize {obj!r}") + + def pack(self, obj): + try: + self._pack(obj) + except: + self._buffer = BytesIO() # force reset + raise + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = BytesIO() + return ret + + def pack_map_pairs(self, pairs): + self._pack_map_pairs(len(pairs), pairs) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = BytesIO() + return ret + + def pack_array_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_array_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = BytesIO() + return ret + + def pack_map_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_map_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = BytesIO() + return ret + + def pack_ext_type(self, typecode, data): + if not isinstance(typecode, int): + raise TypeError("typecode must have int type.") + if not 0 <= typecode <= 127: + raise ValueError("typecode should be 0-127") + if not isinstance(data, bytes): + raise TypeError("data must have bytes type") + L = len(data) + if L > 0xFFFFFFFF: + raise ValueError("Too large data") + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(b"\xc7" + struct.pack("B", L)) + elif L <= 0xFFFF: + self._buffer.write(b"\xc8" + struct.pack(">H", L)) + else: + self._buffer.write(b"\xc9" + struct.pack(">I", L)) + self._buffer.write(struct.pack("B", typecode)) + self._buffer.write(data) + + def _pack_array_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x90 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDC, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDD, n)) + raise ValueError("Array is too large") + + def _pack_map_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x80 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDE, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDF, n)) + raise ValueError("Dict is too large") + + def _pack_map_pairs(self, n, pairs, nest_limit=DEFAULT_RECURSE_LIMIT): + self._pack_map_header(n) + for k, v in pairs: + self._pack(k, nest_limit - 1) + self._pack(v, nest_limit - 1) + + def _pack_raw_header(self, n): + if n <= 0x1F: + self._buffer.write(struct.pack("B", 0xA0 + n)) + elif self._use_bin_type and n <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xD9, n)) + elif n <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xDA, n)) + elif n <= 0xFFFFFFFF: + self._buffer.write(struct.pack(">BI", 0xDB, n)) + else: + raise ValueError("Raw is too large") + + def _pack_bin_header(self, n): + if not self._use_bin_type: + return self._pack_raw_header(n) + elif n <= 0xFF: + return self._buffer.write(struct.pack(">BB", 0xC4, n)) + elif n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xC5, n)) + elif n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xC6, n)) + else: + raise ValueError("Bin is too large") + + def bytes(self): + """Return internal buffer contents as bytes object""" + return self._buffer.getvalue() + + def reset(self): + """Reset internal buffer. + + This method is useful only when autoreset=False. + """ + self._buffer = BytesIO() + + def getbuffer(self): + """Return view of internal buffer.""" + if _USING_STRINGBUILDER: + return memoryview(self.bytes()) + else: + return self._buffer.getbuffer() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE new file mode 100644 index 0000000..6f62d44 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE @@ -0,0 +1,3 @@ +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made +under the terms of *both* these licenses. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE new file mode 100644 index 0000000..f433b1a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD new file mode 100644 index 0000000..42ce7b7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD @@ -0,0 +1,23 @@ +Copyright (c) Donald Stufft and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 0000000..d45c22c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py @@ -0,0 +1,15 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "25.0" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = f"2014 {__author__}" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95d5998cb237875f710d0840d44adb644e26b896 GIT binary patch literal 571 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 BIhz0g literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5531d50dff2604e59fd2539d41054cc74f5cf47 GIT binary patch literal 9761 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f86d1d216360f4551c8cba72417b4444c0c1cf0f GIT binary patch literal 4579 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 F{0F_xfnERr literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..74bfc64d971808c77e11ac0b9112074da3052351 GIT binary patch literal 14011 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 M<~^sMRrHwu1MtU63IG5A literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f3d3937312d6ae34bde40f7a9c7c064e9b69f30 GIT binary patch literal 3254 zcmc&#%}*Og6rWwMjR70eVu}eQaYUoWZH*!6hbl#p(vS2*l`rJPWo5jB*~D2pGYgdw z2M!!6wUsKh5*+ENLi{PcP;seNz4afUa-~SQwC^`#TVCU(luK9Ix9`1uGw;p&_{}fr z^cbUOF824vew?vCAaozA!?ZsmW}lhtQ|7Qe<`~DO{K2Cg$_=IEe5t5VZmJ=s=v`q z;ztdK+Yh};y(L{)THNB^R;li;m6|Poqv73KT)tb9uFs3K_-Um^>zi(~WRscG5GAd2 zy;{kZzSyi%pj<9CTS3yc1#b%5-k$D8g~Kd%)gu&_q>7FHSQzPm(u93hUzye}ju^rvXW$pHMN5%qoT9DTASlM{!R^EB&o_R$ zahh2=NiLlan(V?uL3MZ>otN6M0zip$_6jg{2|r?iR$Sm{SOIFJRJp&6wJ3mUl^|Q@ zHJZyU-rpIa(LmFy+91(X8>0H@br5qsU%Uz~(O7%JtA1duH5zr1 zBbAr~$%DKO@&?FTAgYs9Mlg&5XH_IYjQozs9y>FQ__c$DHlxp3!ieWJp9epE@aT;6 z(}zBOPe-Vhwbin=T833ttFl^^jZo#kU&r?OlUwiqg|Dt1f~?ZpdoV$G+IvL)uX}}0 z(7iHF_e!RfDx}373Pm8WP(P6z9viw#wnvNIzR=|ufKgT6?dyYW7J_(GwFmLn^ceME zoc>)A;uXG#3~eyj)T+}WgVOM>x(tY-%LZT$0UycXWLz-Ys*ShjB9Z_o$K@q@1AcW! z7?o&8G=arvN2s@giz`C8xQ@LCVOtGuWJtj7B`muIa_)8^RCV$@}`odLZu8B9u!acV{ufFkYl)jQpPr fMcI<_*iEu_oS2emhp`@BNzQ|kJQ;CD7HvMX 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..842316604faf90b4bae589c67fc03469e0bdacec GIT binary patch literal 12763 zcmb6c3Yd3)go36kJ_h~Q1oJVf1+B}x=UJCY?@F=abJB%=^^NkPIvzXc_c0aMmd zGSpbDs3cQCHC@q-GofO)R$6zeN&mQMe`Kcp0SI&mZ=B305pnvQks@Caj3J1oaB;-t zb45ygC6Q8JX{5|o7IFLBw9X85<-Q7dt+ww6p|DOAV!Mw6qLL-G^1Ow4nG!%p;(~>_Lh)7s&C>bZE-z-cPf8>s!SpD?8{C>sm_eWylWLSc{)9-(EG7!d-gfENVFUEp?{~cx> zm-aZ^cPU0L$P6cZ)?U^Eb(l0$M|??pJJzHsPl-^5h> zTr9f1w|`ro3~kf$|&)Bz$Lnm)Pt0AmvX+lUAB3^vE8(4s z`DJ2%{AKO%dF}AAX2U*sD1gAO&qJJt zUf^Y{#ETr#IiOyc=M8zmkT)6fW<%a$$XgA0n;~yEa1#YhAQSMVGV4<%nhq_7l_CB>z;k*8#U zCqol$JhzG#{;|n$7?41nWQ*P}SG#dBN^!1OYwv{N{aT+9uRvO0x1<%LHi#6L-)|uE ze*b15?ZuWD?SQ}hU5LKJWNYd(LVZ>kcu?P%5gOMxxbihSQ(XG(<66F|HY3!maRO90 znGGM6H5sA0U`=fUjJn2|pieQ=)|nAH))14|tV~69MySdPdmoflWQ2+}&Z>bJE-aWM zijZX(0sa7H?D}yiy~)J&x�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 CA|vAf literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7a6a6e14688732c343d4a0559bdb3280a1b52ae GIT binary patch literal 27254 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..13c6d401b55ad72a43b00f482f897531842bd658 GIT binary patch literal 39077 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 None: + self._f = f + + try: + ident = self._read("16B") + except struct.error as e: + raise ELFInvalid("unable to parse identification") from e + magic = bytes(ident[:4]) + if magic != b"\x7fELF": + raise ELFInvalid(f"invalid magic: {magic!r}") + + self.capacity = ident[4] # Format for program header (bitness). + self.encoding = ident[5] # Data structure encoding (endianness). + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, self._p_fmt, self._p_idx = { + (1, 1): ("HHIIIIIHHH", ">IIIIIIII", (0, 1, 4)), # 32-bit MSB. + (2, 1): ("HHIQQQIHHH", ">IIQQQQQQ", (0, 2, 5)), # 64-bit MSB. + }[(self.capacity, self.encoding)] + except KeyError as e: + raise ELFInvalid( + f"unrecognized capacity ({self.capacity}) or encoding ({self.encoding})" + ) from e + + try: + ( + _, + self.machine, # Architecture type. + _, + _, + self._e_phoff, # Offset of program header. + _, + self.flags, # Processor-specific flags. + _, + self._e_phentsize, # Size of section. + self._e_phnum, # Number of sections. + ) = self._read(e_fmt) + except struct.error as e: + raise ELFInvalid("unable to parse machine and section information") from e + + def _read(self, fmt: str) -> tuple[int, ...]: + return struct.unpack(fmt, self._f.read(struct.calcsize(fmt))) + + @property + def interpreter(self) -> str | None: + """ + The path recorded in the ``PT_INTERP`` section header. + """ + for index in range(self._e_phnum): + self._f.seek(self._e_phoff + self._e_phentsize * index) + try: + data = self._read(self._p_fmt) + except struct.error: + continue + if data[self._p_idx[0]] != 3: # Not PT_INTERP. + continue + self._f.seek(data[self._p_idx[1]]) + return os.fsdecode(self._f.read(data[self._p_idx[2]])).strip("\0") + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 0000000..95f5576 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py @@ -0,0 +1,262 @@ +from __future__ import annotations + +import collections +import contextlib +import functools +import os +import re +import sys +import warnings +from typing import Generator, Iterator, NamedTuple, Sequence + +from ._elffile import EIClass, EIData, ELFFile, EMachine + +EF_ARM_ABIMASK = 0xFF000000 +EF_ARM_ABI_VER5 = 0x05000000 +EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + +# `os.PathLike` not a generic type until Python 3.9, so sticking with `str` +# as the type for `path` until then. +@contextlib.contextmanager +def _parse_elf(path: str) -> Generator[ELFFile | None, None, None]: + try: + with open(path, "rb") as f: + yield ELFFile(f) + except (OSError, TypeError, ValueError): + yield None + + +def _is_linux_armhf(executable: str) -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.Arm + and f.flags & EF_ARM_ABIMASK == EF_ARM_ABI_VER5 + and f.flags & EF_ARM_ABI_FLOAT_HARD == EF_ARM_ABI_FLOAT_HARD + ) + + +def _is_linux_i686(executable: str) -> bool: + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.I386 + ) + + +def _have_compatible_abi(executable: str, archs: Sequence[str]) -> bool: + if "armv7l" in archs: + return _is_linux_armhf(executable) + if "i686" in archs: + return _is_linux_i686(executable) + allowed_archs = { + "x86_64", + "aarch64", + "ppc64", + "ppc64le", + "s390x", + "loongarch64", + "riscv64", + } + return any(arch in allowed_archs for arch in archs) + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> str | None: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # Should be a string like "glibc 2.17". + version_string: str | None = os.confstr("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.rsplit() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> str | None: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> str | None: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + f"Expected glibc version with 2 components major.minor, got: {version_str}", + RuntimeWarning, + stacklevel=2, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache +def _get_glibc_version() -> tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate manylinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be manylinux-compatible. + + :returns: An iterator of compatible manylinux tags. + """ + if not _have_compatible_abi(sys.executable, archs): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if set(archs) & {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for arch in archs: + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(arch, glibc_version): + yield f"{tag}_{arch}" + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(arch, glibc_version): + yield f"{legacy_tag}_{arch}" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 0000000..d2bf30b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py @@ -0,0 +1,85 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +from __future__ import annotations + +import functools +import re +import subprocess +import sys +from typing import Iterator, NamedTuple, Sequence + +from ._elffile import ELFFile + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> _MuslVersion | None: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache +def _get_musl_version(executable: str) -> _MuslVersion | None: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + try: + with open(executable, "rb") as f: + ld = ELFFile(f).interpreter + except (OSError, TypeError, ValueError): + return None + if ld is None or "musl" not in ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, text=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for arch in archs: + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py new file mode 100644 index 0000000..0007c0a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py @@ -0,0 +1,353 @@ +"""Handwritten parser of dependency specifiers. + +The docstring for each __parse_* function contains EBNF-inspired grammar representing +the implementation. +""" + +from __future__ import annotations + +import ast +from typing import NamedTuple, Sequence, Tuple, Union + +from ._tokenizer import DEFAULT_RULES, Tokenizer + + +class Node: + def __init__(self, value: str) -> None: + self.value = value + + def __str__(self) -> str: + return self.value + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +MarkerVar = Union[Variable, Value] +MarkerItem = Tuple[MarkerVar, Op, MarkerVar] +MarkerAtom = Union[MarkerItem, Sequence["MarkerAtom"]] +MarkerList = Sequence[Union["MarkerList", MarkerAtom, str]] + + +class ParsedRequirement(NamedTuple): + name: str + url: str + extras: list[str] + specifier: str + marker: MarkerList | None + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for dependency specifier +# -------------------------------------------------------------------------------------- +def parse_requirement(source: str) -> ParsedRequirement: + return _parse_requirement(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_requirement(tokenizer: Tokenizer) -> ParsedRequirement: + """ + requirement = WS? IDENTIFIER WS? extras WS? requirement_details + """ + tokenizer.consume("WS") + + name_token = tokenizer.expect( + "IDENTIFIER", expected="package name at the start of dependency specifier" + ) + name = name_token.text + tokenizer.consume("WS") + + extras = _parse_extras(tokenizer) + tokenizer.consume("WS") + + url, specifier, marker = _parse_requirement_details(tokenizer) + tokenizer.expect("END", expected="end of dependency specifier") + + return ParsedRequirement(name, url, extras, specifier, marker) + + +def _parse_requirement_details( + tokenizer: Tokenizer, +) -> tuple[str, str, MarkerList | None]: + """ + requirement_details = AT URL (WS requirement_marker?)? + | specifier WS? (requirement_marker)? + """ + + specifier = "" + url = "" + marker = None + + if tokenizer.check("AT"): + tokenizer.read() + tokenizer.consume("WS") + + url_start = tokenizer.position + url = tokenizer.expect("URL", expected="URL after @").text + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + tokenizer.expect("WS", expected="whitespace after URL") + + # The input might end after whitespace. + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, span_start=url_start, after="URL and whitespace" + ) + else: + specifier_start = tokenizer.position + specifier = _parse_specifier(tokenizer) + tokenizer.consume("WS") + + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, + span_start=specifier_start, + after=( + "version specifier" + if specifier + else "name and no valid version specifier" + ), + ) + + return (url, specifier, marker) + + +def _parse_requirement_marker( + tokenizer: Tokenizer, *, span_start: int, after: str +) -> MarkerList: + """ + requirement_marker = SEMICOLON marker WS? + """ + + if not tokenizer.check("SEMICOLON"): + tokenizer.raise_syntax_error( + f"Expected end or semicolon (after {after})", + span_start=span_start, + ) + tokenizer.read() + + marker = _parse_marker(tokenizer) + tokenizer.consume("WS") + + return marker + + +def _parse_extras(tokenizer: Tokenizer) -> list[str]: + """ + extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)? + """ + if not tokenizer.check("LEFT_BRACKET", peek=True): + return [] + + with tokenizer.enclosing_tokens( + "LEFT_BRACKET", + "RIGHT_BRACKET", + around="extras", + ): + tokenizer.consume("WS") + extras = _parse_extras_list(tokenizer) + tokenizer.consume("WS") + + return extras + + +def _parse_extras_list(tokenizer: Tokenizer) -> list[str]: + """ + extras_list = identifier (wsp* ',' wsp* identifier)* + """ + extras: list[str] = [] + + if not tokenizer.check("IDENTIFIER"): + return extras + + extras.append(tokenizer.read().text) + + while True: + tokenizer.consume("WS") + if tokenizer.check("IDENTIFIER", peek=True): + tokenizer.raise_syntax_error("Expected comma between extra names") + elif not tokenizer.check("COMMA"): + break + + tokenizer.read() + tokenizer.consume("WS") + + extra_token = tokenizer.expect("IDENTIFIER", expected="extra name after comma") + extras.append(extra_token.text) + + return extras + + +def _parse_specifier(tokenizer: Tokenizer) -> str: + """ + specifier = LEFT_PARENTHESIS WS? version_many WS? RIGHT_PARENTHESIS + | WS? version_many WS? + """ + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="version specifier", + ): + tokenizer.consume("WS") + parsed_specifiers = _parse_version_many(tokenizer) + tokenizer.consume("WS") + + return parsed_specifiers + + +def _parse_version_many(tokenizer: Tokenizer) -> str: + """ + version_many = (SPECIFIER (WS? COMMA WS? SPECIFIER)*)? + """ + parsed_specifiers = "" + while tokenizer.check("SPECIFIER"): + span_start = tokenizer.position + parsed_specifiers += tokenizer.read().text + if tokenizer.check("VERSION_PREFIX_TRAIL", peek=True): + tokenizer.raise_syntax_error( + ".* suffix can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position + 1, + ) + if tokenizer.check("VERSION_LOCAL_LABEL_TRAIL", peek=True): + tokenizer.raise_syntax_error( + "Local version label can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position, + ) + tokenizer.consume("WS") + if not tokenizer.check("COMMA"): + break + parsed_specifiers += tokenizer.read().text + tokenizer.consume("WS") + + return parsed_specifiers + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for marker expression +# -------------------------------------------------------------------------------------- +def parse_marker(source: str) -> MarkerList: + return _parse_full_marker(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_full_marker(tokenizer: Tokenizer) -> MarkerList: + retval = _parse_marker(tokenizer) + tokenizer.expect("END", expected="end of marker expression") + return retval + + +def _parse_marker(tokenizer: Tokenizer) -> MarkerList: + """ + marker = marker_atom (BOOLOP marker_atom)+ + """ + expression = [_parse_marker_atom(tokenizer)] + while tokenizer.check("BOOLOP"): + token = tokenizer.read() + expr_right = _parse_marker_atom(tokenizer) + expression.extend((token.text, expr_right)) + return expression + + +def _parse_marker_atom(tokenizer: Tokenizer) -> MarkerAtom: + """ + marker_atom = WS? LEFT_PARENTHESIS WS? marker WS? RIGHT_PARENTHESIS WS? + | WS? marker_item WS? + """ + + tokenizer.consume("WS") + if tokenizer.check("LEFT_PARENTHESIS", peek=True): + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="marker expression", + ): + tokenizer.consume("WS") + marker: MarkerAtom = _parse_marker(tokenizer) + tokenizer.consume("WS") + else: + marker = _parse_marker_item(tokenizer) + tokenizer.consume("WS") + return marker + + +def _parse_marker_item(tokenizer: Tokenizer) -> MarkerItem: + """ + marker_item = WS? marker_var WS? marker_op WS? marker_var WS? + """ + tokenizer.consume("WS") + marker_var_left = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + marker_op = _parse_marker_op(tokenizer) + tokenizer.consume("WS") + marker_var_right = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + return (marker_var_left, marker_op, marker_var_right) + + +def _parse_marker_var(tokenizer: Tokenizer) -> MarkerVar: + """ + marker_var = VARIABLE | QUOTED_STRING + """ + if tokenizer.check("VARIABLE"): + return process_env_var(tokenizer.read().text.replace(".", "_")) + elif tokenizer.check("QUOTED_STRING"): + return process_python_str(tokenizer.read().text) + else: + tokenizer.raise_syntax_error( + message="Expected a marker variable or quoted string" + ) + + +def process_env_var(env_var: str) -> Variable: + if env_var in ("platform_python_implementation", "python_implementation"): + return Variable("platform_python_implementation") + else: + return Variable(env_var) + + +def process_python_str(python_str: str) -> Value: + value = ast.literal_eval(python_str) + return Value(str(value)) + + +def _parse_marker_op(tokenizer: Tokenizer) -> Op: + """ + marker_op = IN | NOT IN | OP + """ + if tokenizer.check("IN"): + tokenizer.read() + return Op("in") + elif tokenizer.check("NOT"): + tokenizer.read() + tokenizer.expect("WS", expected="whitespace after 'not'") + tokenizer.expect("IN", expected="'in' after 'not'") + return Op("not in") + elif tokenizer.check("OP"): + return Op(tokenizer.read().text) + else: + return tokenizer.raise_syntax_error( + "Expected marker operator, one of <=, <, !=, ==, >=, >, ~=, ===, in, not in" + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 0000000..90a6465 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py new file mode 100644 index 0000000..d28a9b6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py @@ -0,0 +1,195 @@ +from __future__ import annotations + +import contextlib +import re +from dataclasses import dataclass +from typing import Iterator, NoReturn + +from .specifiers import Specifier + + +@dataclass +class Token: + name: str + text: str + position: int + + +class ParserSyntaxError(Exception): + """The provided source text could not be parsed correctly.""" + + def __init__( + self, + message: str, + *, + source: str, + span: tuple[int, int], + ) -> None: + self.span = span + self.message = message + self.source = source + + super().__init__() + + def __str__(self) -> str: + marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^" + return "\n ".join([self.message, self.source, marker]) + + +DEFAULT_RULES: dict[str, str | re.Pattern[str]] = { + "LEFT_PARENTHESIS": r"\(", + "RIGHT_PARENTHESIS": r"\)", + "LEFT_BRACKET": r"\[", + "RIGHT_BRACKET": r"\]", + "SEMICOLON": r";", + "COMMA": r",", + "QUOTED_STRING": re.compile( + r""" + ( + ('[^']*') + | + ("[^"]*") + ) + """, + re.VERBOSE, + ), + "OP": r"(===|==|~=|!=|<=|>=|<|>)", + "BOOLOP": r"\b(or|and)\b", + "IN": r"\bin\b", + "NOT": r"\bnot\b", + "VARIABLE": re.compile( + r""" + \b( + python_version + |python_full_version + |os[._]name + |sys[._]platform + |platform_(release|system) + |platform[._](version|machine|python_implementation) + |python_implementation + |implementation_(name|version) + |extras? + |dependency_groups + )\b + """, + re.VERBOSE, + ), + "SPECIFIER": re.compile( + Specifier._operator_regex_str + Specifier._version_regex_str, + re.VERBOSE | re.IGNORECASE, + ), + "AT": r"\@", + "URL": r"[^ \t]+", + "IDENTIFIER": r"\b[a-zA-Z0-9][a-zA-Z0-9._-]*\b", + "VERSION_PREFIX_TRAIL": r"\.\*", + "VERSION_LOCAL_LABEL_TRAIL": r"\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*", + "WS": r"[ \t]+", + "END": r"$", +} + + +class Tokenizer: + """Context-sensitive token parsing. + + Provides methods to examine the input stream to check whether the next token + matches. + """ + + def __init__( + self, + source: str, + *, + rules: dict[str, str | re.Pattern[str]], + ) -> None: + self.source = source + self.rules: dict[str, re.Pattern[str]] = { + name: re.compile(pattern) for name, pattern in rules.items() + } + self.next_token: Token | None = None + self.position = 0 + + def consume(self, name: str) -> None: + """Move beyond provided token name, if at current position.""" + if self.check(name): + self.read() + + def check(self, name: str, *, peek: bool = False) -> bool: + """Check whether the next token has the provided name. + + By default, if the check succeeds, the token *must* be read before + another check. If `peek` is set to `True`, the token is not loaded and + would need to be checked again. + """ + assert self.next_token is None, ( + f"Cannot check for {name!r}, already have {self.next_token!r}" + ) + assert name in self.rules, f"Unknown token name: {name!r}" + + expression = self.rules[name] + + match = expression.match(self.source, self.position) + if match is None: + return False + if not peek: + self.next_token = Token(name, match[0], self.position) + return True + + def expect(self, name: str, *, expected: str) -> Token: + """Expect a certain token name next, failing with a syntax error otherwise. + + The token is *not* read. + """ + if not self.check(name): + raise self.raise_syntax_error(f"Expected {expected}") + return self.read() + + def read(self) -> Token: + """Consume the next token and return it.""" + token = self.next_token + assert token is not None + + self.position += len(token.text) + self.next_token = None + + return token + + def raise_syntax_error( + self, + message: str, + *, + span_start: int | None = None, + span_end: int | None = None, + ) -> NoReturn: + """Raise ParserSyntaxError at the given position.""" + span = ( + self.position if span_start is None else span_start, + self.position if span_end is None else span_end, + ) + raise ParserSyntaxError( + message, + source=self.source, + span=span, + ) + + @contextlib.contextmanager + def enclosing_tokens( + self, open_token: str, close_token: str, *, around: str + ) -> Iterator[None]: + if self.check(open_token): + open_position = self.position + self.read() + else: + open_position = None + + yield + + if open_position is None: + return + + if not self.check(close_token): + self.raise_syntax_error( + f"Expected matching {close_token} for {open_token}, after {around}", + span_start=open_position, + ) + + self.read() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py new file mode 100644 index 0000000..031f277 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py @@ -0,0 +1,145 @@ +####################################################################################### +# +# Adapted from: +# https://github.com/pypa/hatch/blob/5352e44/backend/src/hatchling/licenses/parse.py +# +# MIT License +# +# Copyright (c) 2017-present Ofek Lev +# +# Permission is hereby granted, free of charge, to any person obtaining a copy of this +# software and associated documentation files (the "Software"), to deal in the Software +# without restriction, including without limitation the rights to use, copy, modify, +# merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be included in all copies +# or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF +# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE +# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# +# With additional allowance of arbitrary `LicenseRef-` identifiers, not just +# `LicenseRef-Public-Domain` and `LicenseRef-Proprietary`. +# +####################################################################################### +from __future__ import annotations + +import re +from typing import NewType, cast + +from pip._vendor.packaging.licenses._spdx import EXCEPTIONS, LICENSES + +__all__ = [ + "InvalidLicenseExpression", + "NormalizedLicenseExpression", + "canonicalize_license_expression", +] + +license_ref_allowed = re.compile("^[A-Za-z0-9.-]*$") + +NormalizedLicenseExpression = NewType("NormalizedLicenseExpression", str) + + +class InvalidLicenseExpression(ValueError): + """Raised when a license-expression string is invalid + + >>> canonicalize_license_expression("invalid") + Traceback (most recent call last): + ... + packaging.licenses.InvalidLicenseExpression: Invalid license expression: 'invalid' + """ + + +def canonicalize_license_expression( + raw_license_expression: str, +) -> NormalizedLicenseExpression: + if not raw_license_expression: + message = f"Invalid license expression: {raw_license_expression!r}" + raise InvalidLicenseExpression(message) + + # Pad any parentheses so tokenization can be achieved by merely splitting on + # whitespace. + license_expression = raw_license_expression.replace("(", " ( ").replace(")", " ) ") + licenseref_prefix = "LicenseRef-" + license_refs = { + ref.lower(): "LicenseRef-" + ref[len(licenseref_prefix) :] + for ref in license_expression.split() + if ref.lower().startswith(licenseref_prefix.lower()) + } + + # Normalize to lower case so we can look up licenses/exceptions + # and so boolean operators are Python-compatible. + license_expression = license_expression.lower() + + tokens = license_expression.split() + + # Rather than implementing boolean logic, we create an expression that Python can + # parse. Everything that is not involved with the grammar itself is treated as + # `False` and the expression should evaluate as such. + python_tokens = [] + for token in tokens: + if token not in {"or", "and", "with", "(", ")"}: + python_tokens.append("False") + elif token == "with": + python_tokens.append("or") + elif token == "(" and python_tokens and python_tokens[-1] not in {"or", "and"}: + message = f"Invalid license expression: {raw_license_expression!r}" + raise InvalidLicenseExpression(message) + else: + python_tokens.append(token) + + python_expression = " ".join(python_tokens) + try: + invalid = eval(python_expression, globals(), locals()) + except Exception: + invalid = True + + if invalid is not False: + message = f"Invalid license expression: {raw_license_expression!r}" + raise InvalidLicenseExpression(message) from None + + # Take a final pass to check for unknown licenses/exceptions. + normalized_tokens = [] + for token in tokens: + if token in {"or", "and", "with", "(", ")"}: + normalized_tokens.append(token.upper()) + continue + + if normalized_tokens and normalized_tokens[-1] == "WITH": + if token not in EXCEPTIONS: + message = f"Unknown license exception: {token!r}" + raise InvalidLicenseExpression(message) + + normalized_tokens.append(EXCEPTIONS[token]["id"]) + else: + if token.endswith("+"): + final_token = token[:-1] + suffix = "+" + else: + final_token = token + suffix = "" + + if final_token.startswith("licenseref-"): + if not license_ref_allowed.match(final_token): + message = f"Invalid licenseref: {final_token!r}" + raise InvalidLicenseExpression(message) + normalized_tokens.append(license_refs[final_token] + suffix) + else: + if final_token not in LICENSES: + message = f"Unknown license: {final_token!r}" + raise InvalidLicenseExpression(message) + normalized_tokens.append(LICENSES[final_token]["id"] + suffix) + + normalized_expression = " ".join(normalized_tokens) + + return cast( + NormalizedLicenseExpression, + normalized_expression.replace("( ", "(").replace(" )", ")"), + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a4ac4c07db7c250a1e3375229f0506d3f597316 GIT binary patch literal 4142 zcmbUkTWs6b^^zhbN~A2=mMzP#&`#u7%_KQ-8rO;I)p6W3k2-6eq^+`)Q$#wEqSr_| ziVbQAihiVRfVkL4TC798t-vy*9|E=ye|Eq=iuH$_l1U&8%tZ$b{nL_k*!{52MH;z+<#K8ta4A`BUd+=XC1qsp*;7xtY0;P47CDy%A3*`LoG{kd=g) zn|V=?Bw(ZW%;v-lEG-E;Ebd9fv$^IrYh6tVFxNJNlaGdVq zxJ-^;NE=DjQEPN=Ydixglh4MAOMD(fp!(EtegQ96S`2lClu4n*{sw$$XRpGCn6pH|>Ni z=0TC79GA={WsZyF7tK#)c85R<$pPKl=rL|5DX|q`b0yLE+%QLQkP(7&4L1z#+C8Ko z$;)F3`UU<=yokx0lnVBs0lx*Ssm4t(IW#&R=WW)#*>RoVNo&1`^Y)@m!BdU!ty$D5!;WoDvF*0QvPWch=giv`LZ&U&ip|=`qi(bW z=%3?vULjDC1P$@s;0@S!k9Z(#iUvcns02uQONc;Y8zoRzFR&9PlAl{wwG`nXhh@WAfE0l9L940{x}adRwg;89Is()32kqv`?ktm?ONQTU(-u5BU4p~e~(e(zL+dG8< zx@mg@6|hkE>{9P;@74x3ykujC*$pfNV~Aa%&(lcR(Ixms+N2InU9t35QTgiUQwNt z^68|klj&SR5OtR%$3RkI+4mHvpOL_E~PuJrgK-oGToleLGB>w z&Y7DHJ#}&c=tU9Y0@5kiSZCGVP?-buILJ0Y7O#_;xSY5q8qbet_|Z(DLLR+Sj2Cvu zxO7Jb61VtOL2t9THS-I-wdoWNGQ9cZP2C2A&RDcC0fpto81He5(^o? zE%Z-2Vg{?e5%u6nb>y_#cILKYtz~GXP;QB;RJ2B+?vYAhObd*y+Ey==1Jjkj87*+; z^J(>!i{-#;D$!Z(3aUg$&5nFSmG%Q#`+;(M_+KR9v#&FrD&2B-{GIXlj#cOZjUG@3 zM=OKl+TeJ3@Yq9oqDCSobJzKf^F4a`^2*$&?P_?k9QvUeno@(uwT|N&b-ZQ+Mz_w^ z5DYah>i$6`a8L^zEC)tG^16FZ#U0e#!Lob*tru%9)ZxGNa<$d}7&*z|+hmpYs$F9m zJyvA`6^7LqcE$gQ302)~%k%GYO{DJ;Gh`qW@BaA1Ov$}^MH`v=yiXgsSnWEjK6^$z zJgat|yM1!4?V0;y<+f3k8C~CG*zt(jUuy?(wN4c1{h0cYTInlyMGc4GHqyV=)~Wi3 zKi&Tz^oNVTf4$r`dD{UVr98`m=IGhk>80~3H4fek^Z*ku<_YR0&tY|Ie4`pYT4nkw z%s!3Tw{qdPmwt8WH{#oJ+%J?n$5ijwy2a&_Sc%kvM@q65oOr}MzwYtf{nIbQ1 zx*F(x-@e|z*MNGK?dzWIiYKUff-9Map2KVYXDa>?%|BA=dFX$>${sFVDxFjNPb{BY z>poN(D|a7LeaEWafr@un^A6wdEnU|_$3MHMh0Z+ko?UP6|Kyt19;vbiO9x7O)c&cR zw|&}GI-rFnS7j}9;dBqAz?8O<&8)H!VE+DKBx;Kjk+MRSr;_xA5O~iH_ZrV#x5Od6bNZh zx;PTKOg@|O!vHw6bj|qatZ#ilV@((OuxtDrBr4EdiI}fX<{mcHKIyC*+ oT)F?0ih7>f9T@e&(o+OO&36IA?A6{qHJbsflk8K{08ADB3tcYw%m4rY literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f30dd1f9b08dafb1dc9a8036574745d8bbd73647 GIT binary patch literal 47377 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

    Mkk@a@$) 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py new file mode 100644 index 0000000..eac2227 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py @@ -0,0 +1,759 @@ + +from __future__ import annotations + +from typing import TypedDict + +class SPDXLicense(TypedDict): + id: str + deprecated: bool + +class SPDXException(TypedDict): + id: str + deprecated: bool + + +VERSION = '3.25.0' + +LICENSES: dict[str, SPDXLicense] = { + '0bsd': {'id': '0BSD', 'deprecated': False}, + '3d-slicer-1.0': {'id': '3D-Slicer-1.0', 'deprecated': False}, + 'aal': {'id': 'AAL', 'deprecated': False}, + 'abstyles': {'id': 'Abstyles', 'deprecated': False}, + 'adacore-doc': {'id': 'AdaCore-doc', 'deprecated': False}, + 'adobe-2006': {'id': 'Adobe-2006', 'deprecated': False}, + 'adobe-display-postscript': {'id': 'Adobe-Display-PostScript', 'deprecated': False}, + 'adobe-glyph': {'id': 'Adobe-Glyph', 'deprecated': False}, + 'adobe-utopia': {'id': 'Adobe-Utopia', 'deprecated': False}, + 'adsl': {'id': 'ADSL', 'deprecated': False}, + 'afl-1.1': {'id': 'AFL-1.1', 'deprecated': False}, + 'afl-1.2': {'id': 'AFL-1.2', 'deprecated': False}, + 'afl-2.0': {'id': 'AFL-2.0', 'deprecated': False}, + 'afl-2.1': {'id': 'AFL-2.1', 'deprecated': False}, + 'afl-3.0': {'id': 'AFL-3.0', 'deprecated': False}, + 'afmparse': {'id': 'Afmparse', 'deprecated': False}, + 'agpl-1.0': {'id': 'AGPL-1.0', 'deprecated': True}, + 'agpl-1.0-only': {'id': 'AGPL-1.0-only', 'deprecated': False}, + 'agpl-1.0-or-later': {'id': 'AGPL-1.0-or-later', 'deprecated': False}, + 'agpl-3.0': {'id': 'AGPL-3.0', 'deprecated': True}, + 'agpl-3.0-only': {'id': 'AGPL-3.0-only', 'deprecated': False}, + 'agpl-3.0-or-later': {'id': 'AGPL-3.0-or-later', 'deprecated': False}, + 'aladdin': {'id': 'Aladdin', 'deprecated': False}, + 'amd-newlib': {'id': 'AMD-newlib', 'deprecated': False}, + 'amdplpa': {'id': 'AMDPLPA', 'deprecated': False}, + 'aml': {'id': 'AML', 'deprecated': False}, + 'aml-glslang': {'id': 'AML-glslang', 'deprecated': False}, + 'ampas': {'id': 'AMPAS', 'deprecated': False}, + 'antlr-pd': {'id': 'ANTLR-PD', 'deprecated': False}, + 'antlr-pd-fallback': {'id': 'ANTLR-PD-fallback', 'deprecated': False}, + 'any-osi': {'id': 'any-OSI', 'deprecated': False}, + 'apache-1.0': {'id': 'Apache-1.0', 'deprecated': False}, + 'apache-1.1': {'id': 'Apache-1.1', 'deprecated': False}, + 'apache-2.0': {'id': 'Apache-2.0', 'deprecated': False}, + 'apafml': {'id': 'APAFML', 'deprecated': False}, + 'apl-1.0': {'id': 'APL-1.0', 'deprecated': False}, + 'app-s2p': {'id': 'App-s2p', 'deprecated': False}, + 'apsl-1.0': {'id': 'APSL-1.0', 'deprecated': False}, + 'apsl-1.1': {'id': 'APSL-1.1', 'deprecated': False}, + 'apsl-1.2': {'id': 'APSL-1.2', 'deprecated': False}, + 'apsl-2.0': {'id': 'APSL-2.0', 'deprecated': False}, + 'arphic-1999': {'id': 'Arphic-1999', 'deprecated': False}, + 'artistic-1.0': {'id': 'Artistic-1.0', 'deprecated': False}, + 'artistic-1.0-cl8': {'id': 'Artistic-1.0-cl8', 'deprecated': False}, + 'artistic-1.0-perl': {'id': 'Artistic-1.0-Perl', 'deprecated': False}, + 'artistic-2.0': {'id': 'Artistic-2.0', 'deprecated': False}, + 'aswf-digital-assets-1.0': {'id': 'ASWF-Digital-Assets-1.0', 'deprecated': False}, + 'aswf-digital-assets-1.1': {'id': 'ASWF-Digital-Assets-1.1', 'deprecated': False}, + 'baekmuk': {'id': 'Baekmuk', 'deprecated': False}, + 'bahyph': {'id': 'Bahyph', 'deprecated': False}, + 'barr': {'id': 'Barr', 'deprecated': False}, + 'bcrypt-solar-designer': {'id': 'bcrypt-Solar-Designer', 'deprecated': False}, + 'beerware': {'id': 'Beerware', 'deprecated': False}, + 'bitstream-charter': {'id': 'Bitstream-Charter', 'deprecated': False}, + 'bitstream-vera': {'id': 'Bitstream-Vera', 'deprecated': False}, + 'bittorrent-1.0': {'id': 'BitTorrent-1.0', 'deprecated': False}, + 'bittorrent-1.1': {'id': 'BitTorrent-1.1', 'deprecated': False}, + 'blessing': {'id': 'blessing', 'deprecated': False}, + 'blueoak-1.0.0': {'id': 'BlueOak-1.0.0', 'deprecated': False}, + 'boehm-gc': {'id': 'Boehm-GC', 'deprecated': False}, + 'borceux': {'id': 'Borceux', 'deprecated': False}, + 'brian-gladman-2-clause': {'id': 'Brian-Gladman-2-Clause', 'deprecated': False}, + 'brian-gladman-3-clause': {'id': 'Brian-Gladman-3-Clause', 'deprecated': False}, + 'bsd-1-clause': {'id': 'BSD-1-Clause', 'deprecated': False}, + 'bsd-2-clause': {'id': 'BSD-2-Clause', 'deprecated': False}, + 'bsd-2-clause-darwin': {'id': 'BSD-2-Clause-Darwin', 'deprecated': False}, + 'bsd-2-clause-first-lines': {'id': 'BSD-2-Clause-first-lines', 'deprecated': False}, + 'bsd-2-clause-freebsd': {'id': 'BSD-2-Clause-FreeBSD', 'deprecated': True}, + 'bsd-2-clause-netbsd': {'id': 'BSD-2-Clause-NetBSD', 'deprecated': True}, + 'bsd-2-clause-patent': {'id': 'BSD-2-Clause-Patent', 'deprecated': False}, + 'bsd-2-clause-views': {'id': 'BSD-2-Clause-Views', 'deprecated': False}, + 'bsd-3-clause': {'id': 'BSD-3-Clause', 'deprecated': False}, + 'bsd-3-clause-acpica': {'id': 'BSD-3-Clause-acpica', 'deprecated': False}, + 'bsd-3-clause-attribution': {'id': 'BSD-3-Clause-Attribution', 'deprecated': False}, + 'bsd-3-clause-clear': {'id': 'BSD-3-Clause-Clear', 'deprecated': False}, + 'bsd-3-clause-flex': {'id': 'BSD-3-Clause-flex', 'deprecated': False}, + 'bsd-3-clause-hp': {'id': 'BSD-3-Clause-HP', 'deprecated': False}, + 'bsd-3-clause-lbnl': {'id': 'BSD-3-Clause-LBNL', 'deprecated': False}, + 'bsd-3-clause-modification': {'id': 'BSD-3-Clause-Modification', 'deprecated': False}, + 'bsd-3-clause-no-military-license': {'id': 'BSD-3-Clause-No-Military-License', 'deprecated': False}, + 'bsd-3-clause-no-nuclear-license': {'id': 'BSD-3-Clause-No-Nuclear-License', 'deprecated': False}, + 'bsd-3-clause-no-nuclear-license-2014': {'id': 'BSD-3-Clause-No-Nuclear-License-2014', 'deprecated': False}, + 'bsd-3-clause-no-nuclear-warranty': {'id': 'BSD-3-Clause-No-Nuclear-Warranty', 'deprecated': False}, + 'bsd-3-clause-open-mpi': {'id': 'BSD-3-Clause-Open-MPI', 'deprecated': False}, + 'bsd-3-clause-sun': {'id': 'BSD-3-Clause-Sun', 'deprecated': False}, + 'bsd-4-clause': {'id': 'BSD-4-Clause', 'deprecated': False}, + 'bsd-4-clause-shortened': {'id': 'BSD-4-Clause-Shortened', 'deprecated': False}, + 'bsd-4-clause-uc': {'id': 'BSD-4-Clause-UC', 'deprecated': False}, + 'bsd-4.3reno': {'id': 'BSD-4.3RENO', 'deprecated': False}, + 'bsd-4.3tahoe': {'id': 'BSD-4.3TAHOE', 'deprecated': False}, + 'bsd-advertising-acknowledgement': {'id': 'BSD-Advertising-Acknowledgement', 'deprecated': False}, + 'bsd-attribution-hpnd-disclaimer': {'id': 'BSD-Attribution-HPND-disclaimer', 'deprecated': False}, + 'bsd-inferno-nettverk': {'id': 'BSD-Inferno-Nettverk', 'deprecated': False}, + 'bsd-protection': {'id': 'BSD-Protection', 'deprecated': False}, + 'bsd-source-beginning-file': {'id': 'BSD-Source-beginning-file', 'deprecated': False}, + 'bsd-source-code': {'id': 'BSD-Source-Code', 'deprecated': False}, + 'bsd-systemics': {'id': 'BSD-Systemics', 'deprecated': False}, + 'bsd-systemics-w3works': {'id': 'BSD-Systemics-W3Works', 'deprecated': False}, + 'bsl-1.0': {'id': 'BSL-1.0', 'deprecated': False}, + 'busl-1.1': {'id': 'BUSL-1.1', 'deprecated': False}, + 'bzip2-1.0.5': {'id': 'bzip2-1.0.5', 'deprecated': True}, + 'bzip2-1.0.6': {'id': 'bzip2-1.0.6', 'deprecated': False}, + 'c-uda-1.0': {'id': 'C-UDA-1.0', 'deprecated': False}, + 'cal-1.0': {'id': 'CAL-1.0', 'deprecated': False}, + 'cal-1.0-combined-work-exception': {'id': 'CAL-1.0-Combined-Work-Exception', 'deprecated': False}, + 'caldera': {'id': 'Caldera', 'deprecated': False}, + 'caldera-no-preamble': {'id': 'Caldera-no-preamble', 'deprecated': False}, + 'catharon': {'id': 'Catharon', 'deprecated': False}, + 'catosl-1.1': {'id': 'CATOSL-1.1', 'deprecated': False}, + 'cc-by-1.0': {'id': 'CC-BY-1.0', 'deprecated': False}, + 'cc-by-2.0': {'id': 'CC-BY-2.0', 'deprecated': False}, + 'cc-by-2.5': {'id': 'CC-BY-2.5', 'deprecated': False}, + 'cc-by-2.5-au': {'id': 'CC-BY-2.5-AU', 'deprecated': False}, + 'cc-by-3.0': {'id': 'CC-BY-3.0', 'deprecated': False}, + 'cc-by-3.0-at': {'id': 'CC-BY-3.0-AT', 'deprecated': False}, + 'cc-by-3.0-au': {'id': 'CC-BY-3.0-AU', 'deprecated': False}, + 'cc-by-3.0-de': {'id': 'CC-BY-3.0-DE', 'deprecated': False}, + 'cc-by-3.0-igo': {'id': 'CC-BY-3.0-IGO', 'deprecated': False}, + 'cc-by-3.0-nl': {'id': 'CC-BY-3.0-NL', 'deprecated': False}, + 'cc-by-3.0-us': {'id': 'CC-BY-3.0-US', 'deprecated': False}, + 'cc-by-4.0': {'id': 'CC-BY-4.0', 'deprecated': False}, + 'cc-by-nc-1.0': {'id': 'CC-BY-NC-1.0', 'deprecated': False}, + 'cc-by-nc-2.0': {'id': 'CC-BY-NC-2.0', 'deprecated': False}, + 'cc-by-nc-2.5': {'id': 'CC-BY-NC-2.5', 'deprecated': False}, + 'cc-by-nc-3.0': {'id': 'CC-BY-NC-3.0', 'deprecated': False}, + 'cc-by-nc-3.0-de': {'id': 'CC-BY-NC-3.0-DE', 'deprecated': False}, + 'cc-by-nc-4.0': {'id': 'CC-BY-NC-4.0', 'deprecated': False}, + 'cc-by-nc-nd-1.0': {'id': 'CC-BY-NC-ND-1.0', 'deprecated': False}, + 'cc-by-nc-nd-2.0': {'id': 'CC-BY-NC-ND-2.0', 'deprecated': False}, + 'cc-by-nc-nd-2.5': {'id': 'CC-BY-NC-ND-2.5', 'deprecated': False}, + 'cc-by-nc-nd-3.0': {'id': 'CC-BY-NC-ND-3.0', 'deprecated': False}, + 'cc-by-nc-nd-3.0-de': {'id': 'CC-BY-NC-ND-3.0-DE', 'deprecated': False}, + 'cc-by-nc-nd-3.0-igo': {'id': 'CC-BY-NC-ND-3.0-IGO', 'deprecated': False}, + 'cc-by-nc-nd-4.0': {'id': 'CC-BY-NC-ND-4.0', 'deprecated': False}, + 'cc-by-nc-sa-1.0': {'id': 'CC-BY-NC-SA-1.0', 'deprecated': False}, + 'cc-by-nc-sa-2.0': {'id': 'CC-BY-NC-SA-2.0', 'deprecated': False}, + 'cc-by-nc-sa-2.0-de': {'id': 'CC-BY-NC-SA-2.0-DE', 'deprecated': False}, + 'cc-by-nc-sa-2.0-fr': {'id': 'CC-BY-NC-SA-2.0-FR', 'deprecated': False}, + 'cc-by-nc-sa-2.0-uk': {'id': 'CC-BY-NC-SA-2.0-UK', 'deprecated': False}, + 'cc-by-nc-sa-2.5': {'id': 'CC-BY-NC-SA-2.5', 'deprecated': False}, + 'cc-by-nc-sa-3.0': {'id': 'CC-BY-NC-SA-3.0', 'deprecated': False}, + 'cc-by-nc-sa-3.0-de': {'id': 'CC-BY-NC-SA-3.0-DE', 'deprecated': False}, + 'cc-by-nc-sa-3.0-igo': {'id': 'CC-BY-NC-SA-3.0-IGO', 'deprecated': False}, + 'cc-by-nc-sa-4.0': {'id': 'CC-BY-NC-SA-4.0', 'deprecated': False}, + 'cc-by-nd-1.0': {'id': 'CC-BY-ND-1.0', 'deprecated': False}, + 'cc-by-nd-2.0': {'id': 'CC-BY-ND-2.0', 'deprecated': False}, + 'cc-by-nd-2.5': {'id': 'CC-BY-ND-2.5', 'deprecated': False}, + 'cc-by-nd-3.0': {'id': 'CC-BY-ND-3.0', 'deprecated': False}, + 'cc-by-nd-3.0-de': {'id': 'CC-BY-ND-3.0-DE', 'deprecated': False}, + 'cc-by-nd-4.0': {'id': 'CC-BY-ND-4.0', 'deprecated': False}, + 'cc-by-sa-1.0': {'id': 'CC-BY-SA-1.0', 'deprecated': False}, + 'cc-by-sa-2.0': {'id': 'CC-BY-SA-2.0', 'deprecated': False}, + 'cc-by-sa-2.0-uk': {'id': 'CC-BY-SA-2.0-UK', 'deprecated': False}, + 'cc-by-sa-2.1-jp': {'id': 'CC-BY-SA-2.1-JP', 'deprecated': False}, + 'cc-by-sa-2.5': {'id': 'CC-BY-SA-2.5', 'deprecated': False}, + 'cc-by-sa-3.0': {'id': 'CC-BY-SA-3.0', 'deprecated': False}, + 'cc-by-sa-3.0-at': {'id': 'CC-BY-SA-3.0-AT', 'deprecated': False}, + 'cc-by-sa-3.0-de': {'id': 'CC-BY-SA-3.0-DE', 'deprecated': False}, + 'cc-by-sa-3.0-igo': {'id': 'CC-BY-SA-3.0-IGO', 'deprecated': False}, + 'cc-by-sa-4.0': {'id': 'CC-BY-SA-4.0', 'deprecated': False}, + 'cc-pddc': {'id': 'CC-PDDC', 'deprecated': False}, + 'cc0-1.0': {'id': 'CC0-1.0', 'deprecated': False}, + 'cddl-1.0': {'id': 'CDDL-1.0', 'deprecated': False}, + 'cddl-1.1': {'id': 'CDDL-1.1', 'deprecated': False}, + 'cdl-1.0': {'id': 'CDL-1.0', 'deprecated': False}, + 'cdla-permissive-1.0': {'id': 'CDLA-Permissive-1.0', 'deprecated': False}, + 'cdla-permissive-2.0': {'id': 'CDLA-Permissive-2.0', 'deprecated': False}, + 'cdla-sharing-1.0': {'id': 'CDLA-Sharing-1.0', 'deprecated': False}, + 'cecill-1.0': {'id': 'CECILL-1.0', 'deprecated': False}, + 'cecill-1.1': {'id': 'CECILL-1.1', 'deprecated': False}, + 'cecill-2.0': {'id': 'CECILL-2.0', 'deprecated': False}, + 'cecill-2.1': {'id': 'CECILL-2.1', 'deprecated': False}, + 'cecill-b': {'id': 'CECILL-B', 'deprecated': False}, + 'cecill-c': {'id': 'CECILL-C', 'deprecated': False}, + 'cern-ohl-1.1': {'id': 'CERN-OHL-1.1', 'deprecated': False}, + 'cern-ohl-1.2': {'id': 'CERN-OHL-1.2', 'deprecated': False}, + 'cern-ohl-p-2.0': {'id': 'CERN-OHL-P-2.0', 'deprecated': False}, + 'cern-ohl-s-2.0': {'id': 'CERN-OHL-S-2.0', 'deprecated': False}, + 'cern-ohl-w-2.0': {'id': 'CERN-OHL-W-2.0', 'deprecated': False}, + 'cfitsio': {'id': 'CFITSIO', 'deprecated': False}, + 'check-cvs': {'id': 'check-cvs', 'deprecated': False}, + 'checkmk': {'id': 'checkmk', 'deprecated': False}, + 'clartistic': {'id': 'ClArtistic', 'deprecated': False}, + 'clips': {'id': 'Clips', 'deprecated': False}, + 'cmu-mach': {'id': 'CMU-Mach', 'deprecated': False}, + 'cmu-mach-nodoc': {'id': 'CMU-Mach-nodoc', 'deprecated': False}, + 'cnri-jython': {'id': 'CNRI-Jython', 'deprecated': False}, + 'cnri-python': {'id': 'CNRI-Python', 'deprecated': False}, + 'cnri-python-gpl-compatible': {'id': 'CNRI-Python-GPL-Compatible', 'deprecated': False}, + 'coil-1.0': {'id': 'COIL-1.0', 'deprecated': False}, + 'community-spec-1.0': {'id': 'Community-Spec-1.0', 'deprecated': False}, + 'condor-1.1': {'id': 'Condor-1.1', 'deprecated': False}, + 'copyleft-next-0.3.0': {'id': 'copyleft-next-0.3.0', 'deprecated': False}, + 'copyleft-next-0.3.1': {'id': 'copyleft-next-0.3.1', 'deprecated': False}, + 'cornell-lossless-jpeg': {'id': 'Cornell-Lossless-JPEG', 'deprecated': False}, + 'cpal-1.0': {'id': 'CPAL-1.0', 'deprecated': False}, + 'cpl-1.0': {'id': 'CPL-1.0', 'deprecated': False}, + 'cpol-1.02': {'id': 'CPOL-1.02', 'deprecated': False}, + 'cronyx': {'id': 'Cronyx', 'deprecated': False}, + 'crossword': {'id': 'Crossword', 'deprecated': False}, + 'crystalstacker': {'id': 'CrystalStacker', 'deprecated': False}, + 'cua-opl-1.0': {'id': 'CUA-OPL-1.0', 'deprecated': False}, + 'cube': {'id': 'Cube', 'deprecated': False}, + 'curl': {'id': 'curl', 'deprecated': False}, + 'cve-tou': {'id': 'cve-tou', 'deprecated': False}, + 'd-fsl-1.0': {'id': 'D-FSL-1.0', 'deprecated': False}, + 'dec-3-clause': {'id': 'DEC-3-Clause', 'deprecated': False}, + 'diffmark': {'id': 'diffmark', 'deprecated': False}, + 'dl-de-by-2.0': {'id': 'DL-DE-BY-2.0', 'deprecated': False}, + 'dl-de-zero-2.0': {'id': 'DL-DE-ZERO-2.0', 'deprecated': False}, + 'doc': {'id': 'DOC', 'deprecated': False}, + 'docbook-schema': {'id': 'DocBook-Schema', 'deprecated': False}, + 'docbook-xml': {'id': 'DocBook-XML', 'deprecated': False}, + 'dotseqn': {'id': 'Dotseqn', 'deprecated': False}, + 'drl-1.0': {'id': 'DRL-1.0', 'deprecated': False}, + 'drl-1.1': {'id': 'DRL-1.1', 'deprecated': False}, + 'dsdp': {'id': 'DSDP', 'deprecated': False}, + 'dtoa': {'id': 'dtoa', 'deprecated': False}, + 'dvipdfm': {'id': 'dvipdfm', 'deprecated': False}, + 'ecl-1.0': {'id': 'ECL-1.0', 'deprecated': False}, + 'ecl-2.0': {'id': 'ECL-2.0', 'deprecated': False}, + 'ecos-2.0': {'id': 'eCos-2.0', 'deprecated': True}, + 'efl-1.0': {'id': 'EFL-1.0', 'deprecated': False}, + 'efl-2.0': {'id': 'EFL-2.0', 'deprecated': False}, + 'egenix': {'id': 'eGenix', 'deprecated': False}, + 'elastic-2.0': {'id': 'Elastic-2.0', 'deprecated': False}, + 'entessa': {'id': 'Entessa', 'deprecated': False}, + 'epics': {'id': 'EPICS', 'deprecated': False}, + 'epl-1.0': {'id': 'EPL-1.0', 'deprecated': False}, + 'epl-2.0': {'id': 'EPL-2.0', 'deprecated': False}, + 'erlpl-1.1': {'id': 'ErlPL-1.1', 'deprecated': False}, + 'etalab-2.0': {'id': 'etalab-2.0', 'deprecated': False}, + 'eudatagrid': {'id': 'EUDatagrid', 'deprecated': False}, + 'eupl-1.0': {'id': 'EUPL-1.0', 'deprecated': False}, + 'eupl-1.1': {'id': 'EUPL-1.1', 'deprecated': False}, + 'eupl-1.2': {'id': 'EUPL-1.2', 'deprecated': False}, + 'eurosym': {'id': 'Eurosym', 'deprecated': False}, + 'fair': {'id': 'Fair', 'deprecated': False}, + 'fbm': {'id': 'FBM', 'deprecated': False}, + 'fdk-aac': {'id': 'FDK-AAC', 'deprecated': False}, + 'ferguson-twofish': {'id': 'Ferguson-Twofish', 'deprecated': False}, + 'frameworx-1.0': {'id': 'Frameworx-1.0', 'deprecated': False}, + 'freebsd-doc': {'id': 'FreeBSD-DOC', 'deprecated': False}, + 'freeimage': {'id': 'FreeImage', 'deprecated': False}, + 'fsfap': {'id': 'FSFAP', 'deprecated': False}, + 'fsfap-no-warranty-disclaimer': {'id': 'FSFAP-no-warranty-disclaimer', 'deprecated': False}, + 'fsful': {'id': 'FSFUL', 'deprecated': False}, + 'fsfullr': {'id': 'FSFULLR', 'deprecated': False}, + 'fsfullrwd': {'id': 'FSFULLRWD', 'deprecated': False}, + 'ftl': {'id': 'FTL', 'deprecated': False}, + 'furuseth': {'id': 'Furuseth', 'deprecated': False}, + 'fwlw': {'id': 'fwlw', 'deprecated': False}, + 'gcr-docs': {'id': 'GCR-docs', 'deprecated': False}, + 'gd': {'id': 'GD', 'deprecated': False}, + 'gfdl-1.1': {'id': 'GFDL-1.1', 'deprecated': True}, + 'gfdl-1.1-invariants-only': {'id': 'GFDL-1.1-invariants-only', 'deprecated': False}, + 'gfdl-1.1-invariants-or-later': {'id': 'GFDL-1.1-invariants-or-later', 'deprecated': False}, + 'gfdl-1.1-no-invariants-only': {'id': 'GFDL-1.1-no-invariants-only', 'deprecated': False}, + 'gfdl-1.1-no-invariants-or-later': {'id': 'GFDL-1.1-no-invariants-or-later', 'deprecated': False}, + 'gfdl-1.1-only': {'id': 'GFDL-1.1-only', 'deprecated': False}, + 'gfdl-1.1-or-later': {'id': 'GFDL-1.1-or-later', 'deprecated': False}, + 'gfdl-1.2': {'id': 'GFDL-1.2', 'deprecated': True}, + 'gfdl-1.2-invariants-only': {'id': 'GFDL-1.2-invariants-only', 'deprecated': False}, + 'gfdl-1.2-invariants-or-later': {'id': 'GFDL-1.2-invariants-or-later', 'deprecated': False}, + 'gfdl-1.2-no-invariants-only': {'id': 'GFDL-1.2-no-invariants-only', 'deprecated': False}, + 'gfdl-1.2-no-invariants-or-later': {'id': 'GFDL-1.2-no-invariants-or-later', 'deprecated': False}, + 'gfdl-1.2-only': {'id': 'GFDL-1.2-only', 'deprecated': False}, + 'gfdl-1.2-or-later': {'id': 'GFDL-1.2-or-later', 'deprecated': False}, + 'gfdl-1.3': {'id': 'GFDL-1.3', 'deprecated': True}, + 'gfdl-1.3-invariants-only': {'id': 'GFDL-1.3-invariants-only', 'deprecated': False}, + 'gfdl-1.3-invariants-or-later': {'id': 'GFDL-1.3-invariants-or-later', 'deprecated': False}, + 'gfdl-1.3-no-invariants-only': {'id': 'GFDL-1.3-no-invariants-only', 'deprecated': False}, + 'gfdl-1.3-no-invariants-or-later': {'id': 'GFDL-1.3-no-invariants-or-later', 'deprecated': False}, + 'gfdl-1.3-only': {'id': 'GFDL-1.3-only', 'deprecated': False}, + 'gfdl-1.3-or-later': {'id': 'GFDL-1.3-or-later', 'deprecated': False}, + 'giftware': {'id': 'Giftware', 'deprecated': False}, + 'gl2ps': {'id': 'GL2PS', 'deprecated': False}, + 'glide': {'id': 'Glide', 'deprecated': False}, + 'glulxe': {'id': 'Glulxe', 'deprecated': False}, + 'glwtpl': {'id': 'GLWTPL', 'deprecated': False}, + 'gnuplot': {'id': 'gnuplot', 'deprecated': False}, + 'gpl-1.0': {'id': 'GPL-1.0', 'deprecated': True}, + 'gpl-1.0+': {'id': 'GPL-1.0+', 'deprecated': True}, + 'gpl-1.0-only': {'id': 'GPL-1.0-only', 'deprecated': False}, + 'gpl-1.0-or-later': {'id': 'GPL-1.0-or-later', 'deprecated': False}, + 'gpl-2.0': {'id': 'GPL-2.0', 'deprecated': True}, + 'gpl-2.0+': {'id': 'GPL-2.0+', 'deprecated': True}, + 'gpl-2.0-only': {'id': 'GPL-2.0-only', 'deprecated': False}, + 'gpl-2.0-or-later': {'id': 'GPL-2.0-or-later', 'deprecated': False}, + 'gpl-2.0-with-autoconf-exception': {'id': 'GPL-2.0-with-autoconf-exception', 'deprecated': True}, + 'gpl-2.0-with-bison-exception': {'id': 'GPL-2.0-with-bison-exception', 'deprecated': True}, + 'gpl-2.0-with-classpath-exception': {'id': 'GPL-2.0-with-classpath-exception', 'deprecated': True}, + 'gpl-2.0-with-font-exception': {'id': 'GPL-2.0-with-font-exception', 'deprecated': True}, + 'gpl-2.0-with-gcc-exception': {'id': 'GPL-2.0-with-GCC-exception', 'deprecated': True}, + 'gpl-3.0': {'id': 'GPL-3.0', 'deprecated': True}, + 'gpl-3.0+': {'id': 'GPL-3.0+', 'deprecated': True}, + 'gpl-3.0-only': {'id': 'GPL-3.0-only', 'deprecated': False}, + 'gpl-3.0-or-later': {'id': 'GPL-3.0-or-later', 'deprecated': False}, + 'gpl-3.0-with-autoconf-exception': {'id': 'GPL-3.0-with-autoconf-exception', 'deprecated': True}, + 'gpl-3.0-with-gcc-exception': {'id': 'GPL-3.0-with-GCC-exception', 'deprecated': True}, + 'graphics-gems': {'id': 'Graphics-Gems', 'deprecated': False}, + 'gsoap-1.3b': {'id': 'gSOAP-1.3b', 'deprecated': False}, + 'gtkbook': {'id': 'gtkbook', 'deprecated': False}, + 'gutmann': {'id': 'Gutmann', 'deprecated': False}, + 'haskellreport': {'id': 'HaskellReport', 'deprecated': False}, + 'hdparm': {'id': 'hdparm', 'deprecated': False}, + 'hidapi': {'id': 'HIDAPI', 'deprecated': False}, + 'hippocratic-2.1': {'id': 'Hippocratic-2.1', 'deprecated': False}, + 'hp-1986': {'id': 'HP-1986', 'deprecated': False}, + 'hp-1989': {'id': 'HP-1989', 'deprecated': False}, + 'hpnd': {'id': 'HPND', 'deprecated': False}, + 'hpnd-dec': {'id': 'HPND-DEC', 'deprecated': False}, + 'hpnd-doc': {'id': 'HPND-doc', 'deprecated': False}, + 'hpnd-doc-sell': {'id': 'HPND-doc-sell', 'deprecated': False}, + 'hpnd-export-us': {'id': 'HPND-export-US', 'deprecated': False}, + 'hpnd-export-us-acknowledgement': {'id': 'HPND-export-US-acknowledgement', 'deprecated': False}, + 'hpnd-export-us-modify': {'id': 'HPND-export-US-modify', 'deprecated': False}, + 'hpnd-export2-us': {'id': 'HPND-export2-US', 'deprecated': False}, + 'hpnd-fenneberg-livingston': {'id': 'HPND-Fenneberg-Livingston', 'deprecated': False}, + 'hpnd-inria-imag': {'id': 'HPND-INRIA-IMAG', 'deprecated': False}, + 'hpnd-intel': {'id': 'HPND-Intel', 'deprecated': False}, + 'hpnd-kevlin-henney': {'id': 'HPND-Kevlin-Henney', 'deprecated': False}, + 'hpnd-markus-kuhn': {'id': 'HPND-Markus-Kuhn', 'deprecated': False}, + 'hpnd-merchantability-variant': {'id': 'HPND-merchantability-variant', 'deprecated': False}, + 'hpnd-mit-disclaimer': {'id': 'HPND-MIT-disclaimer', 'deprecated': False}, + 'hpnd-netrek': {'id': 'HPND-Netrek', 'deprecated': False}, + 'hpnd-pbmplus': {'id': 'HPND-Pbmplus', 'deprecated': False}, + 'hpnd-sell-mit-disclaimer-xserver': {'id': 'HPND-sell-MIT-disclaimer-xserver', 'deprecated': False}, + 'hpnd-sell-regexpr': {'id': 'HPND-sell-regexpr', 'deprecated': False}, + 'hpnd-sell-variant': {'id': 'HPND-sell-variant', 'deprecated': False}, + 'hpnd-sell-variant-mit-disclaimer': {'id': 'HPND-sell-variant-MIT-disclaimer', 'deprecated': False}, + 'hpnd-sell-variant-mit-disclaimer-rev': {'id': 'HPND-sell-variant-MIT-disclaimer-rev', 'deprecated': False}, + 'hpnd-uc': {'id': 'HPND-UC', 'deprecated': False}, + 'hpnd-uc-export-us': {'id': 'HPND-UC-export-US', 'deprecated': False}, + 'htmltidy': {'id': 'HTMLTIDY', 'deprecated': False}, + 'ibm-pibs': {'id': 'IBM-pibs', 'deprecated': False}, + 'icu': {'id': 'ICU', 'deprecated': False}, + 'iec-code-components-eula': {'id': 'IEC-Code-Components-EULA', 'deprecated': False}, + 'ijg': {'id': 'IJG', 'deprecated': False}, + 'ijg-short': {'id': 'IJG-short', 'deprecated': False}, + 'imagemagick': {'id': 'ImageMagick', 'deprecated': False}, + 'imatix': {'id': 'iMatix', 'deprecated': False}, + 'imlib2': {'id': 'Imlib2', 'deprecated': False}, + 'info-zip': {'id': 'Info-ZIP', 'deprecated': False}, + 'inner-net-2.0': {'id': 'Inner-Net-2.0', 'deprecated': False}, + 'intel': {'id': 'Intel', 'deprecated': False}, + 'intel-acpi': {'id': 'Intel-ACPI', 'deprecated': False}, + 'interbase-1.0': {'id': 'Interbase-1.0', 'deprecated': False}, + 'ipa': {'id': 'IPA', 'deprecated': False}, + 'ipl-1.0': {'id': 'IPL-1.0', 'deprecated': False}, + 'isc': {'id': 'ISC', 'deprecated': False}, + 'isc-veillard': {'id': 'ISC-Veillard', 'deprecated': False}, + 'jam': {'id': 'Jam', 'deprecated': False}, + 'jasper-2.0': {'id': 'JasPer-2.0', 'deprecated': False}, + 'jpl-image': {'id': 'JPL-image', 'deprecated': False}, + 'jpnic': {'id': 'JPNIC', 'deprecated': False}, + 'json': {'id': 'JSON', 'deprecated': False}, + 'kastrup': {'id': 'Kastrup', 'deprecated': False}, + 'kazlib': {'id': 'Kazlib', 'deprecated': False}, + 'knuth-ctan': {'id': 'Knuth-CTAN', 'deprecated': False}, + 'lal-1.2': {'id': 'LAL-1.2', 'deprecated': False}, + 'lal-1.3': {'id': 'LAL-1.3', 'deprecated': False}, + 'latex2e': {'id': 'Latex2e', 'deprecated': False}, + 'latex2e-translated-notice': {'id': 'Latex2e-translated-notice', 'deprecated': False}, + 'leptonica': {'id': 'Leptonica', 'deprecated': False}, + 'lgpl-2.0': {'id': 'LGPL-2.0', 'deprecated': True}, + 'lgpl-2.0+': {'id': 'LGPL-2.0+', 'deprecated': True}, + 'lgpl-2.0-only': {'id': 'LGPL-2.0-only', 'deprecated': False}, + 'lgpl-2.0-or-later': {'id': 'LGPL-2.0-or-later', 'deprecated': False}, + 'lgpl-2.1': {'id': 'LGPL-2.1', 'deprecated': True}, + 'lgpl-2.1+': {'id': 'LGPL-2.1+', 'deprecated': True}, + 'lgpl-2.1-only': {'id': 'LGPL-2.1-only', 'deprecated': False}, + 'lgpl-2.1-or-later': {'id': 'LGPL-2.1-or-later', 'deprecated': False}, + 'lgpl-3.0': {'id': 'LGPL-3.0', 'deprecated': True}, + 'lgpl-3.0+': {'id': 'LGPL-3.0+', 'deprecated': True}, + 'lgpl-3.0-only': {'id': 'LGPL-3.0-only', 'deprecated': False}, + 'lgpl-3.0-or-later': {'id': 'LGPL-3.0-or-later', 'deprecated': False}, + 'lgpllr': {'id': 'LGPLLR', 'deprecated': False}, + 'libpng': {'id': 'Libpng', 'deprecated': False}, + 'libpng-2.0': {'id': 'libpng-2.0', 'deprecated': False}, + 'libselinux-1.0': {'id': 'libselinux-1.0', 'deprecated': False}, + 'libtiff': {'id': 'libtiff', 'deprecated': False}, + 'libutil-david-nugent': {'id': 'libutil-David-Nugent', 'deprecated': False}, + 'liliq-p-1.1': {'id': 'LiLiQ-P-1.1', 'deprecated': False}, + 'liliq-r-1.1': {'id': 'LiLiQ-R-1.1', 'deprecated': False}, + 'liliq-rplus-1.1': {'id': 'LiLiQ-Rplus-1.1', 'deprecated': False}, + 'linux-man-pages-1-para': {'id': 'Linux-man-pages-1-para', 'deprecated': False}, + 'linux-man-pages-copyleft': {'id': 'Linux-man-pages-copyleft', 'deprecated': False}, + 'linux-man-pages-copyleft-2-para': {'id': 'Linux-man-pages-copyleft-2-para', 'deprecated': False}, + 'linux-man-pages-copyleft-var': {'id': 'Linux-man-pages-copyleft-var', 'deprecated': False}, + 'linux-openib': {'id': 'Linux-OpenIB', 'deprecated': False}, + 'loop': {'id': 'LOOP', 'deprecated': False}, + 'lpd-document': {'id': 'LPD-document', 'deprecated': False}, + 'lpl-1.0': {'id': 'LPL-1.0', 'deprecated': False}, + 'lpl-1.02': {'id': 'LPL-1.02', 'deprecated': False}, + 'lppl-1.0': {'id': 'LPPL-1.0', 'deprecated': False}, + 'lppl-1.1': {'id': 'LPPL-1.1', 'deprecated': False}, + 'lppl-1.2': {'id': 'LPPL-1.2', 'deprecated': False}, + 'lppl-1.3a': {'id': 'LPPL-1.3a', 'deprecated': False}, + 'lppl-1.3c': {'id': 'LPPL-1.3c', 'deprecated': False}, + 'lsof': {'id': 'lsof', 'deprecated': False}, + 'lucida-bitmap-fonts': {'id': 'Lucida-Bitmap-Fonts', 'deprecated': False}, + 'lzma-sdk-9.11-to-9.20': {'id': 'LZMA-SDK-9.11-to-9.20', 'deprecated': False}, + 'lzma-sdk-9.22': {'id': 'LZMA-SDK-9.22', 'deprecated': False}, + 'mackerras-3-clause': {'id': 'Mackerras-3-Clause', 'deprecated': False}, + 'mackerras-3-clause-acknowledgment': {'id': 'Mackerras-3-Clause-acknowledgment', 'deprecated': False}, + 'magaz': {'id': 'magaz', 'deprecated': False}, + 'mailprio': {'id': 'mailprio', 'deprecated': False}, + 'makeindex': {'id': 'MakeIndex', 'deprecated': False}, + 'martin-birgmeier': {'id': 'Martin-Birgmeier', 'deprecated': False}, + 'mcphee-slideshow': {'id': 'McPhee-slideshow', 'deprecated': False}, + 'metamail': {'id': 'metamail', 'deprecated': False}, + 'minpack': {'id': 'Minpack', 'deprecated': False}, + 'miros': {'id': 'MirOS', 'deprecated': False}, + 'mit': {'id': 'MIT', 'deprecated': False}, + 'mit-0': {'id': 'MIT-0', 'deprecated': False}, + 'mit-advertising': {'id': 'MIT-advertising', 'deprecated': False}, + 'mit-cmu': {'id': 'MIT-CMU', 'deprecated': False}, + 'mit-enna': {'id': 'MIT-enna', 'deprecated': False}, + 'mit-feh': {'id': 'MIT-feh', 'deprecated': False}, + 'mit-festival': {'id': 'MIT-Festival', 'deprecated': False}, + 'mit-khronos-old': {'id': 'MIT-Khronos-old', 'deprecated': False}, + 'mit-modern-variant': {'id': 'MIT-Modern-Variant', 'deprecated': False}, + 'mit-open-group': {'id': 'MIT-open-group', 'deprecated': False}, + 'mit-testregex': {'id': 'MIT-testregex', 'deprecated': False}, + 'mit-wu': {'id': 'MIT-Wu', 'deprecated': False}, + 'mitnfa': {'id': 'MITNFA', 'deprecated': False}, + 'mmixware': {'id': 'MMIXware', 'deprecated': False}, + 'motosoto': {'id': 'Motosoto', 'deprecated': False}, + 'mpeg-ssg': {'id': 'MPEG-SSG', 'deprecated': False}, + 'mpi-permissive': {'id': 'mpi-permissive', 'deprecated': False}, + 'mpich2': {'id': 'mpich2', 'deprecated': False}, + 'mpl-1.0': {'id': 'MPL-1.0', 'deprecated': False}, + 'mpl-1.1': {'id': 'MPL-1.1', 'deprecated': False}, + 'mpl-2.0': {'id': 'MPL-2.0', 'deprecated': False}, + 'mpl-2.0-no-copyleft-exception': {'id': 'MPL-2.0-no-copyleft-exception', 'deprecated': False}, + 'mplus': {'id': 'mplus', 'deprecated': False}, + 'ms-lpl': {'id': 'MS-LPL', 'deprecated': False}, + 'ms-pl': {'id': 'MS-PL', 'deprecated': False}, + 'ms-rl': {'id': 'MS-RL', 'deprecated': False}, + 'mtll': {'id': 'MTLL', 'deprecated': False}, + 'mulanpsl-1.0': {'id': 'MulanPSL-1.0', 'deprecated': False}, + 'mulanpsl-2.0': {'id': 'MulanPSL-2.0', 'deprecated': False}, + 'multics': {'id': 'Multics', 'deprecated': False}, + 'mup': {'id': 'Mup', 'deprecated': False}, + 'naist-2003': {'id': 'NAIST-2003', 'deprecated': False}, + 'nasa-1.3': {'id': 'NASA-1.3', 'deprecated': False}, + 'naumen': {'id': 'Naumen', 'deprecated': False}, + 'nbpl-1.0': {'id': 'NBPL-1.0', 'deprecated': False}, + 'ncbi-pd': {'id': 'NCBI-PD', 'deprecated': False}, + 'ncgl-uk-2.0': {'id': 'NCGL-UK-2.0', 'deprecated': False}, + 'ncl': {'id': 'NCL', 'deprecated': False}, + 'ncsa': {'id': 'NCSA', 'deprecated': False}, + 'net-snmp': {'id': 'Net-SNMP', 'deprecated': True}, + 'netcdf': {'id': 'NetCDF', 'deprecated': False}, + 'newsletr': {'id': 'Newsletr', 'deprecated': False}, + 'ngpl': {'id': 'NGPL', 'deprecated': False}, + 'nicta-1.0': {'id': 'NICTA-1.0', 'deprecated': False}, + 'nist-pd': {'id': 'NIST-PD', 'deprecated': False}, + 'nist-pd-fallback': {'id': 'NIST-PD-fallback', 'deprecated': False}, + 'nist-software': {'id': 'NIST-Software', 'deprecated': False}, + 'nlod-1.0': {'id': 'NLOD-1.0', 'deprecated': False}, + 'nlod-2.0': {'id': 'NLOD-2.0', 'deprecated': False}, + 'nlpl': {'id': 'NLPL', 'deprecated': False}, + 'nokia': {'id': 'Nokia', 'deprecated': False}, + 'nosl': {'id': 'NOSL', 'deprecated': False}, + 'noweb': {'id': 'Noweb', 'deprecated': False}, + 'npl-1.0': {'id': 'NPL-1.0', 'deprecated': False}, + 'npl-1.1': {'id': 'NPL-1.1', 'deprecated': False}, + 'nposl-3.0': {'id': 'NPOSL-3.0', 'deprecated': False}, + 'nrl': {'id': 'NRL', 'deprecated': False}, + 'ntp': {'id': 'NTP', 'deprecated': False}, + 'ntp-0': {'id': 'NTP-0', 'deprecated': False}, + 'nunit': {'id': 'Nunit', 'deprecated': True}, + 'o-uda-1.0': {'id': 'O-UDA-1.0', 'deprecated': False}, + 'oar': {'id': 'OAR', 'deprecated': False}, + 'occt-pl': {'id': 'OCCT-PL', 'deprecated': False}, + 'oclc-2.0': {'id': 'OCLC-2.0', 'deprecated': False}, + 'odbl-1.0': {'id': 'ODbL-1.0', 'deprecated': False}, + 'odc-by-1.0': {'id': 'ODC-By-1.0', 'deprecated': False}, + 'offis': {'id': 'OFFIS', 'deprecated': False}, + 'ofl-1.0': {'id': 'OFL-1.0', 'deprecated': False}, + 'ofl-1.0-no-rfn': {'id': 'OFL-1.0-no-RFN', 'deprecated': False}, + 'ofl-1.0-rfn': {'id': 'OFL-1.0-RFN', 'deprecated': False}, + 'ofl-1.1': {'id': 'OFL-1.1', 'deprecated': False}, + 'ofl-1.1-no-rfn': {'id': 'OFL-1.1-no-RFN', 'deprecated': False}, + 'ofl-1.1-rfn': {'id': 'OFL-1.1-RFN', 'deprecated': False}, + 'ogc-1.0': {'id': 'OGC-1.0', 'deprecated': False}, + 'ogdl-taiwan-1.0': {'id': 'OGDL-Taiwan-1.0', 'deprecated': False}, + 'ogl-canada-2.0': {'id': 'OGL-Canada-2.0', 'deprecated': False}, + 'ogl-uk-1.0': {'id': 'OGL-UK-1.0', 'deprecated': False}, + 'ogl-uk-2.0': {'id': 'OGL-UK-2.0', 'deprecated': False}, + 'ogl-uk-3.0': {'id': 'OGL-UK-3.0', 'deprecated': False}, + 'ogtsl': {'id': 'OGTSL', 'deprecated': False}, + 'oldap-1.1': {'id': 'OLDAP-1.1', 'deprecated': False}, + 'oldap-1.2': {'id': 'OLDAP-1.2', 'deprecated': False}, + 'oldap-1.3': {'id': 'OLDAP-1.3', 'deprecated': False}, + 'oldap-1.4': {'id': 'OLDAP-1.4', 'deprecated': False}, + 'oldap-2.0': {'id': 'OLDAP-2.0', 'deprecated': False}, + 'oldap-2.0.1': {'id': 'OLDAP-2.0.1', 'deprecated': False}, + 'oldap-2.1': {'id': 'OLDAP-2.1', 'deprecated': False}, + 'oldap-2.2': {'id': 'OLDAP-2.2', 'deprecated': False}, + 'oldap-2.2.1': {'id': 'OLDAP-2.2.1', 'deprecated': False}, + 'oldap-2.2.2': {'id': 'OLDAP-2.2.2', 'deprecated': False}, + 'oldap-2.3': {'id': 'OLDAP-2.3', 'deprecated': False}, + 'oldap-2.4': {'id': 'OLDAP-2.4', 'deprecated': False}, + 'oldap-2.5': {'id': 'OLDAP-2.5', 'deprecated': False}, + 'oldap-2.6': {'id': 'OLDAP-2.6', 'deprecated': False}, + 'oldap-2.7': {'id': 'OLDAP-2.7', 'deprecated': False}, + 'oldap-2.8': {'id': 'OLDAP-2.8', 'deprecated': False}, + 'olfl-1.3': {'id': 'OLFL-1.3', 'deprecated': False}, + 'oml': {'id': 'OML', 'deprecated': False}, + 'openpbs-2.3': {'id': 'OpenPBS-2.3', 'deprecated': False}, + 'openssl': {'id': 'OpenSSL', 'deprecated': False}, + 'openssl-standalone': {'id': 'OpenSSL-standalone', 'deprecated': False}, + 'openvision': {'id': 'OpenVision', 'deprecated': False}, + 'opl-1.0': {'id': 'OPL-1.0', 'deprecated': False}, + 'opl-uk-3.0': {'id': 'OPL-UK-3.0', 'deprecated': False}, + 'opubl-1.0': {'id': 'OPUBL-1.0', 'deprecated': False}, + 'oset-pl-2.1': {'id': 'OSET-PL-2.1', 'deprecated': False}, + 'osl-1.0': {'id': 'OSL-1.0', 'deprecated': False}, + 'osl-1.1': {'id': 'OSL-1.1', 'deprecated': False}, + 'osl-2.0': {'id': 'OSL-2.0', 'deprecated': False}, + 'osl-2.1': {'id': 'OSL-2.1', 'deprecated': False}, + 'osl-3.0': {'id': 'OSL-3.0', 'deprecated': False}, + 'padl': {'id': 'PADL', 'deprecated': False}, + 'parity-6.0.0': {'id': 'Parity-6.0.0', 'deprecated': False}, + 'parity-7.0.0': {'id': 'Parity-7.0.0', 'deprecated': False}, + 'pddl-1.0': {'id': 'PDDL-1.0', 'deprecated': False}, + 'php-3.0': {'id': 'PHP-3.0', 'deprecated': False}, + 'php-3.01': {'id': 'PHP-3.01', 'deprecated': False}, + 'pixar': {'id': 'Pixar', 'deprecated': False}, + 'pkgconf': {'id': 'pkgconf', 'deprecated': False}, + 'plexus': {'id': 'Plexus', 'deprecated': False}, + 'pnmstitch': {'id': 'pnmstitch', 'deprecated': False}, + 'polyform-noncommercial-1.0.0': {'id': 'PolyForm-Noncommercial-1.0.0', 'deprecated': False}, + 'polyform-small-business-1.0.0': {'id': 'PolyForm-Small-Business-1.0.0', 'deprecated': False}, + 'postgresql': {'id': 'PostgreSQL', 'deprecated': False}, + 'ppl': {'id': 'PPL', 'deprecated': False}, + 'psf-2.0': {'id': 'PSF-2.0', 'deprecated': False}, + 'psfrag': {'id': 'psfrag', 'deprecated': False}, + 'psutils': {'id': 'psutils', 'deprecated': False}, + 'python-2.0': {'id': 'Python-2.0', 'deprecated': False}, + 'python-2.0.1': {'id': 'Python-2.0.1', 'deprecated': False}, + 'python-ldap': {'id': 'python-ldap', 'deprecated': False}, + 'qhull': {'id': 'Qhull', 'deprecated': False}, + 'qpl-1.0': {'id': 'QPL-1.0', 'deprecated': False}, + 'qpl-1.0-inria-2004': {'id': 'QPL-1.0-INRIA-2004', 'deprecated': False}, + 'radvd': {'id': 'radvd', 'deprecated': False}, + 'rdisc': {'id': 'Rdisc', 'deprecated': False}, + 'rhecos-1.1': {'id': 'RHeCos-1.1', 'deprecated': False}, + 'rpl-1.1': {'id': 'RPL-1.1', 'deprecated': False}, + 'rpl-1.5': {'id': 'RPL-1.5', 'deprecated': False}, + 'rpsl-1.0': {'id': 'RPSL-1.0', 'deprecated': False}, + 'rsa-md': {'id': 'RSA-MD', 'deprecated': False}, + 'rscpl': {'id': 'RSCPL', 'deprecated': False}, + 'ruby': {'id': 'Ruby', 'deprecated': False}, + 'ruby-pty': {'id': 'Ruby-pty', 'deprecated': False}, + 'sax-pd': {'id': 'SAX-PD', 'deprecated': False}, + 'sax-pd-2.0': {'id': 'SAX-PD-2.0', 'deprecated': False}, + 'saxpath': {'id': 'Saxpath', 'deprecated': False}, + 'scea': {'id': 'SCEA', 'deprecated': False}, + 'schemereport': {'id': 'SchemeReport', 'deprecated': False}, + 'sendmail': {'id': 'Sendmail', 'deprecated': False}, + 'sendmail-8.23': {'id': 'Sendmail-8.23', 'deprecated': False}, + 'sgi-b-1.0': {'id': 'SGI-B-1.0', 'deprecated': False}, + 'sgi-b-1.1': {'id': 'SGI-B-1.1', 'deprecated': False}, + 'sgi-b-2.0': {'id': 'SGI-B-2.0', 'deprecated': False}, + 'sgi-opengl': {'id': 'SGI-OpenGL', 'deprecated': False}, + 'sgp4': {'id': 'SGP4', 'deprecated': False}, + 'shl-0.5': {'id': 'SHL-0.5', 'deprecated': False}, + 'shl-0.51': {'id': 'SHL-0.51', 'deprecated': False}, + 'simpl-2.0': {'id': 'SimPL-2.0', 'deprecated': False}, + 'sissl': {'id': 'SISSL', 'deprecated': False}, + 'sissl-1.2': {'id': 'SISSL-1.2', 'deprecated': False}, + 'sl': {'id': 'SL', 'deprecated': False}, + 'sleepycat': {'id': 'Sleepycat', 'deprecated': False}, + 'smlnj': {'id': 'SMLNJ', 'deprecated': False}, + 'smppl': {'id': 'SMPPL', 'deprecated': False}, + 'snia': {'id': 'SNIA', 'deprecated': False}, + 'snprintf': {'id': 'snprintf', 'deprecated': False}, + 'softsurfer': {'id': 'softSurfer', 'deprecated': False}, + 'soundex': {'id': 'Soundex', 'deprecated': False}, + 'spencer-86': {'id': 'Spencer-86', 'deprecated': False}, + 'spencer-94': {'id': 'Spencer-94', 'deprecated': False}, + 'spencer-99': {'id': 'Spencer-99', 'deprecated': False}, + 'spl-1.0': {'id': 'SPL-1.0', 'deprecated': False}, + 'ssh-keyscan': {'id': 'ssh-keyscan', 'deprecated': False}, + 'ssh-openssh': {'id': 'SSH-OpenSSH', 'deprecated': False}, + 'ssh-short': {'id': 'SSH-short', 'deprecated': False}, + 'ssleay-standalone': {'id': 'SSLeay-standalone', 'deprecated': False}, + 'sspl-1.0': {'id': 'SSPL-1.0', 'deprecated': False}, + 'standardml-nj': {'id': 'StandardML-NJ', 'deprecated': True}, + 'sugarcrm-1.1.3': {'id': 'SugarCRM-1.1.3', 'deprecated': False}, + 'sun-ppp': {'id': 'Sun-PPP', 'deprecated': False}, + 'sun-ppp-2000': {'id': 'Sun-PPP-2000', 'deprecated': False}, + 'sunpro': {'id': 'SunPro', 'deprecated': False}, + 'swl': {'id': 'SWL', 'deprecated': False}, + 'swrule': {'id': 'swrule', 'deprecated': False}, + 'symlinks': {'id': 'Symlinks', 'deprecated': False}, + 'tapr-ohl-1.0': {'id': 'TAPR-OHL-1.0', 'deprecated': False}, + 'tcl': {'id': 'TCL', 'deprecated': False}, + 'tcp-wrappers': {'id': 'TCP-wrappers', 'deprecated': False}, + 'termreadkey': {'id': 'TermReadKey', 'deprecated': False}, + 'tgppl-1.0': {'id': 'TGPPL-1.0', 'deprecated': False}, + 'threeparttable': {'id': 'threeparttable', 'deprecated': False}, + 'tmate': {'id': 'TMate', 'deprecated': False}, + 'torque-1.1': {'id': 'TORQUE-1.1', 'deprecated': False}, + 'tosl': {'id': 'TOSL', 'deprecated': False}, + 'tpdl': {'id': 'TPDL', 'deprecated': False}, + 'tpl-1.0': {'id': 'TPL-1.0', 'deprecated': False}, + 'ttwl': {'id': 'TTWL', 'deprecated': False}, + 'ttyp0': {'id': 'TTYP0', 'deprecated': False}, + 'tu-berlin-1.0': {'id': 'TU-Berlin-1.0', 'deprecated': False}, + 'tu-berlin-2.0': {'id': 'TU-Berlin-2.0', 'deprecated': False}, + 'ubuntu-font-1.0': {'id': 'Ubuntu-font-1.0', 'deprecated': False}, + 'ucar': {'id': 'UCAR', 'deprecated': False}, + 'ucl-1.0': {'id': 'UCL-1.0', 'deprecated': False}, + 'ulem': {'id': 'ulem', 'deprecated': False}, + 'umich-merit': {'id': 'UMich-Merit', 'deprecated': False}, + 'unicode-3.0': {'id': 'Unicode-3.0', 'deprecated': False}, + 'unicode-dfs-2015': {'id': 'Unicode-DFS-2015', 'deprecated': False}, + 'unicode-dfs-2016': {'id': 'Unicode-DFS-2016', 'deprecated': False}, + 'unicode-tou': {'id': 'Unicode-TOU', 'deprecated': False}, + 'unixcrypt': {'id': 'UnixCrypt', 'deprecated': False}, + 'unlicense': {'id': 'Unlicense', 'deprecated': False}, + 'upl-1.0': {'id': 'UPL-1.0', 'deprecated': False}, + 'urt-rle': {'id': 'URT-RLE', 'deprecated': False}, + 'vim': {'id': 'Vim', 'deprecated': False}, + 'vostrom': {'id': 'VOSTROM', 'deprecated': False}, + 'vsl-1.0': {'id': 'VSL-1.0', 'deprecated': False}, + 'w3c': {'id': 'W3C', 'deprecated': False}, + 'w3c-19980720': {'id': 'W3C-19980720', 'deprecated': False}, + 'w3c-20150513': {'id': 'W3C-20150513', 'deprecated': False}, + 'w3m': {'id': 'w3m', 'deprecated': False}, + 'watcom-1.0': {'id': 'Watcom-1.0', 'deprecated': False}, + 'widget-workshop': {'id': 'Widget-Workshop', 'deprecated': False}, + 'wsuipa': {'id': 'Wsuipa', 'deprecated': False}, + 'wtfpl': {'id': 'WTFPL', 'deprecated': False}, + 'wxwindows': {'id': 'wxWindows', 'deprecated': True}, + 'x11': {'id': 'X11', 'deprecated': False}, + 'x11-distribute-modifications-variant': {'id': 'X11-distribute-modifications-variant', 'deprecated': False}, + 'x11-swapped': {'id': 'X11-swapped', 'deprecated': False}, + 'xdebug-1.03': {'id': 'Xdebug-1.03', 'deprecated': False}, + 'xerox': {'id': 'Xerox', 'deprecated': False}, + 'xfig': {'id': 'Xfig', 'deprecated': False}, + 'xfree86-1.1': {'id': 'XFree86-1.1', 'deprecated': False}, + 'xinetd': {'id': 'xinetd', 'deprecated': False}, + 'xkeyboard-config-zinoviev': {'id': 'xkeyboard-config-Zinoviev', 'deprecated': False}, + 'xlock': {'id': 'xlock', 'deprecated': False}, + 'xnet': {'id': 'Xnet', 'deprecated': False}, + 'xpp': {'id': 'xpp', 'deprecated': False}, + 'xskat': {'id': 'XSkat', 'deprecated': False}, + 'xzoom': {'id': 'xzoom', 'deprecated': False}, + 'ypl-1.0': {'id': 'YPL-1.0', 'deprecated': False}, + 'ypl-1.1': {'id': 'YPL-1.1', 'deprecated': False}, + 'zed': {'id': 'Zed', 'deprecated': False}, + 'zeeff': {'id': 'Zeeff', 'deprecated': False}, + 'zend-2.0': {'id': 'Zend-2.0', 'deprecated': False}, + 'zimbra-1.3': {'id': 'Zimbra-1.3', 'deprecated': False}, + 'zimbra-1.4': {'id': 'Zimbra-1.4', 'deprecated': False}, + 'zlib': {'id': 'Zlib', 'deprecated': False}, + 'zlib-acknowledgement': {'id': 'zlib-acknowledgement', 'deprecated': False}, + 'zpl-1.1': {'id': 'ZPL-1.1', 'deprecated': False}, + 'zpl-2.0': {'id': 'ZPL-2.0', 'deprecated': False}, + 'zpl-2.1': {'id': 'ZPL-2.1', 'deprecated': False}, +} + +EXCEPTIONS: dict[str, SPDXException] = { + '389-exception': {'id': '389-exception', 'deprecated': False}, + 'asterisk-exception': {'id': 'Asterisk-exception', 'deprecated': False}, + 'asterisk-linking-protocols-exception': {'id': 'Asterisk-linking-protocols-exception', 'deprecated': False}, + 'autoconf-exception-2.0': {'id': 'Autoconf-exception-2.0', 'deprecated': False}, + 'autoconf-exception-3.0': {'id': 'Autoconf-exception-3.0', 'deprecated': False}, + 'autoconf-exception-generic': {'id': 'Autoconf-exception-generic', 'deprecated': False}, + 'autoconf-exception-generic-3.0': {'id': 'Autoconf-exception-generic-3.0', 'deprecated': False}, + 'autoconf-exception-macro': {'id': 'Autoconf-exception-macro', 'deprecated': False}, + 'bison-exception-1.24': {'id': 'Bison-exception-1.24', 'deprecated': False}, + 'bison-exception-2.2': {'id': 'Bison-exception-2.2', 'deprecated': False}, + 'bootloader-exception': {'id': 'Bootloader-exception', 'deprecated': False}, + 'classpath-exception-2.0': {'id': 'Classpath-exception-2.0', 'deprecated': False}, + 'clisp-exception-2.0': {'id': 'CLISP-exception-2.0', 'deprecated': False}, + 'cryptsetup-openssl-exception': {'id': 'cryptsetup-OpenSSL-exception', 'deprecated': False}, + 'digirule-foss-exception': {'id': 'DigiRule-FOSS-exception', 'deprecated': False}, + 'ecos-exception-2.0': {'id': 'eCos-exception-2.0', 'deprecated': False}, + 'erlang-otp-linking-exception': {'id': 'erlang-otp-linking-exception', 'deprecated': False}, + 'fawkes-runtime-exception': {'id': 'Fawkes-Runtime-exception', 'deprecated': False}, + 'fltk-exception': {'id': 'FLTK-exception', 'deprecated': False}, + 'fmt-exception': {'id': 'fmt-exception', 'deprecated': False}, + 'font-exception-2.0': {'id': 'Font-exception-2.0', 'deprecated': False}, + 'freertos-exception-2.0': {'id': 'freertos-exception-2.0', 'deprecated': False}, + 'gcc-exception-2.0': {'id': 'GCC-exception-2.0', 'deprecated': False}, + 'gcc-exception-2.0-note': {'id': 'GCC-exception-2.0-note', 'deprecated': False}, + 'gcc-exception-3.1': {'id': 'GCC-exception-3.1', 'deprecated': False}, + 'gmsh-exception': {'id': 'Gmsh-exception', 'deprecated': False}, + 'gnat-exception': {'id': 'GNAT-exception', 'deprecated': False}, + 'gnome-examples-exception': {'id': 'GNOME-examples-exception', 'deprecated': False}, + 'gnu-compiler-exception': {'id': 'GNU-compiler-exception', 'deprecated': False}, + 'gnu-javamail-exception': {'id': 'gnu-javamail-exception', 'deprecated': False}, + 'gpl-3.0-interface-exception': {'id': 'GPL-3.0-interface-exception', 'deprecated': False}, + 'gpl-3.0-linking-exception': {'id': 'GPL-3.0-linking-exception', 'deprecated': False}, + 'gpl-3.0-linking-source-exception': {'id': 'GPL-3.0-linking-source-exception', 'deprecated': False}, + 'gpl-cc-1.0': {'id': 'GPL-CC-1.0', 'deprecated': False}, + 'gstreamer-exception-2005': {'id': 'GStreamer-exception-2005', 'deprecated': False}, + 'gstreamer-exception-2008': {'id': 'GStreamer-exception-2008', 'deprecated': False}, + 'i2p-gpl-java-exception': {'id': 'i2p-gpl-java-exception', 'deprecated': False}, + 'kicad-libraries-exception': {'id': 'KiCad-libraries-exception', 'deprecated': False}, + 'lgpl-3.0-linking-exception': {'id': 'LGPL-3.0-linking-exception', 'deprecated': False}, + 'libpri-openh323-exception': {'id': 'libpri-OpenH323-exception', 'deprecated': False}, + 'libtool-exception': {'id': 'Libtool-exception', 'deprecated': False}, + 'linux-syscall-note': {'id': 'Linux-syscall-note', 'deprecated': False}, + 'llgpl': {'id': 'LLGPL', 'deprecated': False}, + 'llvm-exception': {'id': 'LLVM-exception', 'deprecated': False}, + 'lzma-exception': {'id': 'LZMA-exception', 'deprecated': False}, + 'mif-exception': {'id': 'mif-exception', 'deprecated': False}, + 'nokia-qt-exception-1.1': {'id': 'Nokia-Qt-exception-1.1', 'deprecated': True}, + 'ocaml-lgpl-linking-exception': {'id': 'OCaml-LGPL-linking-exception', 'deprecated': False}, + 'occt-exception-1.0': {'id': 'OCCT-exception-1.0', 'deprecated': False}, + 'openjdk-assembly-exception-1.0': {'id': 'OpenJDK-assembly-exception-1.0', 'deprecated': False}, + 'openvpn-openssl-exception': {'id': 'openvpn-openssl-exception', 'deprecated': False}, + 'pcre2-exception': {'id': 'PCRE2-exception', 'deprecated': False}, + 'ps-or-pdf-font-exception-20170817': {'id': 'PS-or-PDF-font-exception-20170817', 'deprecated': False}, + 'qpl-1.0-inria-2004-exception': {'id': 'QPL-1.0-INRIA-2004-exception', 'deprecated': False}, + 'qt-gpl-exception-1.0': {'id': 'Qt-GPL-exception-1.0', 'deprecated': False}, + 'qt-lgpl-exception-1.1': {'id': 'Qt-LGPL-exception-1.1', 'deprecated': False}, + 'qwt-exception-1.0': {'id': 'Qwt-exception-1.0', 'deprecated': False}, + 'romic-exception': {'id': 'romic-exception', 'deprecated': False}, + 'rrdtool-floss-exception-2.0': {'id': 'RRDtool-FLOSS-exception-2.0', 'deprecated': False}, + 'sane-exception': {'id': 'SANE-exception', 'deprecated': False}, + 'shl-2.0': {'id': 'SHL-2.0', 'deprecated': False}, + 'shl-2.1': {'id': 'SHL-2.1', 'deprecated': False}, + 'stunnel-exception': {'id': 'stunnel-exception', 'deprecated': False}, + 'swi-exception': {'id': 'SWI-exception', 'deprecated': False}, + 'swift-exception': {'id': 'Swift-exception', 'deprecated': False}, + 'texinfo-exception': {'id': 'Texinfo-exception', 'deprecated': False}, + 'u-boot-exception-2.0': {'id': 'u-boot-exception-2.0', 'deprecated': False}, + 'ubdl-exception': {'id': 'UBDL-exception', 'deprecated': False}, + 'universal-foss-exception-1.0': {'id': 'Universal-FOSS-exception-1.0', 'deprecated': False}, + 'vsftpd-openssl-exception': {'id': 'vsftpd-openssl-exception', 'deprecated': False}, + 'wxwindows-exception-3.1': {'id': 'WxWindows-exception-3.1', 'deprecated': False}, + 'x11vnc-openssl-exception': {'id': 'x11vnc-openssl-exception', 'deprecated': False}, +} diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 0000000..e7cea57 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py @@ -0,0 +1,362 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import operator +import os +import platform +import sys +from typing import AbstractSet, Any, Callable, Literal, TypedDict, Union, cast + +from ._parser import MarkerAtom, MarkerList, Op, Value, Variable +from ._parser import parse_marker as _parse_marker +from ._tokenizer import ParserSyntaxError +from .specifiers import InvalidSpecifier, Specifier +from .utils import canonicalize_name + +__all__ = [ + "EvaluateContext", + "InvalidMarker", + "Marker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "default_environment", +] + +Operator = Callable[[str, Union[str, AbstractSet[str]]], bool] +EvaluateContext = Literal["metadata", "lock_file", "requirement"] +MARKERS_ALLOWING_SET = {"extras", "dependency_groups"} + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +class Environment(TypedDict): + implementation_name: str + """The implementation's identifier, e.g. ``'cpython'``.""" + + implementation_version: str + """ + The implementation's version, e.g. ``'3.13.0a2'`` for CPython 3.13.0a2, or + ``'7.3.13'`` for PyPy3.10 v7.3.13. + """ + + os_name: str + """ + The value of :py:data:`os.name`. The name of the operating system dependent module + imported, e.g. ``'posix'``. + """ + + platform_machine: str + """ + Returns the machine type, e.g. ``'i386'``. + + An empty string if the value cannot be determined. + """ + + platform_release: str + """ + The system's release, e.g. ``'2.2.0'`` or ``'NT'``. + + An empty string if the value cannot be determined. + """ + + platform_system: str + """ + The system/OS name, e.g. ``'Linux'``, ``'Windows'`` or ``'Java'``. + + An empty string if the value cannot be determined. + """ + + platform_version: str + """ + The system's release version, e.g. ``'#3 on degas'``. + + An empty string if the value cannot be determined. + """ + + python_full_version: str + """ + The Python version as string ``'major.minor.patchlevel'``. + + Note that unlike the Python :py:data:`sys.version`, this value will always include + the patchlevel (it defaults to 0). + """ + + platform_python_implementation: str + """ + A string identifying the Python implementation, e.g. ``'CPython'``. + """ + + python_version: str + """The Python version as string ``'major.minor'``.""" + + sys_platform: str + """ + This string contains a platform identifier that can be used to append + platform-specific components to :py:data:`sys.path`, for instance. + + For Unix systems, except on Linux and AIX, this is the lowercased OS name as + returned by ``uname -s`` with the first part of the version as returned by + ``uname -r`` appended, e.g. ``'sunos5'`` or ``'freebsd8'``, at the time when Python + was built. + """ + + +def _normalize_extra_values(results: Any) -> Any: + """ + Normalize extra values. + """ + if isinstance(results[0], tuple): + lhs, op, rhs = results[0] + if isinstance(lhs, Variable) and lhs.value == "extra": + normalized_extra = canonicalize_name(rhs.value) + rhs = Value(normalized_extra) + elif isinstance(rhs, Variable) and rhs.value == "extra": + normalized_extra = canonicalize_name(lhs.value) + lhs = Value(normalized_extra) + results[0] = lhs, op, rhs + return results + + +def _format_marker( + marker: list[str] | MarkerAtom | str, first: bool | None = True +) -> str: + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str | AbstractSet[str]) -> bool: + if isinstance(rhs, str): + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs, prereleases=True) + + oper: Operator | None = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +def _normalize( + lhs: str, rhs: str | AbstractSet[str], key: str +) -> tuple[str, str | AbstractSet[str]]: + # PEP 685 – Comparison of extra names for optional distribution dependencies + # https://peps.python.org/pep-0685/ + # > When comparing extra names, tools MUST normalize the names being + # > compared using the semantics outlined in PEP 503 for names + if key == "extra": + assert isinstance(rhs, str), "extra value must be a string" + return (canonicalize_name(lhs), canonicalize_name(rhs)) + if key in MARKERS_ALLOWING_SET: + if isinstance(rhs, str): # pragma: no cover + return (canonicalize_name(lhs), canonicalize_name(rhs)) + else: + return (canonicalize_name(lhs), {canonicalize_name(v) for v in rhs}) + + # other environment markers don't have such standards + return lhs, rhs + + +def _evaluate_markers( + markers: MarkerList, environment: dict[str, str | AbstractSet[str]] +) -> bool: + groups: list[list[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + environment_key = lhs.value + lhs_value = environment[environment_key] + rhs_value = rhs.value + else: + lhs_value = lhs.value + environment_key = rhs.value + rhs_value = environment[environment_key] + assert isinstance(lhs_value, str), "lhs must be a string" + lhs_value, rhs_value = _normalize(lhs_value, rhs_value, key=environment_key) + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: sys._version_info) -> str: + version = f"{info.major}.{info.minor}.{info.micro}" + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Environment: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + # Note: We create a Marker object without calling this constructor in + # packaging.requirements.Requirement. If any additional logic is + # added here, make sure to mirror/adapt Requirement. + try: + self._markers = _normalize_extra_values(_parse_marker(marker)) + # The attribute `_markers` can be described in terms of a recursive type: + # MarkerList = List[Union[Tuple[Node, ...], str, MarkerList]] + # + # For example, the following expression: + # python_version > "3.6" or (python_version == "3.6" and os_name == "unix") + # + # is parsed into: + # [ + # (, ')>, ), + # 'and', + # [ + # (, , ), + # 'or', + # (, , ) + # ] + # ] + except ParserSyntaxError as e: + raise InvalidMarker(str(e)) from e + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash((self.__class__.__name__, str(self))) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Marker): + return NotImplemented + + return str(self) == str(other) + + def evaluate( + self, + environment: dict[str, str] | None = None, + context: EvaluateContext = "metadata", + ) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. The *context* parameter specifies what + context the markers are being evaluated for, which influences what markers + are considered valid. Acceptable values are "metadata" (for core metadata; + default), "lock_file", and "requirement" (i.e. all other situations). + + The environment is determined from the current Python process. + """ + current_environment = cast( + "dict[str, str | AbstractSet[str]]", default_environment() + ) + if context == "lock_file": + current_environment.update( + extras=frozenset(), dependency_groups=frozenset() + ) + elif context == "metadata": + current_environment["extra"] = "" + if environment is not None: + current_environment.update(environment) + # The API used to allow setting extra to None. We need to handle this + # case for backwards compatibility. + if "extra" in current_environment and current_environment["extra"] is None: + current_environment["extra"] = "" + + return _evaluate_markers( + self._markers, _repair_python_full_version(current_environment) + ) + + +def _repair_python_full_version( + env: dict[str, str | AbstractSet[str]], +) -> dict[str, str | AbstractSet[str]]: + """ + Work around platform.python_version() returning something that is not PEP 440 + compliant for non-tagged Python builds. + """ + python_full_version = cast(str, env["python_full_version"]) + if python_full_version.endswith("+"): + env["python_full_version"] = f"{python_full_version}local" + return env diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py new file mode 100644 index 0000000..3bd8602 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py @@ -0,0 +1,862 @@ +from __future__ import annotations + +import email.feedparser +import email.header +import email.message +import email.parser +import email.policy +import pathlib +import sys +import typing +from typing import ( + Any, + Callable, + Generic, + Literal, + TypedDict, + cast, +) + +from . import licenses, requirements, specifiers, utils +from . import version as version_module +from .licenses import NormalizedLicenseExpression + +T = typing.TypeVar("T") + + +if sys.version_info >= (3, 11): # pragma: no cover + ExceptionGroup = ExceptionGroup +else: # pragma: no cover + + class ExceptionGroup(Exception): + """A minimal implementation of :external:exc:`ExceptionGroup` from Python 3.11. + + If :external:exc:`ExceptionGroup` is already defined by Python itself, + that version is used instead. + """ + + message: str + exceptions: list[Exception] + + def __init__(self, message: str, exceptions: list[Exception]) -> None: + self.message = message + self.exceptions = exceptions + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.message!r}, {self.exceptions!r})" + + +class InvalidMetadata(ValueError): + """A metadata field contains invalid data.""" + + field: str + """The name of the field that contains invalid data.""" + + def __init__(self, field: str, message: str) -> None: + self.field = field + super().__init__(message) + + +# The RawMetadata class attempts to make as few assumptions about the underlying +# serialization formats as possible. The idea is that as long as a serialization +# formats offer some very basic primitives in *some* way then we can support +# serializing to and from that format. +class RawMetadata(TypedDict, total=False): + """A dictionary of raw core metadata. + + Each field in core metadata maps to a key of this dictionary (when data is + provided). The key is lower-case and underscores are used instead of dashes + compared to the equivalent core metadata field. Any core metadata field that + can be specified multiple times or can hold multiple values in a single + field have a key with a plural name. See :class:`Metadata` whose attributes + match the keys of this dictionary. + + Core metadata fields that can be specified multiple times are stored as a + list or dict depending on which is appropriate for the field. Any fields + which hold multiple values in a single field are stored as a list. + + """ + + # Metadata 1.0 - PEP 241 + metadata_version: str + name: str + version: str + platforms: list[str] + summary: str + description: str + keywords: list[str] + home_page: str + author: str + author_email: str + license: str + + # Metadata 1.1 - PEP 314 + supported_platforms: list[str] + download_url: str + classifiers: list[str] + requires: list[str] + provides: list[str] + obsoletes: list[str] + + # Metadata 1.2 - PEP 345 + maintainer: str + maintainer_email: str + requires_dist: list[str] + provides_dist: list[str] + obsoletes_dist: list[str] + requires_python: str + requires_external: list[str] + project_urls: dict[str, str] + + # Metadata 2.0 + # PEP 426 attempted to completely revamp the metadata format + # but got stuck without ever being able to build consensus on + # it and ultimately ended up withdrawn. + # + # However, a number of tools had started emitting METADATA with + # `2.0` Metadata-Version, so for historical reasons, this version + # was skipped. + + # Metadata 2.1 - PEP 566 + description_content_type: str + provides_extra: list[str] + + # Metadata 2.2 - PEP 643 + dynamic: list[str] + + # Metadata 2.3 - PEP 685 + # No new fields were added in PEP 685, just some edge case were + # tightened up to provide better interoptability. + + # Metadata 2.4 - PEP 639 + license_expression: str + license_files: list[str] + + +_STRING_FIELDS = { + "author", + "author_email", + "description", + "description_content_type", + "download_url", + "home_page", + "license", + "license_expression", + "maintainer", + "maintainer_email", + "metadata_version", + "name", + "requires_python", + "summary", + "version", +} + +_LIST_FIELDS = { + "classifiers", + "dynamic", + "license_files", + "obsoletes", + "obsoletes_dist", + "platforms", + "provides", + "provides_dist", + "provides_extra", + "requires", + "requires_dist", + "requires_external", + "supported_platforms", +} + +_DICT_FIELDS = { + "project_urls", +} + + +def _parse_keywords(data: str) -> list[str]: + """Split a string of comma-separated keywords into a list of keywords.""" + return [k.strip() for k in data.split(",")] + + +def _parse_project_urls(data: list[str]) -> dict[str, str]: + """Parse a list of label/URL string pairings separated by a comma.""" + urls = {} + for pair in data: + # Our logic is slightly tricky here as we want to try and do + # *something* reasonable with malformed data. + # + # The main thing that we have to worry about, is data that does + # not have a ',' at all to split the label from the Value. There + # isn't a singular right answer here, and we will fail validation + # later on (if the caller is validating) so it doesn't *really* + # matter, but since the missing value has to be an empty str + # and our return value is dict[str, str], if we let the key + # be the missing value, then they'd have multiple '' values that + # overwrite each other in a accumulating dict. + # + # The other potentional issue is that it's possible to have the + # same label multiple times in the metadata, with no solid "right" + # answer with what to do in that case. As such, we'll do the only + # thing we can, which is treat the field as unparseable and add it + # to our list of unparsed fields. + parts = [p.strip() for p in pair.split(",", 1)] + parts.extend([""] * (max(0, 2 - len(parts)))) # Ensure 2 items + + # TODO: The spec doesn't say anything about if the keys should be + # considered case sensitive or not... logically they should + # be case-preserving and case-insensitive, but doing that + # would open up more cases where we might have duplicate + # entries. + label, url = parts + if label in urls: + # The label already exists in our set of urls, so this field + # is unparseable, and we can just add the whole thing to our + # unparseable data and stop processing it. + raise KeyError("duplicate labels in project urls") + urls[label] = url + + return urls + + +def _get_payload(msg: email.message.Message, source: bytes | str) -> str: + """Get the body of the message.""" + # If our source is a str, then our caller has managed encodings for us, + # and we don't need to deal with it. + if isinstance(source, str): + payload = msg.get_payload() + assert isinstance(payload, str) + return payload + # If our source is a bytes, then we're managing the encoding and we need + # to deal with it. + else: + bpayload = msg.get_payload(decode=True) + assert isinstance(bpayload, bytes) + try: + return bpayload.decode("utf8", "strict") + except UnicodeDecodeError as exc: + raise ValueError("payload in an invalid encoding") from exc + + +# The various parse_FORMAT functions here are intended to be as lenient as +# possible in their parsing, while still returning a correctly typed +# RawMetadata. +# +# To aid in this, we also generally want to do as little touching of the +# data as possible, except where there are possibly some historic holdovers +# that make valid data awkward to work with. +# +# While this is a lower level, intermediate format than our ``Metadata`` +# class, some light touch ups can make a massive difference in usability. + +# Map METADATA fields to RawMetadata. +_EMAIL_TO_RAW_MAPPING = { + "author": "author", + "author-email": "author_email", + "classifier": "classifiers", + "description": "description", + "description-content-type": "description_content_type", + "download-url": "download_url", + "dynamic": "dynamic", + "home-page": "home_page", + "keywords": "keywords", + "license": "license", + "license-expression": "license_expression", + "license-file": "license_files", + "maintainer": "maintainer", + "maintainer-email": "maintainer_email", + "metadata-version": "metadata_version", + "name": "name", + "obsoletes": "obsoletes", + "obsoletes-dist": "obsoletes_dist", + "platform": "platforms", + "project-url": "project_urls", + "provides": "provides", + "provides-dist": "provides_dist", + "provides-extra": "provides_extra", + "requires": "requires", + "requires-dist": "requires_dist", + "requires-external": "requires_external", + "requires-python": "requires_python", + "summary": "summary", + "supported-platform": "supported_platforms", + "version": "version", +} +_RAW_TO_EMAIL_MAPPING = {raw: email for email, raw in _EMAIL_TO_RAW_MAPPING.items()} + + +def parse_email(data: bytes | str) -> tuple[RawMetadata, dict[str, list[str]]]: + """Parse a distribution's metadata stored as email headers (e.g. from ``METADATA``). + + This function returns a two-item tuple of dicts. The first dict is of + recognized fields from the core metadata specification. Fields that can be + parsed and translated into Python's built-in types are converted + appropriately. All other fields are left as-is. Fields that are allowed to + appear multiple times are stored as lists. + + The second dict contains all other fields from the metadata. This includes + any unrecognized fields. It also includes any fields which are expected to + be parsed into a built-in type but were not formatted appropriately. Finally, + any fields that are expected to appear only once but are repeated are + included in this dict. + + """ + raw: dict[str, str | list[str] | dict[str, str]] = {} + unparsed: dict[str, list[str]] = {} + + if isinstance(data, str): + parsed = email.parser.Parser(policy=email.policy.compat32).parsestr(data) + else: + parsed = email.parser.BytesParser(policy=email.policy.compat32).parsebytes(data) + + # We have to wrap parsed.keys() in a set, because in the case of multiple + # values for a key (a list), the key will appear multiple times in the + # list of keys, but we're avoiding that by using get_all(). + for name in frozenset(parsed.keys()): + # Header names in RFC are case insensitive, so we'll normalize to all + # lower case to make comparisons easier. + name = name.lower() + + # We use get_all() here, even for fields that aren't multiple use, + # because otherwise someone could have e.g. two Name fields, and we + # would just silently ignore it rather than doing something about it. + headers = parsed.get_all(name) or [] + + # The way the email module works when parsing bytes is that it + # unconditionally decodes the bytes as ascii using the surrogateescape + # handler. When you pull that data back out (such as with get_all() ), + # it looks to see if the str has any surrogate escapes, and if it does + # it wraps it in a Header object instead of returning the string. + # + # As such, we'll look for those Header objects, and fix up the encoding. + value = [] + # Flag if we have run into any issues processing the headers, thus + # signalling that the data belongs in 'unparsed'. + valid_encoding = True + for h in headers: + # It's unclear if this can return more types than just a Header or + # a str, so we'll just assert here to make sure. + assert isinstance(h, (email.header.Header, str)) + + # If it's a header object, we need to do our little dance to get + # the real data out of it. In cases where there is invalid data + # we're going to end up with mojibake, but there's no obvious, good + # way around that without reimplementing parts of the Header object + # ourselves. + # + # That should be fine since, if mojibacked happens, this key is + # going into the unparsed dict anyways. + if isinstance(h, email.header.Header): + # The Header object stores it's data as chunks, and each chunk + # can be independently encoded, so we'll need to check each + # of them. + chunks: list[tuple[bytes, str | None]] = [] + for bin, encoding in email.header.decode_header(h): + try: + bin.decode("utf8", "strict") + except UnicodeDecodeError: + # Enable mojibake. + encoding = "latin1" + valid_encoding = False + else: + encoding = "utf8" + chunks.append((bin, encoding)) + + # Turn our chunks back into a Header object, then let that + # Header object do the right thing to turn them into a + # string for us. + value.append(str(email.header.make_header(chunks))) + # This is already a string, so just add it. + else: + value.append(h) + + # We've processed all of our values to get them into a list of str, + # but we may have mojibake data, in which case this is an unparsed + # field. + if not valid_encoding: + unparsed[name] = value + continue + + raw_name = _EMAIL_TO_RAW_MAPPING.get(name) + if raw_name is None: + # This is a bit of a weird situation, we've encountered a key that + # we don't know what it means, so we don't know whether it's meant + # to be a list or not. + # + # Since we can't really tell one way or another, we'll just leave it + # as a list, even though it may be a single item list, because that's + # what makes the most sense for email headers. + unparsed[name] = value + continue + + # If this is one of our string fields, then we'll check to see if our + # value is a list of a single item. If it is then we'll assume that + # it was emitted as a single string, and unwrap the str from inside + # the list. + # + # If it's any other kind of data, then we haven't the faintest clue + # what we should parse it as, and we have to just add it to our list + # of unparsed stuff. + if raw_name in _STRING_FIELDS and len(value) == 1: + raw[raw_name] = value[0] + # If this is one of our list of string fields, then we can just assign + # the value, since email *only* has strings, and our get_all() call + # above ensures that this is a list. + elif raw_name in _LIST_FIELDS: + raw[raw_name] = value + # Special Case: Keywords + # The keywords field is implemented in the metadata spec as a str, + # but it conceptually is a list of strings, and is serialized using + # ", ".join(keywords), so we'll do some light data massaging to turn + # this into what it logically is. + elif raw_name == "keywords" and len(value) == 1: + raw[raw_name] = _parse_keywords(value[0]) + # Special Case: Project-URL + # The project urls is implemented in the metadata spec as a list of + # specially-formatted strings that represent a key and a value, which + # is fundamentally a mapping, however the email format doesn't support + # mappings in a sane way, so it was crammed into a list of strings + # instead. + # + # We will do a little light data massaging to turn this into a map as + # it logically should be. + elif raw_name == "project_urls": + try: + raw[raw_name] = _parse_project_urls(value) + except KeyError: + unparsed[name] = value + # Nothing that we've done has managed to parse this, so it'll just + # throw it in our unparseable data and move on. + else: + unparsed[name] = value + + # We need to support getting the Description from the message payload in + # addition to getting it from the the headers. This does mean, though, there + # is the possibility of it being set both ways, in which case we put both + # in 'unparsed' since we don't know which is right. + try: + payload = _get_payload(parsed, data) + except ValueError: + unparsed.setdefault("description", []).append( + parsed.get_payload(decode=isinstance(data, bytes)) # type: ignore[call-overload] + ) + else: + if payload: + # Check to see if we've already got a description, if so then both + # it, and this body move to unparseable. + if "description" in raw: + description_header = cast(str, raw.pop("description")) + unparsed.setdefault("description", []).extend( + [description_header, payload] + ) + elif "description" in unparsed: + unparsed["description"].append(payload) + else: + raw["description"] = payload + + # We need to cast our `raw` to a metadata, because a TypedDict only support + # literal key names, but we're computing our key names on purpose, but the + # way this function is implemented, our `TypedDict` can only have valid key + # names. + return cast(RawMetadata, raw), unparsed + + +_NOT_FOUND = object() + + +# Keep the two values in sync. +_VALID_METADATA_VERSIONS = ["1.0", "1.1", "1.2", "2.1", "2.2", "2.3", "2.4"] +_MetadataVersion = Literal["1.0", "1.1", "1.2", "2.1", "2.2", "2.3", "2.4"] + +_REQUIRED_ATTRS = frozenset(["metadata_version", "name", "version"]) + + +class _Validator(Generic[T]): + """Validate a metadata field. + + All _process_*() methods correspond to a core metadata field. The method is + called with the field's raw value. If the raw value is valid it is returned + in its "enriched" form (e.g. ``version.Version`` for the ``Version`` field). + If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause + as appropriate). + """ + + name: str + raw_name: str + added: _MetadataVersion + + def __init__( + self, + *, + added: _MetadataVersion = "1.0", + ) -> None: + self.added = added + + def __set_name__(self, _owner: Metadata, name: str) -> None: + self.name = name + self.raw_name = _RAW_TO_EMAIL_MAPPING[name] + + def __get__(self, instance: Metadata, _owner: type[Metadata]) -> T: + # With Python 3.8, the caching can be replaced with functools.cached_property(). + # No need to check the cache as attribute lookup will resolve into the + # instance's __dict__ before __get__ is called. + cache = instance.__dict__ + value = instance._raw.get(self.name) + + # To make the _process_* methods easier, we'll check if the value is None + # and if this field is NOT a required attribute, and if both of those + # things are true, we'll skip the the converter. This will mean that the + # converters never have to deal with the None union. + if self.name in _REQUIRED_ATTRS or value is not None: + try: + converter: Callable[[Any], T] = getattr(self, f"_process_{self.name}") + except AttributeError: + pass + else: + value = converter(value) + + cache[self.name] = value + try: + del instance._raw[self.name] # type: ignore[misc] + except KeyError: + pass + + return cast(T, value) + + def _invalid_metadata( + self, msg: str, cause: Exception | None = None + ) -> InvalidMetadata: + exc = InvalidMetadata( + self.raw_name, msg.format_map({"field": repr(self.raw_name)}) + ) + exc.__cause__ = cause + return exc + + def _process_metadata_version(self, value: str) -> _MetadataVersion: + # Implicitly makes Metadata-Version required. + if value not in _VALID_METADATA_VERSIONS: + raise self._invalid_metadata(f"{value!r} is not a valid metadata version") + return cast(_MetadataVersion, value) + + def _process_name(self, value: str) -> str: + if not value: + raise self._invalid_metadata("{field} is a required field") + # Validate the name as a side-effect. + try: + utils.canonicalize_name(value, validate=True) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) from exc + else: + return value + + def _process_version(self, value: str) -> version_module.Version: + if not value: + raise self._invalid_metadata("{field} is a required field") + try: + return version_module.parse(value) + except version_module.InvalidVersion as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) from exc + + def _process_summary(self, value: str) -> str: + """Check the field contains no newlines.""" + if "\n" in value: + raise self._invalid_metadata("{field} must be a single line") + return value + + def _process_description_content_type(self, value: str) -> str: + content_types = {"text/plain", "text/x-rst", "text/markdown"} + message = email.message.EmailMessage() + message["content-type"] = value + + content_type, parameters = ( + # Defaults to `text/plain` if parsing failed. + message.get_content_type().lower(), + message["content-type"].params, + ) + # Check if content-type is valid or defaulted to `text/plain` and thus was + # not parseable. + if content_type not in content_types or content_type not in value.lower(): + raise self._invalid_metadata( + f"{{field}} must be one of {list(content_types)}, not {value!r}" + ) + + charset = parameters.get("charset", "UTF-8") + if charset != "UTF-8": + raise self._invalid_metadata( + f"{{field}} can only specify the UTF-8 charset, not {list(charset)}" + ) + + markdown_variants = {"GFM", "CommonMark"} + variant = parameters.get("variant", "GFM") # Use an acceptable default. + if content_type == "text/markdown" and variant not in markdown_variants: + raise self._invalid_metadata( + f"valid Markdown variants for {{field}} are {list(markdown_variants)}, " + f"not {variant!r}", + ) + return value + + def _process_dynamic(self, value: list[str]) -> list[str]: + for dynamic_field in map(str.lower, value): + if dynamic_field in {"name", "version", "metadata-version"}: + raise self._invalid_metadata( + f"{dynamic_field!r} is not allowed as a dynamic field" + ) + elif dynamic_field not in _EMAIL_TO_RAW_MAPPING: + raise self._invalid_metadata( + f"{dynamic_field!r} is not a valid dynamic field" + ) + return list(map(str.lower, value)) + + def _process_provides_extra( + self, + value: list[str], + ) -> list[utils.NormalizedName]: + normalized_names = [] + try: + for name in value: + normalized_names.append(utils.canonicalize_name(name, validate=True)) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{name!r} is invalid for {{field}}", cause=exc + ) from exc + else: + return normalized_names + + def _process_requires_python(self, value: str) -> specifiers.SpecifierSet: + try: + return specifiers.SpecifierSet(value) + except specifiers.InvalidSpecifier as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) from exc + + def _process_requires_dist( + self, + value: list[str], + ) -> list[requirements.Requirement]: + reqs = [] + try: + for req in value: + reqs.append(requirements.Requirement(req)) + except requirements.InvalidRequirement as exc: + raise self._invalid_metadata( + f"{req!r} is invalid for {{field}}", cause=exc + ) from exc + else: + return reqs + + def _process_license_expression( + self, value: str + ) -> NormalizedLicenseExpression | None: + try: + return licenses.canonicalize_license_expression(value) + except ValueError as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) from exc + + def _process_license_files(self, value: list[str]) -> list[str]: + paths = [] + for path in value: + if ".." in path: + raise self._invalid_metadata( + f"{path!r} is invalid for {{field}}, " + "parent directory indicators are not allowed" + ) + if "*" in path: + raise self._invalid_metadata( + f"{path!r} is invalid for {{field}}, paths must be resolved" + ) + if ( + pathlib.PurePosixPath(path).is_absolute() + or pathlib.PureWindowsPath(path).is_absolute() + ): + raise self._invalid_metadata( + f"{path!r} is invalid for {{field}}, paths must be relative" + ) + if pathlib.PureWindowsPath(path).as_posix() != path: + raise self._invalid_metadata( + f"{path!r} is invalid for {{field}}, paths must use '/' delimiter" + ) + paths.append(path) + return paths + + +class Metadata: + """Representation of distribution metadata. + + Compared to :class:`RawMetadata`, this class provides objects representing + metadata fields instead of only using built-in types. Any invalid metadata + will cause :exc:`InvalidMetadata` to be raised (with a + :py:attr:`~BaseException.__cause__` attribute as appropriate). + """ + + _raw: RawMetadata + + @classmethod + def from_raw(cls, data: RawMetadata, *, validate: bool = True) -> Metadata: + """Create an instance from :class:`RawMetadata`. + + If *validate* is true, all metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + ins = cls() + ins._raw = data.copy() # Mutations occur due to caching enriched values. + + if validate: + exceptions: list[Exception] = [] + try: + metadata_version = ins.metadata_version + metadata_age = _VALID_METADATA_VERSIONS.index(metadata_version) + except InvalidMetadata as metadata_version_exc: + exceptions.append(metadata_version_exc) + metadata_version = None + + # Make sure to check for the fields that are present, the required + # fields (so their absence can be reported). + fields_to_check = frozenset(ins._raw) | _REQUIRED_ATTRS + # Remove fields that have already been checked. + fields_to_check -= {"metadata_version"} + + for key in fields_to_check: + try: + if metadata_version: + # Can't use getattr() as that triggers descriptor protocol which + # will fail due to no value for the instance argument. + try: + field_metadata_version = cls.__dict__[key].added + except KeyError: + exc = InvalidMetadata(key, f"unrecognized field: {key!r}") + exceptions.append(exc) + continue + field_age = _VALID_METADATA_VERSIONS.index( + field_metadata_version + ) + if field_age > metadata_age: + field = _RAW_TO_EMAIL_MAPPING[key] + exc = InvalidMetadata( + field, + f"{field} introduced in metadata version " + f"{field_metadata_version}, not {metadata_version}", + ) + exceptions.append(exc) + continue + getattr(ins, key) + except InvalidMetadata as exc: + exceptions.append(exc) + + if exceptions: + raise ExceptionGroup("invalid metadata", exceptions) + + return ins + + @classmethod + def from_email(cls, data: bytes | str, *, validate: bool = True) -> Metadata: + """Parse metadata from email headers. + + If *validate* is true, the metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + raw, unparsed = parse_email(data) + + if validate: + exceptions: list[Exception] = [] + for unparsed_key in unparsed: + if unparsed_key in _EMAIL_TO_RAW_MAPPING: + message = f"{unparsed_key!r} has invalid data" + else: + message = f"unrecognized field: {unparsed_key!r}" + exceptions.append(InvalidMetadata(unparsed_key, message)) + + if exceptions: + raise ExceptionGroup("unparsed", exceptions) + + try: + return cls.from_raw(raw, validate=validate) + except ExceptionGroup as exc_group: + raise ExceptionGroup( + "invalid or unparsed metadata", exc_group.exceptions + ) from None + + metadata_version: _Validator[_MetadataVersion] = _Validator() + """:external:ref:`core-metadata-metadata-version` + (required; validated to be a valid metadata version)""" + # `name` is not normalized/typed to NormalizedName so as to provide access to + # the original/raw name. + name: _Validator[str] = _Validator() + """:external:ref:`core-metadata-name` + (required; validated using :func:`~packaging.utils.canonicalize_name` and its + *validate* parameter)""" + version: _Validator[version_module.Version] = _Validator() + """:external:ref:`core-metadata-version` (required)""" + dynamic: _Validator[list[str] | None] = _Validator( + added="2.2", + ) + """:external:ref:`core-metadata-dynamic` + (validated against core metadata field names and lowercased)""" + platforms: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-platform`""" + supported_platforms: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-supported-platform`""" + summary: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-summary` (validated to contain no newlines)""" + description: _Validator[str | None] = _Validator() # TODO 2.1: can be in body + """:external:ref:`core-metadata-description`""" + description_content_type: _Validator[str | None] = _Validator(added="2.1") + """:external:ref:`core-metadata-description-content-type` (validated)""" + keywords: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-keywords`""" + home_page: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-home-page`""" + download_url: _Validator[str | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-download-url`""" + author: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author`""" + author_email: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author-email`""" + maintainer: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer`""" + maintainer_email: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer-email`""" + license: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-license`""" + license_expression: _Validator[NormalizedLicenseExpression | None] = _Validator( + added="2.4" + ) + """:external:ref:`core-metadata-license-expression`""" + license_files: _Validator[list[str] | None] = _Validator(added="2.4") + """:external:ref:`core-metadata-license-file`""" + classifiers: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-classifier`""" + requires_dist: _Validator[list[requirements.Requirement] | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-dist`""" + requires_python: _Validator[specifiers.SpecifierSet | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-python`""" + # Because `Requires-External` allows for non-PEP 440 version specifiers, we + # don't do any processing on the values. + requires_external: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-requires-external`""" + project_urls: _Validator[dict[str, str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-project-url`""" + # PEP 685 lets us raise an error if an extra doesn't pass `Name` validation + # regardless of metadata version. + provides_extra: _Validator[list[utils.NormalizedName] | None] = _Validator( + added="2.1", + ) + """:external:ref:`core-metadata-provides-extra`""" + provides_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-provides-dist`""" + obsoletes_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-obsoletes-dist`""" + requires: _Validator[list[str] | None] = _Validator(added="1.1") + """``Requires`` (deprecated)""" + provides: _Validator[list[str] | None] = _Validator(added="1.1") + """``Provides`` (deprecated)""" + obsoletes: _Validator[list[str] | None] = _Validator(added="1.1") + """``Obsoletes`` (deprecated)""" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 0000000..4e068c9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py @@ -0,0 +1,91 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +from __future__ import annotations + +from typing import Any, Iterator + +from ._parser import parse_requirement as _parse_requirement +from ._tokenizer import ParserSyntaxError +from .markers import Marker, _normalize_extra_values +from .specifiers import SpecifierSet +from .utils import canonicalize_name + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + parsed = _parse_requirement(requirement_string) + except ParserSyntaxError as e: + raise InvalidRequirement(str(e)) from e + + self.name: str = parsed.name + self.url: str | None = parsed.url or None + self.extras: set[str] = set(parsed.extras or []) + self.specifier: SpecifierSet = SpecifierSet(parsed.specifier) + self.marker: Marker | None = None + if parsed.marker is not None: + self.marker = Marker.__new__(Marker) + self.marker._markers = _normalize_extra_values(parsed.marker) + + def _iter_parts(self, name: str) -> Iterator[str]: + yield name + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + yield f"[{formatted_extras}]" + + if self.specifier: + yield str(self.specifier) + + if self.url: + yield f"@ {self.url}" + if self.marker: + yield " " + + if self.marker: + yield f"; {self.marker}" + + def __str__(self) -> str: + return "".join(self._iter_parts(self.name)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash( + ( + self.__class__.__name__, + *self._iter_parts(canonicalize_name(self.name)), + ) + ) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Requirement): + return NotImplemented + + return ( + canonicalize_name(self.name) == canonicalize_name(other.name) + and self.extras == other.extras + and self.specifier == other.specifier + and self.url == other.url + and self.marker == other.marker + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 0000000..47c3929 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -0,0 +1,1019 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier + from pip._vendor.packaging.version import Version +""" + +from __future__ import annotations + +import abc +import itertools +import re +from typing import Callable, Iterable, Iterator, TypeVar, Union + +from .utils import canonicalize_version +from .version import Version + +UnparsedVersion = Union[Version, str] +UnparsedVersionVar = TypeVar("UnparsedVersionVar", bound=UnparsedVersion) +CallableOperator = Callable[[Version, str], bool] + + +def _coerce_version(version: UnparsedVersion) -> Version: + if not isinstance(version, Version): + version = Version(version) + return version + + +class InvalidSpecifier(ValueError): + """ + Raised when attempting to create a :class:`Specifier` with a specifier + string that is invalid. + + >>> Specifier("lolwat") + Traceback (most recent call last): + ... + packaging.specifiers.InvalidSpecifier: Invalid specifier: 'lolwat' + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier-like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier-like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier-like + objects are equal. + + :param other: The other object to check against. + """ + + @property + @abc.abstractmethod + def prereleases(self) -> bool | None: + """Whether or not pre-releases as a whole are allowed. + + This can be set to either ``True`` or ``False`` to explicitly enable or disable + prereleases or it can be set to ``None`` (the default) to use default semantics. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """Setter for :attr:`prereleases`. + + :param value: The value to set. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: bool | None = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class Specifier(BaseSpecifier): + """This class abstracts handling of version specifiers. + + .. tip:: + + It is generally not required to instantiate this manually. You should instead + prefer to work with :class:`SpecifierSet` instead, which can parse + comma-separated version specifiers (which is what package metadata contains). + """ + + _operator_regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + """ + _version_regex_str = r""" + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s;)]* # The arbitrary version can be just about anything, + # we match everything except for whitespace, a + # semi-colon for marker support, and a closing paren + # since versions can be enclosed in them. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + + # You cannot use a wild card and a pre-release, post-release, a dev or + # local version together so group them with a | and make them optional. + (?: + \.\* # Wild card syntax of .* + | + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + def __init__(self, spec: str = "", prereleases: bool | None = None) -> None: + """Initialize a Specifier instance. + + :param spec: + The string representation of a specifier which will be parsed and + normalized before use. + :param prereleases: + This tells the specifier if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + :raises InvalidSpecifier: + If the given specifier is invalid (i.e. bad syntax). + """ + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: {spec!r}") + + self._spec: tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + # https://github.com/python/mypy/pull/13475#pullrequestreview-1079784515 + @property # type: ignore[override] + def prereleases(self) -> bool: + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "===", ">", "<"]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if Version(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + @property + def operator(self) -> str: + """The operator of this specifier. + + >>> Specifier("==1.2.3").operator + '==' + """ + return self._spec[0] + + @property + def version(self) -> str: + """The version of this specifier. + + >>> Specifier("==1.2.3").version + '1.2.3' + """ + return self._spec[1] + + def __repr__(self) -> str: + """A representation of the Specifier that shows all internal state. + + >>> Specifier('>=1.0.0') + =1.0.0')> + >>> Specifier('>=1.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> Specifier('>=1.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + """A string representation of the Specifier that can be round-tripped. + + >>> str(Specifier('>=1.0.0')) + '>=1.0.0' + >>> str(Specifier('>=1.0.0', prereleases=False)) + '>=1.0.0' + """ + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> tuple[str, str]: + canonical_version = canonicalize_version( + self._spec[1], + strip_trailing_zero=(self._spec[0] != "~="), + ) + return self._spec[0], canonical_version + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + """Whether or not the two Specifier-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> Specifier("==1.2.3") == Specifier("== 1.2.3.0") + True + >>> (Specifier("==1.2.3", prereleases=False) == + ... Specifier("==1.2.3", prereleases=True)) + True + >>> Specifier("==1.2.3") == "==1.2.3" + True + >>> Specifier("==1.2.3") == Specifier("==1.2.4") + False + >>> Specifier("==1.2.3") == Specifier("~=1.2.3") + False + """ + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _compare_compatible(self, prospective: Version, spec: str) -> bool: + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = _version_join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + def _compare_equal(self, prospective: Version, spec: str) -> bool: + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + normalized_prospective = canonicalize_version( + prospective.public, strip_trailing_zero=False + ) + # Get the normalized version string ignoring the trailing .* + normalized_spec = canonicalize_version(spec[:-2], strip_trailing_zero=False) + # Split the spec out by bangs and dots, and pretend that there is + # an implicit dot in between a release segment and a pre-release segment. + split_spec = _version_split(normalized_spec) + + # Split the prospective version out by bangs and dots, and pretend + # that there is an implicit dot in between a release segment and + # a pre-release segment. + split_prospective = _version_split(normalized_prospective) + + # 0-pad the prospective version before shortening it to get the correct + # shortened version. + padded_prospective, _ = _pad_version(split_prospective, split_spec) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = padded_prospective[: len(split_spec)] + + return shortened_prospective == split_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + def _compare_not_equal(self, prospective: Version, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + def _compare_less_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + def _compare_greater_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + def _compare_less_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + def _compare_greater_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + def __contains__(self, item: str | Version) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in Specifier(">=1.2.3") + True + >>> Version("1.2.3") in Specifier(">=1.2.3") + True + >>> "1.0.0" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3", prereleases=True) + True + """ + return self.contains(item) + + def contains(self, item: UnparsedVersion, prereleases: bool | None = None) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this Specifier. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> Specifier(">=1.2.3").contains("1.2.3") + True + >>> Specifier(">=1.2.3").contains(Version("1.2.3")) + True + >>> Specifier(">=1.2.3").contains("1.0.0") + False + >>> Specifier(">=1.2.3").contains("1.3.0a1") + False + >>> Specifier(">=1.2.3", prereleases=True).contains("1.3.0a1") + True + >>> Specifier(">=1.2.3").contains("1.3.0a1", prereleases=True) + True + """ + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version, this allows us to have a shortcut for + # "2.0" in Specifier(">=2") + normalized_item = _coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifier. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(Specifier().contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.2.3", "1.3", Version("1.4")])) + ['1.2.3', '1.3', ] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.5a1"])) + ['1.5a1'] + >>> list(Specifier(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(Specifier(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + """ + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = _coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> list[str]: + """Split version into components. + + The split components are intended for version comparison. The logic does + not attempt to retain the original version string, so joining the + components back with :func:`_version_join` may not produce the original + version string. + """ + result: list[str] = [] + + epoch, _, rest = version.rpartition("!") + result.append(epoch or "0") + + for item in rest.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _version_join(components: list[str]) -> str: + """Join split version components into a version string. + + This function assumes the input came from :func:`_version_split`, where the + first component must be the epoch (either empty or numeric), and all other + components numeric. + """ + epoch, *rest = components + return f"{epoch}!{'.'.join(rest)}" + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: list[str], right: list[str]) -> tuple[list[str], list[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return ( + list(itertools.chain.from_iterable(left_split)), + list(itertools.chain.from_iterable(right_split)), + ) + + +class SpecifierSet(BaseSpecifier): + """This class abstracts handling of a set of version specifiers. + + It can be passed a single specifier (``>=3.0``), a comma-separated list of + specifiers (``>=3.0,!=3.1``), or no specifier at all. + """ + + def __init__( + self, + specifiers: str | Iterable[Specifier] = "", + prereleases: bool | None = None, + ) -> None: + """Initialize a SpecifierSet instance. + + :param specifiers: + The string representation of a specifier or a comma-separated list of + specifiers which will be parsed and normalized before use. + May also be an iterable of ``Specifier`` instances, which will be used + as is. + :param prereleases: + This tells the SpecifierSet if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + + :raises InvalidSpecifier: + If the given ``specifiers`` are not parseable than this exception will be + raised. + """ + + if isinstance(specifiers, str): + # Split on `,` to break each individual specifier into its own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Make each individual specifier a Specifier and save in a frozen set + # for later. + self._specs = frozenset(map(Specifier, split_specifiers)) + else: + # Save the supplied specifiers in a frozen set. + self._specs = frozenset(specifiers) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + @property + def prereleases(self) -> bool | None: + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __repr__(self) -> str: + """A representation of the specifier set that shows all internal state. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> SpecifierSet('>=1.0.0,!=2.0.0') + =1.0.0')> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + """A string representation of the specifier set that can be round-tripped. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> str(SpecifierSet(">=1.0.0,!=1.0.1")) + '!=1.0.1,>=1.0.0' + >>> str(SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False)) + '!=1.0.1,>=1.0.0' + """ + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: SpecifierSet | str) -> SpecifierSet: + """Return a SpecifierSet which is a combination of the two sets. + + :param other: The other object to combine with. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") & '<=2.0.0,!=2.0.1' + =1.0.0')> + >>> SpecifierSet(">=1.0.0,!=1.0.1") & SpecifierSet('<=2.0.0,!=2.0.1') + =1.0.0')> + """ + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + """Whether or not the two SpecifierSet-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> (SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False) == + ... SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True)) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == ">=1.0.0,!=1.0.1" + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.2") + False + """ + if isinstance(other, (str, Specifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + """Returns the number of specifiers in this specifier set.""" + return len(self._specs) + + def __iter__(self) -> Iterator[Specifier]: + """ + Returns an iterator over all the underlying :class:`Specifier` instances + in this specifier set. + + >>> sorted(SpecifierSet(">=1.0.0,!=1.0.1"), key=str) + [, =1.0.0')>] + """ + return iter(self._specs) + + def __contains__(self, item: UnparsedVersion) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> Version("1.2.3") in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> "1.0.1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, + item: UnparsedVersion, + prereleases: bool | None = None, + installed: bool | None = None, + ) -> bool: + """Return whether or not the item is contained in this SpecifierSet. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this SpecifierSet. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.2.3") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains(Version("1.2.3")) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.0.1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True).contains("1.3.0a1") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1", prereleases=True) + True + """ + # Ensure that our item is a Version instance. + if not isinstance(item, Version): + item = Version(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + if installed and item.is_prerelease: + item = Version(item.base_version) + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifiers in this set. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(SpecifierSet(...).contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", Version("1.4")])) + ['1.3', ] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.5a1"])) + [] + >>> list(SpecifierSet(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(SpecifierSet(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + + An "empty" SpecifierSet will filter items based on the presence of prerelease + versions in the set. + + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet("").filter(["1.5a1"])) + ['1.5a1'] + >>> list(SpecifierSet("", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + """ + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iter(iterable) + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases. + else: + filtered: list[UnparsedVersionVar] = [] + found_prereleases: list[UnparsedVersionVar] = [] + + for item in iterable: + parsed_version = _coerce_version(item) + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return iter(found_prereleases) + + return iter(filtered) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 0000000..8522f59 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,656 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import logging +import platform +import re +import struct +import subprocess +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Iterable, + Iterator, + Sequence, + Tuple, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +AppleVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = struct.calcsize("P") == 4 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_abi", "_hash", "_interpreter", "_platform"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> frozenset[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> int | str | None: + value: int | str | None = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_").replace(" ", "_") + + +def _is_threaded_cpython(abis: list[str]) -> bool: + """ + Determine if the ABI corresponds to a threaded (`--disable-gil`) build. + + The threaded builds are indicated by a "t" in the abiflags. + """ + if len(abis) == 0: + return False + # expect e.g., cp313 + m = re.match(r"cp\d+(.*)", abis[0]) + if not m: + return False + abiflags = m.group(1) + return "t" in abiflags + + +def _abi3_applies(python_version: PythonVersion, threading: bool) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. The threaded (`--disable-gil`) + builds do not support abi3. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) and not threading + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> list[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + threading = debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version >= (3, 13) and _get_config_var("Py_GIL_DISABLED", warn): + threading = "t" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}{threading}") + abis.insert(0, f"cp{version}{threading}{debug}{pymalloc}{ucs4}") + return abis + + +def cpython_tags( + python_version: PythonVersion | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + threading = _is_threaded_cpython(abis) + use_abi3 = _abi3_applies(python_version, threading) + if use_abi3: + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if use_abi3: + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + version = _version_nodot((python_version[0], minor_version)) + interpreter = f"cp{version}" + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> list[str]: + """ + Return the ABI tag based on EXT_SUFFIX. + """ + # The following are examples of `EXT_SUFFIX`. + # We want to keep the parts which are related to the ABI and remove the + # parts which are related to the platform: + # - linux: '.cpython-310-x86_64-linux-gnu.so' => cp310 + # - mac: '.cpython-310-darwin.so' => cp310 + # - win: '.cp310-win_amd64.pyd' => cp310 + # - win: '.pyd' => cp37 (uses _cpython_abis()) + # - pypy: '.pypy38-pp73-x86_64-linux-gnu.so' => pypy38_pp73 + # - graalpy: '.graalpy-38-native-x86_64-darwin.dylib' + # => graalpy_38_native + + ext_suffix = _get_config_var("EXT_SUFFIX", warn=True) + if not isinstance(ext_suffix, str) or ext_suffix[0] != ".": + raise SystemError("invalid sysconfig.get_config_var('EXT_SUFFIX')") + parts = ext_suffix.split(".") + if len(parts) < 3: + # CPython3.7 and earlier uses ".pyd" on Windows. + return _cpython_abis(sys.version_info[:2]) + soabi = parts[1] + if soabi.startswith("cpython"): + # non-windows + abi = "cp" + soabi.split("-")[1] + elif soabi.startswith("cp"): + # windows + abi = soabi.split("-")[0] + elif soabi.startswith("pypy"): + abi = "-".join(soabi.split("-")[:2]) + elif soabi.startswith("graalpy"): + abi = "-".join(soabi.split("-")[:3]) + elif soabi: + # pyston, ironpython, others? + abi = soabi + else: + return [] + return [_normalize_string(abi)] + + +def generic_tags( + interpreter: str | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + else: + abis = list(abis) + platforms = list(platforms or platform_tags()) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: PythonVersion | None = None, + interpreter: str | None = None, + platforms: Iterable[str] | None = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: AppleVersion, cpu_arch: str) -> list[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: AppleVersion | None = None, arch: str | None = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("AppleVersion", tuple(map(int, version_str.split(".")[:2]))) + if version == (10, 16): + # When built against an older macOS SDK, Python will report macOS 10.16 + # instead of the real version. + version_str = subprocess.run( + [ + sys.executable, + "-sS", + "-c", + "import platform; print(platform.mac_ver()[0])", + ], + check=True, + env={"SYSTEM_VERSION_COMPAT": "0"}, + stdout=subprocess.PIPE, + text=True, + ).stdout + version = cast("AppleVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + major_version = 10 + for minor_version in range(version[1], -1, -1): + compat_version = major_version, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield f"macosx_{major_version}_{minor_version}_{binary_format}" + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + minor_version = 0 + for major_version in range(version[0], 10, -1): + compat_version = major_version, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield f"macosx_{major_version}_{minor_version}_{binary_format}" + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + major_version = 10 + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = major_version, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield f"macosx_{major_version}_{minor_version}_{binary_format}" + else: + for minor_version in range(16, 3, -1): + compat_version = major_version, minor_version + binary_format = "universal2" + yield f"macosx_{major_version}_{minor_version}_{binary_format}" + + +def ios_platforms( + version: AppleVersion | None = None, multiarch: str | None = None +) -> Iterator[str]: + """ + Yields the platform tags for an iOS system. + + :param version: A two-item tuple specifying the iOS version to generate + platform tags for. Defaults to the current iOS version. + :param multiarch: The CPU architecture+ABI to generate platform tags for - + (the value used by `sys.implementation._multiarch` e.g., + `arm64_iphoneos` or `x84_64_iphonesimulator`). Defaults to the current + multiarch value. + """ + if version is None: + # if iOS is the current platform, ios_ver *must* be defined. However, + # it won't exist for CPython versions before 3.13, which causes a mypy + # error. + _, release, _, _ = platform.ios_ver() # type: ignore[attr-defined, unused-ignore] + version = cast("AppleVersion", tuple(map(int, release.split(".")[:2]))) + + if multiarch is None: + multiarch = sys.implementation._multiarch + multiarch = multiarch.replace("-", "_") + + ios_platform_template = "ios_{major}_{minor}_{multiarch}" + + # Consider any iOS major.minor version from the version requested, down to + # 12.0. 12.0 is the first iOS version that is known to have enough features + # to support CPython. Consider every possible minor release up to X.9. There + # highest the minor has ever gone is 8 (14.8 and 15.8) but having some extra + # candidates that won't ever match doesn't really hurt, and it saves us from + # having to keep an explicit list of known iOS versions in the code. Return + # the results descending order of version number. + + # If the requested major version is less than 12, there won't be any matches. + if version[0] < 12: + return + + # Consider the actual X.Y version that was requested. + yield ios_platform_template.format( + major=version[0], minor=version[1], multiarch=multiarch + ) + + # Consider every minor version from X.0 to the minor version prior to the + # version requested by the platform. + for minor in range(version[1] - 1, -1, -1): + yield ios_platform_template.format( + major=version[0], minor=minor, multiarch=multiarch + ) + + for major in range(version[0] - 1, 11, -1): + for minor in range(9, -1, -1): + yield ios_platform_template.format( + major=major, minor=minor, multiarch=multiarch + ) + + +def android_platforms( + api_level: int | None = None, abi: str | None = None +) -> Iterator[str]: + """ + Yields the :attr:`~Tag.platform` tags for Android. If this function is invoked on + non-Android platforms, the ``api_level`` and ``abi`` arguments are required. + + :param int api_level: The maximum `API level + `__ to return. Defaults + to the current system's version, as returned by ``platform.android_ver``. + :param str abi: The `Android ABI `__, + e.g. ``arm64_v8a``. Defaults to the current system's ABI , as returned by + ``sysconfig.get_platform``. Hyphens and periods will be replaced with + underscores. + """ + if platform.system() != "Android" and (api_level is None or abi is None): + raise TypeError( + "on non-Android platforms, the api_level and abi arguments are required" + ) + + if api_level is None: + # Python 3.13 was the first version to return platform.system() == "Android", + # and also the first version to define platform.android_ver(). + api_level = platform.android_ver().api_level # type: ignore[attr-defined] + + if abi is None: + abi = sysconfig.get_platform().split("-")[-1] + abi = _normalize_string(abi) + + # 16 is the minimum API level known to have enough features to support CPython + # without major patching. Yield every API level from the maximum down to the + # minimum, inclusive. + min_api_level = 16 + for ver in range(api_level, min_api_level - 1, -1): + yield f"android_{ver}_{abi}" + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if not linux.startswith("linux_"): + # we should never be here, just yield the sysconfig one and return + yield linux + return + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv8l" + _, arch = linux.split("_", 1) + archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) + yield from _manylinux.platform_tags(archs) + yield from _musllinux.platform_tags(archs) + for arch in archs: + yield f"linux_{arch}" + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "iOS": + return ios_platforms() + elif platform.system() == "Android": + return android_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + + Some implementations have a reserved, two-letter abbreviation which will + be returned when appropriate. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + interp = "pp3" + elif interp_name == "cp": + interp = "cp" + interpreter_version(warn=warn) + else: + interp = None + yield from compatible_tags(interpreter=interp) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 0000000..2345095 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py @@ -0,0 +1,163 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import functools +import re +from typing import NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version, _TrimmedRelease + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidName(ValueError): + """ + An invalid distribution name; users should refer to the packaging user guide. + """ + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +# Core metadata spec for `Name` +_validate_regex = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE +) +_canonicalize_regex = re.compile(r"[-_.]+") +_normalized_regex = re.compile(r"^([a-z0-9]|[a-z0-9]([a-z0-9-](?!--))*[a-z0-9])$") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str, *, validate: bool = False) -> NormalizedName: + if validate and not _validate_regex.match(name): + raise InvalidName(f"name is invalid: {name!r}") + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def is_normalized_name(name: str) -> bool: + return _normalized_regex.match(name) is not None + + +@functools.singledispatch +def canonicalize_version( + version: Version | str, *, strip_trailing_zero: bool = True +) -> str: + """ + Return a canonical form of a version as a string. + + >>> canonicalize_version('1.0.1') + '1.0.1' + + Per PEP 625, versions may have multiple canonical forms, differing + only by trailing zeros. + + >>> canonicalize_version('1.0.0') + '1' + >>> canonicalize_version('1.0.0', strip_trailing_zero=False) + '1.0.0' + + Invalid versions are returned unaltered. + + >>> canonicalize_version('foo bar baz') + 'foo bar baz' + """ + return str(_TrimmedRelease(str(version)) if strip_trailing_zero else version) + + +@canonicalize_version.register +def _(version: str, *, strip_trailing_zero: bool = True) -> str: + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + return canonicalize_version(parsed, strip_trailing_zero=strip_trailing_zero) + + +def parse_wheel_filename( + filename: str, +) -> tuple[NormalizedName, Version, BuildTag, frozenset[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename!r}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename!r}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name. + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename!r}") + name = canonicalize_name(name_part) + + try: + version = Version(parts[1]) + except InvalidVersion as e: + raise InvalidWheelFilename( + f"Invalid wheel filename (invalid version): {filename!r}" + ) from e + + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in {filename!r}" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename!r}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename!r}") + + name = canonicalize_name(name_part) + + try: + version = Version(version_part) + except InvalidVersion as e: + raise InvalidSdistFilename( + f"Invalid sdist filename (invalid version): {filename!r}" + ) from e + + return (name, version) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 0000000..21f44ca --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py @@ -0,0 +1,582 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.version import parse, Version +""" + +from __future__ import annotations + +import itertools +import re +from typing import Any, Callable, NamedTuple, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["VERSION_PATTERN", "InvalidVersion", "Version", "parse"] + +LocalType = Tuple[Union[int, str], ...] + +CmpPrePostDevType = Union[InfinityType, NegativeInfinityType, Tuple[str, int]] +CmpLocalType = Union[ + NegativeInfinityType, + Tuple[Union[Tuple[int, str], Tuple[NegativeInfinityType, Union[int, str]]], ...], +] +CmpKey = Tuple[ + int, + Tuple[int, ...], + CmpPrePostDevType, + CmpPrePostDevType, + CmpPrePostDevType, + CmpLocalType, +] +VersionComparisonMethod = Callable[[CmpKey, CmpKey], bool] + + +class _Version(NamedTuple): + epoch: int + release: tuple[int, ...] + dev: tuple[str, int] | None + pre: tuple[str, int] | None + post: tuple[str, int] | None + local: LocalType | None + + +def parse(version: str) -> Version: + """Parse the given version string. + + >>> parse('1.0.dev1') + + + :param version: The version string to parse. + :raises InvalidVersion: When the version string is not a valid version. + """ + return Version(version) + + +class InvalidVersion(ValueError): + """Raised when a version string is not a valid version. + + >>> Version("invalid") + Traceback (most recent call last): + ... + packaging.version.InvalidVersion: Invalid version: 'invalid' + """ + + +class _BaseVersion: + _key: tuple[Any, ...] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +_VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P

                                              # pre-release
    +            [-_\.]?
    +            (?Palpha|a|beta|b|preview|pre|c|rc)
    +            [-_\.]?
    +            (?P[0-9]+)?
    +        )?
    +        (?P                                         # post release
    +            (?:-(?P[0-9]+))
    +            |
    +            (?:
    +                [-_\.]?
    +                (?Ppost|rev|r)
    +                [-_\.]?
    +                (?P[0-9]+)?
    +            )
    +        )?
    +        (?P                                          # dev release
    +            [-_\.]?
    +            (?Pdev)
    +            [-_\.]?
    +            (?P[0-9]+)?
    +        )?
    +    )
    +    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
    +"""
    +
    +VERSION_PATTERN = _VERSION_PATTERN
    +"""
    +A string containing the regular expression used to match a valid version.
    +
    +The pattern is not anchored at either end, and is intended for embedding in larger
    +expressions (for example, matching a version number as part of a file name). The
    +regular expression should be compiled with the ``re.VERBOSE`` and ``re.IGNORECASE``
    +flags set.
    +
    +:meta hide-value:
    +"""
    +
    +
    +class Version(_BaseVersion):
    +    """This class abstracts handling of a project's versions.
    +
    +    A :class:`Version` instance is comparison aware and can be compared and
    +    sorted using the standard Python interfaces.
    +
    +    >>> v1 = Version("1.0a5")
    +    >>> v2 = Version("1.0")
    +    >>> v1
    +    
    +    >>> v2
    +    
    +    >>> v1 < v2
    +    True
    +    >>> v1 == v2
    +    False
    +    >>> v1 > v2
    +    False
    +    >>> v1 >= v2
    +    False
    +    >>> v1 <= v2
    +    True
    +    """
    +
    +    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
    +    _key: CmpKey
    +
    +    def __init__(self, version: str) -> None:
    +        """Initialize a Version object.
    +
    +        :param version:
    +            The string representation of a version which will be parsed and normalized
    +            before use.
    +        :raises InvalidVersion:
    +            If the ``version`` does not conform to PEP 440 in any way then this
    +            exception will be raised.
    +        """
    +
    +        # Validate the version and parse it into pieces
    +        match = self._regex.search(version)
    +        if not match:
    +            raise InvalidVersion(f"Invalid version: {version!r}")
    +
    +        # Store the parsed out pieces of the version
    +        self._version = _Version(
    +            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
    +            release=tuple(int(i) for i in match.group("release").split(".")),
    +            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
    +            post=_parse_letter_version(
    +                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
    +            ),
    +            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
    +            local=_parse_local_version(match.group("local")),
    +        )
    +
    +        # Generate a key which will be used for sorting
    +        self._key = _cmpkey(
    +            self._version.epoch,
    +            self._version.release,
    +            self._version.pre,
    +            self._version.post,
    +            self._version.dev,
    +            self._version.local,
    +        )
    +
    +    def __repr__(self) -> str:
    +        """A representation of the Version that shows all internal state.
    +
    +        >>> Version('1.0.0')
    +        
    +        """
    +        return f""
    +
    +    def __str__(self) -> str:
    +        """A string representation of the version that can be round-tripped.
    +
    +        >>> str(Version("1.0a5"))
    +        '1.0a5'
    +        """
    +        parts = []
    +
    +        # Epoch
    +        if self.epoch != 0:
    +            parts.append(f"{self.epoch}!")
    +
    +        # Release segment
    +        parts.append(".".join(str(x) for x in self.release))
    +
    +        # Pre-release
    +        if self.pre is not None:
    +            parts.append("".join(str(x) for x in self.pre))
    +
    +        # Post-release
    +        if self.post is not None:
    +            parts.append(f".post{self.post}")
    +
    +        # Development release
    +        if self.dev is not None:
    +            parts.append(f".dev{self.dev}")
    +
    +        # Local version segment
    +        if self.local is not None:
    +            parts.append(f"+{self.local}")
    +
    +        return "".join(parts)
    +
    +    @property
    +    def epoch(self) -> int:
    +        """The epoch of the version.
    +
    +        >>> Version("2.0.0").epoch
    +        0
    +        >>> Version("1!2.0.0").epoch
    +        1
    +        """
    +        return self._version.epoch
    +
    +    @property
    +    def release(self) -> tuple[int, ...]:
    +        """The components of the "release" segment of the version.
    +
    +        >>> Version("1.2.3").release
    +        (1, 2, 3)
    +        >>> Version("2.0.0").release
    +        (2, 0, 0)
    +        >>> Version("1!2.0.0.post0").release
    +        (2, 0, 0)
    +
    +        Includes trailing zeroes but not the epoch or any pre-release / development /
    +        post-release suffixes.
    +        """
    +        return self._version.release
    +
    +    @property
    +    def pre(self) -> tuple[str, int] | None:
    +        """The pre-release segment of the version.
    +
    +        >>> print(Version("1.2.3").pre)
    +        None
    +        >>> Version("1.2.3a1").pre
    +        ('a', 1)
    +        >>> Version("1.2.3b1").pre
    +        ('b', 1)
    +        >>> Version("1.2.3rc1").pre
    +        ('rc', 1)
    +        """
    +        return self._version.pre
    +
    +    @property
    +    def post(self) -> int | None:
    +        """The post-release number of the version.
    +
    +        >>> print(Version("1.2.3").post)
    +        None
    +        >>> Version("1.2.3.post1").post
    +        1
    +        """
    +        return self._version.post[1] if self._version.post else None
    +
    +    @property
    +    def dev(self) -> int | None:
    +        """The development number of the version.
    +
    +        >>> print(Version("1.2.3").dev)
    +        None
    +        >>> Version("1.2.3.dev1").dev
    +        1
    +        """
    +        return self._version.dev[1] if self._version.dev else None
    +
    +    @property
    +    def local(self) -> str | None:
    +        """The local version segment of the version.
    +
    +        >>> print(Version("1.2.3").local)
    +        None
    +        >>> Version("1.2.3+abc").local
    +        'abc'
    +        """
    +        if self._version.local:
    +            return ".".join(str(x) for x in self._version.local)
    +        else:
    +            return None
    +
    +    @property
    +    def public(self) -> str:
    +        """The public portion of the version.
    +
    +        >>> Version("1.2.3").public
    +        '1.2.3'
    +        >>> Version("1.2.3+abc").public
    +        '1.2.3'
    +        >>> Version("1!1.2.3dev1+abc").public
    +        '1!1.2.3.dev1'
    +        """
    +        return str(self).split("+", 1)[0]
    +
    +    @property
    +    def base_version(self) -> str:
    +        """The "base version" of the version.
    +
    +        >>> Version("1.2.3").base_version
    +        '1.2.3'
    +        >>> Version("1.2.3+abc").base_version
    +        '1.2.3'
    +        >>> Version("1!1.2.3dev1+abc").base_version
    +        '1!1.2.3'
    +
    +        The "base version" is the public version of the project without any pre or post
    +        release markers.
    +        """
    +        parts = []
    +
    +        # Epoch
    +        if self.epoch != 0:
    +            parts.append(f"{self.epoch}!")
    +
    +        # Release segment
    +        parts.append(".".join(str(x) for x in self.release))
    +
    +        return "".join(parts)
    +
    +    @property
    +    def is_prerelease(self) -> bool:
    +        """Whether this version is a pre-release.
    +
    +        >>> Version("1.2.3").is_prerelease
    +        False
    +        >>> Version("1.2.3a1").is_prerelease
    +        True
    +        >>> Version("1.2.3b1").is_prerelease
    +        True
    +        >>> Version("1.2.3rc1").is_prerelease
    +        True
    +        >>> Version("1.2.3dev1").is_prerelease
    +        True
    +        """
    +        return self.dev is not None or self.pre is not None
    +
    +    @property
    +    def is_postrelease(self) -> bool:
    +        """Whether this version is a post-release.
    +
    +        >>> Version("1.2.3").is_postrelease
    +        False
    +        >>> Version("1.2.3.post1").is_postrelease
    +        True
    +        """
    +        return self.post is not None
    +
    +    @property
    +    def is_devrelease(self) -> bool:
    +        """Whether this version is a development release.
    +
    +        >>> Version("1.2.3").is_devrelease
    +        False
    +        >>> Version("1.2.3.dev1").is_devrelease
    +        True
    +        """
    +        return self.dev is not None
    +
    +    @property
    +    def major(self) -> int:
    +        """The first item of :attr:`release` or ``0`` if unavailable.
    +
    +        >>> Version("1.2.3").major
    +        1
    +        """
    +        return self.release[0] if len(self.release) >= 1 else 0
    +
    +    @property
    +    def minor(self) -> int:
    +        """The second item of :attr:`release` or ``0`` if unavailable.
    +
    +        >>> Version("1.2.3").minor
    +        2
    +        >>> Version("1").minor
    +        0
    +        """
    +        return self.release[1] if len(self.release) >= 2 else 0
    +
    +    @property
    +    def micro(self) -> int:
    +        """The third item of :attr:`release` or ``0`` if unavailable.
    +
    +        >>> Version("1.2.3").micro
    +        3
    +        >>> Version("1").micro
    +        0
    +        """
    +        return self.release[2] if len(self.release) >= 3 else 0
    +
    +
    +class _TrimmedRelease(Version):
    +    @property
    +    def release(self) -> tuple[int, ...]:
    +        """
    +        Release segment without any trailing zeros.
    +
    +        >>> _TrimmedRelease('1.0.0').release
    +        (1,)
    +        >>> _TrimmedRelease('0.0').release
    +        (0,)
    +        """
    +        rel = super().release
    +        nonzeros = (index for index, val in enumerate(rel) if val)
    +        last_nonzero = max(nonzeros, default=0)
    +        return rel[: last_nonzero + 1]
    +
    +
    +def _parse_letter_version(
    +    letter: str | None, number: str | bytes | SupportsInt | None
    +) -> tuple[str, int] | None:
    +    if letter:
    +        # We consider there to be an implicit 0 in a pre-release if there is
    +        # not a numeral associated with it.
    +        if number is None:
    +            number = 0
    +
    +        # We normalize any letters to their lower case form
    +        letter = letter.lower()
    +
    +        # We consider some words to be alternate spellings of other words and
    +        # in those cases we want to normalize the spellings to our preferred
    +        # spelling.
    +        if letter == "alpha":
    +            letter = "a"
    +        elif letter == "beta":
    +            letter = "b"
    +        elif letter in ["c", "pre", "preview"]:
    +            letter = "rc"
    +        elif letter in ["rev", "r"]:
    +            letter = "post"
    +
    +        return letter, int(number)
    +
    +    assert not letter
    +    if number:
    +        # We assume if we are given a number, but we are not given a letter
    +        # then this is using the implicit post release syntax (e.g. 1.0-1)
    +        letter = "post"
    +
    +        return letter, int(number)
    +
    +    return None
    +
    +
    +_local_version_separators = re.compile(r"[\._-]")
    +
    +
    +def _parse_local_version(local: str | None) -> LocalType | None:
    +    """
    +    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
    +    """
    +    if local is not None:
    +        return tuple(
    +            part.lower() if not part.isdigit() else int(part)
    +            for part in _local_version_separators.split(local)
    +        )
    +    return None
    +
    +
    +def _cmpkey(
    +    epoch: int,
    +    release: tuple[int, ...],
    +    pre: tuple[str, int] | None,
    +    post: tuple[str, int] | None,
    +    dev: tuple[str, int] | None,
    +    local: LocalType | None,
    +) -> CmpKey:
    +    # When we compare a release version, we want to compare it with all of the
    +    # trailing zeros removed. So we'll use a reverse the list, drop all the now
    +    # leading zeros until we come to something non zero, then take the rest
    +    # re-reverse it back into the correct order and make it a tuple and use
    +    # that for our sorting key.
    +    _release = tuple(
    +        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
    +    )
    +
    +    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
    +    # We'll do this by abusing the pre segment, but we _only_ want to do this
    +    # if there is not a pre or a post segment. If we have one of those then
    +    # the normal sorting rules will handle this case correctly.
    +    if pre is None and post is None and dev is not None:
    +        _pre: CmpPrePostDevType = NegativeInfinity
    +    # Versions without a pre-release (except as noted above) should sort after
    +    # those with one.
    +    elif pre is None:
    +        _pre = Infinity
    +    else:
    +        _pre = pre
    +
    +    # Versions without a post segment should sort before those with one.
    +    if post is None:
    +        _post: CmpPrePostDevType = NegativeInfinity
    +
    +    else:
    +        _post = post
    +
    +    # Versions without a development segment should sort after those with one.
    +    if dev is None:
    +        _dev: CmpPrePostDevType = Infinity
    +
    +    else:
    +        _dev = dev
    +
    +    if local is None:
    +        # Versions without a local segment should sort before those with one.
    +        _local: CmpLocalType = NegativeInfinity
    +    else:
    +        # Versions with a local segment need that segment parsed to implement
    +        # the sorting rules in PEP440.
    +        # - Alpha numeric segments sort before numeric segments
    +        # - Alpha numeric segments sort lexicographically
    +        # - Numeric segments sort numerically
    +        # - Shorter versions sort before longer versions when the prefixes
    +        #   match exactly
    +        _local = tuple(
    +            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
    +        )
    +
    +    return epoch, _release, _pre, _post, _dev, _local
    diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE
    new file mode 100644
    index 0000000..1bb5a44
    --- /dev/null
    +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE
    @@ -0,0 +1,17 @@
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to
    +deal in the Software without restriction, including without limitation the
    +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
    +sell copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
    +IN THE SOFTWARE.
    diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
    new file mode 100644
    index 0000000..72f2b03
    --- /dev/null
    +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
    @@ -0,0 +1,3676 @@
    +# TODO: Add Generic type annotations to initialized collections.
    +# For now we'd simply use implicit Any/Unknown which would add redundant annotations
    +# mypy: disable-error-code="var-annotated"
    +"""
    +Package resource API
    +--------------------
    +
    +A resource is a logical file contained within a package, or a logical
    +subdirectory thereof.  The package resource API expects resource names
    +to have their path parts separated with ``/``, *not* whatever the local
    +path separator is.  Do not use os.path operations to manipulate resource
    +names being passed into the API.
    +
    +The package resource API is designed to work with normal filesystem packages,
    +.egg files, and unpacked .egg files.  It can also work in a limited way with
    +.zip files and with custom PEP 302 loaders that support the ``get_data()``
    +method.
    +
    +This module is deprecated. Users are directed to :mod:`importlib.resources`,
    +:mod:`importlib.metadata` and :pypi:`packaging` instead.
    +"""
    +
    +from __future__ import annotations
    +
    +import sys
    +
    +if sys.version_info < (3, 8):  # noqa: UP036 # Check for unsupported versions
    +    raise RuntimeError("Python 3.8 or later is required")
    +
    +import os
    +import io
    +import time
    +import re
    +import types
    +from typing import (
    +    Any,
    +    Literal,
    +    Dict,
    +    Iterator,
    +    Mapping,
    +    MutableSequence,
    +    NamedTuple,
    +    NoReturn,
    +    Tuple,
    +    Union,
    +    TYPE_CHECKING,
    +    Protocol,
    +    Callable,
    +    Iterable,
    +    TypeVar,
    +    overload,
    +)
    +import zipfile
    +import zipimport
    +import warnings
    +import stat
    +import functools
    +import pkgutil
    +import operator
    +import platform
    +import collections
    +import plistlib
    +import email.parser
    +import errno
    +import tempfile
    +import textwrap
    +import inspect
    +import ntpath
    +import posixpath
    +import importlib
    +import importlib.abc
    +import importlib.machinery
    +from pkgutil import get_importer
    +
    +import _imp
    +
    +# capture these to bypass sandboxing
    +from os import utime
    +from os import open as os_open
    +from os.path import isdir, split
    +
    +try:
    +    from os import mkdir, rename, unlink
    +
    +    WRITE_SUPPORT = True
    +except ImportError:
    +    # no write support, probably under GAE
    +    WRITE_SUPPORT = False
    +
    +from pip._internal.utils._jaraco_text import (
    +    yield_lines,
    +    drop_comment,
    +    join_continuation,
    +)
    +from pip._vendor.packaging import markers as _packaging_markers
    +from pip._vendor.packaging import requirements as _packaging_requirements
    +from pip._vendor.packaging import utils as _packaging_utils
    +from pip._vendor.packaging import version as _packaging_version
    +from pip._vendor.platformdirs import user_cache_dir as _user_cache_dir
    +
    +if TYPE_CHECKING:
    +    from _typeshed import BytesPath, StrPath, StrOrBytesPath
    +    from typing_extensions import Self
    +
    +
    +# Patch: Remove deprecation warning from vendored pkg_resources.
    +# Setting PYTHONWARNINGS=error to verify builds produce no warnings
    +# causes immediate exceptions.
    +# See https://github.com/pypa/pip/issues/12243
    +
    +
    +_T = TypeVar("_T")
    +_DistributionT = TypeVar("_DistributionT", bound="Distribution")
    +# Type aliases
    +_NestedStr = Union[str, Iterable[Union[str, Iterable["_NestedStr"]]]]
    +_InstallerTypeT = Callable[["Requirement"], "_DistributionT"]
    +_InstallerType = Callable[["Requirement"], Union["Distribution", None]]
    +_PkgReqType = Union[str, "Requirement"]
    +_EPDistType = Union["Distribution", _PkgReqType]
    +_MetadataType = Union["IResourceProvider", None]
    +_ResolvedEntryPoint = Any  # Can be any attribute in the module
    +_ResourceStream = Any  # TODO / Incomplete: A readable file-like object
    +# Any object works, but let's indicate we expect something like a module (optionally has __loader__ or __file__)
    +_ModuleLike = Union[object, types.ModuleType]
    +# Any: Should be _ModuleLike but we end up with issues where _ModuleLike doesn't have _ZipLoaderModule's __loader__
    +_ProviderFactoryType = Callable[[Any], "IResourceProvider"]
    +_DistFinderType = Callable[[_T, str, bool], Iterable["Distribution"]]
    +_NSHandlerType = Callable[[_T, str, str, types.ModuleType], Union[str, None]]
    +_AdapterT = TypeVar(
    +    "_AdapterT", _DistFinderType[Any], _ProviderFactoryType, _NSHandlerType[Any]
    +)
    +
    +
    +# Use _typeshed.importlib.LoaderProtocol once available https://github.com/python/typeshed/pull/11890
    +class _LoaderProtocol(Protocol):
    +    def load_module(self, fullname: str, /) -> types.ModuleType: ...
    +
    +
    +class _ZipLoaderModule(Protocol):
    +    __loader__: zipimport.zipimporter
    +
    +
    +_PEP440_FALLBACK = re.compile(r"^v?(?P(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)", re.I)
    +
    +
    +class PEP440Warning(RuntimeWarning):
    +    """
    +    Used when there is an issue with a version or specifier not complying with
    +    PEP 440.
    +    """
    +
    +
    +parse_version = _packaging_version.Version
    +
    +
    +_state_vars: dict[str, str] = {}
    +
    +
    +def _declare_state(vartype: str, varname: str, initial_value: _T) -> _T:
    +    _state_vars[varname] = vartype
    +    return initial_value
    +
    +
    +def __getstate__() -> dict[str, Any]:
    +    state = {}
    +    g = globals()
    +    for k, v in _state_vars.items():
    +        state[k] = g['_sget_' + v](g[k])
    +    return state
    +
    +
    +def __setstate__(state: dict[str, Any]) -> dict[str, Any]:
    +    g = globals()
    +    for k, v in state.items():
    +        g['_sset_' + _state_vars[k]](k, g[k], v)
    +    return state
    +
    +
    +def _sget_dict(val):
    +    return val.copy()
    +
    +
    +def _sset_dict(key, ob, state):
    +    ob.clear()
    +    ob.update(state)
    +
    +
    +def _sget_object(val):
    +    return val.__getstate__()
    +
    +
    +def _sset_object(key, ob, state):
    +    ob.__setstate__(state)
    +
    +
    +_sget_none = _sset_none = lambda *args: None
    +
    +
    +def get_supported_platform():
    +    """Return this platform's maximum compatible version.
    +
    +    distutils.util.get_platform() normally reports the minimum version
    +    of macOS that would be required to *use* extensions produced by
    +    distutils.  But what we want when checking compatibility is to know the
    +    version of macOS that we are *running*.  To allow usage of packages that
    +    explicitly require a newer version of macOS, we must also know the
    +    current version of the OS.
    +
    +    If this condition occurs for any other platform with a version in its
    +    platform strings, this function should be extended accordingly.
    +    """
    +    plat = get_build_platform()
    +    m = macosVersionString.match(plat)
    +    if m is not None and sys.platform == "darwin":
    +        try:
    +            plat = 'macosx-%s-%s' % ('.'.join(_macos_vers()[:2]), m.group(3))
    +        except ValueError:
    +            # not macOS
    +            pass
    +    return plat
    +
    +
    +__all__ = [
    +    # Basic resource access and distribution/entry point discovery
    +    'require',
    +    'run_script',
    +    'get_provider',
    +    'get_distribution',
    +    'load_entry_point',
    +    'get_entry_map',
    +    'get_entry_info',
    +    'iter_entry_points',
    +    'resource_string',
    +    'resource_stream',
    +    'resource_filename',
    +    'resource_listdir',
    +    'resource_exists',
    +    'resource_isdir',
    +    # Environmental control
    +    'declare_namespace',
    +    'working_set',
    +    'add_activation_listener',
    +    'find_distributions',
    +    'set_extraction_path',
    +    'cleanup_resources',
    +    'get_default_cache',
    +    # Primary implementation classes
    +    'Environment',
    +    'WorkingSet',
    +    'ResourceManager',
    +    'Distribution',
    +    'Requirement',
    +    'EntryPoint',
    +    # Exceptions
    +    'ResolutionError',
    +    'VersionConflict',
    +    'DistributionNotFound',
    +    'UnknownExtra',
    +    'ExtractionError',
    +    # Warnings
    +    'PEP440Warning',
    +    # Parsing functions and string utilities
    +    'parse_requirements',
    +    'parse_version',
    +    'safe_name',
    +    'safe_version',
    +    'get_platform',
    +    'compatible_platforms',
    +    'yield_lines',
    +    'split_sections',
    +    'safe_extra',
    +    'to_filename',
    +    'invalid_marker',
    +    'evaluate_marker',
    +    # filesystem utilities
    +    'ensure_directory',
    +    'normalize_path',
    +    # Distribution "precedence" constants
    +    'EGG_DIST',
    +    'BINARY_DIST',
    +    'SOURCE_DIST',
    +    'CHECKOUT_DIST',
    +    'DEVELOP_DIST',
    +    # "Provider" interfaces, implementations, and registration/lookup APIs
    +    'IMetadataProvider',
    +    'IResourceProvider',
    +    'FileMetadata',
    +    'PathMetadata',
    +    'EggMetadata',
    +    'EmptyProvider',
    +    'empty_provider',
    +    'NullProvider',
    +    'EggProvider',
    +    'DefaultProvider',
    +    'ZipProvider',
    +    'register_finder',
    +    'register_namespace_handler',
    +    'register_loader_type',
    +    'fixup_namespace_packages',
    +    'get_importer',
    +    # Warnings
    +    'PkgResourcesDeprecationWarning',
    +    # Deprecated/backward compatibility only
    +    'run_main',
    +    'AvailableDistributions',
    +]
    +
    +
    +class ResolutionError(Exception):
    +    """Abstract base for dependency resolution errors"""
    +
    +    def __repr__(self):
    +        return self.__class__.__name__ + repr(self.args)
    +
    +
    +class VersionConflict(ResolutionError):
    +    """
    +    An already-installed version conflicts with the requested version.
    +
    +    Should be initialized with the installed Distribution and the requested
    +    Requirement.
    +    """
    +
    +    _template = "{self.dist} is installed but {self.req} is required"
    +
    +    @property
    +    def dist(self) -> Distribution:
    +        return self.args[0]
    +
    +    @property
    +    def req(self) -> Requirement:
    +        return self.args[1]
    +
    +    def report(self):
    +        return self._template.format(**locals())
    +
    +    def with_context(self, required_by: set[Distribution | str]):
    +        """
    +        If required_by is non-empty, return a version of self that is a
    +        ContextualVersionConflict.
    +        """
    +        if not required_by:
    +            return self
    +        args = self.args + (required_by,)
    +        return ContextualVersionConflict(*args)
    +
    +
    +class ContextualVersionConflict(VersionConflict):
    +    """
    +    A VersionConflict that accepts a third parameter, the set of the
    +    requirements that required the installed Distribution.
    +    """
    +
    +    _template = VersionConflict._template + ' by {self.required_by}'
    +
    +    @property
    +    def required_by(self) -> set[str]:
    +        return self.args[2]
    +
    +
    +class DistributionNotFound(ResolutionError):
    +    """A requested distribution was not found"""
    +
    +    _template = (
    +        "The '{self.req}' distribution was not found "
    +        "and is required by {self.requirers_str}"
    +    )
    +
    +    @property
    +    def req(self) -> Requirement:
    +        return self.args[0]
    +
    +    @property
    +    def requirers(self) -> set[str] | None:
    +        return self.args[1]
    +
    +    @property
    +    def requirers_str(self):
    +        if not self.requirers:
    +            return 'the application'
    +        return ', '.join(self.requirers)
    +
    +    def report(self):
    +        return self._template.format(**locals())
    +
    +    def __str__(self):
    +        return self.report()
    +
    +
    +class UnknownExtra(ResolutionError):
    +    """Distribution doesn't have an "extra feature" of the given name"""
    +
    +
    +_provider_factories: dict[type[_ModuleLike], _ProviderFactoryType] = {}
    +
    +PY_MAJOR = '{}.{}'.format(*sys.version_info)
    +EGG_DIST = 3
    +BINARY_DIST = 2
    +SOURCE_DIST = 1
    +CHECKOUT_DIST = 0
    +DEVELOP_DIST = -1
    +
    +
    +def register_loader_type(
    +    loader_type: type[_ModuleLike], provider_factory: _ProviderFactoryType
    +):
    +    """Register `provider_factory` to make providers for `loader_type`
    +
    +    `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
    +    and `provider_factory` is a function that, passed a *module* object,
    +    returns an ``IResourceProvider`` for that module.
    +    """
    +    _provider_factories[loader_type] = provider_factory
    +
    +
    +@overload
    +def get_provider(moduleOrReq: str) -> IResourceProvider: ...
    +@overload
    +def get_provider(moduleOrReq: Requirement) -> Distribution: ...
    +def get_provider(moduleOrReq: str | Requirement) -> IResourceProvider | Distribution:
    +    """Return an IResourceProvider for the named module or requirement"""
    +    if isinstance(moduleOrReq, Requirement):
    +        return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
    +    try:
    +        module = sys.modules[moduleOrReq]
    +    except KeyError:
    +        __import__(moduleOrReq)
    +        module = sys.modules[moduleOrReq]
    +    loader = getattr(module, '__loader__', None)
    +    return _find_adapter(_provider_factories, loader)(module)
    +
    +
    +@functools.lru_cache(maxsize=None)
    +def _macos_vers():
    +    version = platform.mac_ver()[0]
    +    # fallback for MacPorts
    +    if version == '':
    +        plist = '/System/Library/CoreServices/SystemVersion.plist'
    +        if os.path.exists(plist):
    +            with open(plist, 'rb') as fh:
    +                plist_content = plistlib.load(fh)
    +            if 'ProductVersion' in plist_content:
    +                version = plist_content['ProductVersion']
    +    return version.split('.')
    +
    +
    +def _macos_arch(machine):
    +    return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
    +
    +
    +def get_build_platform():
    +    """Return this platform's string for platform-specific distributions
    +
    +    XXX Currently this is the same as ``distutils.util.get_platform()``, but it
    +    needs some hacks for Linux and macOS.
    +    """
    +    from sysconfig import get_platform
    +
    +    plat = get_platform()
    +    if sys.platform == "darwin" and not plat.startswith('macosx-'):
    +        try:
    +            version = _macos_vers()
    +            machine = os.uname()[4].replace(" ", "_")
    +            return "macosx-%d.%d-%s" % (
    +                int(version[0]),
    +                int(version[1]),
    +                _macos_arch(machine),
    +            )
    +        except ValueError:
    +            # if someone is running a non-Mac darwin system, this will fall
    +            # through to the default implementation
    +            pass
    +    return plat
    +
    +
    +macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
    +darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
    +# XXX backward compat
    +get_platform = get_build_platform
    +
    +
    +def compatible_platforms(provided: str | None, required: str | None):
    +    """Can code for the `provided` platform run on the `required` platform?
    +
    +    Returns true if either platform is ``None``, or the platforms are equal.
    +
    +    XXX Needs compatibility checks for Linux and other unixy OSes.
    +    """
    +    if provided is None or required is None or provided == required:
    +        # easy case
    +        return True
    +
    +    # macOS special cases
    +    reqMac = macosVersionString.match(required)
    +    if reqMac:
    +        provMac = macosVersionString.match(provided)
    +
    +        # is this a Mac package?
    +        if not provMac:
    +            # this is backwards compatibility for packages built before
    +            # setuptools 0.6. All packages built after this point will
    +            # use the new macOS designation.
    +            provDarwin = darwinVersionString.match(provided)
    +            if provDarwin:
    +                dversion = int(provDarwin.group(1))
    +                macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
    +                if (
    +                    dversion == 7
    +                    and macosversion >= "10.3"
    +                    or dversion == 8
    +                    and macosversion >= "10.4"
    +                ):
    +                    return True
    +            # egg isn't macOS or legacy darwin
    +            return False
    +
    +        # are they the same major version and machine type?
    +        if provMac.group(1) != reqMac.group(1) or provMac.group(3) != reqMac.group(3):
    +            return False
    +
    +        # is the required OS major update >= the provided one?
    +        if int(provMac.group(2)) > int(reqMac.group(2)):
    +            return False
    +
    +        return True
    +
    +    # XXX Linux and other platforms' special cases should go here
    +    return False
    +
    +
    +@overload
    +def get_distribution(dist: _DistributionT) -> _DistributionT: ...
    +@overload
    +def get_distribution(dist: _PkgReqType) -> Distribution: ...
    +def get_distribution(dist: Distribution | _PkgReqType) -> Distribution:
    +    """Return a current distribution object for a Requirement or string"""
    +    if isinstance(dist, str):
    +        dist = Requirement.parse(dist)
    +    if isinstance(dist, Requirement):
    +        # Bad type narrowing, dist has to be a Requirement here, so get_provider has to return Distribution
    +        dist = get_provider(dist)  # type: ignore[assignment]
    +    if not isinstance(dist, Distribution):
    +        raise TypeError("Expected str, Requirement, or Distribution", dist)
    +    return dist
    +
    +
    +def load_entry_point(dist: _EPDistType, group: str, name: str) -> _ResolvedEntryPoint:
    +    """Return `name` entry point of `group` for `dist` or raise ImportError"""
    +    return get_distribution(dist).load_entry_point(group, name)
    +
    +
    +@overload
    +def get_entry_map(
    +    dist: _EPDistType, group: None = None
    +) -> dict[str, dict[str, EntryPoint]]: ...
    +@overload
    +def get_entry_map(dist: _EPDistType, group: str) -> dict[str, EntryPoint]: ...
    +def get_entry_map(dist: _EPDistType, group: str | None = None):
    +    """Return the entry point map for `group`, or the full entry map"""
    +    return get_distribution(dist).get_entry_map(group)
    +
    +
    +def get_entry_info(dist: _EPDistType, group: str, name: str):
    +    """Return the EntryPoint object for `group`+`name`, or ``None``"""
    +    return get_distribution(dist).get_entry_info(group, name)
    +
    +
    +class IMetadataProvider(Protocol):
    +    def has_metadata(self, name: str) -> bool:
    +        """Does the package's distribution contain the named metadata?"""
    +
    +    def get_metadata(self, name: str) -> str:
    +        """The named metadata resource as a string"""
    +
    +    def get_metadata_lines(self, name: str) -> Iterator[str]:
    +        """Yield named metadata resource as list of non-blank non-comment lines
    +
    +        Leading and trailing whitespace is stripped from each line, and lines
    +        with ``#`` as the first non-blank character are omitted."""
    +
    +    def metadata_isdir(self, name: str) -> bool:
    +        """Is the named metadata a directory?  (like ``os.path.isdir()``)"""
    +
    +    def metadata_listdir(self, name: str) -> list[str]:
    +        """List of metadata names in the directory (like ``os.listdir()``)"""
    +
    +    def run_script(self, script_name: str, namespace: dict[str, Any]) -> None:
    +        """Execute the named script in the supplied namespace dictionary"""
    +
    +
    +class IResourceProvider(IMetadataProvider, Protocol):
    +    """An object that provides access to package resources"""
    +
    +    def get_resource_filename(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> str:
    +        """Return a true filesystem path for `resource_name`
    +
    +        `manager` must be a ``ResourceManager``"""
    +
    +    def get_resource_stream(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> _ResourceStream:
    +        """Return a readable file-like object for `resource_name`
    +
    +        `manager` must be a ``ResourceManager``"""
    +
    +    def get_resource_string(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> bytes:
    +        """Return the contents of `resource_name` as :obj:`bytes`
    +
    +        `manager` must be a ``ResourceManager``"""
    +
    +    def has_resource(self, resource_name: str) -> bool:
    +        """Does the package contain the named resource?"""
    +
    +    def resource_isdir(self, resource_name: str) -> bool:
    +        """Is the named resource a directory?  (like ``os.path.isdir()``)"""
    +
    +    def resource_listdir(self, resource_name: str) -> list[str]:
    +        """List of resource names in the directory (like ``os.listdir()``)"""
    +
    +
    +class WorkingSet:
    +    """A collection of active distributions on sys.path (or a similar list)"""
    +
    +    def __init__(self, entries: Iterable[str] | None = None):
    +        """Create working set from list of path entries (default=sys.path)"""
    +        self.entries: list[str] = []
    +        self.entry_keys = {}
    +        self.by_key = {}
    +        self.normalized_to_canonical_keys = {}
    +        self.callbacks = []
    +
    +        if entries is None:
    +            entries = sys.path
    +
    +        for entry in entries:
    +            self.add_entry(entry)
    +
    +    @classmethod
    +    def _build_master(cls):
    +        """
    +        Prepare the master working set.
    +        """
    +        ws = cls()
    +        try:
    +            from __main__ import __requires__
    +        except ImportError:
    +            # The main program does not list any requirements
    +            return ws
    +
    +        # ensure the requirements are met
    +        try:
    +            ws.require(__requires__)
    +        except VersionConflict:
    +            return cls._build_from_requirements(__requires__)
    +
    +        return ws
    +
    +    @classmethod
    +    def _build_from_requirements(cls, req_spec):
    +        """
    +        Build a working set from a requirement spec. Rewrites sys.path.
    +        """
    +        # try it without defaults already on sys.path
    +        # by starting with an empty path
    +        ws = cls([])
    +        reqs = parse_requirements(req_spec)
    +        dists = ws.resolve(reqs, Environment())
    +        for dist in dists:
    +            ws.add(dist)
    +
    +        # add any missing entries from sys.path
    +        for entry in sys.path:
    +            if entry not in ws.entries:
    +                ws.add_entry(entry)
    +
    +        # then copy back to sys.path
    +        sys.path[:] = ws.entries
    +        return ws
    +
    +    def add_entry(self, entry: str):
    +        """Add a path item to ``.entries``, finding any distributions on it
    +
    +        ``find_distributions(entry, True)`` is used to find distributions
    +        corresponding to the path entry, and they are added.  `entry` is
    +        always appended to ``.entries``, even if it is already present.
    +        (This is because ``sys.path`` can contain the same value more than
    +        once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
    +        equal ``sys.path``.)
    +        """
    +        self.entry_keys.setdefault(entry, [])
    +        self.entries.append(entry)
    +        for dist in find_distributions(entry, True):
    +            self.add(dist, entry, False)
    +
    +    def __contains__(self, dist: Distribution) -> bool:
    +        """True if `dist` is the active distribution for its project"""
    +        return self.by_key.get(dist.key) == dist
    +
    +    def find(self, req: Requirement) -> Distribution | None:
    +        """Find a distribution matching requirement `req`
    +
    +        If there is an active distribution for the requested project, this
    +        returns it as long as it meets the version requirement specified by
    +        `req`.  But, if there is an active distribution for the project and it
    +        does *not* meet the `req` requirement, ``VersionConflict`` is raised.
    +        If there is no active distribution for the requested project, ``None``
    +        is returned.
    +        """
    +        dist = self.by_key.get(req.key)
    +
    +        if dist is None:
    +            canonical_key = self.normalized_to_canonical_keys.get(req.key)
    +
    +            if canonical_key is not None:
    +                req.key = canonical_key
    +                dist = self.by_key.get(canonical_key)
    +
    +        if dist is not None and dist not in req:
    +            # XXX add more info
    +            raise VersionConflict(dist, req)
    +        return dist
    +
    +    def iter_entry_points(self, group: str, name: str | None = None):
    +        """Yield entry point objects from `group` matching `name`
    +
    +        If `name` is None, yields all entry points in `group` from all
    +        distributions in the working set, otherwise only ones matching
    +        both `group` and `name` are yielded (in distribution order).
    +        """
    +        return (
    +            entry
    +            for dist in self
    +            for entry in dist.get_entry_map(group).values()
    +            if name is None or name == entry.name
    +        )
    +
    +    def run_script(self, requires: str, script_name: str):
    +        """Locate distribution for `requires` and run `script_name` script"""
    +        ns = sys._getframe(1).f_globals
    +        name = ns['__name__']
    +        ns.clear()
    +        ns['__name__'] = name
    +        self.require(requires)[0].run_script(script_name, ns)
    +
    +    def __iter__(self) -> Iterator[Distribution]:
    +        """Yield distributions for non-duplicate projects in the working set
    +
    +        The yield order is the order in which the items' path entries were
    +        added to the working set.
    +        """
    +        seen = set()
    +        for item in self.entries:
    +            if item not in self.entry_keys:
    +                # workaround a cache issue
    +                continue
    +
    +            for key in self.entry_keys[item]:
    +                if key not in seen:
    +                    seen.add(key)
    +                    yield self.by_key[key]
    +
    +    def add(
    +        self,
    +        dist: Distribution,
    +        entry: str | None = None,
    +        insert: bool = True,
    +        replace: bool = False,
    +    ):
    +        """Add `dist` to working set, associated with `entry`
    +
    +        If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
    +        On exit from this routine, `entry` is added to the end of the working
    +        set's ``.entries`` (if it wasn't already present).
    +
    +        `dist` is only added to the working set if it's for a project that
    +        doesn't already have a distribution in the set, unless `replace=True`.
    +        If it's added, any callbacks registered with the ``subscribe()`` method
    +        will be called.
    +        """
    +        if insert:
    +            dist.insert_on(self.entries, entry, replace=replace)
    +
    +        if entry is None:
    +            entry = dist.location
    +        keys = self.entry_keys.setdefault(entry, [])
    +        keys2 = self.entry_keys.setdefault(dist.location, [])
    +        if not replace and dist.key in self.by_key:
    +            # ignore hidden distros
    +            return
    +
    +        self.by_key[dist.key] = dist
    +        normalized_name = _packaging_utils.canonicalize_name(dist.key)
    +        self.normalized_to_canonical_keys[normalized_name] = dist.key
    +        if dist.key not in keys:
    +            keys.append(dist.key)
    +        if dist.key not in keys2:
    +            keys2.append(dist.key)
    +        self._added_new(dist)
    +
    +    @overload
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None,
    +        installer: _InstallerTypeT[_DistributionT],
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[_DistributionT]: ...
    +    @overload
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None = None,
    +        *,
    +        installer: _InstallerTypeT[_DistributionT],
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[_DistributionT]: ...
    +    @overload
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[Distribution]: ...
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None = None,
    +        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[Distribution] | list[_DistributionT]:
    +        """List all distributions needed to (recursively) meet `requirements`
    +
    +        `requirements` must be a sequence of ``Requirement`` objects.  `env`,
    +        if supplied, should be an ``Environment`` instance.  If
    +        not supplied, it defaults to all distributions available within any
    +        entry or distribution in the working set.  `installer`, if supplied,
    +        will be invoked with each requirement that cannot be met by an
    +        already-installed distribution; it should return a ``Distribution`` or
    +        ``None``.
    +
    +        Unless `replace_conflicting=True`, raises a VersionConflict exception
    +        if
    +        any requirements are found on the path that have the correct name but
    +        the wrong version.  Otherwise, if an `installer` is supplied it will be
    +        invoked to obtain the correct version of the requirement and activate
    +        it.
    +
    +        `extras` is a list of the extras to be used with these requirements.
    +        This is important because extra requirements may look like `my_req;
    +        extra = "my_extra"`, which would otherwise be interpreted as a purely
    +        optional requirement.  Instead, we want to be able to assert that these
    +        requirements are truly required.
    +        """
    +
    +        # set up the stack
    +        requirements = list(requirements)[::-1]
    +        # set of processed requirements
    +        processed = set()
    +        # key -> dist
    +        best = {}
    +        to_activate = []
    +
    +        req_extras = _ReqExtras()
    +
    +        # Mapping of requirement to set of distributions that required it;
    +        # useful for reporting info about conflicts.
    +        required_by = collections.defaultdict(set)
    +
    +        while requirements:
    +            # process dependencies breadth-first
    +            req = requirements.pop(0)
    +            if req in processed:
    +                # Ignore cyclic or redundant dependencies
    +                continue
    +
    +            if not req_extras.markers_pass(req, extras):
    +                continue
    +
    +            dist = self._resolve_dist(
    +                req, best, replace_conflicting, env, installer, required_by, to_activate
    +            )
    +
    +            # push the new requirements onto the stack
    +            new_requirements = dist.requires(req.extras)[::-1]
    +            requirements.extend(new_requirements)
    +
    +            # Register the new requirements needed by req
    +            for new_requirement in new_requirements:
    +                required_by[new_requirement].add(req.project_name)
    +                req_extras[new_requirement] = req.extras
    +
    +            processed.add(req)
    +
    +        # return list of distros to activate
    +        return to_activate
    +
    +    def _resolve_dist(
    +        self, req, best, replace_conflicting, env, installer, required_by, to_activate
    +    ) -> Distribution:
    +        dist = best.get(req.key)
    +        if dist is None:
    +            # Find the best distribution and add it to the map
    +            dist = self.by_key.get(req.key)
    +            if dist is None or (dist not in req and replace_conflicting):
    +                ws = self
    +                if env is None:
    +                    if dist is None:
    +                        env = Environment(self.entries)
    +                    else:
    +                        # Use an empty environment and workingset to avoid
    +                        # any further conflicts with the conflicting
    +                        # distribution
    +                        env = Environment([])
    +                        ws = WorkingSet([])
    +                dist = best[req.key] = env.best_match(
    +                    req, ws, installer, replace_conflicting=replace_conflicting
    +                )
    +                if dist is None:
    +                    requirers = required_by.get(req, None)
    +                    raise DistributionNotFound(req, requirers)
    +            to_activate.append(dist)
    +        if dist not in req:
    +            # Oops, the "best" so far conflicts with a dependency
    +            dependent_req = required_by[req]
    +            raise VersionConflict(dist, req).with_context(dependent_req)
    +        return dist
    +
    +    @overload
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None,
    +        installer: _InstallerTypeT[_DistributionT],
    +        fallback: bool = True,
    +    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
    +    @overload
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None = None,
    +        *,
    +        installer: _InstallerTypeT[_DistributionT],
    +        fallback: bool = True,
    +    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
    +    @overload
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +        fallback: bool = True,
    +    ) -> tuple[list[Distribution], dict[Distribution, Exception]]: ...
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None = None,
    +        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
    +        fallback: bool = True,
    +    ) -> tuple[
    +        list[Distribution] | list[_DistributionT],
    +        dict[Distribution, Exception],
    +    ]:
    +        """Find all activatable distributions in `plugin_env`
    +
    +        Example usage::
    +
    +            distributions, errors = working_set.find_plugins(
    +                Environment(plugin_dirlist)
    +            )
    +            # add plugins+libs to sys.path
    +            map(working_set.add, distributions)
    +            # display errors
    +            print('Could not load', errors)
    +
    +        The `plugin_env` should be an ``Environment`` instance that contains
    +        only distributions that are in the project's "plugin directory" or
    +        directories. The `full_env`, if supplied, should be an ``Environment``
    +        contains all currently-available distributions.  If `full_env` is not
    +        supplied, one is created automatically from the ``WorkingSet`` this
    +        method is called on, which will typically mean that every directory on
    +        ``sys.path`` will be scanned for distributions.
    +
    +        `installer` is a standard installer callback as used by the
    +        ``resolve()`` method. The `fallback` flag indicates whether we should
    +        attempt to resolve older versions of a plugin if the newest version
    +        cannot be resolved.
    +
    +        This method returns a 2-tuple: (`distributions`, `error_info`), where
    +        `distributions` is a list of the distributions found in `plugin_env`
    +        that were loadable, along with any other distributions that are needed
    +        to resolve their dependencies.  `error_info` is a dictionary mapping
    +        unloadable plugin distributions to an exception instance describing the
    +        error that occurred. Usually this will be a ``DistributionNotFound`` or
    +        ``VersionConflict`` instance.
    +        """
    +
    +        plugin_projects = list(plugin_env)
    +        # scan project names in alphabetic order
    +        plugin_projects.sort()
    +
    +        error_info: dict[Distribution, Exception] = {}
    +        distributions: dict[Distribution, Exception | None] = {}
    +
    +        if full_env is None:
    +            env = Environment(self.entries)
    +            env += plugin_env
    +        else:
    +            env = full_env + plugin_env
    +
    +        shadow_set = self.__class__([])
    +        # put all our entries in shadow_set
    +        list(map(shadow_set.add, self))
    +
    +        for project_name in plugin_projects:
    +            for dist in plugin_env[project_name]:
    +                req = [dist.as_requirement()]
    +
    +                try:
    +                    resolvees = shadow_set.resolve(req, env, installer)
    +
    +                except ResolutionError as v:
    +                    # save error info
    +                    error_info[dist] = v
    +                    if fallback:
    +                        # try the next older version of project
    +                        continue
    +                    else:
    +                        # give up on this project, keep going
    +                        break
    +
    +                else:
    +                    list(map(shadow_set.add, resolvees))
    +                    distributions.update(dict.fromkeys(resolvees))
    +
    +                    # success, no need to try any more versions of this project
    +                    break
    +
    +        sorted_distributions = list(distributions)
    +        sorted_distributions.sort()
    +
    +        return sorted_distributions, error_info
    +
    +    def require(self, *requirements: _NestedStr):
    +        """Ensure that distributions matching `requirements` are activated
    +
    +        `requirements` must be a string or a (possibly-nested) sequence
    +        thereof, specifying the distributions and versions required.  The
    +        return value is a sequence of the distributions that needed to be
    +        activated to fulfill the requirements; all relevant distributions are
    +        included, even if they were already activated in this working set.
    +        """
    +        needed = self.resolve(parse_requirements(requirements))
    +
    +        for dist in needed:
    +            self.add(dist)
    +
    +        return needed
    +
    +    def subscribe(
    +        self, callback: Callable[[Distribution], object], existing: bool = True
    +    ):
    +        """Invoke `callback` for all distributions
    +
    +        If `existing=True` (default),
    +        call on all existing ones, as well.
    +        """
    +        if callback in self.callbacks:
    +            return
    +        self.callbacks.append(callback)
    +        if not existing:
    +            return
    +        for dist in self:
    +            callback(dist)
    +
    +    def _added_new(self, dist):
    +        for callback in self.callbacks:
    +            callback(dist)
    +
    +    def __getstate__(self):
    +        return (
    +            self.entries[:],
    +            self.entry_keys.copy(),
    +            self.by_key.copy(),
    +            self.normalized_to_canonical_keys.copy(),
    +            self.callbacks[:],
    +        )
    +
    +    def __setstate__(self, e_k_b_n_c):
    +        entries, keys, by_key, normalized_to_canonical_keys, callbacks = e_k_b_n_c
    +        self.entries = entries[:]
    +        self.entry_keys = keys.copy()
    +        self.by_key = by_key.copy()
    +        self.normalized_to_canonical_keys = normalized_to_canonical_keys.copy()
    +        self.callbacks = callbacks[:]
    +
    +
    +class _ReqExtras(Dict["Requirement", Tuple[str, ...]]):
    +    """
    +    Map each requirement to the extras that demanded it.
    +    """
    +
    +    def markers_pass(self, req: Requirement, extras: tuple[str, ...] | None = None):
    +        """
    +        Evaluate markers for req against each extra that
    +        demanded it.
    +
    +        Return False if the req has a marker and fails
    +        evaluation. Otherwise, return True.
    +        """
    +        extra_evals = (
    +            req.marker.evaluate({'extra': extra})
    +            for extra in self.get(req, ()) + (extras or (None,))
    +        )
    +        return not req.marker or any(extra_evals)
    +
    +
    +class Environment:
    +    """Searchable snapshot of distributions on a search path"""
    +
    +    def __init__(
    +        self,
    +        search_path: Iterable[str] | None = None,
    +        platform: str | None = get_supported_platform(),
    +        python: str | None = PY_MAJOR,
    +    ):
    +        """Snapshot distributions available on a search path
    +
    +        Any distributions found on `search_path` are added to the environment.
    +        `search_path` should be a sequence of ``sys.path`` items.  If not
    +        supplied, ``sys.path`` is used.
    +
    +        `platform` is an optional string specifying the name of the platform
    +        that platform-specific distributions must be compatible with.  If
    +        unspecified, it defaults to the current platform.  `python` is an
    +        optional string naming the desired version of Python (e.g. ``'3.6'``);
    +        it defaults to the current version.
    +
    +        You may explicitly set `platform` (and/or `python`) to ``None`` if you
    +        wish to map *all* distributions, not just those compatible with the
    +        running platform or Python version.
    +        """
    +        self._distmap = {}
    +        self.platform = platform
    +        self.python = python
    +        self.scan(search_path)
    +
    +    def can_add(self, dist: Distribution):
    +        """Is distribution `dist` acceptable for this environment?
    +
    +        The distribution must match the platform and python version
    +        requirements specified when this environment was created, or False
    +        is returned.
    +        """
    +        py_compat = (
    +            self.python is None
    +            or dist.py_version is None
    +            or dist.py_version == self.python
    +        )
    +        return py_compat and compatible_platforms(dist.platform, self.platform)
    +
    +    def remove(self, dist: Distribution):
    +        """Remove `dist` from the environment"""
    +        self._distmap[dist.key].remove(dist)
    +
    +    def scan(self, search_path: Iterable[str] | None = None):
    +        """Scan `search_path` for distributions usable in this environment
    +
    +        Any distributions found are added to the environment.
    +        `search_path` should be a sequence of ``sys.path`` items.  If not
    +        supplied, ``sys.path`` is used.  Only distributions conforming to
    +        the platform/python version defined at initialization are added.
    +        """
    +        if search_path is None:
    +            search_path = sys.path
    +
    +        for item in search_path:
    +            for dist in find_distributions(item):
    +                self.add(dist)
    +
    +    def __getitem__(self, project_name: str) -> list[Distribution]:
    +        """Return a newest-to-oldest list of distributions for `project_name`
    +
    +        Uses case-insensitive `project_name` comparison, assuming all the
    +        project's distributions use their project's name converted to all
    +        lowercase as their key.
    +
    +        """
    +        distribution_key = project_name.lower()
    +        return self._distmap.get(distribution_key, [])
    +
    +    def add(self, dist: Distribution):
    +        """Add `dist` if we ``can_add()`` it and it has not already been added"""
    +        if self.can_add(dist) and dist.has_version():
    +            dists = self._distmap.setdefault(dist.key, [])
    +            if dist not in dists:
    +                dists.append(dist)
    +                dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
    +
    +    @overload
    +    def best_match(
    +        self,
    +        req: Requirement,
    +        working_set: WorkingSet,
    +        installer: _InstallerTypeT[_DistributionT],
    +        replace_conflicting: bool = False,
    +    ) -> _DistributionT: ...
    +    @overload
    +    def best_match(
    +        self,
    +        req: Requirement,
    +        working_set: WorkingSet,
    +        installer: _InstallerType | None = None,
    +        replace_conflicting: bool = False,
    +    ) -> Distribution | None: ...
    +    def best_match(
    +        self,
    +        req: Requirement,
    +        working_set: WorkingSet,
    +        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
    +        replace_conflicting: bool = False,
    +    ) -> Distribution | None:
    +        """Find distribution best matching `req` and usable on `working_set`
    +
    +        This calls the ``find(req)`` method of the `working_set` to see if a
    +        suitable distribution is already active.  (This may raise
    +        ``VersionConflict`` if an unsuitable version of the project is already
    +        active in the specified `working_set`.)  If a suitable distribution
    +        isn't active, this method returns the newest distribution in the
    +        environment that meets the ``Requirement`` in `req`.  If no suitable
    +        distribution is found, and `installer` is supplied, then the result of
    +        calling the environment's ``obtain(req, installer)`` method will be
    +        returned.
    +        """
    +        try:
    +            dist = working_set.find(req)
    +        except VersionConflict:
    +            if not replace_conflicting:
    +                raise
    +            dist = None
    +        if dist is not None:
    +            return dist
    +        for dist in self[req.key]:
    +            if dist in req:
    +                return dist
    +        # try to download/install
    +        return self.obtain(req, installer)
    +
    +    @overload
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: _InstallerTypeT[_DistributionT],
    +    ) -> _DistributionT: ...
    +    @overload
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: Callable[[Requirement], None] | None = None,
    +    ) -> None: ...
    +    @overload
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: _InstallerType | None = None,
    +    ) -> Distribution | None: ...
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: Callable[[Requirement], None]
    +        | _InstallerType
    +        | None
    +        | _InstallerTypeT[_DistributionT] = None,
    +    ) -> Distribution | None:
    +        """Obtain a distribution matching `requirement` (e.g. via download)
    +
    +        Obtain a distro that matches requirement (e.g. via download).  In the
    +        base ``Environment`` class, this routine just returns
    +        ``installer(requirement)``, unless `installer` is None, in which case
    +        None is returned instead.  This method is a hook that allows subclasses
    +        to attempt other ways of obtaining a distribution before falling back
    +        to the `installer` argument."""
    +        return installer(requirement) if installer else None
    +
    +    def __iter__(self) -> Iterator[str]:
    +        """Yield the unique project names of the available distributions"""
    +        for key in self._distmap.keys():
    +            if self[key]:
    +                yield key
    +
    +    def __iadd__(self, other: Distribution | Environment):
    +        """In-place addition of a distribution or environment"""
    +        if isinstance(other, Distribution):
    +            self.add(other)
    +        elif isinstance(other, Environment):
    +            for project in other:
    +                for dist in other[project]:
    +                    self.add(dist)
    +        else:
    +            raise TypeError("Can't add %r to environment" % (other,))
    +        return self
    +
    +    def __add__(self, other: Distribution | Environment):
    +        """Add an environment or distribution to an environment"""
    +        new = self.__class__([], platform=None, python=None)
    +        for env in self, other:
    +            new += env
    +        return new
    +
    +
    +# XXX backward compatibility
    +AvailableDistributions = Environment
    +
    +
    +class ExtractionError(RuntimeError):
    +    """An error occurred extracting a resource
    +
    +    The following attributes are available from instances of this exception:
    +
    +    manager
    +        The resource manager that raised this exception
    +
    +    cache_path
    +        The base directory for resource extraction
    +
    +    original_error
    +        The exception instance that caused extraction to fail
    +    """
    +
    +    manager: ResourceManager
    +    cache_path: str
    +    original_error: BaseException | None
    +
    +
    +class ResourceManager:
    +    """Manage resource extraction and packages"""
    +
    +    extraction_path: str | None = None
    +
    +    def __init__(self):
    +        self.cached_files = {}
    +
    +    def resource_exists(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """Does the named resource exist?"""
    +        return get_provider(package_or_requirement).has_resource(resource_name)
    +
    +    def resource_isdir(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """Is the named resource an existing directory?"""
    +        return get_provider(package_or_requirement).resource_isdir(resource_name)
    +
    +    def resource_filename(
    +        self, package_or_requirement: _PkgReqType, resource_name: str
    +    ):
    +        """Return a true filesystem path for specified resource"""
    +        return get_provider(package_or_requirement).get_resource_filename(
    +            self, resource_name
    +        )
    +
    +    def resource_stream(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """Return a readable file-like object for specified resource"""
    +        return get_provider(package_or_requirement).get_resource_stream(
    +            self, resource_name
    +        )
    +
    +    def resource_string(
    +        self, package_or_requirement: _PkgReqType, resource_name: str
    +    ) -> bytes:
    +        """Return specified resource as :obj:`bytes`"""
    +        return get_provider(package_or_requirement).get_resource_string(
    +            self, resource_name
    +        )
    +
    +    def resource_listdir(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """List the contents of the named resource directory"""
    +        return get_provider(package_or_requirement).resource_listdir(resource_name)
    +
    +    def extraction_error(self) -> NoReturn:
    +        """Give an error message for problems extracting file(s)"""
    +
    +        old_exc = sys.exc_info()[1]
    +        cache_path = self.extraction_path or get_default_cache()
    +
    +        tmpl = textwrap.dedent(
    +            """
    +            Can't extract file(s) to egg cache
    +
    +            The following error occurred while trying to extract file(s)
    +            to the Python egg cache:
    +
    +              {old_exc}
    +
    +            The Python egg cache directory is currently set to:
    +
    +              {cache_path}
    +
    +            Perhaps your account does not have write access to this directory?
    +            You can change the cache directory by setting the PYTHON_EGG_CACHE
    +            environment variable to point to an accessible directory.
    +            """
    +        ).lstrip()
    +        err = ExtractionError(tmpl.format(**locals()))
    +        err.manager = self
    +        err.cache_path = cache_path
    +        err.original_error = old_exc
    +        raise err
    +
    +    def get_cache_path(self, archive_name: str, names: Iterable[StrPath] = ()):
    +        """Return absolute location in cache for `archive_name` and `names`
    +
    +        The parent directory of the resulting path will be created if it does
    +        not already exist.  `archive_name` should be the base filename of the
    +        enclosing egg (which may not be the name of the enclosing zipfile!),
    +        including its ".egg" extension.  `names`, if provided, should be a
    +        sequence of path name parts "under" the egg's extraction location.
    +
    +        This method should only be called by resource providers that need to
    +        obtain an extraction location, and only for names they intend to
    +        extract, as it tracks the generated names for possible cleanup later.
    +        """
    +        extract_path = self.extraction_path or get_default_cache()
    +        target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
    +        try:
    +            _bypass_ensure_directory(target_path)
    +        except Exception:
    +            self.extraction_error()
    +
    +        self._warn_unsafe_extraction_path(extract_path)
    +
    +        self.cached_files[target_path] = True
    +        return target_path
    +
    +    @staticmethod
    +    def _warn_unsafe_extraction_path(path):
    +        """
    +        If the default extraction path is overridden and set to an insecure
    +        location, such as /tmp, it opens up an opportunity for an attacker to
    +        replace an extracted file with an unauthorized payload. Warn the user
    +        if a known insecure location is used.
    +
    +        See Distribute #375 for more details.
    +        """
    +        if os.name == 'nt' and not path.startswith(os.environ['windir']):
    +            # On Windows, permissions are generally restrictive by default
    +            #  and temp directories are not writable by other users, so
    +            #  bypass the warning.
    +            return
    +        mode = os.stat(path).st_mode
    +        if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
    +            msg = (
    +                "Extraction path is writable by group/others "
    +                "and vulnerable to attack when "
    +                "used with get_resource_filename ({path}). "
    +                "Consider a more secure "
    +                "location (set with .set_extraction_path or the "
    +                "PYTHON_EGG_CACHE environment variable)."
    +            ).format(**locals())
    +            warnings.warn(msg, UserWarning)
    +
    +    def postprocess(self, tempname: StrOrBytesPath, filename: StrOrBytesPath):
    +        """Perform any platform-specific postprocessing of `tempname`
    +
    +        This is where Mac header rewrites should be done; other platforms don't
    +        have anything special they should do.
    +
    +        Resource providers should call this method ONLY after successfully
    +        extracting a compressed resource.  They must NOT call it on resources
    +        that are already in the filesystem.
    +
    +        `tempname` is the current (temporary) name of the file, and `filename`
    +        is the name it will be renamed to by the caller after this routine
    +        returns.
    +        """
    +
    +        if os.name == 'posix':
    +            # Make the resource executable
    +            mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
    +            os.chmod(tempname, mode)
    +
    +    def set_extraction_path(self, path: str):
    +        """Set the base path where resources will be extracted to, if needed.
    +
    +        If you do not call this routine before any extractions take place, the
    +        path defaults to the return value of ``get_default_cache()``.  (Which
    +        is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
    +        platform-specific fallbacks.  See that routine's documentation for more
    +        details.)
    +
    +        Resources are extracted to subdirectories of this path based upon
    +        information given by the ``IResourceProvider``.  You may set this to a
    +        temporary directory, but then you must call ``cleanup_resources()`` to
    +        delete the extracted files when done.  There is no guarantee that
    +        ``cleanup_resources()`` will be able to remove all extracted files.
    +
    +        (Note: you may not change the extraction path for a given resource
    +        manager once resources have been extracted, unless you first call
    +        ``cleanup_resources()``.)
    +        """
    +        if self.cached_files:
    +            raise ValueError("Can't change extraction path, files already extracted")
    +
    +        self.extraction_path = path
    +
    +    def cleanup_resources(self, force: bool = False) -> list[str]:
    +        """
    +        Delete all extracted resource files and directories, returning a list
    +        of the file and directory names that could not be successfully removed.
    +        This function does not have any concurrency protection, so it should
    +        generally only be called when the extraction path is a temporary
    +        directory exclusive to a single process.  This method is not
    +        automatically called; you must call it explicitly or register it as an
    +        ``atexit`` function if you wish to ensure cleanup of a temporary
    +        directory used for extractions.
    +        """
    +        # XXX
    +        return []
    +
    +
    +def get_default_cache() -> str:
    +    """
    +    Return the ``PYTHON_EGG_CACHE`` environment variable
    +    or a platform-relevant user cache dir for an app
    +    named "Python-Eggs".
    +    """
    +    return os.environ.get('PYTHON_EGG_CACHE') or _user_cache_dir(appname='Python-Eggs')
    +
    +
    +def safe_name(name: str):
    +    """Convert an arbitrary string to a standard distribution name
    +
    +    Any runs of non-alphanumeric/. characters are replaced with a single '-'.
    +    """
    +    return re.sub('[^A-Za-z0-9.]+', '-', name)
    +
    +
    +def safe_version(version: str):
    +    """
    +    Convert an arbitrary string to a standard version string
    +    """
    +    try:
    +        # normalize the version
    +        return str(_packaging_version.Version(version))
    +    except _packaging_version.InvalidVersion:
    +        version = version.replace(' ', '.')
    +        return re.sub('[^A-Za-z0-9.]+', '-', version)
    +
    +
    +def _forgiving_version(version):
    +    """Fallback when ``safe_version`` is not safe enough
    +    >>> parse_version(_forgiving_version('0.23ubuntu1'))
    +    
    +    >>> parse_version(_forgiving_version('0.23-'))
    +    
    +    >>> parse_version(_forgiving_version('0.-_'))
    +    
    +    >>> parse_version(_forgiving_version('42.+?1'))
    +    
    +    >>> parse_version(_forgiving_version('hello world'))
    +    
    +    """
    +    version = version.replace(' ', '.')
    +    match = _PEP440_FALLBACK.search(version)
    +    if match:
    +        safe = match["safe"]
    +        rest = version[len(safe) :]
    +    else:
    +        safe = "0"
    +        rest = version
    +    local = f"sanitized.{_safe_segment(rest)}".strip(".")
    +    return f"{safe}.dev0+{local}"
    +
    +
    +def _safe_segment(segment):
    +    """Convert an arbitrary string into a safe segment"""
    +    segment = re.sub('[^A-Za-z0-9.]+', '-', segment)
    +    segment = re.sub('-[^A-Za-z0-9]+', '-', segment)
    +    return re.sub(r'\.[^A-Za-z0-9]+', '.', segment).strip(".-")
    +
    +
    +def safe_extra(extra: str):
    +    """Convert an arbitrary string to a standard 'extra' name
    +
    +    Any runs of non-alphanumeric characters are replaced with a single '_',
    +    and the result is always lowercased.
    +    """
    +    return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
    +
    +
    +def to_filename(name: str):
    +    """Convert a project or version name to its filename-escaped form
    +
    +    Any '-' characters are currently replaced with '_'.
    +    """
    +    return name.replace('-', '_')
    +
    +
    +def invalid_marker(text: str):
    +    """
    +    Validate text as a PEP 508 environment marker; return an exception
    +    if invalid or False otherwise.
    +    """
    +    try:
    +        evaluate_marker(text)
    +    except SyntaxError as e:
    +        e.filename = None
    +        e.lineno = None
    +        return e
    +    return False
    +
    +
    +def evaluate_marker(text: str, extra: str | None = None) -> bool:
    +    """
    +    Evaluate a PEP 508 environment marker.
    +    Return a boolean indicating the marker result in this environment.
    +    Raise SyntaxError if marker is invalid.
    +
    +    This implementation uses the 'pyparsing' module.
    +    """
    +    try:
    +        marker = _packaging_markers.Marker(text)
    +        return marker.evaluate()
    +    except _packaging_markers.InvalidMarker as e:
    +        raise SyntaxError(e) from e
    +
    +
    +class NullProvider:
    +    """Try to implement resources and metadata for arbitrary PEP 302 loaders"""
    +
    +    egg_name: str | None = None
    +    egg_info: str | None = None
    +    loader: _LoaderProtocol | None = None
    +
    +    def __init__(self, module: _ModuleLike):
    +        self.loader = getattr(module, '__loader__', None)
    +        self.module_path = os.path.dirname(getattr(module, '__file__', ''))
    +
    +    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
    +        return self._fn(self.module_path, resource_name)
    +
    +    def get_resource_stream(self, manager: ResourceManager, resource_name: str):
    +        return io.BytesIO(self.get_resource_string(manager, resource_name))
    +
    +    def get_resource_string(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> bytes:
    +        return self._get(self._fn(self.module_path, resource_name))
    +
    +    def has_resource(self, resource_name: str):
    +        return self._has(self._fn(self.module_path, resource_name))
    +
    +    def _get_metadata_path(self, name):
    +        return self._fn(self.egg_info, name)
    +
    +    def has_metadata(self, name: str) -> bool:
    +        if not self.egg_info:
    +            return False
    +
    +        path = self._get_metadata_path(name)
    +        return self._has(path)
    +
    +    def get_metadata(self, name: str):
    +        if not self.egg_info:
    +            return ""
    +        path = self._get_metadata_path(name)
    +        value = self._get(path)
    +        try:
    +            return value.decode('utf-8')
    +        except UnicodeDecodeError as exc:
    +            # Include the path in the error message to simplify
    +            # troubleshooting, and without changing the exception type.
    +            exc.reason += ' in {} file at path: {}'.format(name, path)
    +            raise
    +
    +    def get_metadata_lines(self, name: str) -> Iterator[str]:
    +        return yield_lines(self.get_metadata(name))
    +
    +    def resource_isdir(self, resource_name: str):
    +        return self._isdir(self._fn(self.module_path, resource_name))
    +
    +    def metadata_isdir(self, name: str) -> bool:
    +        return bool(self.egg_info and self._isdir(self._fn(self.egg_info, name)))
    +
    +    def resource_listdir(self, resource_name: str):
    +        return self._listdir(self._fn(self.module_path, resource_name))
    +
    +    def metadata_listdir(self, name: str) -> list[str]:
    +        if self.egg_info:
    +            return self._listdir(self._fn(self.egg_info, name))
    +        return []
    +
    +    def run_script(self, script_name: str, namespace: dict[str, Any]):
    +        script = 'scripts/' + script_name
    +        if not self.has_metadata(script):
    +            raise ResolutionError(
    +                "Script {script!r} not found in metadata at {self.egg_info!r}".format(
    +                    **locals()
    +                ),
    +            )
    +
    +        script_text = self.get_metadata(script).replace('\r\n', '\n')
    +        script_text = script_text.replace('\r', '\n')
    +        script_filename = self._fn(self.egg_info, script)
    +        namespace['__file__'] = script_filename
    +        if os.path.exists(script_filename):
    +            source = _read_utf8_with_fallback(script_filename)
    +            code = compile(source, script_filename, 'exec')
    +            exec(code, namespace, namespace)
    +        else:
    +            from linecache import cache
    +
    +            cache[script_filename] = (
    +                len(script_text),
    +                0,
    +                script_text.split('\n'),
    +                script_filename,
    +            )
    +            script_code = compile(script_text, script_filename, 'exec')
    +            exec(script_code, namespace, namespace)
    +
    +    def _has(self, path) -> bool:
    +        raise NotImplementedError(
    +            "Can't perform this operation for unregistered loader type"
    +        )
    +
    +    def _isdir(self, path) -> bool:
    +        raise NotImplementedError(
    +            "Can't perform this operation for unregistered loader type"
    +        )
    +
    +    def _listdir(self, path) -> list[str]:
    +        raise NotImplementedError(
    +            "Can't perform this operation for unregistered loader type"
    +        )
    +
    +    def _fn(self, base: str | None, resource_name: str):
    +        if base is None:
    +            raise TypeError(
    +                "`base` parameter in `_fn` is `None`. Either override this method or check the parameter first."
    +            )
    +        self._validate_resource_path(resource_name)
    +        if resource_name:
    +            return os.path.join(base, *resource_name.split('/'))
    +        return base
    +
    +    @staticmethod
    +    def _validate_resource_path(path):
    +        """
    +        Validate the resource paths according to the docs.
    +        https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
    +
    +        >>> warned = getfixture('recwarn')
    +        >>> warnings.simplefilter('always')
    +        >>> vrp = NullProvider._validate_resource_path
    +        >>> vrp('foo/bar.txt')
    +        >>> bool(warned)
    +        False
    +        >>> vrp('../foo/bar.txt')
    +        >>> bool(warned)
    +        True
    +        >>> warned.clear()
    +        >>> vrp('/foo/bar.txt')
    +        >>> bool(warned)
    +        True
    +        >>> vrp('foo/../../bar.txt')
    +        >>> bool(warned)
    +        True
    +        >>> warned.clear()
    +        >>> vrp('foo/f../bar.txt')
    +        >>> bool(warned)
    +        False
    +
    +        Windows path separators are straight-up disallowed.
    +        >>> vrp(r'\\foo/bar.txt')
    +        Traceback (most recent call last):
    +        ...
    +        ValueError: Use of .. or absolute path in a resource path \
    +is not allowed.
    +
    +        >>> vrp(r'C:\\foo/bar.txt')
    +        Traceback (most recent call last):
    +        ...
    +        ValueError: Use of .. or absolute path in a resource path \
    +is not allowed.
    +
    +        Blank values are allowed
    +
    +        >>> vrp('')
    +        >>> bool(warned)
    +        False
    +
    +        Non-string values are not.
    +
    +        >>> vrp(None)
    +        Traceback (most recent call last):
    +        ...
    +        AttributeError: ...
    +        """
    +        invalid = (
    +            os.path.pardir in path.split(posixpath.sep)
    +            or posixpath.isabs(path)
    +            or ntpath.isabs(path)
    +            or path.startswith("\\")
    +        )
    +        if not invalid:
    +            return
    +
    +        msg = "Use of .. or absolute path in a resource path is not allowed."
    +
    +        # Aggressively disallow Windows absolute paths
    +        if (path.startswith("\\") or ntpath.isabs(path)) and not posixpath.isabs(path):
    +            raise ValueError(msg)
    +
    +        # for compatibility, warn; in future
    +        # raise ValueError(msg)
    +        issue_warning(
    +            msg[:-1] + " and will raise exceptions in a future release.",
    +            DeprecationWarning,
    +        )
    +
    +    def _get(self, path) -> bytes:
    +        if hasattr(self.loader, 'get_data') and self.loader:
    +            # Already checked get_data exists
    +            return self.loader.get_data(path)  # type: ignore[attr-defined]
    +        raise NotImplementedError(
    +            "Can't perform this operation for loaders without 'get_data()'"
    +        )
    +
    +
    +register_loader_type(object, NullProvider)
    +
    +
    +def _parents(path):
    +    """
    +    yield all parents of path including path
    +    """
    +    last = None
    +    while path != last:
    +        yield path
    +        last = path
    +        path, _ = os.path.split(path)
    +
    +
    +class EggProvider(NullProvider):
    +    """Provider based on a virtual filesystem"""
    +
    +    def __init__(self, module: _ModuleLike):
    +        super().__init__(module)
    +        self._setup_prefix()
    +
    +    def _setup_prefix(self):
    +        # Assume that metadata may be nested inside a "basket"
    +        # of multiple eggs and use module_path instead of .archive.
    +        eggs = filter(_is_egg_path, _parents(self.module_path))
    +        egg = next(eggs, None)
    +        egg and self._set_egg(egg)
    +
    +    def _set_egg(self, path: str):
    +        self.egg_name = os.path.basename(path)
    +        self.egg_info = os.path.join(path, 'EGG-INFO')
    +        self.egg_root = path
    +
    +
    +class DefaultProvider(EggProvider):
    +    """Provides access to package resources in the filesystem"""
    +
    +    def _has(self, path) -> bool:
    +        return os.path.exists(path)
    +
    +    def _isdir(self, path) -> bool:
    +        return os.path.isdir(path)
    +
    +    def _listdir(self, path):
    +        return os.listdir(path)
    +
    +    def get_resource_stream(self, manager: object, resource_name: str):
    +        return open(self._fn(self.module_path, resource_name), 'rb')
    +
    +    def _get(self, path) -> bytes:
    +        with open(path, 'rb') as stream:
    +            return stream.read()
    +
    +    @classmethod
    +    def _register(cls):
    +        loader_names = (
    +            'SourceFileLoader',
    +            'SourcelessFileLoader',
    +        )
    +        for name in loader_names:
    +            loader_cls = getattr(importlib.machinery, name, type(None))
    +            register_loader_type(loader_cls, cls)
    +
    +
    +DefaultProvider._register()
    +
    +
    +class EmptyProvider(NullProvider):
    +    """Provider that returns nothing for all requests"""
    +
    +    # A special case, we don't want all Providers inheriting from NullProvider to have a potentially None module_path
    +    module_path: str | None = None  # type: ignore[assignment]
    +
    +    _isdir = _has = lambda self, path: False
    +
    +    def _get(self, path) -> bytes:
    +        return b''
    +
    +    def _listdir(self, path):
    +        return []
    +
    +    def __init__(self):
    +        pass
    +
    +
    +empty_provider = EmptyProvider()
    +
    +
    +class ZipManifests(Dict[str, "MemoizedZipManifests.manifest_mod"]):
    +    """
    +    zip manifest builder
    +    """
    +
    +    # `path` could be `StrPath | IO[bytes]` but that violates the LSP for `MemoizedZipManifests.load`
    +    @classmethod
    +    def build(cls, path: str):
    +        """
    +        Build a dictionary similar to the zipimport directory
    +        caches, except instead of tuples, store ZipInfo objects.
    +
    +        Use a platform-specific path separator (os.sep) for the path keys
    +        for compatibility with pypy on Windows.
    +        """
    +        with zipfile.ZipFile(path) as zfile:
    +            items = (
    +                (
    +                    name.replace('/', os.sep),
    +                    zfile.getinfo(name),
    +                )
    +                for name in zfile.namelist()
    +            )
    +            return dict(items)
    +
    +    load = build
    +
    +
    +class MemoizedZipManifests(ZipManifests):
    +    """
    +    Memoized zipfile manifests.
    +    """
    +
    +    class manifest_mod(NamedTuple):
    +        manifest: dict[str, zipfile.ZipInfo]
    +        mtime: float
    +
    +    def load(self, path: str) -> dict[str, zipfile.ZipInfo]:  # type: ignore[override] # ZipManifests.load is a classmethod
    +        """
    +        Load a manifest at path or return a suitable manifest already loaded.
    +        """
    +        path = os.path.normpath(path)
    +        mtime = os.stat(path).st_mtime
    +
    +        if path not in self or self[path].mtime != mtime:
    +            manifest = self.build(path)
    +            self[path] = self.manifest_mod(manifest, mtime)
    +
    +        return self[path].manifest
    +
    +
    +class ZipProvider(EggProvider):
    +    """Resource support for zips and eggs"""
    +
    +    eagers: list[str] | None = None
    +    _zip_manifests = MemoizedZipManifests()
    +    # ZipProvider's loader should always be a zipimporter or equivalent
    +    loader: zipimport.zipimporter
    +
    +    def __init__(self, module: _ZipLoaderModule):
    +        super().__init__(module)
    +        self.zip_pre = self.loader.archive + os.sep
    +
    +    def _zipinfo_name(self, fspath):
    +        # Convert a virtual filename (full path to file) into a zipfile subpath
    +        # usable with the zipimport directory cache for our target archive
    +        fspath = fspath.rstrip(os.sep)
    +        if fspath == self.loader.archive:
    +            return ''
    +        if fspath.startswith(self.zip_pre):
    +            return fspath[len(self.zip_pre) :]
    +        raise AssertionError("%s is not a subpath of %s" % (fspath, self.zip_pre))
    +
    +    def _parts(self, zip_path):
    +        # Convert a zipfile subpath into an egg-relative path part list.
    +        # pseudo-fs path
    +        fspath = self.zip_pre + zip_path
    +        if fspath.startswith(self.egg_root + os.sep):
    +            return fspath[len(self.egg_root) + 1 :].split(os.sep)
    +        raise AssertionError("%s is not a subpath of %s" % (fspath, self.egg_root))
    +
    +    @property
    +    def zipinfo(self):
    +        return self._zip_manifests.load(self.loader.archive)
    +
    +    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
    +        if not self.egg_name:
    +            raise NotImplementedError(
    +                "resource_filename() only supported for .egg, not .zip"
    +            )
    +        # no need to lock for extraction, since we use temp names
    +        zip_path = self._resource_to_zip(resource_name)
    +        eagers = self._get_eager_resources()
    +        if '/'.join(self._parts(zip_path)) in eagers:
    +            for name in eagers:
    +                self._extract_resource(manager, self._eager_to_zip(name))
    +        return self._extract_resource(manager, zip_path)
    +
    +    @staticmethod
    +    def _get_date_and_size(zip_stat):
    +        size = zip_stat.file_size
    +        # ymdhms+wday, yday, dst
    +        date_time = zip_stat.date_time + (0, 0, -1)
    +        # 1980 offset already done
    +        timestamp = time.mktime(date_time)
    +        return timestamp, size
    +
    +    # FIXME: 'ZipProvider._extract_resource' is too complex (12)
    +    def _extract_resource(self, manager: ResourceManager, zip_path) -> str:  # noqa: C901
    +        if zip_path in self._index():
    +            for name in self._index()[zip_path]:
    +                last = self._extract_resource(manager, os.path.join(zip_path, name))
    +            # return the extracted directory name
    +            return os.path.dirname(last)
    +
    +        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
    +
    +        if not WRITE_SUPPORT:
    +            raise OSError(
    +                '"os.rename" and "os.unlink" are not supported on this platform'
    +            )
    +        try:
    +            if not self.egg_name:
    +                raise OSError(
    +                    '"egg_name" is empty. This likely means no egg could be found from the "module_path".'
    +                )
    +            real_path = manager.get_cache_path(self.egg_name, self._parts(zip_path))
    +
    +            if self._is_current(real_path, zip_path):
    +                return real_path
    +
    +            outf, tmpnam = _mkstemp(
    +                ".$extract",
    +                dir=os.path.dirname(real_path),
    +            )
    +            os.write(outf, self.loader.get_data(zip_path))
    +            os.close(outf)
    +            utime(tmpnam, (timestamp, timestamp))
    +            manager.postprocess(tmpnam, real_path)
    +
    +            try:
    +                rename(tmpnam, real_path)
    +
    +            except OSError:
    +                if os.path.isfile(real_path):
    +                    if self._is_current(real_path, zip_path):
    +                        # the file became current since it was checked above,
    +                        #  so proceed.
    +                        return real_path
    +                    # Windows, del old file and retry
    +                    elif os.name == 'nt':
    +                        unlink(real_path)
    +                        rename(tmpnam, real_path)
    +                        return real_path
    +                raise
    +
    +        except OSError:
    +            # report a user-friendly error
    +            manager.extraction_error()
    +
    +        return real_path
    +
    +    def _is_current(self, file_path, zip_path):
    +        """
    +        Return True if the file_path is current for this zip_path
    +        """
    +        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
    +        if not os.path.isfile(file_path):
    +            return False
    +        stat = os.stat(file_path)
    +        if stat.st_size != size or stat.st_mtime != timestamp:
    +            return False
    +        # check that the contents match
    +        zip_contents = self.loader.get_data(zip_path)
    +        with open(file_path, 'rb') as f:
    +            file_contents = f.read()
    +        return zip_contents == file_contents
    +
    +    def _get_eager_resources(self):
    +        if self.eagers is None:
    +            eagers = []
    +            for name in ('native_libs.txt', 'eager_resources.txt'):
    +                if self.has_metadata(name):
    +                    eagers.extend(self.get_metadata_lines(name))
    +            self.eagers = eagers
    +        return self.eagers
    +
    +    def _index(self):
    +        try:
    +            return self._dirindex
    +        except AttributeError:
    +            ind = {}
    +            for path in self.zipinfo:
    +                parts = path.split(os.sep)
    +                while parts:
    +                    parent = os.sep.join(parts[:-1])
    +                    if parent in ind:
    +                        ind[parent].append(parts[-1])
    +                        break
    +                    else:
    +                        ind[parent] = [parts.pop()]
    +            self._dirindex = ind
    +            return ind
    +
    +    def _has(self, fspath) -> bool:
    +        zip_path = self._zipinfo_name(fspath)
    +        return zip_path in self.zipinfo or zip_path in self._index()
    +
    +    def _isdir(self, fspath) -> bool:
    +        return self._zipinfo_name(fspath) in self._index()
    +
    +    def _listdir(self, fspath):
    +        return list(self._index().get(self._zipinfo_name(fspath), ()))
    +
    +    def _eager_to_zip(self, resource_name: str):
    +        return self._zipinfo_name(self._fn(self.egg_root, resource_name))
    +
    +    def _resource_to_zip(self, resource_name: str):
    +        return self._zipinfo_name(self._fn(self.module_path, resource_name))
    +
    +
    +register_loader_type(zipimport.zipimporter, ZipProvider)
    +
    +
    +class FileMetadata(EmptyProvider):
    +    """Metadata handler for standalone PKG-INFO files
    +
    +    Usage::
    +
    +        metadata = FileMetadata("/path/to/PKG-INFO")
    +
    +    This provider rejects all data and metadata requests except for PKG-INFO,
    +    which is treated as existing, and will be the contents of the file at
    +    the provided location.
    +    """
    +
    +    def __init__(self, path: StrPath):
    +        self.path = path
    +
    +    def _get_metadata_path(self, name):
    +        return self.path
    +
    +    def has_metadata(self, name: str) -> bool:
    +        return name == 'PKG-INFO' and os.path.isfile(self.path)
    +
    +    def get_metadata(self, name: str):
    +        if name != 'PKG-INFO':
    +            raise KeyError("No metadata except PKG-INFO is available")
    +
    +        with open(self.path, encoding='utf-8', errors="replace") as f:
    +            metadata = f.read()
    +        self._warn_on_replacement(metadata)
    +        return metadata
    +
    +    def _warn_on_replacement(self, metadata):
    +        replacement_char = '�'
    +        if replacement_char in metadata:
    +            tmpl = "{self.path} could not be properly decoded in UTF-8"
    +            msg = tmpl.format(**locals())
    +            warnings.warn(msg)
    +
    +    def get_metadata_lines(self, name: str) -> Iterator[str]:
    +        return yield_lines(self.get_metadata(name))
    +
    +
    +class PathMetadata(DefaultProvider):
    +    """Metadata provider for egg directories
    +
    +    Usage::
    +
    +        # Development eggs:
    +
    +        egg_info = "/path/to/PackageName.egg-info"
    +        base_dir = os.path.dirname(egg_info)
    +        metadata = PathMetadata(base_dir, egg_info)
    +        dist_name = os.path.splitext(os.path.basename(egg_info))[0]
    +        dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
    +
    +        # Unpacked egg directories:
    +
    +        egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
    +        metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
    +        dist = Distribution.from_filename(egg_path, metadata=metadata)
    +    """
    +
    +    def __init__(self, path: str, egg_info: str):
    +        self.module_path = path
    +        self.egg_info = egg_info
    +
    +
    +class EggMetadata(ZipProvider):
    +    """Metadata provider for .egg files"""
    +
    +    def __init__(self, importer: zipimport.zipimporter):
    +        """Create a metadata provider from a zipimporter"""
    +
    +        self.zip_pre = importer.archive + os.sep
    +        self.loader = importer
    +        if importer.prefix:
    +            self.module_path = os.path.join(importer.archive, importer.prefix)
    +        else:
    +            self.module_path = importer.archive
    +        self._setup_prefix()
    +
    +
    +_distribution_finders: dict[type, _DistFinderType[Any]] = _declare_state(
    +    'dict', '_distribution_finders', {}
    +)
    +
    +
    +def register_finder(importer_type: type[_T], distribution_finder: _DistFinderType[_T]):
    +    """Register `distribution_finder` to find distributions in sys.path items
    +
    +    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
    +    handler), and `distribution_finder` is a callable that, passed a path
    +    item and the importer instance, yields ``Distribution`` instances found on
    +    that path item.  See ``pkg_resources.find_on_path`` for an example."""
    +    _distribution_finders[importer_type] = distribution_finder
    +
    +
    +def find_distributions(path_item: str, only: bool = False):
    +    """Yield distributions accessible via `path_item`"""
    +    importer = get_importer(path_item)
    +    finder = _find_adapter(_distribution_finders, importer)
    +    return finder(importer, path_item, only)
    +
    +
    +def find_eggs_in_zip(
    +    importer: zipimport.zipimporter, path_item: str, only: bool = False
    +) -> Iterator[Distribution]:
    +    """
    +    Find eggs in zip files; possibly multiple nested eggs.
    +    """
    +    if importer.archive.endswith('.whl'):
    +        # wheels are not supported with this finder
    +        # they don't have PKG-INFO metadata, and won't ever contain eggs
    +        return
    +    metadata = EggMetadata(importer)
    +    if metadata.has_metadata('PKG-INFO'):
    +        yield Distribution.from_filename(path_item, metadata=metadata)
    +    if only:
    +        # don't yield nested distros
    +        return
    +    for subitem in metadata.resource_listdir(''):
    +        if _is_egg_path(subitem):
    +            subpath = os.path.join(path_item, subitem)
    +            dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
    +            yield from dists
    +        elif subitem.lower().endswith(('.dist-info', '.egg-info')):
    +            subpath = os.path.join(path_item, subitem)
    +            submeta = EggMetadata(zipimport.zipimporter(subpath))
    +            submeta.egg_info = subpath
    +            yield Distribution.from_location(path_item, subitem, submeta)
    +
    +
    +register_finder(zipimport.zipimporter, find_eggs_in_zip)
    +
    +
    +def find_nothing(
    +    importer: object | None, path_item: str | None, only: bool | None = False
    +):
    +    return ()
    +
    +
    +register_finder(object, find_nothing)
    +
    +
    +def find_on_path(importer: object | None, path_item, only=False):
    +    """Yield distributions accessible on a sys.path directory"""
    +    path_item = _normalize_cached(path_item)
    +
    +    if _is_unpacked_egg(path_item):
    +        yield Distribution.from_filename(
    +            path_item,
    +            metadata=PathMetadata(path_item, os.path.join(path_item, 'EGG-INFO')),
    +        )
    +        return
    +
    +    entries = (os.path.join(path_item, child) for child in safe_listdir(path_item))
    +
    +    # scan for .egg and .egg-info in directory
    +    for entry in sorted(entries):
    +        fullpath = os.path.join(path_item, entry)
    +        factory = dist_factory(path_item, entry, only)
    +        yield from factory(fullpath)
    +
    +
    +def dist_factory(path_item, entry, only):
    +    """Return a dist_factory for the given entry."""
    +    lower = entry.lower()
    +    is_egg_info = lower.endswith('.egg-info')
    +    is_dist_info = lower.endswith('.dist-info') and os.path.isdir(
    +        os.path.join(path_item, entry)
    +    )
    +    is_meta = is_egg_info or is_dist_info
    +    return (
    +        distributions_from_metadata
    +        if is_meta
    +        else find_distributions
    +        if not only and _is_egg_path(entry)
    +        else resolve_egg_link
    +        if not only and lower.endswith('.egg-link')
    +        else NoDists()
    +    )
    +
    +
    +class NoDists:
    +    """
    +    >>> bool(NoDists())
    +    False
    +
    +    >>> list(NoDists()('anything'))
    +    []
    +    """
    +
    +    def __bool__(self):
    +        return False
    +
    +    def __call__(self, fullpath):
    +        return iter(())
    +
    +
    +def safe_listdir(path: StrOrBytesPath):
    +    """
    +    Attempt to list contents of path, but suppress some exceptions.
    +    """
    +    try:
    +        return os.listdir(path)
    +    except (PermissionError, NotADirectoryError):
    +        pass
    +    except OSError as e:
    +        # Ignore the directory if does not exist, not a directory or
    +        # permission denied
    +        if e.errno not in (errno.ENOTDIR, errno.EACCES, errno.ENOENT):
    +            raise
    +    return ()
    +
    +
    +def distributions_from_metadata(path: str):
    +    root = os.path.dirname(path)
    +    if os.path.isdir(path):
    +        if len(os.listdir(path)) == 0:
    +            # empty metadata dir; skip
    +            return
    +        metadata: _MetadataType = PathMetadata(root, path)
    +    else:
    +        metadata = FileMetadata(path)
    +    entry = os.path.basename(path)
    +    yield Distribution.from_location(
    +        root,
    +        entry,
    +        metadata,
    +        precedence=DEVELOP_DIST,
    +    )
    +
    +
    +def non_empty_lines(path):
    +    """
    +    Yield non-empty lines from file at path
    +    """
    +    for line in _read_utf8_with_fallback(path).splitlines():
    +        line = line.strip()
    +        if line:
    +            yield line
    +
    +
    +def resolve_egg_link(path):
    +    """
    +    Given a path to an .egg-link, resolve distributions
    +    present in the referenced path.
    +    """
    +    referenced_paths = non_empty_lines(path)
    +    resolved_paths = (
    +        os.path.join(os.path.dirname(path), ref) for ref in referenced_paths
    +    )
    +    dist_groups = map(find_distributions, resolved_paths)
    +    return next(dist_groups, ())
    +
    +
    +if hasattr(pkgutil, 'ImpImporter'):
    +    register_finder(pkgutil.ImpImporter, find_on_path)
    +
    +register_finder(importlib.machinery.FileFinder, find_on_path)
    +
    +_namespace_handlers: dict[type, _NSHandlerType[Any]] = _declare_state(
    +    'dict', '_namespace_handlers', {}
    +)
    +_namespace_packages: dict[str | None, list[str]] = _declare_state(
    +    'dict', '_namespace_packages', {}
    +)
    +
    +
    +def register_namespace_handler(
    +    importer_type: type[_T], namespace_handler: _NSHandlerType[_T]
    +):
    +    """Register `namespace_handler` to declare namespace packages
    +
    +    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
    +    handler), and `namespace_handler` is a callable like this::
    +
    +        def namespace_handler(importer, path_entry, moduleName, module):
    +            # return a path_entry to use for child packages
    +
    +    Namespace handlers are only called if the importer object has already
    +    agreed that it can handle the relevant path item, and they should only
    +    return a subpath if the module __path__ does not already contain an
    +    equivalent subpath.  For an example namespace handler, see
    +    ``pkg_resources.file_ns_handler``.
    +    """
    +    _namespace_handlers[importer_type] = namespace_handler
    +
    +
    +def _handle_ns(packageName, path_item):
    +    """Ensure that named package includes a subpath of path_item (if needed)"""
    +
    +    importer = get_importer(path_item)
    +    if importer is None:
    +        return None
    +
    +    # use find_spec (PEP 451) and fall-back to find_module (PEP 302)
    +    try:
    +        spec = importer.find_spec(packageName)
    +    except AttributeError:
    +        # capture warnings due to #1111
    +        with warnings.catch_warnings():
    +            warnings.simplefilter("ignore")
    +            loader = importer.find_module(packageName)
    +    else:
    +        loader = spec.loader if spec else None
    +
    +    if loader is None:
    +        return None
    +    module = sys.modules.get(packageName)
    +    if module is None:
    +        module = sys.modules[packageName] = types.ModuleType(packageName)
    +        module.__path__ = []
    +        _set_parent_ns(packageName)
    +    elif not hasattr(module, '__path__'):
    +        raise TypeError("Not a package:", packageName)
    +    handler = _find_adapter(_namespace_handlers, importer)
    +    subpath = handler(importer, path_item, packageName, module)
    +    if subpath is not None:
    +        path = module.__path__
    +        path.append(subpath)
    +        importlib.import_module(packageName)
    +        _rebuild_mod_path(path, packageName, module)
    +    return subpath
    +
    +
    +def _rebuild_mod_path(orig_path, package_name, module: types.ModuleType):
    +    """
    +    Rebuild module.__path__ ensuring that all entries are ordered
    +    corresponding to their sys.path order
    +    """
    +    sys_path = [_normalize_cached(p) for p in sys.path]
    +
    +    def safe_sys_path_index(entry):
    +        """
    +        Workaround for #520 and #513.
    +        """
    +        try:
    +            return sys_path.index(entry)
    +        except ValueError:
    +            return float('inf')
    +
    +    def position_in_sys_path(path):
    +        """
    +        Return the ordinal of the path based on its position in sys.path
    +        """
    +        path_parts = path.split(os.sep)
    +        module_parts = package_name.count('.') + 1
    +        parts = path_parts[:-module_parts]
    +        return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
    +
    +    new_path = sorted(orig_path, key=position_in_sys_path)
    +    new_path = [_normalize_cached(p) for p in new_path]
    +
    +    if isinstance(module.__path__, list):
    +        module.__path__[:] = new_path
    +    else:
    +        module.__path__ = new_path
    +
    +
    +def declare_namespace(packageName: str):
    +    """Declare that package 'packageName' is a namespace package"""
    +
    +    msg = (
    +        f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
    +        "Implementing implicit namespace packages (as specified in PEP 420) "
    +        "is preferred to `pkg_resources.declare_namespace`. "
    +        "See https://setuptools.pypa.io/en/latest/references/"
    +        "keywords.html#keyword-namespace-packages"
    +    )
    +    warnings.warn(msg, DeprecationWarning, stacklevel=2)
    +
    +    _imp.acquire_lock()
    +    try:
    +        if packageName in _namespace_packages:
    +            return
    +
    +        path: MutableSequence[str] = sys.path
    +        parent, _, _ = packageName.rpartition('.')
    +
    +        if parent:
    +            declare_namespace(parent)
    +            if parent not in _namespace_packages:
    +                __import__(parent)
    +            try:
    +                path = sys.modules[parent].__path__
    +            except AttributeError as e:
    +                raise TypeError("Not a package:", parent) from e
    +
    +        # Track what packages are namespaces, so when new path items are added,
    +        # they can be updated
    +        _namespace_packages.setdefault(parent or None, []).append(packageName)
    +        _namespace_packages.setdefault(packageName, [])
    +
    +        for path_item in path:
    +            # Ensure all the parent's path items are reflected in the child,
    +            # if they apply
    +            _handle_ns(packageName, path_item)
    +
    +    finally:
    +        _imp.release_lock()
    +
    +
    +def fixup_namespace_packages(path_item: str, parent: str | None = None):
    +    """Ensure that previously-declared namespace packages include path_item"""
    +    _imp.acquire_lock()
    +    try:
    +        for package in _namespace_packages.get(parent, ()):
    +            subpath = _handle_ns(package, path_item)
    +            if subpath:
    +                fixup_namespace_packages(subpath, package)
    +    finally:
    +        _imp.release_lock()
    +
    +
    +def file_ns_handler(
    +    importer: object,
    +    path_item: StrPath,
    +    packageName: str,
    +    module: types.ModuleType,
    +):
    +    """Compute an ns-package subpath for a filesystem or zipfile importer"""
    +
    +    subpath = os.path.join(path_item, packageName.split('.')[-1])
    +    normalized = _normalize_cached(subpath)
    +    for item in module.__path__:
    +        if _normalize_cached(item) == normalized:
    +            break
    +    else:
    +        # Only return the path if it's not already there
    +        return subpath
    +
    +
    +if hasattr(pkgutil, 'ImpImporter'):
    +    register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
    +
    +register_namespace_handler(zipimport.zipimporter, file_ns_handler)
    +register_namespace_handler(importlib.machinery.FileFinder, file_ns_handler)
    +
    +
    +def null_ns_handler(
    +    importer: object,
    +    path_item: str | None,
    +    packageName: str | None,
    +    module: _ModuleLike | None,
    +):
    +    return None
    +
    +
    +register_namespace_handler(object, null_ns_handler)
    +
    +
    +@overload
    +def normalize_path(filename: StrPath) -> str: ...
    +@overload
    +def normalize_path(filename: BytesPath) -> bytes: ...
    +def normalize_path(filename: StrOrBytesPath):
    +    """Normalize a file/dir name for comparison purposes"""
    +    return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
    +
    +
    +def _cygwin_patch(filename: StrOrBytesPath):  # pragma: nocover
    +    """
    +    Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
    +    symlink components. Using
    +    os.path.abspath() works around this limitation. A fix in os.getcwd()
    +    would probably better, in Cygwin even more so, except
    +    that this seems to be by design...
    +    """
    +    return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
    +
    +
    +if TYPE_CHECKING:
    +    # https://github.com/python/mypy/issues/16261
    +    # https://github.com/python/typeshed/issues/6347
    +    @overload
    +    def _normalize_cached(filename: StrPath) -> str: ...
    +    @overload
    +    def _normalize_cached(filename: BytesPath) -> bytes: ...
    +    def _normalize_cached(filename: StrOrBytesPath) -> str | bytes: ...
    +else:
    +
    +    @functools.lru_cache(maxsize=None)
    +    def _normalize_cached(filename):
    +        return normalize_path(filename)
    +
    +
    +def _is_egg_path(path):
    +    """
    +    Determine if given path appears to be an egg.
    +    """
    +    return _is_zip_egg(path) or _is_unpacked_egg(path)
    +
    +
    +def _is_zip_egg(path):
    +    return (
    +        path.lower().endswith('.egg')
    +        and os.path.isfile(path)
    +        and zipfile.is_zipfile(path)
    +    )
    +
    +
    +def _is_unpacked_egg(path):
    +    """
    +    Determine if given path appears to be an unpacked egg.
    +    """
    +    return path.lower().endswith('.egg') and os.path.isfile(
    +        os.path.join(path, 'EGG-INFO', 'PKG-INFO')
    +    )
    +
    +
    +def _set_parent_ns(packageName):
    +    parts = packageName.split('.')
    +    name = parts.pop()
    +    if parts:
    +        parent = '.'.join(parts)
    +        setattr(sys.modules[parent], name, sys.modules[packageName])
    +
    +
    +MODULE = re.compile(r"\w+(\.\w+)*$").match
    +EGG_NAME = re.compile(
    +    r"""
    +    (?P[^-]+) (
    +        -(?P[^-]+) (
    +            -py(?P[^-]+) (
    +                -(?P.+)
    +            )?
    +        )?
    +    )?
    +    """,
    +    re.VERBOSE | re.IGNORECASE,
    +).match
    +
    +
    +class EntryPoint:
    +    """Object representing an advertised importable object"""
    +
    +    def __init__(
    +        self,
    +        name: str,
    +        module_name: str,
    +        attrs: Iterable[str] = (),
    +        extras: Iterable[str] = (),
    +        dist: Distribution | None = None,
    +    ):
    +        if not MODULE(module_name):
    +            raise ValueError("Invalid module name", module_name)
    +        self.name = name
    +        self.module_name = module_name
    +        self.attrs = tuple(attrs)
    +        self.extras = tuple(extras)
    +        self.dist = dist
    +
    +    def __str__(self):
    +        s = "%s = %s" % (self.name, self.module_name)
    +        if self.attrs:
    +            s += ':' + '.'.join(self.attrs)
    +        if self.extras:
    +            s += ' [%s]' % ','.join(self.extras)
    +        return s
    +
    +    def __repr__(self):
    +        return "EntryPoint.parse(%r)" % str(self)
    +
    +    @overload
    +    def load(
    +        self,
    +        require: Literal[True] = True,
    +        env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +    ) -> _ResolvedEntryPoint: ...
    +    @overload
    +    def load(
    +        self,
    +        require: Literal[False],
    +        *args: Any,
    +        **kwargs: Any,
    +    ) -> _ResolvedEntryPoint: ...
    +    def load(
    +        self,
    +        require: bool = True,
    +        *args: Environment | _InstallerType | None,
    +        **kwargs: Environment | _InstallerType | None,
    +    ) -> _ResolvedEntryPoint:
    +        """
    +        Require packages for this EntryPoint, then resolve it.
    +        """
    +        if not require or args or kwargs:
    +            warnings.warn(
    +                "Parameters to load are deprecated.  Call .resolve and "
    +                ".require separately.",
    +                PkgResourcesDeprecationWarning,
    +                stacklevel=2,
    +            )
    +        if require:
    +            # We could pass `env` and `installer` directly,
    +            # but keeping `*args` and `**kwargs` for backwards compatibility
    +            self.require(*args, **kwargs)  # type: ignore
    +        return self.resolve()
    +
    +    def resolve(self) -> _ResolvedEntryPoint:
    +        """
    +        Resolve the entry point from its module and attrs.
    +        """
    +        module = __import__(self.module_name, fromlist=['__name__'], level=0)
    +        try:
    +            return functools.reduce(getattr, self.attrs, module)
    +        except AttributeError as exc:
    +            raise ImportError(str(exc)) from exc
    +
    +    def require(
    +        self,
    +        env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +    ):
    +        if not self.dist:
    +            error_cls = UnknownExtra if self.extras else AttributeError
    +            raise error_cls("Can't require() without a distribution", self)
    +
    +        # Get the requirements for this entry point with all its extras and
    +        # then resolve them. We have to pass `extras` along when resolving so
    +        # that the working set knows what extras we want. Otherwise, for
    +        # dist-info distributions, the working set will assume that the
    +        # requirements for that extra are purely optional and skip over them.
    +        reqs = self.dist.requires(self.extras)
    +        items = working_set.resolve(reqs, env, installer, extras=self.extras)
    +        list(map(working_set.add, items))
    +
    +    pattern = re.compile(
    +        r'\s*'
    +        r'(?P.+?)\s*'
    +        r'=\s*'
    +        r'(?P[\w.]+)\s*'
    +        r'(:\s*(?P[\w.]+))?\s*'
    +        r'(?P\[.*\])?\s*$'
    +    )
    +
    +    @classmethod
    +    def parse(cls, src: str, dist: Distribution | None = None):
    +        """Parse a single entry point from string `src`
    +
    +        Entry point syntax follows the form::
    +
    +            name = some.module:some.attr [extra1, extra2]
    +
    +        The entry name and module name are required, but the ``:attrs`` and
    +        ``[extras]`` parts are optional
    +        """
    +        m = cls.pattern.match(src)
    +        if not m:
    +            msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
    +            raise ValueError(msg, src)
    +        res = m.groupdict()
    +        extras = cls._parse_extras(res['extras'])
    +        attrs = res['attr'].split('.') if res['attr'] else ()
    +        return cls(res['name'], res['module'], attrs, extras, dist)
    +
    +    @classmethod
    +    def _parse_extras(cls, extras_spec):
    +        if not extras_spec:
    +            return ()
    +        req = Requirement.parse('x' + extras_spec)
    +        if req.specs:
    +            raise ValueError
    +        return req.extras
    +
    +    @classmethod
    +    def parse_group(
    +        cls,
    +        group: str,
    +        lines: _NestedStr,
    +        dist: Distribution | None = None,
    +    ):
    +        """Parse an entry point group"""
    +        if not MODULE(group):
    +            raise ValueError("Invalid group name", group)
    +        this: dict[str, Self] = {}
    +        for line in yield_lines(lines):
    +            ep = cls.parse(line, dist)
    +            if ep.name in this:
    +                raise ValueError("Duplicate entry point", group, ep.name)
    +            this[ep.name] = ep
    +        return this
    +
    +    @classmethod
    +    def parse_map(
    +        cls,
    +        data: str | Iterable[str] | dict[str, str | Iterable[str]],
    +        dist: Distribution | None = None,
    +    ):
    +        """Parse a map of entry point groups"""
    +        _data: Iterable[tuple[str | None, str | Iterable[str]]]
    +        if isinstance(data, dict):
    +            _data = data.items()
    +        else:
    +            _data = split_sections(data)
    +        maps: dict[str, dict[str, Self]] = {}
    +        for group, lines in _data:
    +            if group is None:
    +                if not lines:
    +                    continue
    +                raise ValueError("Entry points must be listed in groups")
    +            group = group.strip()
    +            if group in maps:
    +                raise ValueError("Duplicate group name", group)
    +            maps[group] = cls.parse_group(group, lines, dist)
    +        return maps
    +
    +
    +def _version_from_file(lines):
    +    """
    +    Given an iterable of lines from a Metadata file, return
    +    the value of the Version field, if present, or None otherwise.
    +    """
    +
    +    def is_version_line(line):
    +        return line.lower().startswith('version:')
    +
    +    version_lines = filter(is_version_line, lines)
    +    line = next(iter(version_lines), '')
    +    _, _, value = line.partition(':')
    +    return safe_version(value.strip()) or None
    +
    +
    +class Distribution:
    +    """Wrap an actual or potential sys.path entry w/metadata"""
    +
    +    PKG_INFO = 'PKG-INFO'
    +
    +    def __init__(
    +        self,
    +        location: str | None = None,
    +        metadata: _MetadataType = None,
    +        project_name: str | None = None,
    +        version: str | None = None,
    +        py_version: str | None = PY_MAJOR,
    +        platform: str | None = None,
    +        precedence: int = EGG_DIST,
    +    ):
    +        self.project_name = safe_name(project_name or 'Unknown')
    +        if version is not None:
    +            self._version = safe_version(version)
    +        self.py_version = py_version
    +        self.platform = platform
    +        self.location = location
    +        self.precedence = precedence
    +        self._provider = metadata or empty_provider
    +
    +    @classmethod
    +    def from_location(
    +        cls,
    +        location: str,
    +        basename: StrPath,
    +        metadata: _MetadataType = None,
    +        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
    +    ) -> Distribution:
    +        project_name, version, py_version, platform = [None] * 4
    +        basename, ext = os.path.splitext(basename)
    +        if ext.lower() in _distributionImpl:
    +            cls = _distributionImpl[ext.lower()]
    +
    +            match = EGG_NAME(basename)
    +            if match:
    +                project_name, version, py_version, platform = match.group(
    +                    'name', 'ver', 'pyver', 'plat'
    +                )
    +        return cls(
    +            location,
    +            metadata,
    +            project_name=project_name,
    +            version=version,
    +            py_version=py_version,
    +            platform=platform,
    +            **kw,
    +        )._reload_version()
    +
    +    def _reload_version(self):
    +        return self
    +
    +    @property
    +    def hashcmp(self):
    +        return (
    +            self._forgiving_parsed_version,
    +            self.precedence,
    +            self.key,
    +            self.location,
    +            self.py_version or '',
    +            self.platform or '',
    +        )
    +
    +    def __hash__(self):
    +        return hash(self.hashcmp)
    +
    +    def __lt__(self, other: Distribution):
    +        return self.hashcmp < other.hashcmp
    +
    +    def __le__(self, other: Distribution):
    +        return self.hashcmp <= other.hashcmp
    +
    +    def __gt__(self, other: Distribution):
    +        return self.hashcmp > other.hashcmp
    +
    +    def __ge__(self, other: Distribution):
    +        return self.hashcmp >= other.hashcmp
    +
    +    def __eq__(self, other: object):
    +        if not isinstance(other, self.__class__):
    +            # It's not a Distribution, so they are not equal
    +            return False
    +        return self.hashcmp == other.hashcmp
    +
    +    def __ne__(self, other: object):
    +        return not self == other
    +
    +    # These properties have to be lazy so that we don't have to load any
    +    # metadata until/unless it's actually needed.  (i.e., some distributions
    +    # may not know their name or version without loading PKG-INFO)
    +
    +    @property
    +    def key(self):
    +        try:
    +            return self._key
    +        except AttributeError:
    +            self._key = key = self.project_name.lower()
    +            return key
    +
    +    @property
    +    def parsed_version(self):
    +        if not hasattr(self, "_parsed_version"):
    +            try:
    +                self._parsed_version = parse_version(self.version)
    +            except _packaging_version.InvalidVersion as ex:
    +                info = f"(package: {self.project_name})"
    +                if hasattr(ex, "add_note"):
    +                    ex.add_note(info)  # PEP 678
    +                    raise
    +                raise _packaging_version.InvalidVersion(f"{str(ex)} {info}") from None
    +
    +        return self._parsed_version
    +
    +    @property
    +    def _forgiving_parsed_version(self):
    +        try:
    +            return self.parsed_version
    +        except _packaging_version.InvalidVersion as ex:
    +            self._parsed_version = parse_version(_forgiving_version(self.version))
    +
    +            notes = "\n".join(getattr(ex, "__notes__", []))  # PEP 678
    +            msg = f"""!!\n\n
    +            *************************************************************************
    +            {str(ex)}\n{notes}
    +
    +            This is a long overdue deprecation.
    +            For the time being, `pkg_resources` will use `{self._parsed_version}`
    +            as a replacement to avoid breaking existing environments,
    +            but no future compatibility is guaranteed.
    +
    +            If you maintain package {self.project_name} you should implement
    +            the relevant changes to adequate the project to PEP 440 immediately.
    +            *************************************************************************
    +            \n\n!!
    +            """
    +            warnings.warn(msg, DeprecationWarning)
    +
    +            return self._parsed_version
    +
    +    @property
    +    def version(self):
    +        try:
    +            return self._version
    +        except AttributeError as e:
    +            version = self._get_version()
    +            if version is None:
    +                path = self._get_metadata_path_for_display(self.PKG_INFO)
    +                msg = ("Missing 'Version:' header and/or {} file at path: {}").format(
    +                    self.PKG_INFO, path
    +                )
    +                raise ValueError(msg, self) from e
    +
    +            return version
    +
    +    @property
    +    def _dep_map(self):
    +        """
    +        A map of extra to its list of (direct) requirements
    +        for this distribution, including the null extra.
    +        """
    +        try:
    +            return self.__dep_map
    +        except AttributeError:
    +            self.__dep_map = self._filter_extras(self._build_dep_map())
    +        return self.__dep_map
    +
    +    @staticmethod
    +    def _filter_extras(dm: dict[str | None, list[Requirement]]):
    +        """
    +        Given a mapping of extras to dependencies, strip off
    +        environment markers and filter out any dependencies
    +        not matching the markers.
    +        """
    +        for extra in list(filter(None, dm)):
    +            new_extra: str | None = extra
    +            reqs = dm.pop(extra)
    +            new_extra, _, marker = extra.partition(':')
    +            fails_marker = marker and (
    +                invalid_marker(marker) or not evaluate_marker(marker)
    +            )
    +            if fails_marker:
    +                reqs = []
    +            new_extra = safe_extra(new_extra) or None
    +
    +            dm.setdefault(new_extra, []).extend(reqs)
    +        return dm
    +
    +    def _build_dep_map(self):
    +        dm = {}
    +        for name in 'requires.txt', 'depends.txt':
    +            for extra, reqs in split_sections(self._get_metadata(name)):
    +                dm.setdefault(extra, []).extend(parse_requirements(reqs))
    +        return dm
    +
    +    def requires(self, extras: Iterable[str] = ()):
    +        """List of Requirements needed for this distro if `extras` are used"""
    +        dm = self._dep_map
    +        deps: list[Requirement] = []
    +        deps.extend(dm.get(None, ()))
    +        for ext in extras:
    +            try:
    +                deps.extend(dm[safe_extra(ext)])
    +            except KeyError as e:
    +                raise UnknownExtra(
    +                    "%s has no such extra feature %r" % (self, ext)
    +                ) from e
    +        return deps
    +
    +    def _get_metadata_path_for_display(self, name):
    +        """
    +        Return the path to the given metadata file, if available.
    +        """
    +        try:
    +            # We need to access _get_metadata_path() on the provider object
    +            # directly rather than through this class's __getattr__()
    +            # since _get_metadata_path() is marked private.
    +            path = self._provider._get_metadata_path(name)
    +
    +        # Handle exceptions e.g. in case the distribution's metadata
    +        # provider doesn't support _get_metadata_path().
    +        except Exception:
    +            return '[could not detect]'
    +
    +        return path
    +
    +    def _get_metadata(self, name):
    +        if self.has_metadata(name):
    +            yield from self.get_metadata_lines(name)
    +
    +    def _get_version(self):
    +        lines = self._get_metadata(self.PKG_INFO)
    +        return _version_from_file(lines)
    +
    +    def activate(self, path: list[str] | None = None, replace: bool = False):
    +        """Ensure distribution is importable on `path` (default=sys.path)"""
    +        if path is None:
    +            path = sys.path
    +        self.insert_on(path, replace=replace)
    +        if path is sys.path and self.location is not None:
    +            fixup_namespace_packages(self.location)
    +            for pkg in self._get_metadata('namespace_packages.txt'):
    +                if pkg in sys.modules:
    +                    declare_namespace(pkg)
    +
    +    def egg_name(self):
    +        """Return what this distribution's standard .egg filename should be"""
    +        filename = "%s-%s-py%s" % (
    +            to_filename(self.project_name),
    +            to_filename(self.version),
    +            self.py_version or PY_MAJOR,
    +        )
    +
    +        if self.platform:
    +            filename += '-' + self.platform
    +        return filename
    +
    +    def __repr__(self):
    +        if self.location:
    +            return "%s (%s)" % (self, self.location)
    +        else:
    +            return str(self)
    +
    +    def __str__(self):
    +        try:
    +            version = getattr(self, 'version', None)
    +        except ValueError:
    +            version = None
    +        version = version or "[unknown version]"
    +        return "%s %s" % (self.project_name, version)
    +
    +    def __getattr__(self, attr):
    +        """Delegate all unrecognized public attributes to .metadata provider"""
    +        if attr.startswith('_'):
    +            raise AttributeError(attr)
    +        return getattr(self._provider, attr)
    +
    +    def __dir__(self):
    +        return list(
    +            set(super().__dir__())
    +            | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
    +        )
    +
    +    @classmethod
    +    def from_filename(
    +        cls,
    +        filename: StrPath,
    +        metadata: _MetadataType = None,
    +        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
    +    ):
    +        return cls.from_location(
    +            _normalize_cached(filename), os.path.basename(filename), metadata, **kw
    +        )
    +
    +    def as_requirement(self):
    +        """Return a ``Requirement`` that matches this distribution exactly"""
    +        if isinstance(self.parsed_version, _packaging_version.Version):
    +            spec = "%s==%s" % (self.project_name, self.parsed_version)
    +        else:
    +            spec = "%s===%s" % (self.project_name, self.parsed_version)
    +
    +        return Requirement.parse(spec)
    +
    +    def load_entry_point(self, group: str, name: str) -> _ResolvedEntryPoint:
    +        """Return the `name` entry point of `group` or raise ImportError"""
    +        ep = self.get_entry_info(group, name)
    +        if ep is None:
    +            raise ImportError("Entry point %r not found" % ((group, name),))
    +        return ep.load()
    +
    +    @overload
    +    def get_entry_map(self, group: None = None) -> dict[str, dict[str, EntryPoint]]: ...
    +    @overload
    +    def get_entry_map(self, group: str) -> dict[str, EntryPoint]: ...
    +    def get_entry_map(self, group: str | None = None):
    +        """Return the entry point map for `group`, or the full entry map"""
    +        if not hasattr(self, "_ep_map"):
    +            self._ep_map = EntryPoint.parse_map(
    +                self._get_metadata('entry_points.txt'), self
    +            )
    +        if group is not None:
    +            return self._ep_map.get(group, {})
    +        return self._ep_map
    +
    +    def get_entry_info(self, group: str, name: str):
    +        """Return the EntryPoint object for `group`+`name`, or ``None``"""
    +        return self.get_entry_map(group).get(name)
    +
    +    # FIXME: 'Distribution.insert_on' is too complex (13)
    +    def insert_on(  # noqa: C901
    +        self,
    +        path: list[str],
    +        loc=None,
    +        replace: bool = False,
    +    ):
    +        """Ensure self.location is on path
    +
    +        If replace=False (default):
    +            - If location is already in path anywhere, do nothing.
    +            - Else:
    +              - If it's an egg and its parent directory is on path,
    +                insert just ahead of the parent.
    +              - Else: add to the end of path.
    +        If replace=True:
    +            - If location is already on path anywhere (not eggs)
    +              or higher priority than its parent (eggs)
    +              do nothing.
    +            - Else:
    +              - If it's an egg and its parent directory is on path,
    +                insert just ahead of the parent,
    +                removing any lower-priority entries.
    +              - Else: add it to the front of path.
    +        """
    +
    +        loc = loc or self.location
    +        if not loc:
    +            return
    +
    +        nloc = _normalize_cached(loc)
    +        bdir = os.path.dirname(nloc)
    +        npath = [(p and _normalize_cached(p) or p) for p in path]
    +
    +        for p, item in enumerate(npath):
    +            if item == nloc:
    +                if replace:
    +                    break
    +                else:
    +                    # don't modify path (even removing duplicates) if
    +                    # found and not replace
    +                    return
    +            elif item == bdir and self.precedence == EGG_DIST:
    +                # if it's an .egg, give it precedence over its directory
    +                # UNLESS it's already been added to sys.path and replace=False
    +                if (not replace) and nloc in npath[p:]:
    +                    return
    +                if path is sys.path:
    +                    self.check_version_conflict()
    +                path.insert(p, loc)
    +                npath.insert(p, nloc)
    +                break
    +        else:
    +            if path is sys.path:
    +                self.check_version_conflict()
    +            if replace:
    +                path.insert(0, loc)
    +            else:
    +                path.append(loc)
    +            return
    +
    +        # p is the spot where we found or inserted loc; now remove duplicates
    +        while True:
    +            try:
    +                np = npath.index(nloc, p + 1)
    +            except ValueError:
    +                break
    +            else:
    +                del npath[np], path[np]
    +                # ha!
    +                p = np
    +
    +        return
    +
    +    def check_version_conflict(self):
    +        if self.key == 'setuptools':
    +            # ignore the inevitable setuptools self-conflicts  :(
    +            return
    +
    +        nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
    +        loc = normalize_path(self.location)
    +        for modname in self._get_metadata('top_level.txt'):
    +            if (
    +                modname not in sys.modules
    +                or modname in nsp
    +                or modname in _namespace_packages
    +            ):
    +                continue
    +            if modname in ('pkg_resources', 'setuptools', 'site'):
    +                continue
    +            fn = getattr(sys.modules[modname], '__file__', None)
    +            if fn and (
    +                normalize_path(fn).startswith(loc) or fn.startswith(self.location)
    +            ):
    +                continue
    +            issue_warning(
    +                "Module %s was already imported from %s, but %s is being added"
    +                " to sys.path" % (modname, fn, self.location),
    +            )
    +
    +    def has_version(self):
    +        try:
    +            self.version
    +        except ValueError:
    +            issue_warning("Unbuilt egg for " + repr(self))
    +            return False
    +        except SystemError:
    +            # TODO: remove this except clause when python/cpython#103632 is fixed.
    +            return False
    +        return True
    +
    +    def clone(self, **kw: str | int | IResourceProvider | None):
    +        """Copy this distribution, substituting in any changed keyword args"""
    +        names = 'project_name version py_version platform location precedence'
    +        for attr in names.split():
    +            kw.setdefault(attr, getattr(self, attr, None))
    +        kw.setdefault('metadata', self._provider)
    +        # Unsafely unpacking. But keeping **kw for backwards and subclassing compatibility
    +        return self.__class__(**kw)  # type:ignore[arg-type]
    +
    +    @property
    +    def extras(self):
    +        return [dep for dep in self._dep_map if dep]
    +
    +
    +class EggInfoDistribution(Distribution):
    +    def _reload_version(self):
    +        """
    +        Packages installed by distutils (e.g. numpy or scipy),
    +        which uses an old safe_version, and so
    +        their version numbers can get mangled when
    +        converted to filenames (e.g., 1.11.0.dev0+2329eae to
    +        1.11.0.dev0_2329eae). These distributions will not be
    +        parsed properly
    +        downstream by Distribution and safe_version, so
    +        take an extra step and try to get the version number from
    +        the metadata file itself instead of the filename.
    +        """
    +        md_version = self._get_version()
    +        if md_version:
    +            self._version = md_version
    +        return self
    +
    +
    +class DistInfoDistribution(Distribution):
    +    """
    +    Wrap an actual or potential sys.path entry
    +    w/metadata, .dist-info style.
    +    """
    +
    +    PKG_INFO = 'METADATA'
    +    EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
    +
    +    @property
    +    def _parsed_pkg_info(self):
    +        """Parse and cache metadata"""
    +        try:
    +            return self._pkg_info
    +        except AttributeError:
    +            metadata = self.get_metadata(self.PKG_INFO)
    +            self._pkg_info = email.parser.Parser().parsestr(metadata)
    +            return self._pkg_info
    +
    +    @property
    +    def _dep_map(self):
    +        try:
    +            return self.__dep_map
    +        except AttributeError:
    +            self.__dep_map = self._compute_dependencies()
    +            return self.__dep_map
    +
    +    def _compute_dependencies(self) -> dict[str | None, list[Requirement]]:
    +        """Recompute this distribution's dependencies."""
    +        self.__dep_map: dict[str | None, list[Requirement]] = {None: []}
    +
    +        reqs: list[Requirement] = []
    +        # Including any condition expressions
    +        for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
    +            reqs.extend(parse_requirements(req))
    +
    +        def reqs_for_extra(extra):
    +            for req in reqs:
    +                if not req.marker or req.marker.evaluate({'extra': extra}):
    +                    yield req
    +
    +        common = types.MappingProxyType(dict.fromkeys(reqs_for_extra(None)))
    +        self.__dep_map[None].extend(common)
    +
    +        for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
    +            s_extra = safe_extra(extra.strip())
    +            self.__dep_map[s_extra] = [
    +                r for r in reqs_for_extra(extra) if r not in common
    +            ]
    +
    +        return self.__dep_map
    +
    +
    +_distributionImpl = {
    +    '.egg': Distribution,
    +    '.egg-info': EggInfoDistribution,
    +    '.dist-info': DistInfoDistribution,
    +}
    +
    +
    +def issue_warning(*args, **kw):
    +    level = 1
    +    g = globals()
    +    try:
    +        # find the first stack frame that is *not* code in
    +        # the pkg_resources module, to use for the warning
    +        while sys._getframe(level).f_globals is g:
    +            level += 1
    +    except ValueError:
    +        pass
    +    warnings.warn(stacklevel=level + 1, *args, **kw)
    +
    +
    +def parse_requirements(strs: _NestedStr):
    +    """
    +    Yield ``Requirement`` objects for each specification in `strs`.
    +
    +    `strs` must be a string, or a (possibly-nested) iterable thereof.
    +    """
    +    return map(Requirement, join_continuation(map(drop_comment, yield_lines(strs))))
    +
    +
    +class RequirementParseError(_packaging_requirements.InvalidRequirement):
    +    "Compatibility wrapper for InvalidRequirement"
    +
    +
    +class Requirement(_packaging_requirements.Requirement):
    +    def __init__(self, requirement_string: str):
    +        """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
    +        super().__init__(requirement_string)
    +        self.unsafe_name = self.name
    +        project_name = safe_name(self.name)
    +        self.project_name, self.key = project_name, project_name.lower()
    +        self.specs = [(spec.operator, spec.version) for spec in self.specifier]
    +        # packaging.requirements.Requirement uses a set for its extras. We use a variable-length tuple
    +        self.extras: tuple[str] = tuple(map(safe_extra, self.extras))
    +        self.hashCmp = (
    +            self.key,
    +            self.url,
    +            self.specifier,
    +            frozenset(self.extras),
    +            str(self.marker) if self.marker else None,
    +        )
    +        self.__hash = hash(self.hashCmp)
    +
    +    def __eq__(self, other: object):
    +        return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
    +
    +    def __ne__(self, other):
    +        return not self == other
    +
    +    def __contains__(self, item: Distribution | str | tuple[str, ...]) -> bool:
    +        if isinstance(item, Distribution):
    +            if item.key != self.key:
    +                return False
    +
    +            item = item.version
    +
    +        # Allow prereleases always in order to match the previous behavior of
    +        # this method. In the future this should be smarter and follow PEP 440
    +        # more accurately.
    +        return self.specifier.contains(item, prereleases=True)
    +
    +    def __hash__(self):
    +        return self.__hash
    +
    +    def __repr__(self):
    +        return "Requirement.parse(%r)" % str(self)
    +
    +    @staticmethod
    +    def parse(s: str | Iterable[str]):
    +        (req,) = parse_requirements(s)
    +        return req
    +
    +
    +def _always_object(classes):
    +    """
    +    Ensure object appears in the mro even
    +    for old-style classes.
    +    """
    +    if object not in classes:
    +        return classes + (object,)
    +    return classes
    +
    +
    +def _find_adapter(registry: Mapping[type, _AdapterT], ob: object) -> _AdapterT:
    +    """Return an adapter factory for `ob` from `registry`"""
    +    types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
    +    for t in types:
    +        if t in registry:
    +            return registry[t]
    +    # _find_adapter would previously return None, and immediately be called.
    +    # So we're raising a TypeError to keep backward compatibility if anyone depended on that behaviour.
    +    raise TypeError(f"Could not find adapter for {registry} and {ob}")
    +
    +
    +def ensure_directory(path: StrOrBytesPath):
    +    """Ensure that the parent directory of `path` exists"""
    +    dirname = os.path.dirname(path)
    +    os.makedirs(dirname, exist_ok=True)
    +
    +
    +def _bypass_ensure_directory(path):
    +    """Sandbox-bypassing version of ensure_directory()"""
    +    if not WRITE_SUPPORT:
    +        raise OSError('"os.mkdir" not supported on this platform.')
    +    dirname, filename = split(path)
    +    if dirname and filename and not isdir(dirname):
    +        _bypass_ensure_directory(dirname)
    +        try:
    +            mkdir(dirname, 0o755)
    +        except FileExistsError:
    +            pass
    +
    +
    +def split_sections(s: _NestedStr) -> Iterator[tuple[str | None, list[str]]]:
    +    """Split a string or iterable thereof into (section, content) pairs
    +
    +    Each ``section`` is a stripped version of the section header ("[section]")
    +    and each ``content`` is a list of stripped lines excluding blank lines and
    +    comment-only lines.  If there are any such lines before the first section
    +    header, they're returned in a first ``section`` of ``None``.
    +    """
    +    section = None
    +    content = []
    +    for line in yield_lines(s):
    +        if line.startswith("["):
    +            if line.endswith("]"):
    +                if section or content:
    +                    yield section, content
    +                section = line[1:-1].strip()
    +                content = []
    +            else:
    +                raise ValueError("Invalid section heading", line)
    +        else:
    +            content.append(line)
    +
    +    # wrap up last segment
    +    yield section, content
    +
    +
    +def _mkstemp(*args, **kw):
    +    old_open = os.open
    +    try:
    +        # temporarily bypass sandboxing
    +        os.open = os_open
    +        return tempfile.mkstemp(*args, **kw)
    +    finally:
    +        # and then put it back
    +        os.open = old_open
    +
    +
    +# Silence the PEP440Warning by default, so that end users don't get hit by it
    +# randomly just because they use pkg_resources. We want to append the rule
    +# because we want earlier uses of filterwarnings to take precedence over this
    +# one.
    +warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
    +
    +
    +class PkgResourcesDeprecationWarning(Warning):
    +    """
    +    Base class for warning about deprecations in ``pkg_resources``
    +
    +    This class is not derived from ``DeprecationWarning``, and as such is
    +    visible by default.
    +    """
    +
    +
    +# Ported from ``setuptools`` to avoid introducing an import inter-dependency:
    +_LOCALE_ENCODING = "locale" if sys.version_info >= (3, 10) else None
    +
    +
    +def _read_utf8_with_fallback(file: str, fallback_encoding=_LOCALE_ENCODING) -> str:
    +    """See setuptools.unicode_utils._read_utf8_with_fallback"""
    +    try:
    +        with open(file, "r", encoding="utf-8") as f:
    +            return f.read()
    +    except UnicodeDecodeError:  # pragma: no cover
    +        msg = f"""\
    +        ********************************************************************************
    +        `encoding="utf-8"` fails with {file!r}, trying `encoding={fallback_encoding!r}`.
    +
    +        This fallback behaviour is considered **deprecated** and future versions of
    +        `setuptools/pkg_resources` may not implement it.
    +
    +        Please encode {file!r} with "utf-8" to ensure future builds will succeed.
    +
    +        If this file was produced by `setuptools` itself, cleaning up the cached files
    +        and re-building/re-installing the package with a newer version of `setuptools`
    +        (e.g. by updating `build-system.requires` in its `pyproject.toml`)
    +        might solve the problem.
    +        ********************************************************************************
    +        """
    +        # TODO: Add a deadline?
    +        #       See comment in setuptools.unicode_utils._Utf8EncodingNeeded
    +        warnings.warn(msg, PkgResourcesDeprecationWarning, stacklevel=2)
    +        with open(file, "r", encoding=fallback_encoding) as f:
    +            return f.read()
    +
    +
    +# from jaraco.functools 1.3
    +def _call_aside(f, *args, **kwargs):
    +    f(*args, **kwargs)
    +    return f
    +
    +
    +@_call_aside
    +def _initialize(g=globals()):
    +    "Set up global resource manager (deliberately not state-saved)"
    +    manager = ResourceManager()
    +    g['_manager'] = manager
    +    g.update(
    +        (name, getattr(manager, name))
    +        for name in dir(manager)
    +        if not name.startswith('_')
    +    )
    +
    +
    +@_call_aside
    +def _initialize_master_working_set():
    +    """
    +    Prepare the master working set and make the ``require()``
    +    API available.
    +
    +    This function has explicit effects on the global state
    +    of pkg_resources. It is intended to be invoked once at
    +    the initialization of this module.
    +
    +    Invocation by other packages is unsupported and done
    +    at their own risk.
    +    """
    +    working_set = _declare_state('object', 'working_set', WorkingSet._build_master())
    +
    +    require = working_set.require
    +    iter_entry_points = working_set.iter_entry_points
    +    add_activation_listener = working_set.subscribe
    +    run_script = working_set.run_script
    +    # backward compatibility
    +    run_main = run_script
    +    # Activate all distributions already on sys.path with replace=False and
    +    # ensure that all distributions added to the working set in the future
    +    # (e.g. by calling ``require()``) will get activated as well,
    +    # with higher priority (replace=True).
    +    tuple(dist.activate(replace=False) for dist in working_set)
    +    add_activation_listener(
    +        lambda dist: dist.activate(replace=True),
    +        existing=False,
    +    )
    +    working_set.entries = []
    +    # match order
    +    list(map(working_set.add_entry, sys.path))
    +    globals().update(locals())
    +
    +
    +if TYPE_CHECKING:
    +    # All of these are set by the @_call_aside methods above
    +    __resource_manager = ResourceManager()  # Won't exist at runtime
    +    resource_exists = __resource_manager.resource_exists
    +    resource_isdir = __resource_manager.resource_isdir
    +    resource_filename = __resource_manager.resource_filename
    +    resource_stream = __resource_manager.resource_stream
    +    resource_string = __resource_manager.resource_string
    +    resource_listdir = __resource_manager.resource_listdir
    +    set_extraction_path = __resource_manager.set_extraction_path
    +    cleanup_resources = __resource_manager.cleanup_resources
    +
    +    working_set = WorkingSet()
    +    require = working_set.require
    +    iter_entry_points = working_set.iter_entry_points
    +    add_activation_listener = working_set.subscribe
    +    run_script = working_set.run_script
    +    run_main = run_script
    diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc
    new file mode 100644
    index 0000000000000000000000000000000000000000..8f7f7c336bede5bef984a072a10bb51a9ad7b784
    GIT binary patch
    literal 161526
    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

    ' : '\U0001d4ab', + '\\' : '\U0001d4ac', + '\\' : '\U0000211b', + '\\' : '\U0001d4ae', + '\\' : '\U0001d4af', + '\\' : '\U0001d4b0', + '\\' : '\U0001d4b1', + '\\' : '\U0001d4b2', + '\\' : '\U0001d4b3', + '\\' : '\U0001d4b4', + '\\' : '\U0001d4b5', + '\\' : '\U0001d5ba', + '\\' : '\U0001d5bb', + '\\' : '\U0001d5bc', + '\\' : '\U0001d5bd', + '\\' : '\U0001d5be', + '\\' : '\U0001d5bf', + '\\' : '\U0001d5c0', + '\\' : '\U0001d5c1', + '\\' : '\U0001d5c2', + '\\' : '\U0001d5c3', + '\\' : '\U0001d5c4', + '\\' : '\U0001d5c5', + '\\' : '\U0001d5c6', + '\\' : '\U0001d5c7', + '\\' : '\U0001d5c8', + '\\

    ' : '\U0001d5c9', + '\\' : '\U0001d5ca', + '\\' : '\U0001d5cb', + '\\' : '\U0001d5cc', + '\\' : '\U0001d5cd', + '\\' : '\U0001d5ce', + '\\' : '\U0001d5cf', + '\\' : '\U0001d5d0', + '\\' : '\U0001d5d1', + '\\' : '\U0001d5d2', + '\\' : '\U0001d5d3', + '\\' : '\U0001d504', + '\\' : '\U0001d505', + '\\' : '\U0000212d', + '\\

    ' : '\U0001d507', + '\\' : '\U0001d508', + '\\' : '\U0001d509', + '\\' : '\U0001d50a', + '\\' : '\U0000210c', + '\\' : '\U00002111', + '\\' : '\U0001d50d', + '\\' : '\U0001d50e', + '\\' : '\U0001d50f', + '\\' : '\U0001d510', + '\\' : '\U0001d511', + '\\' : '\U0001d512', + '\\' : '\U0001d513', + '\\' : '\U0001d514', + '\\' : '\U0000211c', + '\\' : '\U0001d516', + '\\' : '\U0001d517', + '\\' : '\U0001d518', + '\\' : '\U0001d519', + '\\' : '\U0001d51a', + '\\' : '\U0001d51b', + '\\' : '\U0001d51c', + '\\' : '\U00002128', + '\\' : '\U0001d51e', + '\\' : '\U0001d51f', + '\\' : '\U0001d520', + '\\
    ' : '\U0001d521', + '\\' : '\U0001d522', + '\\' : '\U0001d523', + '\\' : '\U0001d524', + '\\' : '\U0001d525', + '\\' : '\U0001d526', + '\\' : '\U0001d527', + '\\' : '\U0001d528', + '\\' : '\U0001d529', + '\\' : '\U0001d52a', + '\\' : '\U0001d52b', + '\\' : '\U0001d52c', + '\\' : '\U0001d52d', + '\\' : '\U0001d52e', + '\\' : '\U0001d52f', + '\\' : '\U0001d530', + '\\' : '\U0001d531', + '\\' : '\U0001d532', + '\\' : '\U0001d533', + '\\' : '\U0001d534', + '\\' : '\U0001d535', + '\\' : '\U0001d536', + '\\' : '\U0001d537', + '\\' : '\U000003b1', + '\\' : '\U000003b2', + '\\' : '\U000003b3', + '\\' : '\U000003b4', + '\\' : '\U000003b5', + '\\' : '\U000003b6', + '\\' : '\U000003b7', + '\\' : '\U000003b8', + '\\' : '\U000003b9', + '\\' : '\U000003ba', + '\\' : '\U000003bb', + '\\' : '\U000003bc', + '\\' : '\U000003bd', + '\\' : '\U000003be', + '\\' : '\U000003c0', + '\\' : '\U000003c1', + '\\' : '\U000003c3', + '\\' : '\U000003c4', + '\\' : '\U000003c5', + '\\' : '\U000003c6', + '\\' : '\U000003c7', + '\\' : '\U000003c8', + '\\' : '\U000003c9', + '\\' : '\U00000393', + '\\' : '\U00000394', + '\\' : '\U00000398', + '\\' : '\U0000039b', + '\\' : '\U0000039e', + '\\' : '\U000003a0', + '\\' : '\U000003a3', + '\\' : '\U000003a5', + '\\' : '\U000003a6', + '\\' : '\U000003a8', + '\\' : '\U000003a9', + '\\' : '\U0001d539', + '\\' : '\U00002102', + '\\' : '\U00002115', + '\\' : '\U0000211a', + '\\' : '\U0000211d', + '\\' : '\U00002124', + '\\' : '\U00002190', + '\\' : '\U000027f5', + '\\' : '\U00002192', + '\\' : '\U000027f6', + '\\' : '\U000021d0', + '\\' : '\U000027f8', + '\\' : '\U000021d2', + '\\' : '\U000027f9', + '\\' : '\U00002194', + '\\' : '\U000027f7', + '\\' : '\U000021d4', + '\\' : '\U000027fa', + '\\' : '\U000021a6', + '\\' : '\U000027fc', + '\\' : '\U00002500', + '\\' : '\U00002550', + '\\' : '\U000021a9', + '\\' : '\U000021aa', + '\\' : '\U000021bd', + '\\' : '\U000021c1', + '\\' : '\U000021bc', + '\\' : '\U000021c0', + '\\' : '\U000021cc', + '\\' : '\U0000219d', + '\\' : '\U000021c3', + '\\' : '\U000021c2', + '\\' : '\U000021bf', + '\\' : '\U000021be', + '\\' : '\U000021be', + '\\' : '\U00002237', + '\\' : '\U00002191', + '\\' : '\U000021d1', + '\\' : '\U00002193', + '\\' : '\U000021d3', + '\\' : '\U00002195', + '\\' : '\U000021d5', + '\\' : '\U000027e8', + '\\' : '\U000027e9', + '\\' : '\U00002308', + '\\' : '\U00002309', + '\\' : '\U0000230a', + '\\' : '\U0000230b', + '\\' : '\U00002987', + '\\' : '\U00002988', + '\\' : '\U000027e6', + '\\' : '\U000027e7', + '\\' : '\U00002983', + '\\' : '\U00002984', + '\\' : '\U000000ab', + '\\' : '\U000000bb', + '\\' : '\U000022a5', + '\\' : '\U000022a4', + '\\' : '\U00002227', + '\\' : '\U000022c0', + '\\' : '\U00002228', + '\\' : '\U000022c1', + '\\' : '\U00002200', + '\\' : '\U00002203', + '\\' : '\U00002204', + '\\' : '\U000000ac', + '\\' : '\U000025a1', + '\\' : '\U000025c7', + '\\' : '\U000022a2', + '\\' : '\U000022a8', + '\\' : '\U000022a9', + '\\' : '\U000022ab', + '\\' : '\U000022a3', + '\\' : '\U0000221a', + '\\' : '\U00002264', + '\\' : '\U00002265', + '\\' : '\U0000226a', + '\\' : '\U0000226b', + '\\' : '\U00002272', + '\\' : '\U00002273', + '\\' : '\U00002a85', + '\\' : '\U00002a86', + '\\' : '\U00002208', + '\\' : '\U00002209', + '\\' : '\U00002282', + '\\' : '\U00002283', + '\\' : '\U00002286', + '\\' : '\U00002287', + '\\' : '\U0000228f', + '\\' : '\U00002290', + '\\' : '\U00002291', + '\\' : '\U00002292', + '\\' : '\U00002229', + '\\' : '\U000022c2', + '\\' : '\U0000222a', + '\\' : '\U000022c3', + '\\' : '\U00002294', + '\\' : '\U00002a06', + '\\' : '\U00002293', + '\\' : '\U00002a05', + '\\' : '\U00002216', + '\\' : '\U0000221d', + '\\' : '\U0000228e', + '\\' : '\U00002a04', + '\\' : '\U00002260', + '\\' : '\U0000223c', + '\\' : '\U00002250', + '\\' : '\U00002243', + '\\' : '\U00002248', + '\\' : '\U0000224d', + '\\' : '\U00002245', + '\\' : '\U00002323', + '\\' : '\U00002261', + '\\' : '\U00002322', + '\\' : '\U000022c8', + '\\' : '\U00002a1d', + '\\' : '\U0000227a', + '\\' : '\U0000227b', + '\\' : '\U0000227c', + '\\' : '\U0000227d', + '\\' : '\U00002225', + '\\' : '\U000000a6', + '\\' : '\U000000b1', + '\\' : '\U00002213', + '\\' : '\U000000d7', + '\\
    ' : '\U000000f7', + '\\' : '\U000022c5', + '\\' : '\U000022c6', + '\\' : '\U00002219', + '\\' : '\U00002218', + '\\' : '\U00002020', + '\\' : '\U00002021', + '\\' : '\U000022b2', + '\\' : '\U000022b3', + '\\' : '\U000022b4', + '\\' : '\U000022b5', + '\\' : '\U000025c3', + '\\' : '\U000025b9', + '\\' : '\U000025b3', + '\\' : '\U0000225c', + '\\' : '\U00002295', + '\\' : '\U00002a01', + '\\' : '\U00002297', + '\\' : '\U00002a02', + '\\' : '\U00002299', + '\\' : '\U00002a00', + '\\' : '\U00002296', + '\\' : '\U00002298', + '\\' : '\U00002026', + '\\' : '\U000022ef', + '\\' : '\U00002211', + '\\' : '\U0000220f', + '\\' : '\U00002210', + '\\' : '\U0000221e', + '\\' : '\U0000222b', + '\\' : '\U0000222e', + '\\' : '\U00002663', + '\\' : '\U00002662', + '\\' : '\U00002661', + '\\' : '\U00002660', + '\\' : '\U00002135', + '\\' : '\U00002205', + '\\' : '\U00002207', + '\\' : '\U00002202', + '\\' : '\U0000266d', + '\\' : '\U0000266e', + '\\' : '\U0000266f', + '\\' : '\U00002220', + '\\' : '\U000000a9', + '\\' : '\U000000ae', + '\\' : '\U000000ad', + '\\' : '\U000000af', + '\\' : '\U000000bc', + '\\' : '\U000000bd', + '\\' : '\U000000be', + '\\' : '\U000000aa', + '\\' : '\U000000ba', + '\\
    ' : '\U000000a7', + '\\' : '\U000000b6', + '\\' : '\U000000a1', + '\\' : '\U000000bf', + '\\' : '\U000020ac', + '\\' : '\U000000a3', + '\\' : '\U000000a5', + '\\' : '\U000000a2', + '\\' : '\U000000a4', + '\\' : '\U000000b0', + '\\' : '\U00002a3f', + '\\' : '\U00002127', + '\\' : '\U000025ca', + '\\' : '\U00002118', + '\\' : '\U00002240', + '\\' : '\U000022c4', + '\\' : '\U000000b4', + '\\' : '\U00000131', + '\\' : '\U000000a8', + '\\' : '\U000000b8', + '\\' : '\U000002dd', + '\\' : '\U000003f5', + '\\' : '\U000023ce', + '\\' : '\U00002039', + '\\' : '\U0000203a', + '\\' : '\U00002302', + '\\<^sub>' : '\U000021e9', + '\\<^sup>' : '\U000021e7', + '\\<^bold>' : '\U00002759', + '\\<^bsub>' : '\U000021d8', + '\\<^esub>' : '\U000021d9', + '\\<^bsup>' : '\U000021d7', + '\\<^esup>' : '\U000021d6', + } + + lang_map = {'isabelle' : isabelle_symbols, 'latex' : latex_symbols} + + def __init__(self, **options): + Filter.__init__(self, **options) + lang = get_choice_opt(options, 'lang', + ['isabelle', 'latex'], 'isabelle') + self.symbols = self.lang_map[lang] + + def filter(self, lexer, stream): + for ttype, value in stream: + if value in self.symbols: + yield ttype, self.symbols[value] + else: + yield ttype, value + + +class KeywordCaseFilter(Filter): + """Convert keywords to lowercase or uppercase or capitalize them, which + means first letter uppercase, rest lowercase. + + This can be useful e.g. if you highlight Pascal code and want to adapt the + code to your styleguide. + + Options accepted: + + `case` : string + The casing to convert keywords to. Must be one of ``'lower'``, + ``'upper'`` or ``'capitalize'``. The default is ``'lower'``. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + case = get_choice_opt(options, 'case', + ['lower', 'upper', 'capitalize'], 'lower') + self.convert = getattr(str, case) + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Keyword: + yield ttype, self.convert(value) + else: + yield ttype, value + + +class NameHighlightFilter(Filter): + """Highlight a normal Name (and Name.*) token with a different token type. + + Example:: + + filter = NameHighlightFilter( + names=['foo', 'bar', 'baz'], + tokentype=Name.Function, + ) + + This would highlight the names "foo", "bar" and "baz" + as functions. `Name.Function` is the default token type. + + Options accepted: + + `names` : list of strings + A list of names that should be given the different token type. + There is no default. + `tokentype` : TokenType or string + A token type or a string containing a token type name that is + used for highlighting the strings in `names`. The default is + `Name.Function`. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.names = set(get_list_opt(options, 'names', [])) + tokentype = options.get('tokentype') + if tokentype: + self.tokentype = string_to_tokentype(tokentype) + else: + self.tokentype = Name.Function + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Name and value in self.names: + yield self.tokentype, value + else: + yield ttype, value + + +class ErrorToken(Exception): + pass + + +class RaiseOnErrorTokenFilter(Filter): + """Raise an exception when the lexer generates an error token. + + Options accepted: + + `excclass` : Exception class + The exception class to raise. + The default is `pygments.filters.ErrorToken`. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.exception = options.get('excclass', ErrorToken) + try: + # issubclass() will raise TypeError if first argument is not a class + if not issubclass(self.exception, Exception): + raise TypeError + except TypeError: + raise OptionError('excclass option is not an exception class') + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype is Error: + raise self.exception(value) + yield ttype, value + + +class VisibleWhitespaceFilter(Filter): + """Convert tabs, newlines and/or spaces to visible characters. + + Options accepted: + + `spaces` : string or bool + If this is a one-character string, spaces will be replaces by this string. + If it is another true value, spaces will be replaced by ``·`` (unicode + MIDDLE DOT). If it is a false value, spaces will not be replaced. The + default is ``False``. + `tabs` : string or bool + The same as for `spaces`, but the default replacement character is ``»`` + (unicode RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK). The default value + is ``False``. Note: this will not work if the `tabsize` option for the + lexer is nonzero, as tabs will already have been expanded then. + `tabsize` : int + If tabs are to be replaced by this filter (see the `tabs` option), this + is the total number of characters that a tab should be expanded to. + The default is ``8``. + `newlines` : string or bool + The same as for `spaces`, but the default replacement character is ``¶`` + (unicode PILCROW SIGN). The default value is ``False``. + `wstokentype` : bool + If true, give whitespace the special `Whitespace` token type. This allows + styling the visible whitespace differently (e.g. greyed out), but it can + disrupt background colors. The default is ``True``. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + for name, default in [('spaces', '·'), + ('tabs', '»'), + ('newlines', '¶')]: + opt = options.get(name, False) + if isinstance(opt, str) and len(opt) == 1: + setattr(self, name, opt) + else: + setattr(self, name, (opt and default or '')) + tabsize = get_int_opt(options, 'tabsize', 8) + if self.tabs: + self.tabs += ' ' * (tabsize - 1) + if self.newlines: + self.newlines += '\n' + self.wstt = get_bool_opt(options, 'wstokentype', True) + + def filter(self, lexer, stream): + if self.wstt: + spaces = self.spaces or ' ' + tabs = self.tabs or '\t' + newlines = self.newlines or '\n' + regex = re.compile(r'\s') + + def replacefunc(wschar): + if wschar == ' ': + return spaces + elif wschar == '\t': + return tabs + elif wschar == '\n': + return newlines + return wschar + + for ttype, value in stream: + yield from _replace_special(ttype, value, regex, Whitespace, + replacefunc) + else: + spaces, tabs, newlines = self.spaces, self.tabs, self.newlines + # simpler processing + for ttype, value in stream: + if spaces: + value = value.replace(' ', spaces) + if tabs: + value = value.replace('\t', tabs) + if newlines: + value = value.replace('\n', newlines) + yield ttype, value + + +class GobbleFilter(Filter): + """Gobbles source code lines (eats initial characters). + + This filter drops the first ``n`` characters off every line of code. This + may be useful when the source code fed to the lexer is indented by a fixed + amount of space that isn't desired in the output. + + Options accepted: + + `n` : int + The number of characters to gobble. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + self.n = get_int_opt(options, 'n', 0) + + def gobble(self, value, left): + if left < len(value): + return value[left:], 0 + else: + return '', left - len(value) + + def filter(self, lexer, stream): + n = self.n + left = n # How many characters left to gobble. + for ttype, value in stream: + # Remove ``left`` tokens from first line, ``n`` from all others. + parts = value.split('\n') + (parts[0], left) = self.gobble(parts[0], left) + for i in range(1, len(parts)): + (parts[i], left) = self.gobble(parts[i], n) + value = '\n'.join(parts) + + if value != '': + yield ttype, value + + +class TokenMergeFilter(Filter): + """Merges consecutive tokens with the same token type in the output + stream of a lexer. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + current_type = None + current_value = None + for ttype, value in stream: + if ttype is current_type: + current_value += value + else: + if current_type is not None: + yield current_type, current_value + current_type = ttype + current_value = value + if current_type is not None: + yield current_type, current_value + + +FILTERS = { + 'codetagify': CodeTagFilter, + 'keywordcase': KeywordCaseFilter, + 'highlight': NameHighlightFilter, + 'raiseonerror': RaiseOnErrorTokenFilter, + 'whitespace': VisibleWhitespaceFilter, + 'gobble': GobbleFilter, + 'tokenmerge': TokenMergeFilter, + 'symbols': SymbolFilter, +} diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..efa4baa650e296e8c8bbc19cd7a9453c225ecc6b GIT binary patch literal 37993 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, + the `arg` is then given by the ``-a`` option. + """ + return '' + + def format(self, tokensource, outfile): + """ + This method must format the tokens from the `tokensource` iterable and + write the formatted version to the file object `outfile`. + + Formatter options can control how exactly the tokens are converted. + """ + if self.encoding: + # wrap the outfile in a StreamWriter + outfile = codecs.lookup(self.encoding)[3](outfile) + return self.format_unencoded(tokensource, outfile) + + # Allow writing Formatter[str] or Formatter[bytes]. That's equivalent to + # Formatter. This helps when using third-party type stubs from typeshed. + def __class_getitem__(cls, name): + return cls diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py new file mode 100644 index 0000000..014f2ee --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py @@ -0,0 +1,157 @@ +""" + pygments.formatters + ~~~~~~~~~~~~~~~~~~~ + + Pygments formatters. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +import sys +import types +import fnmatch +from os.path import basename + +from pip._vendor.pygments.formatters._mapping import FORMATTERS +from pip._vendor.pygments.plugin import find_plugin_formatters +from pip._vendor.pygments.util import ClassNotFound + +__all__ = ['get_formatter_by_name', 'get_formatter_for_filename', + 'get_all_formatters', 'load_formatter_from_file'] + list(FORMATTERS) + +_formatter_cache = {} # classes by name +_pattern_cache = {} + + +def _fn_matches(fn, glob): + """Return whether the supplied file name fn matches pattern filename.""" + if glob not in _pattern_cache: + pattern = _pattern_cache[glob] = re.compile(fnmatch.translate(glob)) + return pattern.match(fn) + return _pattern_cache[glob].match(fn) + + +def _load_formatters(module_name): + """Load a formatter (and all others in the module too).""" + mod = __import__(module_name, None, None, ['__all__']) + for formatter_name in mod.__all__: + cls = getattr(mod, formatter_name) + _formatter_cache[cls.name] = cls + + +def get_all_formatters(): + """Return a generator for all formatter classes.""" + # NB: this returns formatter classes, not info like get_all_lexers(). + for info in FORMATTERS.values(): + if info[1] not in _formatter_cache: + _load_formatters(info[0]) + yield _formatter_cache[info[1]] + for _, formatter in find_plugin_formatters(): + yield formatter + + +def find_formatter_class(alias): + """Lookup a formatter by alias. + + Returns None if not found. + """ + for module_name, name, aliases, _, _ in FORMATTERS.values(): + if alias in aliases: + if name not in _formatter_cache: + _load_formatters(module_name) + return _formatter_cache[name] + for _, cls in find_plugin_formatters(): + if alias in cls.aliases: + return cls + + +def get_formatter_by_name(_alias, **options): + """ + Return an instance of a :class:`.Formatter` subclass that has `alias` in its + aliases list. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter with that + alias is found. + """ + cls = find_formatter_class(_alias) + if cls is None: + raise ClassNotFound(f"no formatter found for name {_alias!r}") + return cls(**options) + + +def load_formatter_from_file(filename, formattername="CustomFormatter", **options): + """ + Return a `Formatter` subclass instance loaded from the provided file, relative + to the current directory. + + The file is expected to contain a Formatter class named ``formattername`` + (by default, CustomFormatter). Users should be very careful with the input, because + this method is equivalent to running ``eval()`` on the input file. The formatter is + given the `options` at its instantiation. + + :exc:`pygments.util.ClassNotFound` is raised if there are any errors loading + the formatter. + + .. versionadded:: 2.2 + """ + try: + # This empty dict will contain the namespace for the exec'd file + custom_namespace = {} + with open(filename, 'rb') as f: + exec(f.read(), custom_namespace) + # Retrieve the class `formattername` from that namespace + if formattername not in custom_namespace: + raise ClassNotFound(f'no valid {formattername} class found in {filename}') + formatter_class = custom_namespace[formattername] + # And finally instantiate it with the options + return formatter_class(**options) + except OSError as err: + raise ClassNotFound(f'cannot read {filename}: {err}') + except ClassNotFound: + raise + except Exception as err: + raise ClassNotFound(f'error when loading custom formatter: {err}') + + +def get_formatter_for_filename(fn, **options): + """ + Return a :class:`.Formatter` subclass instance that has a filename pattern + matching `fn`. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter for that filename + is found. + """ + fn = basename(fn) + for modname, name, _, filenames, _ in FORMATTERS.values(): + for filename in filenames: + if _fn_matches(fn, filename): + if name not in _formatter_cache: + _load_formatters(modname) + return _formatter_cache[name](**options) + for _name, cls in find_plugin_formatters(): + for filename in cls.filenames: + if _fn_matches(fn, filename): + return cls(**options) + raise ClassNotFound(f"no formatter found for file name {fn!r}") + + +class _automodule(types.ModuleType): + """Automatically import formatters.""" + + def __getattr__(self, name): + info = FORMATTERS.get(name) + if info: + _load_formatters(info[0]) + cls = _formatter_cache[info[1]] + setattr(self, name, cls) + return cls + raise AttributeError(name) + + +oldmod = sys.modules[__name__] +newmod = _automodule(__name__) +newmod.__dict__.update(oldmod.__dict__) +sys.modules[__name__] = newmod +del newmod.newmod, newmod.oldmod, newmod.sys, newmod.types diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f72146b4353a77a17ebdf454a9c2877d6be16008 GIT binary patch literal 6967 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 T%uAUIxnsHDR_voVLCGHhvn9x} literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72b1bac5c79def66c836ec5c4709480e3d0e29b0 GIT binary patch literal 4229 zcmd5<&2JmW6(_l*EbGfwEL*Z{$KyCo!@wfzH1R12YN?hiLsA5Z`9Ln_aCb;fwA|g! z3?-3=0Qnno=&3+2J@oJBF+KEH>?uJ0fh}^=rTx8`B|*hJ1*lO1oSirG-kbM+^FDTe zSX`Vd;CILSPxtV8q3{zCqo0>gem=$IPX$>B3PJJvVo(Y^jOCz$aVEHeaW=S$aW0t0 zxDYI2TnesXydErLd@HztaV5Bk@m8>kaV@xwaXq+$@osPr4x|lT2a{PD_@Wvch<;c))F{Juq4({)M3&v(-lh8(&f!wvfJaG zNmnmcM{<*{%3deEg5g!Gm%vdE4|pq0k0;gQu<}6-3&XQ5CAblcGq=Me>1J&e_j2Q` zm*l+E9jdesMl+&2VbDZULk&tuN=}VV)Wc!zXs9A)N zv$-SN)ne+|2ic0r(2Q-}+1-9)hA!=>xZQSf;R5USG_*U!l~(Md>M3MNA*~p@Sf)|U zU}d;HCBCc(6WZqqp&K*5%Ol(YAd?Dcg|T8h3J`daVcHBrM8V<<(+ekUTAOB57ffmS zMPq*tSeA*ZmWDGQ)M!Sa;yL{BvPE1o;%6VRX7dxB@aWTKlNsJY_-_taAlkein#VQ< zeAt8ZVu%Y7`C&{cfS~6jnJAG9K1S?n5w_Wx;z=^W63Ek>g}vYE!!u!BX3Z!j)+UP+ zBjc!Q^Nw^nf!}Dhb$rbHkZWx-s)fK3hLVqBtm$iQ_eS!ybYb^sYZ9vI$)fz!10yAh zRK8lpZMiFZ?=nEPB!Dr$7%l$ThxbCKOVgv-Lk1!q)+rvm-Tj@^OQMd;KTIZK`tV@q zjm7lx%cL{iTw5@{NjiiB9%=cTMC9gz9QMa4`10`io3nRm4;AHn@)D=!U`SkPWsf(+ zS8$->Xb+1Ha7>1uU%pPnyJerOa*+^$D|5{@kNm-@YBg;JHf=ICk%Y)cly;VI{{-by zBOwn^^d}6wm}+2*5LLsg4RLN*9EAfIS%y(2Ek_W~jXXEQC!h6Af}Eg;rhV3rTu}&Y zn~1SRji&AT8Y*xtT{%S2i1)cV=_eC*4DU}X49M$F+_SvH1uMv$B%x+E)Ay+_q?4m)}4rTA0)ES+(k z*g=DZ;qRSP&cfI_G1;i?vn%%yTZwH_$bPQ9bX zHZ>v4^Ycx6`1jY&2N(K2;ZCIr)evX9mk`GL1~41x^DrDRTpKPG`?zaHQbFwZ?Hh_~ z{;t%^$jOrzRQ7GmQ0IjhoandPHFhXeTlmI$xfLe^%Xr8&8o7)B^}h5~tmC$M|ES8o zj8#C-@o9kI__X8va2;(b1p2g-dblxy0CNWcCc~dzgTP%a>!5CTr4J7!niTsb8h{3G zGw@xUCqhZ`oQE~`ocmoC%1E%dZKH@fitQp4`qU#tD2Umi1mRHncp+*w&#^}kHJby> z{1}eP2sHqW0lkUKh;AR9!;BhPt|))8qwJCq+KLSNJRFA!8Z4q@r6E)g+QJV%emViw z#ngNPiX+~1enPP7rSp?}bFfRtp@7cR!{8F@hs$`{4)g5bco$w!?;p3A$M(Km6uC|d z6&sFebP9t&eh4mLPo9vAtU0o2> zELJB3w^E45aDeQ7?I^s8-&~7$aS+sHfEY$H0tPCZprY(_T7?4w`!yoag`e^`66)|HJUm#^-wS^Tif_iUPNT zdV?r%a|gk1FGD~zKS@-aD2ZgZNx>;t(JGx(?EpIFwm&=Cf7WO`KRUKre#RvfF3##U zV$ryTt{*?&*n775@y0PV4S!<`pJA__A>{{J>U!-|M5pyow(5!f*!f-U$%l0zC(*sQll)nC_N;qxbG4qPWVm5nY zsr0Y%&8$#Z8+w@s>c{dbsP(VCtO6>VDOA>oKJc>$$Qoylk21xAJ{c%5D(7k}EqdWjBewRjAy7@_Xl{ zY?bJ>T)tb%ZWFzZ!?1s|QO@oVeK)5~IlD*n+qwLUN_L-UmdpR4oIN1=okHaS`` tags. By default, the content is enclosed in a ``

    `` tag, itself wrapped in a ``
    `` tag (but see the `nowrap` option). The ``
    ``'s CSS class can be set by the `cssclass` option."), + 'IRCFormatter': ('pygments.formatters.irc', 'IRC', ('irc', 'IRC'), (), 'Format tokens with IRC color sequences'), + 'ImageFormatter': ('pygments.formatters.img', 'img', ('img', 'IMG', 'png'), ('*.png',), 'Create a PNG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'JpgImageFormatter': ('pygments.formatters.img', 'img_jpg', ('jpg', 'jpeg'), ('*.jpg',), 'Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'LatexFormatter': ('pygments.formatters.latex', 'LaTeX', ('latex', 'tex'), ('*.tex',), 'Format tokens as LaTeX code. This needs the `fancyvrb` and `color` standard packages.'), + 'NullFormatter': ('pygments.formatters.other', 'Text only', ('text', 'null'), ('*.txt',), 'Output the text unchanged without any formatting.'), + 'PangoMarkupFormatter': ('pygments.formatters.pangomarkup', 'Pango Markup', ('pango', 'pangomarkup'), (), 'Format tokens as Pango Markup code. It can then be rendered to an SVG.'), + 'RawTokenFormatter': ('pygments.formatters.other', 'Raw tokens', ('raw', 'tokens'), ('*.raw',), 'Format tokens as a raw representation for storing token streams.'), + 'RtfFormatter': ('pygments.formatters.rtf', 'RTF', ('rtf',), ('*.rtf',), 'Format tokens as RTF markup. This formatter automatically outputs full RTF documents with color information and other useful stuff. Perfect for Copy and Paste into Microsoft(R) Word(R) documents.'), + 'SvgFormatter': ('pygments.formatters.svg', 'SVG', ('svg',), ('*.svg',), 'Format tokens as an SVG graphics file. This formatter is still experimental. Each line of code is a ```` element with explicit ``x`` and ``y`` coordinates containing ```` elements with the individual token styles.'), + 'Terminal256Formatter': ('pygments.formatters.terminal256', 'Terminal256', ('terminal256', 'console256', '256'), (), 'Format tokens with ANSI color sequences, for output in a 256-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalFormatter': ('pygments.formatters.terminal', 'Terminal', ('terminal', 'console'), (), 'Format tokens with ANSI color sequences, for output in a text console. Color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalTrueColorFormatter': ('pygments.formatters.terminal256', 'TerminalTrueColor', ('terminal16m', 'console16m', '16m'), (), 'Format tokens with ANSI color sequences, for output in a true-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TestcaseFormatter': ('pygments.formatters.other', 'Testcase', ('testcase',), (), 'Format tokens as appropriate for a new testcase.'), +} diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py new file mode 100644 index 0000000..c05aa81 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py @@ -0,0 +1,963 @@ +""" + pygments.lexer + ~~~~~~~~~~~~~~ + + Base lexer classes. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +import sys +import time + +from pip._vendor.pygments.filter import apply_filters, Filter +from pip._vendor.pygments.filters import get_filter_by_name +from pip._vendor.pygments.token import Error, Text, Other, Whitespace, _TokenType +from pip._vendor.pygments.util import get_bool_opt, get_int_opt, get_list_opt, \ + make_analysator, Future, guess_decode +from pip._vendor.pygments.regexopt import regex_opt + +__all__ = ['Lexer', 'RegexLexer', 'ExtendedRegexLexer', 'DelegatingLexer', + 'LexerContext', 'include', 'inherit', 'bygroups', 'using', 'this', + 'default', 'words', 'line_re'] + +line_re = re.compile('.*?\n') + +_encoding_map = [(b'\xef\xbb\xbf', 'utf-8'), + (b'\xff\xfe\0\0', 'utf-32'), + (b'\0\0\xfe\xff', 'utf-32be'), + (b'\xff\xfe', 'utf-16'), + (b'\xfe\xff', 'utf-16be')] + +_default_analyse = staticmethod(lambda x: 0.0) + + +class LexerMeta(type): + """ + This metaclass automagically converts ``analyse_text`` methods into + static methods which always return float values. + """ + + def __new__(mcs, name, bases, d): + if 'analyse_text' in d: + d['analyse_text'] = make_analysator(d['analyse_text']) + return type.__new__(mcs, name, bases, d) + + +class Lexer(metaclass=LexerMeta): + """ + Lexer for a specific language. + + See also :doc:`lexerdevelopment`, a high-level guide to writing + lexers. + + Lexer classes have attributes used for choosing the most appropriate + lexer based on various criteria. + + .. autoattribute:: name + :no-value: + .. autoattribute:: aliases + :no-value: + .. autoattribute:: filenames + :no-value: + .. autoattribute:: alias_filenames + .. autoattribute:: mimetypes + :no-value: + .. autoattribute:: priority + + Lexers included in Pygments should have two additional attributes: + + .. autoattribute:: url + :no-value: + .. autoattribute:: version_added + :no-value: + + Lexers included in Pygments may have additional attributes: + + .. autoattribute:: _example + :no-value: + + You can pass options to the constructor. The basic options recognized + by all lexers and processed by the base `Lexer` class are: + + ``stripnl`` + Strip leading and trailing newlines from the input (default: True). + ``stripall`` + Strip all leading and trailing whitespace from the input + (default: False). + ``ensurenl`` + Make sure that the input ends with a newline (default: True). This + is required for some lexers that consume input linewise. + + .. versionadded:: 1.3 + + ``tabsize`` + If given and greater than 0, expand tabs in the input (default: 0). + ``encoding`` + If given, must be an encoding name. This encoding will be used to + convert the input string to Unicode, if it is not already a Unicode + string (default: ``'guess'``, which uses a simple UTF-8 / Locale / + Latin1 detection. Can also be ``'chardet'`` to use the chardet + library, if it is installed. + ``inencoding`` + Overrides the ``encoding`` if given. + """ + + #: Full name of the lexer, in human-readable form + name = None + + #: A list of short, unique identifiers that can be used to look + #: up the lexer from a list, e.g., using `get_lexer_by_name()`. + aliases = [] + + #: A list of `fnmatch` patterns that match filenames which contain + #: content for this lexer. The patterns in this list should be unique among + #: all lexers. + filenames = [] + + #: A list of `fnmatch` patterns that match filenames which may or may not + #: contain content for this lexer. This list is used by the + #: :func:`.guess_lexer_for_filename()` function, to determine which lexers + #: are then included in guessing the correct one. That means that + #: e.g. every lexer for HTML and a template language should include + #: ``\*.html`` in this list. + alias_filenames = [] + + #: A list of MIME types for content that can be lexed with this lexer. + mimetypes = [] + + #: Priority, should multiple lexers match and no content is provided + priority = 0 + + #: URL of the language specification/definition. Used in the Pygments + #: documentation. Set to an empty string to disable. + url = None + + #: Version of Pygments in which the lexer was added. + version_added = None + + #: Example file name. Relative to the ``tests/examplefiles`` directory. + #: This is used by the documentation generator to show an example. + _example = None + + def __init__(self, **options): + """ + This constructor takes arbitrary options as keyword arguments. + Every subclass must first process its own options and then call + the `Lexer` constructor, since it processes the basic + options like `stripnl`. + + An example looks like this: + + .. sourcecode:: python + + def __init__(self, **options): + self.compress = options.get('compress', '') + Lexer.__init__(self, **options) + + As these options must all be specifiable as strings (due to the + command line usage), there are various utility functions + available to help with that, see `Utilities`_. + """ + self.options = options + self.stripnl = get_bool_opt(options, 'stripnl', True) + self.stripall = get_bool_opt(options, 'stripall', False) + self.ensurenl = get_bool_opt(options, 'ensurenl', True) + self.tabsize = get_int_opt(options, 'tabsize', 0) + self.encoding = options.get('encoding', 'guess') + self.encoding = options.get('inencoding') or self.encoding + self.filters = [] + for filter_ in get_list_opt(options, 'filters', ()): + self.add_filter(filter_) + + def __repr__(self): + if self.options: + return f'' + else: + return f'' + + def add_filter(self, filter_, **options): + """ + Add a new stream filter to this lexer. + """ + if not isinstance(filter_, Filter): + filter_ = get_filter_by_name(filter_, **options) + self.filters.append(filter_) + + def analyse_text(text): + """ + A static method which is called for lexer guessing. + + It should analyse the text and return a float in the range + from ``0.0`` to ``1.0``. If it returns ``0.0``, the lexer + will not be selected as the most probable one, if it returns + ``1.0``, it will be selected immediately. This is used by + `guess_lexer`. + + The `LexerMeta` metaclass automatically wraps this function so + that it works like a static method (no ``self`` or ``cls`` + parameter) and the return value is automatically converted to + `float`. If the return value is an object that is boolean `False` + it's the same as if the return values was ``0.0``. + """ + + def _preprocess_lexer_input(self, text): + """Apply preprocessing such as decoding the input, removing BOM and normalizing newlines.""" + + if not isinstance(text, str): + if self.encoding == 'guess': + text, _ = guess_decode(text) + elif self.encoding == 'chardet': + try: + # pip vendoring note: this code is not reachable by pip, + # removed import of chardet to make it clear. + raise ImportError('chardet is not vendored by pip') + except ImportError as e: + raise ImportError('To enable chardet encoding guessing, ' + 'please install the chardet library ' + 'from http://chardet.feedparser.org/') from e + # check for BOM first + decoded = None + for bom, encoding in _encoding_map: + if text.startswith(bom): + decoded = text[len(bom):].decode(encoding, 'replace') + break + # no BOM found, so use chardet + if decoded is None: + enc = chardet.detect(text[:1024]) # Guess using first 1KB + decoded = text.decode(enc.get('encoding') or 'utf-8', + 'replace') + text = decoded + else: + text = text.decode(self.encoding) + if text.startswith('\ufeff'): + text = text[len('\ufeff'):] + else: + if text.startswith('\ufeff'): + text = text[len('\ufeff'):] + + # text now *is* a unicode string + text = text.replace('\r\n', '\n') + text = text.replace('\r', '\n') + if self.stripall: + text = text.strip() + elif self.stripnl: + text = text.strip('\n') + if self.tabsize > 0: + text = text.expandtabs(self.tabsize) + if self.ensurenl and not text.endswith('\n'): + text += '\n' + + return text + + def get_tokens(self, text, unfiltered=False): + """ + This method is the basic interface of a lexer. It is called by + the `highlight()` function. It must process the text and return an + iterable of ``(tokentype, value)`` pairs from `text`. + + Normally, you don't need to override this method. The default + implementation processes the options recognized by all lexers + (`stripnl`, `stripall` and so on), and then yields all tokens + from `get_tokens_unprocessed()`, with the ``index`` dropped. + + If `unfiltered` is set to `True`, the filtering mechanism is + bypassed even if filters are defined. + """ + text = self._preprocess_lexer_input(text) + + def streamer(): + for _, t, v in self.get_tokens_unprocessed(text): + yield t, v + stream = streamer() + if not unfiltered: + stream = apply_filters(stream, self.filters, self) + return stream + + def get_tokens_unprocessed(self, text): + """ + This method should process the text and return an iterable of + ``(index, tokentype, value)`` tuples where ``index`` is the starting + position of the token within the input text. + + It must be overridden by subclasses. It is recommended to + implement it as a generator to maximize effectiveness. + """ + raise NotImplementedError + + +class DelegatingLexer(Lexer): + """ + This lexer takes two lexer as arguments. A root lexer and + a language lexer. First everything is scanned using the language + lexer, afterwards all ``Other`` tokens are lexed using the root + lexer. + + The lexers from the ``template`` lexer package use this base lexer. + """ + + def __init__(self, _root_lexer, _language_lexer, _needle=Other, **options): + self.root_lexer = _root_lexer(**options) + self.language_lexer = _language_lexer(**options) + self.needle = _needle + Lexer.__init__(self, **options) + + def get_tokens_unprocessed(self, text): + buffered = '' + insertions = [] + lng_buffer = [] + for i, t, v in self.language_lexer.get_tokens_unprocessed(text): + if t is self.needle: + if lng_buffer: + insertions.append((len(buffered), lng_buffer)) + lng_buffer = [] + buffered += v + else: + lng_buffer.append((i, t, v)) + if lng_buffer: + insertions.append((len(buffered), lng_buffer)) + return do_insertions(insertions, + self.root_lexer.get_tokens_unprocessed(buffered)) + + +# ------------------------------------------------------------------------------ +# RegexLexer and ExtendedRegexLexer +# + + +class include(str): # pylint: disable=invalid-name + """ + Indicates that a state should include rules from another state. + """ + pass + + +class _inherit: + """ + Indicates the a state should inherit from its superclass. + """ + def __repr__(self): + return 'inherit' + +inherit = _inherit() # pylint: disable=invalid-name + + +class combined(tuple): # pylint: disable=invalid-name + """ + Indicates a state combined from multiple states. + """ + + def __new__(cls, *args): + return tuple.__new__(cls, args) + + def __init__(self, *args): + # tuple.__init__ doesn't do anything + pass + + +class _PseudoMatch: + """ + A pseudo match object constructed from a string. + """ + + def __init__(self, start, text): + self._text = text + self._start = start + + def start(self, arg=None): + return self._start + + def end(self, arg=None): + return self._start + len(self._text) + + def group(self, arg=None): + if arg: + raise IndexError('No such group') + return self._text + + def groups(self): + return (self._text,) + + def groupdict(self): + return {} + + +def bygroups(*args): + """ + Callback that yields multiple actions for each group in the match. + """ + def callback(lexer, match, ctx=None): + for i, action in enumerate(args): + if action is None: + continue + elif type(action) is _TokenType: + data = match.group(i + 1) + if data: + yield match.start(i + 1), action, data + else: + data = match.group(i + 1) + if data is not None: + if ctx: + ctx.pos = match.start(i + 1) + for item in action(lexer, + _PseudoMatch(match.start(i + 1), data), ctx): + if item: + yield item + if ctx: + ctx.pos = match.end() + return callback + + +class _This: + """ + Special singleton used for indicating the caller class. + Used by ``using``. + """ + +this = _This() + + +def using(_other, **kwargs): + """ + Callback that processes the match with a different lexer. + + The keyword arguments are forwarded to the lexer, except `state` which + is handled separately. + + `state` specifies the state that the new lexer will start in, and can + be an enumerable such as ('root', 'inline', 'string') or a simple + string which is assumed to be on top of the root state. + + Note: For that to work, `_other` must not be an `ExtendedRegexLexer`. + """ + gt_kwargs = {} + if 'state' in kwargs: + s = kwargs.pop('state') + if isinstance(s, (list, tuple)): + gt_kwargs['stack'] = s + else: + gt_kwargs['stack'] = ('root', s) + + if _other is this: + def callback(lexer, match, ctx=None): + # if keyword arguments are given the callback + # function has to create a new lexer instance + if kwargs: + # XXX: cache that somehow + kwargs.update(lexer.options) + lx = lexer.__class__(**kwargs) + else: + lx = lexer + s = match.start() + for i, t, v in lx.get_tokens_unprocessed(match.group(), **gt_kwargs): + yield i + s, t, v + if ctx: + ctx.pos = match.end() + else: + def callback(lexer, match, ctx=None): + # XXX: cache that somehow + kwargs.update(lexer.options) + lx = _other(**kwargs) + + s = match.start() + for i, t, v in lx.get_tokens_unprocessed(match.group(), **gt_kwargs): + yield i + s, t, v + if ctx: + ctx.pos = match.end() + return callback + + +class default: + """ + Indicates a state or state action (e.g. #pop) to apply. + For example default('#pop') is equivalent to ('', Token, '#pop') + Note that state tuples may be used as well. + + .. versionadded:: 2.0 + """ + def __init__(self, state): + self.state = state + + +class words(Future): + """ + Indicates a list of literal words that is transformed into an optimized + regex that matches any of the words. + + .. versionadded:: 2.0 + """ + def __init__(self, words, prefix='', suffix=''): + self.words = words + self.prefix = prefix + self.suffix = suffix + + def get(self): + return regex_opt(self.words, prefix=self.prefix, suffix=self.suffix) + + +class RegexLexerMeta(LexerMeta): + """ + Metaclass for RegexLexer, creates the self._tokens attribute from + self.tokens on the first instantiation. + """ + + def _process_regex(cls, regex, rflags, state): + """Preprocess the regular expression component of a token definition.""" + if isinstance(regex, Future): + regex = regex.get() + return re.compile(regex, rflags).match + + def _process_token(cls, token): + """Preprocess the token component of a token definition.""" + assert type(token) is _TokenType or callable(token), \ + f'token type must be simple type or callable, not {token!r}' + return token + + def _process_new_state(cls, new_state, unprocessed, processed): + """Preprocess the state transition action of a token definition.""" + if isinstance(new_state, str): + # an existing state + if new_state == '#pop': + return -1 + elif new_state in unprocessed: + return (new_state,) + elif new_state == '#push': + return new_state + elif new_state[:5] == '#pop:': + return -int(new_state[5:]) + else: + assert False, f'unknown new state {new_state!r}' + elif isinstance(new_state, combined): + # combine a new state from existing ones + tmp_state = '_tmp_%d' % cls._tmpname + cls._tmpname += 1 + itokens = [] + for istate in new_state: + assert istate != new_state, f'circular state ref {istate!r}' + itokens.extend(cls._process_state(unprocessed, + processed, istate)) + processed[tmp_state] = itokens + return (tmp_state,) + elif isinstance(new_state, tuple): + # push more than one state + for istate in new_state: + assert (istate in unprocessed or + istate in ('#pop', '#push')), \ + 'unknown new state ' + istate + return new_state + else: + assert False, f'unknown new state def {new_state!r}' + + def _process_state(cls, unprocessed, processed, state): + """Preprocess a single state definition.""" + assert isinstance(state, str), f"wrong state name {state!r}" + assert state[0] != '#', f"invalid state name {state!r}" + if state in processed: + return processed[state] + tokens = processed[state] = [] + rflags = cls.flags + for tdef in unprocessed[state]: + if isinstance(tdef, include): + # it's a state reference + assert tdef != state, f"circular state reference {state!r}" + tokens.extend(cls._process_state(unprocessed, processed, + str(tdef))) + continue + if isinstance(tdef, _inherit): + # should be processed already, but may not in the case of: + # 1. the state has no counterpart in any parent + # 2. the state includes more than one 'inherit' + continue + if isinstance(tdef, default): + new_state = cls._process_new_state(tdef.state, unprocessed, processed) + tokens.append((re.compile('').match, None, new_state)) + continue + + assert type(tdef) is tuple, f"wrong rule def {tdef!r}" + + try: + rex = cls._process_regex(tdef[0], rflags, state) + except Exception as err: + raise ValueError(f"uncompilable regex {tdef[0]!r} in state {state!r} of {cls!r}: {err}") from err + + token = cls._process_token(tdef[1]) + + if len(tdef) == 2: + new_state = None + else: + new_state = cls._process_new_state(tdef[2], + unprocessed, processed) + + tokens.append((rex, token, new_state)) + return tokens + + def process_tokendef(cls, name, tokendefs=None): + """Preprocess a dictionary of token definitions.""" + processed = cls._all_tokens[name] = {} + tokendefs = tokendefs or cls.tokens[name] + for state in list(tokendefs): + cls._process_state(tokendefs, processed, state) + return processed + + def get_tokendefs(cls): + """ + Merge tokens from superclasses in MRO order, returning a single tokendef + dictionary. + + Any state that is not defined by a subclass will be inherited + automatically. States that *are* defined by subclasses will, by + default, override that state in the superclass. If a subclass wishes to + inherit definitions from a superclass, it can use the special value + "inherit", which will cause the superclass' state definition to be + included at that point in the state. + """ + tokens = {} + inheritable = {} + for c in cls.__mro__: + toks = c.__dict__.get('tokens', {}) + + for state, items in toks.items(): + curitems = tokens.get(state) + if curitems is None: + # N.b. because this is assigned by reference, sufficiently + # deep hierarchies are processed incrementally (e.g. for + # A(B), B(C), C(RegexLexer), B will be premodified so X(B) + # will not see any inherits in B). + tokens[state] = items + try: + inherit_ndx = items.index(inherit) + except ValueError: + continue + inheritable[state] = inherit_ndx + continue + + inherit_ndx = inheritable.pop(state, None) + if inherit_ndx is None: + continue + + # Replace the "inherit" value with the items + curitems[inherit_ndx:inherit_ndx+1] = items + try: + # N.b. this is the index in items (that is, the superclass + # copy), so offset required when storing below. + new_inh_ndx = items.index(inherit) + except ValueError: + pass + else: + inheritable[state] = inherit_ndx + new_inh_ndx + + return tokens + + def __call__(cls, *args, **kwds): + """Instantiate cls after preprocessing its token definitions.""" + if '_tokens' not in cls.__dict__: + cls._all_tokens = {} + cls._tmpname = 0 + if hasattr(cls, 'token_variants') and cls.token_variants: + # don't process yet + pass + else: + cls._tokens = cls.process_tokendef('', cls.get_tokendefs()) + + return type.__call__(cls, *args, **kwds) + + +class RegexLexer(Lexer, metaclass=RegexLexerMeta): + """ + Base for simple stateful regular expression-based lexers. + Simplifies the lexing process so that you need only + provide a list of states and regular expressions. + """ + + #: Flags for compiling the regular expressions. + #: Defaults to MULTILINE. + flags = re.MULTILINE + + #: At all time there is a stack of states. Initially, the stack contains + #: a single state 'root'. The top of the stack is called "the current state". + #: + #: Dict of ``{'state': [(regex, tokentype, new_state), ...], ...}`` + #: + #: ``new_state`` can be omitted to signify no state transition. + #: If ``new_state`` is a string, it is pushed on the stack. This ensure + #: the new current state is ``new_state``. + #: If ``new_state`` is a tuple of strings, all of those strings are pushed + #: on the stack and the current state will be the last element of the list. + #: ``new_state`` can also be ``combined('state1', 'state2', ...)`` + #: to signify a new, anonymous state combined from the rules of two + #: or more existing ones. + #: Furthermore, it can be '#pop' to signify going back one step in + #: the state stack, or '#push' to push the current state on the stack + #: again. Note that if you push while in a combined state, the combined + #: state itself is pushed, and not only the state in which the rule is + #: defined. + #: + #: The tuple can also be replaced with ``include('state')``, in which + #: case the rules from the state named by the string are included in the + #: current one. + tokens = {} + + def get_tokens_unprocessed(self, text, stack=('root',)): + """ + Split ``text`` into (tokentype, text) pairs. + + ``stack`` is the initial stack (default: ``['root']``) + """ + pos = 0 + tokendefs = self._tokens + statestack = list(stack) + statetokens = tokendefs[statestack[-1]] + while 1: + for rexmatch, action, new_state in statetokens: + m = rexmatch(text, pos) + if m: + if action is not None: + if type(action) is _TokenType: + yield pos, action, m.group() + else: + yield from action(self, m) + pos = m.end() + if new_state is not None: + # state transition + if isinstance(new_state, tuple): + for state in new_state: + if state == '#pop': + if len(statestack) > 1: + statestack.pop() + elif state == '#push': + statestack.append(statestack[-1]) + else: + statestack.append(state) + elif isinstance(new_state, int): + # pop, but keep at least one state on the stack + # (random code leading to unexpected pops should + # not allow exceptions) + if abs(new_state) >= len(statestack): + del statestack[1:] + else: + del statestack[new_state:] + elif new_state == '#push': + statestack.append(statestack[-1]) + else: + assert False, f"wrong state def: {new_state!r}" + statetokens = tokendefs[statestack[-1]] + break + else: + # We are here only if all state tokens have been considered + # and there was not a match on any of them. + try: + if text[pos] == '\n': + # at EOL, reset state to "root" + statestack = ['root'] + statetokens = tokendefs['root'] + yield pos, Whitespace, '\n' + pos += 1 + continue + yield pos, Error, text[pos] + pos += 1 + except IndexError: + break + + +class LexerContext: + """ + A helper object that holds lexer position data. + """ + + def __init__(self, text, pos, stack=None, end=None): + self.text = text + self.pos = pos + self.end = end or len(text) # end=0 not supported ;-) + self.stack = stack or ['root'] + + def __repr__(self): + return f'LexerContext({self.text!r}, {self.pos!r}, {self.stack!r})' + + +class ExtendedRegexLexer(RegexLexer): + """ + A RegexLexer that uses a context object to store its state. + """ + + def get_tokens_unprocessed(self, text=None, context=None): + """ + Split ``text`` into (tokentype, text) pairs. + If ``context`` is given, use this lexer context instead. + """ + tokendefs = self._tokens + if not context: + ctx = LexerContext(text, 0) + statetokens = tokendefs['root'] + else: + ctx = context + statetokens = tokendefs[ctx.stack[-1]] + text = ctx.text + while 1: + for rexmatch, action, new_state in statetokens: + m = rexmatch(text, ctx.pos, ctx.end) + if m: + if action is not None: + if type(action) is _TokenType: + yield ctx.pos, action, m.group() + ctx.pos = m.end() + else: + yield from action(self, m, ctx) + if not new_state: + # altered the state stack? + statetokens = tokendefs[ctx.stack[-1]] + # CAUTION: callback must set ctx.pos! + if new_state is not None: + # state transition + if isinstance(new_state, tuple): + for state in new_state: + if state == '#pop': + if len(ctx.stack) > 1: + ctx.stack.pop() + elif state == '#push': + ctx.stack.append(ctx.stack[-1]) + else: + ctx.stack.append(state) + elif isinstance(new_state, int): + # see RegexLexer for why this check is made + if abs(new_state) >= len(ctx.stack): + del ctx.stack[1:] + else: + del ctx.stack[new_state:] + elif new_state == '#push': + ctx.stack.append(ctx.stack[-1]) + else: + assert False, f"wrong state def: {new_state!r}" + statetokens = tokendefs[ctx.stack[-1]] + break + else: + try: + if ctx.pos >= ctx.end: + break + if text[ctx.pos] == '\n': + # at EOL, reset state to "root" + ctx.stack = ['root'] + statetokens = tokendefs['root'] + yield ctx.pos, Text, '\n' + ctx.pos += 1 + continue + yield ctx.pos, Error, text[ctx.pos] + ctx.pos += 1 + except IndexError: + break + + +def do_insertions(insertions, tokens): + """ + Helper for lexers which must combine the results of several + sublexers. + + ``insertions`` is a list of ``(index, itokens)`` pairs. + Each ``itokens`` iterable should be inserted at position + ``index`` into the token stream given by the ``tokens`` + argument. + + The result is a combined token stream. + + TODO: clean up the code here. + """ + insertions = iter(insertions) + try: + index, itokens = next(insertions) + except StopIteration: + # no insertions + yield from tokens + return + + realpos = None + insleft = True + + # iterate over the token stream where we want to insert + # the tokens from the insertion list. + for i, t, v in tokens: + # first iteration. store the position of first item + if realpos is None: + realpos = i + oldi = 0 + while insleft and i + len(v) >= index: + tmpval = v[oldi:index - i] + if tmpval: + yield realpos, t, tmpval + realpos += len(tmpval) + for it_index, it_token, it_value in itokens: + yield realpos, it_token, it_value + realpos += len(it_value) + oldi = index - i + try: + index, itokens = next(insertions) + except StopIteration: + insleft = False + break # not strictly necessary + if oldi < len(v): + yield realpos, t, v[oldi:] + realpos += len(v) - oldi + + # leftover tokens + while insleft: + # no normal tokens, set realpos to zero + realpos = realpos or 0 + for p, t, v in itokens: + yield realpos, t, v + realpos += len(v) + try: + index, itokens = next(insertions) + except StopIteration: + insleft = False + break # not strictly necessary + + +class ProfilingRegexLexerMeta(RegexLexerMeta): + """Metaclass for ProfilingRegexLexer, collects regex timing info.""" + + def _process_regex(cls, regex, rflags, state): + if isinstance(regex, words): + rex = regex_opt(regex.words, prefix=regex.prefix, + suffix=regex.suffix) + else: + rex = regex + compiled = re.compile(rex, rflags) + + def match_func(text, pos, endpos=sys.maxsize): + info = cls._prof_data[-1].setdefault((state, rex), [0, 0.0]) + t0 = time.time() + res = compiled.match(text, pos, endpos) + t1 = time.time() + info[0] += 1 + info[1] += t1 - t0 + return res + return match_func + + +class ProfilingRegexLexer(RegexLexer, metaclass=ProfilingRegexLexerMeta): + """Drop-in replacement for RegexLexer that does profiling of its regexes.""" + + _prof_data = [] + _prof_sort_index = 4 # defaults to time per call + + def get_tokens_unprocessed(self, text, stack=('root',)): + # this needs to be a stack, since using(this) will produce nested calls + self.__class__._prof_data.append({}) + yield from RegexLexer.get_tokens_unprocessed(self, text, stack) + rawdata = self.__class__._prof_data.pop() + data = sorted(((s, repr(r).strip('u\'').replace('\\\\', '\\')[:65], + n, 1000 * t, 1000 * t / n) + for ((s, r), (n, t)) in rawdata.items()), + key=lambda x: x[self._prof_sort_index], + reverse=True) + sum_total = sum(x[3] for x in data) + + print() + print('Profiling result for %s lexing %d chars in %.3f ms' % + (self.__class__.__name__, len(text), sum_total)) + print('=' * 110) + print('%-20s %-64s ncalls tottime percall' % ('state', 'regex')) + print('-' * 110) + for d in data: + print('%-20s %-65s %5d %8.4f %8.4f' % d) + print('=' * 110) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py new file mode 100644 index 0000000..49184ec --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py @@ -0,0 +1,362 @@ +""" + pygments.lexers + ~~~~~~~~~~~~~~~ + + Pygments lexers. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +import sys +import types +import fnmatch +from os.path import basename + +from pip._vendor.pygments.lexers._mapping import LEXERS +from pip._vendor.pygments.modeline import get_filetype_from_buffer +from pip._vendor.pygments.plugin import find_plugin_lexers +from pip._vendor.pygments.util import ClassNotFound, guess_decode + +COMPAT = { + 'Python3Lexer': 'PythonLexer', + 'Python3TracebackLexer': 'PythonTracebackLexer', + 'LeanLexer': 'Lean3Lexer', +} + +__all__ = ['get_lexer_by_name', 'get_lexer_for_filename', 'find_lexer_class', + 'guess_lexer', 'load_lexer_from_file'] + list(LEXERS) + list(COMPAT) + +_lexer_cache = {} +_pattern_cache = {} + + +def _fn_matches(fn, glob): + """Return whether the supplied file name fn matches pattern filename.""" + if glob not in _pattern_cache: + pattern = _pattern_cache[glob] = re.compile(fnmatch.translate(glob)) + return pattern.match(fn) + return _pattern_cache[glob].match(fn) + + +def _load_lexers(module_name): + """Load a lexer (and all others in the module too).""" + mod = __import__(module_name, None, None, ['__all__']) + for lexer_name in mod.__all__: + cls = getattr(mod, lexer_name) + _lexer_cache[cls.name] = cls + + +def get_all_lexers(plugins=True): + """Return a generator of tuples in the form ``(name, aliases, + filenames, mimetypes)`` of all know lexers. + + If *plugins* is true (the default), plugin lexers supplied by entrypoints + are also returned. Otherwise, only builtin ones are considered. + """ + for item in LEXERS.values(): + yield item[1:] + if plugins: + for lexer in find_plugin_lexers(): + yield lexer.name, lexer.aliases, lexer.filenames, lexer.mimetypes + + +def find_lexer_class(name): + """ + Return the `Lexer` subclass that with the *name* attribute as given by + the *name* argument. + """ + if name in _lexer_cache: + return _lexer_cache[name] + # lookup builtin lexers + for module_name, lname, aliases, _, _ in LEXERS.values(): + if name == lname: + _load_lexers(module_name) + return _lexer_cache[name] + # continue with lexers from setuptools entrypoints + for cls in find_plugin_lexers(): + if cls.name == name: + return cls + + +def find_lexer_class_by_name(_alias): + """ + Return the `Lexer` subclass that has `alias` in its aliases list, without + instantiating it. + + Like `get_lexer_by_name`, but does not instantiate the class. + + Will raise :exc:`pygments.util.ClassNotFound` if no lexer with that alias is + found. + + .. versionadded:: 2.2 + """ + if not _alias: + raise ClassNotFound(f'no lexer for alias {_alias!r} found') + # lookup builtin lexers + for module_name, name, aliases, _, _ in LEXERS.values(): + if _alias.lower() in aliases: + if name not in _lexer_cache: + _load_lexers(module_name) + return _lexer_cache[name] + # continue with lexers from setuptools entrypoints + for cls in find_plugin_lexers(): + if _alias.lower() in cls.aliases: + return cls + raise ClassNotFound(f'no lexer for alias {_alias!r} found') + + +def get_lexer_by_name(_alias, **options): + """ + Return an instance of a `Lexer` subclass that has `alias` in its + aliases list. The lexer is given the `options` at its + instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no lexer with that alias is + found. + """ + if not _alias: + raise ClassNotFound(f'no lexer for alias {_alias!r} found') + + # lookup builtin lexers + for module_name, name, aliases, _, _ in LEXERS.values(): + if _alias.lower() in aliases: + if name not in _lexer_cache: + _load_lexers(module_name) + return _lexer_cache[name](**options) + # continue with lexers from setuptools entrypoints + for cls in find_plugin_lexers(): + if _alias.lower() in cls.aliases: + return cls(**options) + raise ClassNotFound(f'no lexer for alias {_alias!r} found') + + +def load_lexer_from_file(filename, lexername="CustomLexer", **options): + """Load a lexer from a file. + + This method expects a file located relative to the current working + directory, which contains a Lexer class. By default, it expects the + Lexer to be name CustomLexer; you can specify your own class name + as the second argument to this function. + + Users should be very careful with the input, because this method + is equivalent to running eval on the input file. + + Raises ClassNotFound if there are any problems importing the Lexer. + + .. versionadded:: 2.2 + """ + try: + # This empty dict will contain the namespace for the exec'd file + custom_namespace = {} + with open(filename, 'rb') as f: + exec(f.read(), custom_namespace) + # Retrieve the class `lexername` from that namespace + if lexername not in custom_namespace: + raise ClassNotFound(f'no valid {lexername} class found in {filename}') + lexer_class = custom_namespace[lexername] + # And finally instantiate it with the options + return lexer_class(**options) + except OSError as err: + raise ClassNotFound(f'cannot read {filename}: {err}') + except ClassNotFound: + raise + except Exception as err: + raise ClassNotFound(f'error when loading custom lexer: {err}') + + +def find_lexer_class_for_filename(_fn, code=None): + """Get a lexer for a filename. + + If multiple lexers match the filename pattern, use ``analyse_text()`` to + figure out which one is more appropriate. + + Returns None if not found. + """ + matches = [] + fn = basename(_fn) + for modname, name, _, filenames, _ in LEXERS.values(): + for filename in filenames: + if _fn_matches(fn, filename): + if name not in _lexer_cache: + _load_lexers(modname) + matches.append((_lexer_cache[name], filename)) + for cls in find_plugin_lexers(): + for filename in cls.filenames: + if _fn_matches(fn, filename): + matches.append((cls, filename)) + + if isinstance(code, bytes): + # decode it, since all analyse_text functions expect unicode + code = guess_decode(code) + + def get_rating(info): + cls, filename = info + # explicit patterns get a bonus + bonus = '*' not in filename and 0.5 or 0 + # The class _always_ defines analyse_text because it's included in + # the Lexer class. The default implementation returns None which + # gets turned into 0.0. Run scripts/detect_missing_analyse_text.py + # to find lexers which need it overridden. + if code: + return cls.analyse_text(code) + bonus, cls.__name__ + return cls.priority + bonus, cls.__name__ + + if matches: + matches.sort(key=get_rating) + # print "Possible lexers, after sort:", matches + return matches[-1][0] + + +def get_lexer_for_filename(_fn, code=None, **options): + """Get a lexer for a filename. + + Return a `Lexer` subclass instance that has a filename pattern + matching `fn`. The lexer is given the `options` at its + instantiation. + + Raise :exc:`pygments.util.ClassNotFound` if no lexer for that filename + is found. + + If multiple lexers match the filename pattern, use their ``analyse_text()`` + methods to figure out which one is more appropriate. + """ + res = find_lexer_class_for_filename(_fn, code) + if not res: + raise ClassNotFound(f'no lexer for filename {_fn!r} found') + return res(**options) + + +def get_lexer_for_mimetype(_mime, **options): + """ + Return a `Lexer` subclass instance that has `mime` in its mimetype + list. The lexer is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if not lexer for that mimetype + is found. + """ + for modname, name, _, _, mimetypes in LEXERS.values(): + if _mime in mimetypes: + if name not in _lexer_cache: + _load_lexers(modname) + return _lexer_cache[name](**options) + for cls in find_plugin_lexers(): + if _mime in cls.mimetypes: + return cls(**options) + raise ClassNotFound(f'no lexer for mimetype {_mime!r} found') + + +def _iter_lexerclasses(plugins=True): + """Return an iterator over all lexer classes.""" + for key in sorted(LEXERS): + module_name, name = LEXERS[key][:2] + if name not in _lexer_cache: + _load_lexers(module_name) + yield _lexer_cache[name] + if plugins: + yield from find_plugin_lexers() + + +def guess_lexer_for_filename(_fn, _text, **options): + """ + As :func:`guess_lexer()`, but only lexers which have a pattern in `filenames` + or `alias_filenames` that matches `filename` are taken into consideration. + + :exc:`pygments.util.ClassNotFound` is raised if no lexer thinks it can + handle the content. + """ + fn = basename(_fn) + primary = {} + matching_lexers = set() + for lexer in _iter_lexerclasses(): + for filename in lexer.filenames: + if _fn_matches(fn, filename): + matching_lexers.add(lexer) + primary[lexer] = True + for filename in lexer.alias_filenames: + if _fn_matches(fn, filename): + matching_lexers.add(lexer) + primary[lexer] = False + if not matching_lexers: + raise ClassNotFound(f'no lexer for filename {fn!r} found') + if len(matching_lexers) == 1: + return matching_lexers.pop()(**options) + result = [] + for lexer in matching_lexers: + rv = lexer.analyse_text(_text) + if rv == 1.0: + return lexer(**options) + result.append((rv, lexer)) + + def type_sort(t): + # sort by: + # - analyse score + # - is primary filename pattern? + # - priority + # - last resort: class name + return (t[0], primary[t[1]], t[1].priority, t[1].__name__) + result.sort(key=type_sort) + + return result[-1][1](**options) + + +def guess_lexer(_text, **options): + """ + Return a `Lexer` subclass instance that's guessed from the text in + `text`. For that, the :meth:`.analyse_text()` method of every known lexer + class is called with the text as argument, and the lexer which returned the + highest value will be instantiated and returned. + + :exc:`pygments.util.ClassNotFound` is raised if no lexer thinks it can + handle the content. + """ + + if not isinstance(_text, str): + inencoding = options.get('inencoding', options.get('encoding')) + if inencoding: + _text = _text.decode(inencoding or 'utf8') + else: + _text, _ = guess_decode(_text) + + # try to get a vim modeline first + ft = get_filetype_from_buffer(_text) + + if ft is not None: + try: + return get_lexer_by_name(ft, **options) + except ClassNotFound: + pass + + best_lexer = [0.0, None] + for lexer in _iter_lexerclasses(): + rv = lexer.analyse_text(_text) + if rv == 1.0: + return lexer(**options) + if rv > best_lexer[0]: + best_lexer[:] = (rv, lexer) + if not best_lexer[0] or best_lexer[1] is None: + raise ClassNotFound('no lexer matching the text found') + return best_lexer[1](**options) + + +class _automodule(types.ModuleType): + """Automatically import lexers.""" + + def __getattr__(self, name): + info = LEXERS.get(name) + if info: + _load_lexers(info[0]) + cls = _lexer_cache[info[1]] + setattr(self, name, cls) + return cls + if name in COMPAT: + return getattr(self, COMPAT[name]) + raise AttributeError(name) + + +oldmod = sys.modules[__name__] +newmod = _automodule(__name__) +newmod.__dict__.update(oldmod.__dict__) +sys.modules[__name__] = newmod +del newmod.newmod, newmod.oldmod, newmod.sys, newmod.types diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f37eb5842ad6c764b91fa1ac6b42555c704a561 GIT binary patch literal 14749 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..823c1cd3e9a06feea8eb1425811cd6bdc3795557 GIT binary patch literal 69858 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 D9gC7N literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b887f5da4f4fd86bd53d45000dc357052d27fa85 GIT binary patch literal 42988 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py new file mode 100644 index 0000000..c0d6a8a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py @@ -0,0 +1,602 @@ +# Automatically generated by scripts/gen_mapfiles.py. +# DO NOT EDIT BY HAND; run `tox -e mapfiles` instead. + +LEXERS = { + 'ABAPLexer': ('pip._vendor.pygments.lexers.business', 'ABAP', ('abap',), ('*.abap', '*.ABAP'), ('text/x-abap',)), + 'AMDGPULexer': ('pip._vendor.pygments.lexers.amdgpu', 'AMDGPU', ('amdgpu',), ('*.isa',), ()), + 'APLLexer': ('pip._vendor.pygments.lexers.apl', 'APL', ('apl',), ('*.apl', '*.aplf', '*.aplo', '*.apln', '*.aplc', '*.apli', '*.dyalog'), ()), + 'AbnfLexer': ('pip._vendor.pygments.lexers.grammar_notation', 'ABNF', ('abnf',), ('*.abnf',), ('text/x-abnf',)), + 'ActionScript3Lexer': ('pip._vendor.pygments.lexers.actionscript', 'ActionScript 3', ('actionscript3', 'as3'), ('*.as',), ('application/x-actionscript3', 'text/x-actionscript3', 'text/actionscript3')), + 'ActionScriptLexer': ('pip._vendor.pygments.lexers.actionscript', 'ActionScript', ('actionscript', 'as'), ('*.as',), ('application/x-actionscript', 'text/x-actionscript', 'text/actionscript')), + 'AdaLexer': ('pip._vendor.pygments.lexers.ada', 'Ada', ('ada', 'ada95', 'ada2005'), ('*.adb', '*.ads', '*.ada'), ('text/x-ada',)), + 'AdlLexer': ('pip._vendor.pygments.lexers.archetype', 'ADL', ('adl',), ('*.adl', '*.adls', '*.adlf', '*.adlx'), ()), + 'AgdaLexer': ('pip._vendor.pygments.lexers.haskell', 'Agda', ('agda',), ('*.agda',), ('text/x-agda',)), + 'AheuiLexer': ('pip._vendor.pygments.lexers.esoteric', 'Aheui', ('aheui',), ('*.aheui',), ()), + 'AlloyLexer': ('pip._vendor.pygments.lexers.dsls', 'Alloy', ('alloy',), ('*.als',), ('text/x-alloy',)), + 'AmbientTalkLexer': ('pip._vendor.pygments.lexers.ambient', 'AmbientTalk', ('ambienttalk', 'ambienttalk/2', 'at'), ('*.at',), ('text/x-ambienttalk',)), + 'AmplLexer': ('pip._vendor.pygments.lexers.ampl', 'Ampl', ('ampl',), ('*.run',), ()), + 'Angular2HtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML + Angular2', ('html+ng2',), ('*.ng2',), ()), + 'Angular2Lexer': ('pip._vendor.pygments.lexers.templates', 'Angular2', ('ng2',), (), ()), + 'AntlrActionScriptLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With ActionScript Target', ('antlr-actionscript', 'antlr-as'), ('*.G', '*.g'), ()), + 'AntlrCSharpLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With C# Target', ('antlr-csharp', 'antlr-c#'), ('*.G', '*.g'), ()), + 'AntlrCppLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With CPP Target', ('antlr-cpp',), ('*.G', '*.g'), ()), + 'AntlrJavaLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With Java Target', ('antlr-java',), ('*.G', '*.g'), ()), + 'AntlrLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR', ('antlr',), (), ()), + 'AntlrObjectiveCLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With ObjectiveC Target', ('antlr-objc',), ('*.G', '*.g'), ()), + 'AntlrPerlLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With Perl Target', ('antlr-perl',), ('*.G', '*.g'), ()), + 'AntlrPythonLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With Python Target', ('antlr-python',), ('*.G', '*.g'), ()), + 'AntlrRubyLexer': ('pip._vendor.pygments.lexers.parsers', 'ANTLR With Ruby Target', ('antlr-ruby', 'antlr-rb'), ('*.G', '*.g'), ()), + 'ApacheConfLexer': ('pip._vendor.pygments.lexers.configs', 'ApacheConf', ('apacheconf', 'aconf', 'apache'), ('.htaccess', 'apache.conf', 'apache2.conf'), ('text/x-apacheconf',)), + 'AppleScriptLexer': ('pip._vendor.pygments.lexers.scripting', 'AppleScript', ('applescript',), ('*.applescript',), ()), + 'ArduinoLexer': ('pip._vendor.pygments.lexers.c_like', 'Arduino', ('arduino',), ('*.ino',), ('text/x-arduino',)), + 'ArrowLexer': ('pip._vendor.pygments.lexers.arrow', 'Arrow', ('arrow',), ('*.arw',), ()), + 'ArturoLexer': ('pip._vendor.pygments.lexers.arturo', 'Arturo', ('arturo', 'art'), ('*.art',), ()), + 'AscLexer': ('pip._vendor.pygments.lexers.asc', 'ASCII armored', ('asc', 'pem'), ('*.asc', '*.pem', 'id_dsa', 'id_ecdsa', 'id_ecdsa_sk', 'id_ed25519', 'id_ed25519_sk', 'id_rsa'), ('application/pgp-keys', 'application/pgp-encrypted', 'application/pgp-signature', 'application/pem-certificate-chain')), + 'Asn1Lexer': ('pip._vendor.pygments.lexers.asn1', 'ASN.1', ('asn1',), ('*.asn1',), ()), + 'AspectJLexer': ('pip._vendor.pygments.lexers.jvm', 'AspectJ', ('aspectj',), ('*.aj',), ('text/x-aspectj',)), + 'AsymptoteLexer': ('pip._vendor.pygments.lexers.graphics', 'Asymptote', ('asymptote', 'asy'), ('*.asy',), ('text/x-asymptote',)), + 'AugeasLexer': ('pip._vendor.pygments.lexers.configs', 'Augeas', ('augeas',), ('*.aug',), ()), + 'AutoItLexer': ('pip._vendor.pygments.lexers.automation', 'AutoIt', ('autoit',), ('*.au3',), ('text/x-autoit',)), + 'AutohotkeyLexer': ('pip._vendor.pygments.lexers.automation', 'autohotkey', ('autohotkey', 'ahk'), ('*.ahk', '*.ahkl'), ('text/x-autohotkey',)), + 'AwkLexer': ('pip._vendor.pygments.lexers.textedit', 'Awk', ('awk', 'gawk', 'mawk', 'nawk'), ('*.awk',), ('application/x-awk',)), + 'BBCBasicLexer': ('pip._vendor.pygments.lexers.basic', 'BBC Basic', ('bbcbasic',), ('*.bbc',), ()), + 'BBCodeLexer': ('pip._vendor.pygments.lexers.markup', 'BBCode', ('bbcode',), (), ('text/x-bbcode',)), + 'BCLexer': ('pip._vendor.pygments.lexers.algebra', 'BC', ('bc',), ('*.bc',), ()), + 'BQNLexer': ('pip._vendor.pygments.lexers.bqn', 'BQN', ('bqn',), ('*.bqn',), ()), + 'BSTLexer': ('pip._vendor.pygments.lexers.bibtex', 'BST', ('bst', 'bst-pybtex'), ('*.bst',), ()), + 'BareLexer': ('pip._vendor.pygments.lexers.bare', 'BARE', ('bare',), ('*.bare',), ()), + 'BaseMakefileLexer': ('pip._vendor.pygments.lexers.make', 'Base Makefile', ('basemake',), (), ()), + 'BashLexer': ('pip._vendor.pygments.lexers.shell', 'Bash', ('bash', 'sh', 'ksh', 'zsh', 'shell', 'openrc'), ('*.sh', '*.ksh', '*.bash', '*.ebuild', '*.eclass', '*.exheres-0', '*.exlib', '*.zsh', '.bashrc', 'bashrc', '.bash_*', 'bash_*', 'zshrc', '.zshrc', '.kshrc', 'kshrc', 'PKGBUILD'), ('application/x-sh', 'application/x-shellscript', 'text/x-shellscript')), + 'BashSessionLexer': ('pip._vendor.pygments.lexers.shell', 'Bash Session', ('console', 'shell-session'), ('*.sh-session', '*.shell-session'), ('application/x-shell-session', 'application/x-sh-session')), + 'BatchLexer': ('pip._vendor.pygments.lexers.shell', 'Batchfile', ('batch', 'bat', 'dosbatch', 'winbatch'), ('*.bat', '*.cmd'), ('application/x-dos-batch',)), + 'BddLexer': ('pip._vendor.pygments.lexers.bdd', 'Bdd', ('bdd',), ('*.feature',), ('text/x-bdd',)), + 'BefungeLexer': ('pip._vendor.pygments.lexers.esoteric', 'Befunge', ('befunge',), ('*.befunge',), ('application/x-befunge',)), + 'BerryLexer': ('pip._vendor.pygments.lexers.berry', 'Berry', ('berry', 'be'), ('*.be',), ('text/x-berry', 'application/x-berry')), + 'BibTeXLexer': ('pip._vendor.pygments.lexers.bibtex', 'BibTeX', ('bibtex', 'bib'), ('*.bib',), ('text/x-bibtex',)), + 'BlitzBasicLexer': ('pip._vendor.pygments.lexers.basic', 'BlitzBasic', ('blitzbasic', 'b3d', 'bplus'), ('*.bb', '*.decls'), ('text/x-bb',)), + 'BlitzMaxLexer': ('pip._vendor.pygments.lexers.basic', 'BlitzMax', ('blitzmax', 'bmax'), ('*.bmx',), ('text/x-bmx',)), + 'BlueprintLexer': ('pip._vendor.pygments.lexers.blueprint', 'Blueprint', ('blueprint',), ('*.blp',), ('text/x-blueprint',)), + 'BnfLexer': ('pip._vendor.pygments.lexers.grammar_notation', 'BNF', ('bnf',), ('*.bnf',), ('text/x-bnf',)), + 'BoaLexer': ('pip._vendor.pygments.lexers.boa', 'Boa', ('boa',), ('*.boa',), ()), + 'BooLexer': ('pip._vendor.pygments.lexers.dotnet', 'Boo', ('boo',), ('*.boo',), ('text/x-boo',)), + 'BoogieLexer': ('pip._vendor.pygments.lexers.verification', 'Boogie', ('boogie',), ('*.bpl',), ()), + 'BrainfuckLexer': ('pip._vendor.pygments.lexers.esoteric', 'Brainfuck', ('brainfuck', 'bf'), ('*.bf', '*.b'), ('application/x-brainfuck',)), + 'BugsLexer': ('pip._vendor.pygments.lexers.modeling', 'BUGS', ('bugs', 'winbugs', 'openbugs'), ('*.bug',), ()), + 'CAmkESLexer': ('pip._vendor.pygments.lexers.esoteric', 'CAmkES', ('camkes', 'idl4'), ('*.camkes', '*.idl4'), ()), + 'CLexer': ('pip._vendor.pygments.lexers.c_cpp', 'C', ('c',), ('*.c', '*.h', '*.idc', '*.x[bp]m'), ('text/x-chdr', 'text/x-csrc', 'image/x-xbitmap', 'image/x-xpixmap')), + 'CMakeLexer': ('pip._vendor.pygments.lexers.make', 'CMake', ('cmake',), ('*.cmake', 'CMakeLists.txt'), ('text/x-cmake',)), + 'CObjdumpLexer': ('pip._vendor.pygments.lexers.asm', 'c-objdump', ('c-objdump',), ('*.c-objdump',), ('text/x-c-objdump',)), + 'CPSALexer': ('pip._vendor.pygments.lexers.lisp', 'CPSA', ('cpsa',), ('*.cpsa',), ()), + 'CSSUL4Lexer': ('pip._vendor.pygments.lexers.ul4', 'CSS+UL4', ('css+ul4',), ('*.cssul4',), ()), + 'CSharpAspxLexer': ('pip._vendor.pygments.lexers.dotnet', 'aspx-cs', ('aspx-cs',), ('*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'), ()), + 'CSharpLexer': ('pip._vendor.pygments.lexers.dotnet', 'C#', ('csharp', 'c#', 'cs'), ('*.cs',), ('text/x-csharp',)), + 'Ca65Lexer': ('pip._vendor.pygments.lexers.asm', 'ca65 assembler', ('ca65',), ('*.s',), ()), + 'CadlLexer': ('pip._vendor.pygments.lexers.archetype', 'cADL', ('cadl',), ('*.cadl',), ()), + 'CapDLLexer': ('pip._vendor.pygments.lexers.esoteric', 'CapDL', ('capdl',), ('*.cdl',), ()), + 'CapnProtoLexer': ('pip._vendor.pygments.lexers.capnproto', "Cap'n Proto", ('capnp',), ('*.capnp',), ()), + 'CarbonLexer': ('pip._vendor.pygments.lexers.carbon', 'Carbon', ('carbon',), ('*.carbon',), ('text/x-carbon',)), + 'CbmBasicV2Lexer': ('pip._vendor.pygments.lexers.basic', 'CBM BASIC V2', ('cbmbas',), ('*.bas',), ()), + 'CddlLexer': ('pip._vendor.pygments.lexers.cddl', 'CDDL', ('cddl',), ('*.cddl',), ('text/x-cddl',)), + 'CeylonLexer': ('pip._vendor.pygments.lexers.jvm', 'Ceylon', ('ceylon',), ('*.ceylon',), ('text/x-ceylon',)), + 'Cfengine3Lexer': ('pip._vendor.pygments.lexers.configs', 'CFEngine3', ('cfengine3', 'cf3'), ('*.cf',), ()), + 'ChaiscriptLexer': ('pip._vendor.pygments.lexers.scripting', 'ChaiScript', ('chaiscript', 'chai'), ('*.chai',), ('text/x-chaiscript', 'application/x-chaiscript')), + 'ChapelLexer': ('pip._vendor.pygments.lexers.chapel', 'Chapel', ('chapel', 'chpl'), ('*.chpl',), ()), + 'CharmciLexer': ('pip._vendor.pygments.lexers.c_like', 'Charmci', ('charmci',), ('*.ci',), ()), + 'CheetahHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Cheetah', ('html+cheetah', 'html+spitfire', 'htmlcheetah'), (), ('text/html+cheetah', 'text/html+spitfire')), + 'CheetahJavascriptLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Cheetah', ('javascript+cheetah', 'js+cheetah', 'javascript+spitfire', 'js+spitfire'), (), ('application/x-javascript+cheetah', 'text/x-javascript+cheetah', 'text/javascript+cheetah', 'application/x-javascript+spitfire', 'text/x-javascript+spitfire', 'text/javascript+spitfire')), + 'CheetahLexer': ('pip._vendor.pygments.lexers.templates', 'Cheetah', ('cheetah', 'spitfire'), ('*.tmpl', '*.spt'), ('application/x-cheetah', 'application/x-spitfire')), + 'CheetahXmlLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Cheetah', ('xml+cheetah', 'xml+spitfire'), (), ('application/xml+cheetah', 'application/xml+spitfire')), + 'CirruLexer': ('pip._vendor.pygments.lexers.webmisc', 'Cirru', ('cirru',), ('*.cirru',), ('text/x-cirru',)), + 'ClayLexer': ('pip._vendor.pygments.lexers.c_like', 'Clay', ('clay',), ('*.clay',), ('text/x-clay',)), + 'CleanLexer': ('pip._vendor.pygments.lexers.clean', 'Clean', ('clean',), ('*.icl', '*.dcl'), ()), + 'ClojureLexer': ('pip._vendor.pygments.lexers.jvm', 'Clojure', ('clojure', 'clj'), ('*.clj', '*.cljc'), ('text/x-clojure', 'application/x-clojure')), + 'ClojureScriptLexer': ('pip._vendor.pygments.lexers.jvm', 'ClojureScript', ('clojurescript', 'cljs'), ('*.cljs',), ('text/x-clojurescript', 'application/x-clojurescript')), + 'CobolFreeformatLexer': ('pip._vendor.pygments.lexers.business', 'COBOLFree', ('cobolfree',), ('*.cbl', '*.CBL'), ()), + 'CobolLexer': ('pip._vendor.pygments.lexers.business', 'COBOL', ('cobol',), ('*.cob', '*.COB', '*.cpy', '*.CPY'), ('text/x-cobol',)), + 'CodeQLLexer': ('pip._vendor.pygments.lexers.codeql', 'CodeQL', ('codeql', 'ql'), ('*.ql', '*.qll'), ()), + 'CoffeeScriptLexer': ('pip._vendor.pygments.lexers.javascript', 'CoffeeScript', ('coffeescript', 'coffee-script', 'coffee'), ('*.coffee',), ('text/coffeescript',)), + 'ColdfusionCFCLexer': ('pip._vendor.pygments.lexers.templates', 'Coldfusion CFC', ('cfc',), ('*.cfc',), ()), + 'ColdfusionHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'Coldfusion HTML', ('cfm',), ('*.cfm', '*.cfml'), ('application/x-coldfusion',)), + 'ColdfusionLexer': ('pip._vendor.pygments.lexers.templates', 'cfstatement', ('cfs',), (), ()), + 'Comal80Lexer': ('pip._vendor.pygments.lexers.comal', 'COMAL-80', ('comal', 'comal80'), ('*.cml', '*.comal'), ()), + 'CommonLispLexer': ('pip._vendor.pygments.lexers.lisp', 'Common Lisp', ('common-lisp', 'cl', 'lisp'), ('*.cl', '*.lisp'), ('text/x-common-lisp',)), + 'ComponentPascalLexer': ('pip._vendor.pygments.lexers.oberon', 'Component Pascal', ('componentpascal', 'cp'), ('*.cp', '*.cps'), ('text/x-component-pascal',)), + 'CoqLexer': ('pip._vendor.pygments.lexers.theorem', 'Coq', ('coq',), ('*.v',), ('text/x-coq',)), + 'CplintLexer': ('pip._vendor.pygments.lexers.cplint', 'cplint', ('cplint',), ('*.ecl', '*.prolog', '*.pro', '*.pl', '*.P', '*.lpad', '*.cpl'), ('text/x-cplint',)), + 'CppLexer': ('pip._vendor.pygments.lexers.c_cpp', 'C++', ('cpp', 'c++'), ('*.cpp', '*.hpp', '*.c++', '*.h++', '*.cc', '*.hh', '*.cxx', '*.hxx', '*.C', '*.H', '*.cp', '*.CPP', '*.tpp'), ('text/x-c++hdr', 'text/x-c++src')), + 'CppObjdumpLexer': ('pip._vendor.pygments.lexers.asm', 'cpp-objdump', ('cpp-objdump', 'c++-objdumb', 'cxx-objdump'), ('*.cpp-objdump', '*.c++-objdump', '*.cxx-objdump'), ('text/x-cpp-objdump',)), + 'CrmshLexer': ('pip._vendor.pygments.lexers.dsls', 'Crmsh', ('crmsh', 'pcmk'), ('*.crmsh', '*.pcmk'), ()), + 'CrocLexer': ('pip._vendor.pygments.lexers.d', 'Croc', ('croc',), ('*.croc',), ('text/x-crocsrc',)), + 'CryptolLexer': ('pip._vendor.pygments.lexers.haskell', 'Cryptol', ('cryptol', 'cry'), ('*.cry',), ('text/x-cryptol',)), + 'CrystalLexer': ('pip._vendor.pygments.lexers.crystal', 'Crystal', ('cr', 'crystal'), ('*.cr',), ('text/x-crystal',)), + 'CsoundDocumentLexer': ('pip._vendor.pygments.lexers.csound', 'Csound Document', ('csound-document', 'csound-csd'), ('*.csd',), ()), + 'CsoundOrchestraLexer': ('pip._vendor.pygments.lexers.csound', 'Csound Orchestra', ('csound', 'csound-orc'), ('*.orc', '*.udo'), ()), + 'CsoundScoreLexer': ('pip._vendor.pygments.lexers.csound', 'Csound Score', ('csound-score', 'csound-sco'), ('*.sco',), ()), + 'CssDjangoLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+Django/Jinja', ('css+django', 'css+jinja'), ('*.css.j2', '*.css.jinja2'), ('text/css+django', 'text/css+jinja')), + 'CssErbLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+Ruby', ('css+ruby', 'css+erb'), (), ('text/css+ruby',)), + 'CssGenshiLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+Genshi Text', ('css+genshitext', 'css+genshi'), (), ('text/css+genshi',)), + 'CssLexer': ('pip._vendor.pygments.lexers.css', 'CSS', ('css',), ('*.css',), ('text/css',)), + 'CssPhpLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+PHP', ('css+php',), (), ('text/css+php',)), + 'CssSmartyLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+Smarty', ('css+smarty',), (), ('text/css+smarty',)), + 'CudaLexer': ('pip._vendor.pygments.lexers.c_like', 'CUDA', ('cuda', 'cu'), ('*.cu', '*.cuh'), ('text/x-cuda',)), + 'CypherLexer': ('pip._vendor.pygments.lexers.graph', 'Cypher', ('cypher',), ('*.cyp', '*.cypher'), ()), + 'CythonLexer': ('pip._vendor.pygments.lexers.python', 'Cython', ('cython', 'pyx', 'pyrex'), ('*.pyx', '*.pxd', '*.pxi'), ('text/x-cython', 'application/x-cython')), + 'DLexer': ('pip._vendor.pygments.lexers.d', 'D', ('d',), ('*.d', '*.di'), ('text/x-dsrc',)), + 'DObjdumpLexer': ('pip._vendor.pygments.lexers.asm', 'd-objdump', ('d-objdump',), ('*.d-objdump',), ('text/x-d-objdump',)), + 'DarcsPatchLexer': ('pip._vendor.pygments.lexers.diff', 'Darcs Patch', ('dpatch',), ('*.dpatch', '*.darcspatch'), ()), + 'DartLexer': ('pip._vendor.pygments.lexers.javascript', 'Dart', ('dart',), ('*.dart',), ('text/x-dart',)), + 'Dasm16Lexer': ('pip._vendor.pygments.lexers.asm', 'DASM16', ('dasm16',), ('*.dasm16', '*.dasm'), ('text/x-dasm16',)), + 'DaxLexer': ('pip._vendor.pygments.lexers.dax', 'Dax', ('dax',), ('*.dax',), ()), + 'DebianControlLexer': ('pip._vendor.pygments.lexers.installers', 'Debian Control file', ('debcontrol', 'control'), ('control',), ()), + 'DebianSourcesLexer': ('pip._vendor.pygments.lexers.installers', 'Debian Sources file', ('debian.sources',), ('*.sources',), ()), + 'DelphiLexer': ('pip._vendor.pygments.lexers.pascal', 'Delphi', ('delphi', 'pas', 'pascal', 'objectpascal'), ('*.pas', '*.dpr'), ('text/x-pascal',)), + 'DesktopLexer': ('pip._vendor.pygments.lexers.configs', 'Desktop file', ('desktop',), ('*.desktop',), ('application/x-desktop',)), + 'DevicetreeLexer': ('pip._vendor.pygments.lexers.devicetree', 'Devicetree', ('devicetree', 'dts'), ('*.dts', '*.dtsi'), ('text/x-c',)), + 'DgLexer': ('pip._vendor.pygments.lexers.python', 'dg', ('dg',), ('*.dg',), ('text/x-dg',)), + 'DiffLexer': ('pip._vendor.pygments.lexers.diff', 'Diff', ('diff', 'udiff'), ('*.diff', '*.patch'), ('text/x-diff', 'text/x-patch')), + 'DjangoLexer': ('pip._vendor.pygments.lexers.templates', 'Django/Jinja', ('django', 'jinja'), (), ('application/x-django-templating', 'application/x-jinja')), + 'DnsZoneLexer': ('pip._vendor.pygments.lexers.dns', 'Zone', ('zone',), ('*.zone',), ('text/dns',)), + 'DockerLexer': ('pip._vendor.pygments.lexers.configs', 'Docker', ('docker', 'dockerfile'), ('Dockerfile', '*.docker'), ('text/x-dockerfile-config',)), + 'DtdLexer': ('pip._vendor.pygments.lexers.html', 'DTD', ('dtd',), ('*.dtd',), ('application/xml-dtd',)), + 'DuelLexer': ('pip._vendor.pygments.lexers.webmisc', 'Duel', ('duel', 'jbst', 'jsonml+bst'), ('*.duel', '*.jbst'), ('text/x-duel', 'text/x-jbst')), + 'DylanConsoleLexer': ('pip._vendor.pygments.lexers.dylan', 'Dylan session', ('dylan-console', 'dylan-repl'), ('*.dylan-console',), ('text/x-dylan-console',)), + 'DylanLexer': ('pip._vendor.pygments.lexers.dylan', 'Dylan', ('dylan',), ('*.dylan', '*.dyl', '*.intr'), ('text/x-dylan',)), + 'DylanLidLexer': ('pip._vendor.pygments.lexers.dylan', 'DylanLID', ('dylan-lid', 'lid'), ('*.lid', '*.hdp'), ('text/x-dylan-lid',)), + 'ECLLexer': ('pip._vendor.pygments.lexers.ecl', 'ECL', ('ecl',), ('*.ecl',), ('application/x-ecl',)), + 'ECLexer': ('pip._vendor.pygments.lexers.c_like', 'eC', ('ec',), ('*.ec', '*.eh'), ('text/x-echdr', 'text/x-ecsrc')), + 'EarlGreyLexer': ('pip._vendor.pygments.lexers.javascript', 'Earl Grey', ('earl-grey', 'earlgrey', 'eg'), ('*.eg',), ('text/x-earl-grey',)), + 'EasytrieveLexer': ('pip._vendor.pygments.lexers.scripting', 'Easytrieve', ('easytrieve',), ('*.ezt', '*.mac'), ('text/x-easytrieve',)), + 'EbnfLexer': ('pip._vendor.pygments.lexers.parsers', 'EBNF', ('ebnf',), ('*.ebnf',), ('text/x-ebnf',)), + 'EiffelLexer': ('pip._vendor.pygments.lexers.eiffel', 'Eiffel', ('eiffel',), ('*.e',), ('text/x-eiffel',)), + 'ElixirConsoleLexer': ('pip._vendor.pygments.lexers.erlang', 'Elixir iex session', ('iex',), (), ('text/x-elixir-shellsession',)), + 'ElixirLexer': ('pip._vendor.pygments.lexers.erlang', 'Elixir', ('elixir', 'ex', 'exs'), ('*.ex', '*.eex', '*.exs', '*.leex'), ('text/x-elixir',)), + 'ElmLexer': ('pip._vendor.pygments.lexers.elm', 'Elm', ('elm',), ('*.elm',), ('text/x-elm',)), + 'ElpiLexer': ('pip._vendor.pygments.lexers.elpi', 'Elpi', ('elpi',), ('*.elpi',), ('text/x-elpi',)), + 'EmacsLispLexer': ('pip._vendor.pygments.lexers.lisp', 'EmacsLisp', ('emacs-lisp', 'elisp', 'emacs'), ('*.el',), ('text/x-elisp', 'application/x-elisp')), + 'EmailLexer': ('pip._vendor.pygments.lexers.email', 'E-mail', ('email', 'eml'), ('*.eml',), ('message/rfc822',)), + 'ErbLexer': ('pip._vendor.pygments.lexers.templates', 'ERB', ('erb',), (), ('application/x-ruby-templating',)), + 'ErlangLexer': ('pip._vendor.pygments.lexers.erlang', 'Erlang', ('erlang',), ('*.erl', '*.hrl', '*.es', '*.escript'), ('text/x-erlang',)), + 'ErlangShellLexer': ('pip._vendor.pygments.lexers.erlang', 'Erlang erl session', ('erl',), ('*.erl-sh',), ('text/x-erl-shellsession',)), + 'EvoqueHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Evoque', ('html+evoque',), (), ('text/html+evoque',)), + 'EvoqueLexer': ('pip._vendor.pygments.lexers.templates', 'Evoque', ('evoque',), ('*.evoque',), ('application/x-evoque',)), + 'EvoqueXmlLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Evoque', ('xml+evoque',), (), ('application/xml+evoque',)), + 'ExeclineLexer': ('pip._vendor.pygments.lexers.shell', 'execline', ('execline',), ('*.exec',), ()), + 'EzhilLexer': ('pip._vendor.pygments.lexers.ezhil', 'Ezhil', ('ezhil',), ('*.n',), ('text/x-ezhil',)), + 'FSharpLexer': ('pip._vendor.pygments.lexers.dotnet', 'F#', ('fsharp', 'f#'), ('*.fs', '*.fsi', '*.fsx'), ('text/x-fsharp',)), + 'FStarLexer': ('pip._vendor.pygments.lexers.ml', 'FStar', ('fstar',), ('*.fst', '*.fsti'), ('text/x-fstar',)), + 'FactorLexer': ('pip._vendor.pygments.lexers.factor', 'Factor', ('factor',), ('*.factor',), ('text/x-factor',)), + 'FancyLexer': ('pip._vendor.pygments.lexers.ruby', 'Fancy', ('fancy', 'fy'), ('*.fy', '*.fancypack'), ('text/x-fancysrc',)), + 'FantomLexer': ('pip._vendor.pygments.lexers.fantom', 'Fantom', ('fan',), ('*.fan',), ('application/x-fantom',)), + 'FelixLexer': ('pip._vendor.pygments.lexers.felix', 'Felix', ('felix', 'flx'), ('*.flx', '*.flxh'), ('text/x-felix',)), + 'FennelLexer': ('pip._vendor.pygments.lexers.lisp', 'Fennel', ('fennel', 'fnl'), ('*.fnl',), ()), + 'FiftLexer': ('pip._vendor.pygments.lexers.fift', 'Fift', ('fift', 'fif'), ('*.fif',), ()), + 'FishShellLexer': ('pip._vendor.pygments.lexers.shell', 'Fish', ('fish', 'fishshell'), ('*.fish', '*.load'), ('application/x-fish',)), + 'FlatlineLexer': ('pip._vendor.pygments.lexers.dsls', 'Flatline', ('flatline',), (), ('text/x-flatline',)), + 'FloScriptLexer': ('pip._vendor.pygments.lexers.floscript', 'FloScript', ('floscript', 'flo'), ('*.flo',), ()), + 'ForthLexer': ('pip._vendor.pygments.lexers.forth', 'Forth', ('forth',), ('*.frt', '*.fs'), ('application/x-forth',)), + 'FortranFixedLexer': ('pip._vendor.pygments.lexers.fortran', 'FortranFixed', ('fortranfixed',), ('*.f', '*.F'), ()), + 'FortranLexer': ('pip._vendor.pygments.lexers.fortran', 'Fortran', ('fortran', 'f90'), ('*.f03', '*.f90', '*.F03', '*.F90'), ('text/x-fortran',)), + 'FoxProLexer': ('pip._vendor.pygments.lexers.foxpro', 'FoxPro', ('foxpro', 'vfp', 'clipper', 'xbase'), ('*.PRG', '*.prg'), ()), + 'FreeFemLexer': ('pip._vendor.pygments.lexers.freefem', 'Freefem', ('freefem',), ('*.edp',), ('text/x-freefem',)), + 'FuncLexer': ('pip._vendor.pygments.lexers.func', 'FunC', ('func', 'fc'), ('*.fc', '*.func'), ()), + 'FutharkLexer': ('pip._vendor.pygments.lexers.futhark', 'Futhark', ('futhark',), ('*.fut',), ('text/x-futhark',)), + 'GAPConsoleLexer': ('pip._vendor.pygments.lexers.algebra', 'GAP session', ('gap-console', 'gap-repl'), ('*.tst',), ()), + 'GAPLexer': ('pip._vendor.pygments.lexers.algebra', 'GAP', ('gap',), ('*.g', '*.gd', '*.gi', '*.gap'), ()), + 'GDScriptLexer': ('pip._vendor.pygments.lexers.gdscript', 'GDScript', ('gdscript', 'gd'), ('*.gd',), ('text/x-gdscript', 'application/x-gdscript')), + 'GLShaderLexer': ('pip._vendor.pygments.lexers.graphics', 'GLSL', ('glsl',), ('*.vert', '*.frag', '*.geo'), ('text/x-glslsrc',)), + 'GSQLLexer': ('pip._vendor.pygments.lexers.gsql', 'GSQL', ('gsql',), ('*.gsql',), ()), + 'GasLexer': ('pip._vendor.pygments.lexers.asm', 'GAS', ('gas', 'asm'), ('*.s', '*.S'), ('text/x-gas',)), + 'GcodeLexer': ('pip._vendor.pygments.lexers.gcodelexer', 'g-code', ('gcode',), ('*.gcode',), ()), + 'GenshiLexer': ('pip._vendor.pygments.lexers.templates', 'Genshi', ('genshi', 'kid', 'xml+genshi', 'xml+kid'), ('*.kid',), ('application/x-genshi', 'application/x-kid')), + 'GenshiTextLexer': ('pip._vendor.pygments.lexers.templates', 'Genshi Text', ('genshitext',), (), ('application/x-genshi-text', 'text/x-genshi')), + 'GettextLexer': ('pip._vendor.pygments.lexers.textfmts', 'Gettext Catalog', ('pot', 'po'), ('*.pot', '*.po'), ('application/x-gettext', 'text/x-gettext', 'text/gettext')), + 'GherkinLexer': ('pip._vendor.pygments.lexers.testing', 'Gherkin', ('gherkin', 'cucumber'), ('*.feature',), ('text/x-gherkin',)), + 'GleamLexer': ('pip._vendor.pygments.lexers.gleam', 'Gleam', ('gleam',), ('*.gleam',), ('text/x-gleam',)), + 'GnuplotLexer': ('pip._vendor.pygments.lexers.graphics', 'Gnuplot', ('gnuplot',), ('*.plot', '*.plt'), ('text/x-gnuplot',)), + 'GoLexer': ('pip._vendor.pygments.lexers.go', 'Go', ('go', 'golang'), ('*.go',), ('text/x-gosrc',)), + 'GoloLexer': ('pip._vendor.pygments.lexers.jvm', 'Golo', ('golo',), ('*.golo',), ()), + 'GoodDataCLLexer': ('pip._vendor.pygments.lexers.business', 'GoodData-CL', ('gooddata-cl',), ('*.gdc',), ('text/x-gooddata-cl',)), + 'GoogleSqlLexer': ('pip._vendor.pygments.lexers.sql', 'GoogleSQL', ('googlesql', 'zetasql'), ('*.googlesql', '*.googlesql.sql'), ('text/x-google-sql', 'text/x-google-sql-aux')), + 'GosuLexer': ('pip._vendor.pygments.lexers.jvm', 'Gosu', ('gosu',), ('*.gs', '*.gsx', '*.gsp', '*.vark'), ('text/x-gosu',)), + 'GosuTemplateLexer': ('pip._vendor.pygments.lexers.jvm', 'Gosu Template', ('gst',), ('*.gst',), ('text/x-gosu-template',)), + 'GraphQLLexer': ('pip._vendor.pygments.lexers.graphql', 'GraphQL', ('graphql',), ('*.graphql',), ()), + 'GraphvizLexer': ('pip._vendor.pygments.lexers.graphviz', 'Graphviz', ('graphviz', 'dot'), ('*.gv', '*.dot'), ('text/x-graphviz', 'text/vnd.graphviz')), + 'GroffLexer': ('pip._vendor.pygments.lexers.markup', 'Groff', ('groff', 'nroff', 'man'), ('*.[1-9]', '*.man', '*.1p', '*.3pm'), ('application/x-troff', 'text/troff')), + 'GroovyLexer': ('pip._vendor.pygments.lexers.jvm', 'Groovy', ('groovy',), ('*.groovy', '*.gradle'), ('text/x-groovy',)), + 'HLSLShaderLexer': ('pip._vendor.pygments.lexers.graphics', 'HLSL', ('hlsl',), ('*.hlsl', '*.hlsli'), ('text/x-hlsl',)), + 'HTMLUL4Lexer': ('pip._vendor.pygments.lexers.ul4', 'HTML+UL4', ('html+ul4',), ('*.htmlul4',), ()), + 'HamlLexer': ('pip._vendor.pygments.lexers.html', 'Haml', ('haml',), ('*.haml',), ('text/x-haml',)), + 'HandlebarsHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Handlebars', ('html+handlebars',), ('*.handlebars', '*.hbs'), ('text/html+handlebars', 'text/x-handlebars-template')), + 'HandlebarsLexer': ('pip._vendor.pygments.lexers.templates', 'Handlebars', ('handlebars',), (), ()), + 'HareLexer': ('pip._vendor.pygments.lexers.hare', 'Hare', ('hare',), ('*.ha',), ('text/x-hare',)), + 'HaskellLexer': ('pip._vendor.pygments.lexers.haskell', 'Haskell', ('haskell', 'hs'), ('*.hs',), ('text/x-haskell',)), + 'HaxeLexer': ('pip._vendor.pygments.lexers.haxe', 'Haxe', ('haxe', 'hxsl', 'hx'), ('*.hx', '*.hxsl'), ('text/haxe', 'text/x-haxe', 'text/x-hx')), + 'HexdumpLexer': ('pip._vendor.pygments.lexers.hexdump', 'Hexdump', ('hexdump',), (), ()), + 'HsailLexer': ('pip._vendor.pygments.lexers.asm', 'HSAIL', ('hsail', 'hsa'), ('*.hsail',), ('text/x-hsail',)), + 'HspecLexer': ('pip._vendor.pygments.lexers.haskell', 'Hspec', ('hspec',), ('*Spec.hs',), ()), + 'HtmlDjangoLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Django/Jinja', ('html+django', 'html+jinja', 'htmldjango'), ('*.html.j2', '*.htm.j2', '*.xhtml.j2', '*.html.jinja2', '*.htm.jinja2', '*.xhtml.jinja2'), ('text/html+django', 'text/html+jinja')), + 'HtmlGenshiLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Genshi', ('html+genshi', 'html+kid'), (), ('text/html+genshi',)), + 'HtmlLexer': ('pip._vendor.pygments.lexers.html', 'HTML', ('html',), ('*.html', '*.htm', '*.xhtml', '*.xslt'), ('text/html', 'application/xhtml+xml')), + 'HtmlPhpLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+PHP', ('html+php',), ('*.phtml',), ('application/x-php', 'application/x-httpd-php', 'application/x-httpd-php3', 'application/x-httpd-php4', 'application/x-httpd-php5')), + 'HtmlSmartyLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Smarty', ('html+smarty',), (), ('text/html+smarty',)), + 'HttpLexer': ('pip._vendor.pygments.lexers.textfmts', 'HTTP', ('http',), (), ()), + 'HxmlLexer': ('pip._vendor.pygments.lexers.haxe', 'Hxml', ('haxeml', 'hxml'), ('*.hxml',), ()), + 'HyLexer': ('pip._vendor.pygments.lexers.lisp', 'Hy', ('hylang', 'hy'), ('*.hy',), ('text/x-hy', 'application/x-hy')), + 'HybrisLexer': ('pip._vendor.pygments.lexers.scripting', 'Hybris', ('hybris',), ('*.hyb',), ('text/x-hybris', 'application/x-hybris')), + 'IDLLexer': ('pip._vendor.pygments.lexers.idl', 'IDL', ('idl',), ('*.pro',), ('text/idl',)), + 'IconLexer': ('pip._vendor.pygments.lexers.unicon', 'Icon', ('icon',), ('*.icon', '*.ICON'), ()), + 'IdrisLexer': ('pip._vendor.pygments.lexers.haskell', 'Idris', ('idris', 'idr'), ('*.idr',), ('text/x-idris',)), + 'IgorLexer': ('pip._vendor.pygments.lexers.igor', 'Igor', ('igor', 'igorpro'), ('*.ipf',), ('text/ipf',)), + 'Inform6Lexer': ('pip._vendor.pygments.lexers.int_fiction', 'Inform 6', ('inform6', 'i6'), ('*.inf',), ()), + 'Inform6TemplateLexer': ('pip._vendor.pygments.lexers.int_fiction', 'Inform 6 template', ('i6t',), ('*.i6t',), ()), + 'Inform7Lexer': ('pip._vendor.pygments.lexers.int_fiction', 'Inform 7', ('inform7', 'i7'), ('*.ni', '*.i7x'), ()), + 'IniLexer': ('pip._vendor.pygments.lexers.configs', 'INI', ('ini', 'cfg', 'dosini'), ('*.ini', '*.cfg', '*.inf', '.editorconfig'), ('text/x-ini', 'text/inf')), + 'IoLexer': ('pip._vendor.pygments.lexers.iolang', 'Io', ('io',), ('*.io',), ('text/x-iosrc',)), + 'IokeLexer': ('pip._vendor.pygments.lexers.jvm', 'Ioke', ('ioke', 'ik'), ('*.ik',), ('text/x-iokesrc',)), + 'IrcLogsLexer': ('pip._vendor.pygments.lexers.textfmts', 'IRC logs', ('irc',), ('*.weechatlog',), ('text/x-irclog',)), + 'IsabelleLexer': ('pip._vendor.pygments.lexers.theorem', 'Isabelle', ('isabelle',), ('*.thy',), ('text/x-isabelle',)), + 'JLexer': ('pip._vendor.pygments.lexers.j', 'J', ('j',), ('*.ijs',), ('text/x-j',)), + 'JMESPathLexer': ('pip._vendor.pygments.lexers.jmespath', 'JMESPath', ('jmespath', 'jp'), ('*.jp',), ()), + 'JSLTLexer': ('pip._vendor.pygments.lexers.jslt', 'JSLT', ('jslt',), ('*.jslt',), ('text/x-jslt',)), + 'JagsLexer': ('pip._vendor.pygments.lexers.modeling', 'JAGS', ('jags',), ('*.jag', '*.bug'), ()), + 'JanetLexer': ('pip._vendor.pygments.lexers.lisp', 'Janet', ('janet',), ('*.janet', '*.jdn'), ('text/x-janet', 'application/x-janet')), + 'JasminLexer': ('pip._vendor.pygments.lexers.jvm', 'Jasmin', ('jasmin', 'jasminxt'), ('*.j',), ()), + 'JavaLexer': ('pip._vendor.pygments.lexers.jvm', 'Java', ('java',), ('*.java',), ('text/x-java',)), + 'JavascriptDjangoLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Django/Jinja', ('javascript+django', 'js+django', 'javascript+jinja', 'js+jinja'), ('*.js.j2', '*.js.jinja2'), ('application/x-javascript+django', 'application/x-javascript+jinja', 'text/x-javascript+django', 'text/x-javascript+jinja', 'text/javascript+django', 'text/javascript+jinja')), + 'JavascriptErbLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Ruby', ('javascript+ruby', 'js+ruby', 'javascript+erb', 'js+erb'), (), ('application/x-javascript+ruby', 'text/x-javascript+ruby', 'text/javascript+ruby')), + 'JavascriptGenshiLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Genshi Text', ('js+genshitext', 'js+genshi', 'javascript+genshitext', 'javascript+genshi'), (), ('application/x-javascript+genshi', 'text/x-javascript+genshi', 'text/javascript+genshi')), + 'JavascriptLexer': ('pip._vendor.pygments.lexers.javascript', 'JavaScript', ('javascript', 'js'), ('*.js', '*.jsm', '*.mjs', '*.cjs'), ('application/javascript', 'application/x-javascript', 'text/x-javascript', 'text/javascript')), + 'JavascriptPhpLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+PHP', ('javascript+php', 'js+php'), (), ('application/x-javascript+php', 'text/x-javascript+php', 'text/javascript+php')), + 'JavascriptSmartyLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Smarty', ('javascript+smarty', 'js+smarty'), (), ('application/x-javascript+smarty', 'text/x-javascript+smarty', 'text/javascript+smarty')), + 'JavascriptUL4Lexer': ('pip._vendor.pygments.lexers.ul4', 'Javascript+UL4', ('js+ul4',), ('*.jsul4',), ()), + 'JclLexer': ('pip._vendor.pygments.lexers.scripting', 'JCL', ('jcl',), ('*.jcl',), ('text/x-jcl',)), + 'JsgfLexer': ('pip._vendor.pygments.lexers.grammar_notation', 'JSGF', ('jsgf',), ('*.jsgf',), ('application/jsgf', 'application/x-jsgf', 'text/jsgf')), + 'Json5Lexer': ('pip._vendor.pygments.lexers.json5', 'JSON5', ('json5',), ('*.json5',), ()), + 'JsonBareObjectLexer': ('pip._vendor.pygments.lexers.data', 'JSONBareObject', (), (), ()), + 'JsonLdLexer': ('pip._vendor.pygments.lexers.data', 'JSON-LD', ('jsonld', 'json-ld'), ('*.jsonld',), ('application/ld+json',)), + 'JsonLexer': ('pip._vendor.pygments.lexers.data', 'JSON', ('json', 'json-object'), ('*.json', '*.jsonl', '*.ndjson', 'Pipfile.lock'), ('application/json', 'application/json-object', 'application/x-ndjson', 'application/jsonl', 'application/json-seq')), + 'JsonnetLexer': ('pip._vendor.pygments.lexers.jsonnet', 'Jsonnet', ('jsonnet',), ('*.jsonnet', '*.libsonnet'), ()), + 'JspLexer': ('pip._vendor.pygments.lexers.templates', 'Java Server Page', ('jsp',), ('*.jsp',), ('application/x-jsp',)), + 'JsxLexer': ('pip._vendor.pygments.lexers.jsx', 'JSX', ('jsx', 'react'), ('*.jsx', '*.react'), ('text/jsx', 'text/typescript-jsx')), + 'JuliaConsoleLexer': ('pip._vendor.pygments.lexers.julia', 'Julia console', ('jlcon', 'julia-repl'), (), ()), + 'JuliaLexer': ('pip._vendor.pygments.lexers.julia', 'Julia', ('julia', 'jl'), ('*.jl',), ('text/x-julia', 'application/x-julia')), + 'JuttleLexer': ('pip._vendor.pygments.lexers.javascript', 'Juttle', ('juttle',), ('*.juttle',), ('application/juttle', 'application/x-juttle', 'text/x-juttle', 'text/juttle')), + 'KLexer': ('pip._vendor.pygments.lexers.q', 'K', ('k',), ('*.k',), ()), + 'KalLexer': ('pip._vendor.pygments.lexers.javascript', 'Kal', ('kal',), ('*.kal',), ('text/kal', 'application/kal')), + 'KconfigLexer': ('pip._vendor.pygments.lexers.configs', 'Kconfig', ('kconfig', 'menuconfig', 'linux-config', 'kernel-config'), ('Kconfig*', '*Config.in*', 'external.in*', 'standard-modules.in'), ('text/x-kconfig',)), + 'KernelLogLexer': ('pip._vendor.pygments.lexers.textfmts', 'Kernel log', ('kmsg', 'dmesg'), ('*.kmsg', '*.dmesg'), ()), + 'KokaLexer': ('pip._vendor.pygments.lexers.haskell', 'Koka', ('koka',), ('*.kk', '*.kki'), ('text/x-koka',)), + 'KotlinLexer': ('pip._vendor.pygments.lexers.jvm', 'Kotlin', ('kotlin',), ('*.kt', '*.kts'), ('text/x-kotlin',)), + 'KuinLexer': ('pip._vendor.pygments.lexers.kuin', 'Kuin', ('kuin',), ('*.kn',), ()), + 'KustoLexer': ('pip._vendor.pygments.lexers.kusto', 'Kusto', ('kql', 'kusto'), ('*.kql', '*.kusto', '.csl'), ()), + 'LSLLexer': ('pip._vendor.pygments.lexers.scripting', 'LSL', ('lsl',), ('*.lsl',), ('text/x-lsl',)), + 'LassoCssLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+Lasso', ('css+lasso',), (), ('text/css+lasso',)), + 'LassoHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Lasso', ('html+lasso',), (), ('text/html+lasso', 'application/x-httpd-lasso', 'application/x-httpd-lasso[89]')), + 'LassoJavascriptLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Lasso', ('javascript+lasso', 'js+lasso'), (), ('application/x-javascript+lasso', 'text/x-javascript+lasso', 'text/javascript+lasso')), + 'LassoLexer': ('pip._vendor.pygments.lexers.javascript', 'Lasso', ('lasso', 'lassoscript'), ('*.lasso', '*.lasso[89]'), ('text/x-lasso',)), + 'LassoXmlLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Lasso', ('xml+lasso',), (), ('application/xml+lasso',)), + 'LdaprcLexer': ('pip._vendor.pygments.lexers.ldap', 'LDAP configuration file', ('ldapconf', 'ldaprc'), ('.ldaprc', 'ldaprc', 'ldap.conf'), ('text/x-ldapconf',)), + 'LdifLexer': ('pip._vendor.pygments.lexers.ldap', 'LDIF', ('ldif',), ('*.ldif',), ('text/x-ldif',)), + 'Lean3Lexer': ('pip._vendor.pygments.lexers.lean', 'Lean', ('lean', 'lean3'), ('*.lean',), ('text/x-lean', 'text/x-lean3')), + 'Lean4Lexer': ('pip._vendor.pygments.lexers.lean', 'Lean4', ('lean4',), ('*.lean',), ('text/x-lean4',)), + 'LessCssLexer': ('pip._vendor.pygments.lexers.css', 'LessCss', ('less',), ('*.less',), ('text/x-less-css',)), + 'LighttpdConfLexer': ('pip._vendor.pygments.lexers.configs', 'Lighttpd configuration file', ('lighttpd', 'lighty'), ('lighttpd.conf',), ('text/x-lighttpd-conf',)), + 'LilyPondLexer': ('pip._vendor.pygments.lexers.lilypond', 'LilyPond', ('lilypond',), ('*.ly',), ()), + 'LimboLexer': ('pip._vendor.pygments.lexers.inferno', 'Limbo', ('limbo',), ('*.b',), ('text/limbo',)), + 'LiquidLexer': ('pip._vendor.pygments.lexers.templates', 'liquid', ('liquid',), ('*.liquid',), ()), + 'LiterateAgdaLexer': ('pip._vendor.pygments.lexers.haskell', 'Literate Agda', ('literate-agda', 'lagda'), ('*.lagda',), ('text/x-literate-agda',)), + 'LiterateCryptolLexer': ('pip._vendor.pygments.lexers.haskell', 'Literate Cryptol', ('literate-cryptol', 'lcryptol', 'lcry'), ('*.lcry',), ('text/x-literate-cryptol',)), + 'LiterateHaskellLexer': ('pip._vendor.pygments.lexers.haskell', 'Literate Haskell', ('literate-haskell', 'lhaskell', 'lhs'), ('*.lhs',), ('text/x-literate-haskell',)), + 'LiterateIdrisLexer': ('pip._vendor.pygments.lexers.haskell', 'Literate Idris', ('literate-idris', 'lidris', 'lidr'), ('*.lidr',), ('text/x-literate-idris',)), + 'LiveScriptLexer': ('pip._vendor.pygments.lexers.javascript', 'LiveScript', ('livescript', 'live-script'), ('*.ls',), ('text/livescript',)), + 'LlvmLexer': ('pip._vendor.pygments.lexers.asm', 'LLVM', ('llvm',), ('*.ll',), ('text/x-llvm',)), + 'LlvmMirBodyLexer': ('pip._vendor.pygments.lexers.asm', 'LLVM-MIR Body', ('llvm-mir-body',), (), ()), + 'LlvmMirLexer': ('pip._vendor.pygments.lexers.asm', 'LLVM-MIR', ('llvm-mir',), ('*.mir',), ()), + 'LogosLexer': ('pip._vendor.pygments.lexers.objective', 'Logos', ('logos',), ('*.x', '*.xi', '*.xm', '*.xmi'), ('text/x-logos',)), + 'LogtalkLexer': ('pip._vendor.pygments.lexers.prolog', 'Logtalk', ('logtalk',), ('*.lgt', '*.logtalk'), ('text/x-logtalk',)), + 'LuaLexer': ('pip._vendor.pygments.lexers.scripting', 'Lua', ('lua',), ('*.lua', '*.wlua'), ('text/x-lua', 'application/x-lua')), + 'LuauLexer': ('pip._vendor.pygments.lexers.scripting', 'Luau', ('luau',), ('*.luau',), ()), + 'MCFunctionLexer': ('pip._vendor.pygments.lexers.minecraft', 'MCFunction', ('mcfunction', 'mcf'), ('*.mcfunction',), ('text/mcfunction',)), + 'MCSchemaLexer': ('pip._vendor.pygments.lexers.minecraft', 'MCSchema', ('mcschema',), ('*.mcschema',), ('text/mcschema',)), + 'MIMELexer': ('pip._vendor.pygments.lexers.mime', 'MIME', ('mime',), (), ('multipart/mixed', 'multipart/related', 'multipart/alternative')), + 'MIPSLexer': ('pip._vendor.pygments.lexers.mips', 'MIPS', ('mips',), ('*.mips', '*.MIPS'), ()), + 'MOOCodeLexer': ('pip._vendor.pygments.lexers.scripting', 'MOOCode', ('moocode', 'moo'), ('*.moo',), ('text/x-moocode',)), + 'MSDOSSessionLexer': ('pip._vendor.pygments.lexers.shell', 'MSDOS Session', ('doscon',), (), ()), + 'Macaulay2Lexer': ('pip._vendor.pygments.lexers.macaulay2', 'Macaulay2', ('macaulay2',), ('*.m2',), ()), + 'MakefileLexer': ('pip._vendor.pygments.lexers.make', 'Makefile', ('make', 'makefile', 'mf', 'bsdmake'), ('*.mak', '*.mk', 'Makefile', 'makefile', 'Makefile.*', 'GNUmakefile'), ('text/x-makefile',)), + 'MakoCssLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+Mako', ('css+mako',), (), ('text/css+mako',)), + 'MakoHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Mako', ('html+mako',), (), ('text/html+mako',)), + 'MakoJavascriptLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Mako', ('javascript+mako', 'js+mako'), (), ('application/x-javascript+mako', 'text/x-javascript+mako', 'text/javascript+mako')), + 'MakoLexer': ('pip._vendor.pygments.lexers.templates', 'Mako', ('mako',), ('*.mao',), ('application/x-mako',)), + 'MakoXmlLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Mako', ('xml+mako',), (), ('application/xml+mako',)), + 'MapleLexer': ('pip._vendor.pygments.lexers.maple', 'Maple', ('maple',), ('*.mpl', '*.mi', '*.mm'), ('text/x-maple',)), + 'MaqlLexer': ('pip._vendor.pygments.lexers.business', 'MAQL', ('maql',), ('*.maql',), ('text/x-gooddata-maql', 'application/x-gooddata-maql')), + 'MarkdownLexer': ('pip._vendor.pygments.lexers.markup', 'Markdown', ('markdown', 'md'), ('*.md', '*.markdown'), ('text/x-markdown',)), + 'MaskLexer': ('pip._vendor.pygments.lexers.javascript', 'Mask', ('mask',), ('*.mask',), ('text/x-mask',)), + 'MasonLexer': ('pip._vendor.pygments.lexers.templates', 'Mason', ('mason',), ('*.m', '*.mhtml', '*.mc', '*.mi', 'autohandler', 'dhandler'), ('application/x-mason',)), + 'MathematicaLexer': ('pip._vendor.pygments.lexers.algebra', 'Mathematica', ('mathematica', 'mma', 'nb'), ('*.nb', '*.cdf', '*.nbp', '*.ma'), ('application/mathematica', 'application/vnd.wolfram.mathematica', 'application/vnd.wolfram.mathematica.package', 'application/vnd.wolfram.cdf')), + 'MatlabLexer': ('pip._vendor.pygments.lexers.matlab', 'Matlab', ('matlab',), ('*.m',), ('text/matlab',)), + 'MatlabSessionLexer': ('pip._vendor.pygments.lexers.matlab', 'Matlab session', ('matlabsession',), (), ()), + 'MaximaLexer': ('pip._vendor.pygments.lexers.maxima', 'Maxima', ('maxima', 'macsyma'), ('*.mac', '*.max'), ()), + 'MesonLexer': ('pip._vendor.pygments.lexers.meson', 'Meson', ('meson', 'meson.build'), ('meson.build', 'meson_options.txt'), ('text/x-meson',)), + 'MiniDLexer': ('pip._vendor.pygments.lexers.d', 'MiniD', ('minid',), (), ('text/x-minidsrc',)), + 'MiniScriptLexer': ('pip._vendor.pygments.lexers.scripting', 'MiniScript', ('miniscript', 'ms'), ('*.ms',), ('text/x-minicript', 'application/x-miniscript')), + 'ModelicaLexer': ('pip._vendor.pygments.lexers.modeling', 'Modelica', ('modelica',), ('*.mo',), ('text/x-modelica',)), + 'Modula2Lexer': ('pip._vendor.pygments.lexers.modula2', 'Modula-2', ('modula2', 'm2'), ('*.def', '*.mod'), ('text/x-modula2',)), + 'MoinWikiLexer': ('pip._vendor.pygments.lexers.markup', 'MoinMoin/Trac Wiki markup', ('trac-wiki', 'moin'), (), ('text/x-trac-wiki',)), + 'MojoLexer': ('pip._vendor.pygments.lexers.mojo', 'Mojo', ('mojo', '🔥'), ('*.mojo', '*.🔥'), ('text/x-mojo', 'application/x-mojo')), + 'MonkeyLexer': ('pip._vendor.pygments.lexers.basic', 'Monkey', ('monkey',), ('*.monkey',), ('text/x-monkey',)), + 'MonteLexer': ('pip._vendor.pygments.lexers.monte', 'Monte', ('monte',), ('*.mt',), ()), + 'MoonScriptLexer': ('pip._vendor.pygments.lexers.scripting', 'MoonScript', ('moonscript', 'moon'), ('*.moon',), ('text/x-moonscript', 'application/x-moonscript')), + 'MoselLexer': ('pip._vendor.pygments.lexers.mosel', 'Mosel', ('mosel',), ('*.mos',), ()), + 'MozPreprocCssLexer': ('pip._vendor.pygments.lexers.markup', 'CSS+mozpreproc', ('css+mozpreproc',), ('*.css.in',), ()), + 'MozPreprocHashLexer': ('pip._vendor.pygments.lexers.markup', 'mozhashpreproc', ('mozhashpreproc',), (), ()), + 'MozPreprocJavascriptLexer': ('pip._vendor.pygments.lexers.markup', 'Javascript+mozpreproc', ('javascript+mozpreproc',), ('*.js.in',), ()), + 'MozPreprocPercentLexer': ('pip._vendor.pygments.lexers.markup', 'mozpercentpreproc', ('mozpercentpreproc',), (), ()), + 'MozPreprocXulLexer': ('pip._vendor.pygments.lexers.markup', 'XUL+mozpreproc', ('xul+mozpreproc',), ('*.xul.in',), ()), + 'MqlLexer': ('pip._vendor.pygments.lexers.c_like', 'MQL', ('mql', 'mq4', 'mq5', 'mql4', 'mql5'), ('*.mq4', '*.mq5', '*.mqh'), ('text/x-mql',)), + 'MscgenLexer': ('pip._vendor.pygments.lexers.dsls', 'Mscgen', ('mscgen', 'msc'), ('*.msc',), ()), + 'MuPADLexer': ('pip._vendor.pygments.lexers.algebra', 'MuPAD', ('mupad',), ('*.mu',), ()), + 'MxmlLexer': ('pip._vendor.pygments.lexers.actionscript', 'MXML', ('mxml',), ('*.mxml',), ()), + 'MySqlLexer': ('pip._vendor.pygments.lexers.sql', 'MySQL', ('mysql',), (), ('text/x-mysql',)), + 'MyghtyCssLexer': ('pip._vendor.pygments.lexers.templates', 'CSS+Myghty', ('css+myghty',), (), ('text/css+myghty',)), + 'MyghtyHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Myghty', ('html+myghty',), (), ('text/html+myghty',)), + 'MyghtyJavascriptLexer': ('pip._vendor.pygments.lexers.templates', 'JavaScript+Myghty', ('javascript+myghty', 'js+myghty'), (), ('application/x-javascript+myghty', 'text/x-javascript+myghty', 'text/javascript+mygthy')), + 'MyghtyLexer': ('pip._vendor.pygments.lexers.templates', 'Myghty', ('myghty',), ('*.myt', 'autodelegate'), ('application/x-myghty',)), + 'MyghtyXmlLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Myghty', ('xml+myghty',), (), ('application/xml+myghty',)), + 'NCLLexer': ('pip._vendor.pygments.lexers.ncl', 'NCL', ('ncl',), ('*.ncl',), ('text/ncl',)), + 'NSISLexer': ('pip._vendor.pygments.lexers.installers', 'NSIS', ('nsis', 'nsi', 'nsh'), ('*.nsi', '*.nsh'), ('text/x-nsis',)), + 'NasmLexer': ('pip._vendor.pygments.lexers.asm', 'NASM', ('nasm',), ('*.asm', '*.ASM', '*.nasm'), ('text/x-nasm',)), + 'NasmObjdumpLexer': ('pip._vendor.pygments.lexers.asm', 'objdump-nasm', ('objdump-nasm',), ('*.objdump-intel',), ('text/x-nasm-objdump',)), + 'NemerleLexer': ('pip._vendor.pygments.lexers.dotnet', 'Nemerle', ('nemerle',), ('*.n',), ('text/x-nemerle',)), + 'NesCLexer': ('pip._vendor.pygments.lexers.c_like', 'nesC', ('nesc',), ('*.nc',), ('text/x-nescsrc',)), + 'NestedTextLexer': ('pip._vendor.pygments.lexers.configs', 'NestedText', ('nestedtext', 'nt'), ('*.nt',), ()), + 'NewLispLexer': ('pip._vendor.pygments.lexers.lisp', 'NewLisp', ('newlisp',), ('*.lsp', '*.nl', '*.kif'), ('text/x-newlisp', 'application/x-newlisp')), + 'NewspeakLexer': ('pip._vendor.pygments.lexers.smalltalk', 'Newspeak', ('newspeak',), ('*.ns2',), ('text/x-newspeak',)), + 'NginxConfLexer': ('pip._vendor.pygments.lexers.configs', 'Nginx configuration file', ('nginx',), ('nginx.conf',), ('text/x-nginx-conf',)), + 'NimrodLexer': ('pip._vendor.pygments.lexers.nimrod', 'Nimrod', ('nimrod', 'nim'), ('*.nim', '*.nimrod'), ('text/x-nim',)), + 'NitLexer': ('pip._vendor.pygments.lexers.nit', 'Nit', ('nit',), ('*.nit',), ()), + 'NixLexer': ('pip._vendor.pygments.lexers.nix', 'Nix', ('nixos', 'nix'), ('*.nix',), ('text/x-nix',)), + 'NodeConsoleLexer': ('pip._vendor.pygments.lexers.javascript', 'Node.js REPL console session', ('nodejsrepl',), (), ('text/x-nodejsrepl',)), + 'NotmuchLexer': ('pip._vendor.pygments.lexers.textfmts', 'Notmuch', ('notmuch',), (), ()), + 'NuSMVLexer': ('pip._vendor.pygments.lexers.smv', 'NuSMV', ('nusmv',), ('*.smv',), ()), + 'NumPyLexer': ('pip._vendor.pygments.lexers.python', 'NumPy', ('numpy',), (), ()), + 'NumbaIRLexer': ('pip._vendor.pygments.lexers.numbair', 'Numba_IR', ('numba_ir', 'numbair'), ('*.numba_ir',), ('text/x-numba_ir', 'text/x-numbair')), + 'ObjdumpLexer': ('pip._vendor.pygments.lexers.asm', 'objdump', ('objdump',), ('*.objdump',), ('text/x-objdump',)), + 'ObjectiveCLexer': ('pip._vendor.pygments.lexers.objective', 'Objective-C', ('objective-c', 'objectivec', 'obj-c', 'objc'), ('*.m', '*.h'), ('text/x-objective-c',)), + 'ObjectiveCppLexer': ('pip._vendor.pygments.lexers.objective', 'Objective-C++', ('objective-c++', 'objectivec++', 'obj-c++', 'objc++'), ('*.mm', '*.hh'), ('text/x-objective-c++',)), + 'ObjectiveJLexer': ('pip._vendor.pygments.lexers.javascript', 'Objective-J', ('objective-j', 'objectivej', 'obj-j', 'objj'), ('*.j',), ('text/x-objective-j',)), + 'OcamlLexer': ('pip._vendor.pygments.lexers.ml', 'OCaml', ('ocaml',), ('*.ml', '*.mli', '*.mll', '*.mly'), ('text/x-ocaml',)), + 'OctaveLexer': ('pip._vendor.pygments.lexers.matlab', 'Octave', ('octave',), ('*.m',), ('text/octave',)), + 'OdinLexer': ('pip._vendor.pygments.lexers.archetype', 'ODIN', ('odin',), ('*.odin',), ('text/odin',)), + 'OmgIdlLexer': ('pip._vendor.pygments.lexers.c_like', 'OMG Interface Definition Language', ('omg-idl',), ('*.idl', '*.pidl'), ()), + 'OocLexer': ('pip._vendor.pygments.lexers.ooc', 'Ooc', ('ooc',), ('*.ooc',), ('text/x-ooc',)), + 'OpaLexer': ('pip._vendor.pygments.lexers.ml', 'Opa', ('opa',), ('*.opa',), ('text/x-opa',)), + 'OpenEdgeLexer': ('pip._vendor.pygments.lexers.business', 'OpenEdge ABL', ('openedge', 'abl', 'progress'), ('*.p', '*.cls'), ('text/x-openedge', 'application/x-openedge')), + 'OpenScadLexer': ('pip._vendor.pygments.lexers.openscad', 'OpenSCAD', ('openscad',), ('*.scad',), ('application/x-openscad',)), + 'OrgLexer': ('pip._vendor.pygments.lexers.markup', 'Org Mode', ('org', 'orgmode', 'org-mode'), ('*.org',), ('text/org',)), + 'OutputLexer': ('pip._vendor.pygments.lexers.special', 'Text output', ('output',), (), ()), + 'PacmanConfLexer': ('pip._vendor.pygments.lexers.configs', 'PacmanConf', ('pacmanconf',), ('pacman.conf',), ()), + 'PanLexer': ('pip._vendor.pygments.lexers.dsls', 'Pan', ('pan',), ('*.pan',), ()), + 'ParaSailLexer': ('pip._vendor.pygments.lexers.parasail', 'ParaSail', ('parasail',), ('*.psi', '*.psl'), ('text/x-parasail',)), + 'PawnLexer': ('pip._vendor.pygments.lexers.pawn', 'Pawn', ('pawn',), ('*.p', '*.pwn', '*.inc'), ('text/x-pawn',)), + 'PddlLexer': ('pip._vendor.pygments.lexers.pddl', 'PDDL', ('pddl',), ('*.pddl',), ()), + 'PegLexer': ('pip._vendor.pygments.lexers.grammar_notation', 'PEG', ('peg',), ('*.peg',), ('text/x-peg',)), + 'Perl6Lexer': ('pip._vendor.pygments.lexers.perl', 'Perl6', ('perl6', 'pl6', 'raku'), ('*.pl', '*.pm', '*.nqp', '*.p6', '*.6pl', '*.p6l', '*.pl6', '*.6pm', '*.p6m', '*.pm6', '*.t', '*.raku', '*.rakumod', '*.rakutest', '*.rakudoc'), ('text/x-perl6', 'application/x-perl6')), + 'PerlLexer': ('pip._vendor.pygments.lexers.perl', 'Perl', ('perl', 'pl'), ('*.pl', '*.pm', '*.t', '*.perl'), ('text/x-perl', 'application/x-perl')), + 'PhixLexer': ('pip._vendor.pygments.lexers.phix', 'Phix', ('phix',), ('*.exw',), ('text/x-phix',)), + 'PhpLexer': ('pip._vendor.pygments.lexers.php', 'PHP', ('php', 'php3', 'php4', 'php5'), ('*.php', '*.php[345]', '*.inc'), ('text/x-php',)), + 'PigLexer': ('pip._vendor.pygments.lexers.jvm', 'Pig', ('pig',), ('*.pig',), ('text/x-pig',)), + 'PikeLexer': ('pip._vendor.pygments.lexers.c_like', 'Pike', ('pike',), ('*.pike', '*.pmod'), ('text/x-pike',)), + 'PkgConfigLexer': ('pip._vendor.pygments.lexers.configs', 'PkgConfig', ('pkgconfig',), ('*.pc',), ()), + 'PlPgsqlLexer': ('pip._vendor.pygments.lexers.sql', 'PL/pgSQL', ('plpgsql',), (), ('text/x-plpgsql',)), + 'PointlessLexer': ('pip._vendor.pygments.lexers.pointless', 'Pointless', ('pointless',), ('*.ptls',), ()), + 'PonyLexer': ('pip._vendor.pygments.lexers.pony', 'Pony', ('pony',), ('*.pony',), ()), + 'PortugolLexer': ('pip._vendor.pygments.lexers.pascal', 'Portugol', ('portugol',), ('*.alg', '*.portugol'), ()), + 'PostScriptLexer': ('pip._vendor.pygments.lexers.graphics', 'PostScript', ('postscript', 'postscr'), ('*.ps', '*.eps'), ('application/postscript',)), + 'PostgresConsoleLexer': ('pip._vendor.pygments.lexers.sql', 'PostgreSQL console (psql)', ('psql', 'postgresql-console', 'postgres-console'), (), ('text/x-postgresql-psql',)), + 'PostgresExplainLexer': ('pip._vendor.pygments.lexers.sql', 'PostgreSQL EXPLAIN dialect', ('postgres-explain',), ('*.explain',), ('text/x-postgresql-explain',)), + 'PostgresLexer': ('pip._vendor.pygments.lexers.sql', 'PostgreSQL SQL dialect', ('postgresql', 'postgres'), (), ('text/x-postgresql',)), + 'PovrayLexer': ('pip._vendor.pygments.lexers.graphics', 'POVRay', ('pov',), ('*.pov', '*.inc'), ('text/x-povray',)), + 'PowerShellLexer': ('pip._vendor.pygments.lexers.shell', 'PowerShell', ('powershell', 'pwsh', 'posh', 'ps1', 'psm1'), ('*.ps1', '*.psm1'), ('text/x-powershell',)), + 'PowerShellSessionLexer': ('pip._vendor.pygments.lexers.shell', 'PowerShell Session', ('pwsh-session', 'ps1con'), (), ()), + 'PraatLexer': ('pip._vendor.pygments.lexers.praat', 'Praat', ('praat',), ('*.praat', '*.proc', '*.psc'), ()), + 'ProcfileLexer': ('pip._vendor.pygments.lexers.procfile', 'Procfile', ('procfile',), ('Procfile',), ()), + 'PrologLexer': ('pip._vendor.pygments.lexers.prolog', 'Prolog', ('prolog',), ('*.ecl', '*.prolog', '*.pro', '*.pl'), ('text/x-prolog',)), + 'PromQLLexer': ('pip._vendor.pygments.lexers.promql', 'PromQL', ('promql',), ('*.promql',), ()), + 'PromelaLexer': ('pip._vendor.pygments.lexers.c_like', 'Promela', ('promela',), ('*.pml', '*.prom', '*.prm', '*.promela', '*.pr', '*.pm'), ('text/x-promela',)), + 'PropertiesLexer': ('pip._vendor.pygments.lexers.configs', 'Properties', ('properties', 'jproperties'), ('*.properties',), ('text/x-java-properties',)), + 'ProtoBufLexer': ('pip._vendor.pygments.lexers.dsls', 'Protocol Buffer', ('protobuf', 'proto'), ('*.proto',), ()), + 'PrqlLexer': ('pip._vendor.pygments.lexers.prql', 'PRQL', ('prql',), ('*.prql',), ('application/prql', 'application/x-prql')), + 'PsyshConsoleLexer': ('pip._vendor.pygments.lexers.php', 'PsySH console session for PHP', ('psysh',), (), ()), + 'PtxLexer': ('pip._vendor.pygments.lexers.ptx', 'PTX', ('ptx',), ('*.ptx',), ('text/x-ptx',)), + 'PugLexer': ('pip._vendor.pygments.lexers.html', 'Pug', ('pug', 'jade'), ('*.pug', '*.jade'), ('text/x-pug', 'text/x-jade')), + 'PuppetLexer': ('pip._vendor.pygments.lexers.dsls', 'Puppet', ('puppet',), ('*.pp',), ()), + 'PyPyLogLexer': ('pip._vendor.pygments.lexers.console', 'PyPy Log', ('pypylog', 'pypy'), ('*.pypylog',), ('application/x-pypylog',)), + 'Python2Lexer': ('pip._vendor.pygments.lexers.python', 'Python 2.x', ('python2', 'py2'), (), ('text/x-python2', 'application/x-python2')), + 'Python2TracebackLexer': ('pip._vendor.pygments.lexers.python', 'Python 2.x Traceback', ('py2tb',), ('*.py2tb',), ('text/x-python2-traceback',)), + 'PythonConsoleLexer': ('pip._vendor.pygments.lexers.python', 'Python console session', ('pycon', 'python-console'), (), ('text/x-python-doctest',)), + 'PythonLexer': ('pip._vendor.pygments.lexers.python', 'Python', ('python', 'py', 'sage', 'python3', 'py3', 'bazel', 'starlark', 'pyi'), ('*.py', '*.pyw', '*.pyi', '*.jy', '*.sage', '*.sc', 'SConstruct', 'SConscript', '*.bzl', 'BUCK', 'BUILD', 'BUILD.bazel', 'WORKSPACE', '*.tac'), ('text/x-python', 'application/x-python', 'text/x-python3', 'application/x-python3')), + 'PythonTracebackLexer': ('pip._vendor.pygments.lexers.python', 'Python Traceback', ('pytb', 'py3tb'), ('*.pytb', '*.py3tb'), ('text/x-python-traceback', 'text/x-python3-traceback')), + 'PythonUL4Lexer': ('pip._vendor.pygments.lexers.ul4', 'Python+UL4', ('py+ul4',), ('*.pyul4',), ()), + 'QBasicLexer': ('pip._vendor.pygments.lexers.basic', 'QBasic', ('qbasic', 'basic'), ('*.BAS', '*.bas'), ('text/basic',)), + 'QLexer': ('pip._vendor.pygments.lexers.q', 'Q', ('q',), ('*.q',), ()), + 'QVToLexer': ('pip._vendor.pygments.lexers.qvt', 'QVTO', ('qvto', 'qvt'), ('*.qvto',), ()), + 'QlikLexer': ('pip._vendor.pygments.lexers.qlik', 'Qlik', ('qlik', 'qlikview', 'qliksense', 'qlikscript'), ('*.qvs', '*.qvw'), ()), + 'QmlLexer': ('pip._vendor.pygments.lexers.webmisc', 'QML', ('qml', 'qbs'), ('*.qml', '*.qbs'), ('application/x-qml', 'application/x-qt.qbs+qml')), + 'RConsoleLexer': ('pip._vendor.pygments.lexers.r', 'RConsole', ('rconsole', 'rout'), ('*.Rout',), ()), + 'RNCCompactLexer': ('pip._vendor.pygments.lexers.rnc', 'Relax-NG Compact', ('rng-compact', 'rnc'), ('*.rnc',), ()), + 'RPMSpecLexer': ('pip._vendor.pygments.lexers.installers', 'RPMSpec', ('spec',), ('*.spec',), ('text/x-rpm-spec',)), + 'RacketLexer': ('pip._vendor.pygments.lexers.lisp', 'Racket', ('racket', 'rkt'), ('*.rkt', '*.rktd', '*.rktl'), ('text/x-racket', 'application/x-racket')), + 'RagelCLexer': ('pip._vendor.pygments.lexers.parsers', 'Ragel in C Host', ('ragel-c',), ('*.rl',), ()), + 'RagelCppLexer': ('pip._vendor.pygments.lexers.parsers', 'Ragel in CPP Host', ('ragel-cpp',), ('*.rl',), ()), + 'RagelDLexer': ('pip._vendor.pygments.lexers.parsers', 'Ragel in D Host', ('ragel-d',), ('*.rl',), ()), + 'RagelEmbeddedLexer': ('pip._vendor.pygments.lexers.parsers', 'Embedded Ragel', ('ragel-em',), ('*.rl',), ()), + 'RagelJavaLexer': ('pip._vendor.pygments.lexers.parsers', 'Ragel in Java Host', ('ragel-java',), ('*.rl',), ()), + 'RagelLexer': ('pip._vendor.pygments.lexers.parsers', 'Ragel', ('ragel',), (), ()), + 'RagelObjectiveCLexer': ('pip._vendor.pygments.lexers.parsers', 'Ragel in Objective C Host', ('ragel-objc',), ('*.rl',), ()), + 'RagelRubyLexer': ('pip._vendor.pygments.lexers.parsers', 'Ragel in Ruby Host', ('ragel-ruby', 'ragel-rb'), ('*.rl',), ()), + 'RawTokenLexer': ('pip._vendor.pygments.lexers.special', 'Raw token data', (), (), ('application/x-pygments-tokens',)), + 'RdLexer': ('pip._vendor.pygments.lexers.r', 'Rd', ('rd',), ('*.Rd',), ('text/x-r-doc',)), + 'ReasonLexer': ('pip._vendor.pygments.lexers.ml', 'ReasonML', ('reasonml', 'reason'), ('*.re', '*.rei'), ('text/x-reasonml',)), + 'RebolLexer': ('pip._vendor.pygments.lexers.rebol', 'REBOL', ('rebol',), ('*.r', '*.r3', '*.reb'), ('text/x-rebol',)), + 'RedLexer': ('pip._vendor.pygments.lexers.rebol', 'Red', ('red', 'red/system'), ('*.red', '*.reds'), ('text/x-red', 'text/x-red-system')), + 'RedcodeLexer': ('pip._vendor.pygments.lexers.esoteric', 'Redcode', ('redcode',), ('*.cw',), ()), + 'RegeditLexer': ('pip._vendor.pygments.lexers.configs', 'reg', ('registry',), ('*.reg',), ('text/x-windows-registry',)), + 'RegoLexer': ('pip._vendor.pygments.lexers.rego', 'Rego', ('rego',), ('*.rego',), ('text/x-rego',)), + 'ResourceLexer': ('pip._vendor.pygments.lexers.resource', 'ResourceBundle', ('resourcebundle', 'resource'), (), ()), + 'RexxLexer': ('pip._vendor.pygments.lexers.scripting', 'Rexx', ('rexx', 'arexx'), ('*.rexx', '*.rex', '*.rx', '*.arexx'), ('text/x-rexx',)), + 'RhtmlLexer': ('pip._vendor.pygments.lexers.templates', 'RHTML', ('rhtml', 'html+erb', 'html+ruby'), ('*.rhtml',), ('text/html+ruby',)), + 'RideLexer': ('pip._vendor.pygments.lexers.ride', 'Ride', ('ride',), ('*.ride',), ('text/x-ride',)), + 'RitaLexer': ('pip._vendor.pygments.lexers.rita', 'Rita', ('rita',), ('*.rita',), ('text/rita',)), + 'RoboconfGraphLexer': ('pip._vendor.pygments.lexers.roboconf', 'Roboconf Graph', ('roboconf-graph',), ('*.graph',), ()), + 'RoboconfInstancesLexer': ('pip._vendor.pygments.lexers.roboconf', 'Roboconf Instances', ('roboconf-instances',), ('*.instances',), ()), + 'RobotFrameworkLexer': ('pip._vendor.pygments.lexers.robotframework', 'RobotFramework', ('robotframework',), ('*.robot', '*.resource'), ('text/x-robotframework',)), + 'RqlLexer': ('pip._vendor.pygments.lexers.sql', 'RQL', ('rql',), ('*.rql',), ('text/x-rql',)), + 'RslLexer': ('pip._vendor.pygments.lexers.dsls', 'RSL', ('rsl',), ('*.rsl',), ('text/rsl',)), + 'RstLexer': ('pip._vendor.pygments.lexers.markup', 'reStructuredText', ('restructuredtext', 'rst', 'rest'), ('*.rst', '*.rest'), ('text/x-rst', 'text/prs.fallenstein.rst')), + 'RtsLexer': ('pip._vendor.pygments.lexers.trafficscript', 'TrafficScript', ('trafficscript', 'rts'), ('*.rts',), ()), + 'RubyConsoleLexer': ('pip._vendor.pygments.lexers.ruby', 'Ruby irb session', ('rbcon', 'irb'), (), ('text/x-ruby-shellsession',)), + 'RubyLexer': ('pip._vendor.pygments.lexers.ruby', 'Ruby', ('ruby', 'rb', 'duby'), ('*.rb', '*.rbw', 'Rakefile', '*.rake', '*.gemspec', '*.rbx', '*.duby', 'Gemfile', 'Vagrantfile'), ('text/x-ruby', 'application/x-ruby')), + 'RustLexer': ('pip._vendor.pygments.lexers.rust', 'Rust', ('rust', 'rs'), ('*.rs', '*.rs.in'), ('text/rust', 'text/x-rust')), + 'SASLexer': ('pip._vendor.pygments.lexers.sas', 'SAS', ('sas',), ('*.SAS', '*.sas'), ('text/x-sas', 'text/sas', 'application/x-sas')), + 'SLexer': ('pip._vendor.pygments.lexers.r', 'S', ('splus', 's', 'r'), ('*.S', '*.R', '.Rhistory', '.Rprofile', '.Renviron'), ('text/S-plus', 'text/S', 'text/x-r-source', 'text/x-r', 'text/x-R', 'text/x-r-history', 'text/x-r-profile')), + 'SMLLexer': ('pip._vendor.pygments.lexers.ml', 'Standard ML', ('sml',), ('*.sml', '*.sig', '*.fun'), ('text/x-standardml', 'application/x-standardml')), + 'SNBTLexer': ('pip._vendor.pygments.lexers.minecraft', 'SNBT', ('snbt',), ('*.snbt',), ('text/snbt',)), + 'SarlLexer': ('pip._vendor.pygments.lexers.jvm', 'SARL', ('sarl',), ('*.sarl',), ('text/x-sarl',)), + 'SassLexer': ('pip._vendor.pygments.lexers.css', 'Sass', ('sass',), ('*.sass',), ('text/x-sass',)), + 'SaviLexer': ('pip._vendor.pygments.lexers.savi', 'Savi', ('savi',), ('*.savi',), ()), + 'ScalaLexer': ('pip._vendor.pygments.lexers.jvm', 'Scala', ('scala',), ('*.scala',), ('text/x-scala',)), + 'ScamlLexer': ('pip._vendor.pygments.lexers.html', 'Scaml', ('scaml',), ('*.scaml',), ('text/x-scaml',)), + 'ScdocLexer': ('pip._vendor.pygments.lexers.scdoc', 'scdoc', ('scdoc', 'scd'), ('*.scd', '*.scdoc'), ()), + 'SchemeLexer': ('pip._vendor.pygments.lexers.lisp', 'Scheme', ('scheme', 'scm'), ('*.scm', '*.ss'), ('text/x-scheme', 'application/x-scheme')), + 'ScilabLexer': ('pip._vendor.pygments.lexers.matlab', 'Scilab', ('scilab',), ('*.sci', '*.sce', '*.tst'), ('text/scilab',)), + 'ScssLexer': ('pip._vendor.pygments.lexers.css', 'SCSS', ('scss',), ('*.scss',), ('text/x-scss',)), + 'SedLexer': ('pip._vendor.pygments.lexers.textedit', 'Sed', ('sed', 'gsed', 'ssed'), ('*.sed', '*.[gs]sed'), ('text/x-sed',)), + 'ShExCLexer': ('pip._vendor.pygments.lexers.rdf', 'ShExC', ('shexc', 'shex'), ('*.shex',), ('text/shex',)), + 'ShenLexer': ('pip._vendor.pygments.lexers.lisp', 'Shen', ('shen',), ('*.shen',), ('text/x-shen', 'application/x-shen')), + 'SieveLexer': ('pip._vendor.pygments.lexers.sieve', 'Sieve', ('sieve',), ('*.siv', '*.sieve'), ()), + 'SilverLexer': ('pip._vendor.pygments.lexers.verification', 'Silver', ('silver',), ('*.sil', '*.vpr'), ()), + 'SingularityLexer': ('pip._vendor.pygments.lexers.configs', 'Singularity', ('singularity',), ('*.def', 'Singularity'), ()), + 'SlashLexer': ('pip._vendor.pygments.lexers.slash', 'Slash', ('slash',), ('*.sla',), ()), + 'SlimLexer': ('pip._vendor.pygments.lexers.webmisc', 'Slim', ('slim',), ('*.slim',), ('text/x-slim',)), + 'SlurmBashLexer': ('pip._vendor.pygments.lexers.shell', 'Slurm', ('slurm', 'sbatch'), ('*.sl',), ()), + 'SmaliLexer': ('pip._vendor.pygments.lexers.dalvik', 'Smali', ('smali',), ('*.smali',), ('text/smali',)), + 'SmalltalkLexer': ('pip._vendor.pygments.lexers.smalltalk', 'Smalltalk', ('smalltalk', 'squeak', 'st'), ('*.st',), ('text/x-smalltalk',)), + 'SmartGameFormatLexer': ('pip._vendor.pygments.lexers.sgf', 'SmartGameFormat', ('sgf',), ('*.sgf',), ()), + 'SmartyLexer': ('pip._vendor.pygments.lexers.templates', 'Smarty', ('smarty',), ('*.tpl',), ('application/x-smarty',)), + 'SmithyLexer': ('pip._vendor.pygments.lexers.smithy', 'Smithy', ('smithy',), ('*.smithy',), ()), + 'SnobolLexer': ('pip._vendor.pygments.lexers.snobol', 'Snobol', ('snobol',), ('*.snobol',), ('text/x-snobol',)), + 'SnowballLexer': ('pip._vendor.pygments.lexers.dsls', 'Snowball', ('snowball',), ('*.sbl',), ()), + 'SolidityLexer': ('pip._vendor.pygments.lexers.solidity', 'Solidity', ('solidity',), ('*.sol',), ()), + 'SoongLexer': ('pip._vendor.pygments.lexers.soong', 'Soong', ('androidbp', 'bp', 'soong'), ('Android.bp',), ()), + 'SophiaLexer': ('pip._vendor.pygments.lexers.sophia', 'Sophia', ('sophia',), ('*.aes',), ()), + 'SourcePawnLexer': ('pip._vendor.pygments.lexers.pawn', 'SourcePawn', ('sp',), ('*.sp',), ('text/x-sourcepawn',)), + 'SourcesListLexer': ('pip._vendor.pygments.lexers.installers', 'Debian Sourcelist', ('debsources', 'sourceslist', 'sources.list'), ('sources.list',), ()), + 'SparqlLexer': ('pip._vendor.pygments.lexers.rdf', 'SPARQL', ('sparql',), ('*.rq', '*.sparql'), ('application/sparql-query',)), + 'SpiceLexer': ('pip._vendor.pygments.lexers.spice', 'Spice', ('spice', 'spicelang'), ('*.spice',), ('text/x-spice',)), + 'SqlJinjaLexer': ('pip._vendor.pygments.lexers.templates', 'SQL+Jinja', ('sql+jinja',), ('*.sql', '*.sql.j2', '*.sql.jinja2'), ()), + 'SqlLexer': ('pip._vendor.pygments.lexers.sql', 'SQL', ('sql',), ('*.sql',), ('text/x-sql',)), + 'SqliteConsoleLexer': ('pip._vendor.pygments.lexers.sql', 'sqlite3con', ('sqlite3',), ('*.sqlite3-console',), ('text/x-sqlite3-console',)), + 'SquidConfLexer': ('pip._vendor.pygments.lexers.configs', 'SquidConf', ('squidconf', 'squid.conf', 'squid'), ('squid.conf',), ('text/x-squidconf',)), + 'SrcinfoLexer': ('pip._vendor.pygments.lexers.srcinfo', 'Srcinfo', ('srcinfo',), ('.SRCINFO',), ()), + 'SspLexer': ('pip._vendor.pygments.lexers.templates', 'Scalate Server Page', ('ssp',), ('*.ssp',), ('application/x-ssp',)), + 'StanLexer': ('pip._vendor.pygments.lexers.modeling', 'Stan', ('stan',), ('*.stan',), ()), + 'StataLexer': ('pip._vendor.pygments.lexers.stata', 'Stata', ('stata', 'do'), ('*.do', '*.ado'), ('text/x-stata', 'text/stata', 'application/x-stata')), + 'SuperColliderLexer': ('pip._vendor.pygments.lexers.supercollider', 'SuperCollider', ('supercollider', 'sc'), ('*.sc', '*.scd'), ('application/supercollider', 'text/supercollider')), + 'SwiftLexer': ('pip._vendor.pygments.lexers.objective', 'Swift', ('swift',), ('*.swift',), ('text/x-swift',)), + 'SwigLexer': ('pip._vendor.pygments.lexers.c_like', 'SWIG', ('swig',), ('*.swg', '*.i'), ('text/swig',)), + 'SystemVerilogLexer': ('pip._vendor.pygments.lexers.hdl', 'systemverilog', ('systemverilog', 'sv'), ('*.sv', '*.svh'), ('text/x-systemverilog',)), + 'SystemdLexer': ('pip._vendor.pygments.lexers.configs', 'Systemd', ('systemd',), ('*.service', '*.socket', '*.device', '*.mount', '*.automount', '*.swap', '*.target', '*.path', '*.timer', '*.slice', '*.scope'), ()), + 'TAPLexer': ('pip._vendor.pygments.lexers.testing', 'TAP', ('tap',), ('*.tap',), ()), + 'TNTLexer': ('pip._vendor.pygments.lexers.tnt', 'Typographic Number Theory', ('tnt',), ('*.tnt',), ()), + 'TOMLLexer': ('pip._vendor.pygments.lexers.configs', 'TOML', ('toml',), ('*.toml', 'Pipfile', 'poetry.lock'), ('application/toml',)), + 'TableGenLexer': ('pip._vendor.pygments.lexers.tablegen', 'TableGen', ('tablegen', 'td'), ('*.td',), ()), + 'TactLexer': ('pip._vendor.pygments.lexers.tact', 'Tact', ('tact',), ('*.tact',), ()), + 'Tads3Lexer': ('pip._vendor.pygments.lexers.int_fiction', 'TADS 3', ('tads3',), ('*.t',), ()), + 'TalLexer': ('pip._vendor.pygments.lexers.tal', 'Tal', ('tal', 'uxntal'), ('*.tal',), ('text/x-uxntal',)), + 'TasmLexer': ('pip._vendor.pygments.lexers.asm', 'TASM', ('tasm',), ('*.asm', '*.ASM', '*.tasm'), ('text/x-tasm',)), + 'TclLexer': ('pip._vendor.pygments.lexers.tcl', 'Tcl', ('tcl',), ('*.tcl', '*.rvt'), ('text/x-tcl', 'text/x-script.tcl', 'application/x-tcl')), + 'TcshLexer': ('pip._vendor.pygments.lexers.shell', 'Tcsh', ('tcsh', 'csh'), ('*.tcsh', '*.csh'), ('application/x-csh',)), + 'TcshSessionLexer': ('pip._vendor.pygments.lexers.shell', 'Tcsh Session', ('tcshcon',), (), ()), + 'TeaTemplateLexer': ('pip._vendor.pygments.lexers.templates', 'Tea', ('tea',), ('*.tea',), ('text/x-tea',)), + 'TealLexer': ('pip._vendor.pygments.lexers.teal', 'teal', ('teal',), ('*.teal',), ()), + 'TeraTermLexer': ('pip._vendor.pygments.lexers.teraterm', 'Tera Term macro', ('teratermmacro', 'teraterm', 'ttl'), ('*.ttl',), ('text/x-teratermmacro',)), + 'TermcapLexer': ('pip._vendor.pygments.lexers.configs', 'Termcap', ('termcap',), ('termcap', 'termcap.src'), ()), + 'TerminfoLexer': ('pip._vendor.pygments.lexers.configs', 'Terminfo', ('terminfo',), ('terminfo', 'terminfo.src'), ()), + 'TerraformLexer': ('pip._vendor.pygments.lexers.configs', 'Terraform', ('terraform', 'tf', 'hcl'), ('*.tf', '*.hcl'), ('application/x-tf', 'application/x-terraform')), + 'TexLexer': ('pip._vendor.pygments.lexers.markup', 'TeX', ('tex', 'latex'), ('*.tex', '*.aux', '*.toc'), ('text/x-tex', 'text/x-latex')), + 'TextLexer': ('pip._vendor.pygments.lexers.special', 'Text only', ('text',), ('*.txt',), ('text/plain',)), + 'ThingsDBLexer': ('pip._vendor.pygments.lexers.thingsdb', 'ThingsDB', ('ti', 'thingsdb'), ('*.ti',), ()), + 'ThriftLexer': ('pip._vendor.pygments.lexers.dsls', 'Thrift', ('thrift',), ('*.thrift',), ('application/x-thrift',)), + 'TiddlyWiki5Lexer': ('pip._vendor.pygments.lexers.markup', 'tiddler', ('tid',), ('*.tid',), ('text/vnd.tiddlywiki',)), + 'TlbLexer': ('pip._vendor.pygments.lexers.tlb', 'Tl-b', ('tlb',), ('*.tlb',), ()), + 'TlsLexer': ('pip._vendor.pygments.lexers.tls', 'TLS Presentation Language', ('tls',), (), ()), + 'TodotxtLexer': ('pip._vendor.pygments.lexers.textfmts', 'Todotxt', ('todotxt',), ('todo.txt', '*.todotxt'), ('text/x-todo',)), + 'TransactSqlLexer': ('pip._vendor.pygments.lexers.sql', 'Transact-SQL', ('tsql', 't-sql'), ('*.sql',), ('text/x-tsql',)), + 'TreetopLexer': ('pip._vendor.pygments.lexers.parsers', 'Treetop', ('treetop',), ('*.treetop', '*.tt'), ()), + 'TsxLexer': ('pip._vendor.pygments.lexers.jsx', 'TSX', ('tsx',), ('*.tsx',), ('text/typescript-tsx',)), + 'TurtleLexer': ('pip._vendor.pygments.lexers.rdf', 'Turtle', ('turtle',), ('*.ttl',), ('text/turtle', 'application/x-turtle')), + 'TwigHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Twig', ('html+twig',), ('*.twig',), ('text/html+twig',)), + 'TwigLexer': ('pip._vendor.pygments.lexers.templates', 'Twig', ('twig',), (), ('application/x-twig',)), + 'TypeScriptLexer': ('pip._vendor.pygments.lexers.javascript', 'TypeScript', ('typescript', 'ts'), ('*.ts',), ('application/x-typescript', 'text/x-typescript')), + 'TypoScriptCssDataLexer': ('pip._vendor.pygments.lexers.typoscript', 'TypoScriptCssData', ('typoscriptcssdata',), (), ()), + 'TypoScriptHtmlDataLexer': ('pip._vendor.pygments.lexers.typoscript', 'TypoScriptHtmlData', ('typoscripthtmldata',), (), ()), + 'TypoScriptLexer': ('pip._vendor.pygments.lexers.typoscript', 'TypoScript', ('typoscript',), ('*.typoscript',), ('text/x-typoscript',)), + 'TypstLexer': ('pip._vendor.pygments.lexers.typst', 'Typst', ('typst',), ('*.typ',), ('text/x-typst',)), + 'UL4Lexer': ('pip._vendor.pygments.lexers.ul4', 'UL4', ('ul4',), ('*.ul4',), ()), + 'UcodeLexer': ('pip._vendor.pygments.lexers.unicon', 'ucode', ('ucode',), ('*.u', '*.u1', '*.u2'), ()), + 'UniconLexer': ('pip._vendor.pygments.lexers.unicon', 'Unicon', ('unicon',), ('*.icn',), ('text/unicon',)), + 'UnixConfigLexer': ('pip._vendor.pygments.lexers.configs', 'Unix/Linux config files', ('unixconfig', 'linuxconfig'), (), ()), + 'UrbiscriptLexer': ('pip._vendor.pygments.lexers.urbi', 'UrbiScript', ('urbiscript',), ('*.u',), ('application/x-urbiscript',)), + 'UrlEncodedLexer': ('pip._vendor.pygments.lexers.html', 'urlencoded', ('urlencoded',), (), ('application/x-www-form-urlencoded',)), + 'UsdLexer': ('pip._vendor.pygments.lexers.usd', 'USD', ('usd', 'usda'), ('*.usd', '*.usda'), ()), + 'VBScriptLexer': ('pip._vendor.pygments.lexers.basic', 'VBScript', ('vbscript',), ('*.vbs', '*.VBS'), ()), + 'VCLLexer': ('pip._vendor.pygments.lexers.varnish', 'VCL', ('vcl',), ('*.vcl',), ('text/x-vclsrc',)), + 'VCLSnippetLexer': ('pip._vendor.pygments.lexers.varnish', 'VCLSnippets', ('vclsnippets', 'vclsnippet'), (), ('text/x-vclsnippet',)), + 'VCTreeStatusLexer': ('pip._vendor.pygments.lexers.console', 'VCTreeStatus', ('vctreestatus',), (), ()), + 'VGLLexer': ('pip._vendor.pygments.lexers.dsls', 'VGL', ('vgl',), ('*.rpf',), ()), + 'ValaLexer': ('pip._vendor.pygments.lexers.c_like', 'Vala', ('vala', 'vapi'), ('*.vala', '*.vapi'), ('text/x-vala',)), + 'VbNetAspxLexer': ('pip._vendor.pygments.lexers.dotnet', 'aspx-vb', ('aspx-vb',), ('*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'), ()), + 'VbNetLexer': ('pip._vendor.pygments.lexers.dotnet', 'VB.net', ('vb.net', 'vbnet', 'lobas', 'oobas', 'sobas', 'visual-basic', 'visualbasic'), ('*.vb', '*.bas'), ('text/x-vbnet', 'text/x-vba')), + 'VelocityHtmlLexer': ('pip._vendor.pygments.lexers.templates', 'HTML+Velocity', ('html+velocity',), (), ('text/html+velocity',)), + 'VelocityLexer': ('pip._vendor.pygments.lexers.templates', 'Velocity', ('velocity',), ('*.vm', '*.fhtml'), ()), + 'VelocityXmlLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Velocity', ('xml+velocity',), (), ('application/xml+velocity',)), + 'VerifpalLexer': ('pip._vendor.pygments.lexers.verifpal', 'Verifpal', ('verifpal',), ('*.vp',), ('text/x-verifpal',)), + 'VerilogLexer': ('pip._vendor.pygments.lexers.hdl', 'verilog', ('verilog', 'v'), ('*.v',), ('text/x-verilog',)), + 'VhdlLexer': ('pip._vendor.pygments.lexers.hdl', 'vhdl', ('vhdl',), ('*.vhdl', '*.vhd'), ('text/x-vhdl',)), + 'VimLexer': ('pip._vendor.pygments.lexers.textedit', 'VimL', ('vim',), ('*.vim', '.vimrc', '.exrc', '.gvimrc', '_vimrc', '_exrc', '_gvimrc', 'vimrc', 'gvimrc'), ('text/x-vim',)), + 'VisualPrologGrammarLexer': ('pip._vendor.pygments.lexers.vip', 'Visual Prolog Grammar', ('visualprologgrammar',), ('*.vipgrm',), ()), + 'VisualPrologLexer': ('pip._vendor.pygments.lexers.vip', 'Visual Prolog', ('visualprolog',), ('*.pro', '*.cl', '*.i', '*.pack', '*.ph'), ()), + 'VueLexer': ('pip._vendor.pygments.lexers.html', 'Vue', ('vue',), ('*.vue',), ()), + 'VyperLexer': ('pip._vendor.pygments.lexers.vyper', 'Vyper', ('vyper',), ('*.vy',), ()), + 'WDiffLexer': ('pip._vendor.pygments.lexers.diff', 'WDiff', ('wdiff',), ('*.wdiff',), ()), + 'WatLexer': ('pip._vendor.pygments.lexers.webassembly', 'WebAssembly', ('wast', 'wat'), ('*.wat', '*.wast'), ()), + 'WebIDLLexer': ('pip._vendor.pygments.lexers.webidl', 'Web IDL', ('webidl',), ('*.webidl',), ()), + 'WgslLexer': ('pip._vendor.pygments.lexers.wgsl', 'WebGPU Shading Language', ('wgsl',), ('*.wgsl',), ('text/wgsl',)), + 'WhileyLexer': ('pip._vendor.pygments.lexers.whiley', 'Whiley', ('whiley',), ('*.whiley',), ('text/x-whiley',)), + 'WikitextLexer': ('pip._vendor.pygments.lexers.markup', 'Wikitext', ('wikitext', 'mediawiki'), (), ('text/x-wiki',)), + 'WoWTocLexer': ('pip._vendor.pygments.lexers.wowtoc', 'World of Warcraft TOC', ('wowtoc',), ('*.toc',), ()), + 'WrenLexer': ('pip._vendor.pygments.lexers.wren', 'Wren', ('wren',), ('*.wren',), ()), + 'X10Lexer': ('pip._vendor.pygments.lexers.x10', 'X10', ('x10', 'xten'), ('*.x10',), ('text/x-x10',)), + 'XMLUL4Lexer': ('pip._vendor.pygments.lexers.ul4', 'XML+UL4', ('xml+ul4',), ('*.xmlul4',), ()), + 'XQueryLexer': ('pip._vendor.pygments.lexers.webmisc', 'XQuery', ('xquery', 'xqy', 'xq', 'xql', 'xqm'), ('*.xqy', '*.xquery', '*.xq', '*.xql', '*.xqm'), ('text/xquery', 'application/xquery')), + 'XmlDjangoLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Django/Jinja', ('xml+django', 'xml+jinja'), ('*.xml.j2', '*.xml.jinja2'), ('application/xml+django', 'application/xml+jinja')), + 'XmlErbLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Ruby', ('xml+ruby', 'xml+erb'), (), ('application/xml+ruby',)), + 'XmlLexer': ('pip._vendor.pygments.lexers.html', 'XML', ('xml',), ('*.xml', '*.xsl', '*.rss', '*.xslt', '*.xsd', '*.wsdl', '*.wsf'), ('text/xml', 'application/xml', 'image/svg+xml', 'application/rss+xml', 'application/atom+xml')), + 'XmlPhpLexer': ('pip._vendor.pygments.lexers.templates', 'XML+PHP', ('xml+php',), (), ('application/xml+php',)), + 'XmlSmartyLexer': ('pip._vendor.pygments.lexers.templates', 'XML+Smarty', ('xml+smarty',), (), ('application/xml+smarty',)), + 'XorgLexer': ('pip._vendor.pygments.lexers.xorg', 'Xorg', ('xorg.conf',), ('xorg.conf',), ()), + 'XppLexer': ('pip._vendor.pygments.lexers.dotnet', 'X++', ('xpp', 'x++'), ('*.xpp',), ()), + 'XsltLexer': ('pip._vendor.pygments.lexers.html', 'XSLT', ('xslt',), ('*.xsl', '*.xslt', '*.xpl'), ('application/xsl+xml', 'application/xslt+xml')), + 'XtendLexer': ('pip._vendor.pygments.lexers.jvm', 'Xtend', ('xtend',), ('*.xtend',), ('text/x-xtend',)), + 'XtlangLexer': ('pip._vendor.pygments.lexers.lisp', 'xtlang', ('extempore',), ('*.xtm',), ()), + 'YamlJinjaLexer': ('pip._vendor.pygments.lexers.templates', 'YAML+Jinja', ('yaml+jinja', 'salt', 'sls'), ('*.sls', '*.yaml.j2', '*.yml.j2', '*.yaml.jinja2', '*.yml.jinja2'), ('text/x-yaml+jinja', 'text/x-sls')), + 'YamlLexer': ('pip._vendor.pygments.lexers.data', 'YAML', ('yaml',), ('*.yaml', '*.yml'), ('text/x-yaml',)), + 'YangLexer': ('pip._vendor.pygments.lexers.yang', 'YANG', ('yang',), ('*.yang',), ('application/yang',)), + 'YaraLexer': ('pip._vendor.pygments.lexers.yara', 'YARA', ('yara', 'yar'), ('*.yar',), ('text/x-yara',)), + 'ZeekLexer': ('pip._vendor.pygments.lexers.dsls', 'Zeek', ('zeek', 'bro'), ('*.zeek', '*.bro'), ()), + 'ZephirLexer': ('pip._vendor.pygments.lexers.php', 'Zephir', ('zephir',), ('*.zep',), ()), + 'ZigLexer': ('pip._vendor.pygments.lexers.zig', 'Zig', ('zig',), ('*.zig',), ('text/zig',)), + 'apdlexer': ('pip._vendor.pygments.lexers.apdlexer', 'ANSYS parametric design language', ('ansys', 'apdl'), ('*.ans',), ()), +} diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py new file mode 100644 index 0000000..1b78829 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py @@ -0,0 +1,1201 @@ +""" + pygments.lexers.python + ~~~~~~~~~~~~~~~~~~~~~~ + + Lexers for Python and related languages. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import keyword + +from pip._vendor.pygments.lexer import DelegatingLexer, RegexLexer, include, \ + bygroups, using, default, words, combined, this +from pip._vendor.pygments.util import get_bool_opt, shebang_matches +from pip._vendor.pygments.token import Text, Comment, Operator, Keyword, Name, String, \ + Number, Punctuation, Generic, Other, Error, Whitespace +from pip._vendor.pygments import unistring as uni + +__all__ = ['PythonLexer', 'PythonConsoleLexer', 'PythonTracebackLexer', + 'Python2Lexer', 'Python2TracebackLexer', + 'CythonLexer', 'DgLexer', 'NumPyLexer'] + + +class PythonLexer(RegexLexer): + """ + For Python source code (version 3.x). + + .. versionchanged:: 2.5 + This is now the default ``PythonLexer``. It is still available as the + alias ``Python3Lexer``. + """ + + name = 'Python' + url = 'https://www.python.org' + aliases = ['python', 'py', 'sage', 'python3', 'py3', 'bazel', 'starlark', 'pyi'] + filenames = [ + '*.py', + '*.pyw', + # Type stubs + '*.pyi', + # Jython + '*.jy', + # Sage + '*.sage', + # SCons + '*.sc', + 'SConstruct', + 'SConscript', + # Skylark/Starlark (used by Bazel, Buck, and Pants) + '*.bzl', + 'BUCK', + 'BUILD', + 'BUILD.bazel', + 'WORKSPACE', + # Twisted Application infrastructure + '*.tac', + ] + mimetypes = ['text/x-python', 'application/x-python', + 'text/x-python3', 'application/x-python3'] + version_added = '0.10' + + uni_name = f"[{uni.xid_start}][{uni.xid_continue}]*" + + def innerstring_rules(ttype): + return [ + # the old style '%s' % (...) string formatting (still valid in Py3) + (r'%(\(\w+\))?[-#0 +]*([0-9]+|[*])?(\.([0-9]+|[*]))?' + '[hlL]?[E-GXc-giorsaux%]', String.Interpol), + # the new style '{}'.format(...) string formatting + (r'\{' + r'((\w+)((\.\w+)|(\[[^\]]+\]))*)?' # field name + r'(\![sra])?' # conversion + r'(\:(.?[<>=\^])?[-+ ]?#?0?(\d+)?,?(\.\d+)?[E-GXb-gnosx%]?)?' + r'\}', String.Interpol), + + # backslashes, quotes and formatting signs must be parsed one at a time + (r'[^\\\'"%{\n]+', ttype), + (r'[\'"\\]', ttype), + # unhandled string formatting sign + (r'%|(\{{1,2})', ttype) + # newlines are an error (use "nl" state) + ] + + def fstring_rules(ttype): + return [ + # Assuming that a '}' is the closing brace after format specifier. + # Sadly, this means that we won't detect syntax error. But it's + # more important to parse correct syntax correctly, than to + # highlight invalid syntax. + (r'\}', String.Interpol), + (r'\{', String.Interpol, 'expr-inside-fstring'), + # backslashes, quotes and formatting signs must be parsed one at a time + (r'[^\\\'"{}\n]+', ttype), + (r'[\'"\\]', ttype), + # newlines are an error (use "nl" state) + ] + + tokens = { + 'root': [ + (r'\n', Whitespace), + (r'^(\s*)([rRuUbB]{,2})("""(?:.|\n)*?""")', + bygroups(Whitespace, String.Affix, String.Doc)), + (r"^(\s*)([rRuUbB]{,2})('''(?:.|\n)*?''')", + bygroups(Whitespace, String.Affix, String.Doc)), + (r'\A#!.+$', Comment.Hashbang), + (r'#.*$', Comment.Single), + (r'\\\n', Text), + (r'\\', Text), + include('keywords'), + include('soft-keywords'), + (r'(def)((?:\s|\\\s)+)', bygroups(Keyword, Whitespace), 'funcname'), + (r'(class)((?:\s|\\\s)+)', bygroups(Keyword, Whitespace), 'classname'), + (r'(from)((?:\s|\\\s)+)', bygroups(Keyword.Namespace, Whitespace), + 'fromimport'), + (r'(import)((?:\s|\\\s)+)', bygroups(Keyword.Namespace, Whitespace), + 'import'), + include('expr'), + ], + 'expr': [ + # raw f-strings + ('(?i)(rf|fr)(""")', + bygroups(String.Affix, String.Double), + combined('rfstringescape', 'tdqf')), + ("(?i)(rf|fr)(''')", + bygroups(String.Affix, String.Single), + combined('rfstringescape', 'tsqf')), + ('(?i)(rf|fr)(")', + bygroups(String.Affix, String.Double), + combined('rfstringescape', 'dqf')), + ("(?i)(rf|fr)(')", + bygroups(String.Affix, String.Single), + combined('rfstringescape', 'sqf')), + # non-raw f-strings + ('([fF])(""")', bygroups(String.Affix, String.Double), + combined('fstringescape', 'tdqf')), + ("([fF])(''')", bygroups(String.Affix, String.Single), + combined('fstringescape', 'tsqf')), + ('([fF])(")', bygroups(String.Affix, String.Double), + combined('fstringescape', 'dqf')), + ("([fF])(')", bygroups(String.Affix, String.Single), + combined('fstringescape', 'sqf')), + # raw bytes and strings + ('(?i)(rb|br|r)(""")', + bygroups(String.Affix, String.Double), 'tdqs'), + ("(?i)(rb|br|r)(''')", + bygroups(String.Affix, String.Single), 'tsqs'), + ('(?i)(rb|br|r)(")', + bygroups(String.Affix, String.Double), 'dqs'), + ("(?i)(rb|br|r)(')", + bygroups(String.Affix, String.Single), 'sqs'), + # non-raw strings + ('([uU]?)(""")', bygroups(String.Affix, String.Double), + combined('stringescape', 'tdqs')), + ("([uU]?)(''')", bygroups(String.Affix, String.Single), + combined('stringescape', 'tsqs')), + ('([uU]?)(")', bygroups(String.Affix, String.Double), + combined('stringescape', 'dqs')), + ("([uU]?)(')", bygroups(String.Affix, String.Single), + combined('stringescape', 'sqs')), + # non-raw bytes + ('([bB])(""")', bygroups(String.Affix, String.Double), + combined('bytesescape', 'tdqs')), + ("([bB])(''')", bygroups(String.Affix, String.Single), + combined('bytesescape', 'tsqs')), + ('([bB])(")', bygroups(String.Affix, String.Double), + combined('bytesescape', 'dqs')), + ("([bB])(')", bygroups(String.Affix, String.Single), + combined('bytesescape', 'sqs')), + + (r'[^\S\n]+', Text), + include('numbers'), + (r'!=|==|<<|>>|:=|[-~+/*%=<>&^|.]', Operator), + (r'[]{}:(),;[]', Punctuation), + (r'(in|is|and|or|not)\b', Operator.Word), + include('expr-keywords'), + include('builtins'), + include('magicfuncs'), + include('magicvars'), + include('name'), + ], + 'expr-inside-fstring': [ + (r'[{([]', Punctuation, 'expr-inside-fstring-inner'), + # without format specifier + (r'(=\s*)?' # debug (https://bugs.python.org/issue36817) + r'(\![sraf])?' # conversion + r'\}', String.Interpol, '#pop'), + # with format specifier + # we'll catch the remaining '}' in the outer scope + (r'(=\s*)?' # debug (https://bugs.python.org/issue36817) + r'(\![sraf])?' # conversion + r':', String.Interpol, '#pop'), + (r'\s+', Whitespace), # allow new lines + include('expr'), + ], + 'expr-inside-fstring-inner': [ + (r'[{([]', Punctuation, 'expr-inside-fstring-inner'), + (r'[])}]', Punctuation, '#pop'), + (r'\s+', Whitespace), # allow new lines + include('expr'), + ], + 'expr-keywords': [ + # Based on https://docs.python.org/3/reference/expressions.html + (words(( + 'async for', 'await', 'else', 'for', 'if', 'lambda', + 'yield', 'yield from'), suffix=r'\b'), + Keyword), + (words(('True', 'False', 'None'), suffix=r'\b'), Keyword.Constant), + ], + 'keywords': [ + (words(( + 'assert', 'async', 'await', 'break', 'continue', 'del', 'elif', + 'else', 'except', 'finally', 'for', 'global', 'if', 'lambda', + 'pass', 'raise', 'nonlocal', 'return', 'try', 'while', 'yield', + 'yield from', 'as', 'with'), suffix=r'\b'), + Keyword), + (words(('True', 'False', 'None'), suffix=r'\b'), Keyword.Constant), + ], + 'soft-keywords': [ + # `match`, `case` and `_` soft keywords + (r'(^[ \t]*)' # at beginning of line + possible indentation + r'(match|case)\b' # a possible keyword + r'(?![ \t]*(?:' # not followed by... + r'[:,;=^&|@~)\]}]|(?:' + # characters and keywords that mean this isn't + # pattern matching (but None/True/False is ok) + r'|'.join(k for k in keyword.kwlist if k[0].islower()) + r')\b))', + bygroups(Text, Keyword), 'soft-keywords-inner'), + ], + 'soft-keywords-inner': [ + # optional `_` keyword + (r'(\s+)([^\n_]*)(_\b)', bygroups(Whitespace, using(this), Keyword)), + default('#pop') + ], + 'builtins': [ + (words(( + '__import__', 'abs', 'aiter', 'all', 'any', 'bin', 'bool', 'bytearray', + 'breakpoint', 'bytes', 'callable', 'chr', 'classmethod', 'compile', + 'complex', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', + 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', + 'hasattr', 'hash', 'hex', 'id', 'input', 'int', 'isinstance', + 'issubclass', 'iter', 'len', 'list', 'locals', 'map', 'max', + 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', + 'print', 'property', 'range', 'repr', 'reversed', 'round', 'set', + 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', + 'tuple', 'type', 'vars', 'zip'), prefix=r'(?>|[-~+/*%=<>&^|.]', Operator), + include('keywords'), + (r'(def)((?:\s|\\\s)+)', bygroups(Keyword, Whitespace), 'funcname'), + (r'(class)((?:\s|\\\s)+)', bygroups(Keyword, Whitespace), 'classname'), + (r'(from)((?:\s|\\\s)+)', bygroups(Keyword.Namespace, Whitespace), + 'fromimport'), + (r'(import)((?:\s|\\\s)+)', bygroups(Keyword.Namespace, Whitespace), + 'import'), + include('builtins'), + include('magicfuncs'), + include('magicvars'), + include('backtick'), + ('([rR]|[uUbB][rR]|[rR][uUbB])(""")', + bygroups(String.Affix, String.Double), 'tdqs'), + ("([rR]|[uUbB][rR]|[rR][uUbB])(''')", + bygroups(String.Affix, String.Single), 'tsqs'), + ('([rR]|[uUbB][rR]|[rR][uUbB])(")', + bygroups(String.Affix, String.Double), 'dqs'), + ("([rR]|[uUbB][rR]|[rR][uUbB])(')", + bygroups(String.Affix, String.Single), 'sqs'), + ('([uUbB]?)(""")', bygroups(String.Affix, String.Double), + combined('stringescape', 'tdqs')), + ("([uUbB]?)(''')", bygroups(String.Affix, String.Single), + combined('stringescape', 'tsqs')), + ('([uUbB]?)(")', bygroups(String.Affix, String.Double), + combined('stringescape', 'dqs')), + ("([uUbB]?)(')", bygroups(String.Affix, String.Single), + combined('stringescape', 'sqs')), + include('name'), + include('numbers'), + ], + 'keywords': [ + (words(( + 'assert', 'break', 'continue', 'del', 'elif', 'else', 'except', + 'exec', 'finally', 'for', 'global', 'if', 'lambda', 'pass', + 'print', 'raise', 'return', 'try', 'while', 'yield', + 'yield from', 'as', 'with'), suffix=r'\b'), + Keyword), + ], + 'builtins': [ + (words(( + '__import__', 'abs', 'all', 'any', 'apply', 'basestring', 'bin', + 'bool', 'buffer', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', + 'cmp', 'coerce', 'compile', 'complex', 'delattr', 'dict', 'dir', 'divmod', + 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float', + 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'hex', 'id', + 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter', 'len', + 'list', 'locals', 'long', 'map', 'max', 'min', 'next', 'object', + 'oct', 'open', 'ord', 'pow', 'property', 'range', 'raw_input', 'reduce', + 'reload', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', + 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', + 'unichr', 'unicode', 'vars', 'xrange', 'zip'), + prefix=r'(?>> )(.*\n)', bygroups(Generic.Prompt, Other.Code), 'continuations'), + # This happens, e.g., when tracebacks are embedded in documentation; + # trailing whitespaces are often stripped in such contexts. + (r'(>>>)(\n)', bygroups(Generic.Prompt, Whitespace)), + (r'(\^C)?Traceback \(most recent call last\):\n', Other.Traceback, 'traceback'), + # SyntaxError starts with this + (r' File "[^"]+", line \d+', Other.Traceback, 'traceback'), + (r'.*\n', Generic.Output), + ], + 'continuations': [ + (r'(\.\.\. )(.*\n)', bygroups(Generic.Prompt, Other.Code)), + # See above. + (r'(\.\.\.)(\n)', bygroups(Generic.Prompt, Whitespace)), + default('#pop'), + ], + 'traceback': [ + # As soon as we see a traceback, consume everything until the next + # >>> prompt. + (r'(?=>>>( |$))', Text, '#pop'), + (r'(KeyboardInterrupt)(\n)', bygroups(Name.Class, Whitespace)), + (r'.*\n', Other.Traceback), + ], + } + + +class PythonConsoleLexer(DelegatingLexer): + """ + For Python console output or doctests, such as: + + .. sourcecode:: pycon + + >>> a = 'foo' + >>> print(a) + foo + >>> 1 / 0 + Traceback (most recent call last): + File "", line 1, in + ZeroDivisionError: integer division or modulo by zero + + Additional options: + + `python3` + Use Python 3 lexer for code. Default is ``True``. + + .. versionadded:: 1.0 + .. versionchanged:: 2.5 + Now defaults to ``True``. + """ + + name = 'Python console session' + aliases = ['pycon', 'python-console'] + mimetypes = ['text/x-python-doctest'] + url = 'https://python.org' + version_added = '' + + def __init__(self, **options): + python3 = get_bool_opt(options, 'python3', True) + if python3: + pylexer = PythonLexer + tblexer = PythonTracebackLexer + else: + pylexer = Python2Lexer + tblexer = Python2TracebackLexer + # We have two auxiliary lexers. Use DelegatingLexer twice with + # different tokens. TODO: DelegatingLexer should support this + # directly, by accepting a tuplet of auxiliary lexers and a tuple of + # distinguishing tokens. Then we wouldn't need this intermediary + # class. + class _ReplaceInnerCode(DelegatingLexer): + def __init__(self, **options): + super().__init__(pylexer, _PythonConsoleLexerBase, Other.Code, **options) + super().__init__(tblexer, _ReplaceInnerCode, Other.Traceback, **options) + + +class PythonTracebackLexer(RegexLexer): + """ + For Python 3.x tracebacks, with support for chained exceptions. + + .. versionchanged:: 2.5 + This is now the default ``PythonTracebackLexer``. It is still available + as the alias ``Python3TracebackLexer``. + """ + + name = 'Python Traceback' + aliases = ['pytb', 'py3tb'] + filenames = ['*.pytb', '*.py3tb'] + mimetypes = ['text/x-python-traceback', 'text/x-python3-traceback'] + url = 'https://python.org' + version_added = '1.0' + + tokens = { + 'root': [ + (r'\n', Whitespace), + (r'^(\^C)?Traceback \(most recent call last\):\n', Generic.Traceback, 'intb'), + (r'^During handling of the above exception, another ' + r'exception occurred:\n\n', Generic.Traceback), + (r'^The above exception was the direct cause of the ' + r'following exception:\n\n', Generic.Traceback), + (r'^(?= File "[^"]+", line \d+)', Generic.Traceback, 'intb'), + (r'^.*\n', Other), + ], + 'intb': [ + (r'^( File )("[^"]+")(, line )(\d+)(, in )(.+)(\n)', + bygroups(Text, Name.Builtin, Text, Number, Text, Name, Whitespace)), + (r'^( File )("[^"]+")(, line )(\d+)(\n)', + bygroups(Text, Name.Builtin, Text, Number, Whitespace)), + (r'^( )(.+)(\n)', + bygroups(Whitespace, using(PythonLexer), Whitespace), 'markers'), + (r'^([ \t]*)(\.\.\.)(\n)', + bygroups(Whitespace, Comment, Whitespace)), # for doctests... + (r'^([^:]+)(: )(.+)(\n)', + bygroups(Generic.Error, Text, Name, Whitespace), '#pop'), + (r'^([a-zA-Z_][\w.]*)(:?\n)', + bygroups(Generic.Error, Whitespace), '#pop'), + default('#pop'), + ], + 'markers': [ + # Either `PEP 657 ` + # error locations in Python 3.11+, or single-caret markers + # for syntax errors before that. + (r'^( {4,})([~^]+)(\n)', + bygroups(Whitespace, Punctuation.Marker, Whitespace), + '#pop'), + default('#pop'), + ], + } + + +Python3TracebackLexer = PythonTracebackLexer + + +class Python2TracebackLexer(RegexLexer): + """ + For Python tracebacks. + + .. versionchanged:: 2.5 + This class has been renamed from ``PythonTracebackLexer``. + ``PythonTracebackLexer`` now refers to the Python 3 variant. + """ + + name = 'Python 2.x Traceback' + aliases = ['py2tb'] + filenames = ['*.py2tb'] + mimetypes = ['text/x-python2-traceback'] + url = 'https://python.org' + version_added = '0.7' + + tokens = { + 'root': [ + # Cover both (most recent call last) and (innermost last) + # The optional ^C allows us to catch keyboard interrupt signals. + (r'^(\^C)?(Traceback.*\n)', + bygroups(Text, Generic.Traceback), 'intb'), + # SyntaxError starts with this. + (r'^(?= File "[^"]+", line \d+)', Generic.Traceback, 'intb'), + (r'^.*\n', Other), + ], + 'intb': [ + (r'^( File )("[^"]+")(, line )(\d+)(, in )(.+)(\n)', + bygroups(Text, Name.Builtin, Text, Number, Text, Name, Whitespace)), + (r'^( File )("[^"]+")(, line )(\d+)(\n)', + bygroups(Text, Name.Builtin, Text, Number, Whitespace)), + (r'^( )(.+)(\n)', + bygroups(Text, using(Python2Lexer), Whitespace), 'marker'), + (r'^([ \t]*)(\.\.\.)(\n)', + bygroups(Text, Comment, Whitespace)), # for doctests... + (r'^([^:]+)(: )(.+)(\n)', + bygroups(Generic.Error, Text, Name, Whitespace), '#pop'), + (r'^([a-zA-Z_]\w*)(:?\n)', + bygroups(Generic.Error, Whitespace), '#pop') + ], + 'marker': [ + # For syntax errors. + (r'( {4,})(\^)', bygroups(Text, Punctuation.Marker), '#pop'), + default('#pop'), + ], + } + + +class CythonLexer(RegexLexer): + """ + For Pyrex and Cython source code. + """ + + name = 'Cython' + url = 'https://cython.org' + aliases = ['cython', 'pyx', 'pyrex'] + filenames = ['*.pyx', '*.pxd', '*.pxi'] + mimetypes = ['text/x-cython', 'application/x-cython'] + version_added = '1.1' + + tokens = { + 'root': [ + (r'\n', Whitespace), + (r'^(\s*)("""(?:.|\n)*?""")', bygroups(Whitespace, String.Doc)), + (r"^(\s*)('''(?:.|\n)*?''')", bygroups(Whitespace, String.Doc)), + (r'[^\S\n]+', Text), + (r'#.*$', Comment), + (r'[]{}:(),;[]', Punctuation), + (r'\\\n', Whitespace), + (r'\\', Text), + (r'(in|is|and|or|not)\b', Operator.Word), + (r'(<)([a-zA-Z0-9.?]+)(>)', + bygroups(Punctuation, Keyword.Type, Punctuation)), + (r'!=|==|<<|>>|[-~+/*%=<>&^|.?]', Operator), + (r'(from)(\d+)(<=)(\s+)(<)(\d+)(:)', + bygroups(Keyword, Number.Integer, Operator, Whitespace, Operator, + Name, Punctuation)), + include('keywords'), + (r'(def|property)(\s+)', bygroups(Keyword, Whitespace), 'funcname'), + (r'(cp?def)(\s+)', bygroups(Keyword, Whitespace), 'cdef'), + # (should actually start a block with only cdefs) + (r'(cdef)(:)', bygroups(Keyword, Punctuation)), + (r'(class|struct)(\s+)', bygroups(Keyword, Whitespace), 'classname'), + (r'(from)(\s+)', bygroups(Keyword, Whitespace), 'fromimport'), + (r'(c?import)(\s+)', bygroups(Keyword, Whitespace), 'import'), + include('builtins'), + include('backtick'), + ('(?:[rR]|[uU][rR]|[rR][uU])"""', String, 'tdqs'), + ("(?:[rR]|[uU][rR]|[rR][uU])'''", String, 'tsqs'), + ('(?:[rR]|[uU][rR]|[rR][uU])"', String, 'dqs'), + ("(?:[rR]|[uU][rR]|[rR][uU])'", String, 'sqs'), + ('[uU]?"""', String, combined('stringescape', 'tdqs')), + ("[uU]?'''", String, combined('stringescape', 'tsqs')), + ('[uU]?"', String, combined('stringescape', 'dqs')), + ("[uU]?'", String, combined('stringescape', 'sqs')), + include('name'), + include('numbers'), + ], + 'keywords': [ + (words(( + 'assert', 'async', 'await', 'break', 'by', 'continue', 'ctypedef', 'del', 'elif', + 'else', 'except', 'except?', 'exec', 'finally', 'for', 'fused', 'gil', + 'global', 'if', 'include', 'lambda', 'nogil', 'pass', 'print', + 'raise', 'return', 'try', 'while', 'yield', 'as', 'with'), suffix=r'\b'), + Keyword), + (r'(DEF|IF|ELIF|ELSE)\b', Comment.Preproc), + ], + 'builtins': [ + (words(( + '__import__', 'abs', 'all', 'any', 'apply', 'basestring', 'bin', 'bint', + 'bool', 'buffer', 'bytearray', 'bytes', 'callable', 'chr', + 'classmethod', 'cmp', 'coerce', 'compile', 'complex', 'delattr', + 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'execfile', 'exit', + 'file', 'filter', 'float', 'frozenset', 'getattr', 'globals', + 'hasattr', 'hash', 'hex', 'id', 'input', 'int', 'intern', 'isinstance', + 'issubclass', 'iter', 'len', 'list', 'locals', 'long', 'map', 'max', + 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'property', 'Py_ssize_t', + 'range', 'raw_input', 'reduce', 'reload', 'repr', 'reversed', + 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', + 'str', 'sum', 'super', 'tuple', 'type', 'unichr', 'unicode', 'unsigned', + 'vars', 'xrange', 'zip'), prefix=r'(?]? \d* )? : + .* (?: ft | filetype | syn | syntax ) = ( [^:\s]+ ) +''', re.VERBOSE) + + +def get_filetype_from_line(l): # noqa: E741 + m = modeline_re.search(l) + if m: + return m.group(1) + + +def get_filetype_from_buffer(buf, max_lines=5): + """ + Scan the buffer for modelines and return filetype if one is found. + """ + lines = buf.splitlines() + for line in lines[-1:-max_lines-1:-1]: + ret = get_filetype_from_line(line) + if ret: + return ret + for i in range(max_lines, -1, -1): + if i < len(lines): + ret = get_filetype_from_line(lines[i]) + if ret: + return ret + + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py new file mode 100644 index 0000000..498db42 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py @@ -0,0 +1,72 @@ +""" + pygments.plugin + ~~~~~~~~~~~~~~~ + + Pygments plugin interface. + + lexer plugins:: + + [pygments.lexers] + yourlexer = yourmodule:YourLexer + + formatter plugins:: + + [pygments.formatters] + yourformatter = yourformatter:YourFormatter + /.ext = yourformatter:YourFormatter + + As you can see, you can define extensions for the formatter + with a leading slash. + + syntax plugins:: + + [pygments.styles] + yourstyle = yourstyle:YourStyle + + filter plugin:: + + [pygments.filter] + yourfilter = yourfilter:YourFilter + + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" +from importlib.metadata import entry_points + +LEXER_ENTRY_POINT = 'pygments.lexers' +FORMATTER_ENTRY_POINT = 'pygments.formatters' +STYLE_ENTRY_POINT = 'pygments.styles' +FILTER_ENTRY_POINT = 'pygments.filters' + + +def iter_entry_points(group_name): + groups = entry_points() + if hasattr(groups, 'select'): + # New interface in Python 3.10 and newer versions of the + # importlib_metadata backport. + return groups.select(group=group_name) + else: + # Older interface, deprecated in Python 3.10 and recent + # importlib_metadata, but we need it in Python 3.8 and 3.9. + return groups.get(group_name, []) + + +def find_plugin_lexers(): + for entrypoint in iter_entry_points(LEXER_ENTRY_POINT): + yield entrypoint.load() + + +def find_plugin_formatters(): + for entrypoint in iter_entry_points(FORMATTER_ENTRY_POINT): + yield entrypoint.name, entrypoint.load() + + +def find_plugin_styles(): + for entrypoint in iter_entry_points(STYLE_ENTRY_POINT): + yield entrypoint.name, entrypoint.load() + + +def find_plugin_filters(): + for entrypoint in iter_entry_points(FILTER_ENTRY_POINT): + yield entrypoint.name, entrypoint.load() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py new file mode 100644 index 0000000..cc8d2c3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py @@ -0,0 +1,91 @@ +""" + pygments.regexopt + ~~~~~~~~~~~~~~~~~ + + An algorithm that generates optimized regexes for matching long lists of + literal strings. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +from re import escape +from os.path import commonprefix +from itertools import groupby +from operator import itemgetter + +CS_ESCAPE = re.compile(r'[\[\^\\\-\]]') +FIRST_ELEMENT = itemgetter(0) + + +def make_charset(letters): + return '[' + CS_ESCAPE.sub(lambda m: '\\' + m.group(), ''.join(letters)) + ']' + + +def regex_opt_inner(strings, open_paren): + """Return a regex that matches any string in the sorted list of strings.""" + close_paren = open_paren and ')' or '' + # print strings, repr(open_paren) + if not strings: + # print '-> nothing left' + return '' + first = strings[0] + if len(strings) == 1: + # print '-> only 1 string' + return open_paren + escape(first) + close_paren + if not first: + # print '-> first string empty' + return open_paren + regex_opt_inner(strings[1:], '(?:') \ + + '?' + close_paren + if len(first) == 1: + # multiple one-char strings? make a charset + oneletter = [] + rest = [] + for s in strings: + if len(s) == 1: + oneletter.append(s) + else: + rest.append(s) + if len(oneletter) > 1: # do we have more than one oneletter string? + if rest: + # print '-> 1-character + rest' + return open_paren + regex_opt_inner(rest, '') + '|' \ + + make_charset(oneletter) + close_paren + # print '-> only 1-character' + return open_paren + make_charset(oneletter) + close_paren + prefix = commonprefix(strings) + if prefix: + plen = len(prefix) + # we have a prefix for all strings + # print '-> prefix:', prefix + return open_paren + escape(prefix) \ + + regex_opt_inner([s[plen:] for s in strings], '(?:') \ + + close_paren + # is there a suffix? + strings_rev = [s[::-1] for s in strings] + suffix = commonprefix(strings_rev) + if suffix: + slen = len(suffix) + # print '-> suffix:', suffix[::-1] + return open_paren \ + + regex_opt_inner(sorted(s[:-slen] for s in strings), '(?:') \ + + escape(suffix[::-1]) + close_paren + # recurse on common 1-string prefixes + # print '-> last resort' + return open_paren + \ + '|'.join(regex_opt_inner(list(group[1]), '') + for group in groupby(strings, lambda s: s[0] == first[0])) \ + + close_paren + + +def regex_opt(strings, prefix='', suffix=''): + """Return a compiled regex that matches any string in the given list. + + The strings to match must be literal strings, not regexes. They will be + regex-escaped. + + *prefix* and *suffix* are pre- and appended to the final regex. + """ + strings = sorted(strings) + return prefix + regex_opt_inner(strings, '(') + suffix diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py new file mode 100644 index 0000000..3c8c848 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py @@ -0,0 +1,104 @@ +""" + pygments.scanner + ~~~~~~~~~~~~~~~~ + + This library implements a regex based scanner. Some languages + like Pascal are easy to parse but have some keywords that + depend on the context. Because of this it's impossible to lex + that just by using a regular expression lexer like the + `RegexLexer`. + + Have a look at the `DelphiLexer` to get an idea of how to use + this scanner. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" +import re + + +class EndOfText(RuntimeError): + """ + Raise if end of text is reached and the user + tried to call a match function. + """ + + +class Scanner: + """ + Simple scanner + + All method patterns are regular expression strings (not + compiled expressions!) + """ + + def __init__(self, text, flags=0): + """ + :param text: The text which should be scanned + :param flags: default regular expression flags + """ + self.data = text + self.data_length = len(text) + self.start_pos = 0 + self.pos = 0 + self.flags = flags + self.last = None + self.match = None + self._re_cache = {} + + def eos(self): + """`True` if the scanner reached the end of text.""" + return self.pos >= self.data_length + eos = property(eos, eos.__doc__) + + def check(self, pattern): + """ + Apply `pattern` on the current position and return + the match object. (Doesn't touch pos). Use this for + lookahead. + """ + if self.eos: + raise EndOfText() + if pattern not in self._re_cache: + self._re_cache[pattern] = re.compile(pattern, self.flags) + return self._re_cache[pattern].match(self.data, self.pos) + + def test(self, pattern): + """Apply a pattern on the current position and check + if it patches. Doesn't touch pos. + """ + return self.check(pattern) is not None + + def scan(self, pattern): + """ + Scan the text for the given pattern and update pos/match + and related fields. The return value is a boolean that + indicates if the pattern matched. The matched value is + stored on the instance as ``match``, the last value is + stored as ``last``. ``start_pos`` is the position of the + pointer before the pattern was matched, ``pos`` is the + end position. + """ + if self.eos: + raise EndOfText() + if pattern not in self._re_cache: + self._re_cache[pattern] = re.compile(pattern, self.flags) + self.last = self.match + m = self._re_cache[pattern].match(self.data, self.pos) + if m is None: + return False + self.start_pos = m.start() + self.pos = m.end() + self.match = m.group() + return True + + def get_char(self): + """Scan exactly one char.""" + self.scan('.') + + def __repr__(self): + return '<%s %d/%d>' % ( + self.__class__.__name__, + self.pos, + self.data_length + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py new file mode 100644 index 0000000..955d958 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py @@ -0,0 +1,247 @@ +""" + pygments.sphinxext + ~~~~~~~~~~~~~~~~~~ + + Sphinx extension to generate automatic documentation of lexers, + formatters and filters. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import sys + +from docutils import nodes +from docutils.statemachine import ViewList +from docutils.parsers.rst import Directive +from sphinx.util.nodes import nested_parse_with_titles + + +MODULEDOC = ''' +.. module:: %s + +%s +%s +''' + +LEXERDOC = ''' +.. class:: %s + + :Short names: %s + :Filenames: %s + :MIME types: %s + + %s + + %s + +''' + +FMTERDOC = ''' +.. class:: %s + + :Short names: %s + :Filenames: %s + + %s + +''' + +FILTERDOC = ''' +.. class:: %s + + :Name: %s + + %s + +''' + + +class PygmentsDoc(Directive): + """ + A directive to collect all lexers/formatters/filters and generate + autoclass directives for them. + """ + has_content = False + required_arguments = 1 + optional_arguments = 0 + final_argument_whitespace = False + option_spec = {} + + def run(self): + self.filenames = set() + if self.arguments[0] == 'lexers': + out = self.document_lexers() + elif self.arguments[0] == 'formatters': + out = self.document_formatters() + elif self.arguments[0] == 'filters': + out = self.document_filters() + elif self.arguments[0] == 'lexers_overview': + out = self.document_lexers_overview() + else: + raise Exception('invalid argument for "pygmentsdoc" directive') + node = nodes.compound() + vl = ViewList(out.split('\n'), source='') + nested_parse_with_titles(self.state, vl, node) + for fn in self.filenames: + self.state.document.settings.record_dependencies.add(fn) + return node.children + + def document_lexers_overview(self): + """Generate a tabular overview of all lexers. + + The columns are the lexer name, the extensions handled by this lexer + (or "None"), the aliases and a link to the lexer class.""" + from pip._vendor.pygments.lexers._mapping import LEXERS + from pip._vendor.pygments.lexers import find_lexer_class + out = [] + + table = [] + + def format_link(name, url): + if url: + return f'`{name} <{url}>`_' + return name + + for classname, data in sorted(LEXERS.items(), key=lambda x: x[1][1].lower()): + lexer_cls = find_lexer_class(data[1]) + extensions = lexer_cls.filenames + lexer_cls.alias_filenames + + table.append({ + 'name': format_link(data[1], lexer_cls.url), + 'extensions': ', '.join(extensions).replace('*', '\\*').replace('_', '\\') or 'None', + 'aliases': ', '.join(data[2]), + 'class': f'{data[0]}.{classname}' + }) + + column_names = ['name', 'extensions', 'aliases', 'class'] + column_lengths = [max([len(row[column]) for row in table if row[column]]) + for column in column_names] + + def write_row(*columns): + """Format a table row""" + out = [] + for length, col in zip(column_lengths, columns): + if col: + out.append(col.ljust(length)) + else: + out.append(' '*length) + + return ' '.join(out) + + def write_seperator(): + """Write a table separator row""" + sep = ['='*c for c in column_lengths] + return write_row(*sep) + + out.append(write_seperator()) + out.append(write_row('Name', 'Extension(s)', 'Short name(s)', 'Lexer class')) + out.append(write_seperator()) + for row in table: + out.append(write_row( + row['name'], + row['extensions'], + row['aliases'], + f':class:`~{row["class"]}`')) + out.append(write_seperator()) + + return '\n'.join(out) + + def document_lexers(self): + from pip._vendor.pygments.lexers._mapping import LEXERS + from pip._vendor import pygments + import inspect + import pathlib + + out = [] + modules = {} + moduledocstrings = {} + for classname, data in sorted(LEXERS.items(), key=lambda x: x[0]): + module = data[0] + mod = __import__(module, None, None, [classname]) + self.filenames.add(mod.__file__) + cls = getattr(mod, classname) + if not cls.__doc__: + print(f"Warning: {classname} does not have a docstring.") + docstring = cls.__doc__ + if isinstance(docstring, bytes): + docstring = docstring.decode('utf8') + + example_file = getattr(cls, '_example', None) + if example_file: + p = pathlib.Path(inspect.getabsfile(pygments)).parent.parent /\ + 'tests' / 'examplefiles' / example_file + content = p.read_text(encoding='utf-8') + if not content: + raise Exception( + f"Empty example file '{example_file}' for lexer " + f"{classname}") + + if data[2]: + lexer_name = data[2][0] + docstring += '\n\n .. admonition:: Example\n' + docstring += f'\n .. code-block:: {lexer_name}\n\n' + for line in content.splitlines(): + docstring += f' {line}\n' + + if cls.version_added: + version_line = f'.. versionadded:: {cls.version_added}' + else: + version_line = '' + + modules.setdefault(module, []).append(( + classname, + ', '.join(data[2]) or 'None', + ', '.join(data[3]).replace('*', '\\*').replace('_', '\\') or 'None', + ', '.join(data[4]) or 'None', + docstring, + version_line)) + if module not in moduledocstrings: + moddoc = mod.__doc__ + if isinstance(moddoc, bytes): + moddoc = moddoc.decode('utf8') + moduledocstrings[module] = moddoc + + for module, lexers in sorted(modules.items(), key=lambda x: x[0]): + if moduledocstrings[module] is None: + raise Exception(f"Missing docstring for {module}") + heading = moduledocstrings[module].splitlines()[4].strip().rstrip('.') + out.append(MODULEDOC % (module, heading, '-'*len(heading))) + for data in lexers: + out.append(LEXERDOC % data) + + return ''.join(out) + + def document_formatters(self): + from pip._vendor.pygments.formatters import FORMATTERS + + out = [] + for classname, data in sorted(FORMATTERS.items(), key=lambda x: x[0]): + module = data[0] + mod = __import__(module, None, None, [classname]) + self.filenames.add(mod.__file__) + cls = getattr(mod, classname) + docstring = cls.__doc__ + if isinstance(docstring, bytes): + docstring = docstring.decode('utf8') + heading = cls.__name__ + out.append(FMTERDOC % (heading, ', '.join(data[2]) or 'None', + ', '.join(data[3]).replace('*', '\\*') or 'None', + docstring)) + return ''.join(out) + + def document_filters(self): + from pip._vendor.pygments.filters import FILTERS + + out = [] + for name, cls in FILTERS.items(): + self.filenames.add(sys.modules[cls.__module__].__file__) + docstring = cls.__doc__ + if isinstance(docstring, bytes): + docstring = docstring.decode('utf8') + out.append(FILTERDOC % (cls.__name__, name, docstring)) + return ''.join(out) + + +def setup(app): + app.add_directive('pygmentsdoc', PygmentsDoc) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py new file mode 100644 index 0000000..be5f832 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py @@ -0,0 +1,203 @@ +""" + pygments.style + ~~~~~~~~~~~~~~ + + Basic style object. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +from pip._vendor.pygments.token import Token, STANDARD_TYPES + +# Default mapping of ansixxx to RGB colors. +_ansimap = { + # dark + 'ansiblack': '000000', + 'ansired': '7f0000', + 'ansigreen': '007f00', + 'ansiyellow': '7f7fe0', + 'ansiblue': '00007f', + 'ansimagenta': '7f007f', + 'ansicyan': '007f7f', + 'ansigray': 'e5e5e5', + # normal + 'ansibrightblack': '555555', + 'ansibrightred': 'ff0000', + 'ansibrightgreen': '00ff00', + 'ansibrightyellow': 'ffff00', + 'ansibrightblue': '0000ff', + 'ansibrightmagenta': 'ff00ff', + 'ansibrightcyan': '00ffff', + 'ansiwhite': 'ffffff', +} +# mapping of deprecated #ansixxx colors to new color names +_deprecated_ansicolors = { + # dark + '#ansiblack': 'ansiblack', + '#ansidarkred': 'ansired', + '#ansidarkgreen': 'ansigreen', + '#ansibrown': 'ansiyellow', + '#ansidarkblue': 'ansiblue', + '#ansipurple': 'ansimagenta', + '#ansiteal': 'ansicyan', + '#ansilightgray': 'ansigray', + # normal + '#ansidarkgray': 'ansibrightblack', + '#ansired': 'ansibrightred', + '#ansigreen': 'ansibrightgreen', + '#ansiyellow': 'ansibrightyellow', + '#ansiblue': 'ansibrightblue', + '#ansifuchsia': 'ansibrightmagenta', + '#ansiturquoise': 'ansibrightcyan', + '#ansiwhite': 'ansiwhite', +} +ansicolors = set(_ansimap) + + +class StyleMeta(type): + + def __new__(mcs, name, bases, dct): + obj = type.__new__(mcs, name, bases, dct) + for token in STANDARD_TYPES: + if token not in obj.styles: + obj.styles[token] = '' + + def colorformat(text): + if text in ansicolors: + return text + if text[0:1] == '#': + col = text[1:] + if len(col) == 6: + return col + elif len(col) == 3: + return col[0] * 2 + col[1] * 2 + col[2] * 2 + elif text == '': + return '' + elif text.startswith('var') or text.startswith('calc'): + return text + assert False, f"wrong color format {text!r}" + + _styles = obj._styles = {} + + for ttype in obj.styles: + for token in ttype.split(): + if token in _styles: + continue + ndef = _styles.get(token.parent, None) + styledefs = obj.styles.get(token, '').split() + if not ndef or token is None: + ndef = ['', 0, 0, 0, '', '', 0, 0, 0] + elif 'noinherit' in styledefs and token is not Token: + ndef = _styles[Token][:] + else: + ndef = ndef[:] + _styles[token] = ndef + for styledef in obj.styles.get(token, '').split(): + if styledef == 'noinherit': + pass + elif styledef == 'bold': + ndef[1] = 1 + elif styledef == 'nobold': + ndef[1] = 0 + elif styledef == 'italic': + ndef[2] = 1 + elif styledef == 'noitalic': + ndef[2] = 0 + elif styledef == 'underline': + ndef[3] = 1 + elif styledef == 'nounderline': + ndef[3] = 0 + elif styledef[:3] == 'bg:': + ndef[4] = colorformat(styledef[3:]) + elif styledef[:7] == 'border:': + ndef[5] = colorformat(styledef[7:]) + elif styledef == 'roman': + ndef[6] = 1 + elif styledef == 'sans': + ndef[7] = 1 + elif styledef == 'mono': + ndef[8] = 1 + else: + ndef[0] = colorformat(styledef) + + return obj + + def style_for_token(cls, token): + t = cls._styles[token] + ansicolor = bgansicolor = None + color = t[0] + if color in _deprecated_ansicolors: + color = _deprecated_ansicolors[color] + if color in ansicolors: + ansicolor = color + color = _ansimap[color] + bgcolor = t[4] + if bgcolor in _deprecated_ansicolors: + bgcolor = _deprecated_ansicolors[bgcolor] + if bgcolor in ansicolors: + bgansicolor = bgcolor + bgcolor = _ansimap[bgcolor] + + return { + 'color': color or None, + 'bold': bool(t[1]), + 'italic': bool(t[2]), + 'underline': bool(t[3]), + 'bgcolor': bgcolor or None, + 'border': t[5] or None, + 'roman': bool(t[6]) or None, + 'sans': bool(t[7]) or None, + 'mono': bool(t[8]) or None, + 'ansicolor': ansicolor, + 'bgansicolor': bgansicolor, + } + + def list_styles(cls): + return list(cls) + + def styles_token(cls, ttype): + return ttype in cls._styles + + def __iter__(cls): + for token in cls._styles: + yield token, cls.style_for_token(token) + + def __len__(cls): + return len(cls._styles) + + +class Style(metaclass=StyleMeta): + + #: overall background color (``None`` means transparent) + background_color = '#ffffff' + + #: highlight background color + highlight_color = '#ffffcc' + + #: line number font color + line_number_color = 'inherit' + + #: line number background color + line_number_background_color = 'transparent' + + #: special line number font color + line_number_special_color = '#000000' + + #: special line number background color + line_number_special_background_color = '#ffffc0' + + #: Style definitions for individual token types. + styles = {} + + #: user-friendly style name (used when selecting the style, so this + # should be all-lowercase, no spaces, hyphens) + name = 'unnamed' + + aliases = [] + + # Attribute for lexers defined within Pygments. If set + # to True, the style is not shown in the style gallery + # on the website. This is intended for language-specific + # styles. + web_style_gallery_exclude = False diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py new file mode 100644 index 0000000..96d53dc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py @@ -0,0 +1,61 @@ +""" + pygments.styles + ~~~~~~~~~~~~~~~ + + Contains built-in styles. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +from pip._vendor.pygments.plugin import find_plugin_styles +from pip._vendor.pygments.util import ClassNotFound +from pip._vendor.pygments.styles._mapping import STYLES + +#: A dictionary of built-in styles, mapping style names to +#: ``'submodule::classname'`` strings. +#: This list is deprecated. Use `pygments.styles.STYLES` instead +STYLE_MAP = {v[1]: v[0].split('.')[-1] + '::' + k for k, v in STYLES.items()} + +#: Internal reverse mapping to make `get_style_by_name` more efficient +_STYLE_NAME_TO_MODULE_MAP = {v[1]: (v[0], k) for k, v in STYLES.items()} + + +def get_style_by_name(name): + """ + Return a style class by its short name. The names of the builtin styles + are listed in :data:`pygments.styles.STYLE_MAP`. + + Will raise :exc:`pygments.util.ClassNotFound` if no style of that name is + found. + """ + if name in _STYLE_NAME_TO_MODULE_MAP: + mod, cls = _STYLE_NAME_TO_MODULE_MAP[name] + builtin = "yes" + else: + for found_name, style in find_plugin_styles(): + if name == found_name: + return style + # perhaps it got dropped into our styles package + builtin = "" + mod = 'pygments.styles.' + name + cls = name.title() + "Style" + + try: + mod = __import__(mod, None, None, [cls]) + except ImportError: + raise ClassNotFound(f"Could not find style module {mod!r}" + + (builtin and ", though it should be builtin") + + ".") + try: + return getattr(mod, cls) + except AttributeError: + raise ClassNotFound(f"Could not find style class {cls!r} in style module.") + + +def get_all_styles(): + """Return a generator for all styles by name, both builtin and plugin.""" + for v in STYLES.values(): + yield v[1] + for name, _ in find_plugin_styles(): + yield name diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2fe6664e13cd94f9a78c3ae13c74e9a379b56755 GIT binary patch literal 2685 zcmb7FU2Gf07M|Jl+K%JcO3Y}f zu9MobQH6ML)JhE?-3B3~^etBrQh5sk36)n~VuD1pDiYG|!|j{faIa{1fHS+cL!mry zq?w(abLPyMbG~!VH*IY`1ay%7b#B*#(0}MpgS_>{&HzT}DiYBY60yiAILk~in66oc z&AO&s_S&UzS@)D1BL+$C`9MR--gmve97R{q6`W>elxC)%MChLkLSew5Gum&Yg?!p1pO%U;NTXfO3UQR#HtPYM2E@GVHx~?kAtUIijhiAgczM z$;*n_FRR2k5p~${w3aLAa%Rqqlaa=f3=RxD+dnukc#O;xh&d;b*X!32QxdX$#E>MC zcq27_`fM_4-x62kw4@qRoD3&N9sa44BV&`vF*2*^M3le=#fbWDgGW&WTOG5qD)Koc zpOIDGF$i|sMijv?CN=YfmRCjCa3@o5of=EtrqS8O(c8ZQ6`6QET@M%4hTJe%7(4&4 z0aZdK-L+`}>A}6f5~9Jifq~16h|8>c%%mr6+5^%wz|59%mAMisxz6_@WZ=vG5=TRk zL@p#UWmaSzfB?kMJlD{&_igACT@*%TrUjXh3Jy_Fid>1w;B}X?Q^vq=+vAs*bpSA> zB;Jh%&>{v+%@hJn z`|i`!Qer-4MBgXupU*{Fi$B_NJ}a4dT_u78B9f-@q8O1)gBWv~ZW2|P#m%+QrV zv{@TKHu{?2vvmo&L=@RDC6NFlE()d)KlcY*M{NM`6N%T))dBmatSCemWJ4lx=|cK< zC-SDOMDIh;IU>&zRjV6oTOv3X64^DuTp*6lXvAxE z@{R{46BA>6>NG!bdi0G`W7Hu!MXtq}vZ+XxkLTrV4*bvaR_jT7HKyyDu2Xnfo($xl zY3f!W0kb@lHzk`Jaa%4LC5wd%EjFzfmZu&l%V)cWx7nPNp)}EG?IC2>h%IXRc_SyJ zB_oy`>pztkKGvUvOXPI_h$c#WLKT#PAseyif}}3Q6nQ3=D}aC0q3F@Um?4`|KO8&|1e!dwSCCz z|1Q{D_4M8h^{u6sFI}R*)ZgmfBbsxKnn3izWAFjN*!fgjb%f+o=_x6FV z5BxO_7&R{nJyh{*2gvF()xePoyB+AbGQTu`Nm+Tb8aP~GYc7uKxfyt5CA1>0j;;-@ zJ+T!SfNdYkrSQ$*!^_6X$X1YSddbf}wIct4yNIRo2R9GJH-|B89HH4x2n$1Ew zUoSUJX;?H$*eIHAq206u-IWHt-m{j!ZBTf%#?1?E$B5l7hKNVAG$ zBvsM{6FLO#5&~ql6LwlsDDwKqjAqU?a)=0!bWYER>J*HV5mu)LSndTu$xDWv5)szI z3wnrdW8R=|2EgjnY%4$k1h>>Xj{X>IJ`ck<4%2_p&ll0Hw$PR7rRhsNb$qCTw*$dt zyd+-oQD=v4g`U_79kE$Uo{Fm?05~rBAdFn-o{uI59> zU&9--Un!p}U#Q>vCq5Ie3mff~GnKcOQp-n|&%FQ4)%g4ImGpaj~W5M)4DPM`!^HC#*qL3 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06683956fd401817d59927bb272c32d5e83b2c36 GIT binary patch literal 3662 zcmZ`*Nmm<35FQ~$5<)_VeKFoQY=dlUY`lTR8WOe`;v_zpv{ZvMkI{_YEMV!D-{3j0~y3#$RhSZKjHukA`ZbY z;s}f)j=?zM1(-m*2$v8q!<7#ayw6p*hU_}rK)eaJ5O2dI;vKk)cn_u!ry+-UA08mi zz(d4GFpKyYo*>S_Q^aTR9PtIbM4X2O#8;3kPeTX+q-zh*v0-YT`d$?s@azCfzGZq3jpqxFGmtyIxW*O_+M6=#~DlXf!vO`*xW zQL+pfI~a;(UaAr{*qvBenhpf}Tb|U6d{MJ+dNdKp(BjHe-Ud%MEh!uh3Avxf2{*W` zJMXz(#gwX{kScJ~7zswM$t)VAc=&x;cQvW&JF6=k(~iQiNNv%w4Pt@}4y9J$ei|2s zNNveFIM7AuW;QvUWf`!#y`i;C>nxhLqW) z=o#dE8TX@%8(fxLsgR;0MWM#fn3t--zy(9Awyv3A)YfcLbBe@h)#d8h(jSP({gMo& zec@|-+O(WjrV^@`RMLdBxUzfI_H?%)j>Y zEqjG2M!2$f&GwE8*84X3Nm$Nf>ZuYp+VokW-_T2CxyAN1JaP533^tgH->qxCWZ5#y z&Za9;$?H9#$=v#`wrJJwYM`&nU>-jGo=bARiV%yILj}r#Ez? zwqufH>39@IpqbTO%@q5X_K?>kwHSoXH5wY7IWv~0`N z*ny}g&}eJz-W_5S-LcxW7tS_QmB;Yol@hFNlB}2{XiK@v6X(qm^kY3OrwOPi=nipQ z{rrMf12>KFG0@;kG_=&JW*cA?X<{tkM~6jG^z%JoFmjIb47fdl0UElaCho0UuVF!CL=VqyZ7V9%5JdS&)99siIY3F>_exD z4|gZGyE3(rU!0v{dFaKdC7ftKZxW;C=uU3>NHdRehF-{3Yi`*xA5K4*$vOBjH-+Lu zQbK)IujckK3@jUi_y=yz2|jRh`xR2H>Sk%WT02R+s94|`+PwV}<`BVu=O08r8i_>w z#7wfI*_ml%XZ>> string_to_token('String.Double') + Token.Literal.String.Double + >>> string_to_token('Token.Literal.Number') + Token.Literal.Number + >>> string_to_token('') + Token + + Tokens that are already tokens are returned unchanged: + + >>> string_to_token(String) + Token.Literal.String + """ + if isinstance(s, _TokenType): + return s + if not s: + return Token + node = Token + for item in s.split('.'): + node = getattr(node, item) + return node + + +# Map standard token types to short names, used in CSS class naming. +# If you add a new item, please be sure to run this file to perform +# a consistency check for duplicate values. +STANDARD_TYPES = { + Token: '', + + Text: '', + Whitespace: 'w', + Escape: 'esc', + Error: 'err', + Other: 'x', + + Keyword: 'k', + Keyword.Constant: 'kc', + Keyword.Declaration: 'kd', + Keyword.Namespace: 'kn', + Keyword.Pseudo: 'kp', + Keyword.Reserved: 'kr', + Keyword.Type: 'kt', + + Name: 'n', + Name.Attribute: 'na', + Name.Builtin: 'nb', + Name.Builtin.Pseudo: 'bp', + Name.Class: 'nc', + Name.Constant: 'no', + Name.Decorator: 'nd', + Name.Entity: 'ni', + Name.Exception: 'ne', + Name.Function: 'nf', + Name.Function.Magic: 'fm', + Name.Property: 'py', + Name.Label: 'nl', + Name.Namespace: 'nn', + Name.Other: 'nx', + Name.Tag: 'nt', + Name.Variable: 'nv', + Name.Variable.Class: 'vc', + Name.Variable.Global: 'vg', + Name.Variable.Instance: 'vi', + Name.Variable.Magic: 'vm', + + Literal: 'l', + Literal.Date: 'ld', + + String: 's', + String.Affix: 'sa', + String.Backtick: 'sb', + String.Char: 'sc', + String.Delimiter: 'dl', + String.Doc: 'sd', + String.Double: 's2', + String.Escape: 'se', + String.Heredoc: 'sh', + String.Interpol: 'si', + String.Other: 'sx', + String.Regex: 'sr', + String.Single: 's1', + String.Symbol: 'ss', + + Number: 'm', + Number.Bin: 'mb', + Number.Float: 'mf', + Number.Hex: 'mh', + Number.Integer: 'mi', + Number.Integer.Long: 'il', + Number.Oct: 'mo', + + Operator: 'o', + Operator.Word: 'ow', + + Punctuation: 'p', + Punctuation.Marker: 'pm', + + Comment: 'c', + Comment.Hashbang: 'ch', + Comment.Multiline: 'cm', + Comment.Preproc: 'cp', + Comment.PreprocFile: 'cpf', + Comment.Single: 'c1', + Comment.Special: 'cs', + + Generic: 'g', + Generic.Deleted: 'gd', + Generic.Emph: 'ge', + Generic.Error: 'gr', + Generic.Heading: 'gh', + Generic.Inserted: 'gi', + Generic.Output: 'go', + Generic.Prompt: 'gp', + Generic.Strong: 'gs', + Generic.Subheading: 'gu', + Generic.EmphStrong: 'ges', + Generic.Traceback: 'gt', +} diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py new file mode 100644 index 0000000..e3bd2e7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py @@ -0,0 +1,153 @@ +""" + pygments.unistring + ~~~~~~~~~~~~~~~~~~ + + Strings of all Unicode characters of a certain category. + Used for matching in Unicode-aware languages. Run to regenerate. + + Inspired by chartypes_create.py from the MoinMoin project. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +Cc = '\x00-\x1f\x7f-\x9f' + +Cf = '\xad\u0600-\u0605\u061c\u06dd\u070f\u08e2\u180e\u200b-\u200f\u202a-\u202e\u2060-\u2064\u2066-\u206f\ufeff\ufff9-\ufffb\U000110bd\U000110cd\U0001bca0-\U0001bca3\U0001d173-\U0001d17a\U000e0001\U000e0020-\U000e007f' + +Cn = '\u0378-\u0379\u0380-\u0383\u038b\u038d\u03a2\u0530\u0557-\u0558\u058b-\u058c\u0590\u05c8-\u05cf\u05eb-\u05ee\u05f5-\u05ff\u061d\u070e\u074b-\u074c\u07b2-\u07bf\u07fb-\u07fc\u082e-\u082f\u083f\u085c-\u085d\u085f\u086b-\u089f\u08b5\u08be-\u08d2\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09bb\u09c5-\u09c6\u09c9-\u09ca\u09cf-\u09d6\u09d8-\u09db\u09de\u09e4-\u09e5\u09ff-\u0a00\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a3b\u0a3d\u0a43-\u0a46\u0a49-\u0a4a\u0a4e-\u0a50\u0a52-\u0a58\u0a5d\u0a5f-\u0a65\u0a77-\u0a80\u0a84\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abb\u0ac6\u0aca\u0ace-\u0acf\u0ad1-\u0adf\u0ae4-\u0ae5\u0af2-\u0af8\u0b00\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34\u0b3a-\u0b3b\u0b45-\u0b46\u0b49-\u0b4a\u0b4e-\u0b55\u0b58-\u0b5b\u0b5e\u0b64-\u0b65\u0b78-\u0b81\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bba-\u0bbd\u0bc3-\u0bc5\u0bc9\u0bce-\u0bcf\u0bd1-\u0bd6\u0bd8-\u0be5\u0bfb-\u0bff\u0c0d\u0c11\u0c29\u0c3a-\u0c3c\u0c45\u0c49\u0c4e-\u0c54\u0c57\u0c5b-\u0c5f\u0c64-\u0c65\u0c70-\u0c77\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cbb\u0cc5\u0cc9\u0cce-\u0cd4\u0cd7-\u0cdd\u0cdf\u0ce4-\u0ce5\u0cf0\u0cf3-\u0cff\u0d04\u0d0d\u0d11\u0d45\u0d49\u0d50-\u0d53\u0d64-\u0d65\u0d80-\u0d81\u0d84\u0d97-\u0d99\u0db2\u0dbc\u0dbe-\u0dbf\u0dc7-\u0dc9\u0dcb-\u0dce\u0dd5\u0dd7\u0de0-\u0de5\u0df0-\u0df1\u0df5-\u0e00\u0e3b-\u0e3e\u0e5c-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eba\u0ebe-\u0ebf\u0ec5\u0ec7\u0ece-\u0ecf\u0eda-\u0edb\u0ee0-\u0eff\u0f48\u0f6d-\u0f70\u0f98\u0fbd\u0fcd\u0fdb-\u0fff\u10c6\u10c8-\u10cc\u10ce-\u10cf\u1249\u124e-\u124f\u1257\u1259\u125e-\u125f\u1289\u128e-\u128f\u12b1\u12b6-\u12b7\u12bf\u12c1\u12c6-\u12c7\u12d7\u1311\u1316-\u1317\u135b-\u135c\u137d-\u137f\u139a-\u139f\u13f6-\u13f7\u13fe-\u13ff\u169d-\u169f\u16f9-\u16ff\u170d\u1715-\u171f\u1737-\u173f\u1754-\u175f\u176d\u1771\u1774-\u177f\u17de-\u17df\u17ea-\u17ef\u17fa-\u17ff\u180f\u181a-\u181f\u1879-\u187f\u18ab-\u18af\u18f6-\u18ff\u191f\u192c-\u192f\u193c-\u193f\u1941-\u1943\u196e-\u196f\u1975-\u197f\u19ac-\u19af\u19ca-\u19cf\u19db-\u19dd\u1a1c-\u1a1d\u1a5f\u1a7d-\u1a7e\u1a8a-\u1a8f\u1a9a-\u1a9f\u1aae-\u1aaf\u1abf-\u1aff\u1b4c-\u1b4f\u1b7d-\u1b7f\u1bf4-\u1bfb\u1c38-\u1c3a\u1c4a-\u1c4c\u1c89-\u1c8f\u1cbb-\u1cbc\u1cc8-\u1ccf\u1cfa-\u1cff\u1dfa\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fc5\u1fd4-\u1fd5\u1fdc\u1ff0-\u1ff1\u1ff5\u1fff\u2065\u2072-\u2073\u208f\u209d-\u209f\u20c0-\u20cf\u20f1-\u20ff\u218c-\u218f\u2427-\u243f\u244b-\u245f\u2b74-\u2b75\u2b96-\u2b97\u2bc9\u2bff\u2c2f\u2c5f\u2cf4-\u2cf8\u2d26\u2d28-\u2d2c\u2d2e-\u2d2f\u2d68-\u2d6e\u2d71-\u2d7e\u2d97-\u2d9f\u2da7\u2daf\u2db7\u2dbf\u2dc7\u2dcf\u2dd7\u2ddf\u2e4f-\u2e7f\u2e9a\u2ef4-\u2eff\u2fd6-\u2fef\u2ffc-\u2fff\u3040\u3097-\u3098\u3100-\u3104\u3130\u318f\u31bb-\u31bf\u31e4-\u31ef\u321f\u32ff\u4db6-\u4dbf\u9ff0-\u9fff\ua48d-\ua48f\ua4c7-\ua4cf\ua62c-\ua63f\ua6f8-\ua6ff\ua7ba-\ua7f6\ua82c-\ua82f\ua83a-\ua83f\ua878-\ua87f\ua8c6-\ua8cd\ua8da-\ua8df\ua954-\ua95e\ua97d-\ua97f\ua9ce\ua9da-\ua9dd\ua9ff\uaa37-\uaa3f\uaa4e-\uaa4f\uaa5a-\uaa5b\uaac3-\uaada\uaaf7-\uab00\uab07-\uab08\uab0f-\uab10\uab17-\uab1f\uab27\uab2f\uab66-\uab6f\uabee-\uabef\uabfa-\uabff\ud7a4-\ud7af\ud7c7-\ud7ca\ud7fc-\ud7ff\ufa6e-\ufa6f\ufada-\ufaff\ufb07-\ufb12\ufb18-\ufb1c\ufb37\ufb3d\ufb3f\ufb42\ufb45\ufbc2-\ufbd2\ufd40-\ufd4f\ufd90-\ufd91\ufdc8-\ufdef\ufdfe-\ufdff\ufe1a-\ufe1f\ufe53\ufe67\ufe6c-\ufe6f\ufe75\ufefd-\ufefe\uff00\uffbf-\uffc1\uffc8-\uffc9\uffd0-\uffd1\uffd8-\uffd9\uffdd-\uffdf\uffe7\uffef-\ufff8\ufffe-\uffff\U0001000c\U00010027\U0001003b\U0001003e\U0001004e-\U0001004f\U0001005e-\U0001007f\U000100fb-\U000100ff\U00010103-\U00010106\U00010134-\U00010136\U0001018f\U0001019c-\U0001019f\U000101a1-\U000101cf\U000101fe-\U0001027f\U0001029d-\U0001029f\U000102d1-\U000102df\U000102fc-\U000102ff\U00010324-\U0001032c\U0001034b-\U0001034f\U0001037b-\U0001037f\U0001039e\U000103c4-\U000103c7\U000103d6-\U000103ff\U0001049e-\U0001049f\U000104aa-\U000104af\U000104d4-\U000104d7\U000104fc-\U000104ff\U00010528-\U0001052f\U00010564-\U0001056e\U00010570-\U000105ff\U00010737-\U0001073f\U00010756-\U0001075f\U00010768-\U000107ff\U00010806-\U00010807\U00010809\U00010836\U00010839-\U0001083b\U0001083d-\U0001083e\U00010856\U0001089f-\U000108a6\U000108b0-\U000108df\U000108f3\U000108f6-\U000108fa\U0001091c-\U0001091e\U0001093a-\U0001093e\U00010940-\U0001097f\U000109b8-\U000109bb\U000109d0-\U000109d1\U00010a04\U00010a07-\U00010a0b\U00010a14\U00010a18\U00010a36-\U00010a37\U00010a3b-\U00010a3e\U00010a49-\U00010a4f\U00010a59-\U00010a5f\U00010aa0-\U00010abf\U00010ae7-\U00010aea\U00010af7-\U00010aff\U00010b36-\U00010b38\U00010b56-\U00010b57\U00010b73-\U00010b77\U00010b92-\U00010b98\U00010b9d-\U00010ba8\U00010bb0-\U00010bff\U00010c49-\U00010c7f\U00010cb3-\U00010cbf\U00010cf3-\U00010cf9\U00010d28-\U00010d2f\U00010d3a-\U00010e5f\U00010e7f-\U00010eff\U00010f28-\U00010f2f\U00010f5a-\U00010fff\U0001104e-\U00011051\U00011070-\U0001107e\U000110c2-\U000110cc\U000110ce-\U000110cf\U000110e9-\U000110ef\U000110fa-\U000110ff\U00011135\U00011147-\U0001114f\U00011177-\U0001117f\U000111ce-\U000111cf\U000111e0\U000111f5-\U000111ff\U00011212\U0001123f-\U0001127f\U00011287\U00011289\U0001128e\U0001129e\U000112aa-\U000112af\U000112eb-\U000112ef\U000112fa-\U000112ff\U00011304\U0001130d-\U0001130e\U00011311-\U00011312\U00011329\U00011331\U00011334\U0001133a\U00011345-\U00011346\U00011349-\U0001134a\U0001134e-\U0001134f\U00011351-\U00011356\U00011358-\U0001135c\U00011364-\U00011365\U0001136d-\U0001136f\U00011375-\U000113ff\U0001145a\U0001145c\U0001145f-\U0001147f\U000114c8-\U000114cf\U000114da-\U0001157f\U000115b6-\U000115b7\U000115de-\U000115ff\U00011645-\U0001164f\U0001165a-\U0001165f\U0001166d-\U0001167f\U000116b8-\U000116bf\U000116ca-\U000116ff\U0001171b-\U0001171c\U0001172c-\U0001172f\U00011740-\U000117ff\U0001183c-\U0001189f\U000118f3-\U000118fe\U00011900-\U000119ff\U00011a48-\U00011a4f\U00011a84-\U00011a85\U00011aa3-\U00011abf\U00011af9-\U00011bff\U00011c09\U00011c37\U00011c46-\U00011c4f\U00011c6d-\U00011c6f\U00011c90-\U00011c91\U00011ca8\U00011cb7-\U00011cff\U00011d07\U00011d0a\U00011d37-\U00011d39\U00011d3b\U00011d3e\U00011d48-\U00011d4f\U00011d5a-\U00011d5f\U00011d66\U00011d69\U00011d8f\U00011d92\U00011d99-\U00011d9f\U00011daa-\U00011edf\U00011ef9-\U00011fff\U0001239a-\U000123ff\U0001246f\U00012475-\U0001247f\U00012544-\U00012fff\U0001342f-\U000143ff\U00014647-\U000167ff\U00016a39-\U00016a3f\U00016a5f\U00016a6a-\U00016a6d\U00016a70-\U00016acf\U00016aee-\U00016aef\U00016af6-\U00016aff\U00016b46-\U00016b4f\U00016b5a\U00016b62\U00016b78-\U00016b7c\U00016b90-\U00016e3f\U00016e9b-\U00016eff\U00016f45-\U00016f4f\U00016f7f-\U00016f8e\U00016fa0-\U00016fdf\U00016fe2-\U00016fff\U000187f2-\U000187ff\U00018af3-\U0001afff\U0001b11f-\U0001b16f\U0001b2fc-\U0001bbff\U0001bc6b-\U0001bc6f\U0001bc7d-\U0001bc7f\U0001bc89-\U0001bc8f\U0001bc9a-\U0001bc9b\U0001bca4-\U0001cfff\U0001d0f6-\U0001d0ff\U0001d127-\U0001d128\U0001d1e9-\U0001d1ff\U0001d246-\U0001d2df\U0001d2f4-\U0001d2ff\U0001d357-\U0001d35f\U0001d379-\U0001d3ff\U0001d455\U0001d49d\U0001d4a0-\U0001d4a1\U0001d4a3-\U0001d4a4\U0001d4a7-\U0001d4a8\U0001d4ad\U0001d4ba\U0001d4bc\U0001d4c4\U0001d506\U0001d50b-\U0001d50c\U0001d515\U0001d51d\U0001d53a\U0001d53f\U0001d545\U0001d547-\U0001d549\U0001d551\U0001d6a6-\U0001d6a7\U0001d7cc-\U0001d7cd\U0001da8c-\U0001da9a\U0001daa0\U0001dab0-\U0001dfff\U0001e007\U0001e019-\U0001e01a\U0001e022\U0001e025\U0001e02b-\U0001e7ff\U0001e8c5-\U0001e8c6\U0001e8d7-\U0001e8ff\U0001e94b-\U0001e94f\U0001e95a-\U0001e95d\U0001e960-\U0001ec70\U0001ecb5-\U0001edff\U0001ee04\U0001ee20\U0001ee23\U0001ee25-\U0001ee26\U0001ee28\U0001ee33\U0001ee38\U0001ee3a\U0001ee3c-\U0001ee41\U0001ee43-\U0001ee46\U0001ee48\U0001ee4a\U0001ee4c\U0001ee50\U0001ee53\U0001ee55-\U0001ee56\U0001ee58\U0001ee5a\U0001ee5c\U0001ee5e\U0001ee60\U0001ee63\U0001ee65-\U0001ee66\U0001ee6b\U0001ee73\U0001ee78\U0001ee7d\U0001ee7f\U0001ee8a\U0001ee9c-\U0001eea0\U0001eea4\U0001eeaa\U0001eebc-\U0001eeef\U0001eef2-\U0001efff\U0001f02c-\U0001f02f\U0001f094-\U0001f09f\U0001f0af-\U0001f0b0\U0001f0c0\U0001f0d0\U0001f0f6-\U0001f0ff\U0001f10d-\U0001f10f\U0001f16c-\U0001f16f\U0001f1ad-\U0001f1e5\U0001f203-\U0001f20f\U0001f23c-\U0001f23f\U0001f249-\U0001f24f\U0001f252-\U0001f25f\U0001f266-\U0001f2ff\U0001f6d5-\U0001f6df\U0001f6ed-\U0001f6ef\U0001f6fa-\U0001f6ff\U0001f774-\U0001f77f\U0001f7d9-\U0001f7ff\U0001f80c-\U0001f80f\U0001f848-\U0001f84f\U0001f85a-\U0001f85f\U0001f888-\U0001f88f\U0001f8ae-\U0001f8ff\U0001f90c-\U0001f90f\U0001f93f\U0001f971-\U0001f972\U0001f977-\U0001f979\U0001f97b\U0001f9a3-\U0001f9af\U0001f9ba-\U0001f9bf\U0001f9c3-\U0001f9cf\U0001fa00-\U0001fa5f\U0001fa6e-\U0001ffff\U0002a6d7-\U0002a6ff\U0002b735-\U0002b73f\U0002b81e-\U0002b81f\U0002cea2-\U0002ceaf\U0002ebe1-\U0002f7ff\U0002fa1e-\U000e0000\U000e0002-\U000e001f\U000e0080-\U000e00ff\U000e01f0-\U000effff\U000ffffe-\U000fffff\U0010fffe-\U0010ffff' + +Co = '\ue000-\uf8ff\U000f0000-\U000ffffd\U00100000-\U0010fffd' + +Cs = '\ud800-\udbff\\\udc00\udc01-\udfff' + +Ll = 'a-z\xb5\xdf-\xf6\xf8-\xff\u0101\u0103\u0105\u0107\u0109\u010b\u010d\u010f\u0111\u0113\u0115\u0117\u0119\u011b\u011d\u011f\u0121\u0123\u0125\u0127\u0129\u012b\u012d\u012f\u0131\u0133\u0135\u0137-\u0138\u013a\u013c\u013e\u0140\u0142\u0144\u0146\u0148-\u0149\u014b\u014d\u014f\u0151\u0153\u0155\u0157\u0159\u015b\u015d\u015f\u0161\u0163\u0165\u0167\u0169\u016b\u016d\u016f\u0171\u0173\u0175\u0177\u017a\u017c\u017e-\u0180\u0183\u0185\u0188\u018c-\u018d\u0192\u0195\u0199-\u019b\u019e\u01a1\u01a3\u01a5\u01a8\u01aa-\u01ab\u01ad\u01b0\u01b4\u01b6\u01b9-\u01ba\u01bd-\u01bf\u01c6\u01c9\u01cc\u01ce\u01d0\u01d2\u01d4\u01d6\u01d8\u01da\u01dc-\u01dd\u01df\u01e1\u01e3\u01e5\u01e7\u01e9\u01eb\u01ed\u01ef-\u01f0\u01f3\u01f5\u01f9\u01fb\u01fd\u01ff\u0201\u0203\u0205\u0207\u0209\u020b\u020d\u020f\u0211\u0213\u0215\u0217\u0219\u021b\u021d\u021f\u0221\u0223\u0225\u0227\u0229\u022b\u022d\u022f\u0231\u0233-\u0239\u023c\u023f-\u0240\u0242\u0247\u0249\u024b\u024d\u024f-\u0293\u0295-\u02af\u0371\u0373\u0377\u037b-\u037d\u0390\u03ac-\u03ce\u03d0-\u03d1\u03d5-\u03d7\u03d9\u03db\u03dd\u03df\u03e1\u03e3\u03e5\u03e7\u03e9\u03eb\u03ed\u03ef-\u03f3\u03f5\u03f8\u03fb-\u03fc\u0430-\u045f\u0461\u0463\u0465\u0467\u0469\u046b\u046d\u046f\u0471\u0473\u0475\u0477\u0479\u047b\u047d\u047f\u0481\u048b\u048d\u048f\u0491\u0493\u0495\u0497\u0499\u049b\u049d\u049f\u04a1\u04a3\u04a5\u04a7\u04a9\u04ab\u04ad\u04af\u04b1\u04b3\u04b5\u04b7\u04b9\u04bb\u04bd\u04bf\u04c2\u04c4\u04c6\u04c8\u04ca\u04cc\u04ce-\u04cf\u04d1\u04d3\u04d5\u04d7\u04d9\u04db\u04dd\u04df\u04e1\u04e3\u04e5\u04e7\u04e9\u04eb\u04ed\u04ef\u04f1\u04f3\u04f5\u04f7\u04f9\u04fb\u04fd\u04ff\u0501\u0503\u0505\u0507\u0509\u050b\u050d\u050f\u0511\u0513\u0515\u0517\u0519\u051b\u051d\u051f\u0521\u0523\u0525\u0527\u0529\u052b\u052d\u052f\u0560-\u0588\u10d0-\u10fa\u10fd-\u10ff\u13f8-\u13fd\u1c80-\u1c88\u1d00-\u1d2b\u1d6b-\u1d77\u1d79-\u1d9a\u1e01\u1e03\u1e05\u1e07\u1e09\u1e0b\u1e0d\u1e0f\u1e11\u1e13\u1e15\u1e17\u1e19\u1e1b\u1e1d\u1e1f\u1e21\u1e23\u1e25\u1e27\u1e29\u1e2b\u1e2d\u1e2f\u1e31\u1e33\u1e35\u1e37\u1e39\u1e3b\u1e3d\u1e3f\u1e41\u1e43\u1e45\u1e47\u1e49\u1e4b\u1e4d\u1e4f\u1e51\u1e53\u1e55\u1e57\u1e59\u1e5b\u1e5d\u1e5f\u1e61\u1e63\u1e65\u1e67\u1e69\u1e6b\u1e6d\u1e6f\u1e71\u1e73\u1e75\u1e77\u1e79\u1e7b\u1e7d\u1e7f\u1e81\u1e83\u1e85\u1e87\u1e89\u1e8b\u1e8d\u1e8f\u1e91\u1e93\u1e95-\u1e9d\u1e9f\u1ea1\u1ea3\u1ea5\u1ea7\u1ea9\u1eab\u1ead\u1eaf\u1eb1\u1eb3\u1eb5\u1eb7\u1eb9\u1ebb\u1ebd\u1ebf\u1ec1\u1ec3\u1ec5\u1ec7\u1ec9\u1ecb\u1ecd\u1ecf\u1ed1\u1ed3\u1ed5\u1ed7\u1ed9\u1edb\u1edd\u1edf\u1ee1\u1ee3\u1ee5\u1ee7\u1ee9\u1eeb\u1eed\u1eef\u1ef1\u1ef3\u1ef5\u1ef7\u1ef9\u1efb\u1efd\u1eff-\u1f07\u1f10-\u1f15\u1f20-\u1f27\u1f30-\u1f37\u1f40-\u1f45\u1f50-\u1f57\u1f60-\u1f67\u1f70-\u1f7d\u1f80-\u1f87\u1f90-\u1f97\u1fa0-\u1fa7\u1fb0-\u1fb4\u1fb6-\u1fb7\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fc7\u1fd0-\u1fd3\u1fd6-\u1fd7\u1fe0-\u1fe7\u1ff2-\u1ff4\u1ff6-\u1ff7\u210a\u210e-\u210f\u2113\u212f\u2134\u2139\u213c-\u213d\u2146-\u2149\u214e\u2184\u2c30-\u2c5e\u2c61\u2c65-\u2c66\u2c68\u2c6a\u2c6c\u2c71\u2c73-\u2c74\u2c76-\u2c7b\u2c81\u2c83\u2c85\u2c87\u2c89\u2c8b\u2c8d\u2c8f\u2c91\u2c93\u2c95\u2c97\u2c99\u2c9b\u2c9d\u2c9f\u2ca1\u2ca3\u2ca5\u2ca7\u2ca9\u2cab\u2cad\u2caf\u2cb1\u2cb3\u2cb5\u2cb7\u2cb9\u2cbb\u2cbd\u2cbf\u2cc1\u2cc3\u2cc5\u2cc7\u2cc9\u2ccb\u2ccd\u2ccf\u2cd1\u2cd3\u2cd5\u2cd7\u2cd9\u2cdb\u2cdd\u2cdf\u2ce1\u2ce3-\u2ce4\u2cec\u2cee\u2cf3\u2d00-\u2d25\u2d27\u2d2d\ua641\ua643\ua645\ua647\ua649\ua64b\ua64d\ua64f\ua651\ua653\ua655\ua657\ua659\ua65b\ua65d\ua65f\ua661\ua663\ua665\ua667\ua669\ua66b\ua66d\ua681\ua683\ua685\ua687\ua689\ua68b\ua68d\ua68f\ua691\ua693\ua695\ua697\ua699\ua69b\ua723\ua725\ua727\ua729\ua72b\ua72d\ua72f-\ua731\ua733\ua735\ua737\ua739\ua73b\ua73d\ua73f\ua741\ua743\ua745\ua747\ua749\ua74b\ua74d\ua74f\ua751\ua753\ua755\ua757\ua759\ua75b\ua75d\ua75f\ua761\ua763\ua765\ua767\ua769\ua76b\ua76d\ua76f\ua771-\ua778\ua77a\ua77c\ua77f\ua781\ua783\ua785\ua787\ua78c\ua78e\ua791\ua793-\ua795\ua797\ua799\ua79b\ua79d\ua79f\ua7a1\ua7a3\ua7a5\ua7a7\ua7a9\ua7af\ua7b5\ua7b7\ua7b9\ua7fa\uab30-\uab5a\uab60-\uab65\uab70-\uabbf\ufb00-\ufb06\ufb13-\ufb17\uff41-\uff5a\U00010428-\U0001044f\U000104d8-\U000104fb\U00010cc0-\U00010cf2\U000118c0-\U000118df\U00016e60-\U00016e7f\U0001d41a-\U0001d433\U0001d44e-\U0001d454\U0001d456-\U0001d467\U0001d482-\U0001d49b\U0001d4b6-\U0001d4b9\U0001d4bb\U0001d4bd-\U0001d4c3\U0001d4c5-\U0001d4cf\U0001d4ea-\U0001d503\U0001d51e-\U0001d537\U0001d552-\U0001d56b\U0001d586-\U0001d59f\U0001d5ba-\U0001d5d3\U0001d5ee-\U0001d607\U0001d622-\U0001d63b\U0001d656-\U0001d66f\U0001d68a-\U0001d6a5\U0001d6c2-\U0001d6da\U0001d6dc-\U0001d6e1\U0001d6fc-\U0001d714\U0001d716-\U0001d71b\U0001d736-\U0001d74e\U0001d750-\U0001d755\U0001d770-\U0001d788\U0001d78a-\U0001d78f\U0001d7aa-\U0001d7c2\U0001d7c4-\U0001d7c9\U0001d7cb\U0001e922-\U0001e943' + +Lm = '\u02b0-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0374\u037a\u0559\u0640\u06e5-\u06e6\u07f4-\u07f5\u07fa\u081a\u0824\u0828\u0971\u0e46\u0ec6\u10fc\u17d7\u1843\u1aa7\u1c78-\u1c7d\u1d2c-\u1d6a\u1d78\u1d9b-\u1dbf\u2071\u207f\u2090-\u209c\u2c7c-\u2c7d\u2d6f\u2e2f\u3005\u3031-\u3035\u303b\u309d-\u309e\u30fc-\u30fe\ua015\ua4f8-\ua4fd\ua60c\ua67f\ua69c-\ua69d\ua717-\ua71f\ua770\ua788\ua7f8-\ua7f9\ua9cf\ua9e6\uaa70\uaadd\uaaf3-\uaaf4\uab5c-\uab5f\uff70\uff9e-\uff9f\U00016b40-\U00016b43\U00016f93-\U00016f9f\U00016fe0-\U00016fe1' + +Lo = '\xaa\xba\u01bb\u01c0-\u01c3\u0294\u05d0-\u05ea\u05ef-\u05f2\u0620-\u063f\u0641-\u064a\u066e-\u066f\u0671-\u06d3\u06d5\u06ee-\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u0800-\u0815\u0840-\u0858\u0860-\u086a\u08a0-\u08b4\u08b6-\u08bd\u0904-\u0939\u093d\u0950\u0958-\u0961\u0972-\u0980\u0985-\u098c\u098f-\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc-\u09dd\u09df-\u09e1\u09f0-\u09f1\u09fc\u0a05-\u0a0a\u0a0f-\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32-\u0a33\u0a35-\u0a36\u0a38-\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2-\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0-\u0ae1\u0af9\u0b05-\u0b0c\u0b0f-\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32-\u0b33\u0b35-\u0b39\u0b3d\u0b5c-\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99-\u0b9a\u0b9c\u0b9e-\u0b9f\u0ba3-\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c60-\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0-\u0ce1\u0cf1-\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32-\u0e33\u0e40-\u0e45\u0e81-\u0e82\u0e84\u0e87-\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa-\u0eab\u0ead-\u0eb0\u0eb2-\u0eb3\u0ebd\u0ec0-\u0ec4\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065-\u1066\u106e-\u1070\u1075-\u1081\u108e\u1100-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16f1-\u16f8\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17dc\u1820-\u1842\u1844-\u1878\u1880-\u1884\u1887-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae-\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c77\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5-\u1cf6\u2135-\u2138\u2d30-\u2d67\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3006\u303c\u3041-\u3096\u309f\u30a1-\u30fa\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fef\ua000-\ua014\ua016-\ua48c\ua4d0-\ua4f7\ua500-\ua60b\ua610-\ua61f\ua62a-\ua62b\ua66e\ua6a0-\ua6e5\ua78f\ua7f7\ua7fb-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd-\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9e0-\ua9e4\ua9e7-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa6f\uaa71-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5-\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadc\uaae0-\uaaea\uaaf2\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff66-\uff6f\uff71-\uff9d\uffa0-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc\U00010000-\U0001000b\U0001000d-\U00010026\U00010028-\U0001003a\U0001003c-\U0001003d\U0001003f-\U0001004d\U00010050-\U0001005d\U00010080-\U000100fa\U00010280-\U0001029c\U000102a0-\U000102d0\U00010300-\U0001031f\U0001032d-\U00010340\U00010342-\U00010349\U00010350-\U00010375\U00010380-\U0001039d\U000103a0-\U000103c3\U000103c8-\U000103cf\U00010450-\U0001049d\U00010500-\U00010527\U00010530-\U00010563\U00010600-\U00010736\U00010740-\U00010755\U00010760-\U00010767\U00010800-\U00010805\U00010808\U0001080a-\U00010835\U00010837-\U00010838\U0001083c\U0001083f-\U00010855\U00010860-\U00010876\U00010880-\U0001089e\U000108e0-\U000108f2\U000108f4-\U000108f5\U00010900-\U00010915\U00010920-\U00010939\U00010980-\U000109b7\U000109be-\U000109bf\U00010a00\U00010a10-\U00010a13\U00010a15-\U00010a17\U00010a19-\U00010a35\U00010a60-\U00010a7c\U00010a80-\U00010a9c\U00010ac0-\U00010ac7\U00010ac9-\U00010ae4\U00010b00-\U00010b35\U00010b40-\U00010b55\U00010b60-\U00010b72\U00010b80-\U00010b91\U00010c00-\U00010c48\U00010d00-\U00010d23\U00010f00-\U00010f1c\U00010f27\U00010f30-\U00010f45\U00011003-\U00011037\U00011083-\U000110af\U000110d0-\U000110e8\U00011103-\U00011126\U00011144\U00011150-\U00011172\U00011176\U00011183-\U000111b2\U000111c1-\U000111c4\U000111da\U000111dc\U00011200-\U00011211\U00011213-\U0001122b\U00011280-\U00011286\U00011288\U0001128a-\U0001128d\U0001128f-\U0001129d\U0001129f-\U000112a8\U000112b0-\U000112de\U00011305-\U0001130c\U0001130f-\U00011310\U00011313-\U00011328\U0001132a-\U00011330\U00011332-\U00011333\U00011335-\U00011339\U0001133d\U00011350\U0001135d-\U00011361\U00011400-\U00011434\U00011447-\U0001144a\U00011480-\U000114af\U000114c4-\U000114c5\U000114c7\U00011580-\U000115ae\U000115d8-\U000115db\U00011600-\U0001162f\U00011644\U00011680-\U000116aa\U00011700-\U0001171a\U00011800-\U0001182b\U000118ff\U00011a00\U00011a0b-\U00011a32\U00011a3a\U00011a50\U00011a5c-\U00011a83\U00011a86-\U00011a89\U00011a9d\U00011ac0-\U00011af8\U00011c00-\U00011c08\U00011c0a-\U00011c2e\U00011c40\U00011c72-\U00011c8f\U00011d00-\U00011d06\U00011d08-\U00011d09\U00011d0b-\U00011d30\U00011d46\U00011d60-\U00011d65\U00011d67-\U00011d68\U00011d6a-\U00011d89\U00011d98\U00011ee0-\U00011ef2\U00012000-\U00012399\U00012480-\U00012543\U00013000-\U0001342e\U00014400-\U00014646\U00016800-\U00016a38\U00016a40-\U00016a5e\U00016ad0-\U00016aed\U00016b00-\U00016b2f\U00016b63-\U00016b77\U00016b7d-\U00016b8f\U00016f00-\U00016f44\U00016f50\U00017000-\U000187f1\U00018800-\U00018af2\U0001b000-\U0001b11e\U0001b170-\U0001b2fb\U0001bc00-\U0001bc6a\U0001bc70-\U0001bc7c\U0001bc80-\U0001bc88\U0001bc90-\U0001bc99\U0001e800-\U0001e8c4\U0001ee00-\U0001ee03\U0001ee05-\U0001ee1f\U0001ee21-\U0001ee22\U0001ee24\U0001ee27\U0001ee29-\U0001ee32\U0001ee34-\U0001ee37\U0001ee39\U0001ee3b\U0001ee42\U0001ee47\U0001ee49\U0001ee4b\U0001ee4d-\U0001ee4f\U0001ee51-\U0001ee52\U0001ee54\U0001ee57\U0001ee59\U0001ee5b\U0001ee5d\U0001ee5f\U0001ee61-\U0001ee62\U0001ee64\U0001ee67-\U0001ee6a\U0001ee6c-\U0001ee72\U0001ee74-\U0001ee77\U0001ee79-\U0001ee7c\U0001ee7e\U0001ee80-\U0001ee89\U0001ee8b-\U0001ee9b\U0001eea1-\U0001eea3\U0001eea5-\U0001eea9\U0001eeab-\U0001eebb\U00020000-\U0002a6d6\U0002a700-\U0002b734\U0002b740-\U0002b81d\U0002b820-\U0002cea1\U0002ceb0-\U0002ebe0\U0002f800-\U0002fa1d' + +Lt = '\u01c5\u01c8\u01cb\u01f2\u1f88-\u1f8f\u1f98-\u1f9f\u1fa8-\u1faf\u1fbc\u1fcc\u1ffc' + +Lu = 'A-Z\xc0-\xd6\xd8-\xde\u0100\u0102\u0104\u0106\u0108\u010a\u010c\u010e\u0110\u0112\u0114\u0116\u0118\u011a\u011c\u011e\u0120\u0122\u0124\u0126\u0128\u012a\u012c\u012e\u0130\u0132\u0134\u0136\u0139\u013b\u013d\u013f\u0141\u0143\u0145\u0147\u014a\u014c\u014e\u0150\u0152\u0154\u0156\u0158\u015a\u015c\u015e\u0160\u0162\u0164\u0166\u0168\u016a\u016c\u016e\u0170\u0172\u0174\u0176\u0178-\u0179\u017b\u017d\u0181-\u0182\u0184\u0186-\u0187\u0189-\u018b\u018e-\u0191\u0193-\u0194\u0196-\u0198\u019c-\u019d\u019f-\u01a0\u01a2\u01a4\u01a6-\u01a7\u01a9\u01ac\u01ae-\u01af\u01b1-\u01b3\u01b5\u01b7-\u01b8\u01bc\u01c4\u01c7\u01ca\u01cd\u01cf\u01d1\u01d3\u01d5\u01d7\u01d9\u01db\u01de\u01e0\u01e2\u01e4\u01e6\u01e8\u01ea\u01ec\u01ee\u01f1\u01f4\u01f6-\u01f8\u01fa\u01fc\u01fe\u0200\u0202\u0204\u0206\u0208\u020a\u020c\u020e\u0210\u0212\u0214\u0216\u0218\u021a\u021c\u021e\u0220\u0222\u0224\u0226\u0228\u022a\u022c\u022e\u0230\u0232\u023a-\u023b\u023d-\u023e\u0241\u0243-\u0246\u0248\u024a\u024c\u024e\u0370\u0372\u0376\u037f\u0386\u0388-\u038a\u038c\u038e-\u038f\u0391-\u03a1\u03a3-\u03ab\u03cf\u03d2-\u03d4\u03d8\u03da\u03dc\u03de\u03e0\u03e2\u03e4\u03e6\u03e8\u03ea\u03ec\u03ee\u03f4\u03f7\u03f9-\u03fa\u03fd-\u042f\u0460\u0462\u0464\u0466\u0468\u046a\u046c\u046e\u0470\u0472\u0474\u0476\u0478\u047a\u047c\u047e\u0480\u048a\u048c\u048e\u0490\u0492\u0494\u0496\u0498\u049a\u049c\u049e\u04a0\u04a2\u04a4\u04a6\u04a8\u04aa\u04ac\u04ae\u04b0\u04b2\u04b4\u04b6\u04b8\u04ba\u04bc\u04be\u04c0-\u04c1\u04c3\u04c5\u04c7\u04c9\u04cb\u04cd\u04d0\u04d2\u04d4\u04d6\u04d8\u04da\u04dc\u04de\u04e0\u04e2\u04e4\u04e6\u04e8\u04ea\u04ec\u04ee\u04f0\u04f2\u04f4\u04f6\u04f8\u04fa\u04fc\u04fe\u0500\u0502\u0504\u0506\u0508\u050a\u050c\u050e\u0510\u0512\u0514\u0516\u0518\u051a\u051c\u051e\u0520\u0522\u0524\u0526\u0528\u052a\u052c\u052e\u0531-\u0556\u10a0-\u10c5\u10c7\u10cd\u13a0-\u13f5\u1c90-\u1cba\u1cbd-\u1cbf\u1e00\u1e02\u1e04\u1e06\u1e08\u1e0a\u1e0c\u1e0e\u1e10\u1e12\u1e14\u1e16\u1e18\u1e1a\u1e1c\u1e1e\u1e20\u1e22\u1e24\u1e26\u1e28\u1e2a\u1e2c\u1e2e\u1e30\u1e32\u1e34\u1e36\u1e38\u1e3a\u1e3c\u1e3e\u1e40\u1e42\u1e44\u1e46\u1e48\u1e4a\u1e4c\u1e4e\u1e50\u1e52\u1e54\u1e56\u1e58\u1e5a\u1e5c\u1e5e\u1e60\u1e62\u1e64\u1e66\u1e68\u1e6a\u1e6c\u1e6e\u1e70\u1e72\u1e74\u1e76\u1e78\u1e7a\u1e7c\u1e7e\u1e80\u1e82\u1e84\u1e86\u1e88\u1e8a\u1e8c\u1e8e\u1e90\u1e92\u1e94\u1e9e\u1ea0\u1ea2\u1ea4\u1ea6\u1ea8\u1eaa\u1eac\u1eae\u1eb0\u1eb2\u1eb4\u1eb6\u1eb8\u1eba\u1ebc\u1ebe\u1ec0\u1ec2\u1ec4\u1ec6\u1ec8\u1eca\u1ecc\u1ece\u1ed0\u1ed2\u1ed4\u1ed6\u1ed8\u1eda\u1edc\u1ede\u1ee0\u1ee2\u1ee4\u1ee6\u1ee8\u1eea\u1eec\u1eee\u1ef0\u1ef2\u1ef4\u1ef6\u1ef8\u1efa\u1efc\u1efe\u1f08-\u1f0f\u1f18-\u1f1d\u1f28-\u1f2f\u1f38-\u1f3f\u1f48-\u1f4d\u1f59\u1f5b\u1f5d\u1f5f\u1f68-\u1f6f\u1fb8-\u1fbb\u1fc8-\u1fcb\u1fd8-\u1fdb\u1fe8-\u1fec\u1ff8-\u1ffb\u2102\u2107\u210b-\u210d\u2110-\u2112\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u2130-\u2133\u213e-\u213f\u2145\u2183\u2c00-\u2c2e\u2c60\u2c62-\u2c64\u2c67\u2c69\u2c6b\u2c6d-\u2c70\u2c72\u2c75\u2c7e-\u2c80\u2c82\u2c84\u2c86\u2c88\u2c8a\u2c8c\u2c8e\u2c90\u2c92\u2c94\u2c96\u2c98\u2c9a\u2c9c\u2c9e\u2ca0\u2ca2\u2ca4\u2ca6\u2ca8\u2caa\u2cac\u2cae\u2cb0\u2cb2\u2cb4\u2cb6\u2cb8\u2cba\u2cbc\u2cbe\u2cc0\u2cc2\u2cc4\u2cc6\u2cc8\u2cca\u2ccc\u2cce\u2cd0\u2cd2\u2cd4\u2cd6\u2cd8\u2cda\u2cdc\u2cde\u2ce0\u2ce2\u2ceb\u2ced\u2cf2\ua640\ua642\ua644\ua646\ua648\ua64a\ua64c\ua64e\ua650\ua652\ua654\ua656\ua658\ua65a\ua65c\ua65e\ua660\ua662\ua664\ua666\ua668\ua66a\ua66c\ua680\ua682\ua684\ua686\ua688\ua68a\ua68c\ua68e\ua690\ua692\ua694\ua696\ua698\ua69a\ua722\ua724\ua726\ua728\ua72a\ua72c\ua72e\ua732\ua734\ua736\ua738\ua73a\ua73c\ua73e\ua740\ua742\ua744\ua746\ua748\ua74a\ua74c\ua74e\ua750\ua752\ua754\ua756\ua758\ua75a\ua75c\ua75e\ua760\ua762\ua764\ua766\ua768\ua76a\ua76c\ua76e\ua779\ua77b\ua77d-\ua77e\ua780\ua782\ua784\ua786\ua78b\ua78d\ua790\ua792\ua796\ua798\ua79a\ua79c\ua79e\ua7a0\ua7a2\ua7a4\ua7a6\ua7a8\ua7aa-\ua7ae\ua7b0-\ua7b4\ua7b6\ua7b8\uff21-\uff3a\U00010400-\U00010427\U000104b0-\U000104d3\U00010c80-\U00010cb2\U000118a0-\U000118bf\U00016e40-\U00016e5f\U0001d400-\U0001d419\U0001d434-\U0001d44d\U0001d468-\U0001d481\U0001d49c\U0001d49e-\U0001d49f\U0001d4a2\U0001d4a5-\U0001d4a6\U0001d4a9-\U0001d4ac\U0001d4ae-\U0001d4b5\U0001d4d0-\U0001d4e9\U0001d504-\U0001d505\U0001d507-\U0001d50a\U0001d50d-\U0001d514\U0001d516-\U0001d51c\U0001d538-\U0001d539\U0001d53b-\U0001d53e\U0001d540-\U0001d544\U0001d546\U0001d54a-\U0001d550\U0001d56c-\U0001d585\U0001d5a0-\U0001d5b9\U0001d5d4-\U0001d5ed\U0001d608-\U0001d621\U0001d63c-\U0001d655\U0001d670-\U0001d689\U0001d6a8-\U0001d6c0\U0001d6e2-\U0001d6fa\U0001d71c-\U0001d734\U0001d756-\U0001d76e\U0001d790-\U0001d7a8\U0001d7ca\U0001e900-\U0001e921' + +Mc = '\u0903\u093b\u093e-\u0940\u0949-\u094c\u094e-\u094f\u0982-\u0983\u09be-\u09c0\u09c7-\u09c8\u09cb-\u09cc\u09d7\u0a03\u0a3e-\u0a40\u0a83\u0abe-\u0ac0\u0ac9\u0acb-\u0acc\u0b02-\u0b03\u0b3e\u0b40\u0b47-\u0b48\u0b4b-\u0b4c\u0b57\u0bbe-\u0bbf\u0bc1-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcc\u0bd7\u0c01-\u0c03\u0c41-\u0c44\u0c82-\u0c83\u0cbe\u0cc0-\u0cc4\u0cc7-\u0cc8\u0cca-\u0ccb\u0cd5-\u0cd6\u0d02-\u0d03\u0d3e-\u0d40\u0d46-\u0d48\u0d4a-\u0d4c\u0d57\u0d82-\u0d83\u0dcf-\u0dd1\u0dd8-\u0ddf\u0df2-\u0df3\u0f3e-\u0f3f\u0f7f\u102b-\u102c\u1031\u1038\u103b-\u103c\u1056-\u1057\u1062-\u1064\u1067-\u106d\u1083-\u1084\u1087-\u108c\u108f\u109a-\u109c\u17b6\u17be-\u17c5\u17c7-\u17c8\u1923-\u1926\u1929-\u192b\u1930-\u1931\u1933-\u1938\u1a19-\u1a1a\u1a55\u1a57\u1a61\u1a63-\u1a64\u1a6d-\u1a72\u1b04\u1b35\u1b3b\u1b3d-\u1b41\u1b43-\u1b44\u1b82\u1ba1\u1ba6-\u1ba7\u1baa\u1be7\u1bea-\u1bec\u1bee\u1bf2-\u1bf3\u1c24-\u1c2b\u1c34-\u1c35\u1ce1\u1cf2-\u1cf3\u1cf7\u302e-\u302f\ua823-\ua824\ua827\ua880-\ua881\ua8b4-\ua8c3\ua952-\ua953\ua983\ua9b4-\ua9b5\ua9ba-\ua9bb\ua9bd-\ua9c0\uaa2f-\uaa30\uaa33-\uaa34\uaa4d\uaa7b\uaa7d\uaaeb\uaaee-\uaaef\uaaf5\uabe3-\uabe4\uabe6-\uabe7\uabe9-\uabea\uabec\U00011000\U00011002\U00011082\U000110b0-\U000110b2\U000110b7-\U000110b8\U0001112c\U00011145-\U00011146\U00011182\U000111b3-\U000111b5\U000111bf-\U000111c0\U0001122c-\U0001122e\U00011232-\U00011233\U00011235\U000112e0-\U000112e2\U00011302-\U00011303\U0001133e-\U0001133f\U00011341-\U00011344\U00011347-\U00011348\U0001134b-\U0001134d\U00011357\U00011362-\U00011363\U00011435-\U00011437\U00011440-\U00011441\U00011445\U000114b0-\U000114b2\U000114b9\U000114bb-\U000114be\U000114c1\U000115af-\U000115b1\U000115b8-\U000115bb\U000115be\U00011630-\U00011632\U0001163b-\U0001163c\U0001163e\U000116ac\U000116ae-\U000116af\U000116b6\U00011720-\U00011721\U00011726\U0001182c-\U0001182e\U00011838\U00011a39\U00011a57-\U00011a58\U00011a97\U00011c2f\U00011c3e\U00011ca9\U00011cb1\U00011cb4\U00011d8a-\U00011d8e\U00011d93-\U00011d94\U00011d96\U00011ef5-\U00011ef6\U00016f51-\U00016f7e\U0001d165-\U0001d166\U0001d16d-\U0001d172' + +Me = '\u0488-\u0489\u1abe\u20dd-\u20e0\u20e2-\u20e4\ua670-\ua672' + +Mn = '\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05c7\u0610-\u061a\u064b-\u065f\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7-\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08d3-\u08e1\u08e3-\u0902\u093a\u093c\u0941-\u0948\u094d\u0951-\u0957\u0962-\u0963\u0981\u09bc\u09c1-\u09c4\u09cd\u09e2-\u09e3\u09fe\u0a01-\u0a02\u0a3c\u0a41-\u0a42\u0a47-\u0a48\u0a4b-\u0a4d\u0a51\u0a70-\u0a71\u0a75\u0a81-\u0a82\u0abc\u0ac1-\u0ac5\u0ac7-\u0ac8\u0acd\u0ae2-\u0ae3\u0afa-\u0aff\u0b01\u0b3c\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b62-\u0b63\u0b82\u0bc0\u0bcd\u0c00\u0c04\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55-\u0c56\u0c62-\u0c63\u0c81\u0cbc\u0cbf\u0cc6\u0ccc-\u0ccd\u0ce2-\u0ce3\u0d00-\u0d01\u0d3b-\u0d3c\u0d41-\u0d44\u0d4d\u0d62-\u0d63\u0dca\u0dd2-\u0dd4\u0dd6\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb-\u0ebc\u0ec8-\u0ecd\u0f18-\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86-\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039-\u103a\u103d-\u103e\u1058-\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085-\u1086\u108d\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752-\u1753\u1772-\u1773\u17b4-\u17b5\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u1885-\u1886\u18a9\u1920-\u1922\u1927-\u1928\u1932\u1939-\u193b\u1a17-\u1a18\u1a1b\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1ab0-\u1abd\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80-\u1b81\u1ba2-\u1ba5\u1ba8-\u1ba9\u1bab-\u1bad\u1be6\u1be8-\u1be9\u1bed\u1bef-\u1bf1\u1c2c-\u1c33\u1c36-\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1cf4\u1cf8-\u1cf9\u1dc0-\u1df9\u1dfb-\u1dff\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302d\u3099-\u309a\ua66f\ua674-\ua67d\ua69e-\ua69f\ua6f0-\ua6f1\ua802\ua806\ua80b\ua825-\ua826\ua8c4-\ua8c5\ua8e0-\ua8f1\ua8ff\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\ua9e5\uaa29-\uaa2e\uaa31-\uaa32\uaa35-\uaa36\uaa43\uaa4c\uaa7c\uaab0\uaab2-\uaab4\uaab7-\uaab8\uaabe-\uaabf\uaac1\uaaec-\uaaed\uaaf6\uabe5\uabe8\uabed\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\U000101fd\U000102e0\U00010376-\U0001037a\U00010a01-\U00010a03\U00010a05-\U00010a06\U00010a0c-\U00010a0f\U00010a38-\U00010a3a\U00010a3f\U00010ae5-\U00010ae6\U00010d24-\U00010d27\U00010f46-\U00010f50\U00011001\U00011038-\U00011046\U0001107f-\U00011081\U000110b3-\U000110b6\U000110b9-\U000110ba\U00011100-\U00011102\U00011127-\U0001112b\U0001112d-\U00011134\U00011173\U00011180-\U00011181\U000111b6-\U000111be\U000111c9-\U000111cc\U0001122f-\U00011231\U00011234\U00011236-\U00011237\U0001123e\U000112df\U000112e3-\U000112ea\U00011300-\U00011301\U0001133b-\U0001133c\U00011340\U00011366-\U0001136c\U00011370-\U00011374\U00011438-\U0001143f\U00011442-\U00011444\U00011446\U0001145e\U000114b3-\U000114b8\U000114ba\U000114bf-\U000114c0\U000114c2-\U000114c3\U000115b2-\U000115b5\U000115bc-\U000115bd\U000115bf-\U000115c0\U000115dc-\U000115dd\U00011633-\U0001163a\U0001163d\U0001163f-\U00011640\U000116ab\U000116ad\U000116b0-\U000116b5\U000116b7\U0001171d-\U0001171f\U00011722-\U00011725\U00011727-\U0001172b\U0001182f-\U00011837\U00011839-\U0001183a\U00011a01-\U00011a0a\U00011a33-\U00011a38\U00011a3b-\U00011a3e\U00011a47\U00011a51-\U00011a56\U00011a59-\U00011a5b\U00011a8a-\U00011a96\U00011a98-\U00011a99\U00011c30-\U00011c36\U00011c38-\U00011c3d\U00011c3f\U00011c92-\U00011ca7\U00011caa-\U00011cb0\U00011cb2-\U00011cb3\U00011cb5-\U00011cb6\U00011d31-\U00011d36\U00011d3a\U00011d3c-\U00011d3d\U00011d3f-\U00011d45\U00011d47\U00011d90-\U00011d91\U00011d95\U00011d97\U00011ef3-\U00011ef4\U00016af0-\U00016af4\U00016b30-\U00016b36\U00016f8f-\U00016f92\U0001bc9d-\U0001bc9e\U0001d167-\U0001d169\U0001d17b-\U0001d182\U0001d185-\U0001d18b\U0001d1aa-\U0001d1ad\U0001d242-\U0001d244\U0001da00-\U0001da36\U0001da3b-\U0001da6c\U0001da75\U0001da84\U0001da9b-\U0001da9f\U0001daa1-\U0001daaf\U0001e000-\U0001e006\U0001e008-\U0001e018\U0001e01b-\U0001e021\U0001e023-\U0001e024\U0001e026-\U0001e02a\U0001e8d0-\U0001e8d6\U0001e944-\U0001e94a\U000e0100-\U000e01ef' + +Nd = '0-9\u0660-\u0669\u06f0-\u06f9\u07c0-\u07c9\u0966-\u096f\u09e6-\u09ef\u0a66-\u0a6f\u0ae6-\u0aef\u0b66-\u0b6f\u0be6-\u0bef\u0c66-\u0c6f\u0ce6-\u0cef\u0d66-\u0d6f\u0de6-\u0def\u0e50-\u0e59\u0ed0-\u0ed9\u0f20-\u0f29\u1040-\u1049\u1090-\u1099\u17e0-\u17e9\u1810-\u1819\u1946-\u194f\u19d0-\u19d9\u1a80-\u1a89\u1a90-\u1a99\u1b50-\u1b59\u1bb0-\u1bb9\u1c40-\u1c49\u1c50-\u1c59\ua620-\ua629\ua8d0-\ua8d9\ua900-\ua909\ua9d0-\ua9d9\ua9f0-\ua9f9\uaa50-\uaa59\uabf0-\uabf9\uff10-\uff19\U000104a0-\U000104a9\U00010d30-\U00010d39\U00011066-\U0001106f\U000110f0-\U000110f9\U00011136-\U0001113f\U000111d0-\U000111d9\U000112f0-\U000112f9\U00011450-\U00011459\U000114d0-\U000114d9\U00011650-\U00011659\U000116c0-\U000116c9\U00011730-\U00011739\U000118e0-\U000118e9\U00011c50-\U00011c59\U00011d50-\U00011d59\U00011da0-\U00011da9\U00016a60-\U00016a69\U00016b50-\U00016b59\U0001d7ce-\U0001d7ff\U0001e950-\U0001e959' + +Nl = '\u16ee-\u16f0\u2160-\u2182\u2185-\u2188\u3007\u3021-\u3029\u3038-\u303a\ua6e6-\ua6ef\U00010140-\U00010174\U00010341\U0001034a\U000103d1-\U000103d5\U00012400-\U0001246e' + +No = '\xb2-\xb3\xb9\xbc-\xbe\u09f4-\u09f9\u0b72-\u0b77\u0bf0-\u0bf2\u0c78-\u0c7e\u0d58-\u0d5e\u0d70-\u0d78\u0f2a-\u0f33\u1369-\u137c\u17f0-\u17f9\u19da\u2070\u2074-\u2079\u2080-\u2089\u2150-\u215f\u2189\u2460-\u249b\u24ea-\u24ff\u2776-\u2793\u2cfd\u3192-\u3195\u3220-\u3229\u3248-\u324f\u3251-\u325f\u3280-\u3289\u32b1-\u32bf\ua830-\ua835\U00010107-\U00010133\U00010175-\U00010178\U0001018a-\U0001018b\U000102e1-\U000102fb\U00010320-\U00010323\U00010858-\U0001085f\U00010879-\U0001087f\U000108a7-\U000108af\U000108fb-\U000108ff\U00010916-\U0001091b\U000109bc-\U000109bd\U000109c0-\U000109cf\U000109d2-\U000109ff\U00010a40-\U00010a48\U00010a7d-\U00010a7e\U00010a9d-\U00010a9f\U00010aeb-\U00010aef\U00010b58-\U00010b5f\U00010b78-\U00010b7f\U00010ba9-\U00010baf\U00010cfa-\U00010cff\U00010e60-\U00010e7e\U00010f1d-\U00010f26\U00010f51-\U00010f54\U00011052-\U00011065\U000111e1-\U000111f4\U0001173a-\U0001173b\U000118ea-\U000118f2\U00011c5a-\U00011c6c\U00016b5b-\U00016b61\U00016e80-\U00016e96\U0001d2e0-\U0001d2f3\U0001d360-\U0001d378\U0001e8c7-\U0001e8cf\U0001ec71-\U0001ecab\U0001ecad-\U0001ecaf\U0001ecb1-\U0001ecb4\U0001f100-\U0001f10c' + +Pc = '_\u203f-\u2040\u2054\ufe33-\ufe34\ufe4d-\ufe4f\uff3f' + +Pd = '\\-\u058a\u05be\u1400\u1806\u2010-\u2015\u2e17\u2e1a\u2e3a-\u2e3b\u2e40\u301c\u3030\u30a0\ufe31-\ufe32\ufe58\ufe63\uff0d' + +Pe = ')\\]}\u0f3b\u0f3d\u169c\u2046\u207e\u208e\u2309\u230b\u232a\u2769\u276b\u276d\u276f\u2771\u2773\u2775\u27c6\u27e7\u27e9\u27eb\u27ed\u27ef\u2984\u2986\u2988\u298a\u298c\u298e\u2990\u2992\u2994\u2996\u2998\u29d9\u29db\u29fd\u2e23\u2e25\u2e27\u2e29\u3009\u300b\u300d\u300f\u3011\u3015\u3017\u3019\u301b\u301e-\u301f\ufd3e\ufe18\ufe36\ufe38\ufe3a\ufe3c\ufe3e\ufe40\ufe42\ufe44\ufe48\ufe5a\ufe5c\ufe5e\uff09\uff3d\uff5d\uff60\uff63' + +Pf = '\xbb\u2019\u201d\u203a\u2e03\u2e05\u2e0a\u2e0d\u2e1d\u2e21' + +Pi = '\xab\u2018\u201b-\u201c\u201f\u2039\u2e02\u2e04\u2e09\u2e0c\u2e1c\u2e20' + +Po = "!-#%-'*,.-/:-;?-@\\\\\xa1\xa7\xb6-\xb7\xbf\u037e\u0387\u055a-\u055f\u0589\u05c0\u05c3\u05c6\u05f3-\u05f4\u0609-\u060a\u060c-\u060d\u061b\u061e-\u061f\u066a-\u066d\u06d4\u0700-\u070d\u07f7-\u07f9\u0830-\u083e\u085e\u0964-\u0965\u0970\u09fd\u0a76\u0af0\u0c84\u0df4\u0e4f\u0e5a-\u0e5b\u0f04-\u0f12\u0f14\u0f85\u0fd0-\u0fd4\u0fd9-\u0fda\u104a-\u104f\u10fb\u1360-\u1368\u166d-\u166e\u16eb-\u16ed\u1735-\u1736\u17d4-\u17d6\u17d8-\u17da\u1800-\u1805\u1807-\u180a\u1944-\u1945\u1a1e-\u1a1f\u1aa0-\u1aa6\u1aa8-\u1aad\u1b5a-\u1b60\u1bfc-\u1bff\u1c3b-\u1c3f\u1c7e-\u1c7f\u1cc0-\u1cc7\u1cd3\u2016-\u2017\u2020-\u2027\u2030-\u2038\u203b-\u203e\u2041-\u2043\u2047-\u2051\u2053\u2055-\u205e\u2cf9-\u2cfc\u2cfe-\u2cff\u2d70\u2e00-\u2e01\u2e06-\u2e08\u2e0b\u2e0e-\u2e16\u2e18-\u2e19\u2e1b\u2e1e-\u2e1f\u2e2a-\u2e2e\u2e30-\u2e39\u2e3c-\u2e3f\u2e41\u2e43-\u2e4e\u3001-\u3003\u303d\u30fb\ua4fe-\ua4ff\ua60d-\ua60f\ua673\ua67e\ua6f2-\ua6f7\ua874-\ua877\ua8ce-\ua8cf\ua8f8-\ua8fa\ua8fc\ua92e-\ua92f\ua95f\ua9c1-\ua9cd\ua9de-\ua9df\uaa5c-\uaa5f\uaade-\uaadf\uaaf0-\uaaf1\uabeb\ufe10-\ufe16\ufe19\ufe30\ufe45-\ufe46\ufe49-\ufe4c\ufe50-\ufe52\ufe54-\ufe57\ufe5f-\ufe61\ufe68\ufe6a-\ufe6b\uff01-\uff03\uff05-\uff07\uff0a\uff0c\uff0e-\uff0f\uff1a-\uff1b\uff1f-\uff20\uff3c\uff61\uff64-\uff65\U00010100-\U00010102\U0001039f\U000103d0\U0001056f\U00010857\U0001091f\U0001093f\U00010a50-\U00010a58\U00010a7f\U00010af0-\U00010af6\U00010b39-\U00010b3f\U00010b99-\U00010b9c\U00010f55-\U00010f59\U00011047-\U0001104d\U000110bb-\U000110bc\U000110be-\U000110c1\U00011140-\U00011143\U00011174-\U00011175\U000111c5-\U000111c8\U000111cd\U000111db\U000111dd-\U000111df\U00011238-\U0001123d\U000112a9\U0001144b-\U0001144f\U0001145b\U0001145d\U000114c6\U000115c1-\U000115d7\U00011641-\U00011643\U00011660-\U0001166c\U0001173c-\U0001173e\U0001183b\U00011a3f-\U00011a46\U00011a9a-\U00011a9c\U00011a9e-\U00011aa2\U00011c41-\U00011c45\U00011c70-\U00011c71\U00011ef7-\U00011ef8\U00012470-\U00012474\U00016a6e-\U00016a6f\U00016af5\U00016b37-\U00016b3b\U00016b44\U00016e97-\U00016e9a\U0001bc9f\U0001da87-\U0001da8b\U0001e95e-\U0001e95f" + +Ps = '(\\[{\u0f3a\u0f3c\u169b\u201a\u201e\u2045\u207d\u208d\u2308\u230a\u2329\u2768\u276a\u276c\u276e\u2770\u2772\u2774\u27c5\u27e6\u27e8\u27ea\u27ec\u27ee\u2983\u2985\u2987\u2989\u298b\u298d\u298f\u2991\u2993\u2995\u2997\u29d8\u29da\u29fc\u2e22\u2e24\u2e26\u2e28\u2e42\u3008\u300a\u300c\u300e\u3010\u3014\u3016\u3018\u301a\u301d\ufd3f\ufe17\ufe35\ufe37\ufe39\ufe3b\ufe3d\ufe3f\ufe41\ufe43\ufe47\ufe59\ufe5b\ufe5d\uff08\uff3b\uff5b\uff5f\uff62' + +Sc = '$\xa2-\xa5\u058f\u060b\u07fe-\u07ff\u09f2-\u09f3\u09fb\u0af1\u0bf9\u0e3f\u17db\u20a0-\u20bf\ua838\ufdfc\ufe69\uff04\uffe0-\uffe1\uffe5-\uffe6\U0001ecb0' + +Sk = '\\^`\xa8\xaf\xb4\xb8\u02c2-\u02c5\u02d2-\u02df\u02e5-\u02eb\u02ed\u02ef-\u02ff\u0375\u0384-\u0385\u1fbd\u1fbf-\u1fc1\u1fcd-\u1fcf\u1fdd-\u1fdf\u1fed-\u1fef\u1ffd-\u1ffe\u309b-\u309c\ua700-\ua716\ua720-\ua721\ua789-\ua78a\uab5b\ufbb2-\ufbc1\uff3e\uff40\uffe3\U0001f3fb-\U0001f3ff' + +Sm = '+<->|~\xac\xb1\xd7\xf7\u03f6\u0606-\u0608\u2044\u2052\u207a-\u207c\u208a-\u208c\u2118\u2140-\u2144\u214b\u2190-\u2194\u219a-\u219b\u21a0\u21a3\u21a6\u21ae\u21ce-\u21cf\u21d2\u21d4\u21f4-\u22ff\u2320-\u2321\u237c\u239b-\u23b3\u23dc-\u23e1\u25b7\u25c1\u25f8-\u25ff\u266f\u27c0-\u27c4\u27c7-\u27e5\u27f0-\u27ff\u2900-\u2982\u2999-\u29d7\u29dc-\u29fb\u29fe-\u2aff\u2b30-\u2b44\u2b47-\u2b4c\ufb29\ufe62\ufe64-\ufe66\uff0b\uff1c-\uff1e\uff5c\uff5e\uffe2\uffe9-\uffec\U0001d6c1\U0001d6db\U0001d6fb\U0001d715\U0001d735\U0001d74f\U0001d76f\U0001d789\U0001d7a9\U0001d7c3\U0001eef0-\U0001eef1' + +So = '\xa6\xa9\xae\xb0\u0482\u058d-\u058e\u060e-\u060f\u06de\u06e9\u06fd-\u06fe\u07f6\u09fa\u0b70\u0bf3-\u0bf8\u0bfa\u0c7f\u0d4f\u0d79\u0f01-\u0f03\u0f13\u0f15-\u0f17\u0f1a-\u0f1f\u0f34\u0f36\u0f38\u0fbe-\u0fc5\u0fc7-\u0fcc\u0fce-\u0fcf\u0fd5-\u0fd8\u109e-\u109f\u1390-\u1399\u1940\u19de-\u19ff\u1b61-\u1b6a\u1b74-\u1b7c\u2100-\u2101\u2103-\u2106\u2108-\u2109\u2114\u2116-\u2117\u211e-\u2123\u2125\u2127\u2129\u212e\u213a-\u213b\u214a\u214c-\u214d\u214f\u218a-\u218b\u2195-\u2199\u219c-\u219f\u21a1-\u21a2\u21a4-\u21a5\u21a7-\u21ad\u21af-\u21cd\u21d0-\u21d1\u21d3\u21d5-\u21f3\u2300-\u2307\u230c-\u231f\u2322-\u2328\u232b-\u237b\u237d-\u239a\u23b4-\u23db\u23e2-\u2426\u2440-\u244a\u249c-\u24e9\u2500-\u25b6\u25b8-\u25c0\u25c2-\u25f7\u2600-\u266e\u2670-\u2767\u2794-\u27bf\u2800-\u28ff\u2b00-\u2b2f\u2b45-\u2b46\u2b4d-\u2b73\u2b76-\u2b95\u2b98-\u2bc8\u2bca-\u2bfe\u2ce5-\u2cea\u2e80-\u2e99\u2e9b-\u2ef3\u2f00-\u2fd5\u2ff0-\u2ffb\u3004\u3012-\u3013\u3020\u3036-\u3037\u303e-\u303f\u3190-\u3191\u3196-\u319f\u31c0-\u31e3\u3200-\u321e\u322a-\u3247\u3250\u3260-\u327f\u328a-\u32b0\u32c0-\u32fe\u3300-\u33ff\u4dc0-\u4dff\ua490-\ua4c6\ua828-\ua82b\ua836-\ua837\ua839\uaa77-\uaa79\ufdfd\uffe4\uffe8\uffed-\uffee\ufffc-\ufffd\U00010137-\U0001013f\U00010179-\U00010189\U0001018c-\U0001018e\U00010190-\U0001019b\U000101a0\U000101d0-\U000101fc\U00010877-\U00010878\U00010ac8\U0001173f\U00016b3c-\U00016b3f\U00016b45\U0001bc9c\U0001d000-\U0001d0f5\U0001d100-\U0001d126\U0001d129-\U0001d164\U0001d16a-\U0001d16c\U0001d183-\U0001d184\U0001d18c-\U0001d1a9\U0001d1ae-\U0001d1e8\U0001d200-\U0001d241\U0001d245\U0001d300-\U0001d356\U0001d800-\U0001d9ff\U0001da37-\U0001da3a\U0001da6d-\U0001da74\U0001da76-\U0001da83\U0001da85-\U0001da86\U0001ecac\U0001f000-\U0001f02b\U0001f030-\U0001f093\U0001f0a0-\U0001f0ae\U0001f0b1-\U0001f0bf\U0001f0c1-\U0001f0cf\U0001f0d1-\U0001f0f5\U0001f110-\U0001f16b\U0001f170-\U0001f1ac\U0001f1e6-\U0001f202\U0001f210-\U0001f23b\U0001f240-\U0001f248\U0001f250-\U0001f251\U0001f260-\U0001f265\U0001f300-\U0001f3fa\U0001f400-\U0001f6d4\U0001f6e0-\U0001f6ec\U0001f6f0-\U0001f6f9\U0001f700-\U0001f773\U0001f780-\U0001f7d8\U0001f800-\U0001f80b\U0001f810-\U0001f847\U0001f850-\U0001f859\U0001f860-\U0001f887\U0001f890-\U0001f8ad\U0001f900-\U0001f90b\U0001f910-\U0001f93e\U0001f940-\U0001f970\U0001f973-\U0001f976\U0001f97a\U0001f97c-\U0001f9a2\U0001f9b0-\U0001f9b9\U0001f9c0-\U0001f9c2\U0001f9d0-\U0001f9ff\U0001fa60-\U0001fa6d' + +Zl = '\u2028' + +Zp = '\u2029' + +Zs = ' \xa0\u1680\u2000-\u200a\u202f\u205f\u3000' + +xid_continue = '0-9A-Z_a-z\xaa\xb5\xb7\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0300-\u0374\u0376-\u0377\u037b-\u037d\u037f\u0386-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u0483-\u0487\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u0591-\u05bd\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05c7\u05d0-\u05ea\u05ef-\u05f2\u0610-\u061a\u0620-\u0669\u066e-\u06d3\u06d5-\u06dc\u06df-\u06e8\u06ea-\u06fc\u06ff\u0710-\u074a\u074d-\u07b1\u07c0-\u07f5\u07fa\u07fd\u0800-\u082d\u0840-\u085b\u0860-\u086a\u08a0-\u08b4\u08b6-\u08bd\u08d3-\u08e1\u08e3-\u0963\u0966-\u096f\u0971-\u0983\u0985-\u098c\u098f-\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bc-\u09c4\u09c7-\u09c8\u09cb-\u09ce\u09d7\u09dc-\u09dd\u09df-\u09e3\u09e6-\u09f1\u09fc\u09fe\u0a01-\u0a03\u0a05-\u0a0a\u0a0f-\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32-\u0a33\u0a35-\u0a36\u0a38-\u0a39\u0a3c\u0a3e-\u0a42\u0a47-\u0a48\u0a4b-\u0a4d\u0a51\u0a59-\u0a5c\u0a5e\u0a66-\u0a75\u0a81-\u0a83\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2-\u0ab3\u0ab5-\u0ab9\u0abc-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ad0\u0ae0-\u0ae3\u0ae6-\u0aef\u0af9-\u0aff\u0b01-\u0b03\u0b05-\u0b0c\u0b0f-\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32-\u0b33\u0b35-\u0b39\u0b3c-\u0b44\u0b47-\u0b48\u0b4b-\u0b4d\u0b56-\u0b57\u0b5c-\u0b5d\u0b5f-\u0b63\u0b66-\u0b6f\u0b71\u0b82-\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99-\u0b9a\u0b9c\u0b9e-\u0b9f\u0ba3-\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd0\u0bd7\u0be6-\u0bef\u0c00-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55-\u0c56\u0c58-\u0c5a\u0c60-\u0c63\u0c66-\u0c6f\u0c80-\u0c83\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbc-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5-\u0cd6\u0cde\u0ce0-\u0ce3\u0ce6-\u0cef\u0cf1-\u0cf2\u0d00-\u0d03\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d44\u0d46-\u0d48\u0d4a-\u0d4e\u0d54-\u0d57\u0d5f-\u0d63\u0d66-\u0d6f\u0d7a-\u0d7f\u0d82-\u0d83\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2-\u0df3\u0e01-\u0e3a\u0e40-\u0e4e\u0e50-\u0e59\u0e81-\u0e82\u0e84\u0e87-\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa-\u0eab\u0ead-\u0eb9\u0ebb-\u0ebd\u0ec0-\u0ec4\u0ec6\u0ec8-\u0ecd\u0ed0-\u0ed9\u0edc-\u0edf\u0f00\u0f18-\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e-\u0f47\u0f49-\u0f6c\u0f71-\u0f84\u0f86-\u0f97\u0f99-\u0fbc\u0fc6\u1000-\u1049\u1050-\u109d\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u135d-\u135f\u1369-\u1371\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u170c\u170e-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176c\u176e-\u1770\u1772-\u1773\u1780-\u17d3\u17d7\u17dc-\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u1820-\u1878\u1880-\u18aa\u18b0-\u18f5\u1900-\u191e\u1920-\u192b\u1930-\u193b\u1946-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u19d0-\u19da\u1a00-\u1a1b\u1a20-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1aa7\u1ab0-\u1abd\u1b00-\u1b4b\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1bf3\u1c00-\u1c37\u1c40-\u1c49\u1c4d-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1cd0-\u1cd2\u1cd4-\u1cf9\u1d00-\u1df9\u1dfb-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u203f-\u2040\u2054\u2071\u207f\u2090-\u209c\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d7f-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2de0-\u2dff\u3005-\u3007\u3021-\u302f\u3031-\u3035\u3038-\u303c\u3041-\u3096\u3099-\u309a\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fef\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua62b\ua640-\ua66f\ua674-\ua67d\ua67f-\ua6f1\ua717-\ua71f\ua722-\ua788\ua78b-\ua7b9\ua7f7-\ua827\ua840-\ua873\ua880-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f7\ua8fb\ua8fd-\ua92d\ua930-\ua953\ua960-\ua97c\ua980-\ua9c0\ua9cf-\ua9d9\ua9e0-\ua9fe\uaa00-\uaa36\uaa40-\uaa4d\uaa50-\uaa59\uaa60-\uaa76\uaa7a-\uaac2\uaadb-\uaadd\uaae0-\uaaef\uaaf2-\uaaf6\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab65\uab70-\uabea\uabec-\uabed\uabf0-\uabf9\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufbb1\ufbd3-\ufc5d\ufc64-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdf9\ufe00-\ufe0f\ufe20-\ufe2f\ufe33-\ufe34\ufe4d-\ufe4f\ufe71\ufe73\ufe77\ufe79\ufe7b\ufe7d\ufe7f-\ufefc\uff10-\uff19\uff21-\uff3a\uff3f\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc\U00010000-\U0001000b\U0001000d-\U00010026\U00010028-\U0001003a\U0001003c-\U0001003d\U0001003f-\U0001004d\U00010050-\U0001005d\U00010080-\U000100fa\U00010140-\U00010174\U000101fd\U00010280-\U0001029c\U000102a0-\U000102d0\U000102e0\U00010300-\U0001031f\U0001032d-\U0001034a\U00010350-\U0001037a\U00010380-\U0001039d\U000103a0-\U000103c3\U000103c8-\U000103cf\U000103d1-\U000103d5\U00010400-\U0001049d\U000104a0-\U000104a9\U000104b0-\U000104d3\U000104d8-\U000104fb\U00010500-\U00010527\U00010530-\U00010563\U00010600-\U00010736\U00010740-\U00010755\U00010760-\U00010767\U00010800-\U00010805\U00010808\U0001080a-\U00010835\U00010837-\U00010838\U0001083c\U0001083f-\U00010855\U00010860-\U00010876\U00010880-\U0001089e\U000108e0-\U000108f2\U000108f4-\U000108f5\U00010900-\U00010915\U00010920-\U00010939\U00010980-\U000109b7\U000109be-\U000109bf\U00010a00-\U00010a03\U00010a05-\U00010a06\U00010a0c-\U00010a13\U00010a15-\U00010a17\U00010a19-\U00010a35\U00010a38-\U00010a3a\U00010a3f\U00010a60-\U00010a7c\U00010a80-\U00010a9c\U00010ac0-\U00010ac7\U00010ac9-\U00010ae6\U00010b00-\U00010b35\U00010b40-\U00010b55\U00010b60-\U00010b72\U00010b80-\U00010b91\U00010c00-\U00010c48\U00010c80-\U00010cb2\U00010cc0-\U00010cf2\U00010d00-\U00010d27\U00010d30-\U00010d39\U00010f00-\U00010f1c\U00010f27\U00010f30-\U00010f50\U00011000-\U00011046\U00011066-\U0001106f\U0001107f-\U000110ba\U000110d0-\U000110e8\U000110f0-\U000110f9\U00011100-\U00011134\U00011136-\U0001113f\U00011144-\U00011146\U00011150-\U00011173\U00011176\U00011180-\U000111c4\U000111c9-\U000111cc\U000111d0-\U000111da\U000111dc\U00011200-\U00011211\U00011213-\U00011237\U0001123e\U00011280-\U00011286\U00011288\U0001128a-\U0001128d\U0001128f-\U0001129d\U0001129f-\U000112a8\U000112b0-\U000112ea\U000112f0-\U000112f9\U00011300-\U00011303\U00011305-\U0001130c\U0001130f-\U00011310\U00011313-\U00011328\U0001132a-\U00011330\U00011332-\U00011333\U00011335-\U00011339\U0001133b-\U00011344\U00011347-\U00011348\U0001134b-\U0001134d\U00011350\U00011357\U0001135d-\U00011363\U00011366-\U0001136c\U00011370-\U00011374\U00011400-\U0001144a\U00011450-\U00011459\U0001145e\U00011480-\U000114c5\U000114c7\U000114d0-\U000114d9\U00011580-\U000115b5\U000115b8-\U000115c0\U000115d8-\U000115dd\U00011600-\U00011640\U00011644\U00011650-\U00011659\U00011680-\U000116b7\U000116c0-\U000116c9\U00011700-\U0001171a\U0001171d-\U0001172b\U00011730-\U00011739\U00011800-\U0001183a\U000118a0-\U000118e9\U000118ff\U00011a00-\U00011a3e\U00011a47\U00011a50-\U00011a83\U00011a86-\U00011a99\U00011a9d\U00011ac0-\U00011af8\U00011c00-\U00011c08\U00011c0a-\U00011c36\U00011c38-\U00011c40\U00011c50-\U00011c59\U00011c72-\U00011c8f\U00011c92-\U00011ca7\U00011ca9-\U00011cb6\U00011d00-\U00011d06\U00011d08-\U00011d09\U00011d0b-\U00011d36\U00011d3a\U00011d3c-\U00011d3d\U00011d3f-\U00011d47\U00011d50-\U00011d59\U00011d60-\U00011d65\U00011d67-\U00011d68\U00011d6a-\U00011d8e\U00011d90-\U00011d91\U00011d93-\U00011d98\U00011da0-\U00011da9\U00011ee0-\U00011ef6\U00012000-\U00012399\U00012400-\U0001246e\U00012480-\U00012543\U00013000-\U0001342e\U00014400-\U00014646\U00016800-\U00016a38\U00016a40-\U00016a5e\U00016a60-\U00016a69\U00016ad0-\U00016aed\U00016af0-\U00016af4\U00016b00-\U00016b36\U00016b40-\U00016b43\U00016b50-\U00016b59\U00016b63-\U00016b77\U00016b7d-\U00016b8f\U00016e40-\U00016e7f\U00016f00-\U00016f44\U00016f50-\U00016f7e\U00016f8f-\U00016f9f\U00016fe0-\U00016fe1\U00017000-\U000187f1\U00018800-\U00018af2\U0001b000-\U0001b11e\U0001b170-\U0001b2fb\U0001bc00-\U0001bc6a\U0001bc70-\U0001bc7c\U0001bc80-\U0001bc88\U0001bc90-\U0001bc99\U0001bc9d-\U0001bc9e\U0001d165-\U0001d169\U0001d16d-\U0001d172\U0001d17b-\U0001d182\U0001d185-\U0001d18b\U0001d1aa-\U0001d1ad\U0001d242-\U0001d244\U0001d400-\U0001d454\U0001d456-\U0001d49c\U0001d49e-\U0001d49f\U0001d4a2\U0001d4a5-\U0001d4a6\U0001d4a9-\U0001d4ac\U0001d4ae-\U0001d4b9\U0001d4bb\U0001d4bd-\U0001d4c3\U0001d4c5-\U0001d505\U0001d507-\U0001d50a\U0001d50d-\U0001d514\U0001d516-\U0001d51c\U0001d51e-\U0001d539\U0001d53b-\U0001d53e\U0001d540-\U0001d544\U0001d546\U0001d54a-\U0001d550\U0001d552-\U0001d6a5\U0001d6a8-\U0001d6c0\U0001d6c2-\U0001d6da\U0001d6dc-\U0001d6fa\U0001d6fc-\U0001d714\U0001d716-\U0001d734\U0001d736-\U0001d74e\U0001d750-\U0001d76e\U0001d770-\U0001d788\U0001d78a-\U0001d7a8\U0001d7aa-\U0001d7c2\U0001d7c4-\U0001d7cb\U0001d7ce-\U0001d7ff\U0001da00-\U0001da36\U0001da3b-\U0001da6c\U0001da75\U0001da84\U0001da9b-\U0001da9f\U0001daa1-\U0001daaf\U0001e000-\U0001e006\U0001e008-\U0001e018\U0001e01b-\U0001e021\U0001e023-\U0001e024\U0001e026-\U0001e02a\U0001e800-\U0001e8c4\U0001e8d0-\U0001e8d6\U0001e900-\U0001e94a\U0001e950-\U0001e959\U0001ee00-\U0001ee03\U0001ee05-\U0001ee1f\U0001ee21-\U0001ee22\U0001ee24\U0001ee27\U0001ee29-\U0001ee32\U0001ee34-\U0001ee37\U0001ee39\U0001ee3b\U0001ee42\U0001ee47\U0001ee49\U0001ee4b\U0001ee4d-\U0001ee4f\U0001ee51-\U0001ee52\U0001ee54\U0001ee57\U0001ee59\U0001ee5b\U0001ee5d\U0001ee5f\U0001ee61-\U0001ee62\U0001ee64\U0001ee67-\U0001ee6a\U0001ee6c-\U0001ee72\U0001ee74-\U0001ee77\U0001ee79-\U0001ee7c\U0001ee7e\U0001ee80-\U0001ee89\U0001ee8b-\U0001ee9b\U0001eea1-\U0001eea3\U0001eea5-\U0001eea9\U0001eeab-\U0001eebb\U00020000-\U0002a6d6\U0002a700-\U0002b734\U0002b740-\U0002b81d\U0002b820-\U0002cea1\U0002ceb0-\U0002ebe0\U0002f800-\U0002fa1d\U000e0100-\U000e01ef' + +xid_start = 'A-Z_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376-\u0377\u037b-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e-\u066f\u0671-\u06d3\u06d5\u06e5-\u06e6\u06ee-\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4-\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u08a0-\u08b4\u08b6-\u08bd\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f-\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc-\u09dd\u09df-\u09e1\u09f0-\u09f1\u09fc\u0a05-\u0a0a\u0a0f-\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32-\u0a33\u0a35-\u0a36\u0a38-\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2-\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0-\u0ae1\u0af9\u0b05-\u0b0c\u0b0f-\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32-\u0b33\u0b35-\u0b39\u0b3d\u0b5c-\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99-\u0b9a\u0b9c\u0b9e-\u0b9f\u0ba3-\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c60-\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0-\u0ce1\u0cf1-\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e40-\u0e46\u0e81-\u0e82\u0e84\u0e87-\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa-\u0eab\u0ead-\u0eb0\u0eb2\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065-\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae-\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5-\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2-\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fef\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a-\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7b9\ua7f7-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd-\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5-\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab65\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufbb1\ufbd3-\ufc5d\ufc64-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdf9\ufe71\ufe73\ufe77\ufe79\ufe7b\ufe7d\ufe7f-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uff9d\uffa0-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc\U00010000-\U0001000b\U0001000d-\U00010026\U00010028-\U0001003a\U0001003c-\U0001003d\U0001003f-\U0001004d\U00010050-\U0001005d\U00010080-\U000100fa\U00010140-\U00010174\U00010280-\U0001029c\U000102a0-\U000102d0\U00010300-\U0001031f\U0001032d-\U0001034a\U00010350-\U00010375\U00010380-\U0001039d\U000103a0-\U000103c3\U000103c8-\U000103cf\U000103d1-\U000103d5\U00010400-\U0001049d\U000104b0-\U000104d3\U000104d8-\U000104fb\U00010500-\U00010527\U00010530-\U00010563\U00010600-\U00010736\U00010740-\U00010755\U00010760-\U00010767\U00010800-\U00010805\U00010808\U0001080a-\U00010835\U00010837-\U00010838\U0001083c\U0001083f-\U00010855\U00010860-\U00010876\U00010880-\U0001089e\U000108e0-\U000108f2\U000108f4-\U000108f5\U00010900-\U00010915\U00010920-\U00010939\U00010980-\U000109b7\U000109be-\U000109bf\U00010a00\U00010a10-\U00010a13\U00010a15-\U00010a17\U00010a19-\U00010a35\U00010a60-\U00010a7c\U00010a80-\U00010a9c\U00010ac0-\U00010ac7\U00010ac9-\U00010ae4\U00010b00-\U00010b35\U00010b40-\U00010b55\U00010b60-\U00010b72\U00010b80-\U00010b91\U00010c00-\U00010c48\U00010c80-\U00010cb2\U00010cc0-\U00010cf2\U00010d00-\U00010d23\U00010f00-\U00010f1c\U00010f27\U00010f30-\U00010f45\U00011003-\U00011037\U00011083-\U000110af\U000110d0-\U000110e8\U00011103-\U00011126\U00011144\U00011150-\U00011172\U00011176\U00011183-\U000111b2\U000111c1-\U000111c4\U000111da\U000111dc\U00011200-\U00011211\U00011213-\U0001122b\U00011280-\U00011286\U00011288\U0001128a-\U0001128d\U0001128f-\U0001129d\U0001129f-\U000112a8\U000112b0-\U000112de\U00011305-\U0001130c\U0001130f-\U00011310\U00011313-\U00011328\U0001132a-\U00011330\U00011332-\U00011333\U00011335-\U00011339\U0001133d\U00011350\U0001135d-\U00011361\U00011400-\U00011434\U00011447-\U0001144a\U00011480-\U000114af\U000114c4-\U000114c5\U000114c7\U00011580-\U000115ae\U000115d8-\U000115db\U00011600-\U0001162f\U00011644\U00011680-\U000116aa\U00011700-\U0001171a\U00011800-\U0001182b\U000118a0-\U000118df\U000118ff\U00011a00\U00011a0b-\U00011a32\U00011a3a\U00011a50\U00011a5c-\U00011a83\U00011a86-\U00011a89\U00011a9d\U00011ac0-\U00011af8\U00011c00-\U00011c08\U00011c0a-\U00011c2e\U00011c40\U00011c72-\U00011c8f\U00011d00-\U00011d06\U00011d08-\U00011d09\U00011d0b-\U00011d30\U00011d46\U00011d60-\U00011d65\U00011d67-\U00011d68\U00011d6a-\U00011d89\U00011d98\U00011ee0-\U00011ef2\U00012000-\U00012399\U00012400-\U0001246e\U00012480-\U00012543\U00013000-\U0001342e\U00014400-\U00014646\U00016800-\U00016a38\U00016a40-\U00016a5e\U00016ad0-\U00016aed\U00016b00-\U00016b2f\U00016b40-\U00016b43\U00016b63-\U00016b77\U00016b7d-\U00016b8f\U00016e40-\U00016e7f\U00016f00-\U00016f44\U00016f50\U00016f93-\U00016f9f\U00016fe0-\U00016fe1\U00017000-\U000187f1\U00018800-\U00018af2\U0001b000-\U0001b11e\U0001b170-\U0001b2fb\U0001bc00-\U0001bc6a\U0001bc70-\U0001bc7c\U0001bc80-\U0001bc88\U0001bc90-\U0001bc99\U0001d400-\U0001d454\U0001d456-\U0001d49c\U0001d49e-\U0001d49f\U0001d4a2\U0001d4a5-\U0001d4a6\U0001d4a9-\U0001d4ac\U0001d4ae-\U0001d4b9\U0001d4bb\U0001d4bd-\U0001d4c3\U0001d4c5-\U0001d505\U0001d507-\U0001d50a\U0001d50d-\U0001d514\U0001d516-\U0001d51c\U0001d51e-\U0001d539\U0001d53b-\U0001d53e\U0001d540-\U0001d544\U0001d546\U0001d54a-\U0001d550\U0001d552-\U0001d6a5\U0001d6a8-\U0001d6c0\U0001d6c2-\U0001d6da\U0001d6dc-\U0001d6fa\U0001d6fc-\U0001d714\U0001d716-\U0001d734\U0001d736-\U0001d74e\U0001d750-\U0001d76e\U0001d770-\U0001d788\U0001d78a-\U0001d7a8\U0001d7aa-\U0001d7c2\U0001d7c4-\U0001d7cb\U0001e800-\U0001e8c4\U0001e900-\U0001e943\U0001ee00-\U0001ee03\U0001ee05-\U0001ee1f\U0001ee21-\U0001ee22\U0001ee24\U0001ee27\U0001ee29-\U0001ee32\U0001ee34-\U0001ee37\U0001ee39\U0001ee3b\U0001ee42\U0001ee47\U0001ee49\U0001ee4b\U0001ee4d-\U0001ee4f\U0001ee51-\U0001ee52\U0001ee54\U0001ee57\U0001ee59\U0001ee5b\U0001ee5d\U0001ee5f\U0001ee61-\U0001ee62\U0001ee64\U0001ee67-\U0001ee6a\U0001ee6c-\U0001ee72\U0001ee74-\U0001ee77\U0001ee79-\U0001ee7c\U0001ee7e\U0001ee80-\U0001ee89\U0001ee8b-\U0001ee9b\U0001eea1-\U0001eea3\U0001eea5-\U0001eea9\U0001eeab-\U0001eebb\U00020000-\U0002a6d6\U0002a700-\U0002b734\U0002b740-\U0002b81d\U0002b820-\U0002cea1\U0002ceb0-\U0002ebe0\U0002f800-\U0002fa1d' + +cats = ['Cc', 'Cf', 'Cn', 'Co', 'Cs', 'Ll', 'Lm', 'Lo', 'Lt', 'Lu', 'Mc', 'Me', 'Mn', 'Nd', 'Nl', 'No', 'Pc', 'Pd', 'Pe', 'Pf', 'Pi', 'Po', 'Ps', 'Sc', 'Sk', 'Sm', 'So', 'Zl', 'Zp', 'Zs'] + +# Generated from unidata 11.0.0 + +def combine(*args): + return ''.join(globals()[cat] for cat in args) + + +def allexcept(*args): + newcats = cats[:] + for arg in args: + newcats.remove(arg) + return ''.join(globals()[cat] for cat in newcats) + + +def _handle_runs(char_list): # pragma: no cover + buf = [] + for c in char_list: + if len(c) == 1: + if buf and buf[-1][1] == chr(ord(c)-1): + buf[-1] = (buf[-1][0], c) + else: + buf.append((c, c)) + else: + buf.append((c, c)) + for a, b in buf: + if a == b: + yield a + else: + yield f'{a}-{b}' + + +if __name__ == '__main__': # pragma: no cover + import unicodedata + + categories = {'xid_start': [], 'xid_continue': []} + + with open(__file__, encoding='utf-8') as fp: + content = fp.read() + + header = content[:content.find('Cc =')] + footer = content[content.find("def combine("):] + + for code in range(0x110000): + c = chr(code) + cat = unicodedata.category(c) + if ord(c) == 0xdc00: + # Hack to avoid combining this combining with the preceding high + # surrogate, 0xdbff, when doing a repr. + c = '\\' + c + elif ord(c) in (0x2d, 0x5b, 0x5c, 0x5d, 0x5e): + # Escape regex metachars. + c = '\\' + c + categories.setdefault(cat, []).append(c) + # XID_START and XID_CONTINUE are special categories used for matching + # identifiers in Python 3. + if c.isidentifier(): + categories['xid_start'].append(c) + if ('a' + c).isidentifier(): + categories['xid_continue'].append(c) + + with open(__file__, 'w', encoding='utf-8') as fp: + fp.write(header) + + for cat in sorted(categories): + val = ''.join(_handle_runs(categories[cat])) + fp.write(f'{cat} = {val!a}\n\n') + + cats = sorted(categories) + cats.remove('xid_start') + cats.remove('xid_continue') + fp.write(f'cats = {cats!r}\n\n') + + fp.write(f'# Generated from unidata {unicodedata.unidata_version}\n\n') + + fp.write(footer) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py new file mode 100644 index 0000000..71c5710 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py @@ -0,0 +1,324 @@ +""" + pygments.util + ~~~~~~~~~~~~~ + + Utility functions. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +from io import TextIOWrapper + + +split_path_re = re.compile(r'[/\\ ]') +doctype_lookup_re = re.compile(r''' + ]*> +''', re.DOTALL | re.MULTILINE | re.VERBOSE) +tag_re = re.compile(r'<(.+?)(\s.*?)?>.*?', + re.IGNORECASE | re.DOTALL | re.MULTILINE) +xml_decl_re = re.compile(r'\s*<\?xml[^>]*\?>', re.I) + + +class ClassNotFound(ValueError): + """Raised if one of the lookup functions didn't find a matching class.""" + + +class OptionError(Exception): + """ + This exception will be raised by all option processing functions if + the type or value of the argument is not correct. + """ + +def get_choice_opt(options, optname, allowed, default=None, normcase=False): + """ + If the key `optname` from the dictionary is not in the sequence + `allowed`, raise an error, otherwise return it. + """ + string = options.get(optname, default) + if normcase: + string = string.lower() + if string not in allowed: + raise OptionError('Value for option {} must be one of {}'.format(optname, ', '.join(map(str, allowed)))) + return string + + +def get_bool_opt(options, optname, default=None): + """ + Intuitively, this is `options.get(optname, default)`, but restricted to + Boolean value. The Booleans can be represented as string, in order to accept + Boolean value from the command line arguments. If the key `optname` is + present in the dictionary `options` and is not associated with a Boolean, + raise an `OptionError`. If it is absent, `default` is returned instead. + + The valid string values for ``True`` are ``1``, ``yes``, ``true`` and + ``on``, the ones for ``False`` are ``0``, ``no``, ``false`` and ``off`` + (matched case-insensitively). + """ + string = options.get(optname, default) + if isinstance(string, bool): + return string + elif isinstance(string, int): + return bool(string) + elif not isinstance(string, str): + raise OptionError(f'Invalid type {string!r} for option {optname}; use ' + '1/0, yes/no, true/false, on/off') + elif string.lower() in ('1', 'yes', 'true', 'on'): + return True + elif string.lower() in ('0', 'no', 'false', 'off'): + return False + else: + raise OptionError(f'Invalid value {string!r} for option {optname}; use ' + '1/0, yes/no, true/false, on/off') + + +def get_int_opt(options, optname, default=None): + """As :func:`get_bool_opt`, but interpret the value as an integer.""" + string = options.get(optname, default) + try: + return int(string) + except TypeError: + raise OptionError(f'Invalid type {string!r} for option {optname}; you ' + 'must give an integer value') + except ValueError: + raise OptionError(f'Invalid value {string!r} for option {optname}; you ' + 'must give an integer value') + +def get_list_opt(options, optname, default=None): + """ + If the key `optname` from the dictionary `options` is a string, + split it at whitespace and return it. If it is already a list + or a tuple, it is returned as a list. + """ + val = options.get(optname, default) + if isinstance(val, str): + return val.split() + elif isinstance(val, (list, tuple)): + return list(val) + else: + raise OptionError(f'Invalid type {val!r} for option {optname}; you ' + 'must give a list value') + + +def docstring_headline(obj): + if not obj.__doc__: + return '' + res = [] + for line in obj.__doc__.strip().splitlines(): + if line.strip(): + res.append(" " + line.strip()) + else: + break + return ''.join(res).lstrip() + + +def make_analysator(f): + """Return a static text analyser function that returns float values.""" + def text_analyse(text): + try: + rv = f(text) + except Exception: + return 0.0 + if not rv: + return 0.0 + try: + return min(1.0, max(0.0, float(rv))) + except (ValueError, TypeError): + return 0.0 + text_analyse.__doc__ = f.__doc__ + return staticmethod(text_analyse) + + +def shebang_matches(text, regex): + r"""Check if the given regular expression matches the last part of the + shebang if one exists. + + >>> from pygments.util import shebang_matches + >>> shebang_matches('#!/usr/bin/env python', r'python(2\.\d)?') + True + >>> shebang_matches('#!/usr/bin/python2.4', r'python(2\.\d)?') + True + >>> shebang_matches('#!/usr/bin/python-ruby', r'python(2\.\d)?') + False + >>> shebang_matches('#!/usr/bin/python/ruby', r'python(2\.\d)?') + False + >>> shebang_matches('#!/usr/bin/startsomethingwith python', + ... r'python(2\.\d)?') + True + + It also checks for common windows executable file extensions:: + + >>> shebang_matches('#!C:\\Python2.4\\Python.exe', r'python(2\.\d)?') + True + + Parameters (``'-f'`` or ``'--foo'`` are ignored so ``'perl'`` does + the same as ``'perl -e'``) + + Note that this method automatically searches the whole string (eg: + the regular expression is wrapped in ``'^$'``) + """ + index = text.find('\n') + if index >= 0: + first_line = text[:index].lower() + else: + first_line = text.lower() + if first_line.startswith('#!'): + try: + found = [x for x in split_path_re.split(first_line[2:].strip()) + if x and not x.startswith('-')][-1] + except IndexError: + return False + regex = re.compile(rf'^{regex}(\.(exe|cmd|bat|bin))?$', re.IGNORECASE) + if regex.search(found) is not None: + return True + return False + + +def doctype_matches(text, regex): + """Check if the doctype matches a regular expression (if present). + + Note that this method only checks the first part of a DOCTYPE. + eg: 'html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"' + """ + m = doctype_lookup_re.search(text) + if m is None: + return False + doctype = m.group(1) + return re.compile(regex, re.I).match(doctype.strip()) is not None + + +def html_doctype_matches(text): + """Check if the file looks like it has a html doctype.""" + return doctype_matches(text, r'html') + + +_looks_like_xml_cache = {} + + +def looks_like_xml(text): + """Check if a doctype exists or if we have some tags.""" + if xml_decl_re.match(text): + return True + key = hash(text) + try: + return _looks_like_xml_cache[key] + except KeyError: + m = doctype_lookup_re.search(text) + if m is not None: + return True + rv = tag_re.search(text[:1000]) is not None + _looks_like_xml_cache[key] = rv + return rv + + +def surrogatepair(c): + """Given a unicode character code with length greater than 16 bits, + return the two 16 bit surrogate pair. + """ + # From example D28 of: + # http://www.unicode.org/book/ch03.pdf + return (0xd7c0 + (c >> 10), (0xdc00 + (c & 0x3ff))) + + +def format_lines(var_name, seq, raw=False, indent_level=0): + """Formats a sequence of strings for output.""" + lines = [] + base_indent = ' ' * indent_level * 4 + inner_indent = ' ' * (indent_level + 1) * 4 + lines.append(base_indent + var_name + ' = (') + if raw: + # These should be preformatted reprs of, say, tuples. + for i in seq: + lines.append(inner_indent + i + ',') + else: + for i in seq: + # Force use of single quotes + r = repr(i + '"') + lines.append(inner_indent + r[:-2] + r[-1] + ',') + lines.append(base_indent + ')') + return '\n'.join(lines) + + +def duplicates_removed(it, already_seen=()): + """ + Returns a list with duplicates removed from the iterable `it`. + + Order is preserved. + """ + lst = [] + seen = set() + for i in it: + if i in seen or i in already_seen: + continue + lst.append(i) + seen.add(i) + return lst + + +class Future: + """Generic class to defer some work. + + Handled specially in RegexLexerMeta, to support regex string construction at + first use. + """ + def get(self): + raise NotImplementedError + + +def guess_decode(text): + """Decode *text* with guessed encoding. + + First try UTF-8; this should fail for non-UTF-8 encodings. + Then try the preferred locale encoding. + Fall back to latin-1, which always works. + """ + try: + text = text.decode('utf-8') + return text, 'utf-8' + except UnicodeDecodeError: + try: + import locale + prefencoding = locale.getpreferredencoding() + text = text.decode() + return text, prefencoding + except (UnicodeDecodeError, LookupError): + text = text.decode('latin1') + return text, 'latin1' + + +def guess_decode_from_terminal(text, term): + """Decode *text* coming from terminal *term*. + + First try the terminal encoding, if given. + Then try UTF-8. Then try the preferred locale encoding. + Fall back to latin-1, which always works. + """ + if getattr(term, 'encoding', None): + try: + text = text.decode(term.encoding) + except UnicodeDecodeError: + pass + else: + return text, term.encoding + return guess_decode(text) + + +def terminal_encoding(term): + """Return our best guess of encoding for the given *term*.""" + if getattr(term, 'encoding', None): + return term.encoding + import locale + return locale.getpreferredencoding() + + +class UnclosingTextIOWrapper(TextIOWrapper): + # Don't close underlying buffer on destruction. + def close(self): + self.flush() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE new file mode 100644 index 0000000..b0ae9db --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 Thomas Kluyver + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py new file mode 100644 index 0000000..746b89f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py @@ -0,0 +1,31 @@ +"""Wrappers to call pyproject.toml-based build backend hooks. +""" + +from typing import TYPE_CHECKING + +from ._impl import ( + BackendUnavailable, + BuildBackendHookCaller, + HookMissing, + UnsupportedOperation, + default_subprocess_runner, + quiet_subprocess_runner, +) + +__version__ = "1.2.0" +__all__ = [ + "BackendUnavailable", + "BackendInvalid", + "HookMissing", + "UnsupportedOperation", + "default_subprocess_runner", + "quiet_subprocess_runner", + "BuildBackendHookCaller", +] + +BackendInvalid = BackendUnavailable # Deprecated alias, previously a separate exception + +if TYPE_CHECKING: + from ._impl import SubprocessRunner + + __all__ += ["SubprocessRunner"] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8a7099c9a1ad56c1d63f2787ae23d150aeb7a8b GIT binary patch literal 761 zcmZuu&u`N(6t>eeX`5v$V+Jcu2y~@d^8aHUT*#^*w5B+ z4?gb@MFFCi8UjZ~U|>Wm)D)G-49ut+R3j^}B0I37T2PDXK^^MVpfNzydXEE#nZX=0 zlnWdiIBwu##2i{1;IWHP;NUL~p{kWoFQJ@@vH+l?=H7pkr!x;V z2Zi1Cd|?wp<31sUmF5YgRTU@{Rl=i0%xq>7=V=!XAtQKbXa?w@1FaLHoYJ;b|A3AG z(W&;|#A>LM5L)#2Haid3H|})yQh0@aryEm7)@3Mi&9(21m>l_n_xvPJ4`O-STV3-t zPgw`Z!*BrngeN|@N*XJ;bT(Kro1aezmpmoJOY+m&y(p%cVE5G}$WTsDZvjjz7~>xX z#^x^z;cF+Rjg1ooFkM6o%M<6PQFDxmJzYYJHzxDnD$OtE&9A0&*t~wYu=3eldAl{W Kk$FK~1g$?!c-$)h literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99f73f00ba88f51c6d994dc8767e4a6cbbbac7fb GIT binary patch literal 18093 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 TGCkej_>zNf`I@7YvDp6t-F)XH literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py new file mode 100644 index 0000000..d1e9d7b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py @@ -0,0 +1,410 @@ +import json +import os +import sys +import tempfile +from contextlib import contextmanager +from os.path import abspath +from os.path import join as pjoin +from subprocess import STDOUT, check_call, check_output +from typing import TYPE_CHECKING, Any, Iterator, Mapping, Optional, Sequence + +from ._in_process import _in_proc_script_path + +if TYPE_CHECKING: + from typing import Protocol + + class SubprocessRunner(Protocol): + """A protocol for the subprocess runner.""" + + def __call__( + self, + cmd: Sequence[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, str]] = None, + ) -> None: + ... + + +def write_json(obj: Mapping[str, Any], path: str, **kwargs) -> None: + with open(path, "w", encoding="utf-8") as f: + json.dump(obj, f, **kwargs) + + +def read_json(path: str) -> Mapping[str, Any]: + with open(path, encoding="utf-8") as f: + return json.load(f) + + +class BackendUnavailable(Exception): + """Will be raised if the backend cannot be imported in the hook process.""" + + def __init__( + self, + traceback: str, + message: Optional[str] = None, + backend_name: Optional[str] = None, + backend_path: Optional[Sequence[str]] = None, + ) -> None: + # Preserving arg order for the sake of API backward compatibility. + self.backend_name = backend_name + self.backend_path = backend_path + self.traceback = traceback + super().__init__(message or "Error while importing backend") + + +class HookMissing(Exception): + """Will be raised on missing hooks (if a fallback can't be used).""" + + def __init__(self, hook_name: str) -> None: + super().__init__(hook_name) + self.hook_name = hook_name + + +class UnsupportedOperation(Exception): + """May be raised by build_sdist if the backend indicates that it can't.""" + + def __init__(self, traceback: str) -> None: + self.traceback = traceback + + +def default_subprocess_runner( + cmd: Sequence[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, str]] = None, +) -> None: + """The default method of calling the wrapper subprocess. + + This uses :func:`subprocess.check_call` under the hood. + """ + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + + check_call(cmd, cwd=cwd, env=env) + + +def quiet_subprocess_runner( + cmd: Sequence[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, str]] = None, +) -> None: + """Call the subprocess while suppressing output. + + This uses :func:`subprocess.check_output` under the hood. + """ + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + + check_output(cmd, cwd=cwd, env=env, stderr=STDOUT) + + +def norm_and_check(source_tree: str, requested: str) -> str: + """Normalise and check a backend path. + + Ensure that the requested backend path is specified as a relative path, + and resolves to a location under the given source tree. + + Return an absolute version of the requested path. + """ + if os.path.isabs(requested): + raise ValueError("paths must be relative") + + abs_source = os.path.abspath(source_tree) + abs_requested = os.path.normpath(os.path.join(abs_source, requested)) + # We have to use commonprefix for Python 2.7 compatibility. So we + # normalise case to avoid problems because commonprefix is a character + # based comparison :-( + norm_source = os.path.normcase(abs_source) + norm_requested = os.path.normcase(abs_requested) + if os.path.commonprefix([norm_source, norm_requested]) != norm_source: + raise ValueError("paths must be inside source tree") + + return abs_requested + + +class BuildBackendHookCaller: + """A wrapper to call the build backend hooks for a source directory.""" + + def __init__( + self, + source_dir: str, + build_backend: str, + backend_path: Optional[Sequence[str]] = None, + runner: Optional["SubprocessRunner"] = None, + python_executable: Optional[str] = None, + ) -> None: + """ + :param source_dir: The source directory to invoke the build backend for + :param build_backend: The build backend spec + :param backend_path: Additional path entries for the build backend spec + :param runner: The :ref:`subprocess runner ` to use + :param python_executable: + The Python executable used to invoke the build backend + """ + if runner is None: + runner = default_subprocess_runner + + self.source_dir = abspath(source_dir) + self.build_backend = build_backend + if backend_path: + backend_path = [norm_and_check(self.source_dir, p) for p in backend_path] + self.backend_path = backend_path + self._subprocess_runner = runner + if not python_executable: + python_executable = sys.executable + self.python_executable = python_executable + + @contextmanager + def subprocess_runner(self, runner: "SubprocessRunner") -> Iterator[None]: + """A context manager for temporarily overriding the default + :ref:`subprocess runner `. + + :param runner: The new subprocess runner to use within the context. + + .. code-block:: python + + hook_caller = BuildBackendHookCaller(...) + with hook_caller.subprocess_runner(quiet_subprocess_runner): + ... + """ + prev = self._subprocess_runner + self._subprocess_runner = runner + try: + yield + finally: + self._subprocess_runner = prev + + def _supported_features(self) -> Sequence[str]: + """Return the list of optional features supported by the backend.""" + return self._call_hook("_supported_features", {}) + + def get_requires_for_build_wheel( + self, + config_settings: Optional[Mapping[str, Any]] = None, + ) -> Sequence[str]: + """Get additional dependencies required for building a wheel. + + :param config_settings: The configuration settings for the build backend + :returns: A list of :pep:`dependency specifiers <508>`. + + .. admonition:: Fallback + + If the build backend does not defined a hook with this name, an + empty list will be returned. + """ + return self._call_hook( + "get_requires_for_build_wheel", {"config_settings": config_settings} + ) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Optional[Mapping[str, Any]] = None, + _allow_fallback: bool = True, + ) -> str: + """Prepare a ``*.dist-info`` folder with metadata for this project. + + :param metadata_directory: The directory to write the metadata to + :param config_settings: The configuration settings for the build backend + :param _allow_fallback: + Whether to allow the fallback to building a wheel and extracting + the metadata from it. Should be passed as a keyword argument only. + + :returns: Name of the newly created subfolder within + ``metadata_directory``, containing the metadata. + + .. admonition:: Fallback + + If the build backend does not define a hook with this name and + ``_allow_fallback`` is truthy, the backend will be asked to build a + wheel via the ``build_wheel`` hook and the dist-info extracted from + that will be returned. + """ + return self._call_hook( + "prepare_metadata_for_build_wheel", + { + "metadata_directory": abspath(metadata_directory), + "config_settings": config_settings, + "_allow_fallback": _allow_fallback, + }, + ) + + def build_wheel( + self, + wheel_directory: str, + config_settings: Optional[Mapping[str, Any]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + """Build a wheel from this project. + + :param wheel_directory: The directory to write the wheel to + :param config_settings: The configuration settings for the build backend + :param metadata_directory: The directory to reuse existing metadata from + :returns: + The name of the newly created wheel within ``wheel_directory``. + + .. admonition:: Interaction with fallback + + If the ``build_wheel`` hook was called in the fallback for + :meth:`prepare_metadata_for_build_wheel`, the build backend would + not be invoked. Instead, the previously built wheel will be copied + to ``wheel_directory`` and the name of that file will be returned. + """ + if metadata_directory is not None: + metadata_directory = abspath(metadata_directory) + return self._call_hook( + "build_wheel", + { + "wheel_directory": abspath(wheel_directory), + "config_settings": config_settings, + "metadata_directory": metadata_directory, + }, + ) + + def get_requires_for_build_editable( + self, + config_settings: Optional[Mapping[str, Any]] = None, + ) -> Sequence[str]: + """Get additional dependencies required for building an editable wheel. + + :param config_settings: The configuration settings for the build backend + :returns: A list of :pep:`dependency specifiers <508>`. + + .. admonition:: Fallback + + If the build backend does not defined a hook with this name, an + empty list will be returned. + """ + return self._call_hook( + "get_requires_for_build_editable", {"config_settings": config_settings} + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Optional[Mapping[str, Any]] = None, + _allow_fallback: bool = True, + ) -> Optional[str]: + """Prepare a ``*.dist-info`` folder with metadata for this project. + + :param metadata_directory: The directory to write the metadata to + :param config_settings: The configuration settings for the build backend + :param _allow_fallback: + Whether to allow the fallback to building a wheel and extracting + the metadata from it. Should be passed as a keyword argument only. + :returns: Name of the newly created subfolder within + ``metadata_directory``, containing the metadata. + + .. admonition:: Fallback + + If the build backend does not define a hook with this name and + ``_allow_fallback`` is truthy, the backend will be asked to build a + wheel via the ``build_editable`` hook and the dist-info + extracted from that will be returned. + """ + return self._call_hook( + "prepare_metadata_for_build_editable", + { + "metadata_directory": abspath(metadata_directory), + "config_settings": config_settings, + "_allow_fallback": _allow_fallback, + }, + ) + + def build_editable( + self, + wheel_directory: str, + config_settings: Optional[Mapping[str, Any]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + """Build an editable wheel from this project. + + :param wheel_directory: The directory to write the wheel to + :param config_settings: The configuration settings for the build backend + :param metadata_directory: The directory to reuse existing metadata from + :returns: + The name of the newly created wheel within ``wheel_directory``. + + .. admonition:: Interaction with fallback + + If the ``build_editable`` hook was called in the fallback for + :meth:`prepare_metadata_for_build_editable`, the build backend + would not be invoked. Instead, the previously built wheel will be + copied to ``wheel_directory`` and the name of that file will be + returned. + """ + if metadata_directory is not None: + metadata_directory = abspath(metadata_directory) + return self._call_hook( + "build_editable", + { + "wheel_directory": abspath(wheel_directory), + "config_settings": config_settings, + "metadata_directory": metadata_directory, + }, + ) + + def get_requires_for_build_sdist( + self, + config_settings: Optional[Mapping[str, Any]] = None, + ) -> Sequence[str]: + """Get additional dependencies required for building an sdist. + + :returns: A list of :pep:`dependency specifiers <508>`. + """ + return self._call_hook( + "get_requires_for_build_sdist", {"config_settings": config_settings} + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Optional[Mapping[str, Any]] = None, + ) -> str: + """Build an sdist from this project. + + :returns: + The name of the newly created sdist within ``wheel_directory``. + """ + return self._call_hook( + "build_sdist", + { + "sdist_directory": abspath(sdist_directory), + "config_settings": config_settings, + }, + ) + + def _call_hook(self, hook_name: str, kwargs: Mapping[str, Any]) -> Any: + extra_environ = {"_PYPROJECT_HOOKS_BUILD_BACKEND": self.build_backend} + + if self.backend_path: + backend_path = os.pathsep.join(self.backend_path) + extra_environ["_PYPROJECT_HOOKS_BACKEND_PATH"] = backend_path + + with tempfile.TemporaryDirectory() as td: + hook_input = {"kwargs": kwargs} + write_json(hook_input, pjoin(td, "input.json"), indent=2) + + # Run the hook in a subprocess + with _in_proc_script_path() as script: + python = self.python_executable + self._subprocess_runner( + [python, abspath(str(script)), hook_name, td], + cwd=self.source_dir, + extra_environ=extra_environ, + ) + + data = read_json(pjoin(td, "output.json")) + if data.get("unsupported"): + raise UnsupportedOperation(data.get("traceback", "")) + if data.get("no_backend"): + raise BackendUnavailable( + data.get("traceback", ""), + message=data.get("backend_error", ""), + backend_name=self.build_backend, + backend_path=self.backend_path, + ) + if data.get("hook_missing"): + raise HookMissing(data.get("missing_hook_name") or hook_name) + return data["return_val"] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py new file mode 100644 index 0000000..906d0ba --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py @@ -0,0 +1,21 @@ +"""This is a subpackage because the directory is on sys.path for _in_process.py + +The subpackage should stay as empty as possible to avoid shadowing modules that +the backend might import. +""" + +import importlib.resources as resources + +try: + resources.files +except AttributeError: + # Python 3.8 compatibility + def _in_proc_script_path(): + return resources.path(__package__, "_in_process.py") + +else: + + def _in_proc_script_path(): + return resources.as_file( + resources.files(__package__).joinpath("_in_process.py") + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad77f7109f3e8b9eebb98ed41e16b380f03d27f2 GIT binary patch literal 1090 zcmah|&rcIU6rTN2XqPP|g2w1&5+$KA?FNiq1QQ^fG}NSA;Ii3v2X^{vHZxPoazJBD z3|=^r7>-_u|A7C47YGN;hMOmE)oNn6=$q0)<>F-L%{TMj%zN{Fv!Byx3qiYU{0VY8 zLSNOS-^?E9ya2F|e6)sq&DU#MU0>5RltM(W4E2MrMh*GK8?IWVu#S?2a>1|MhenSFDwuv<8Ic4AMR+SAAO^wG@1iM`k{ z^f9ZA^pwR%V8=hQDf+vzJqGY!*)GKb@_Vut5m&2OgR2)1o81bN0J-|Fx(T_hkgB?C z6c7_&x~1>!?Cu;?j~+ZZ$;=)lXS*A+L-DZd`m7A1j9cBa?jIPB&P&N@ zsVT`4=Zs&=e4d=Wc-Bw(IBZc*N~qhm4NcR&>!xP@vXM5`Hf_!NVy52~UKcuJM#B2t j&Y}+U79c_m2jp literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa6987e48129bae824c92facdad3bc0daaa38637 GIT binary patch literal 15372 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 L0_Uz~JMjMj5p}!^ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py new file mode 100644 index 0000000..d689bab --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py @@ -0,0 +1,389 @@ +"""This is invoked in a subprocess to call the build backend hooks. + +It expects: +- Command line args: hook_name, control_dir +- Environment variables: + _PYPROJECT_HOOKS_BUILD_BACKEND=entry.point:spec + _PYPROJECT_HOOKS_BACKEND_PATH=paths (separated with os.pathsep) +- control_dir/input.json: + - {"kwargs": {...}} + +Results: +- control_dir/output.json + - {"return_val": ...} +""" +import json +import os +import os.path +import re +import shutil +import sys +import traceback +from glob import glob +from importlib import import_module +from importlib.machinery import PathFinder +from os.path import join as pjoin + +# This file is run as a script, and `import wrappers` is not zip-safe, so we +# include write_json() and read_json() from wrappers.py. + + +def write_json(obj, path, **kwargs): + with open(path, "w", encoding="utf-8") as f: + json.dump(obj, f, **kwargs) + + +def read_json(path): + with open(path, encoding="utf-8") as f: + return json.load(f) + + +class BackendUnavailable(Exception): + """Raised if we cannot import the backend""" + + def __init__(self, message, traceback=None): + super().__init__(message) + self.message = message + self.traceback = traceback + + +class HookMissing(Exception): + """Raised if a hook is missing and we are not executing the fallback""" + + def __init__(self, hook_name=None): + super().__init__(hook_name) + self.hook_name = hook_name + + +def _build_backend(): + """Find and load the build backend""" + backend_path = os.environ.get("_PYPROJECT_HOOKS_BACKEND_PATH") + ep = os.environ["_PYPROJECT_HOOKS_BUILD_BACKEND"] + mod_path, _, obj_path = ep.partition(":") + + if backend_path: + # Ensure in-tree backend directories have the highest priority when importing. + extra_pathitems = backend_path.split(os.pathsep) + sys.meta_path.insert(0, _BackendPathFinder(extra_pathitems, mod_path)) + + try: + obj = import_module(mod_path) + except ImportError: + msg = f"Cannot import {mod_path!r}" + raise BackendUnavailable(msg, traceback.format_exc()) + + if obj_path: + for path_part in obj_path.split("."): + obj = getattr(obj, path_part) + return obj + + +class _BackendPathFinder: + """Implements the MetaPathFinder interface to locate modules in ``backend-path``. + + Since the environment provided by the frontend can contain all sorts of + MetaPathFinders, the only way to ensure the backend is loaded from the + right place is to prepend our own. + """ + + def __init__(self, backend_path, backend_module): + self.backend_path = backend_path + self.backend_module = backend_module + self.backend_parent, _, _ = backend_module.partition(".") + + def find_spec(self, fullname, _path, _target=None): + if "." in fullname: + # Rely on importlib to find nested modules based on parent's path + return None + + # Ignore other items in _path or sys.path and use backend_path instead: + spec = PathFinder.find_spec(fullname, path=self.backend_path) + if spec is None and fullname == self.backend_parent: + # According to the spec, the backend MUST be loaded from backend-path. + # Therefore, we can halt the import machinery and raise a clean error. + msg = f"Cannot find module {self.backend_module!r} in {self.backend_path!r}" + raise BackendUnavailable(msg) + + return spec + + if sys.version_info >= (3, 8): + + def find_distributions(self, context=None): + # Delayed import: Python 3.7 does not contain importlib.metadata + from importlib.metadata import DistributionFinder, MetadataPathFinder + + context = DistributionFinder.Context(path=self.backend_path) + return MetadataPathFinder.find_distributions(context=context) + + +def _supported_features(): + """Return the list of options features supported by the backend. + + Returns a list of strings. + The only possible value is 'build_editable'. + """ + backend = _build_backend() + features = [] + if hasattr(backend, "build_editable"): + features.append("build_editable") + return features + + +def get_requires_for_build_wheel(config_settings): + """Invoke the optional get_requires_for_build_wheel hook + + Returns [] if the hook is not defined. + """ + backend = _build_backend() + try: + hook = backend.get_requires_for_build_wheel + except AttributeError: + return [] + else: + return hook(config_settings) + + +def get_requires_for_build_editable(config_settings): + """Invoke the optional get_requires_for_build_editable hook + + Returns [] if the hook is not defined. + """ + backend = _build_backend() + try: + hook = backend.get_requires_for_build_editable + except AttributeError: + return [] + else: + return hook(config_settings) + + +def prepare_metadata_for_build_wheel( + metadata_directory, config_settings, _allow_fallback +): + """Invoke optional prepare_metadata_for_build_wheel + + Implements a fallback by building a wheel if the hook isn't defined, + unless _allow_fallback is False in which case HookMissing is raised. + """ + backend = _build_backend() + try: + hook = backend.prepare_metadata_for_build_wheel + except AttributeError: + if not _allow_fallback: + raise HookMissing() + else: + return hook(metadata_directory, config_settings) + # fallback to build_wheel outside the try block to avoid exception chaining + # which can be confusing to users and is not relevant + whl_basename = backend.build_wheel(metadata_directory, config_settings) + return _get_wheel_metadata_from_wheel( + whl_basename, metadata_directory, config_settings + ) + + +def prepare_metadata_for_build_editable( + metadata_directory, config_settings, _allow_fallback +): + """Invoke optional prepare_metadata_for_build_editable + + Implements a fallback by building an editable wheel if the hook isn't + defined, unless _allow_fallback is False in which case HookMissing is + raised. + """ + backend = _build_backend() + try: + hook = backend.prepare_metadata_for_build_editable + except AttributeError: + if not _allow_fallback: + raise HookMissing() + try: + build_hook = backend.build_editable + except AttributeError: + raise HookMissing(hook_name="build_editable") + else: + whl_basename = build_hook(metadata_directory, config_settings) + return _get_wheel_metadata_from_wheel( + whl_basename, metadata_directory, config_settings + ) + else: + return hook(metadata_directory, config_settings) + + +WHEEL_BUILT_MARKER = "PYPROJECT_HOOKS_ALREADY_BUILT_WHEEL" + + +def _dist_info_files(whl_zip): + """Identify the .dist-info folder inside a wheel ZipFile.""" + res = [] + for path in whl_zip.namelist(): + m = re.match(r"[^/\\]+-[^/\\]+\.dist-info/", path) + if m: + res.append(path) + if res: + return res + raise Exception("No .dist-info folder found in wheel") + + +def _get_wheel_metadata_from_wheel(whl_basename, metadata_directory, config_settings): + """Extract the metadata from a wheel. + + Fallback for when the build backend does not + define the 'get_wheel_metadata' hook. + """ + from zipfile import ZipFile + + with open(os.path.join(metadata_directory, WHEEL_BUILT_MARKER), "wb"): + pass # Touch marker file + + whl_file = os.path.join(metadata_directory, whl_basename) + with ZipFile(whl_file) as zipf: + dist_info = _dist_info_files(zipf) + zipf.extractall(path=metadata_directory, members=dist_info) + return dist_info[0].split("/")[0] + + +def _find_already_built_wheel(metadata_directory): + """Check for a wheel already built during the get_wheel_metadata hook.""" + if not metadata_directory: + return None + metadata_parent = os.path.dirname(metadata_directory) + if not os.path.isfile(pjoin(metadata_parent, WHEEL_BUILT_MARKER)): + return None + + whl_files = glob(os.path.join(metadata_parent, "*.whl")) + if not whl_files: + print("Found wheel built marker, but no .whl files") + return None + if len(whl_files) > 1: + print( + "Found multiple .whl files; unspecified behaviour. " + "Will call build_wheel." + ) + return None + + # Exactly one .whl file + return whl_files[0] + + +def build_wheel(wheel_directory, config_settings, metadata_directory=None): + """Invoke the mandatory build_wheel hook. + + If a wheel was already built in the + prepare_metadata_for_build_wheel fallback, this + will copy it rather than rebuilding the wheel. + """ + prebuilt_whl = _find_already_built_wheel(metadata_directory) + if prebuilt_whl: + shutil.copy2(prebuilt_whl, wheel_directory) + return os.path.basename(prebuilt_whl) + + return _build_backend().build_wheel( + wheel_directory, config_settings, metadata_directory + ) + + +def build_editable(wheel_directory, config_settings, metadata_directory=None): + """Invoke the optional build_editable hook. + + If a wheel was already built in the + prepare_metadata_for_build_editable fallback, this + will copy it rather than rebuilding the wheel. + """ + backend = _build_backend() + try: + hook = backend.build_editable + except AttributeError: + raise HookMissing() + else: + prebuilt_whl = _find_already_built_wheel(metadata_directory) + if prebuilt_whl: + shutil.copy2(prebuilt_whl, wheel_directory) + return os.path.basename(prebuilt_whl) + + return hook(wheel_directory, config_settings, metadata_directory) + + +def get_requires_for_build_sdist(config_settings): + """Invoke the optional get_requires_for_build_wheel hook + + Returns [] if the hook is not defined. + """ + backend = _build_backend() + try: + hook = backend.get_requires_for_build_sdist + except AttributeError: + return [] + else: + return hook(config_settings) + + +class _DummyException(Exception): + """Nothing should ever raise this exception""" + + +class GotUnsupportedOperation(Exception): + """For internal use when backend raises UnsupportedOperation""" + + def __init__(self, traceback): + self.traceback = traceback + + +def build_sdist(sdist_directory, config_settings): + """Invoke the mandatory build_sdist hook.""" + backend = _build_backend() + try: + return backend.build_sdist(sdist_directory, config_settings) + except getattr(backend, "UnsupportedOperation", _DummyException): + raise GotUnsupportedOperation(traceback.format_exc()) + + +HOOK_NAMES = { + "get_requires_for_build_wheel", + "prepare_metadata_for_build_wheel", + "build_wheel", + "get_requires_for_build_editable", + "prepare_metadata_for_build_editable", + "build_editable", + "get_requires_for_build_sdist", + "build_sdist", + "_supported_features", +} + + +def main(): + if len(sys.argv) < 3: + sys.exit("Needs args: hook_name, control_dir") + hook_name = sys.argv[1] + control_dir = sys.argv[2] + if hook_name not in HOOK_NAMES: + sys.exit("Unknown hook: %s" % hook_name) + + # Remove the parent directory from sys.path to avoid polluting the backend + # import namespace with this directory. + here = os.path.dirname(__file__) + if here in sys.path: + sys.path.remove(here) + + hook = globals()[hook_name] + + hook_input = read_json(pjoin(control_dir, "input.json")) + + json_out = {"unsupported": False, "return_val": None} + try: + json_out["return_val"] = hook(**hook_input["kwargs"]) + except BackendUnavailable as e: + json_out["no_backend"] = True + json_out["traceback"] = e.traceback + json_out["backend_error"] = e.message + except GotUnsupportedOperation as e: + json_out["unsupported"] = True + json_out["traceback"] = e.traceback + except HookMissing as e: + json_out["hook_missing"] = True + json_out["missing_hook_name"] = e.hook_name or hook_name + + write_json(json_out, pjoin(control_dir, "output.json"), indent=2) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE new file mode 100644 index 0000000..67db858 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE @@ -0,0 +1,175 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py new file mode 100644 index 0000000..04230fc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py @@ -0,0 +1,179 @@ +# __ +# /__) _ _ _ _ _/ _ +# / ( (- (/ (/ (- _) / _) +# / + +""" +Requests HTTP Library +~~~~~~~~~~~~~~~~~~~~~ + +Requests is an HTTP library, written in Python, for human beings. +Basic GET usage: + + >>> import requests + >>> r = requests.get('https://www.python.org') + >>> r.status_code + 200 + >>> b'Python is a programming language' in r.content + True + +... or POST: + + >>> payload = dict(key1='value1', key2='value2') + >>> r = requests.post('https://httpbin.org/post', data=payload) + >>> print(r.text) + { + ... + "form": { + "key1": "value1", + "key2": "value2" + }, + ... + } + +The other HTTP methods are supported - see `requests.api`. Full documentation +is at . + +:copyright: (c) 2017 by Kenneth Reitz. +:license: Apache 2.0, see LICENSE for more details. +""" + +import warnings + +from pip._vendor import urllib3 + +from .exceptions import RequestsDependencyWarning + +charset_normalizer_version = None +chardet_version = None + + +def check_compatibility(urllib3_version, chardet_version, charset_normalizer_version): + urllib3_version = urllib3_version.split(".") + assert urllib3_version != ["dev"] # Verify urllib3 isn't installed from git. + + # Sometimes, urllib3 only reports its version as 16.1. + if len(urllib3_version) == 2: + urllib3_version.append("0") + + # Check urllib3 for compatibility. + major, minor, patch = urllib3_version # noqa: F811 + major, minor, patch = int(major), int(minor), int(patch) + # urllib3 >= 1.21.1 + assert major >= 1 + if major == 1: + assert minor >= 21 + + # Check charset_normalizer for compatibility. + if chardet_version: + major, minor, patch = chardet_version.split(".")[:3] + major, minor, patch = int(major), int(minor), int(patch) + # chardet_version >= 3.0.2, < 6.0.0 + assert (3, 0, 2) <= (major, minor, patch) < (6, 0, 0) + elif charset_normalizer_version: + major, minor, patch = charset_normalizer_version.split(".")[:3] + major, minor, patch = int(major), int(minor), int(patch) + # charset_normalizer >= 2.0.0 < 4.0.0 + assert (2, 0, 0) <= (major, minor, patch) < (4, 0, 0) + else: + # pip does not need or use character detection + pass + + +def _check_cryptography(cryptography_version): + # cryptography < 1.3.4 + try: + cryptography_version = list(map(int, cryptography_version.split("."))) + except ValueError: + return + + if cryptography_version < [1, 3, 4]: + warning = "Old version of cryptography ({}) may cause slowdown.".format( + cryptography_version + ) + warnings.warn(warning, RequestsDependencyWarning) + + +# Check imported dependencies for compatibility. +try: + check_compatibility( + urllib3.__version__, chardet_version, charset_normalizer_version + ) +except (AssertionError, ValueError): + warnings.warn( + "urllib3 ({}) or chardet ({})/charset_normalizer ({}) doesn't match a supported " + "version!".format( + urllib3.__version__, chardet_version, charset_normalizer_version + ), + RequestsDependencyWarning, + ) + +# Attempt to enable urllib3's fallback for SNI support +# if the standard library doesn't support SNI or the +# 'ssl' library isn't available. +try: + # Note: This logic prevents upgrading cryptography on Windows, if imported + # as part of pip. + from pip._internal.utils.compat import WINDOWS + if not WINDOWS: + raise ImportError("pip internals: don't import cryptography on Windows") + try: + import ssl + except ImportError: + ssl = None + + if not getattr(ssl, "HAS_SNI", False): + from pip._vendor.urllib3.contrib import pyopenssl + + pyopenssl.inject_into_urllib3() + + # Check cryptography version + from cryptography import __version__ as cryptography_version + + _check_cryptography(cryptography_version) +except ImportError: + pass + +# urllib3's DependencyWarnings should be silenced. +from pip._vendor.urllib3.exceptions import DependencyWarning + +warnings.simplefilter("ignore", DependencyWarning) + +# Set default logging handler to avoid "No handler found" warnings. +import logging +from logging import NullHandler + +from . import packages, utils +from .__version__ import ( + __author__, + __author_email__, + __build__, + __cake__, + __copyright__, + __description__, + __license__, + __title__, + __url__, + __version__, +) +from .api import delete, get, head, options, patch, post, put, request +from .exceptions import ( + ConnectionError, + ConnectTimeout, + FileModeWarning, + HTTPError, + JSONDecodeError, + ReadTimeout, + RequestException, + Timeout, + TooManyRedirects, + URLRequired, +) +from .models import PreparedRequest, Request, Response +from .sessions import Session, session +from .status_codes import codes + +logging.getLogger(__name__).addHandler(NullHandler()) + +# FileModeWarnings go off per the default. +warnings.simplefilter("default", FileModeWarning, append=True) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9bc9207a2e5045a709adfb1719e109c0ffe27e0e GIT binary patch literal 5260 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 I%0Aft09~2HVgLXD literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67a58738a446af886e4d7c4a28cb3655da78fc51 GIT binary patch literal 2035 zcmah}&2JM&6rbJo=h}%ANjrsZyo>7hJXqYTZ>2k*XfJrA-eNm-fy2BO)d0NIN_4&F_88 zd%u|%eSIo|F{=Di`8kZxZ$jvfP-n6E6D%Gh6P1uDnX)aFBvUa%wp>+8iiBiDq{Ud* zXzOo=pG$426y6aN>0u%}Vxm1vbVp3Ahl!C0i7m*bI0=&|{8f@5DoK*KC71flgc-jl zmHJKf9xA1payq&Eol41Pb;3ByXqLkXb#z;+bIWGx7jFzzou%%QWfF$Pw#A!xq3#&m zavg?wMdw(j1REgLtHi`zUv?9ho4C-4p*AX(QNbpu5y!-?gUKCENtFOJg7AOrVe$<6Qi|`u9ka(B2{q++5s!#yVvHjSZ_!oMR2t}xauqeCbZGg9 zvjpx_)p7{77NBVsw7JIv*MUn1*OlwgtWIBzicWO{Y*q`3+dBI=;bY z*M5}T^QiKT@-i|0V`zLs4uywWv4MxF2dUNQ%NTB@-ue62#Mqxm3J?8~+P$H`|1}fj z_-b$hJ&R8%-%C?UTB71XNe}o@O*36X(|nl{Khl1&+7}=y1j{D=i1umj!uhk>xqR+y zzMx&oUCe8RymtEPT;3mk`(AOb;E%q!1wO89*=_UL+Z2X-x{-pgxw*@Qq9*iv-=Yta z2$!3jFggGy@&`LvZrKJmBPipyi1q;{sPyaDiK=VXZE}hp1f6IBdjt~{Op^YPBT{Iy zA4%%(=)n5eq1D3E(vy;R_~hEyDG!ab_D!sweme7H#yfO;ZQltG4Y&3mUM)Xee6r}J zPps`f>7miqmeusy*m1C0A35S3z3dIodT38;^r&~N;EfbLw0Aue_YwzNp{N%>un|^< TWDgB)CRHi5Ig*ryf{gzK_tGuq literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73dd36c470f4e95714c59c5b199fddbf3d2686ff GIT binary patch literal 27886 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 KmhbnQ5dI&9g{%Sq literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..170bf3cfbd30f5e16d63a19951881db8e85ebca5 GIT binary patch literal 7218 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b4c23699e009ce1e0d48c459c629aa85859b5ad6 GIT binary patch literal 13937 zcmdrzTW}lKb-Q>IZxA3sQlzweNF*peL`tG%)s#(%vL3Z5N1`2>v5P?1l?Vs~sJlx^ zL_kN)cqX9YR^)hEQgt$hQ+G^_Jrm{2@>iV6Op~-90R$$1H%iM)+z-$6Ll%`uMjvg@ zxr+q|5VW17)0y;AID7Zp_c`~TbN1Y$f3?}n45V$^|DODpPKNmnzNkrG$gHnHW{KgM z35I8RO@y6b=~FYIp-=6EmOgb8I{MU4=;_liVSuMLVw^Hfm{^9_@%l*3lzGBT^M;6J z$~s}4vQ5~g>=Sm1Ge#U!&Iu>Ynluq5fTM0qdn$CtzKIw}@?^*jm84H`HyM)%ZN|m(4`DG$V+T*cX_QCe5#G zOlI@=WJu(uV*E@*;DWKJ6bMB{PMQ=rtSm&OP%t2cVo`1~5alBR5xMg*!kt!oG=GBg z8uPJo&AFj{LNplTg-=*O0mdoC{84CpS@4Sz2}LjXw6ghJK!mB_o2-SWY?>jF=>QQ0 zXizU)l}I2c`Gc|8#gHKSp@VRMK#7Z1@$(@loD>4QK;o@|>FG#ea{X6(uUxs(3p1PQ zh5nRj@NxIlOhgJnQ>mX8@c}6iERdIyvj!j%cD)&}ON@jQrzycm#d<13#Ql=Gb(pY0 ztyy~VY#95iND1cMLa!3tl34tnM(vYjB%9ixRC8|QOxP+jIrKR*(N>#@;T`bw$LLV8SjHTYB<3b*zfjRqKKMoE}(SFS*ser8+go8^T^SUwS5( z1bbeij;=n#jinlD?%hI0trLg$IZZ-yhVdEW&8G!vhQQefaEAk8D9DY#`QVhT+!ud; zEEermUbq=iAkn~-AaYkikq8%!agkW`fN)PsfNP@LVWbJVo5zzCG~AJr@z+ zbl@qxED(tv!q~a65R|yt*i7eTftwD9qSCbMYprC?$4N1mPGML$mgiCHBGDGQj~CF2u-e*&=YLD>1_VIV?gpL_o|$2jT{W zGwXQb4*G1eIV6HKlLFD8K=8!MrYivw1=%CYI?TxilnVh#t{oMoiJ(ZjFDq4u5gX{F z*=a#GC=!L>`6nnaWL-EGipqK<{WOR*lge}1q!Laxq5y>oA~xVS?$KmF5cHxr9S90y z|Cyt`&x{=2-+M-asRw(HfZX(tL<5moF(mf)T^6F3`y-)q{nNA3WGuS3Z(y)r3`s&S zG`<+P0PUwk)BS#^#>Ys%D&PBY#J=fS+2IE<8w&dI9c3?RhAH5N7w-YM#ys>e*7}9X zx6P}T-St0>wZ!Lxz^Fur1@h)6_eK=|Q*iyH3 zqi;*8<8Qo@ZRo4g@S%Y*)h={>`^c)1%e%KNJ-PT~>Oj`r16>+jRq<=~`qf6?J(Fvp zW68JZTRxk*nr_~ctsTgk26LtZ8PkER>EOCn(`5LR(Krm(j@>sgR`<2Bbyy!0M4%>B zrmxonW{D9PQ1c9`cu?;eP`$cYtxqSL@HE5j5#sw0a={4fe>gt@i3`9PMnZC-scASf zpc1J<6gkjBpxe0fBsNv1RgmBKTW_EvmgFU0l%n5YeVVa&GY-m4g0ce*JR?ddAc8Pl z0L~_!O!rt!I-w3K@J9)Wky{#BCkm1CGD}2MQ5;9M!9zCr{n*s+kGs^R^r@)hP(ic< zxW?SGx2D^k%GyWLrV-KtsIgmmY>V>B@0ZPfzhVkN-s<;Xnh8V-B}TuWj|KgHvJ)EJ zVrW}BGT8wL3XVcXv;cUO`ABzYUB~JVvr0XzQk^MXP*RO4ycSra=XC%LydI!&*5EVB zw&UaD&(TAUi;O=xB7sJq1eu5U4RU#d-2x&K#oz^CRZ-#=L}XtO*`y|KoOSovWKv5x;EQJJ`w~T5sUIfa6rmkYgl(o>5 zx42N$qi0~vW2N=p(#cxbeiR`aF9>i(KNr{nAoJy@*I;smwjFXLuJuQ+p zXtZ&~^rUazu!@xVE3DiB0JyVr-|g}DU;h5fACCU`*&jZe-FZ66-l&m1-}=C0 z(3>APS$*reL8Eukp=jM8R4XR+*>MNHnfh}aq#>4o3 z&GopO&bGIV_v9&{$7iv*xb&jtI1epEl=#5r-3RaN`@!%B!$0ZxS?^DKv%AkKY);p9 zW=vfh_)K=;F!T_WSa<|+2#_rzehDE9kF5g>3p`T`p-4$Zo;?NcUra~v2GA5H-UzUU zHvu&BH2^KMW}ij2qm&s9f$=0!_C8h4UZtc8fB!)3ahlHdv$RJ^z*alG>PHCZ8{9QC z%_@?~r{8dHYotj6U&8nyt&hauRLVBLg7VW>vIm-$sUdpQ;@)yH6je|ZtD~YWS3$4Y zK5p6drvIit+tQcR{oK@~h%}WsIKATL{x5j>e31rLP~m8Z7kE&s)wGtsczAg27B#du zG$vlRMU5i)La6DAJu0mb`q7@JiQlS5Q9o{313wdJngz4KryrAbsM5z}hTw=k6A0LV zNVVZfcqb^rWHVTol0O=Q?-JQUAK>zsiAu6AI0=l@PRB&q7M+>$@7ps#%{tM?QY|VX z-3u099W@=M1){PYK6E4@-ciBdsYe`rDYX+>HV)eWOu-1h2`nKe@^DOUt)ih_D-*%0i zHSmTxyHs?NC5p!6oFm}~n@clPb5~hW1D;aXoD<56jv}=bW?P$Z^0n2=-eA6?iGydtCnp2Ih zS4-#W6ZHw*XV;+|gL)Ev)Y24gR&%ANx`V%9U#Qh+3Uh_bh6nFe=ckM}hAz39*|30uOQP|7{H<5WdC z*AU&4(DRMBXGAyOn9zsOfUZbWLM4*qOl9>`DObpl7|(58s(+f_0&jwkzIZ21grB2MK!a4x)3kh?DhTF-4|i zy`p)wmtxa$O&|ik&yX}ZB^zSX0k|j`leN!|?vI-Q^qx6-=1j2C)O~`+~M};r^xX32J4E zhx*i3i!hjoUvu!S;BHwCyzO3f@60zezG=E?N_n#lzJ-x{-t9|YTl`vT;PqE>-u{fY zKkFSxI|ry`AZyPYANg~jHF+7NK_}g$kJ;`$IPIhK6qe zrPl`meD*$mW$~3%AnWbQc?UDz!K`;*+PQB7srL^I{(m4fEMsd@L*XAsYPI1lpfZUd zKuPmWKdLj~-I>!eN{b4drZFL(aBjQEE@2@d8eW^>S;EHQyV5L2EGTYRDOV(wtvtll6Ex5dqEJsj0k zg*;VPkT(H-hJ+wzqcz0oSX2~-+a9sdriWA17nb(GrA0xjVHZ7|BDx{(>fu1^4Y%Q- z&_^^ljKx891Y^Mq;;SPkVVdMiI9DyWb7ehTTndEX3S`}MK$?{GpexC2$s<9~iA|nE zfI3Z4J~}BhCCK_9eQ4mb);L2TkRUciMI!^UW@J#- z9)}EoLD?7$UJgWHNd(Ic3Q1%m5yWZQo|5QX2)@zbZVj$yp_YiIX~Ev8_IOJ1{=2KF z&v@JCOQ%hH44dt~nQ_(SoNXCrTh7^;adxg4GtNCpJ-EQDVePd!JD0I@Is49x zeP_<@%h-J@JG1sZNp0TKkn`-ycy{GHyEC5MIZuDa(|_BN^*oWR$-@|~_Kd4N=jzJ1 zx^k|bjH_qmY}PfDG(fv#&6>rNwlwD(x6hwkYixUS$ITtt#_r_FHA~%c-CfJ}RQGN3 z-L``dbXwaW%($_2{zTpe?(n-d4sm-o;2ytg>pSqC$BDCTJ|g((zYE*&9Cj=WzDyylG=~d z%$miyFsf2*AmbUhYZ-u%6fa56+I`pBy%NY+`+s5WUMqKz)HUYnIx}^hxw^fXy1loL zq&)|c#(P%Bf=*>yU&h&&wf5(%LmBJP?JHU9lSwvjs!2Y75Zt6`~mv3WW0`i`8dJLBrk0vpe) zoJ+d~fRVtgrn{E*k7~Cqi_1c4AoYCe7znW!R*t8e_h)N|l1F~+sQswEVcDIkOBqv_ zR@^K4^!C1NegFKiyv@1r^!1mQ&#!2|S97c8cKf^b%=V#t(~f0ticNK<8dq9Zo?ba{ zd+1L4ow~I5$>ed`(eh-rzH|NxVLpQE_>c=x!JPpNX2jO zyzRYX{&4??o%b2`BGO*?di@~ z!Eg1E#e>+X)QQwztOU}YJsImB#JZ~1wF5R?4@W6A3ztemce*}oO?yT&)=}6ot_Hdv z96Qpc9hv_#ZpsH9GWx?aKmD3mLP7~g4Ri|w=pZZ@v4x?B3ysGAN3WJZOGJWxpRI7x= zJyGRbxq4s|uP=U!Yk5OL8%E2gBE4I9zsxMKB)-Lr(B7y>;Nb(RL7T5uZv(!jYOUy3 zI{2E36fcEYh0y@2NW4iZdaS~D3to}lt0}HfSMu$EHwX>Cip1*^T3-8}S-q-OX3ug!?O+z$>)cQx%J!HWf+b4YaAUXL-vLP#?TTYL+J)AVL0;zrGn2IkC|0#Y&>ug zfT%Bl}!HSMHWBeVeD zBB6%>sC14yF&Gs)EL;=|!1dmkQsJw6x=A%C!30#019x#(p;*%$#+_zn} z;C;@F2sc9zXjByN+(ZKbSJ{XCK0^CByre_KI{U9``5Q{5oN#Kg? zfG9aIqXiX9{vOBtCW0hZH$zWR&{GgFjFXD;;C%{-5(F2@28h=MgwIGVe1Zy!pi@IO zh%`)1x24iGx58?3b2`L8K-+8ur#$e zwd(Mtf&ezCu2pMK-t9>qU$Z!JmX?gAC1+{PSX$GTUa(SZ_8TYWPuv)rAIn*HWUM<< zx*Ru{;RbWuP=*^?wLX@2)h;zIHZHX+wxo9q+#aMR@|wlHaCr$_Ft5LI*Rpe^BiH>z zru&Ip_sLB6$)9{F+dT&MhH5kR+_m=HW;50SP@(r~Jxkq--OCg2k?+mjnp>?MP9C|p z>#;l99~eI{eyI8I>GbI{cZ}Hs8qd0sz}x7uzTn?Ls230Tn5$N9GZ#*;q%rcO{hbDOYf(vcSoU1M4g5EQ(!IdEZ z$-{Z8{l>}plR0Zk#tQDgRV$ZoY)Kw|?c|!fE_q^YcTdUc+Yl~L_R)`uh+YW(8!(Vw z2g0*5sX~|vzM^_6)vBh>$X*bVxT7l4mSP%DNJT0NNw(TmloE7P^9QJXbsbx%wW8Y{ z=2*OvDNTvqoL5n_>MVgeTeky)t1^|^ZE1WJRRbDd?MzAGcQC{QM%xw!S?L1dMdq~& zSD35X7nv)pPd7#doorHNGL@Y^2N{Q{De{gw6v`!xBILdcRUkB1fPgb94($-iK|<$d zB!R|A$~Gcg0I>sC;}~2?-p3yQ0RfuGTSUNYj*CztomyZEiXT8buzyX~oC!b2R!ton z#75U$OIP04oAZrid?O#W{@5eM@lN7IoW?T>b|0LxAu?lyYz z5|Ams*Qj=xUJ7CP-;OFIdtm|u?Tk$!cr;2ZURNRdl^DVS;1W5Atu}cQQAE(C;r{)? z@qRQKt;%2+?e{niHmnXd=Cf`c*hV)q-NJPL(Vd8f<%Wp2-D*cv&5@_^6~RULiD<%M zq}0g=I-S1%fz_nn_rMcj_1uG(v|9bZ19P|D_24X93$P0U;npz_j*@_O;cHT2?C@@a zyo%tT5FAJF4FuE|X+Ve8&^{%w-2oA)aBv_J9lWQZh)84J!5s!xL_nfJ^on;6EoL+> z=zr8vYz4T0!Uoj1Xg+dkZ2aihxPSb`=Z^ZHK6Uz8|MRDxIXZUa)acPs*;`in?DNlz zpYT67a(Y~eO~mV38p1~d#uS2-6A9e7N|^E?^3PBim4qk(00#lfeyY*4x^+9lI)2I2 z(0|TfGL~O5j$bj&|H1VBJJXwCdVj_2{uR@)w&QS`Y0fwGry1`9gO7Fp?kuZg53`># m2p`%#tZU);Lk1oX`}B~1_8|k0ht5-4wsqm`Zy9`2YX1)kwrSY_ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d21a548f44eec5a4aa77cc534ae0ce9a2e9545c GIT binary patch literal 692 zcmY*XF^kkd6rOCddXAorAgIl2PH$m1LB&QySPuo^xWc>YnlPJr*$kJ=#F@#Su@DIy`XA$+u z$$gi6B%JIM9`HdKRD=CNKrrOt!6qU4@_=CEzQIusIC4xr0@6lpG#WNfT!CtQ-k`B2 z&QM!JU;P)9?iIp7rFc^!Xta%%25f;)Ys^t=WeZ9o{CNGLqwsmIRn;AODAX)FU~`NqeVRk78ek5+DhfG=XMMM0z<3^yAy*n0 zYzx`E04|KxV%AupBy{zPNyo)0%7xHMRw(VbBh8qEtYC7Eow&0gq*&o{IP@KFj=-wk zu~RTuGwp1ZE$utx-f(Y{{_=Aj1wQtddcN_0-z1cYqNpxNN$NCS9bJ@25 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8231725ba567e7604c0f5a19fb70f5b75d1f866e GIT binary patch literal 1999 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a663ea9b6137368ce27c7c6fe3833a241b965ceb GIT binary patch literal 7612 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b296c0d2b34207df49b96d1f887f4f030c5fdca3 GIT binary patch literal 4242 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 Q=6D3-3;h#0Je{V00dzSdQUCw| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae8ee9a856edd2997ca5dad67516406bb4bf239b GIT binary patch literal 35587 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 L0EoR7`yu=fSCvHi literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2eb6c64a10897ef5e6b30176c0c7b232f45c5d8a GIT binary patch literal 27904 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%0AAIIaU+=MlO8Eh()^pErsiNbj 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d6bd3f1a0b2c0bbe3c943ce53e995781c3a572ce GIT binary patch literal 5631 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 G;r;_=#1!xV literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e192fe30c40bfda03f70481a3f94a6c3a705b467 GIT binary patch literal 36204 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py new file mode 100644 index 0000000..effdd98 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py @@ -0,0 +1,14 @@ +# .-. .-. .-. . . .-. .-. .-. .-. +# |( |- |.| | | |- `-. | `-. +# ' ' `-' `-`.`-' `-' `-' ' `-' + +__title__ = "requests" +__description__ = "Python HTTP for Humans." +__url__ = "https://requests.readthedocs.io" +__version__ = "2.32.5" +__build__ = 0x023205 +__author__ = "Kenneth Reitz" +__author_email__ = "me@kennethreitz.org" +__license__ = "Apache-2.0" +__copyright__ = "Copyright Kenneth Reitz" +__cake__ = "\u2728 \U0001f370 \u2728" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py new file mode 100644 index 0000000..f2cf635 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py @@ -0,0 +1,50 @@ +""" +requests._internal_utils +~~~~~~~~~~~~~~ + +Provides utility functions that are consumed internally by Requests +which depend on extremely few external helpers (such as compat) +""" +import re + +from .compat import builtin_str + +_VALID_HEADER_NAME_RE_BYTE = re.compile(rb"^[^:\s][^:\r\n]*$") +_VALID_HEADER_NAME_RE_STR = re.compile(r"^[^:\s][^:\r\n]*$") +_VALID_HEADER_VALUE_RE_BYTE = re.compile(rb"^\S[^\r\n]*$|^$") +_VALID_HEADER_VALUE_RE_STR = re.compile(r"^\S[^\r\n]*$|^$") + +_HEADER_VALIDATORS_STR = (_VALID_HEADER_NAME_RE_STR, _VALID_HEADER_VALUE_RE_STR) +_HEADER_VALIDATORS_BYTE = (_VALID_HEADER_NAME_RE_BYTE, _VALID_HEADER_VALUE_RE_BYTE) +HEADER_VALIDATORS = { + bytes: _HEADER_VALIDATORS_BYTE, + str: _HEADER_VALIDATORS_STR, +} + + +def to_native_string(string, encoding="ascii"): + """Given a string object, regardless of type, returns a representation of + that string in the native string type, encoding and decoding where + necessary. This assumes ASCII unless told otherwise. + """ + if isinstance(string, builtin_str): + out = string + else: + out = string.decode(encoding) + + return out + + +def unicode_is_ascii(u_string): + """Determine if unicode string only contains ASCII characters. + + :param str u_string: unicode string to check. Must be unicode + and not Python 2 `str`. + :rtype: bool + """ + assert isinstance(u_string, str) + try: + u_string.encode("ascii") + return True + except UnicodeEncodeError: + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py new file mode 100644 index 0000000..67ccebc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py @@ -0,0 +1,696 @@ +""" +requests.adapters +~~~~~~~~~~~~~~~~~ + +This module contains the transport adapters that Requests uses to define +and maintain connections. +""" + +import os.path +import socket # noqa: F401 +import typing +import warnings + +from pip._vendor.urllib3.exceptions import ClosedPoolError, ConnectTimeoutError +from pip._vendor.urllib3.exceptions import HTTPError as _HTTPError +from pip._vendor.urllib3.exceptions import InvalidHeader as _InvalidHeader +from pip._vendor.urllib3.exceptions import ( + LocationValueError, + MaxRetryError, + NewConnectionError, + ProtocolError, +) +from pip._vendor.urllib3.exceptions import ProxyError as _ProxyError +from pip._vendor.urllib3.exceptions import ReadTimeoutError, ResponseError +from pip._vendor.urllib3.exceptions import SSLError as _SSLError +from pip._vendor.urllib3.poolmanager import PoolManager, proxy_from_url +from pip._vendor.urllib3.util import Timeout as TimeoutSauce +from pip._vendor.urllib3.util import parse_url +from pip._vendor.urllib3.util.retry import Retry + +from .auth import _basic_auth_str +from .compat import basestring, urlparse +from .cookies import extract_cookies_to_jar +from .exceptions import ( + ConnectionError, + ConnectTimeout, + InvalidHeader, + InvalidProxyURL, + InvalidSchema, + InvalidURL, + ProxyError, + ReadTimeout, + RetryError, + SSLError, +) +from .models import Response +from .structures import CaseInsensitiveDict +from .utils import ( + DEFAULT_CA_BUNDLE_PATH, + extract_zipped_paths, + get_auth_from_url, + get_encoding_from_headers, + prepend_scheme_if_needed, + select_proxy, + urldefragauth, +) + +try: + from pip._vendor.urllib3.contrib.socks import SOCKSProxyManager +except ImportError: + + def SOCKSProxyManager(*args, **kwargs): + raise InvalidSchema("Missing dependencies for SOCKS support.") + + +if typing.TYPE_CHECKING: + from .models import PreparedRequest + + +DEFAULT_POOLBLOCK = False +DEFAULT_POOLSIZE = 10 +DEFAULT_RETRIES = 0 +DEFAULT_POOL_TIMEOUT = None + + +def _urllib3_request_context( + request: "PreparedRequest", + verify: "bool | str | None", + client_cert: "typing.Tuple[str, str] | str | None", + poolmanager: "PoolManager", +) -> "(typing.Dict[str, typing.Any], typing.Dict[str, typing.Any])": + host_params = {} + pool_kwargs = {} + parsed_request_url = urlparse(request.url) + scheme = parsed_request_url.scheme.lower() + port = parsed_request_url.port + + cert_reqs = "CERT_REQUIRED" + if verify is False: + cert_reqs = "CERT_NONE" + elif isinstance(verify, str): + if not os.path.isdir(verify): + pool_kwargs["ca_certs"] = verify + else: + pool_kwargs["ca_cert_dir"] = verify + pool_kwargs["cert_reqs"] = cert_reqs + if client_cert is not None: + if isinstance(client_cert, tuple) and len(client_cert) == 2: + pool_kwargs["cert_file"] = client_cert[0] + pool_kwargs["key_file"] = client_cert[1] + else: + # According to our docs, we allow users to specify just the client + # cert path + pool_kwargs["cert_file"] = client_cert + host_params = { + "scheme": scheme, + "host": parsed_request_url.hostname, + "port": port, + } + return host_params, pool_kwargs + + +class BaseAdapter: + """The Base Transport Adapter""" + + def __init__(self): + super().__init__() + + def send( + self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None + ): + """Sends PreparedRequest object. Returns Response object. + + :param request: The :class:`PreparedRequest ` being sent. + :param stream: (optional) Whether to stream the request content. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use + :param cert: (optional) Any user-provided SSL certificate to be trusted. + :param proxies: (optional) The proxies dictionary to apply to the request. + """ + raise NotImplementedError + + def close(self): + """Cleans up adapter specific items.""" + raise NotImplementedError + + +class HTTPAdapter(BaseAdapter): + """The built-in HTTP Adapter for urllib3. + + Provides a general-case interface for Requests sessions to contact HTTP and + HTTPS urls by implementing the Transport Adapter interface. This class will + usually be created by the :class:`Session ` class under the + covers. + + :param pool_connections: The number of urllib3 connection pools to cache. + :param pool_maxsize: The maximum number of connections to save in the pool. + :param max_retries: The maximum number of retries each connection + should attempt. Note, this applies only to failed DNS lookups, socket + connections and connection timeouts, never to requests where data has + made it to the server. By default, Requests does not retry failed + connections. If you need granular control over the conditions under + which we retry a request, import urllib3's ``Retry`` class and pass + that instead. + :param pool_block: Whether the connection pool should block for connections. + + Usage:: + + >>> import requests + >>> s = requests.Session() + >>> a = requests.adapters.HTTPAdapter(max_retries=3) + >>> s.mount('http://', a) + """ + + __attrs__ = [ + "max_retries", + "config", + "_pool_connections", + "_pool_maxsize", + "_pool_block", + ] + + def __init__( + self, + pool_connections=DEFAULT_POOLSIZE, + pool_maxsize=DEFAULT_POOLSIZE, + max_retries=DEFAULT_RETRIES, + pool_block=DEFAULT_POOLBLOCK, + ): + if max_retries == DEFAULT_RETRIES: + self.max_retries = Retry(0, read=False) + else: + self.max_retries = Retry.from_int(max_retries) + self.config = {} + self.proxy_manager = {} + + super().__init__() + + self._pool_connections = pool_connections + self._pool_maxsize = pool_maxsize + self._pool_block = pool_block + + self.init_poolmanager(pool_connections, pool_maxsize, block=pool_block) + + def __getstate__(self): + return {attr: getattr(self, attr, None) for attr in self.__attrs__} + + def __setstate__(self, state): + # Can't handle by adding 'proxy_manager' to self.__attrs__ because + # self.poolmanager uses a lambda function, which isn't pickleable. + self.proxy_manager = {} + self.config = {} + + for attr, value in state.items(): + setattr(self, attr, value) + + self.init_poolmanager( + self._pool_connections, self._pool_maxsize, block=self._pool_block + ) + + def init_poolmanager( + self, connections, maxsize, block=DEFAULT_POOLBLOCK, **pool_kwargs + ): + """Initializes a urllib3 PoolManager. + + This method should not be called from user code, and is only + exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param connections: The number of urllib3 connection pools to cache. + :param maxsize: The maximum number of connections to save in the pool. + :param block: Block when no free connections are available. + :param pool_kwargs: Extra keyword arguments used to initialize the Pool Manager. + """ + # save these values for pickling + self._pool_connections = connections + self._pool_maxsize = maxsize + self._pool_block = block + + self.poolmanager = PoolManager( + num_pools=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + def proxy_manager_for(self, proxy, **proxy_kwargs): + """Return urllib3 ProxyManager for the given proxy. + + This method should not be called from user code, and is only + exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param proxy: The proxy to return a urllib3 ProxyManager for. + :param proxy_kwargs: Extra keyword arguments used to configure the Proxy Manager. + :returns: ProxyManager + :rtype: urllib3.ProxyManager + """ + if proxy in self.proxy_manager: + manager = self.proxy_manager[proxy] + elif proxy.lower().startswith("socks"): + username, password = get_auth_from_url(proxy) + manager = self.proxy_manager[proxy] = SOCKSProxyManager( + proxy, + username=username, + password=password, + num_pools=self._pool_connections, + maxsize=self._pool_maxsize, + block=self._pool_block, + **proxy_kwargs, + ) + else: + proxy_headers = self.proxy_headers(proxy) + manager = self.proxy_manager[proxy] = proxy_from_url( + proxy, + proxy_headers=proxy_headers, + num_pools=self._pool_connections, + maxsize=self._pool_maxsize, + block=self._pool_block, + **proxy_kwargs, + ) + + return manager + + def cert_verify(self, conn, url, verify, cert): + """Verify a SSL certificate. This method should not be called from user + code, and is only exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param conn: The urllib3 connection object associated with the cert. + :param url: The requested URL. + :param verify: Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use + :param cert: The SSL certificate to verify. + """ + if url.lower().startswith("https") and verify: + cert_loc = None + + # Allow self-specified cert location. + if verify is not True: + cert_loc = verify + + if not cert_loc: + cert_loc = extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH) + + if not cert_loc or not os.path.exists(cert_loc): + raise OSError( + f"Could not find a suitable TLS CA certificate bundle, " + f"invalid path: {cert_loc}" + ) + + conn.cert_reqs = "CERT_REQUIRED" + + if not os.path.isdir(cert_loc): + conn.ca_certs = cert_loc + else: + conn.ca_cert_dir = cert_loc + else: + conn.cert_reqs = "CERT_NONE" + conn.ca_certs = None + conn.ca_cert_dir = None + + if cert: + if not isinstance(cert, basestring): + conn.cert_file = cert[0] + conn.key_file = cert[1] + else: + conn.cert_file = cert + conn.key_file = None + if conn.cert_file and not os.path.exists(conn.cert_file): + raise OSError( + f"Could not find the TLS certificate file, " + f"invalid path: {conn.cert_file}" + ) + if conn.key_file and not os.path.exists(conn.key_file): + raise OSError( + f"Could not find the TLS key file, invalid path: {conn.key_file}" + ) + + def build_response(self, req, resp): + """Builds a :class:`Response ` object from a urllib3 + response. This should not be called from user code, and is only exposed + for use when subclassing the + :class:`HTTPAdapter ` + + :param req: The :class:`PreparedRequest ` used to generate the response. + :param resp: The urllib3 response object. + :rtype: requests.Response + """ + response = Response() + + # Fallback to None if there's no status_code, for whatever reason. + response.status_code = getattr(resp, "status", None) + + # Make headers case-insensitive. + response.headers = CaseInsensitiveDict(getattr(resp, "headers", {})) + + # Set encoding. + response.encoding = get_encoding_from_headers(response.headers) + response.raw = resp + response.reason = response.raw.reason + + if isinstance(req.url, bytes): + response.url = req.url.decode("utf-8") + else: + response.url = req.url + + # Add new cookies from the server. + extract_cookies_to_jar(response.cookies, req, resp) + + # Give the Response some context. + response.request = req + response.connection = self + + return response + + def build_connection_pool_key_attributes(self, request, verify, cert=None): + """Build the PoolKey attributes used by urllib3 to return a connection. + + This looks at the PreparedRequest, the user-specified verify value, + and the value of the cert parameter to determine what PoolKey values + to use to select a connection from a given urllib3 Connection Pool. + + The SSL related pool key arguments are not consistently set. As of + this writing, use the following to determine what keys may be in that + dictionary: + + * If ``verify`` is ``True``, ``"ssl_context"`` will be set and will be the + default Requests SSL Context + * If ``verify`` is ``False``, ``"ssl_context"`` will not be set but + ``"cert_reqs"`` will be set + * If ``verify`` is a string, (i.e., it is a user-specified trust bundle) + ``"ca_certs"`` will be set if the string is not a directory recognized + by :py:func:`os.path.isdir`, otherwise ``"ca_cert_dir"`` will be + set. + * If ``"cert"`` is specified, ``"cert_file"`` will always be set. If + ``"cert"`` is a tuple with a second item, ``"key_file"`` will also + be present + + To override these settings, one may subclass this class, call this + method and use the above logic to change parameters as desired. For + example, if one wishes to use a custom :py:class:`ssl.SSLContext` one + must both set ``"ssl_context"`` and based on what else they require, + alter the other keys to ensure the desired behaviour. + + :param request: + The PreparedReqest being sent over the connection. + :type request: + :class:`~requests.models.PreparedRequest` + :param verify: + Either a boolean, in which case it controls whether + we verify the server's TLS certificate, or a string, in which case it + must be a path to a CA bundle to use. + :param cert: + (optional) Any user-provided SSL certificate for client + authentication (a.k.a., mTLS). This may be a string (i.e., just + the path to a file which holds both certificate and key) or a + tuple of length 2 with the certificate file path and key file + path. + :returns: + A tuple of two dictionaries. The first is the "host parameters" + portion of the Pool Key including scheme, hostname, and port. The + second is a dictionary of SSLContext related parameters. + """ + return _urllib3_request_context(request, verify, cert, self.poolmanager) + + def get_connection_with_tls_context(self, request, verify, proxies=None, cert=None): + """Returns a urllib3 connection for the given request and TLS settings. + This should not be called from user code, and is only exposed for use + when subclassing the :class:`HTTPAdapter `. + + :param request: + The :class:`PreparedRequest ` object to be sent + over the connection. + :param verify: + Either a boolean, in which case it controls whether we verify the + server's TLS certificate, or a string, in which case it must be a + path to a CA bundle to use. + :param proxies: + (optional) The proxies dictionary to apply to the request. + :param cert: + (optional) Any user-provided SSL certificate to be used for client + authentication (a.k.a., mTLS). + :rtype: + urllib3.ConnectionPool + """ + proxy = select_proxy(request.url, proxies) + try: + host_params, pool_kwargs = self.build_connection_pool_key_attributes( + request, + verify, + cert, + ) + except ValueError as e: + raise InvalidURL(e, request=request) + if proxy: + proxy = prepend_scheme_if_needed(proxy, "http") + proxy_url = parse_url(proxy) + if not proxy_url.host: + raise InvalidProxyURL( + "Please check proxy URL. It is malformed " + "and could be missing the host." + ) + proxy_manager = self.proxy_manager_for(proxy) + conn = proxy_manager.connection_from_host( + **host_params, pool_kwargs=pool_kwargs + ) + else: + # Only scheme should be lower case + conn = self.poolmanager.connection_from_host( + **host_params, pool_kwargs=pool_kwargs + ) + + return conn + + def get_connection(self, url, proxies=None): + """DEPRECATED: Users should move to `get_connection_with_tls_context` + for all subclasses of HTTPAdapter using Requests>=2.32.2. + + Returns a urllib3 connection for the given URL. This should not be + called from user code, and is only exposed for use when subclassing the + :class:`HTTPAdapter `. + + :param url: The URL to connect to. + :param proxies: (optional) A Requests-style dictionary of proxies used on this request. + :rtype: urllib3.ConnectionPool + """ + warnings.warn( + ( + "`get_connection` has been deprecated in favor of " + "`get_connection_with_tls_context`. Custom HTTPAdapter subclasses " + "will need to migrate for Requests>=2.32.2. Please see " + "https://github.com/psf/requests/pull/6710 for more details." + ), + DeprecationWarning, + ) + proxy = select_proxy(url, proxies) + + if proxy: + proxy = prepend_scheme_if_needed(proxy, "http") + proxy_url = parse_url(proxy) + if not proxy_url.host: + raise InvalidProxyURL( + "Please check proxy URL. It is malformed " + "and could be missing the host." + ) + proxy_manager = self.proxy_manager_for(proxy) + conn = proxy_manager.connection_from_url(url) + else: + # Only scheme should be lower case + parsed = urlparse(url) + url = parsed.geturl() + conn = self.poolmanager.connection_from_url(url) + + return conn + + def close(self): + """Disposes of any internal state. + + Currently, this closes the PoolManager and any active ProxyManager, + which closes any pooled connections. + """ + self.poolmanager.clear() + for proxy in self.proxy_manager.values(): + proxy.clear() + + def request_url(self, request, proxies): + """Obtain the url to use when making the final request. + + If the message is being sent through a HTTP proxy, the full URL has to + be used. Otherwise, we should only use the path portion of the URL. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param request: The :class:`PreparedRequest ` being sent. + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs. + :rtype: str + """ + proxy = select_proxy(request.url, proxies) + scheme = urlparse(request.url).scheme + + is_proxied_http_request = proxy and scheme != "https" + using_socks_proxy = False + if proxy: + proxy_scheme = urlparse(proxy).scheme.lower() + using_socks_proxy = proxy_scheme.startswith("socks") + + url = request.path_url + if url.startswith("//"): # Don't confuse urllib3 + url = f"/{url.lstrip('/')}" + + if is_proxied_http_request and not using_socks_proxy: + url = urldefragauth(request.url) + + return url + + def add_headers(self, request, **kwargs): + """Add any headers needed by the connection. As of v2.0 this does + nothing by default, but is left for overriding by users that subclass + the :class:`HTTPAdapter `. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param request: The :class:`PreparedRequest ` to add headers to. + :param kwargs: The keyword arguments from the call to send(). + """ + pass + + def proxy_headers(self, proxy): + """Returns a dictionary of the headers to add to any request sent + through a proxy. This works with urllib3 magic to ensure that they are + correctly sent to the proxy, rather than in a tunnelled request if + CONNECT is being used. + + This should not be called from user code, and is only exposed for use + when subclassing the + :class:`HTTPAdapter `. + + :param proxy: The url of the proxy being used for this request. + :rtype: dict + """ + headers = {} + username, password = get_auth_from_url(proxy) + + if username: + headers["Proxy-Authorization"] = _basic_auth_str(username, password) + + return headers + + def send( + self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None + ): + """Sends PreparedRequest object. Returns Response object. + + :param request: The :class:`PreparedRequest ` being sent. + :param stream: (optional) Whether to stream the request content. + :param timeout: (optional) How long to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple or urllib3 Timeout object + :param verify: (optional) Either a boolean, in which case it controls whether + we verify the server's TLS certificate, or a string, in which case it + must be a path to a CA bundle to use + :param cert: (optional) Any user-provided SSL certificate to be trusted. + :param proxies: (optional) The proxies dictionary to apply to the request. + :rtype: requests.Response + """ + + try: + conn = self.get_connection_with_tls_context( + request, verify, proxies=proxies, cert=cert + ) + except LocationValueError as e: + raise InvalidURL(e, request=request) + + self.cert_verify(conn, request.url, verify, cert) + url = self.request_url(request, proxies) + self.add_headers( + request, + stream=stream, + timeout=timeout, + verify=verify, + cert=cert, + proxies=proxies, + ) + + chunked = not (request.body is None or "Content-Length" in request.headers) + + if isinstance(timeout, tuple): + try: + connect, read = timeout + timeout = TimeoutSauce(connect=connect, read=read) + except ValueError: + raise ValueError( + f"Invalid timeout {timeout}. Pass a (connect, read) timeout tuple, " + f"or a single float to set both timeouts to the same value." + ) + elif isinstance(timeout, TimeoutSauce): + pass + else: + timeout = TimeoutSauce(connect=timeout, read=timeout) + + try: + resp = conn.urlopen( + method=request.method, + url=url, + body=request.body, + headers=request.headers, + redirect=False, + assert_same_host=False, + preload_content=False, + decode_content=False, + retries=self.max_retries, + timeout=timeout, + chunked=chunked, + ) + + except (ProtocolError, OSError) as err: + raise ConnectionError(err, request=request) + + except MaxRetryError as e: + if isinstance(e.reason, ConnectTimeoutError): + # TODO: Remove this in 3.0.0: see #2811 + if not isinstance(e.reason, NewConnectionError): + raise ConnectTimeout(e, request=request) + + if isinstance(e.reason, ResponseError): + raise RetryError(e, request=request) + + if isinstance(e.reason, _ProxyError): + raise ProxyError(e, request=request) + + if isinstance(e.reason, _SSLError): + # This branch is for urllib3 v1.22 and later. + raise SSLError(e, request=request) + + raise ConnectionError(e, request=request) + + except ClosedPoolError as e: + raise ConnectionError(e, request=request) + + except _ProxyError as e: + raise ProxyError(e) + + except (_SSLError, _HTTPError) as e: + if isinstance(e, _SSLError): + # This branch is for urllib3 versions earlier than v1.22 + raise SSLError(e, request=request) + elif isinstance(e, ReadTimeoutError): + raise ReadTimeout(e, request=request) + elif isinstance(e, _InvalidHeader): + raise InvalidHeader(e, request=request) + else: + raise + + return self.build_response(request, resp) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py new file mode 100644 index 0000000..5960744 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py @@ -0,0 +1,157 @@ +""" +requests.api +~~~~~~~~~~~~ + +This module implements the Requests API. + +:copyright: (c) 2012 by Kenneth Reitz. +:license: Apache2, see LICENSE for more details. +""" + +from . import sessions + + +def request(method, url, **kwargs): + """Constructs and sends a :class:`Request `. + + :param method: method for the new :class:`Request` object: ``GET``, ``OPTIONS``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, or ``DELETE``. + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary, list of tuples or bytes to send + in the query string for the :class:`Request`. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param headers: (optional) Dictionary of HTTP Headers to send with the :class:`Request`. + :param cookies: (optional) Dict or CookieJar object to send with the :class:`Request`. + :param files: (optional) Dictionary of ``'name': file-like-objects`` (or ``{'name': file-tuple}``) for multipart encoding upload. + ``file-tuple`` can be a 2-tuple ``('filename', fileobj)``, 3-tuple ``('filename', fileobj, 'content_type')`` + or a 4-tuple ``('filename', fileobj, 'content_type', custom_headers)``, where ``'content_type'`` is a string + defining the content type of the given file and ``custom_headers`` a dict-like object containing additional headers + to add for the file. + :param auth: (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth. + :param timeout: (optional) How many seconds to wait for the server to send data + before giving up, as a float, or a :ref:`(connect timeout, read + timeout) ` tuple. + :type timeout: float or tuple + :param allow_redirects: (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to ``True``. + :type allow_redirects: bool + :param proxies: (optional) Dictionary mapping protocol to the URL of the proxy. + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use. Defaults to ``True``. + :param stream: (optional) if ``False``, the response content will be immediately downloaded. + :param cert: (optional) if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair. + :return: :class:`Response ` object + :rtype: requests.Response + + Usage:: + + >>> import requests + >>> req = requests.request('GET', 'https://httpbin.org/get') + >>> req + + """ + + # By using the 'with' statement we are sure the session is closed, thus we + # avoid leaving sockets open which can trigger a ResourceWarning in some + # cases, and look like a memory leak in others. + with sessions.Session() as session: + return session.request(method=method, url=url, **kwargs) + + +def get(url, params=None, **kwargs): + r"""Sends a GET request. + + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary, list of tuples or bytes to send + in the query string for the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("get", url, params=params, **kwargs) + + +def options(url, **kwargs): + r"""Sends an OPTIONS request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("options", url, **kwargs) + + +def head(url, **kwargs): + r"""Sends a HEAD request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. If + `allow_redirects` is not provided, it will be set to `False` (as + opposed to the default :meth:`request` behavior). + :return: :class:`Response ` object + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", False) + return request("head", url, **kwargs) + + +def post(url, data=None, json=None, **kwargs): + r"""Sends a POST request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("post", url, data=data, json=json, **kwargs) + + +def put(url, data=None, **kwargs): + r"""Sends a PUT request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("put", url, data=data, **kwargs) + + +def patch(url, data=None, **kwargs): + r"""Sends a PATCH request. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("patch", url, data=data, **kwargs) + + +def delete(url, **kwargs): + r"""Sends a DELETE request. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :return: :class:`Response ` object + :rtype: requests.Response + """ + + return request("delete", url, **kwargs) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py new file mode 100644 index 0000000..4a7ce6d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py @@ -0,0 +1,314 @@ +""" +requests.auth +~~~~~~~~~~~~~ + +This module contains the authentication handlers for Requests. +""" + +import hashlib +import os +import re +import threading +import time +import warnings +from base64 import b64encode + +from ._internal_utils import to_native_string +from .compat import basestring, str, urlparse +from .cookies import extract_cookies_to_jar +from .utils import parse_dict_header + +CONTENT_TYPE_FORM_URLENCODED = "application/x-www-form-urlencoded" +CONTENT_TYPE_MULTI_PART = "multipart/form-data" + + +def _basic_auth_str(username, password): + """Returns a Basic Auth string.""" + + # "I want us to put a big-ol' comment on top of it that + # says that this behaviour is dumb but we need to preserve + # it because people are relying on it." + # - Lukasa + # + # These are here solely to maintain backwards compatibility + # for things like ints. This will be removed in 3.0.0. + if not isinstance(username, basestring): + warnings.warn( + "Non-string usernames will no longer be supported in Requests " + "3.0.0. Please convert the object you've passed in ({!r}) to " + "a string or bytes object in the near future to avoid " + "problems.".format(username), + category=DeprecationWarning, + ) + username = str(username) + + if not isinstance(password, basestring): + warnings.warn( + "Non-string passwords will no longer be supported in Requests " + "3.0.0. Please convert the object you've passed in ({!r}) to " + "a string or bytes object in the near future to avoid " + "problems.".format(type(password)), + category=DeprecationWarning, + ) + password = str(password) + # -- End Removal -- + + if isinstance(username, str): + username = username.encode("latin1") + + if isinstance(password, str): + password = password.encode("latin1") + + authstr = "Basic " + to_native_string( + b64encode(b":".join((username, password))).strip() + ) + + return authstr + + +class AuthBase: + """Base class that all auth implementations derive from""" + + def __call__(self, r): + raise NotImplementedError("Auth hooks must be callable.") + + +class HTTPBasicAuth(AuthBase): + """Attaches HTTP Basic Authentication to the given Request object.""" + + def __init__(self, username, password): + self.username = username + self.password = password + + def __eq__(self, other): + return all( + [ + self.username == getattr(other, "username", None), + self.password == getattr(other, "password", None), + ] + ) + + def __ne__(self, other): + return not self == other + + def __call__(self, r): + r.headers["Authorization"] = _basic_auth_str(self.username, self.password) + return r + + +class HTTPProxyAuth(HTTPBasicAuth): + """Attaches HTTP Proxy Authentication to a given Request object.""" + + def __call__(self, r): + r.headers["Proxy-Authorization"] = _basic_auth_str(self.username, self.password) + return r + + +class HTTPDigestAuth(AuthBase): + """Attaches HTTP Digest Authentication to the given Request object.""" + + def __init__(self, username, password): + self.username = username + self.password = password + # Keep state in per-thread local storage + self._thread_local = threading.local() + + def init_per_thread_state(self): + # Ensure state is initialized just once per-thread + if not hasattr(self._thread_local, "init"): + self._thread_local.init = True + self._thread_local.last_nonce = "" + self._thread_local.nonce_count = 0 + self._thread_local.chal = {} + self._thread_local.pos = None + self._thread_local.num_401_calls = None + + def build_digest_header(self, method, url): + """ + :rtype: str + """ + + realm = self._thread_local.chal["realm"] + nonce = self._thread_local.chal["nonce"] + qop = self._thread_local.chal.get("qop") + algorithm = self._thread_local.chal.get("algorithm") + opaque = self._thread_local.chal.get("opaque") + hash_utf8 = None + + if algorithm is None: + _algorithm = "MD5" + else: + _algorithm = algorithm.upper() + # lambdas assume digest modules are imported at the top level + if _algorithm == "MD5" or _algorithm == "MD5-SESS": + + def md5_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.md5(x).hexdigest() + + hash_utf8 = md5_utf8 + elif _algorithm == "SHA": + + def sha_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha1(x).hexdigest() + + hash_utf8 = sha_utf8 + elif _algorithm == "SHA-256": + + def sha256_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha256(x).hexdigest() + + hash_utf8 = sha256_utf8 + elif _algorithm == "SHA-512": + + def sha512_utf8(x): + if isinstance(x, str): + x = x.encode("utf-8") + return hashlib.sha512(x).hexdigest() + + hash_utf8 = sha512_utf8 + + KD = lambda s, d: hash_utf8(f"{s}:{d}") # noqa:E731 + + if hash_utf8 is None: + return None + + # XXX not implemented yet + entdig = None + p_parsed = urlparse(url) + #: path is request-uri defined in RFC 2616 which should not be empty + path = p_parsed.path or "/" + if p_parsed.query: + path += f"?{p_parsed.query}" + + A1 = f"{self.username}:{realm}:{self.password}" + A2 = f"{method}:{path}" + + HA1 = hash_utf8(A1) + HA2 = hash_utf8(A2) + + if nonce == self._thread_local.last_nonce: + self._thread_local.nonce_count += 1 + else: + self._thread_local.nonce_count = 1 + ncvalue = f"{self._thread_local.nonce_count:08x}" + s = str(self._thread_local.nonce_count).encode("utf-8") + s += nonce.encode("utf-8") + s += time.ctime().encode("utf-8") + s += os.urandom(8) + + cnonce = hashlib.sha1(s).hexdigest()[:16] + if _algorithm == "MD5-SESS": + HA1 = hash_utf8(f"{HA1}:{nonce}:{cnonce}") + + if not qop: + respdig = KD(HA1, f"{nonce}:{HA2}") + elif qop == "auth" or "auth" in qop.split(","): + noncebit = f"{nonce}:{ncvalue}:{cnonce}:auth:{HA2}" + respdig = KD(HA1, noncebit) + else: + # XXX handle auth-int. + return None + + self._thread_local.last_nonce = nonce + + # XXX should the partial digests be encoded too? + base = ( + f'username="{self.username}", realm="{realm}", nonce="{nonce}", ' + f'uri="{path}", response="{respdig}"' + ) + if opaque: + base += f', opaque="{opaque}"' + if algorithm: + base += f', algorithm="{algorithm}"' + if entdig: + base += f', digest="{entdig}"' + if qop: + base += f', qop="auth", nc={ncvalue}, cnonce="{cnonce}"' + + return f"Digest {base}" + + def handle_redirect(self, r, **kwargs): + """Reset num_401_calls counter on redirects.""" + if r.is_redirect: + self._thread_local.num_401_calls = 1 + + def handle_401(self, r, **kwargs): + """ + Takes the given response and tries digest-auth, if needed. + + :rtype: requests.Response + """ + + # If response is not 4xx, do not auth + # See https://github.com/psf/requests/issues/3772 + if not 400 <= r.status_code < 500: + self._thread_local.num_401_calls = 1 + return r + + if self._thread_local.pos is not None: + # Rewind the file position indicator of the body to where + # it was to resend the request. + r.request.body.seek(self._thread_local.pos) + s_auth = r.headers.get("www-authenticate", "") + + if "digest" in s_auth.lower() and self._thread_local.num_401_calls < 2: + self._thread_local.num_401_calls += 1 + pat = re.compile(r"digest ", flags=re.IGNORECASE) + self._thread_local.chal = parse_dict_header(pat.sub("", s_auth, count=1)) + + # Consume content and release the original connection + # to allow our new request to reuse the same one. + r.content + r.close() + prep = r.request.copy() + extract_cookies_to_jar(prep._cookies, r.request, r.raw) + prep.prepare_cookies(prep._cookies) + + prep.headers["Authorization"] = self.build_digest_header( + prep.method, prep.url + ) + _r = r.connection.send(prep, **kwargs) + _r.history.append(r) + _r.request = prep + + return _r + + self._thread_local.num_401_calls = 1 + return r + + def __call__(self, r): + # Initialize per-thread state, if needed + self.init_per_thread_state() + # If we have a saved nonce, skip the 401 + if self._thread_local.last_nonce: + r.headers["Authorization"] = self.build_digest_header(r.method, r.url) + try: + self._thread_local.pos = r.body.tell() + except AttributeError: + # In the case of HTTPDigestAuth being reused and the body of + # the previous request was a file-like object, pos has the + # file position of the previous body. Ensure it's set to + # None. + self._thread_local.pos = None + r.register_hook("response", self.handle_401) + r.register_hook("response", self.handle_redirect) + self._thread_local.num_401_calls = 1 + + return r + + def __eq__(self, other): + return all( + [ + self.username == getattr(other, "username", None), + self.password == getattr(other, "password", None), + ] + ) + + def __ne__(self, other): + return not self == other diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py new file mode 100644 index 0000000..2743144 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python + +""" +requests.certs +~~~~~~~~~~~~~~ + +This module returns the preferred default CA certificate bundle. There is +only one — the one from the certifi package. + +If you are packaging Requests, e.g., for a Linux distribution or a managed +environment, you can change the definition of where() to return a separately +packaged CA bundle. +""" +from pip._vendor.certifi import where + +if __name__ == "__main__": + print(where()) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py new file mode 100644 index 0000000..b95a921 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py @@ -0,0 +1,90 @@ +""" +requests.compat +~~~~~~~~~~~~~~~ + +This module previously handled import compatibility issues +between Python 2 and Python 3. It remains for backwards +compatibility until the next major version. +""" + +import sys + +# ------- +# urllib3 +# ------- +from pip._vendor.urllib3 import __version__ as urllib3_version + +# Detect which major version of urllib3 is being used. +try: + is_urllib3_1 = int(urllib3_version.split(".")[0]) == 1 +except (TypeError, AttributeError): + # If we can't discern a version, prefer old functionality. + is_urllib3_1 = True + +# ------------------- +# Character Detection +# ------------------- + + +def _resolve_char_detection(): + """Find supported character detection libraries.""" + chardet = None + return chardet + + +chardet = _resolve_char_detection() + +# ------- +# Pythons +# ------- + +# Syntax sugar. +_ver = sys.version_info + +#: Python 2.x? +is_py2 = _ver[0] == 2 + +#: Python 3.x? +is_py3 = _ver[0] == 3 + +# Note: We've patched out simplejson support in pip because it prevents +# upgrading simplejson on Windows. +import json +from json import JSONDecodeError + +# Keep OrderedDict for backwards compatibility. +from collections import OrderedDict +from collections.abc import Callable, Mapping, MutableMapping +from http import cookiejar as cookielib +from http.cookies import Morsel +from io import StringIO + +# -------------- +# Legacy Imports +# -------------- +from urllib.parse import ( + quote, + quote_plus, + unquote, + unquote_plus, + urldefrag, + urlencode, + urljoin, + urlparse, + urlsplit, + urlunparse, +) +from urllib.request import ( + getproxies, + getproxies_environment, + parse_http_list, + proxy_bypass, + proxy_bypass_environment, +) + +builtin_str = str +str = str +bytes = bytes +basestring = (str, bytes) +numeric_types = (int, float) +integer_types = (int,) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py new file mode 100644 index 0000000..f69d0cd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py @@ -0,0 +1,561 @@ +""" +requests.cookies +~~~~~~~~~~~~~~~~ + +Compatibility code to be able to use `http.cookiejar.CookieJar` with requests. + +requests.utils imports from here, so be careful with imports. +""" + +import calendar +import copy +import time + +from ._internal_utils import to_native_string +from .compat import Morsel, MutableMapping, cookielib, urlparse, urlunparse + +try: + import threading +except ImportError: + import dummy_threading as threading + + +class MockRequest: + """Wraps a `requests.Request` to mimic a `urllib2.Request`. + + The code in `http.cookiejar.CookieJar` expects this interface in order to correctly + manage cookie policies, i.e., determine whether a cookie can be set, given the + domains of the request and the cookie. + + The original request object is read-only. The client is responsible for collecting + the new headers via `get_new_headers()` and interpreting them appropriately. You + probably want `get_cookie_header`, defined below. + """ + + def __init__(self, request): + self._r = request + self._new_headers = {} + self.type = urlparse(self._r.url).scheme + + def get_type(self): + return self.type + + def get_host(self): + return urlparse(self._r.url).netloc + + def get_origin_req_host(self): + return self.get_host() + + def get_full_url(self): + # Only return the response's URL if the user hadn't set the Host + # header + if not self._r.headers.get("Host"): + return self._r.url + # If they did set it, retrieve it and reconstruct the expected domain + host = to_native_string(self._r.headers["Host"], encoding="utf-8") + parsed = urlparse(self._r.url) + # Reconstruct the URL as we expect it + return urlunparse( + [ + parsed.scheme, + host, + parsed.path, + parsed.params, + parsed.query, + parsed.fragment, + ] + ) + + def is_unverifiable(self): + return True + + def has_header(self, name): + return name in self._r.headers or name in self._new_headers + + def get_header(self, name, default=None): + return self._r.headers.get(name, self._new_headers.get(name, default)) + + def add_header(self, key, val): + """cookiejar has no legitimate use for this method; add it back if you find one.""" + raise NotImplementedError( + "Cookie headers should be added with add_unredirected_header()" + ) + + def add_unredirected_header(self, name, value): + self._new_headers[name] = value + + def get_new_headers(self): + return self._new_headers + + @property + def unverifiable(self): + return self.is_unverifiable() + + @property + def origin_req_host(self): + return self.get_origin_req_host() + + @property + def host(self): + return self.get_host() + + +class MockResponse: + """Wraps a `httplib.HTTPMessage` to mimic a `urllib.addinfourl`. + + ...what? Basically, expose the parsed HTTP headers from the server response + the way `http.cookiejar` expects to see them. + """ + + def __init__(self, headers): + """Make a MockResponse for `cookiejar` to read. + + :param headers: a httplib.HTTPMessage or analogous carrying the headers + """ + self._headers = headers + + def info(self): + return self._headers + + def getheaders(self, name): + self._headers.getheaders(name) + + +def extract_cookies_to_jar(jar, request, response): + """Extract the cookies from the response into a CookieJar. + + :param jar: http.cookiejar.CookieJar (not necessarily a RequestsCookieJar) + :param request: our own requests.Request object + :param response: urllib3.HTTPResponse object + """ + if not (hasattr(response, "_original_response") and response._original_response): + return + # the _original_response field is the wrapped httplib.HTTPResponse object, + req = MockRequest(request) + # pull out the HTTPMessage with the headers and put it in the mock: + res = MockResponse(response._original_response.msg) + jar.extract_cookies(res, req) + + +def get_cookie_header(jar, request): + """ + Produce an appropriate Cookie header string to be sent with `request`, or None. + + :rtype: str + """ + r = MockRequest(request) + jar.add_cookie_header(r) + return r.get_new_headers().get("Cookie") + + +def remove_cookie_by_name(cookiejar, name, domain=None, path=None): + """Unsets a cookie by name, by default over all domains and paths. + + Wraps CookieJar.clear(), is O(n). + """ + clearables = [] + for cookie in cookiejar: + if cookie.name != name: + continue + if domain is not None and domain != cookie.domain: + continue + if path is not None and path != cookie.path: + continue + clearables.append((cookie.domain, cookie.path, cookie.name)) + + for domain, path, name in clearables: + cookiejar.clear(domain, path, name) + + +class CookieConflictError(RuntimeError): + """There are two cookies that meet the criteria specified in the cookie jar. + Use .get and .set and include domain and path args in order to be more specific. + """ + + +class RequestsCookieJar(cookielib.CookieJar, MutableMapping): + """Compatibility class; is a http.cookiejar.CookieJar, but exposes a dict + interface. + + This is the CookieJar we create by default for requests and sessions that + don't specify one, since some clients may expect response.cookies and + session.cookies to support dict operations. + + Requests does not use the dict interface internally; it's just for + compatibility with external client code. All requests code should work + out of the box with externally provided instances of ``CookieJar``, e.g. + ``LWPCookieJar`` and ``FileCookieJar``. + + Unlike a regular CookieJar, this class is pickleable. + + .. warning:: dictionary operations that are normally O(1) may be O(n). + """ + + def get(self, name, default=None, domain=None, path=None): + """Dict-like get() that also supports optional domain and path args in + order to resolve naming collisions from using one cookie jar over + multiple domains. + + .. warning:: operation is O(n), not O(1). + """ + try: + return self._find_no_duplicates(name, domain, path) + except KeyError: + return default + + def set(self, name, value, **kwargs): + """Dict-like set() that also supports optional domain and path args in + order to resolve naming collisions from using one cookie jar over + multiple domains. + """ + # support client code that unsets cookies by assignment of a None value: + if value is None: + remove_cookie_by_name( + self, name, domain=kwargs.get("domain"), path=kwargs.get("path") + ) + return + + if isinstance(value, Morsel): + c = morsel_to_cookie(value) + else: + c = create_cookie(name, value, **kwargs) + self.set_cookie(c) + return c + + def iterkeys(self): + """Dict-like iterkeys() that returns an iterator of names of cookies + from the jar. + + .. seealso:: itervalues() and iteritems(). + """ + for cookie in iter(self): + yield cookie.name + + def keys(self): + """Dict-like keys() that returns a list of names of cookies from the + jar. + + .. seealso:: values() and items(). + """ + return list(self.iterkeys()) + + def itervalues(self): + """Dict-like itervalues() that returns an iterator of values of cookies + from the jar. + + .. seealso:: iterkeys() and iteritems(). + """ + for cookie in iter(self): + yield cookie.value + + def values(self): + """Dict-like values() that returns a list of values of cookies from the + jar. + + .. seealso:: keys() and items(). + """ + return list(self.itervalues()) + + def iteritems(self): + """Dict-like iteritems() that returns an iterator of name-value tuples + from the jar. + + .. seealso:: iterkeys() and itervalues(). + """ + for cookie in iter(self): + yield cookie.name, cookie.value + + def items(self): + """Dict-like items() that returns a list of name-value tuples from the + jar. Allows client-code to call ``dict(RequestsCookieJar)`` and get a + vanilla python dict of key value pairs. + + .. seealso:: keys() and values(). + """ + return list(self.iteritems()) + + def list_domains(self): + """Utility method to list all the domains in the jar.""" + domains = [] + for cookie in iter(self): + if cookie.domain not in domains: + domains.append(cookie.domain) + return domains + + def list_paths(self): + """Utility method to list all the paths in the jar.""" + paths = [] + for cookie in iter(self): + if cookie.path not in paths: + paths.append(cookie.path) + return paths + + def multiple_domains(self): + """Returns True if there are multiple domains in the jar. + Returns False otherwise. + + :rtype: bool + """ + domains = [] + for cookie in iter(self): + if cookie.domain is not None and cookie.domain in domains: + return True + domains.append(cookie.domain) + return False # there is only one domain in jar + + def get_dict(self, domain=None, path=None): + """Takes as an argument an optional domain and path and returns a plain + old Python dict of name-value pairs of cookies that meet the + requirements. + + :rtype: dict + """ + dictionary = {} + for cookie in iter(self): + if (domain is None or cookie.domain == domain) and ( + path is None or cookie.path == path + ): + dictionary[cookie.name] = cookie.value + return dictionary + + def __contains__(self, name): + try: + return super().__contains__(name) + except CookieConflictError: + return True + + def __getitem__(self, name): + """Dict-like __getitem__() for compatibility with client code. Throws + exception if there are more than one cookie with name. In that case, + use the more explicit get() method instead. + + .. warning:: operation is O(n), not O(1). + """ + return self._find_no_duplicates(name) + + def __setitem__(self, name, value): + """Dict-like __setitem__ for compatibility with client code. Throws + exception if there is already a cookie of that name in the jar. In that + case, use the more explicit set() method instead. + """ + self.set(name, value) + + def __delitem__(self, name): + """Deletes a cookie given a name. Wraps ``http.cookiejar.CookieJar``'s + ``remove_cookie_by_name()``. + """ + remove_cookie_by_name(self, name) + + def set_cookie(self, cookie, *args, **kwargs): + if ( + hasattr(cookie.value, "startswith") + and cookie.value.startswith('"') + and cookie.value.endswith('"') + ): + cookie.value = cookie.value.replace('\\"', "") + return super().set_cookie(cookie, *args, **kwargs) + + def update(self, other): + """Updates this jar with cookies from another CookieJar or dict-like""" + if isinstance(other, cookielib.CookieJar): + for cookie in other: + self.set_cookie(copy.copy(cookie)) + else: + super().update(other) + + def _find(self, name, domain=None, path=None): + """Requests uses this method internally to get cookie values. + + If there are conflicting cookies, _find arbitrarily chooses one. + See _find_no_duplicates if you want an exception thrown if there are + conflicting cookies. + + :param name: a string containing name of cookie + :param domain: (optional) string containing domain of cookie + :param path: (optional) string containing path of cookie + :return: cookie.value + """ + for cookie in iter(self): + if cookie.name == name: + if domain is None or cookie.domain == domain: + if path is None or cookie.path == path: + return cookie.value + + raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") + + def _find_no_duplicates(self, name, domain=None, path=None): + """Both ``__get_item__`` and ``get`` call this function: it's never + used elsewhere in Requests. + + :param name: a string containing name of cookie + :param domain: (optional) string containing domain of cookie + :param path: (optional) string containing path of cookie + :raises KeyError: if cookie is not found + :raises CookieConflictError: if there are multiple cookies + that match name and optionally domain and path + :return: cookie.value + """ + toReturn = None + for cookie in iter(self): + if cookie.name == name: + if domain is None or cookie.domain == domain: + if path is None or cookie.path == path: + if toReturn is not None: + # if there are multiple cookies that meet passed in criteria + raise CookieConflictError( + f"There are multiple cookies with name, {name!r}" + ) + # we will eventually return this as long as no cookie conflict + toReturn = cookie.value + + if toReturn: + return toReturn + raise KeyError(f"name={name!r}, domain={domain!r}, path={path!r}") + + def __getstate__(self): + """Unlike a normal CookieJar, this class is pickleable.""" + state = self.__dict__.copy() + # remove the unpickleable RLock object + state.pop("_cookies_lock") + return state + + def __setstate__(self, state): + """Unlike a normal CookieJar, this class is pickleable.""" + self.__dict__.update(state) + if "_cookies_lock" not in self.__dict__: + self._cookies_lock = threading.RLock() + + def copy(self): + """Return a copy of this RequestsCookieJar.""" + new_cj = RequestsCookieJar() + new_cj.set_policy(self.get_policy()) + new_cj.update(self) + return new_cj + + def get_policy(self): + """Return the CookiePolicy instance used.""" + return self._policy + + +def _copy_cookie_jar(jar): + if jar is None: + return None + + if hasattr(jar, "copy"): + # We're dealing with an instance of RequestsCookieJar + return jar.copy() + # We're dealing with a generic CookieJar instance + new_jar = copy.copy(jar) + new_jar.clear() + for cookie in jar: + new_jar.set_cookie(copy.copy(cookie)) + return new_jar + + +def create_cookie(name, value, **kwargs): + """Make a cookie from underspecified parameters. + + By default, the pair of `name` and `value` will be set for the domain '' + and sent on every request (this is sometimes called a "supercookie"). + """ + result = { + "version": 0, + "name": name, + "value": value, + "port": None, + "domain": "", + "path": "/", + "secure": False, + "expires": None, + "discard": True, + "comment": None, + "comment_url": None, + "rest": {"HttpOnly": None}, + "rfc2109": False, + } + + badargs = set(kwargs) - set(result) + if badargs: + raise TypeError( + f"create_cookie() got unexpected keyword arguments: {list(badargs)}" + ) + + result.update(kwargs) + result["port_specified"] = bool(result["port"]) + result["domain_specified"] = bool(result["domain"]) + result["domain_initial_dot"] = result["domain"].startswith(".") + result["path_specified"] = bool(result["path"]) + + return cookielib.Cookie(**result) + + +def morsel_to_cookie(morsel): + """Convert a Morsel object into a Cookie containing the one k/v pair.""" + + expires = None + if morsel["max-age"]: + try: + expires = int(time.time() + int(morsel["max-age"])) + except ValueError: + raise TypeError(f"max-age: {morsel['max-age']} must be integer") + elif morsel["expires"]: + time_template = "%a, %d-%b-%Y %H:%M:%S GMT" + expires = calendar.timegm(time.strptime(morsel["expires"], time_template)) + return create_cookie( + comment=morsel["comment"], + comment_url=bool(morsel["comment"]), + discard=False, + domain=morsel["domain"], + expires=expires, + name=morsel.key, + path=morsel["path"], + port=None, + rest={"HttpOnly": morsel["httponly"]}, + rfc2109=False, + secure=bool(morsel["secure"]), + value=morsel.value, + version=morsel["version"] or 0, + ) + + +def cookiejar_from_dict(cookie_dict, cookiejar=None, overwrite=True): + """Returns a CookieJar from a key/value dictionary. + + :param cookie_dict: Dict of key/values to insert into CookieJar. + :param cookiejar: (optional) A cookiejar to add the cookies to. + :param overwrite: (optional) If False, will not replace cookies + already in the jar with new ones. + :rtype: CookieJar + """ + if cookiejar is None: + cookiejar = RequestsCookieJar() + + if cookie_dict is not None: + names_from_jar = [cookie.name for cookie in cookiejar] + for name in cookie_dict: + if overwrite or (name not in names_from_jar): + cookiejar.set_cookie(create_cookie(name, cookie_dict[name])) + + return cookiejar + + +def merge_cookies(cookiejar, cookies): + """Add cookies to cookiejar and returns a merged CookieJar. + + :param cookiejar: CookieJar object to add the cookies to. + :param cookies: Dictionary or CookieJar object to be added. + :rtype: CookieJar + """ + if not isinstance(cookiejar, cookielib.CookieJar): + raise ValueError("You can only merge into CookieJar") + + if isinstance(cookies, dict): + cookiejar = cookiejar_from_dict(cookies, cookiejar=cookiejar, overwrite=False) + elif isinstance(cookies, cookielib.CookieJar): + try: + cookiejar.update(cookies) + except AttributeError: + for cookie_in_jar in cookies: + cookiejar.set_cookie(cookie_in_jar) + + return cookiejar diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py new file mode 100644 index 0000000..7f3660f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py @@ -0,0 +1,151 @@ +""" +requests.exceptions +~~~~~~~~~~~~~~~~~~~ + +This module contains the set of Requests' exceptions. +""" +from pip._vendor.urllib3.exceptions import HTTPError as BaseHTTPError + +from .compat import JSONDecodeError as CompatJSONDecodeError + + +class RequestException(IOError): + """There was an ambiguous exception that occurred while handling your + request. + """ + + def __init__(self, *args, **kwargs): + """Initialize RequestException with `request` and `response` objects.""" + response = kwargs.pop("response", None) + self.response = response + self.request = kwargs.pop("request", None) + if response is not None and not self.request and hasattr(response, "request"): + self.request = self.response.request + super().__init__(*args, **kwargs) + + +class InvalidJSONError(RequestException): + """A JSON error occurred.""" + + +class JSONDecodeError(InvalidJSONError, CompatJSONDecodeError): + """Couldn't decode the text into json""" + + def __init__(self, *args, **kwargs): + """ + Construct the JSONDecodeError instance first with all + args. Then use it's args to construct the IOError so that + the json specific args aren't used as IOError specific args + and the error message from JSONDecodeError is preserved. + """ + CompatJSONDecodeError.__init__(self, *args) + InvalidJSONError.__init__(self, *self.args, **kwargs) + + def __reduce__(self): + """ + The __reduce__ method called when pickling the object must + be the one from the JSONDecodeError (be it json/simplejson) + as it expects all the arguments for instantiation, not just + one like the IOError, and the MRO would by default call the + __reduce__ method from the IOError due to the inheritance order. + """ + return CompatJSONDecodeError.__reduce__(self) + + +class HTTPError(RequestException): + """An HTTP error occurred.""" + + +class ConnectionError(RequestException): + """A Connection error occurred.""" + + +class ProxyError(ConnectionError): + """A proxy error occurred.""" + + +class SSLError(ConnectionError): + """An SSL error occurred.""" + + +class Timeout(RequestException): + """The request timed out. + + Catching this error will catch both + :exc:`~requests.exceptions.ConnectTimeout` and + :exc:`~requests.exceptions.ReadTimeout` errors. + """ + + +class ConnectTimeout(ConnectionError, Timeout): + """The request timed out while trying to connect to the remote server. + + Requests that produced this error are safe to retry. + """ + + +class ReadTimeout(Timeout): + """The server did not send any data in the allotted amount of time.""" + + +class URLRequired(RequestException): + """A valid URL is required to make a request.""" + + +class TooManyRedirects(RequestException): + """Too many redirects.""" + + +class MissingSchema(RequestException, ValueError): + """The URL scheme (e.g. http or https) is missing.""" + + +class InvalidSchema(RequestException, ValueError): + """The URL scheme provided is either invalid or unsupported.""" + + +class InvalidURL(RequestException, ValueError): + """The URL provided was somehow invalid.""" + + +class InvalidHeader(RequestException, ValueError): + """The header value provided was somehow invalid.""" + + +class InvalidProxyURL(InvalidURL): + """The proxy URL provided is invalid.""" + + +class ChunkedEncodingError(RequestException): + """The server declared chunked encoding but sent an invalid chunk.""" + + +class ContentDecodingError(RequestException, BaseHTTPError): + """Failed to decode response content.""" + + +class StreamConsumedError(RequestException, TypeError): + """The content for this response was already consumed.""" + + +class RetryError(RequestException): + """Custom retries logic failed""" + + +class UnrewindableBodyError(RequestException): + """Requests encountered an error when trying to rewind a body.""" + + +# Warnings + + +class RequestsWarning(Warning): + """Base warning for Requests.""" + + +class FileModeWarning(RequestsWarning, DeprecationWarning): + """A file was opened in text mode, but Requests determined its binary length.""" + + +class RequestsDependencyWarning(RequestsWarning): + """An imported dependency doesn't match the expected version range.""" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py new file mode 100644 index 0000000..ddbb615 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py @@ -0,0 +1,127 @@ +"""Module containing bug report helper(s).""" + +import json +import platform +import ssl +import sys + +from pip._vendor import idna +from pip._vendor import urllib3 + +from . import __version__ as requests_version + +charset_normalizer = None +chardet = None + +try: + from pip._vendor.urllib3.contrib import pyopenssl +except ImportError: + pyopenssl = None + OpenSSL = None + cryptography = None +else: + import cryptography + import OpenSSL + + +def _implementation(): + """Return a dict with the Python implementation and version. + + Provide both the name and the version of the Python implementation + currently running. For example, on CPython 3.10.3 it will return + {'name': 'CPython', 'version': '3.10.3'}. + + This function works best on CPython and PyPy: in particular, it probably + doesn't work for Jython or IronPython. Future investigation should be done + to work out the correct shape of the code for those platforms. + """ + implementation = platform.python_implementation() + + if implementation == "CPython": + implementation_version = platform.python_version() + elif implementation == "PyPy": + implementation_version = "{}.{}.{}".format( + sys.pypy_version_info.major, + sys.pypy_version_info.minor, + sys.pypy_version_info.micro, + ) + if sys.pypy_version_info.releaselevel != "final": + implementation_version = "".join( + [implementation_version, sys.pypy_version_info.releaselevel] + ) + elif implementation == "Jython": + implementation_version = platform.python_version() # Complete Guess + elif implementation == "IronPython": + implementation_version = platform.python_version() # Complete Guess + else: + implementation_version = "Unknown" + + return {"name": implementation, "version": implementation_version} + + +def info(): + """Generate information for a bug report.""" + try: + platform_info = { + "system": platform.system(), + "release": platform.release(), + } + except OSError: + platform_info = { + "system": "Unknown", + "release": "Unknown", + } + + implementation_info = _implementation() + urllib3_info = {"version": urllib3.__version__} + charset_normalizer_info = {"version": None} + chardet_info = {"version": None} + if charset_normalizer: + charset_normalizer_info = {"version": charset_normalizer.__version__} + if chardet: + chardet_info = {"version": chardet.__version__} + + pyopenssl_info = { + "version": None, + "openssl_version": "", + } + if OpenSSL: + pyopenssl_info = { + "version": OpenSSL.__version__, + "openssl_version": f"{OpenSSL.SSL.OPENSSL_VERSION_NUMBER:x}", + } + cryptography_info = { + "version": getattr(cryptography, "__version__", ""), + } + idna_info = { + "version": getattr(idna, "__version__", ""), + } + + system_ssl = ssl.OPENSSL_VERSION_NUMBER + system_ssl_info = {"version": f"{system_ssl:x}" if system_ssl is not None else ""} + + return { + "platform": platform_info, + "implementation": implementation_info, + "system_ssl": system_ssl_info, + "using_pyopenssl": pyopenssl is not None, + "using_charset_normalizer": chardet is None, + "pyOpenSSL": pyopenssl_info, + "urllib3": urllib3_info, + "chardet": chardet_info, + "charset_normalizer": charset_normalizer_info, + "cryptography": cryptography_info, + "idna": idna_info, + "requests": { + "version": requests_version, + }, + } + + +def main(): + """Pretty-print the bug information as JSON.""" + print(json.dumps(info(), sort_keys=True, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py new file mode 100644 index 0000000..d181ba2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py @@ -0,0 +1,33 @@ +""" +requests.hooks +~~~~~~~~~~~~~~ + +This module provides the capabilities for the Requests hooks system. + +Available hooks: + +``response``: + The response generated from a Request. +""" +HOOKS = ["response"] + + +def default_hooks(): + return {event: [] for event in HOOKS} + + +# TODO: response is the only one + + +def dispatch_hook(key, hooks, hook_data, **kwargs): + """Dispatches a hook dictionary on a given piece of data.""" + hooks = hooks or {} + hooks = hooks.get(key) + if hooks: + if hasattr(hooks, "__call__"): + hooks = [hooks] + for hook in hooks: + _hook_data = hook(hook_data, **kwargs) + if _hook_data is not None: + hook_data = _hook_data + return hook_data diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py new file mode 100644 index 0000000..22de95c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py @@ -0,0 +1,1039 @@ +""" +requests.models +~~~~~~~~~~~~~~~ + +This module contains the primary objects that power Requests. +""" + +import datetime + +# Import encoding now, to avoid implicit import later. +# Implicit import within threads may cause LookupError when standard library is in a ZIP, +# such as in Embedded Python. See https://github.com/psf/requests/issues/3578. +import encodings.idna # noqa: F401 +from io import UnsupportedOperation + +from pip._vendor.urllib3.exceptions import ( + DecodeError, + LocationParseError, + ProtocolError, + ReadTimeoutError, + SSLError, +) +from pip._vendor.urllib3.fields import RequestField +from pip._vendor.urllib3.filepost import encode_multipart_formdata +from pip._vendor.urllib3.util import parse_url + +from ._internal_utils import to_native_string, unicode_is_ascii +from .auth import HTTPBasicAuth +from .compat import ( + Callable, + JSONDecodeError, + Mapping, + basestring, + builtin_str, + chardet, + cookielib, +) +from .compat import json as complexjson +from .compat import urlencode, urlsplit, urlunparse +from .cookies import _copy_cookie_jar, cookiejar_from_dict, get_cookie_header +from .exceptions import ( + ChunkedEncodingError, + ConnectionError, + ContentDecodingError, + HTTPError, + InvalidJSONError, + InvalidURL, +) +from .exceptions import JSONDecodeError as RequestsJSONDecodeError +from .exceptions import MissingSchema +from .exceptions import SSLError as RequestsSSLError +from .exceptions import StreamConsumedError +from .hooks import default_hooks +from .status_codes import codes +from .structures import CaseInsensitiveDict +from .utils import ( + check_header_validity, + get_auth_from_url, + guess_filename, + guess_json_utf, + iter_slices, + parse_header_links, + requote_uri, + stream_decode_response_unicode, + super_len, + to_key_val_list, +) + +#: The set of HTTP status codes that indicate an automatically +#: processable redirect. +REDIRECT_STATI = ( + codes.moved, # 301 + codes.found, # 302 + codes.other, # 303 + codes.temporary_redirect, # 307 + codes.permanent_redirect, # 308 +) + +DEFAULT_REDIRECT_LIMIT = 30 +CONTENT_CHUNK_SIZE = 10 * 1024 +ITER_CHUNK_SIZE = 512 + + +class RequestEncodingMixin: + @property + def path_url(self): + """Build the path URL to use.""" + + url = [] + + p = urlsplit(self.url) + + path = p.path + if not path: + path = "/" + + url.append(path) + + query = p.query + if query: + url.append("?") + url.append(query) + + return "".join(url) + + @staticmethod + def _encode_params(data): + """Encode parameters in a piece of data. + + Will successfully encode parameters when passed as a dict or a list of + 2-tuples. Order is retained if data is a list of 2-tuples but arbitrary + if parameters are supplied as a dict. + """ + + if isinstance(data, (str, bytes)): + return data + elif hasattr(data, "read"): + return data + elif hasattr(data, "__iter__"): + result = [] + for k, vs in to_key_val_list(data): + if isinstance(vs, basestring) or not hasattr(vs, "__iter__"): + vs = [vs] + for v in vs: + if v is not None: + result.append( + ( + k.encode("utf-8") if isinstance(k, str) else k, + v.encode("utf-8") if isinstance(v, str) else v, + ) + ) + return urlencode(result, doseq=True) + else: + return data + + @staticmethod + def _encode_files(files, data): + """Build the body for a multipart/form-data request. + + Will successfully encode files when passed as a dict or a list of + tuples. Order is retained if data is a list of tuples but arbitrary + if parameters are supplied as a dict. + The tuples may be 2-tuples (filename, fileobj), 3-tuples (filename, fileobj, contentype) + or 4-tuples (filename, fileobj, contentype, custom_headers). + """ + if not files: + raise ValueError("Files must be provided.") + elif isinstance(data, basestring): + raise ValueError("Data must not be a string.") + + new_fields = [] + fields = to_key_val_list(data or {}) + files = to_key_val_list(files or {}) + + for field, val in fields: + if isinstance(val, basestring) or not hasattr(val, "__iter__"): + val = [val] + for v in val: + if v is not None: + # Don't call str() on bytestrings: in Py3 it all goes wrong. + if not isinstance(v, bytes): + v = str(v) + + new_fields.append( + ( + field.decode("utf-8") + if isinstance(field, bytes) + else field, + v.encode("utf-8") if isinstance(v, str) else v, + ) + ) + + for k, v in files: + # support for explicit filename + ft = None + fh = None + if isinstance(v, (tuple, list)): + if len(v) == 2: + fn, fp = v + elif len(v) == 3: + fn, fp, ft = v + else: + fn, fp, ft, fh = v + else: + fn = guess_filename(v) or k + fp = v + + if isinstance(fp, (str, bytes, bytearray)): + fdata = fp + elif hasattr(fp, "read"): + fdata = fp.read() + elif fp is None: + continue + else: + fdata = fp + + rf = RequestField(name=k, data=fdata, filename=fn, headers=fh) + rf.make_multipart(content_type=ft) + new_fields.append(rf) + + body, content_type = encode_multipart_formdata(new_fields) + + return body, content_type + + +class RequestHooksMixin: + def register_hook(self, event, hook): + """Properly register a hook.""" + + if event not in self.hooks: + raise ValueError(f'Unsupported event specified, with event name "{event}"') + + if isinstance(hook, Callable): + self.hooks[event].append(hook) + elif hasattr(hook, "__iter__"): + self.hooks[event].extend(h for h in hook if isinstance(h, Callable)) + + def deregister_hook(self, event, hook): + """Deregister a previously registered hook. + Returns True if the hook existed, False if not. + """ + + try: + self.hooks[event].remove(hook) + return True + except ValueError: + return False + + +class Request(RequestHooksMixin): + """A user-created :class:`Request ` object. + + Used to prepare a :class:`PreparedRequest `, which is sent to the server. + + :param method: HTTP method to use. + :param url: URL to send. + :param headers: dictionary of headers to send. + :param files: dictionary of {filename: fileobject} files to multipart upload. + :param data: the body to attach to the request. If a dictionary or + list of tuples ``[(key, value)]`` is provided, form-encoding will + take place. + :param json: json for the body to attach to the request (if files or data is not specified). + :param params: URL parameters to append to the URL. If a dictionary or + list of tuples ``[(key, value)]`` is provided, form-encoding will + take place. + :param auth: Auth handler or (user, pass) tuple. + :param cookies: dictionary or CookieJar of cookies to attach to this request. + :param hooks: dictionary of callback hooks, for internal usage. + + Usage:: + + >>> import requests + >>> req = requests.Request('GET', 'https://httpbin.org/get') + >>> req.prepare() + + """ + + def __init__( + self, + method=None, + url=None, + headers=None, + files=None, + data=None, + params=None, + auth=None, + cookies=None, + hooks=None, + json=None, + ): + # Default empty dicts for dict params. + data = [] if data is None else data + files = [] if files is None else files + headers = {} if headers is None else headers + params = {} if params is None else params + hooks = {} if hooks is None else hooks + + self.hooks = default_hooks() + for k, v in list(hooks.items()): + self.register_hook(event=k, hook=v) + + self.method = method + self.url = url + self.headers = headers + self.files = files + self.data = data + self.json = json + self.params = params + self.auth = auth + self.cookies = cookies + + def __repr__(self): + return f"" + + def prepare(self): + """Constructs a :class:`PreparedRequest ` for transmission and returns it.""" + p = PreparedRequest() + p.prepare( + method=self.method, + url=self.url, + headers=self.headers, + files=self.files, + data=self.data, + json=self.json, + params=self.params, + auth=self.auth, + cookies=self.cookies, + hooks=self.hooks, + ) + return p + + +class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): + """The fully mutable :class:`PreparedRequest ` object, + containing the exact bytes that will be sent to the server. + + Instances are generated from a :class:`Request ` object, and + should not be instantiated manually; doing so may produce undesirable + effects. + + Usage:: + + >>> import requests + >>> req = requests.Request('GET', 'https://httpbin.org/get') + >>> r = req.prepare() + >>> r + + + >>> s = requests.Session() + >>> s.send(r) + + """ + + def __init__(self): + #: HTTP verb to send to the server. + self.method = None + #: HTTP URL to send the request to. + self.url = None + #: dictionary of HTTP headers. + self.headers = None + # The `CookieJar` used to create the Cookie header will be stored here + # after prepare_cookies is called + self._cookies = None + #: request body to send to the server. + self.body = None + #: dictionary of callback hooks, for internal usage. + self.hooks = default_hooks() + #: integer denoting starting position of a readable file-like body. + self._body_position = None + + def prepare( + self, + method=None, + url=None, + headers=None, + files=None, + data=None, + params=None, + auth=None, + cookies=None, + hooks=None, + json=None, + ): + """Prepares the entire request with the given parameters.""" + + self.prepare_method(method) + self.prepare_url(url, params) + self.prepare_headers(headers) + self.prepare_cookies(cookies) + self.prepare_body(data, files, json) + self.prepare_auth(auth, url) + + # Note that prepare_auth must be last to enable authentication schemes + # such as OAuth to work on a fully prepared request. + + # This MUST go after prepare_auth. Authenticators could add a hook + self.prepare_hooks(hooks) + + def __repr__(self): + return f"" + + def copy(self): + p = PreparedRequest() + p.method = self.method + p.url = self.url + p.headers = self.headers.copy() if self.headers is not None else None + p._cookies = _copy_cookie_jar(self._cookies) + p.body = self.body + p.hooks = self.hooks + p._body_position = self._body_position + return p + + def prepare_method(self, method): + """Prepares the given HTTP method.""" + self.method = method + if self.method is not None: + self.method = to_native_string(self.method.upper()) + + @staticmethod + def _get_idna_encoded_host(host): + from pip._vendor import idna + + try: + host = idna.encode(host, uts46=True).decode("utf-8") + except idna.IDNAError: + raise UnicodeError + return host + + def prepare_url(self, url, params): + """Prepares the given HTTP URL.""" + #: Accept objects that have string representations. + #: We're unable to blindly call unicode/str functions + #: as this will include the bytestring indicator (b'') + #: on python 3.x. + #: https://github.com/psf/requests/pull/2238 + if isinstance(url, bytes): + url = url.decode("utf8") + else: + url = str(url) + + # Remove leading whitespaces from url + url = url.lstrip() + + # Don't do any URL preparation for non-HTTP schemes like `mailto`, + # `data` etc to work around exceptions from `url_parse`, which + # handles RFC 3986 only. + if ":" in url and not url.lower().startswith("http"): + self.url = url + return + + # Support for unicode domain names and paths. + try: + scheme, auth, host, port, path, query, fragment = parse_url(url) + except LocationParseError as e: + raise InvalidURL(*e.args) + + if not scheme: + raise MissingSchema( + f"Invalid URL {url!r}: No scheme supplied. " + f"Perhaps you meant https://{url}?" + ) + + if not host: + raise InvalidURL(f"Invalid URL {url!r}: No host supplied") + + # In general, we want to try IDNA encoding the hostname if the string contains + # non-ASCII characters. This allows users to automatically get the correct IDNA + # behaviour. For strings containing only ASCII characters, we need to also verify + # it doesn't start with a wildcard (*), before allowing the unencoded hostname. + if not unicode_is_ascii(host): + try: + host = self._get_idna_encoded_host(host) + except UnicodeError: + raise InvalidURL("URL has an invalid label.") + elif host.startswith(("*", ".")): + raise InvalidURL("URL has an invalid label.") + + # Carefully reconstruct the network location + netloc = auth or "" + if netloc: + netloc += "@" + netloc += host + if port: + netloc += f":{port}" + + # Bare domains aren't valid URLs. + if not path: + path = "/" + + if isinstance(params, (str, bytes)): + params = to_native_string(params) + + enc_params = self._encode_params(params) + if enc_params: + if query: + query = f"{query}&{enc_params}" + else: + query = enc_params + + url = requote_uri(urlunparse([scheme, netloc, path, None, query, fragment])) + self.url = url + + def prepare_headers(self, headers): + """Prepares the given HTTP headers.""" + + self.headers = CaseInsensitiveDict() + if headers: + for header in headers.items(): + # Raise exception on invalid header value. + check_header_validity(header) + name, value = header + self.headers[to_native_string(name)] = value + + def prepare_body(self, data, files, json=None): + """Prepares the given HTTP body data.""" + + # Check if file, fo, generator, iterator. + # If not, run through normal process. + + # Nottin' on you. + body = None + content_type = None + + if not data and json is not None: + # urllib3 requires a bytes-like body. Python 2's json.dumps + # provides this natively, but Python 3 gives a Unicode string. + content_type = "application/json" + + try: + body = complexjson.dumps(json, allow_nan=False) + except ValueError as ve: + raise InvalidJSONError(ve, request=self) + + if not isinstance(body, bytes): + body = body.encode("utf-8") + + is_stream = all( + [ + hasattr(data, "__iter__"), + not isinstance(data, (basestring, list, tuple, Mapping)), + ] + ) + + if is_stream: + try: + length = super_len(data) + except (TypeError, AttributeError, UnsupportedOperation): + length = None + + body = data + + if getattr(body, "tell", None) is not None: + # Record the current file position before reading. + # This will allow us to rewind a file in the event + # of a redirect. + try: + self._body_position = body.tell() + except OSError: + # This differentiates from None, allowing us to catch + # a failed `tell()` later when trying to rewind the body + self._body_position = object() + + if files: + raise NotImplementedError( + "Streamed bodies and files are mutually exclusive." + ) + + if length: + self.headers["Content-Length"] = builtin_str(length) + else: + self.headers["Transfer-Encoding"] = "chunked" + else: + # Multi-part file uploads. + if files: + (body, content_type) = self._encode_files(files, data) + else: + if data: + body = self._encode_params(data) + if isinstance(data, basestring) or hasattr(data, "read"): + content_type = None + else: + content_type = "application/x-www-form-urlencoded" + + self.prepare_content_length(body) + + # Add content-type if it wasn't explicitly provided. + if content_type and ("content-type" not in self.headers): + self.headers["Content-Type"] = content_type + + self.body = body + + def prepare_content_length(self, body): + """Prepare Content-Length header based on request method and body""" + if body is not None: + length = super_len(body) + if length: + # If length exists, set it. Otherwise, we fallback + # to Transfer-Encoding: chunked. + self.headers["Content-Length"] = builtin_str(length) + elif ( + self.method not in ("GET", "HEAD") + and self.headers.get("Content-Length") is None + ): + # Set Content-Length to 0 for methods that can have a body + # but don't provide one. (i.e. not GET or HEAD) + self.headers["Content-Length"] = "0" + + def prepare_auth(self, auth, url=""): + """Prepares the given HTTP auth data.""" + + # If no Auth is explicitly provided, extract it from the URL first. + if auth is None: + url_auth = get_auth_from_url(self.url) + auth = url_auth if any(url_auth) else None + + if auth: + if isinstance(auth, tuple) and len(auth) == 2: + # special-case basic HTTP auth + auth = HTTPBasicAuth(*auth) + + # Allow auth to make its changes. + r = auth(self) + + # Update self to reflect the auth changes. + self.__dict__.update(r.__dict__) + + # Recompute Content-Length + self.prepare_content_length(self.body) + + def prepare_cookies(self, cookies): + """Prepares the given HTTP cookie data. + + This function eventually generates a ``Cookie`` header from the + given cookies using cookielib. Due to cookielib's design, the header + will not be regenerated if it already exists, meaning this function + can only be called once for the life of the + :class:`PreparedRequest ` object. Any subsequent calls + to ``prepare_cookies`` will have no actual effect, unless the "Cookie" + header is removed beforehand. + """ + if isinstance(cookies, cookielib.CookieJar): + self._cookies = cookies + else: + self._cookies = cookiejar_from_dict(cookies) + + cookie_header = get_cookie_header(self._cookies, self) + if cookie_header is not None: + self.headers["Cookie"] = cookie_header + + def prepare_hooks(self, hooks): + """Prepares the given hooks.""" + # hooks can be passed as None to the prepare method and to this + # method. To prevent iterating over None, simply use an empty list + # if hooks is False-y + hooks = hooks or [] + for event in hooks: + self.register_hook(event, hooks[event]) + + +class Response: + """The :class:`Response ` object, which contains a + server's response to an HTTP request. + """ + + __attrs__ = [ + "_content", + "status_code", + "headers", + "url", + "history", + "encoding", + "reason", + "cookies", + "elapsed", + "request", + ] + + def __init__(self): + self._content = False + self._content_consumed = False + self._next = None + + #: Integer Code of responded HTTP Status, e.g. 404 or 200. + self.status_code = None + + #: Case-insensitive Dictionary of Response Headers. + #: For example, ``headers['content-encoding']`` will return the + #: value of a ``'Content-Encoding'`` response header. + self.headers = CaseInsensitiveDict() + + #: File-like object representation of response (for advanced usage). + #: Use of ``raw`` requires that ``stream=True`` be set on the request. + #: This requirement does not apply for use internally to Requests. + self.raw = None + + #: Final URL location of Response. + self.url = None + + #: Encoding to decode with when accessing r.text. + self.encoding = None + + #: A list of :class:`Response ` objects from + #: the history of the Request. Any redirect responses will end + #: up here. The list is sorted from the oldest to the most recent request. + self.history = [] + + #: Textual reason of responded HTTP Status, e.g. "Not Found" or "OK". + self.reason = None + + #: A CookieJar of Cookies the server sent back. + self.cookies = cookiejar_from_dict({}) + + #: The amount of time elapsed between sending the request + #: and the arrival of the response (as a timedelta). + #: This property specifically measures the time taken between sending + #: the first byte of the request and finishing parsing the headers. It + #: is therefore unaffected by consuming the response content or the + #: value of the ``stream`` keyword argument. + self.elapsed = datetime.timedelta(0) + + #: The :class:`PreparedRequest ` object to which this + #: is a response. + self.request = None + + def __enter__(self): + return self + + def __exit__(self, *args): + self.close() + + def __getstate__(self): + # Consume everything; accessing the content attribute makes + # sure the content has been fully read. + if not self._content_consumed: + self.content + + return {attr: getattr(self, attr, None) for attr in self.__attrs__} + + def __setstate__(self, state): + for name, value in state.items(): + setattr(self, name, value) + + # pickled objects do not have .raw + setattr(self, "_content_consumed", True) + setattr(self, "raw", None) + + def __repr__(self): + return f"" + + def __bool__(self): + """Returns True if :attr:`status_code` is less than 400. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code, is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + return self.ok + + def __nonzero__(self): + """Returns True if :attr:`status_code` is less than 400. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code, is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + return self.ok + + def __iter__(self): + """Allows you to use a response as an iterator.""" + return self.iter_content(128) + + @property + def ok(self): + """Returns True if :attr:`status_code` is less than 400, False if not. + + This attribute checks if the status code of the response is between + 400 and 600 to see if there was a client error or a server error. If + the status code is between 200 and 400, this will return True. This + is **not** a check to see if the response code is ``200 OK``. + """ + try: + self.raise_for_status() + except HTTPError: + return False + return True + + @property + def is_redirect(self): + """True if this Response is a well-formed HTTP redirect that could have + been processed automatically (by :meth:`Session.resolve_redirects`). + """ + return "location" in self.headers and self.status_code in REDIRECT_STATI + + @property + def is_permanent_redirect(self): + """True if this Response one of the permanent versions of redirect.""" + return "location" in self.headers and self.status_code in ( + codes.moved_permanently, + codes.permanent_redirect, + ) + + @property + def next(self): + """Returns a PreparedRequest for the next request in a redirect chain, if there is one.""" + return self._next + + @property + def apparent_encoding(self): + """The apparent encoding, provided by the charset_normalizer or chardet libraries.""" + if chardet is not None: + return chardet.detect(self.content)["encoding"] + else: + # If no character detection library is available, we'll fall back + # to a standard Python utf-8 str. + return "utf-8" + + def iter_content(self, chunk_size=1, decode_unicode=False): + """Iterates over the response data. When stream=True is set on the + request, this avoids reading the content at once into memory for + large responses. The chunk size is the number of bytes it should + read into memory. This is not necessarily the length of each item + returned as decoding can take place. + + chunk_size must be of type int or None. A value of None will + function differently depending on the value of `stream`. + stream=True will read data as it arrives in whatever size the + chunks are received. If stream=False, data is returned as + a single chunk. + + If decode_unicode is True, content will be decoded using the best + available encoding based on the response. + """ + + def generate(): + # Special case for urllib3. + if hasattr(self.raw, "stream"): + try: + yield from self.raw.stream(chunk_size, decode_content=True) + except ProtocolError as e: + raise ChunkedEncodingError(e) + except DecodeError as e: + raise ContentDecodingError(e) + except ReadTimeoutError as e: + raise ConnectionError(e) + except SSLError as e: + raise RequestsSSLError(e) + else: + # Standard file-like object. + while True: + chunk = self.raw.read(chunk_size) + if not chunk: + break + yield chunk + + self._content_consumed = True + + if self._content_consumed and isinstance(self._content, bool): + raise StreamConsumedError() + elif chunk_size is not None and not isinstance(chunk_size, int): + raise TypeError( + f"chunk_size must be an int, it is instead a {type(chunk_size)}." + ) + # simulate reading small chunks of the content + reused_chunks = iter_slices(self._content, chunk_size) + + stream_chunks = generate() + + chunks = reused_chunks if self._content_consumed else stream_chunks + + if decode_unicode: + chunks = stream_decode_response_unicode(chunks, self) + + return chunks + + def iter_lines( + self, chunk_size=ITER_CHUNK_SIZE, decode_unicode=False, delimiter=None + ): + """Iterates over the response data, one line at a time. When + stream=True is set on the request, this avoids reading the + content at once into memory for large responses. + + .. note:: This method is not reentrant safe. + """ + + pending = None + + for chunk in self.iter_content( + chunk_size=chunk_size, decode_unicode=decode_unicode + ): + if pending is not None: + chunk = pending + chunk + + if delimiter: + lines = chunk.split(delimiter) + else: + lines = chunk.splitlines() + + if lines and lines[-1] and chunk and lines[-1][-1] == chunk[-1]: + pending = lines.pop() + else: + pending = None + + yield from lines + + if pending is not None: + yield pending + + @property + def content(self): + """Content of the response, in bytes.""" + + if self._content is False: + # Read the contents. + if self._content_consumed: + raise RuntimeError("The content for this response was already consumed") + + if self.status_code == 0 or self.raw is None: + self._content = None + else: + self._content = b"".join(self.iter_content(CONTENT_CHUNK_SIZE)) or b"" + + self._content_consumed = True + # don't need to release the connection; that's been handled by urllib3 + # since we exhausted the data. + return self._content + + @property + def text(self): + """Content of the response, in unicode. + + If Response.encoding is None, encoding will be guessed using + ``charset_normalizer`` or ``chardet``. + + The encoding of the response content is determined based solely on HTTP + headers, following RFC 2616 to the letter. If you can take advantage of + non-HTTP knowledge to make a better guess at the encoding, you should + set ``r.encoding`` appropriately before accessing this property. + """ + + # Try charset from content-type + content = None + encoding = self.encoding + + if not self.content: + return "" + + # Fallback to auto-detected encoding. + if self.encoding is None: + encoding = self.apparent_encoding + + # Decode unicode from given encoding. + try: + content = str(self.content, encoding, errors="replace") + except (LookupError, TypeError): + # A LookupError is raised if the encoding was not found which could + # indicate a misspelling or similar mistake. + # + # A TypeError can be raised if encoding is None + # + # So we try blindly encoding. + content = str(self.content, errors="replace") + + return content + + def json(self, **kwargs): + r"""Decodes the JSON response body (if any) as a Python object. + + This may return a dictionary, list, etc. depending on what is in the response. + + :param \*\*kwargs: Optional arguments that ``json.loads`` takes. + :raises requests.exceptions.JSONDecodeError: If the response body does not + contain valid json. + """ + + if not self.encoding and self.content and len(self.content) > 3: + # No encoding set. JSON RFC 4627 section 3 states we should expect + # UTF-8, -16 or -32. Detect which one to use; If the detection or + # decoding fails, fall back to `self.text` (using charset_normalizer to make + # a best guess). + encoding = guess_json_utf(self.content) + if encoding is not None: + try: + return complexjson.loads(self.content.decode(encoding), **kwargs) + except UnicodeDecodeError: + # Wrong UTF codec detected; usually because it's not UTF-8 + # but some other 8-bit codec. This is an RFC violation, + # and the server didn't bother to tell us what codec *was* + # used. + pass + except JSONDecodeError as e: + raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) + + try: + return complexjson.loads(self.text, **kwargs) + except JSONDecodeError as e: + # Catch JSON-related errors and raise as requests.JSONDecodeError + # This aliases json.JSONDecodeError and simplejson.JSONDecodeError + raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) + + @property + def links(self): + """Returns the parsed header links of the response, if any.""" + + header = self.headers.get("link") + + resolved_links = {} + + if header: + links = parse_header_links(header) + + for link in links: + key = link.get("rel") or link.get("url") + resolved_links[key] = link + + return resolved_links + + def raise_for_status(self): + """Raises :class:`HTTPError`, if one occurred.""" + + http_error_msg = "" + if isinstance(self.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. (See PR #3538) + try: + reason = self.reason.decode("utf-8") + except UnicodeDecodeError: + reason = self.reason.decode("iso-8859-1") + else: + reason = self.reason + + if 400 <= self.status_code < 500: + http_error_msg = ( + f"{self.status_code} Client Error: {reason} for url: {self.url}" + ) + + elif 500 <= self.status_code < 600: + http_error_msg = ( + f"{self.status_code} Server Error: {reason} for url: {self.url}" + ) + + if http_error_msg: + raise HTTPError(http_error_msg, response=self) + + def close(self): + """Releases the connection back to the pool. Once this method has been + called the underlying ``raw`` object must not be accessed again. + + *Note: Should not normally need to be called explicitly.* + """ + if not self._content_consumed: + self.raw.close() + + release_conn = getattr(self.raw, "release_conn", None) + if release_conn is not None: + release_conn() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py new file mode 100644 index 0000000..200c382 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py @@ -0,0 +1,25 @@ +import sys + +from .compat import chardet + +# This code exists for backwards compatibility reasons. +# I don't like it either. Just look the other way. :) + +for package in ("urllib3", "idna"): + vendored_package = "pip._vendor." + package + locals()[package] = __import__(vendored_package) + # This traversal is apparently necessary such that the identities are + # preserved (requests.packages.urllib3.* is urllib3.*) + for mod in list(sys.modules): + if mod == vendored_package or mod.startswith(vendored_package + '.'): + unprefixed_mod = mod[len("pip._vendor."):] + sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] + +if chardet is not None: + target = chardet.__name__ + for mod in list(sys.modules): + if mod == target or mod.startswith(f"{target}."): + imported_mod = sys.modules[mod] + sys.modules[f"requests.packages.{mod}"] = imported_mod + mod = mod.replace(target, "chardet") + sys.modules[f"requests.packages.{mod}"] = imported_mod diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py new file mode 100644 index 0000000..731550d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py @@ -0,0 +1,831 @@ +""" +requests.sessions +~~~~~~~~~~~~~~~~~ + +This module provides a Session object to manage and persist settings across +requests (cookies, auth, proxies). +""" +import os +import sys +import time +from collections import OrderedDict +from datetime import timedelta + +from ._internal_utils import to_native_string +from .adapters import HTTPAdapter +from .auth import _basic_auth_str +from .compat import Mapping, cookielib, urljoin, urlparse +from .cookies import ( + RequestsCookieJar, + cookiejar_from_dict, + extract_cookies_to_jar, + merge_cookies, +) +from .exceptions import ( + ChunkedEncodingError, + ContentDecodingError, + InvalidSchema, + TooManyRedirects, +) +from .hooks import default_hooks, dispatch_hook + +# formerly defined here, reexposed here for backward compatibility +from .models import ( # noqa: F401 + DEFAULT_REDIRECT_LIMIT, + REDIRECT_STATI, + PreparedRequest, + Request, +) +from .status_codes import codes +from .structures import CaseInsensitiveDict +from .utils import ( # noqa: F401 + DEFAULT_PORTS, + default_headers, + get_auth_from_url, + get_environ_proxies, + get_netrc_auth, + requote_uri, + resolve_proxies, + rewind_body, + should_bypass_proxies, + to_key_val_list, +) + +# Preferred clock, based on which one is more accurate on a given system. +if sys.platform == "win32": + preferred_clock = time.perf_counter +else: + preferred_clock = time.time + + +def merge_setting(request_setting, session_setting, dict_class=OrderedDict): + """Determines appropriate setting for a given request, taking into account + the explicit setting on that request, and the setting in the session. If a + setting is a dictionary, they will be merged together using `dict_class` + """ + + if session_setting is None: + return request_setting + + if request_setting is None: + return session_setting + + # Bypass if not a dictionary (e.g. verify) + if not ( + isinstance(session_setting, Mapping) and isinstance(request_setting, Mapping) + ): + return request_setting + + merged_setting = dict_class(to_key_val_list(session_setting)) + merged_setting.update(to_key_val_list(request_setting)) + + # Remove keys that are set to None. Extract keys first to avoid altering + # the dictionary during iteration. + none_keys = [k for (k, v) in merged_setting.items() if v is None] + for key in none_keys: + del merged_setting[key] + + return merged_setting + + +def merge_hooks(request_hooks, session_hooks, dict_class=OrderedDict): + """Properly merges both requests and session hooks. + + This is necessary because when request_hooks == {'response': []}, the + merge breaks Session hooks entirely. + """ + if session_hooks is None or session_hooks.get("response") == []: + return request_hooks + + if request_hooks is None or request_hooks.get("response") == []: + return session_hooks + + return merge_setting(request_hooks, session_hooks, dict_class) + + +class SessionRedirectMixin: + def get_redirect_target(self, resp): + """Receives a Response. Returns a redirect URI or ``None``""" + # Due to the nature of how requests processes redirects this method will + # be called at least once upon the original response and at least twice + # on each subsequent redirect response (if any). + # If a custom mixin is used to handle this logic, it may be advantageous + # to cache the redirect location onto the response object as a private + # attribute. + if resp.is_redirect: + location = resp.headers["location"] + # Currently the underlying http module on py3 decode headers + # in latin1, but empirical evidence suggests that latin1 is very + # rarely used with non-ASCII characters in HTTP headers. + # It is more likely to get UTF8 header rather than latin1. + # This causes incorrect handling of UTF8 encoded location headers. + # To solve this, we re-encode the location in latin1. + location = location.encode("latin1") + return to_native_string(location, "utf8") + return None + + def should_strip_auth(self, old_url, new_url): + """Decide whether Authorization header should be removed when redirecting""" + old_parsed = urlparse(old_url) + new_parsed = urlparse(new_url) + if old_parsed.hostname != new_parsed.hostname: + return True + # Special case: allow http -> https redirect when using the standard + # ports. This isn't specified by RFC 7235, but is kept to avoid + # breaking backwards compatibility with older versions of requests + # that allowed any redirects on the same host. + if ( + old_parsed.scheme == "http" + and old_parsed.port in (80, None) + and new_parsed.scheme == "https" + and new_parsed.port in (443, None) + ): + return False + + # Handle default port usage corresponding to scheme. + changed_port = old_parsed.port != new_parsed.port + changed_scheme = old_parsed.scheme != new_parsed.scheme + default_port = (DEFAULT_PORTS.get(old_parsed.scheme, None), None) + if ( + not changed_scheme + and old_parsed.port in default_port + and new_parsed.port in default_port + ): + return False + + # Standard case: root URI must match + return changed_port or changed_scheme + + def resolve_redirects( + self, + resp, + req, + stream=False, + timeout=None, + verify=True, + cert=None, + proxies=None, + yield_requests=False, + **adapter_kwargs, + ): + """Receives a Response. Returns a generator of Responses or Requests.""" + + hist = [] # keep track of history + + url = self.get_redirect_target(resp) + previous_fragment = urlparse(req.url).fragment + while url: + prepared_request = req.copy() + + # Update history and keep track of redirects. + # resp.history must ignore the original request in this loop + hist.append(resp) + resp.history = hist[1:] + + try: + resp.content # Consume socket so it can be released + except (ChunkedEncodingError, ContentDecodingError, RuntimeError): + resp.raw.read(decode_content=False) + + if len(resp.history) >= self.max_redirects: + raise TooManyRedirects( + f"Exceeded {self.max_redirects} redirects.", response=resp + ) + + # Release the connection back into the pool. + resp.close() + + # Handle redirection without scheme (see: RFC 1808 Section 4) + if url.startswith("//"): + parsed_rurl = urlparse(resp.url) + url = ":".join([to_native_string(parsed_rurl.scheme), url]) + + # Normalize url case and attach previous fragment if needed (RFC 7231 7.1.2) + parsed = urlparse(url) + if parsed.fragment == "" and previous_fragment: + parsed = parsed._replace(fragment=previous_fragment) + elif parsed.fragment: + previous_fragment = parsed.fragment + url = parsed.geturl() + + # Facilitate relative 'location' headers, as allowed by RFC 7231. + # (e.g. '/path/to/resource' instead of 'http://domain.tld/path/to/resource') + # Compliant with RFC3986, we percent encode the url. + if not parsed.netloc: + url = urljoin(resp.url, requote_uri(url)) + else: + url = requote_uri(url) + + prepared_request.url = to_native_string(url) + + self.rebuild_method(prepared_request, resp) + + # https://github.com/psf/requests/issues/1084 + if resp.status_code not in ( + codes.temporary_redirect, + codes.permanent_redirect, + ): + # https://github.com/psf/requests/issues/3490 + purged_headers = ("Content-Length", "Content-Type", "Transfer-Encoding") + for header in purged_headers: + prepared_request.headers.pop(header, None) + prepared_request.body = None + + headers = prepared_request.headers + headers.pop("Cookie", None) + + # Extract any cookies sent on the response to the cookiejar + # in the new request. Because we've mutated our copied prepared + # request, use the old one that we haven't yet touched. + extract_cookies_to_jar(prepared_request._cookies, req, resp.raw) + merge_cookies(prepared_request._cookies, self.cookies) + prepared_request.prepare_cookies(prepared_request._cookies) + + # Rebuild auth and proxy information. + proxies = self.rebuild_proxies(prepared_request, proxies) + self.rebuild_auth(prepared_request, resp) + + # A failed tell() sets `_body_position` to `object()`. This non-None + # value ensures `rewindable` will be True, allowing us to raise an + # UnrewindableBodyError, instead of hanging the connection. + rewindable = prepared_request._body_position is not None and ( + "Content-Length" in headers or "Transfer-Encoding" in headers + ) + + # Attempt to rewind consumed file-like object. + if rewindable: + rewind_body(prepared_request) + + # Override the original request. + req = prepared_request + + if yield_requests: + yield req + else: + resp = self.send( + req, + stream=stream, + timeout=timeout, + verify=verify, + cert=cert, + proxies=proxies, + allow_redirects=False, + **adapter_kwargs, + ) + + extract_cookies_to_jar(self.cookies, prepared_request, resp.raw) + + # extract redirect url, if any, for the next loop + url = self.get_redirect_target(resp) + yield resp + + def rebuild_auth(self, prepared_request, response): + """When being redirected we may want to strip authentication from the + request to avoid leaking credentials. This method intelligently removes + and reapplies authentication where possible to avoid credential loss. + """ + headers = prepared_request.headers + url = prepared_request.url + + if "Authorization" in headers and self.should_strip_auth( + response.request.url, url + ): + # If we get redirected to a new host, we should strip out any + # authentication headers. + del headers["Authorization"] + + # .netrc might have more auth for us on our new host. + new_auth = get_netrc_auth(url) if self.trust_env else None + if new_auth is not None: + prepared_request.prepare_auth(new_auth) + + def rebuild_proxies(self, prepared_request, proxies): + """This method re-evaluates the proxy configuration by considering the + environment variables. If we are redirected to a URL covered by + NO_PROXY, we strip the proxy configuration. Otherwise, we set missing + proxy keys for this URL (in case they were stripped by a previous + redirect). + + This method also replaces the Proxy-Authorization header where + necessary. + + :rtype: dict + """ + headers = prepared_request.headers + scheme = urlparse(prepared_request.url).scheme + new_proxies = resolve_proxies(prepared_request, proxies, self.trust_env) + + if "Proxy-Authorization" in headers: + del headers["Proxy-Authorization"] + + try: + username, password = get_auth_from_url(new_proxies[scheme]) + except KeyError: + username, password = None, None + + # urllib3 handles proxy authorization for us in the standard adapter. + # Avoid appending this to TLS tunneled requests where it may be leaked. + if not scheme.startswith("https") and username and password: + headers["Proxy-Authorization"] = _basic_auth_str(username, password) + + return new_proxies + + def rebuild_method(self, prepared_request, response): + """When being redirected we may want to change the method of the request + based on certain specs or browser behavior. + """ + method = prepared_request.method + + # https://tools.ietf.org/html/rfc7231#section-6.4.4 + if response.status_code == codes.see_other and method != "HEAD": + method = "GET" + + # Do what the browsers do, despite standards... + # First, turn 302s into GETs. + if response.status_code == codes.found and method != "HEAD": + method = "GET" + + # Second, if a POST is responded to with a 301, turn it into a GET. + # This bizarre behaviour is explained in Issue 1704. + if response.status_code == codes.moved and method == "POST": + method = "GET" + + prepared_request.method = method + + +class Session(SessionRedirectMixin): + """A Requests session. + + Provides cookie persistence, connection-pooling, and configuration. + + Basic Usage:: + + >>> import requests + >>> s = requests.Session() + >>> s.get('https://httpbin.org/get') + + + Or as a context manager:: + + >>> with requests.Session() as s: + ... s.get('https://httpbin.org/get') + + """ + + __attrs__ = [ + "headers", + "cookies", + "auth", + "proxies", + "hooks", + "params", + "verify", + "cert", + "adapters", + "stream", + "trust_env", + "max_redirects", + ] + + def __init__(self): + #: A case-insensitive dictionary of headers to be sent on each + #: :class:`Request ` sent from this + #: :class:`Session `. + self.headers = default_headers() + + #: Default Authentication tuple or object to attach to + #: :class:`Request `. + self.auth = None + + #: Dictionary mapping protocol or protocol and host to the URL of the proxy + #: (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) to + #: be used on each :class:`Request `. + self.proxies = {} + + #: Event-handling hooks. + self.hooks = default_hooks() + + #: Dictionary of querystring data to attach to each + #: :class:`Request `. The dictionary values may be lists for + #: representing multivalued query parameters. + self.params = {} + + #: Stream response content default. + self.stream = False + + #: SSL Verification default. + #: Defaults to `True`, requiring requests to verify the TLS certificate at the + #: remote end. + #: If verify is set to `False`, requests will accept any TLS certificate + #: presented by the server, and will ignore hostname mismatches and/or + #: expired certificates, which will make your application vulnerable to + #: man-in-the-middle (MitM) attacks. + #: Only set this to `False` for testing. + self.verify = True + + #: SSL client certificate default, if String, path to ssl client + #: cert file (.pem). If Tuple, ('cert', 'key') pair. + self.cert = None + + #: Maximum number of redirects allowed. If the request exceeds this + #: limit, a :class:`TooManyRedirects` exception is raised. + #: This defaults to requests.models.DEFAULT_REDIRECT_LIMIT, which is + #: 30. + self.max_redirects = DEFAULT_REDIRECT_LIMIT + + #: Trust environment settings for proxy configuration, default + #: authentication and similar. + self.trust_env = True + + #: A CookieJar containing all currently outstanding cookies set on this + #: session. By default it is a + #: :class:`RequestsCookieJar `, but + #: may be any other ``cookielib.CookieJar`` compatible object. + self.cookies = cookiejar_from_dict({}) + + # Default connection adapters. + self.adapters = OrderedDict() + self.mount("https://", HTTPAdapter()) + self.mount("http://", HTTPAdapter()) + + def __enter__(self): + return self + + def __exit__(self, *args): + self.close() + + def prepare_request(self, request): + """Constructs a :class:`PreparedRequest ` for + transmission and returns it. The :class:`PreparedRequest` has settings + merged from the :class:`Request ` instance and those of the + :class:`Session`. + + :param request: :class:`Request` instance to prepare with this + session's settings. + :rtype: requests.PreparedRequest + """ + cookies = request.cookies or {} + + # Bootstrap CookieJar. + if not isinstance(cookies, cookielib.CookieJar): + cookies = cookiejar_from_dict(cookies) + + # Merge with session cookies + merged_cookies = merge_cookies( + merge_cookies(RequestsCookieJar(), self.cookies), cookies + ) + + # Set environment's basic authentication if not explicitly set. + auth = request.auth + if self.trust_env and not auth and not self.auth: + auth = get_netrc_auth(request.url) + + p = PreparedRequest() + p.prepare( + method=request.method.upper(), + url=request.url, + files=request.files, + data=request.data, + json=request.json, + headers=merge_setting( + request.headers, self.headers, dict_class=CaseInsensitiveDict + ), + params=merge_setting(request.params, self.params), + auth=merge_setting(auth, self.auth), + cookies=merged_cookies, + hooks=merge_hooks(request.hooks, self.hooks), + ) + return p + + def request( + self, + method, + url, + params=None, + data=None, + headers=None, + cookies=None, + files=None, + auth=None, + timeout=None, + allow_redirects=True, + proxies=None, + hooks=None, + stream=None, + verify=None, + cert=None, + json=None, + ): + """Constructs a :class:`Request `, prepares it and sends it. + Returns :class:`Response ` object. + + :param method: method for the new :class:`Request` object. + :param url: URL for the new :class:`Request` object. + :param params: (optional) Dictionary or bytes to be sent in the query + string for the :class:`Request`. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) json to send in the body of the + :class:`Request`. + :param headers: (optional) Dictionary of HTTP Headers to send with the + :class:`Request`. + :param cookies: (optional) Dict or CookieJar object to send with the + :class:`Request`. + :param files: (optional) Dictionary of ``'filename': file-like-objects`` + for multipart encoding upload. + :param auth: (optional) Auth tuple or callable to enable + Basic/Digest/Custom HTTP Auth. + :param timeout: (optional) How many seconds to wait for the server to send + data before giving up, as a float, or a :ref:`(connect timeout, + read timeout) ` tuple. + :type timeout: float or tuple + :param allow_redirects: (optional) Set to True by default. + :type allow_redirects: bool + :param proxies: (optional) Dictionary mapping protocol or protocol and + hostname to the URL of the proxy. + :param hooks: (optional) Dictionary mapping hook name to one event or + list of events, event must be callable. + :param stream: (optional) whether to immediately download the response + content. Defaults to ``False``. + :param verify: (optional) Either a boolean, in which case it controls whether we verify + the server's TLS certificate, or a string, in which case it must be a path + to a CA bundle to use. Defaults to ``True``. When set to + ``False``, requests will accept any TLS certificate presented by + the server, and will ignore hostname mismatches and/or expired + certificates, which will make your application vulnerable to + man-in-the-middle (MitM) attacks. Setting verify to ``False`` + may be useful during local development or testing. + :param cert: (optional) if String, path to ssl client cert file (.pem). + If Tuple, ('cert', 'key') pair. + :rtype: requests.Response + """ + # Create the Request. + req = Request( + method=method.upper(), + url=url, + headers=headers, + files=files, + data=data or {}, + json=json, + params=params or {}, + auth=auth, + cookies=cookies, + hooks=hooks, + ) + prep = self.prepare_request(req) + + proxies = proxies or {} + + settings = self.merge_environment_settings( + prep.url, proxies, stream, verify, cert + ) + + # Send the request. + send_kwargs = { + "timeout": timeout, + "allow_redirects": allow_redirects, + } + send_kwargs.update(settings) + resp = self.send(prep, **send_kwargs) + + return resp + + def get(self, url, **kwargs): + r"""Sends a GET request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", True) + return self.request("GET", url, **kwargs) + + def options(self, url, **kwargs): + r"""Sends a OPTIONS request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", True) + return self.request("OPTIONS", url, **kwargs) + + def head(self, url, **kwargs): + r"""Sends a HEAD request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + kwargs.setdefault("allow_redirects", False) + return self.request("HEAD", url, **kwargs) + + def post(self, url, data=None, json=None, **kwargs): + r"""Sends a POST request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param json: (optional) json to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("POST", url, data=data, json=json, **kwargs) + + def put(self, url, data=None, **kwargs): + r"""Sends a PUT request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("PUT", url, data=data, **kwargs) + + def patch(self, url, data=None, **kwargs): + r"""Sends a PATCH request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param data: (optional) Dictionary, list of tuples, bytes, or file-like + object to send in the body of the :class:`Request`. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("PATCH", url, data=data, **kwargs) + + def delete(self, url, **kwargs): + r"""Sends a DELETE request. Returns :class:`Response` object. + + :param url: URL for the new :class:`Request` object. + :param \*\*kwargs: Optional arguments that ``request`` takes. + :rtype: requests.Response + """ + + return self.request("DELETE", url, **kwargs) + + def send(self, request, **kwargs): + """Send a given PreparedRequest. + + :rtype: requests.Response + """ + # Set defaults that the hooks can utilize to ensure they always have + # the correct parameters to reproduce the previous request. + kwargs.setdefault("stream", self.stream) + kwargs.setdefault("verify", self.verify) + kwargs.setdefault("cert", self.cert) + if "proxies" not in kwargs: + kwargs["proxies"] = resolve_proxies(request, self.proxies, self.trust_env) + + # It's possible that users might accidentally send a Request object. + # Guard against that specific failure case. + if isinstance(request, Request): + raise ValueError("You can only send PreparedRequests.") + + # Set up variables needed for resolve_redirects and dispatching of hooks + allow_redirects = kwargs.pop("allow_redirects", True) + stream = kwargs.get("stream") + hooks = request.hooks + + # Get the appropriate adapter to use + adapter = self.get_adapter(url=request.url) + + # Start time (approximately) of the request + start = preferred_clock() + + # Send the request + r = adapter.send(request, **kwargs) + + # Total elapsed time of the request (approximately) + elapsed = preferred_clock() - start + r.elapsed = timedelta(seconds=elapsed) + + # Response manipulation hooks + r = dispatch_hook("response", hooks, r, **kwargs) + + # Persist cookies + if r.history: + # If the hooks create history then we want those cookies too + for resp in r.history: + extract_cookies_to_jar(self.cookies, resp.request, resp.raw) + + extract_cookies_to_jar(self.cookies, request, r.raw) + + # Resolve redirects if allowed. + if allow_redirects: + # Redirect resolving generator. + gen = self.resolve_redirects(r, request, **kwargs) + history = [resp for resp in gen] + else: + history = [] + + # Shuffle things around if there's history. + if history: + # Insert the first (original) request at the start + history.insert(0, r) + # Get the last request made + r = history.pop() + r.history = history + + # If redirects aren't being followed, store the response on the Request for Response.next(). + if not allow_redirects: + try: + r._next = next( + self.resolve_redirects(r, request, yield_requests=True, **kwargs) + ) + except StopIteration: + pass + + if not stream: + r.content + + return r + + def merge_environment_settings(self, url, proxies, stream, verify, cert): + """ + Check the environment and merge it with some settings. + + :rtype: dict + """ + # Gather clues from the surrounding environment. + if self.trust_env: + # Set environment's proxies. + no_proxy = proxies.get("no_proxy") if proxies is not None else None + env_proxies = get_environ_proxies(url, no_proxy=no_proxy) + for k, v in env_proxies.items(): + proxies.setdefault(k, v) + + # Look for requests environment configuration + # and be compatible with cURL. + if verify is True or verify is None: + verify = ( + os.environ.get("REQUESTS_CA_BUNDLE") + or os.environ.get("CURL_CA_BUNDLE") + or verify + ) + + # Merge all the kwargs. + proxies = merge_setting(proxies, self.proxies) + stream = merge_setting(stream, self.stream) + verify = merge_setting(verify, self.verify) + cert = merge_setting(cert, self.cert) + + return {"proxies": proxies, "stream": stream, "verify": verify, "cert": cert} + + def get_adapter(self, url): + """ + Returns the appropriate connection adapter for the given URL. + + :rtype: requests.adapters.BaseAdapter + """ + for prefix, adapter in self.adapters.items(): + if url.lower().startswith(prefix.lower()): + return adapter + + # Nothing matches :-/ + raise InvalidSchema(f"No connection adapters were found for {url!r}") + + def close(self): + """Closes all adapters and as such the session""" + for v in self.adapters.values(): + v.close() + + def mount(self, prefix, adapter): + """Registers a connection adapter to a prefix. + + Adapters are sorted in descending order by prefix length. + """ + self.adapters[prefix] = adapter + keys_to_move = [k for k in self.adapters if len(k) < len(prefix)] + + for key in keys_to_move: + self.adapters[key] = self.adapters.pop(key) + + def __getstate__(self): + state = {attr: getattr(self, attr, None) for attr in self.__attrs__} + return state + + def __setstate__(self, state): + for attr, value in state.items(): + setattr(self, attr, value) + + +def session(): + """ + Returns a :class:`Session` for context-management. + + .. deprecated:: 1.0.0 + + This method has been deprecated since version 1.0.0 and is only kept for + backwards compatibility. New code should use :class:`~requests.sessions.Session` + to create a session. This may be removed at a future date. + + :rtype: Session + """ + return Session() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py new file mode 100644 index 0000000..c7945a2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py @@ -0,0 +1,128 @@ +r""" +The ``codes`` object defines a mapping from common names for HTTP statuses +to their numerical codes, accessible either as attributes or as dictionary +items. + +Example:: + + >>> import requests + >>> requests.codes['temporary_redirect'] + 307 + >>> requests.codes.teapot + 418 + >>> requests.codes['\o/'] + 200 + +Some codes have multiple names, and both upper- and lower-case versions of +the names are allowed. For example, ``codes.ok``, ``codes.OK``, and +``codes.okay`` all correspond to the HTTP status code 200. +""" + +from .structures import LookupDict + +_codes = { + # Informational. + 100: ("continue",), + 101: ("switching_protocols",), + 102: ("processing", "early-hints"), + 103: ("checkpoint",), + 122: ("uri_too_long", "request_uri_too_long"), + 200: ("ok", "okay", "all_ok", "all_okay", "all_good", "\\o/", "✓"), + 201: ("created",), + 202: ("accepted",), + 203: ("non_authoritative_info", "non_authoritative_information"), + 204: ("no_content",), + 205: ("reset_content", "reset"), + 206: ("partial_content", "partial"), + 207: ("multi_status", "multiple_status", "multi_stati", "multiple_stati"), + 208: ("already_reported",), + 226: ("im_used",), + # Redirection. + 300: ("multiple_choices",), + 301: ("moved_permanently", "moved", "\\o-"), + 302: ("found",), + 303: ("see_other", "other"), + 304: ("not_modified",), + 305: ("use_proxy",), + 306: ("switch_proxy",), + 307: ("temporary_redirect", "temporary_moved", "temporary"), + 308: ( + "permanent_redirect", + "resume_incomplete", + "resume", + ), # "resume" and "resume_incomplete" to be removed in 3.0 + # Client Error. + 400: ("bad_request", "bad"), + 401: ("unauthorized",), + 402: ("payment_required", "payment"), + 403: ("forbidden",), + 404: ("not_found", "-o-"), + 405: ("method_not_allowed", "not_allowed"), + 406: ("not_acceptable",), + 407: ("proxy_authentication_required", "proxy_auth", "proxy_authentication"), + 408: ("request_timeout", "timeout"), + 409: ("conflict",), + 410: ("gone",), + 411: ("length_required",), + 412: ("precondition_failed", "precondition"), + 413: ("request_entity_too_large", "content_too_large"), + 414: ("request_uri_too_large", "uri_too_long"), + 415: ("unsupported_media_type", "unsupported_media", "media_type"), + 416: ( + "requested_range_not_satisfiable", + "requested_range", + "range_not_satisfiable", + ), + 417: ("expectation_failed",), + 418: ("im_a_teapot", "teapot", "i_am_a_teapot"), + 421: ("misdirected_request",), + 422: ("unprocessable_entity", "unprocessable", "unprocessable_content"), + 423: ("locked",), + 424: ("failed_dependency", "dependency"), + 425: ("unordered_collection", "unordered", "too_early"), + 426: ("upgrade_required", "upgrade"), + 428: ("precondition_required", "precondition"), + 429: ("too_many_requests", "too_many"), + 431: ("header_fields_too_large", "fields_too_large"), + 444: ("no_response", "none"), + 449: ("retry_with", "retry"), + 450: ("blocked_by_windows_parental_controls", "parental_controls"), + 451: ("unavailable_for_legal_reasons", "legal_reasons"), + 499: ("client_closed_request",), + # Server Error. + 500: ("internal_server_error", "server_error", "/o\\", "✗"), + 501: ("not_implemented",), + 502: ("bad_gateway",), + 503: ("service_unavailable", "unavailable"), + 504: ("gateway_timeout",), + 505: ("http_version_not_supported", "http_version"), + 506: ("variant_also_negotiates",), + 507: ("insufficient_storage",), + 509: ("bandwidth_limit_exceeded", "bandwidth"), + 510: ("not_extended",), + 511: ("network_authentication_required", "network_auth", "network_authentication"), +} + +codes = LookupDict(name="status_codes") + + +def _init(): + for code, titles in _codes.items(): + for title in titles: + setattr(codes, title, code) + if not title.startswith(("\\", "/")): + setattr(codes, title.upper(), code) + + def doc(code): + names = ", ".join(f"``{n}``" for n in _codes[code]) + return "* %d: %s" % (code, names) + + global __doc__ + __doc__ = ( + __doc__ + "\n" + "\n".join(doc(code) for code in sorted(_codes)) + if __doc__ is not None + else None + ) + + +_init() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py new file mode 100644 index 0000000..188e13e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py @@ -0,0 +1,99 @@ +""" +requests.structures +~~~~~~~~~~~~~~~~~~~ + +Data structures that power Requests. +""" + +from collections import OrderedDict + +from .compat import Mapping, MutableMapping + + +class CaseInsensitiveDict(MutableMapping): + """A case-insensitive ``dict``-like object. + + Implements all methods and operations of + ``MutableMapping`` as well as dict's ``copy``. Also + provides ``lower_items``. + + All keys are expected to be strings. The structure remembers the + case of the last key to be set, and ``iter(instance)``, + ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()`` + will contain case-sensitive keys. However, querying and contains + testing is case insensitive:: + + cid = CaseInsensitiveDict() + cid['Accept'] = 'application/json' + cid['aCCEPT'] == 'application/json' # True + list(cid) == ['Accept'] # True + + For example, ``headers['content-encoding']`` will return the + value of a ``'Content-Encoding'`` response header, regardless + of how the header name was originally stored. + + If the constructor, ``.update``, or equality comparison + operations are given keys that have equal ``.lower()``s, the + behavior is undefined. + """ + + def __init__(self, data=None, **kwargs): + self._store = OrderedDict() + if data is None: + data = {} + self.update(data, **kwargs) + + def __setitem__(self, key, value): + # Use the lowercased key for lookups, but store the actual + # key alongside the value. + self._store[key.lower()] = (key, value) + + def __getitem__(self, key): + return self._store[key.lower()][1] + + def __delitem__(self, key): + del self._store[key.lower()] + + def __iter__(self): + return (casedkey for casedkey, mappedvalue in self._store.values()) + + def __len__(self): + return len(self._store) + + def lower_items(self): + """Like iteritems(), but with all lowercase keys.""" + return ((lowerkey, keyval[1]) for (lowerkey, keyval) in self._store.items()) + + def __eq__(self, other): + if isinstance(other, Mapping): + other = CaseInsensitiveDict(other) + else: + return NotImplemented + # Compare insensitively + return dict(self.lower_items()) == dict(other.lower_items()) + + # Copy is required + def copy(self): + return CaseInsensitiveDict(self._store.values()) + + def __repr__(self): + return str(dict(self.items())) + + +class LookupDict(dict): + """Dictionary lookup object.""" + + def __init__(self, name=None): + self.name = name + super().__init__() + + def __repr__(self): + return f"" + + def __getitem__(self, key): + # We allow fall-through here, so values default to None + + return self.__dict__.get(key, None) + + def get(self, key, default=None): + return self.__dict__.get(key, default) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py new file mode 100644 index 0000000..e8ea5ad --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py @@ -0,0 +1,1086 @@ +""" +requests.utils +~~~~~~~~~~~~~~ + +This module provides utility functions that are used within Requests +that are also useful for external consumption. +""" + +import codecs +import contextlib +import io +import os +import re +import socket +import struct +import sys +import tempfile +import warnings +import zipfile +from collections import OrderedDict + +from pip._vendor.urllib3.util import make_headers, parse_url + +from . import certs +from .__version__ import __version__ + +# to_native_string is unused here, but imported here for backwards compatibility +from ._internal_utils import ( # noqa: F401 + _HEADER_VALIDATORS_BYTE, + _HEADER_VALIDATORS_STR, + HEADER_VALIDATORS, + to_native_string, +) +from .compat import ( + Mapping, + basestring, + bytes, + getproxies, + getproxies_environment, + integer_types, + is_urllib3_1, +) +from .compat import parse_http_list as _parse_list_header +from .compat import ( + proxy_bypass, + proxy_bypass_environment, + quote, + str, + unquote, + urlparse, + urlunparse, +) +from .cookies import cookiejar_from_dict +from .exceptions import ( + FileModeWarning, + InvalidHeader, + InvalidURL, + UnrewindableBodyError, +) +from .structures import CaseInsensitiveDict + +NETRC_FILES = (".netrc", "_netrc") + +DEFAULT_CA_BUNDLE_PATH = certs.where() + +DEFAULT_PORTS = {"http": 80, "https": 443} + +# Ensure that ', ' is used to preserve previous delimiter behavior. +DEFAULT_ACCEPT_ENCODING = ", ".join( + re.split(r",\s*", make_headers(accept_encoding=True)["accept-encoding"]) +) + + +if sys.platform == "win32": + # provide a proxy_bypass version on Windows without DNS lookups + + def proxy_bypass_registry(host): + try: + import winreg + except ImportError: + return False + + try: + internetSettings = winreg.OpenKey( + winreg.HKEY_CURRENT_USER, + r"Software\Microsoft\Windows\CurrentVersion\Internet Settings", + ) + # ProxyEnable could be REG_SZ or REG_DWORD, normalizing it + proxyEnable = int(winreg.QueryValueEx(internetSettings, "ProxyEnable")[0]) + # ProxyOverride is almost always a string + proxyOverride = winreg.QueryValueEx(internetSettings, "ProxyOverride")[0] + except (OSError, ValueError): + return False + if not proxyEnable or not proxyOverride: + return False + + # make a check value list from the registry entry: replace the + # '' string by the localhost entry and the corresponding + # canonical entry. + proxyOverride = proxyOverride.split(";") + # filter out empty strings to avoid re.match return true in the following code. + proxyOverride = filter(None, proxyOverride) + # now check if we match one of the registry values. + for test in proxyOverride: + if test == "": + if "." not in host: + return True + test = test.replace(".", r"\.") # mask dots + test = test.replace("*", r".*") # change glob sequence + test = test.replace("?", r".") # change glob char + if re.match(test, host, re.I): + return True + return False + + def proxy_bypass(host): # noqa + """Return True, if the host should be bypassed. + + Checks proxy settings gathered from the environment, if specified, + or the registry. + """ + if getproxies_environment(): + return proxy_bypass_environment(host) + else: + return proxy_bypass_registry(host) + + +def dict_to_sequence(d): + """Returns an internal sequence dictionary update.""" + + if hasattr(d, "items"): + d = d.items() + + return d + + +def super_len(o): + total_length = None + current_position = 0 + + if not is_urllib3_1 and isinstance(o, str): + # urllib3 2.x+ treats all strings as utf-8 instead + # of latin-1 (iso-8859-1) like http.client. + o = o.encode("utf-8") + + if hasattr(o, "__len__"): + total_length = len(o) + + elif hasattr(o, "len"): + total_length = o.len + + elif hasattr(o, "fileno"): + try: + fileno = o.fileno() + except (io.UnsupportedOperation, AttributeError): + # AttributeError is a surprising exception, seeing as how we've just checked + # that `hasattr(o, 'fileno')`. It happens for objects obtained via + # `Tarfile.extractfile()`, per issue 5229. + pass + else: + total_length = os.fstat(fileno).st_size + + # Having used fstat to determine the file length, we need to + # confirm that this file was opened up in binary mode. + if "b" not in o.mode: + warnings.warn( + ( + "Requests has determined the content-length for this " + "request using the binary size of the file: however, the " + "file has been opened in text mode (i.e. without the 'b' " + "flag in the mode). This may lead to an incorrect " + "content-length. In Requests 3.0, support will be removed " + "for files in text mode." + ), + FileModeWarning, + ) + + if hasattr(o, "tell"): + try: + current_position = o.tell() + except OSError: + # This can happen in some weird situations, such as when the file + # is actually a special file descriptor like stdin. In this + # instance, we don't know what the length is, so set it to zero and + # let requests chunk it instead. + if total_length is not None: + current_position = total_length + else: + if hasattr(o, "seek") and total_length is None: + # StringIO and BytesIO have seek but no usable fileno + try: + # seek to end of file + o.seek(0, 2) + total_length = o.tell() + + # seek back to current position to support + # partially read file-like objects + o.seek(current_position or 0) + except OSError: + total_length = 0 + + if total_length is None: + total_length = 0 + + return max(0, total_length - current_position) + + +def get_netrc_auth(url, raise_errors=False): + """Returns the Requests tuple auth for a given url from netrc.""" + + netrc_file = os.environ.get("NETRC") + if netrc_file is not None: + netrc_locations = (netrc_file,) + else: + netrc_locations = (f"~/{f}" for f in NETRC_FILES) + + try: + from netrc import NetrcParseError, netrc + + netrc_path = None + + for f in netrc_locations: + loc = os.path.expanduser(f) + if os.path.exists(loc): + netrc_path = loc + break + + # Abort early if there isn't one. + if netrc_path is None: + return + + ri = urlparse(url) + host = ri.hostname + + try: + _netrc = netrc(netrc_path).authenticators(host) + if _netrc: + # Return with login / password + login_i = 0 if _netrc[0] else 1 + return (_netrc[login_i], _netrc[2]) + except (NetrcParseError, OSError): + # If there was a parsing error or a permissions issue reading the file, + # we'll just skip netrc auth unless explicitly asked to raise errors. + if raise_errors: + raise + + # App Engine hackiness. + except (ImportError, AttributeError): + pass + + +def guess_filename(obj): + """Tries to guess the filename of the given object.""" + name = getattr(obj, "name", None) + if name and isinstance(name, basestring) and name[0] != "<" and name[-1] != ">": + return os.path.basename(name) + + +def extract_zipped_paths(path): + """Replace nonexistent paths that look like they refer to a member of a zip + archive with the location of an extracted copy of the target, or else + just return the provided path unchanged. + """ + if os.path.exists(path): + # this is already a valid path, no need to do anything further + return path + + # find the first valid part of the provided path and treat that as a zip archive + # assume the rest of the path is the name of a member in the archive + archive, member = os.path.split(path) + while archive and not os.path.exists(archive): + archive, prefix = os.path.split(archive) + if not prefix: + # If we don't check for an empty prefix after the split (in other words, archive remains unchanged after the split), + # we _can_ end up in an infinite loop on a rare corner case affecting a small number of users + break + member = "/".join([prefix, member]) + + if not zipfile.is_zipfile(archive): + return path + + zip_file = zipfile.ZipFile(archive) + if member not in zip_file.namelist(): + return path + + # we have a valid zip archive and a valid member of that archive + tmp = tempfile.gettempdir() + extracted_path = os.path.join(tmp, member.split("/")[-1]) + if not os.path.exists(extracted_path): + # use read + write to avoid the creating nested folders, we only want the file, avoids mkdir racing condition + with atomic_open(extracted_path) as file_handler: + file_handler.write(zip_file.read(member)) + return extracted_path + + +@contextlib.contextmanager +def atomic_open(filename): + """Write a file to the disk in an atomic fashion""" + tmp_descriptor, tmp_name = tempfile.mkstemp(dir=os.path.dirname(filename)) + try: + with os.fdopen(tmp_descriptor, "wb") as tmp_handler: + yield tmp_handler + os.replace(tmp_name, filename) + except BaseException: + os.remove(tmp_name) + raise + + +def from_key_val_list(value): + """Take an object and test to see if it can be represented as a + dictionary. Unless it can not be represented as such, return an + OrderedDict, e.g., + + :: + + >>> from_key_val_list([('key', 'val')]) + OrderedDict([('key', 'val')]) + >>> from_key_val_list('string') + Traceback (most recent call last): + ... + ValueError: cannot encode objects that are not 2-tuples + >>> from_key_val_list({'key': 'val'}) + OrderedDict([('key', 'val')]) + + :rtype: OrderedDict + """ + if value is None: + return None + + if isinstance(value, (str, bytes, bool, int)): + raise ValueError("cannot encode objects that are not 2-tuples") + + return OrderedDict(value) + + +def to_key_val_list(value): + """Take an object and test to see if it can be represented as a + dictionary. If it can be, return a list of tuples, e.g., + + :: + + >>> to_key_val_list([('key', 'val')]) + [('key', 'val')] + >>> to_key_val_list({'key': 'val'}) + [('key', 'val')] + >>> to_key_val_list('string') + Traceback (most recent call last): + ... + ValueError: cannot encode objects that are not 2-tuples + + :rtype: list + """ + if value is None: + return None + + if isinstance(value, (str, bytes, bool, int)): + raise ValueError("cannot encode objects that are not 2-tuples") + + if isinstance(value, Mapping): + value = value.items() + + return list(value) + + +# From mitsuhiko/werkzeug (used with permission). +def parse_list_header(value): + """Parse lists as described by RFC 2068 Section 2. + + In particular, parse comma-separated lists where the elements of + the list may include quoted-strings. A quoted-string could + contain a comma. A non-quoted string could have quotes in the + middle. Quotes are removed automatically after parsing. + + It basically works like :func:`parse_set_header` just that items + may appear multiple times and case sensitivity is preserved. + + The return value is a standard :class:`list`: + + >>> parse_list_header('token, "quoted value"') + ['token', 'quoted value'] + + To create a header from the :class:`list` again, use the + :func:`dump_header` function. + + :param value: a string with a list header. + :return: :class:`list` + :rtype: list + """ + result = [] + for item in _parse_list_header(value): + if item[:1] == item[-1:] == '"': + item = unquote_header_value(item[1:-1]) + result.append(item) + return result + + +# From mitsuhiko/werkzeug (used with permission). +def parse_dict_header(value): + """Parse lists of key, value pairs as described by RFC 2068 Section 2 and + convert them into a python dict: + + >>> d = parse_dict_header('foo="is a fish", bar="as well"') + >>> type(d) is dict + True + >>> sorted(d.items()) + [('bar', 'as well'), ('foo', 'is a fish')] + + If there is no value for a key it will be `None`: + + >>> parse_dict_header('key_without_value') + {'key_without_value': None} + + To create a header from the :class:`dict` again, use the + :func:`dump_header` function. + + :param value: a string with a dict header. + :return: :class:`dict` + :rtype: dict + """ + result = {} + for item in _parse_list_header(value): + if "=" not in item: + result[item] = None + continue + name, value = item.split("=", 1) + if value[:1] == value[-1:] == '"': + value = unquote_header_value(value[1:-1]) + result[name] = value + return result + + +# From mitsuhiko/werkzeug (used with permission). +def unquote_header_value(value, is_filename=False): + r"""Unquotes a header value. (Reversal of :func:`quote_header_value`). + This does not use the real unquoting but what browsers are actually + using for quoting. + + :param value: the header value to unquote. + :rtype: str + """ + if value and value[0] == value[-1] == '"': + # this is not the real unquoting, but fixing this so that the + # RFC is met will result in bugs with internet explorer and + # probably some other browsers as well. IE for example is + # uploading files with "C:\foo\bar.txt" as filename + value = value[1:-1] + + # if this is a filename and the starting characters look like + # a UNC path, then just return the value without quotes. Using the + # replace sequence below on a UNC path has the effect of turning + # the leading double slash into a single slash and then + # _fix_ie_filename() doesn't work correctly. See #458. + if not is_filename or value[:2] != "\\\\": + return value.replace("\\\\", "\\").replace('\\"', '"') + return value + + +def dict_from_cookiejar(cj): + """Returns a key/value dictionary from a CookieJar. + + :param cj: CookieJar object to extract cookies from. + :rtype: dict + """ + + cookie_dict = {cookie.name: cookie.value for cookie in cj} + return cookie_dict + + +def add_dict_to_cookiejar(cj, cookie_dict): + """Returns a CookieJar from a key/value dictionary. + + :param cj: CookieJar to insert cookies into. + :param cookie_dict: Dict of key/values to insert into CookieJar. + :rtype: CookieJar + """ + + return cookiejar_from_dict(cookie_dict, cj) + + +def get_encodings_from_content(content): + """Returns encodings from given content string. + + :param content: bytestring to extract encodings from. + """ + warnings.warn( + ( + "In requests 3.0, get_encodings_from_content will be removed. For " + "more information, please see the discussion on issue #2266. (This" + " warning should only appear once.)" + ), + DeprecationWarning, + ) + + charset_re = re.compile(r']', flags=re.I) + pragma_re = re.compile(r']', flags=re.I) + xml_re = re.compile(r'^<\?xml.*?encoding=["\']*(.+?)["\'>]') + + return ( + charset_re.findall(content) + + pragma_re.findall(content) + + xml_re.findall(content) + ) + + +def _parse_content_type_header(header): + """Returns content type and parameters from given header + + :param header: string + :return: tuple containing content type and dictionary of + parameters + """ + + tokens = header.split(";") + content_type, params = tokens[0].strip(), tokens[1:] + params_dict = {} + items_to_strip = "\"' " + + for param in params: + param = param.strip() + if param: + key, value = param, True + index_of_equals = param.find("=") + if index_of_equals != -1: + key = param[:index_of_equals].strip(items_to_strip) + value = param[index_of_equals + 1 :].strip(items_to_strip) + params_dict[key.lower()] = value + return content_type, params_dict + + +def get_encoding_from_headers(headers): + """Returns encodings from given HTTP Header Dict. + + :param headers: dictionary to extract encoding from. + :rtype: str + """ + + content_type = headers.get("content-type") + + if not content_type: + return None + + content_type, params = _parse_content_type_header(content_type) + + if "charset" in params: + return params["charset"].strip("'\"") + + if "text" in content_type: + return "ISO-8859-1" + + if "application/json" in content_type: + # Assume UTF-8 based on RFC 4627: https://www.ietf.org/rfc/rfc4627.txt since the charset was unset + return "utf-8" + + +def stream_decode_response_unicode(iterator, r): + """Stream decodes an iterator.""" + + if r.encoding is None: + yield from iterator + return + + decoder = codecs.getincrementaldecoder(r.encoding)(errors="replace") + for chunk in iterator: + rv = decoder.decode(chunk) + if rv: + yield rv + rv = decoder.decode(b"", final=True) + if rv: + yield rv + + +def iter_slices(string, slice_length): + """Iterate over slices of a string.""" + pos = 0 + if slice_length is None or slice_length <= 0: + slice_length = len(string) + while pos < len(string): + yield string[pos : pos + slice_length] + pos += slice_length + + +def get_unicode_from_response(r): + """Returns the requested content back in unicode. + + :param r: Response object to get unicode content from. + + Tried: + + 1. charset from content-type + 2. fall back and replace all unicode characters + + :rtype: str + """ + warnings.warn( + ( + "In requests 3.0, get_unicode_from_response will be removed. For " + "more information, please see the discussion on issue #2266. (This" + " warning should only appear once.)" + ), + DeprecationWarning, + ) + + tried_encodings = [] + + # Try charset from content-type + encoding = get_encoding_from_headers(r.headers) + + if encoding: + try: + return str(r.content, encoding) + except UnicodeError: + tried_encodings.append(encoding) + + # Fall back: + try: + return str(r.content, encoding, errors="replace") + except TypeError: + return r.content + + +# The unreserved URI characters (RFC 3986) +UNRESERVED_SET = frozenset( + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" + "0123456789-._~" +) + + +def unquote_unreserved(uri): + """Un-escape any percent-escape sequences in a URI that are unreserved + characters. This leaves all reserved, illegal and non-ASCII bytes encoded. + + :rtype: str + """ + parts = uri.split("%") + for i in range(1, len(parts)): + h = parts[i][0:2] + if len(h) == 2 and h.isalnum(): + try: + c = chr(int(h, 16)) + except ValueError: + raise InvalidURL(f"Invalid percent-escape sequence: '{h}'") + + if c in UNRESERVED_SET: + parts[i] = c + parts[i][2:] + else: + parts[i] = f"%{parts[i]}" + else: + parts[i] = f"%{parts[i]}" + return "".join(parts) + + +def requote_uri(uri): + """Re-quote the given URI. + + This function passes the given URI through an unquote/quote cycle to + ensure that it is fully and consistently quoted. + + :rtype: str + """ + safe_with_percent = "!#$%&'()*+,/:;=?@[]~" + safe_without_percent = "!#$&'()*+,/:;=?@[]~" + try: + # Unquote only the unreserved characters + # Then quote only illegal characters (do not quote reserved, + # unreserved, or '%') + return quote(unquote_unreserved(uri), safe=safe_with_percent) + except InvalidURL: + # We couldn't unquote the given URI, so let's try quoting it, but + # there may be unquoted '%'s in the URI. We need to make sure they're + # properly quoted so they do not cause issues elsewhere. + return quote(uri, safe=safe_without_percent) + + +def address_in_network(ip, net): + """This function allows you to check if an IP belongs to a network subnet + + Example: returns True if ip = 192.168.1.1 and net = 192.168.1.0/24 + returns False if ip = 192.168.1.1 and net = 192.168.100.0/24 + + :rtype: bool + """ + ipaddr = struct.unpack("=L", socket.inet_aton(ip))[0] + netaddr, bits = net.split("/") + netmask = struct.unpack("=L", socket.inet_aton(dotted_netmask(int(bits))))[0] + network = struct.unpack("=L", socket.inet_aton(netaddr))[0] & netmask + return (ipaddr & netmask) == (network & netmask) + + +def dotted_netmask(mask): + """Converts mask from /xx format to xxx.xxx.xxx.xxx + + Example: if mask is 24 function returns 255.255.255.0 + + :rtype: str + """ + bits = 0xFFFFFFFF ^ (1 << 32 - mask) - 1 + return socket.inet_ntoa(struct.pack(">I", bits)) + + +def is_ipv4_address(string_ip): + """ + :rtype: bool + """ + try: + socket.inet_aton(string_ip) + except OSError: + return False + return True + + +def is_valid_cidr(string_network): + """ + Very simple check of the cidr format in no_proxy variable. + + :rtype: bool + """ + if string_network.count("/") == 1: + try: + mask = int(string_network.split("/")[1]) + except ValueError: + return False + + if mask < 1 or mask > 32: + return False + + try: + socket.inet_aton(string_network.split("/")[0]) + except OSError: + return False + else: + return False + return True + + +@contextlib.contextmanager +def set_environ(env_name, value): + """Set the environment variable 'env_name' to 'value' + + Save previous value, yield, and then restore the previous value stored in + the environment variable 'env_name'. + + If 'value' is None, do nothing""" + value_changed = value is not None + if value_changed: + old_value = os.environ.get(env_name) + os.environ[env_name] = value + try: + yield + finally: + if value_changed: + if old_value is None: + del os.environ[env_name] + else: + os.environ[env_name] = old_value + + +def should_bypass_proxies(url, no_proxy): + """ + Returns whether we should bypass proxies or not. + + :rtype: bool + """ + + # Prioritize lowercase environment variables over uppercase + # to keep a consistent behaviour with other http projects (curl, wget). + def get_proxy(key): + return os.environ.get(key) or os.environ.get(key.upper()) + + # First check whether no_proxy is defined. If it is, check that the URL + # we're getting isn't in the no_proxy list. + no_proxy_arg = no_proxy + if no_proxy is None: + no_proxy = get_proxy("no_proxy") + parsed = urlparse(url) + + if parsed.hostname is None: + # URLs don't always have hostnames, e.g. file:/// urls. + return True + + if no_proxy: + # We need to check whether we match here. We need to see if we match + # the end of the hostname, both with and without the port. + no_proxy = (host for host in no_proxy.replace(" ", "").split(",") if host) + + if is_ipv4_address(parsed.hostname): + for proxy_ip in no_proxy: + if is_valid_cidr(proxy_ip): + if address_in_network(parsed.hostname, proxy_ip): + return True + elif parsed.hostname == proxy_ip: + # If no_proxy ip was defined in plain IP notation instead of cidr notation & + # matches the IP of the index + return True + else: + host_with_port = parsed.hostname + if parsed.port: + host_with_port += f":{parsed.port}" + + for host in no_proxy: + if parsed.hostname.endswith(host) or host_with_port.endswith(host): + # The URL does match something in no_proxy, so we don't want + # to apply the proxies on this URL. + return True + + with set_environ("no_proxy", no_proxy_arg): + # parsed.hostname can be `None` in cases such as a file URI. + try: + bypass = proxy_bypass(parsed.hostname) + except (TypeError, socket.gaierror): + bypass = False + + if bypass: + return True + + return False + + +def get_environ_proxies(url, no_proxy=None): + """ + Return a dict of environment proxies. + + :rtype: dict + """ + if should_bypass_proxies(url, no_proxy=no_proxy): + return {} + else: + return getproxies() + + +def select_proxy(url, proxies): + """Select a proxy for the url, if applicable. + + :param url: The url being for the request + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs + """ + proxies = proxies or {} + urlparts = urlparse(url) + if urlparts.hostname is None: + return proxies.get(urlparts.scheme, proxies.get("all")) + + proxy_keys = [ + urlparts.scheme + "://" + urlparts.hostname, + urlparts.scheme, + "all://" + urlparts.hostname, + "all", + ] + proxy = None + for proxy_key in proxy_keys: + if proxy_key in proxies: + proxy = proxies[proxy_key] + break + + return proxy + + +def resolve_proxies(request, proxies, trust_env=True): + """This method takes proxy information from a request and configuration + input to resolve a mapping of target proxies. This will consider settings + such as NO_PROXY to strip proxy configurations. + + :param request: Request or PreparedRequest + :param proxies: A dictionary of schemes or schemes and hosts to proxy URLs + :param trust_env: Boolean declaring whether to trust environment configs + + :rtype: dict + """ + proxies = proxies if proxies is not None else {} + url = request.url + scheme = urlparse(url).scheme + no_proxy = proxies.get("no_proxy") + new_proxies = proxies.copy() + + if trust_env and not should_bypass_proxies(url, no_proxy=no_proxy): + environ_proxies = get_environ_proxies(url, no_proxy=no_proxy) + + proxy = environ_proxies.get(scheme, environ_proxies.get("all")) + + if proxy: + new_proxies.setdefault(scheme, proxy) + return new_proxies + + +def default_user_agent(name="python-requests"): + """ + Return a string representing the default user agent. + + :rtype: str + """ + return f"{name}/{__version__}" + + +def default_headers(): + """ + :rtype: requests.structures.CaseInsensitiveDict + """ + return CaseInsensitiveDict( + { + "User-Agent": default_user_agent(), + "Accept-Encoding": DEFAULT_ACCEPT_ENCODING, + "Accept": "*/*", + "Connection": "keep-alive", + } + ) + + +def parse_header_links(value): + """Return a list of parsed link headers proxies. + + i.e. Link: ; rel=front; type="image/jpeg",; rel=back;type="image/jpeg" + + :rtype: list + """ + + links = [] + + replace_chars = " '\"" + + value = value.strip(replace_chars) + if not value: + return links + + for val in re.split(", *<", value): + try: + url, params = val.split(";", 1) + except ValueError: + url, params = val, "" + + link = {"url": url.strip("<> '\"")} + + for param in params.split(";"): + try: + key, value = param.split("=") + except ValueError: + break + + link[key.strip(replace_chars)] = value.strip(replace_chars) + + links.append(link) + + return links + + +# Null bytes; no need to recreate these on each call to guess_json_utf +_null = "\x00".encode("ascii") # encoding to ASCII for Python 3 +_null2 = _null * 2 +_null3 = _null * 3 + + +def guess_json_utf(data): + """ + :rtype: str + """ + # JSON always starts with two ASCII characters, so detection is as + # easy as counting the nulls and from their location and count + # determine the encoding. Also detect a BOM, if present. + sample = data[:4] + if sample in (codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE): + return "utf-32" # BOM included + if sample[:3] == codecs.BOM_UTF8: + return "utf-8-sig" # BOM included, MS style (discouraged) + if sample[:2] in (codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE): + return "utf-16" # BOM included + nullcount = sample.count(_null) + if nullcount == 0: + return "utf-8" + if nullcount == 2: + if sample[::2] == _null2: # 1st and 3rd are null + return "utf-16-be" + if sample[1::2] == _null2: # 2nd and 4th are null + return "utf-16-le" + # Did not detect 2 valid UTF-16 ascii-range characters + if nullcount == 3: + if sample[:3] == _null3: + return "utf-32-be" + if sample[1:] == _null3: + return "utf-32-le" + # Did not detect a valid UTF-32 ascii-range character + return None + + +def prepend_scheme_if_needed(url, new_scheme): + """Given a URL that may or may not have a scheme, prepend the given scheme. + Does not replace a present scheme with the one provided as an argument. + + :rtype: str + """ + parsed = parse_url(url) + scheme, auth, host, port, path, query, fragment = parsed + + # A defect in urlparse determines that there isn't a netloc present in some + # urls. We previously assumed parsing was overly cautious, and swapped the + # netloc and path. Due to a lack of tests on the original defect, this is + # maintained with parse_url for backwards compatibility. + netloc = parsed.netloc + if not netloc: + netloc, path = path, netloc + + if auth: + # parse_url doesn't provide the netloc with auth + # so we'll add it ourselves. + netloc = "@".join([auth, netloc]) + if scheme is None: + scheme = new_scheme + if path is None: + path = "" + + return urlunparse((scheme, netloc, path, "", query, fragment)) + + +def get_auth_from_url(url): + """Given a url with authentication components, extract them into a tuple of + username,password. + + :rtype: (str,str) + """ + parsed = urlparse(url) + + try: + auth = (unquote(parsed.username), unquote(parsed.password)) + except (AttributeError, TypeError): + auth = ("", "") + + return auth + + +def check_header_validity(header): + """Verifies that header parts don't contain leading whitespace + reserved characters, or return characters. + + :param header: tuple, in the format (name, value). + """ + name, value = header + _validate_header_part(header, name, 0) + _validate_header_part(header, value, 1) + + +def _validate_header_part(header, header_part, header_validator_index): + if isinstance(header_part, str): + validator = _HEADER_VALIDATORS_STR[header_validator_index] + elif isinstance(header_part, bytes): + validator = _HEADER_VALIDATORS_BYTE[header_validator_index] + else: + raise InvalidHeader( + f"Header part ({header_part!r}) from {header} " + f"must be of type str or bytes, not {type(header_part)}" + ) + + if not validator.match(header_part): + header_kind = "name" if header_validator_index == 0 else "value" + raise InvalidHeader( + f"Invalid leading whitespace, reserved character(s), or return " + f"character(s) in header {header_kind}: {header_part!r}" + ) + + +def urldefragauth(url): + """ + Given a url remove the fragment and the authentication part. + + :rtype: str + """ + scheme, netloc, path, params, query, fragment = urlparse(url) + + # see func:`prepend_scheme_if_needed` + if not netloc: + netloc, path = path, netloc + + netloc = netloc.rsplit("@", 1)[-1] + + return urlunparse((scheme, netloc, path, params, query, "")) + + +def rewind_body(prepared_request): + """Move file pointer back to its recorded starting position + so it can be read again on redirect. + """ + body_seek = getattr(prepared_request.body, "seek", None) + if body_seek is not None and isinstance( + prepared_request._body_position, integer_types + ): + try: + body_seek(prepared_request._body_position) + except OSError: + raise UnrewindableBodyError( + "An error occurred when rewinding request body for redirect." + ) + else: + raise UnrewindableBodyError("Unable to rewind request body for redirect.") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE new file mode 100644 index 0000000..b907776 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2018, Tzu-ping Chung + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py new file mode 100644 index 0000000..4c7f815 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py @@ -0,0 +1,27 @@ +__all__ = [ + "AbstractProvider", + "AbstractResolver", + "BaseReporter", + "InconsistentCandidate", + "RequirementsConflicted", + "ResolutionError", + "ResolutionImpossible", + "ResolutionTooDeep", + "Resolver", + "__version__", +] + +__version__ = "1.2.1" + + +from .providers import AbstractProvider +from .reporters import BaseReporter +from .resolvers import ( + AbstractResolver, + InconsistentCandidate, + RequirementsConflicted, + ResolutionError, + ResolutionImpossible, + ResolutionTooDeep, + Resolver, +) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..46c10f12063f0acef0ee2decd0cb5b8fe581d51b GIT binary patch literal 648 zcma)2J#Q015Z%4AeP^Fd2ns1cR5TdLJ~@akLUK%sND)E~)i$fMcS%;+kIU}b$W-|k z^mP0d{=rF9RCG}y6e$hN9tO8e@n+^}=k3h<+Us=?#N+ta*^>yN@1gk{(ARNu4Cxa( zMGSq$1Tjo7i&!ip6_Xevs2j4Onxt9RP1#ZjNmNQw)h2D#Asv;GOm#_D^+*q+RjZ%$ zJJtR1%z0bP{ab66f^oZHrra611g3jXI6md2u^zgIM|y6w6V7w(CxvE$6`ohSQ+}}! zmMdW0#OU`@%spq-RxPve!stV5jjeVz#E~kEb7CfWwY_2A8S|R+vP%CgkWmVIIFO+9 zV{+|Y$5q8 wy93_`Z`^Z$s~BT^9c5W`nOr?WTf3Lp&lbYZzM-eLQHrBm1aKX|K7i-H0WQ$CGXMYp literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..432daca519dfdc3d04889b5e3204b5486f4e2297 GIT binary patch literal 10137 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 Xj~<+Tz#pD{aPiUNyU!&gC0_gwQ`dhQ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0359d56b6bdcfc7198170b13ea8ba3945df263c0 GIT binary patch literal 12464 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 xR=> bool: ... + + +class AbstractProvider(Generic[RT, CT, KT]): + """Delegate class to provide the required interface for the resolver.""" + + def identify(self, requirement_or_candidate: RT | CT) -> KT: + """Given a requirement or candidate, return an identifier for it. + + This is used to identify, e.g. whether two requirements + should have their specifier parts merged or a candidate matches a + requirement via ``find_matches()``. + """ + raise NotImplementedError + + def get_preference( + self, + identifier: KT, + resolutions: Mapping[KT, CT], + candidates: Mapping[KT, Iterator[CT]], + information: Mapping[KT, Iterator[RequirementInformation[RT, CT]]], + backtrack_causes: Sequence[RequirementInformation[RT, CT]], + ) -> Preference: + """Produce a sort key for given requirement based on preference. + + As this is a sort key it will be called O(n) times per backtrack + step, where n is the number of `identifier`s, if you have a check + which is expensive in some sense. E.g. It needs to make O(n) checks + per call or takes significant wall clock time, consider using + `narrow_requirement_selection` to filter the `identifier`s, which + is applied before this sort key is called. + + The preference is defined as "I think this requirement should be + resolved first". The lower the return value is, the more preferred + this group of arguments is. + + :param identifier: An identifier as returned by ``identify()``. This + identifies the requirement being considered. + :param resolutions: Mapping of candidates currently pinned by the + resolver. Each key is an identifier, and the value is a candidate. + The candidate may conflict with requirements from ``information``. + :param candidates: Mapping of each dependency's possible candidates. + Each value is an iterator of candidates. + :param information: Mapping of requirement information of each package. + Each value is an iterator of *requirement information*. + :param backtrack_causes: Sequence of *requirement information* that are + the requirements that caused the resolver to most recently + backtrack. + + A *requirement information* instance is a named tuple with two members: + + * ``requirement`` specifies a requirement contributing to the current + list of candidates. + * ``parent`` specifies the candidate that provides (depended on) the + requirement, or ``None`` to indicate a root requirement. + + The preference could depend on various issues, including (not + necessarily in this order): + + * Is this package pinned in the current resolution result? + * How relaxed is the requirement? Stricter ones should probably be + worked on first? (I don't know, actually.) + * How many possibilities are there to satisfy this requirement? Those + with few left should likely be worked on first, I guess? + * Are there any known conflicts for this requirement? We should + probably work on those with the most known conflicts. + + A sortable value should be returned (this will be used as the ``key`` + parameter of the built-in sorting function). The smaller the value is, + the more preferred this requirement is (i.e. the sorting function + is called with ``reverse=False``). + """ + raise NotImplementedError + + def find_matches( + self, + identifier: KT, + requirements: Mapping[KT, Iterator[RT]], + incompatibilities: Mapping[KT, Iterator[CT]], + ) -> Matches[CT]: + """Find all possible candidates that satisfy the given constraints. + + :param identifier: An identifier as returned by ``identify()``. All + candidates returned by this method should produce the same + identifier. + :param requirements: A mapping of requirements that all returned + candidates must satisfy. Each key is an identifier, and the value + an iterator of requirements for that dependency. + :param incompatibilities: A mapping of known incompatibile candidates of + each dependency. Each key is an identifier, and the value an + iterator of incompatibilities known to the resolver. All + incompatibilities *must* be excluded from the return value. + + This should try to get candidates based on the requirements' types. + For VCS, local, and archive requirements, the one-and-only match is + returned, and for a "named" requirement, the index(es) should be + consulted to find concrete candidates for this requirement. + + The return value should produce candidates ordered by preference; the + most preferred candidate should come first. The return type may be one + of the following: + + * A callable that returns an iterator that yields candidates. + * An collection of candidates. + * An iterable of candidates. This will be consumed immediately into a + list of candidates. + """ + raise NotImplementedError + + def is_satisfied_by(self, requirement: RT, candidate: CT) -> bool: + """Whether the given requirement can be satisfied by a candidate. + + The candidate is guaranteed to have been generated from the + requirement. + + A boolean should be returned to indicate whether ``candidate`` is a + viable solution to the requirement. + """ + raise NotImplementedError + + def get_dependencies(self, candidate: CT) -> Iterable[RT]: + """Get dependencies of a candidate. + + This should return a collection of requirements that `candidate` + specifies as its dependencies. + """ + raise NotImplementedError + + def narrow_requirement_selection( + self, + identifiers: Iterable[KT], + resolutions: Mapping[KT, CT], + candidates: Mapping[KT, Iterator[CT]], + information: Mapping[KT, Iterator[RequirementInformation[RT, CT]]], + backtrack_causes: Sequence[RequirementInformation[RT, CT]], + ) -> Iterable[KT]: + """ + An optional method to narrow the selection of requirements being + considered during resolution. This method is called O(1) time per + backtrack step. + + :param identifiers: An iterable of `identifiers` as returned by + ``identify()``. These identify all requirements currently being + considered. + :param resolutions: A mapping of candidates currently pinned by the + resolver. Each key is an identifier, and the value is a candidate + that may conflict with requirements from ``information``. + :param candidates: A mapping of each dependency's possible candidates. + Each value is an iterator of candidates. + :param information: A mapping of requirement information for each package. + Each value is an iterator of *requirement information*. + :param backtrack_causes: A sequence of *requirement information* that are + the requirements causing the resolver to most recently + backtrack. + + A *requirement information* instance is a named tuple with two members: + + * ``requirement`` specifies a requirement contributing to the current + list of candidates. + * ``parent`` specifies the candidate that provides (is depended on for) + the requirement, or ``None`` to indicate a root requirement. + + Must return a non-empty subset of `identifiers`, with the default + implementation being to return `identifiers` unchanged. Those `identifiers` + will then be passed to the sort key `get_preference` to pick the most + prefered requirement to attempt to pin, unless `narrow_requirement_selection` + returns only 1 requirement, in which case that will be used without + calling the sort key `get_preference`. + + This method is designed to be used by the provider to optimize the + dependency resolution, e.g. if a check cost is O(m) and it can be done + against all identifiers at once then filtering the requirement selection + here will cost O(m) but making it part of the sort key in `get_preference` + will cost O(m*n), where n is the number of `identifiers`. + + Returns: + Iterable[KT]: A non-empty subset of `identifiers`. + """ + return identifiers diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py new file mode 100644 index 0000000..6c14220 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py @@ -0,0 +1,55 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection, Generic + +from .structs import CT, KT, RT, RequirementInformation, State + +if TYPE_CHECKING: + from .resolvers import Criterion + + +class BaseReporter(Generic[RT, CT, KT]): + """Delegate class to provide progress reporting for the resolver.""" + + def starting(self) -> None: + """Called before the resolution actually starts.""" + + def starting_round(self, index: int) -> None: + """Called before each round of resolution starts. + + The index is zero-based. + """ + + def ending_round(self, index: int, state: State[RT, CT, KT]) -> None: + """Called before each round of resolution ends. + + This is NOT called if the resolution ends at this round. Use `ending` + if you want to report finalization. The index is zero-based. + """ + + def ending(self, state: State[RT, CT, KT]) -> None: + """Called before the resolution ends successfully.""" + + def adding_requirement(self, requirement: RT, parent: CT | None) -> None: + """Called when adding a new requirement into the resolve criteria. + + :param requirement: The additional requirement to be applied to filter + the available candidaites. + :param parent: The candidate that requires ``requirement`` as a + dependency, or None if ``requirement`` is one of the root + requirements passed in from ``Resolver.resolve()``. + """ + + def resolving_conflicts( + self, causes: Collection[RequirementInformation[RT, CT]] + ) -> None: + """Called when starting to attempt requirement conflict resolution. + + :param causes: The information on the collision that caused the backtracking. + """ + + def rejecting_candidate(self, criterion: Criterion[RT, CT], candidate: CT) -> None: + """Called when rejecting a candidate during backtracking.""" + + def pinning(self, candidate: CT) -> None: + """Called when adding a candidate to the potential solution.""" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py new file mode 100644 index 0000000..b249221 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py @@ -0,0 +1,27 @@ +from ..structs import RequirementInformation +from .abstract import AbstractResolver, Result +from .criterion import Criterion +from .exceptions import ( + InconsistentCandidate, + RequirementsConflicted, + ResolutionError, + ResolutionImpossible, + ResolutionTooDeep, + ResolverException, +) +from .resolution import Resolution, Resolver + +__all__ = [ + "AbstractResolver", + "Criterion", + "InconsistentCandidate", + "RequirementInformation", + "RequirementsConflicted", + "Resolution", + "ResolutionError", + "ResolutionImpossible", + "ResolutionTooDeep", + "Resolver", + "ResolverException", + "Result", +] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82f3c20bfbb274d4b212c2c8e2419cd944a47121 GIT binary patch literal 753 zcmZ8fJ&zMH5Vd!6`<3L9LwpF)P|!poSplL$NFk(%gedN)+^jZh-`(o$^`7m7O9#J# zo{rzbKd^M7pt=rm#Yxw|c#|js7jI|AZ|03>_ItORAUKcwKc}BOgnl|_d%$nbHHFU? zL=nXt2~03X)T2K4gin0YBCW=6@jVfcpt1LOC?XPxn8YF>iD;9y=#Y-+l5TS!@O{xE zJ<%t9j7|^@zhZK*iU#qO(;Q%X|B#(8O2q`L%&a<=O5~=L)fINvp6!q4+NiuRhfGVp zWXc9$Ex3Wyc%n+f6tD+@y*H~0S?N+6C^X3{TGHIGf6D8Ltd4nE7)EWcskd-aQ>CP` zcXxrAsHN8BoHKi{i++&uEo1d21f5JT3Rb%U&}OpZ*{HFBFzBc~c!dfbL=Johv4edF zZXv4epyQzDpz9z2ct5yfLwNh5FuF;!QNEeQx~wDFxY*91k+BKecBR*njoN=gPQxb3 zO|+T7x*I2N!z{}=&$4gm8eDXHk$#lwOxJnAbb2%$z8k-JIXp73qhdIblx5>8=PMX{ zI$E-7neuX;)+=)=s~4kZ&r=Nx8bb0}eggS*S*ID$s8ngAzGRNSF_liUtgK3tWutm^ z8@&>eE;xIw9zrATchFA&e)$;VOZ4;y8eO8tH(rRn8|0vm@bGu5+x9+(>H!e{0vzzx AkpKVy literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25fbed53f41f8981d5655dd2c19ab7d4280476ce GIT binary patch literal 2459 zcmZ`*&2Jk;6rc63*K5blXFn3!!X_5L8eNL5L-o?&F&=GWi_lXT=`M%e!Ym`!34OK^xQXo7%z#>r?I_==9`N}A+mwX7>^vYXR# zuA(U*BUxD|?-sOz+og56MXl(Tw30xm#NLKI+39wBw4O*V=k&ULS|9L=m3R8x0c}7a z88S_*!UJM;QH9F1NDH)UQ5*tWzLR3hv}4}!456937vp&+wYrvwRs2TyE|bbe`bwa$ z`(N6`MB+p%Q|@_zld=$Y8J_0{Mqv9Mua&c5ss8z`DSh(B)a1;~+H@#Rc&#uuO+CtN zGgNK{lo<;S4GT5HrB=P!aOexXxh#d5$$FTXf!}OBEM2!5H3Mo*Go!H#*Yr*-@PHX+ zaEtk?wnZ7N6|Whb&eDd@KJI<;qGZ&r;rWf_Ble&EU>VeN>&S&xJYHXf$kZsXchaR@hh9)tc|o zxiGtg*0)a`o=a`JGaGA}3l%e7Gim^VqU#>uqU&Kn*InOgI>;Aw{a({>lARu1?|@v_ zza{(VL6zMtjZ|&omGnR3CnoZNWxKRwAcV#ACVF;{1}ig z$xh#yZRN~P&-rcT{7(PaPs$iOor;x3hC=K(k`q9VL@LQcVgC~B97f6#G?7YLHct-! ztgMxJAZfBCTOxdOEvcM4%oKdRCOmLXO^jX-Tsw&*jL!;GqsQh==*dDg@% zRuRUEnIsI@K%l}1fw{1+0<%fhg>|9>7mxJ}%rN<)(Sn+&l{2BzNb)pPSdyV-F_buU z7TGXJvJoI0FHu#Moq;a~-}dZ4*V{vBvZpRo(ydc?svpP(*(;Et;fK;!rJX_bq4aer z!q-gD0|~GfeqCsGH!zzdz_n<6A(RENkT3s}7KWg_5Wg3SfRT>dQ6<6oV%7IH&}tL4T^*&vymUbQuX&U);v9VA)$K!5+r3T|FSbN*_Es{^mw)Pm;64&-yESS@`bBWZ<2> z9C8XNbnoYZJLoNDM`C5Dr+gAy{$dmA2UFQv0jOJ}!k{8*`Nmp<9}=s+G4Mjov_ UW?PrH*yHxolNVnSSc%~K2T5$E`v3p{ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e59ba5dbafa337d35404adf9906267db61931b06 GIT binary patch literal 3284 zcmd5<&2QYs6`vuwyWEwOjUC5zBO@KVjjffnyQ!rjil7>fl^}3q2#757u#P}c}xxaLT<7Pz)#;hNx_nPDiLl}5DXq- zL1u=mE`oK(<`@7*-J>M28@q1>UL6oxaa<>KxI8on({aX&`0M?p-P z-%pM>l~V77=}2zxO9D9;_^YmiAuO{o#|MoLkZ+liGbfCdxf^CvCU#3{E>b$12mW+=<_Wo1Ro%5GRN~8Ar@ zLNCc0R4Z538&u@llH59mB}ib9{$ zXlS5{q9ZSm1AR!7++7tfgGzA(hodk^^al%duUW-}lu*80Rm7JZtR7gfz_4Oy7hnQipWYaJ3NpN)ACfk?(StRS;`lCkm@Xcs=WbJ5ZPU+*t$m?h zC8f-KOPOH%Ou~zYOd^|8F!_K`WRxrc+#i8~+w`_#1H+#~Yi=trDqm#&O1CH_pB&Xl zQ~gTape1dOj;yD!!>G)KF#JINdx!j+D5nbFmZ!hG`nNNi<~?2O2pm7orjjCF0a-LW*exVNo4SfD zCtmGmIgy=#jS_*oL!SO>bgTJk^BKDKboSzt*(*D5;~xNea{EI7TK`PnDNZIpixQd{$9)4J55*uSYFn=! zYORV#y3kJE|J{?*=XXw@e_Wh=q)*1s&X@GKW4DGcr{9a$<`$P?T3h4&@5*Zn{ZtwF zRJ^vZIKg25QrzoXFAW?3X_OT_YzRNn<^!KY0i!pODnpUZQ={-{3W}Dx!dGHXP&l{9 z+6>Pwm2@m`-}Ja)Lv74iBl4(D*d_n*KXAIBVb zHZg)r9CY}XmteR{o+(E%`tBJ$Gx^VBY&QdU=mp0w(%l?Rb#iiiH;=OdDZJDff?4O7 zmYL`b)6Cn?votf6s7IyqrD61QwE+Ntp8}g|lntA8_-qo`@k9m(?CAo3K}0!#1-_Z2 z$fF2F>$RH)Q5}GPOgdo@dAC)Vn~ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e0e35da2c855d7701deb4618c0a6de273730127 GIT binary patch literal 4094 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 None: + self.provider = provider + self.reporter = reporter + + def resolve(self, requirements: Iterable[RT], **kwargs: Any) -> Result[RT, CT, KT]: + """Take a collection of constraints, spit out the resolution result. + + This returns a representation of the final resolution state, with one + guarenteed attribute ``mapping`` that contains resolved candidates as + values. The keys are their respective identifiers. + + :param requirements: A collection of constraints. + :param kwargs: Additional keyword arguments that subclasses may accept. + + :raises: ``self.base_exception`` or its subclass. + """ + raise NotImplementedError diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py new file mode 100644 index 0000000..ee5019c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py @@ -0,0 +1,48 @@ +from __future__ import annotations + +from typing import Collection, Generic, Iterable, Iterator + +from ..structs import CT, RT, RequirementInformation + + +class Criterion(Generic[RT, CT]): + """Representation of possible resolution results of a package. + + This holds three attributes: + + * `information` is a collection of `RequirementInformation` pairs. + Each pair is a requirement contributing to this criterion, and the + candidate that provides the requirement. + * `incompatibilities` is a collection of all known not-to-work candidates + to exclude from consideration. + * `candidates` is a collection containing all possible candidates deducted + from the union of contributing requirements and known incompatibilities. + It should never be empty, except when the criterion is an attribute of a + raised `RequirementsConflicted` (in which case it is always empty). + + .. note:: + This class is intended to be externally immutable. **Do not** mutate + any of its attribute containers. + """ + + def __init__( + self, + candidates: Iterable[CT], + information: Collection[RequirementInformation[RT, CT]], + incompatibilities: Collection[CT], + ) -> None: + self.candidates = candidates + self.information = information + self.incompatibilities = incompatibilities + + def __repr__(self) -> str: + requirements = ", ".join( + f"({req!r}, via={parent!r})" for req, parent in self.information + ) + return f"Criterion({requirements})" + + def iter_requirement(self) -> Iterator[RT]: + return (i.requirement for i in self.information) + + def iter_parent(self) -> Iterator[CT | None]: + return (i.parent for i in self.information) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py new file mode 100644 index 0000000..35e2755 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py @@ -0,0 +1,57 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection, Generic + +from ..structs import CT, RT, RequirementInformation + +if TYPE_CHECKING: + from .criterion import Criterion + + +class ResolverException(Exception): + """A base class for all exceptions raised by this module. + + Exceptions derived by this class should all be handled in this module. Any + bubbling pass the resolver should be treated as a bug. + """ + + +class RequirementsConflicted(ResolverException, Generic[RT, CT]): + def __init__(self, criterion: Criterion[RT, CT]) -> None: + super().__init__(criterion) + self.criterion = criterion + + def __str__(self) -> str: + return "Requirements conflict: {}".format( + ", ".join(repr(r) for r in self.criterion.iter_requirement()), + ) + + +class InconsistentCandidate(ResolverException, Generic[RT, CT]): + def __init__(self, candidate: CT, criterion: Criterion[RT, CT]): + super().__init__(candidate, criterion) + self.candidate = candidate + self.criterion = criterion + + def __str__(self) -> str: + return "Provided candidate {!r} does not satisfy {}".format( + self.candidate, + ", ".join(repr(r) for r in self.criterion.iter_requirement()), + ) + + +class ResolutionError(ResolverException): + pass + + +class ResolutionImpossible(ResolutionError, Generic[RT, CT]): + def __init__(self, causes: Collection[RequirementInformation[RT, CT]]): + super().__init__(causes) + # causes is a list of RequirementInformation objects + self.causes = causes + + +class ResolutionTooDeep(ResolutionError): + def __init__(self, round_count: int) -> None: + super().__init__(round_count) + self.round_count = round_count diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py new file mode 100644 index 0000000..8c13d3b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py @@ -0,0 +1,627 @@ +from __future__ import annotations + +import collections +import itertools +import operator +from typing import TYPE_CHECKING, Generic + +from ..structs import ( + CT, + KT, + RT, + DirectedGraph, + IterableView, + IteratorMapping, + RequirementInformation, + State, + build_iter_view, +) +from .abstract import AbstractResolver, Result +from .criterion import Criterion +from .exceptions import ( + InconsistentCandidate, + RequirementsConflicted, + ResolutionImpossible, + ResolutionTooDeep, + ResolverException, +) + +if TYPE_CHECKING: + from collections.abc import Collection, Iterable, Mapping + + from ..providers import AbstractProvider, Preference + from ..reporters import BaseReporter + +_OPTIMISTIC_BACKJUMPING_RATIO: float = 0.1 + + +def _build_result(state: State[RT, CT, KT]) -> Result[RT, CT, KT]: + mapping = state.mapping + all_keys: dict[int, KT | None] = {id(v): k for k, v in mapping.items()} + all_keys[id(None)] = None + + graph: DirectedGraph[KT | None] = DirectedGraph() + graph.add(None) # Sentinel as root dependencies' parent. + + connected: set[KT | None] = {None} + for key, criterion in state.criteria.items(): + if not _has_route_to_root(state.criteria, key, all_keys, connected): + continue + if key not in graph: + graph.add(key) + for p in criterion.iter_parent(): + try: + pkey = all_keys[id(p)] + except KeyError: + continue + if pkey not in graph: + graph.add(pkey) + graph.connect(pkey, key) + + return Result( + mapping={k: v for k, v in mapping.items() if k in connected}, + graph=graph, + criteria=state.criteria, + ) + + +class Resolution(Generic[RT, CT, KT]): + """Stateful resolution object. + + This is designed as a one-off object that holds information to kick start + the resolution process, and holds the results afterwards. + """ + + def __init__( + self, + provider: AbstractProvider[RT, CT, KT], + reporter: BaseReporter[RT, CT, KT], + ) -> None: + self._p = provider + self._r = reporter + self._states: list[State[RT, CT, KT]] = [] + + # Optimistic backjumping variables + self._optimistic_backjumping_ratio = _OPTIMISTIC_BACKJUMPING_RATIO + self._save_states: list[State[RT, CT, KT]] | None = None + self._optimistic_start_round: int | None = None + + @property + def state(self) -> State[RT, CT, KT]: + try: + return self._states[-1] + except IndexError as e: + raise AttributeError("state") from e + + def _push_new_state(self) -> None: + """Push a new state into history. + + This new state will be used to hold resolution results of the next + coming round. + """ + base = self._states[-1] + state = State( + mapping=base.mapping.copy(), + criteria=base.criteria.copy(), + backtrack_causes=base.backtrack_causes[:], + ) + self._states.append(state) + + def _add_to_criteria( + self, + criteria: dict[KT, Criterion[RT, CT]], + requirement: RT, + parent: CT | None, + ) -> None: + self._r.adding_requirement(requirement=requirement, parent=parent) + + identifier = self._p.identify(requirement_or_candidate=requirement) + criterion = criteria.get(identifier) + if criterion: + incompatibilities = list(criterion.incompatibilities) + else: + incompatibilities = [] + + matches = self._p.find_matches( + identifier=identifier, + requirements=IteratorMapping( + criteria, + operator.methodcaller("iter_requirement"), + {identifier: [requirement]}, + ), + incompatibilities=IteratorMapping( + criteria, + operator.attrgetter("incompatibilities"), + {identifier: incompatibilities}, + ), + ) + + if criterion: + information = list(criterion.information) + information.append(RequirementInformation(requirement, parent)) + else: + information = [RequirementInformation(requirement, parent)] + + criterion = Criterion( + candidates=build_iter_view(matches), + information=information, + incompatibilities=incompatibilities, + ) + if not criterion.candidates: + raise RequirementsConflicted(criterion) + criteria[identifier] = criterion + + def _remove_information_from_criteria( + self, criteria: dict[KT, Criterion[RT, CT]], parents: Collection[KT] + ) -> None: + """Remove information from parents of criteria. + + Concretely, removes all values from each criterion's ``information`` + field that have one of ``parents`` as provider of the requirement. + + :param criteria: The criteria to update. + :param parents: Identifiers for which to remove information from all criteria. + """ + if not parents: + return + for key, criterion in criteria.items(): + criteria[key] = Criterion( + criterion.candidates, + [ + information + for information in criterion.information + if ( + information.parent is None + or self._p.identify(information.parent) not in parents + ) + ], + criterion.incompatibilities, + ) + + def _get_preference(self, name: KT) -> Preference: + return self._p.get_preference( + identifier=name, + resolutions=self.state.mapping, + candidates=IteratorMapping( + self.state.criteria, + operator.attrgetter("candidates"), + ), + information=IteratorMapping( + self.state.criteria, + operator.attrgetter("information"), + ), + backtrack_causes=self.state.backtrack_causes, + ) + + def _is_current_pin_satisfying( + self, name: KT, criterion: Criterion[RT, CT] + ) -> bool: + try: + current_pin = self.state.mapping[name] + except KeyError: + return False + return all( + self._p.is_satisfied_by(requirement=r, candidate=current_pin) + for r in criterion.iter_requirement() + ) + + def _get_updated_criteria(self, candidate: CT) -> dict[KT, Criterion[RT, CT]]: + criteria = self.state.criteria.copy() + for requirement in self._p.get_dependencies(candidate=candidate): + self._add_to_criteria(criteria, requirement, parent=candidate) + return criteria + + def _attempt_to_pin_criterion(self, name: KT) -> list[Criterion[RT, CT]]: + criterion = self.state.criteria[name] + + causes: list[Criterion[RT, CT]] = [] + for candidate in criterion.candidates: + try: + criteria = self._get_updated_criteria(candidate) + except RequirementsConflicted as e: + self._r.rejecting_candidate(e.criterion, candidate) + causes.append(e.criterion) + continue + + # Check the newly-pinned candidate actually works. This should + # always pass under normal circumstances, but in the case of a + # faulty provider, we will raise an error to notify the implementer + # to fix find_matches() and/or is_satisfied_by(). + satisfied = all( + self._p.is_satisfied_by(requirement=r, candidate=candidate) + for r in criterion.iter_requirement() + ) + if not satisfied: + raise InconsistentCandidate(candidate, criterion) + + self._r.pinning(candidate=candidate) + self.state.criteria.update(criteria) + + # Put newly-pinned candidate at the end. This is essential because + # backtracking looks at this mapping to get the last pin. + self.state.mapping.pop(name, None) + self.state.mapping[name] = candidate + + return [] + + # All candidates tried, nothing works. This criterion is a dead + # end, signal for backtracking. + return causes + + def _patch_criteria( + self, incompatibilities_from_broken: list[tuple[KT, list[CT]]] + ) -> bool: + # Create a new state from the last known-to-work one, and apply + # the previously gathered incompatibility information. + for k, incompatibilities in incompatibilities_from_broken: + if not incompatibilities: + continue + try: + criterion = self.state.criteria[k] + except KeyError: + continue + matches = self._p.find_matches( + identifier=k, + requirements=IteratorMapping( + self.state.criteria, + operator.methodcaller("iter_requirement"), + ), + incompatibilities=IteratorMapping( + self.state.criteria, + operator.attrgetter("incompatibilities"), + {k: incompatibilities}, + ), + ) + candidates: IterableView[CT] = build_iter_view(matches) + if not candidates: + return False + incompatibilities.extend(criterion.incompatibilities) + self.state.criteria[k] = Criterion( + candidates=candidates, + information=list(criterion.information), + incompatibilities=incompatibilities, + ) + return True + + def _save_state(self) -> None: + """Save states for potential rollback if optimistic backjumping fails.""" + if self._save_states is None: + self._save_states = [ + State( + mapping=s.mapping.copy(), + criteria=s.criteria.copy(), + backtrack_causes=s.backtrack_causes[:], + ) + for s in self._states + ] + + def _rollback_states(self) -> None: + """Rollback states and disable optimistic backjumping.""" + self._optimistic_backjumping_ratio = 0.0 + if self._save_states: + self._states = self._save_states + self._save_states = None + + def _backjump(self, causes: list[RequirementInformation[RT, CT]]) -> bool: + """Perform backjumping. + + When we enter here, the stack is like this:: + + [ state Z ] + [ state Y ] + [ state X ] + .... earlier states are irrelevant. + + 1. No pins worked for Z, so it does not have a pin. + 2. We want to reset state Y to unpinned, and pin another candidate. + 3. State X holds what state Y was before the pin, but does not + have the incompatibility information gathered in state Y. + + Each iteration of the loop will: + + 1. Identify Z. The incompatibility is not always caused by the latest + state. For example, given three requirements A, B and C, with + dependencies A1, B1 and C1, where A1 and B1 are incompatible: the + last state might be related to C, so we want to discard the + previous state. + 2. Discard Z. + 3. Discard Y but remember its incompatibility information gathered + previously, and the failure we're dealing with right now. + 4. Push a new state Y' based on X, and apply the incompatibility + information from Y to Y'. + 5a. If this causes Y' to conflict, we need to backtrack again. Make Y' + the new Z and go back to step 2. + 5b. If the incompatibilities apply cleanly, end backtracking. + """ + incompatible_reqs: Iterable[CT | RT] = itertools.chain( + (c.parent for c in causes if c.parent is not None), + (c.requirement for c in causes), + ) + incompatible_deps = {self._p.identify(r) for r in incompatible_reqs} + while len(self._states) >= 3: + # Remove the state that triggered backtracking. + del self._states[-1] + + # Optimistically backtrack to a state that caused the incompatibility + broken_state = self.state + while True: + # Retrieve the last candidate pin and known incompatibilities. + try: + broken_state = self._states.pop() + name, candidate = broken_state.mapping.popitem() + except (IndexError, KeyError): + raise ResolutionImpossible(causes) from None + + if ( + not self._optimistic_backjumping_ratio + and name not in incompatible_deps + ): + # For safe backjumping only backjump if the current dependency + # is not the same as the incompatible dependency + break + + # On the first time a non-safe backjump is done the state + # is saved so we can restore it later if the resolution fails + if ( + self._optimistic_backjumping_ratio + and self._save_states is None + and name not in incompatible_deps + ): + self._save_state() + + # If the current dependencies and the incompatible dependencies + # are overlapping then we have likely found a cause of the + # incompatibility + current_dependencies = { + self._p.identify(d) for d in self._p.get_dependencies(candidate) + } + if not current_dependencies.isdisjoint(incompatible_deps): + break + + # Fallback: We should not backtrack to the point where + # broken_state.mapping is empty, so stop backtracking for + # a chance for the resolution to recover + if not broken_state.mapping: + break + + # Guard: We need at least two state to remain to both + # backtrack and push a new state + if len(self._states) <= 1: + raise ResolutionImpossible(causes) + + incompatibilities_from_broken = [ + (k, list(v.incompatibilities)) for k, v in broken_state.criteria.items() + ] + + # Also mark the newly known incompatibility. + incompatibilities_from_broken.append((name, [candidate])) + + self._push_new_state() + success = self._patch_criteria(incompatibilities_from_broken) + + # It works! Let's work on this new state. + if success: + return True + + # State does not work after applying known incompatibilities. + # Try the still previous state. + + # No way to backtrack anymore. + return False + + def _extract_causes( + self, criteron: list[Criterion[RT, CT]] + ) -> list[RequirementInformation[RT, CT]]: + """Extract causes from list of criterion and deduplicate""" + return list({id(i): i for c in criteron for i in c.information}.values()) + + def resolve(self, requirements: Iterable[RT], max_rounds: int) -> State[RT, CT, KT]: + if self._states: + raise RuntimeError("already resolved") + + self._r.starting() + + # Initialize the root state. + self._states = [ + State( + mapping=collections.OrderedDict(), + criteria={}, + backtrack_causes=[], + ) + ] + for r in requirements: + try: + self._add_to_criteria(self.state.criteria, r, parent=None) + except RequirementsConflicted as e: + raise ResolutionImpossible(e.criterion.information) from e + + # The root state is saved as a sentinel so the first ever pin can have + # something to backtrack to if it fails. The root state is basically + # pinning the virtual "root" package in the graph. + self._push_new_state() + + # Variables for optimistic backjumping + optimistic_rounds_cutoff: int | None = None + optimistic_backjumping_start_round: int | None = None + + for round_index in range(max_rounds): + self._r.starting_round(index=round_index) + + # Handle if optimistic backjumping has been running for too long + if self._optimistic_backjumping_ratio and self._save_states is not None: + if optimistic_backjumping_start_round is None: + optimistic_backjumping_start_round = round_index + optimistic_rounds_cutoff = int( + (max_rounds - round_index) * self._optimistic_backjumping_ratio + ) + + if optimistic_rounds_cutoff <= 0: + self._rollback_states() + continue + elif optimistic_rounds_cutoff is not None: + if ( + round_index - optimistic_backjumping_start_round + >= optimistic_rounds_cutoff + ): + self._rollback_states() + continue + + unsatisfied_names = [ + key + for key, criterion in self.state.criteria.items() + if not self._is_current_pin_satisfying(key, criterion) + ] + + # All criteria are accounted for. Nothing more to pin, we are done! + if not unsatisfied_names: + self._r.ending(state=self.state) + return self.state + + # keep track of satisfied names to calculate diff after pinning + satisfied_names = set(self.state.criteria.keys()) - set(unsatisfied_names) + + if len(unsatisfied_names) > 1: + narrowed_unstatisfied_names = list( + self._p.narrow_requirement_selection( + identifiers=unsatisfied_names, + resolutions=self.state.mapping, + candidates=IteratorMapping( + self.state.criteria, + operator.attrgetter("candidates"), + ), + information=IteratorMapping( + self.state.criteria, + operator.attrgetter("information"), + ), + backtrack_causes=self.state.backtrack_causes, + ) + ) + else: + narrowed_unstatisfied_names = unsatisfied_names + + # If there are no unsatisfied names use unsatisfied names + if not narrowed_unstatisfied_names: + raise RuntimeError("narrow_requirement_selection returned 0 names") + + # If there is only 1 unsatisfied name skip calling self._get_preference + if len(narrowed_unstatisfied_names) > 1: + # Choose the most preferred unpinned criterion to try. + name = min(narrowed_unstatisfied_names, key=self._get_preference) + else: + name = narrowed_unstatisfied_names[0] + + failure_criterion = self._attempt_to_pin_criterion(name) + + if failure_criterion: + causes = self._extract_causes(failure_criterion) + # Backjump if pinning fails. The backjump process puts us in + # an unpinned state, so we can work on it in the next round. + self._r.resolving_conflicts(causes=causes) + + try: + success = self._backjump(causes) + except ResolutionImpossible: + if self._optimistic_backjumping_ratio and self._save_states: + failed_optimistic_backjumping = True + else: + raise + else: + failed_optimistic_backjumping = bool( + not success + and self._optimistic_backjumping_ratio + and self._save_states + ) + + if failed_optimistic_backjumping and self._save_states: + self._rollback_states() + else: + self.state.backtrack_causes[:] = causes + + # Dead ends everywhere. Give up. + if not success: + raise ResolutionImpossible(self.state.backtrack_causes) + else: + # discard as information sources any invalidated names + # (unsatisfied names that were previously satisfied) + newly_unsatisfied_names = { + key + for key, criterion in self.state.criteria.items() + if key in satisfied_names + and not self._is_current_pin_satisfying(key, criterion) + } + self._remove_information_from_criteria( + self.state.criteria, newly_unsatisfied_names + ) + # Pinning was successful. Push a new state to do another pin. + self._push_new_state() + + self._r.ending_round(index=round_index, state=self.state) + + raise ResolutionTooDeep(max_rounds) + + +class Resolver(AbstractResolver[RT, CT, KT]): + """The thing that performs the actual resolution work.""" + + base_exception = ResolverException + + def resolve( # type: ignore[override] + self, + requirements: Iterable[RT], + max_rounds: int = 100, + ) -> Result[RT, CT, KT]: + """Take a collection of constraints, spit out the resolution result. + + The return value is a representation to the final resolution result. It + is a tuple subclass with three public members: + + * `mapping`: A dict of resolved candidates. Each key is an identifier + of a requirement (as returned by the provider's `identify` method), + and the value is the resolved candidate. + * `graph`: A `DirectedGraph` instance representing the dependency tree. + The vertices are keys of `mapping`, and each edge represents *why* + a particular package is included. A special vertex `None` is + included to represent parents of user-supplied requirements. + * `criteria`: A dict of "criteria" that hold detailed information on + how edges in the graph are derived. Each key is an identifier of a + requirement, and the value is a `Criterion` instance. + + The following exceptions may be raised if a resolution cannot be found: + + * `ResolutionImpossible`: A resolution cannot be found for the given + combination of requirements. The `causes` attribute of the + exception is a list of (requirement, parent), giving the + requirements that could not be satisfied. + * `ResolutionTooDeep`: The dependency tree is too deeply nested and + the resolver gave up. This is usually caused by a circular + dependency, but you can try to resolve this by increasing the + `max_rounds` argument. + """ + resolution = Resolution(self.provider, self.reporter) + state = resolution.resolve(requirements, max_rounds=max_rounds) + return _build_result(state) + + +def _has_route_to_root( + criteria: Mapping[KT, Criterion[RT, CT]], + key: KT | None, + all_keys: dict[int, KT | None], + connected: set[KT | None], +) -> bool: + if key in connected: + return True + if key not in criteria: + return False + assert key is not None + for p in criteria[key].iter_parent(): + try: + pkey = all_keys[id(p)] + except KeyError: + continue + if pkey in connected: + connected.add(key) + return True + if _has_route_to_root(criteria, pkey, all_keys, connected): + connected.add(key) + return True + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py new file mode 100644 index 0000000..18c74d4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py @@ -0,0 +1,209 @@ +from __future__ import annotations + +import itertools +from collections import namedtuple +from typing import ( + TYPE_CHECKING, + Callable, + Generic, + Iterable, + Iterator, + Mapping, + NamedTuple, + Sequence, + TypeVar, + Union, +) + +KT = TypeVar("KT") # Identifier. +RT = TypeVar("RT") # Requirement. +CT = TypeVar("CT") # Candidate. + +Matches = Union[Iterable[CT], Callable[[], Iterable[CT]]] + +if TYPE_CHECKING: + from .resolvers.criterion import Criterion + + class RequirementInformation(NamedTuple, Generic[RT, CT]): + requirement: RT + parent: CT | None + + class State(NamedTuple, Generic[RT, CT, KT]): + """Resolution state in a round.""" + + mapping: dict[KT, CT] + criteria: dict[KT, Criterion[RT, CT]] + backtrack_causes: list[RequirementInformation[RT, CT]] + +else: + RequirementInformation = namedtuple( + "RequirementInformation", ["requirement", "parent"] + ) + State = namedtuple("State", ["mapping", "criteria", "backtrack_causes"]) + + +class DirectedGraph(Generic[KT]): + """A graph structure with directed edges.""" + + def __init__(self) -> None: + self._vertices: set[KT] = set() + self._forwards: dict[KT, set[KT]] = {} # -> Set[] + self._backwards: dict[KT, set[KT]] = {} # -> Set[] + + def __iter__(self) -> Iterator[KT]: + return iter(self._vertices) + + def __len__(self) -> int: + return len(self._vertices) + + def __contains__(self, key: KT) -> bool: + return key in self._vertices + + def copy(self) -> DirectedGraph[KT]: + """Return a shallow copy of this graph.""" + other = type(self)() + other._vertices = set(self._vertices) + other._forwards = {k: set(v) for k, v in self._forwards.items()} + other._backwards = {k: set(v) for k, v in self._backwards.items()} + return other + + def add(self, key: KT) -> None: + """Add a new vertex to the graph.""" + if key in self._vertices: + raise ValueError("vertex exists") + self._vertices.add(key) + self._forwards[key] = set() + self._backwards[key] = set() + + def remove(self, key: KT) -> None: + """Remove a vertex from the graph, disconnecting all edges from/to it.""" + self._vertices.remove(key) + for f in self._forwards.pop(key): + self._backwards[f].remove(key) + for t in self._backwards.pop(key): + self._forwards[t].remove(key) + + def connected(self, f: KT, t: KT) -> bool: + return f in self._backwards[t] and t in self._forwards[f] + + def connect(self, f: KT, t: KT) -> None: + """Connect two existing vertices. + + Nothing happens if the vertices are already connected. + """ + if t not in self._vertices: + raise KeyError(t) + self._forwards[f].add(t) + self._backwards[t].add(f) + + def iter_edges(self) -> Iterator[tuple[KT, KT]]: + for f, children in self._forwards.items(): + for t in children: + yield f, t + + def iter_children(self, key: KT) -> Iterator[KT]: + return iter(self._forwards[key]) + + def iter_parents(self, key: KT) -> Iterator[KT]: + return iter(self._backwards[key]) + + +class IteratorMapping(Mapping[KT, Iterator[CT]], Generic[RT, CT, KT]): + def __init__( + self, + mapping: Mapping[KT, RT], + accessor: Callable[[RT], Iterable[CT]], + appends: Mapping[KT, Iterable[CT]] | None = None, + ) -> None: + self._mapping = mapping + self._accessor = accessor + self._appends: Mapping[KT, Iterable[CT]] = appends or {} + + def __repr__(self) -> str: + return "IteratorMapping({!r}, {!r}, {!r})".format( + self._mapping, + self._accessor, + self._appends, + ) + + def __bool__(self) -> bool: + return bool(self._mapping or self._appends) + + def __contains__(self, key: object) -> bool: + return key in self._mapping or key in self._appends + + def __getitem__(self, k: KT) -> Iterator[CT]: + try: + v = self._mapping[k] + except KeyError: + return iter(self._appends[k]) + return itertools.chain(self._accessor(v), self._appends.get(k, ())) + + def __iter__(self) -> Iterator[KT]: + more = (k for k in self._appends if k not in self._mapping) + return itertools.chain(self._mapping, more) + + def __len__(self) -> int: + more = sum(1 for k in self._appends if k not in self._mapping) + return len(self._mapping) + more + + +class _FactoryIterableView(Iterable[RT]): + """Wrap an iterator factory returned by `find_matches()`. + + Calling `iter()` on this class would invoke the underlying iterator + factory, making it a "collection with ordering" that can be iterated + through multiple times, but lacks random access methods presented in + built-in Python sequence types. + """ + + def __init__(self, factory: Callable[[], Iterable[RT]]) -> None: + self._factory = factory + self._iterable: Iterable[RT] | None = None + + def __repr__(self) -> str: + return f"{type(self).__name__}({list(self)})" + + def __bool__(self) -> bool: + try: + next(iter(self)) + except StopIteration: + return False + return True + + def __iter__(self) -> Iterator[RT]: + iterable = self._factory() if self._iterable is None else self._iterable + self._iterable, current = itertools.tee(iterable) + return current + + +class _SequenceIterableView(Iterable[RT]): + """Wrap an iterable returned by find_matches(). + + This is essentially just a proxy to the underlying sequence that provides + the same interface as `_FactoryIterableView`. + """ + + def __init__(self, sequence: Sequence[RT]): + self._sequence = sequence + + def __repr__(self) -> str: + return f"{type(self).__name__}({self._sequence})" + + def __bool__(self) -> bool: + return bool(self._sequence) + + def __iter__(self) -> Iterator[RT]: + return iter(self._sequence) + + +def build_iter_view(matches: Matches[CT]) -> Iterable[CT]: + """Build an iterable view from the value returned by `find_matches()`.""" + if callable(matches): + return _FactoryIterableView(matches) + if not isinstance(matches, Sequence): + matches = list(matches) + return _SequenceIterableView(matches) + + +IterableView = Iterable diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE new file mode 100644 index 0000000..4415505 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Will McGugan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py new file mode 100644 index 0000000..73f58d7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py @@ -0,0 +1,177 @@ +"""Rich text and beautiful formatting in the terminal.""" + +import os +from typing import IO, TYPE_CHECKING, Any, Callable, Optional, Union + +from ._extension import load_ipython_extension # noqa: F401 + +__all__ = ["get_console", "reconfigure", "print", "inspect", "print_json"] + +if TYPE_CHECKING: + from .console import Console + +# Global console used by alternative print +_console: Optional["Console"] = None + +try: + _IMPORT_CWD = os.path.abspath(os.getcwd()) +except FileNotFoundError: + # Can happen if the cwd has been deleted + _IMPORT_CWD = "" + + +def get_console() -> "Console": + """Get a global :class:`~rich.console.Console` instance. This function is used when Rich requires a Console, + and hasn't been explicitly given one. + + Returns: + Console: A console instance. + """ + global _console + if _console is None: + from .console import Console + + _console = Console() + + return _console + + +def reconfigure(*args: Any, **kwargs: Any) -> None: + """Reconfigures the global console by replacing it with another. + + Args: + *args (Any): Positional arguments for the replacement :class:`~rich.console.Console`. + **kwargs (Any): Keyword arguments for the replacement :class:`~rich.console.Console`. + """ + from pip._vendor.rich.console import Console + + new_console = Console(*args, **kwargs) + _console = get_console() + _console.__dict__ = new_console.__dict__ + + +def print( + *objects: Any, + sep: str = " ", + end: str = "\n", + file: Optional[IO[str]] = None, + flush: bool = False, +) -> None: + r"""Print object(s) supplied via positional arguments. + This function has an identical signature to the built-in print. + For more advanced features, see the :class:`~rich.console.Console` class. + + Args: + sep (str, optional): Separator between printed objects. Defaults to " ". + end (str, optional): Character to write at end of output. Defaults to "\\n". + file (IO[str], optional): File to write to, or None for stdout. Defaults to None. + flush (bool, optional): Has no effect as Rich always flushes output. Defaults to False. + + """ + from .console import Console + + write_console = get_console() if file is None else Console(file=file) + return write_console.print(*objects, sep=sep, end=end) + + +def print_json( + json: Optional[str] = None, + *, + data: Any = None, + indent: Union[None, int, str] = 2, + highlight: bool = True, + skip_keys: bool = False, + ensure_ascii: bool = False, + check_circular: bool = True, + allow_nan: bool = True, + default: Optional[Callable[[Any], Any]] = None, + sort_keys: bool = False, +) -> None: + """Pretty prints JSON. Output will be valid JSON. + + Args: + json (str): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (int, optional): Number of spaces to indent. Defaults to 2. + highlight (bool, optional): Enable highlighting of output: Defaults to True. + skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. + ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. + check_circular (bool, optional): Check for circular references. Defaults to True. + allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. + default (Callable, optional): A callable that converts values that can not be encoded + in to something that can be JSON encoded. Defaults to None. + sort_keys (bool, optional): Sort dictionary keys. Defaults to False. + """ + + get_console().print_json( + json, + data=data, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + + +def inspect( + obj: Any, + *, + console: Optional["Console"] = None, + title: Optional[str] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = False, + value: bool = True, +) -> None: + """Inspect any Python object. + + * inspect() to see summarized info. + * inspect(, methods=True) to see methods. + * inspect(, help=True) to see full (non-abbreviated) help. + * inspect(, private=True) to see private attributes (single underscore). + * inspect(, dunder=True) to see attributes beginning with double underscore. + * inspect(, all=True) to see all attributes. + + Args: + obj (Any): An object to inspect. + title (str, optional): Title to display over inspect result, or None use type. Defaults to None. + help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. + methods (bool, optional): Enable inspection of callables. Defaults to False. + docs (bool, optional): Also render doc strings. Defaults to True. + private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. + dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. + sort (bool, optional): Sort attributes alphabetically. Defaults to True. + all (bool, optional): Show all attributes. Defaults to False. + value (bool, optional): Pretty print value. Defaults to True. + """ + _console = console or get_console() + from pip._vendor.rich._inspect import Inspect + + # Special case for inspect(inspect) + is_inspect = obj is inspect + + _inspect = Inspect( + obj, + title=title, + help=is_inspect or help, + methods=is_inspect or methods, + docs=is_inspect or docs, + private=private, + dunder=dunder, + sort=sort, + all=all, + value=value, + ) + _console.print(_inspect) + + +if __name__ == "__main__": # pragma: no cover + print("Hello, **World**") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py new file mode 100644 index 0000000..a583f1e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py @@ -0,0 +1,245 @@ +import colorsys +import io +from time import process_time + +from pip._vendor.rich import box +from pip._vendor.rich.color import Color +from pip._vendor.rich.console import Console, ConsoleOptions, Group, RenderableType, RenderResult +from pip._vendor.rich.markdown import Markdown +from pip._vendor.rich.measure import Measurement +from pip._vendor.rich.pretty import Pretty +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style +from pip._vendor.rich.syntax import Syntax +from pip._vendor.rich.table import Table +from pip._vendor.rich.text import Text + + +class ColorBox: + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + for y in range(0, 5): + for x in range(options.max_width): + h = x / options.max_width + l = 0.1 + ((y / 5) * 0.7) + r1, g1, b1 = colorsys.hls_to_rgb(h, l, 1.0) + r2, g2, b2 = colorsys.hls_to_rgb(h, l + 0.7 / 10, 1.0) + bgcolor = Color.from_rgb(r1 * 255, g1 * 255, b1 * 255) + color = Color.from_rgb(r2 * 255, g2 * 255, b2 * 255) + yield Segment("▄", Style(color=color, bgcolor=bgcolor)) + yield Segment.line() + + def __rich_measure__( + self, console: "Console", options: ConsoleOptions + ) -> Measurement: + return Measurement(1, options.max_width) + + +def make_test_card() -> Table: + """Get a renderable that demonstrates a number of features.""" + table = Table.grid(padding=1, pad_edge=True) + table.title = "Rich features" + table.add_column("Feature", no_wrap=True, justify="center", style="bold red") + table.add_column("Demonstration") + + color_table = Table( + box=None, + expand=False, + show_header=False, + show_edge=False, + pad_edge=False, + ) + color_table.add_row( + ( + "✓ [bold green]4-bit color[/]\n" + "✓ [bold blue]8-bit color[/]\n" + "✓ [bold magenta]Truecolor (16.7 million)[/]\n" + "✓ [bold yellow]Dumb terminals[/]\n" + "✓ [bold cyan]Automatic color conversion" + ), + ColorBox(), + ) + + table.add_row("Colors", color_table) + + table.add_row( + "Styles", + "All ansi styles: [bold]bold[/], [dim]dim[/], [italic]italic[/italic], [underline]underline[/], [strike]strikethrough[/], [reverse]reverse[/], and even [blink]blink[/].", + ) + + lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque in metus sed sapien ultricies pretium a at justo. Maecenas luctus velit et auctor maximus." + lorem_table = Table.grid(padding=1, collapse_padding=True) + lorem_table.pad_edge = False + lorem_table.add_row( + Text(lorem, justify="left", style="green"), + Text(lorem, justify="center", style="yellow"), + Text(lorem, justify="right", style="blue"), + Text(lorem, justify="full", style="red"), + ) + table.add_row( + "Text", + Group( + Text.from_markup( + """Word wrap text. Justify [green]left[/], [yellow]center[/], [blue]right[/] or [red]full[/].\n""" + ), + lorem_table, + ), + ) + + def comparison(renderable1: RenderableType, renderable2: RenderableType) -> Table: + table = Table(show_header=False, pad_edge=False, box=None, expand=True) + table.add_column("1", ratio=1) + table.add_column("2", ratio=1) + table.add_row(renderable1, renderable2) + return table + + table.add_row( + "Asian\nlanguage\nsupport", + ":flag_for_china: 该库支持中文,日文和韩文文本!\n:flag_for_japan: ライブラリは中国語、日本語、韓国語のテキストをサポートしています\n:flag_for_south_korea: 이 라이브러리는 중국어, 일본어 및 한국어 텍스트를 지원합니다", + ) + + markup_example = ( + "[bold magenta]Rich[/] supports a simple [i]bbcode[/i]-like [b]markup[/b] for [yellow]color[/], [underline]style[/], and emoji! " + ":+1: :apple: :ant: :bear: :baguette_bread: :bus: " + ) + table.add_row("Markup", markup_example) + + example_table = Table( + show_edge=False, + show_header=True, + expand=False, + row_styles=["none", "dim"], + box=box.SIMPLE, + ) + example_table.add_column("[green]Date", style="green", no_wrap=True) + example_table.add_column("[blue]Title", style="blue") + example_table.add_column( + "[cyan]Production Budget", + style="cyan", + justify="right", + no_wrap=True, + ) + example_table.add_column( + "[magenta]Box Office", + style="magenta", + justify="right", + no_wrap=True, + ) + example_table.add_row( + "Dec 20, 2019", + "Star Wars: The Rise of Skywalker", + "$275,000,000", + "$375,126,118", + ) + example_table.add_row( + "May 25, 2018", + "[b]Solo[/]: A Star Wars Story", + "$275,000,000", + "$393,151,347", + ) + example_table.add_row( + "Dec 15, 2017", + "Star Wars Ep. VIII: The Last Jedi", + "$262,000,000", + "[bold]$1,332,539,889[/bold]", + ) + example_table.add_row( + "May 19, 1999", + "Star Wars Ep. [b]I[/b]: [i]The phantom Menace", + "$115,000,000", + "$1,027,044,677", + ) + + table.add_row("Tables", example_table) + + code = '''\ +def iter_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + for value in iter_values: + yield False, previous_value + previous_value = value + yield True, previous_value''' + + pretty_data = { + "foo": [ + 3.1427, + ( + "Paul Atreides", + "Vladimir Harkonnen", + "Thufir Hawat", + ), + ], + "atomic": (False, True, None), + } + table.add_row( + "Syntax\nhighlighting\n&\npretty\nprinting", + comparison( + Syntax(code, "python3", line_numbers=True, indent_guides=True), + Pretty(pretty_data, indent_guides=True), + ), + ) + + markdown_example = """\ +# Markdown + +Supports much of the *markdown* __syntax__! + +- Headers +- Basic formatting: **bold**, *italic*, `code` +- Block quotes +- Lists, and more... + """ + table.add_row( + "Markdown", comparison("[cyan]" + markdown_example, Markdown(markdown_example)) + ) + + table.add_row( + "+more!", + """Progress bars, columns, styled logging handler, tracebacks, etc...""", + ) + return table + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.panel import Panel + + console = Console( + file=io.StringIO(), + force_terminal=True, + ) + test_card = make_test_card() + + # Print once to warm cache + start = process_time() + console.print(test_card) + pre_cache_taken = round((process_time() - start) * 1000.0, 1) + + console.file = io.StringIO() + + start = process_time() + console.print(test_card) + taken = round((process_time() - start) * 1000.0, 1) + + c = Console(record=True) + c.print(test_card) + + console = Console() + console.print(f"[dim]rendered in [not dim]{pre_cache_taken}ms[/] (cold cache)") + console.print(f"[dim]rendered in [not dim]{taken}ms[/] (warm cache)") + console.print() + console.print( + Panel.fit( + "[b magenta]Hope you enjoy using Rich![/]\n\n" + "Please consider sponsoring me if you get value from my work.\n\n" + "Even the price of a ☕ can brighten my day!\n\n" + "https://github.com/sponsors/willmcgugan", + border_style="red", + title="Help ensure Rich is maintained", + ) + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2883716484245b9c9f5d1e09fa5c092de42d800e GIT binary patch literal 7029 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 I!wSkj0Od=c4FCWD literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64fd36327e79d03c7f542c63d7642981d1d70327 GIT binary patch literal 9564 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

    +r^m*ZD{oE|swJqJ?v=dif0dU(KGX!~L6Q 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d9c1a22e30ba29e760b222dacb4167e4f607e0e GIT binary patch literal 4161 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 CJg+7I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..13f8c125380455195a134952975cde246f5a9c6b GIT binary patch literal 1899 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e045cdccfee61537d6baf905bfe09545a2894520 GIT binary patch literal 879 zcmZWn&ubGw6rS1LY?`GhRIq3(WuYEiFuV4Lo}^MsEmg^-f|!HLHZw`K-Rv$ilh%Y3 zf_SL(QZKep1ie*?e~Fj&Aj(=#z0_MZ3fhalO*g&t!Myq2yf@#xZ)QGbvl;>$lK)lS zVT2Cjplj&_w4ValL!E$sokWgkgm%{rjgSgxmC*aV&Dtorb^?)o~R3$?PT zY2V|`296W~oALlMv(%@|5dn+Rytc4Niy~4P6*cA?az39gg1R$P0gb?Dhu|I{4C=&L zzT4L-Cipep1f}P5P22#Tt5Q=UQX>UO7IK%piMA1un=(?X_@)$s>;1siJP zM#x-W=%PY(>N#PoE!JV`*UpPAyMEcoyGOv^$efioWOK9>NmXu0EIv6(btnymK{pU_ z;V==U6ZS|;fL-NWfdU=uq-3oGY>9_Xk#cK(Ciiga?#p+#DUVxGQK5HZQ?5aVvB~%Z4%%FpIgxie<-&m>JfiR0pv>IJXxD zp9FV={c$Adp4 f6_0O>A0wFF&h43#`&aM$jDxm}q@hlhT?C&0f1c%q literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0dc8e63d86d31d18896c7bd3ce5474237f26abb GIT binary patch literal 28816 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 LBgfY=UF81&<1;Nf literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92fe767140ec33b2a22833fd301c7a43e0d11258 GIT binary patch literal 2504 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 Dtr%E6 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19148e702972318ff7df09e02f8ce9c7d5102b37 GIT binary patch literal 3350 zcmbVOZEO_B8J@k{`@Zwp*a!Z?UJeSJvG2-PqN22^!32nbq}a6Ku(es=?)lc<+r7^2 z+1S~W&KN01p(?Z~wgpPvPzfi{LfapSs#aD1wts9)6?+9L(NQJ-XF`9p>5ulEIp1Mu zP^FG^bF=TfU-Qm9&&;0#0WX5qVE=dOXaJ!C`6xAKalkwtVi1}{A`%$|rI|Rxkg-j% z#cl9!SL|sv&Vq~;9f~9Ej63PrskqYaxI68Mdl+Oxl5L=-?<6o|>%`E1&WBwY9!hEmlPgdQQZuCq6;r|M9TyiH8x}h%K^ynZ%4RmQPSs z%@7P(Q}yHU?LJ~iSm;xvWl}&8coa>`@QR=t5u4>sNQ%NMl4^MqDG-xSebm#VxAb)F zfIhKWb-ExHdZ-`s_)jqCL=4$$CdU|bl5_+1@~}KGk;#-QnX{R;v4f^%aIn0M9N~pLbV+ISj%Q2PKzb0u-q9TcC>x}-nK4syb^5(G*RN)RY4ii zWjz)hlGLG?BKO5IBSuP7cSm>bia|K34RRk8`XxP)fc;_w#-#D-ElYF3pGymUh19MGh4k7YMbz` zc#to&;N||QlZa>Ao7y)sf81n)KC$)`lUl$x^Y}f=ZT)aIP5S@{pKUo7u;4IOIRnnH z(A=@B)V zzv(D?DQS)ZKj$15_L^WZ*a56~%CzAQ!&A!G^q9;|TNw=j!&jaub0y>nd`huckqeqG z?1mVuS!Q7dnH9L0eXtZ4Vm6pA1ELq3S)QR8xh}M@=tBOhd_A2%`1!Hv(3uODO&9dj z&qn?)?GIUG+PhH1E?k98IwZpp1Gwr2CIHov6vC|lCIA#SEQ>~p+n$yLJ&Prgz>;!a zq?N;xk;TMPk#)mMjz8FvN%&9dlA#kU0zVL>t~%FKT2>LcJ`iLS8F<1V4go_F=8_ub zKm?#o%0+j>GB5z40g3CUNz!DZUK*<%_v`!Uh(soM-N$v8_y?RwXN0t@N=4ig6>416 z5rza=Ask;!chxOXA}y&Y;y&(3lIzA$_Ys)OYXyxFi2NQOrb7o`04`&@J_ZN;uwOF!7y%OBg zdavm)dCFKmQ67?kD~TH329kRC>HmTb2(BK5x8z@23^aZc*gPNDoPT9;U3I?mUS)0m z$it1{nLSrde}OnhblzPD6lYxQURvKg!(R9O%y%uYus%BBTdZ%M*)d<=HW6IhvitU1 z^IP`Mxi@|4+w#D_Vfq_0-B(_o_qUwyTydhxhN+Wxg5gI_R8#vf+&bI+ap-RN<%^y7 zw#IJz7Ph|h1#*UB)7~j|N?dB-mKwt|d#@f_YG__+*?qg?Mr^wCLF1;Mcg@yZJ2l@J zoj&*|0P2s{q1ug0wM|pmtAVBPj@gcDu}hs+Rpa|12vfD;V)os@Qq#6s_KJ4Nx6;nQ zI#xOumS4Nk>%#$7Lrw-hlh#l06bYVc&LzBXYbBZ!yiOgdeAL9pa8Hy!8Y1ddc&QjZ;;cnYP15{paZSm-U!njaToCs zg|J1C*kK+w!l%XdX_|s#FdX#|Y9r>ok!s7!^T{kwp2YLmP84levYf_9251wLx1QzT z$y>3ALISoIu%a@E^-ql6vDe*axlb!XQ~U2$H0KX3vc9*EjUAg?*L{~gxx{+T ux6Flh-rlv~ec>+q;?rtJ$Bv#mUe-_EW&0n1@zc`7e_@ZT)FHN>=Kmj@rIf`0 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6c2c734e605f944db6621ad3d043307d54dbbf1 GIT binary patch literal 1622 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 Nfi)G@Qj8j5`7gek@Av=! literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..232a81b7e6387937676a12a1fdc92755fbbe5c0b GIT binary patch literal 9135 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfc9ec48105507e52dcdfd17678fd66e0313c015 GIT binary patch literal 11725 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5e34fdc370013b0fc9b1d70816d418a006e95f8 GIT binary patch literal 26522 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b140874712e9bb120b01fb16579faeb2e4ad9181 GIT binary patch literal 1715 zcmah}&2Jk;6rbJMwH@cfBv2JZRZWu?;l{D^L7EUEM4Cng1Ub~n#eg`hRe7Z)Pt<;>68hxa0zFX19rh1k6fr-n@Bl_Ra78-uyT` z97izT#DA5qD+v9<7cYkzD!tpF93lf5l7%W#PO8W`Swb?pj|}+$8JJ4XaNwK6btS3( z$`?u5kFV<$YHZZ17WGvz6#}YPTqw7B0B?wk^?3}{2a<7rXw|VCw!uuu*=uAr z%9Jo_q)3TTYNv>98zgVlC@DCVs$)~zbBR+VI;eZNCkiz`< z#DV32_1*$;h<4HEu-cRM7H4bT6GMnt=PI%cTG2w-lq0;#xnDnYTYY4_FQ^qHshKeor2(pdI{pIW;LUM zo8hnwGYjR6$WaS(OjqkZF4LXHEB)xE!7{>AngsC;>PFBt@*?*7WBhotd9O1%)|_j) z&E(NqYvSm=mUq0``m&vvX~$-I;Epcg$*=eycs>D|?#e=9koaj7@KhQ$FK&P(VEEwv zT~c&dMfcM2I0uN22cmZF(z$^fU5_o16`Qb9J_t_{nl7cu*48+f-kzDBPR-7xX6NUV z<6B$l^U#LEch98MnUrMw-Yfy)ydG>6R=}T9{vRlTqhHd>(23LJ2BagO|n-Z=n_i2@&cuxo%>k_oRb=Z2m$MY8FY8eAWywV&>m!3^vBHq0VrOA&qQo0I3k?B09=X3p9|hpUKx6h*t{l| z*`S61yT?Zi}XVT?-?_x=kenvO{h>S~%&80sPOyc;z0m6*C00000 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ae76511448f26783f73edc10a36ab28d97e8625 GIT binary patch literal 8601 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 P5j(af8? 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�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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..76bfeb79f885363f9a3ae9d6e85d461485f803bf GIT binary patch literal 2272 zcmaJ?OKclO7@mFlnTJy9K$5~n;ZTRh?u&;4s$@cFp(IpE5MmFkHr`3Rsdv}RuA91~ zRY4I7QW5l0U*SZn3Q;5^+7s=WONtMPR-hIkB#JnsN|8`6@c+9T#|bH8`JewWkAME} zo7o@Q+L8oXukcSPE)nu88XFDlpsl|PU7Z-j;L60}RLZ%ej901hoyy^yxC4s#U0;4($o*R?A*7%p{bt$XK5OrA{bOIfJOY!Ks3g#6ue* z6{++DL=DN1XJjL`D5-LSZ2pXt5nmM5*rq2zjI@yeU%Vz~+x!G(=P}*1&-~F;6|Y2< zdDHMpiZi3=3TtMpcn;XJ<|%3`cGa4u3`Z18I@60#3pbZcD$ojS)*TKsv|6U`-Fo=! zuu^CZJJWNt=;fL-!yNXSwzp4lA~;~q6r^YAr%kJBMQOs2mMpTEX1Hrkd4u1zY(tqh6KS4^lLnDqswE~c@ z=9+Fk2jxDMFPqbOU|h+u59JOV%)6#XhhXwaeHP|d%t~H^VTQx<%q*7j#SL6@m6{*d zG}AUcO*_-o1Ua|i>wD)W`xqw{fXkMtB>Hf5fUVE8a3ZQm;n)T#ZmTD=ctxssE1K zIim$(WBw>SEbjw2m-ssWktD(CYUFuxLHbIV=NJ|#D+iDUQ2Oa=#n3&fg}f0g)Akd< z$;bvC;U&+CY!^)QV~7Sm2C$$|_j$4=lXT~&!ygYXr}nINW$O8h`9`|`Zr{L4-~QWu`@h|FZR$Jq8}(-Q zN@3!5VWM$hve7rSG`8CPWc}R5bDtYuI$t=~&NjM7SJIJkgN4J~t$keK zpm=LY27L=F5XsMYI>NL6{^V zeo~0v`d2f1Rx*RP zGlQ28e?5FF7_H{p)~^i^jflxJQHmAi@VbqPIdU9!|0#IeUP^mh}P2NLvQ2DtAye9dI9Rx$0_ zAY+Di%8$*3UulNq@naDz0s1XP4C;r82lWfjGKeNtJviUP_)B4#j<6i~@TqaJ25SPx iad*hzZ>0ZcqWmIs-Vw(e;`jr(m+Sp3{TG2QSma*=S`CQ+ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d91e73446c89294363f02e1a960a2fe4413682fd GIT binary patch literal 9245 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd919a8577bc386990e200ce887a7b980c95c4a1 GIT binary patch literal 10798 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 N^cnJ>%zc&I{{i4;9&Z2u literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57cdf9a72f489a07bdbec80e444d4cfed3f6fe41 GIT binary patch literal 10542 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9aba342326ad6147bd65bbda43287073978b85ea GIT binary patch literal 1534 zcmZt`U2hvjaPPzCiybEiM+t>+1DV-NH^azyR$Pl_al)I zVDP;3cT11~_>~Jjh&|?DkulrA0ES?KdY1}yfytsNT2fsSxK1)!86svS#raY&W zQJ3ba3WMd5*bgzC*-U}4OQ)#jMF zP)^lyllcrCq|ck(NhFAva4pm}b;9d=^X#E;wipXz_M-vJ#|-nSqN3wcg-tcIS7@Nk9}X*A zFD)Q~`P5L=PeB#8;}U4a0yNm0eX9DyPy1K~&DJgGQkfGfF@?*|h;le=C08B12*Q`W7rFPsa_0lNyoFEVtfzF|4WvI*b9 z2`2LW=o|xU_#6$o*Su-$|oC$)OLX_az{o I#Bmn%53H$&^Z)<= literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3b631c4b4e26c2a2d5f1b129b6ed8529838952d GIT binary patch literal 4092 zcmZ`+U2Gf25#IYDd8GI!+4`Xz+h^H{#Mq{sC{A3}b*$QoZ6#JxNe+-Jf&;@_Nu-aY zvU{>cf=5+ZMPEV zdkA4a*kp6k?kJ{=6zof^X1f#jk%&xa(rWqTwp(yQY(@ekDQo*B{IUc7V}&E$m(BE6 zW8lv^Nqh;c)p|?zJ{vn}qVTQF^E{sJ^yi8FcT-Y0{-BnxV=3oP!bx_+S|=XV`ue$+ zf{U0(3)u?Z<=nzG>c_x+D1NVny*f0 z?Z%goXt7?;RaH_}sv^4<8(LvQ9pC@I=|7<^XuD!t=a0 zbAgsF^xFAXdcjkZa5e3-{%a7Q_)s`3f+b?CLlh40S>WbjKrVIh8iYeVkNC0L{W$WrJ->d zkzr|6qhY~?t-!cuMJ@%52yL>OKr>7OXCbPHesF9Uq8qF>zrM~t`uGdG!KZs__k$(nT_(yhJWaX|?*V0iEYd6E%-*|-DJo}HqYr6QyQV#ub&x*2=$L)l_@WEJ35`ob7#Y-YH~fGb6MM_mOku~ zba)FqSQ9vo=|EiVSy~xntjt6_x!Q{ZBWDJN$3|Ucf;xyuPVMn6(>dNfdWr22OPFT9 zly^+C8W%Xu_+$LaD?nyReHUp>&8e5eE3KW-MONB(K^LvdO8BY2q;@Sh*LKXEygXD7 zlIXU@rd=!1fC?h)cYgLoky0UN8TE$Do3 zSfM4g_|SnHV>eDOb{<}Cd2%uOWL*LIJ&p&x8XxE&zwhW6IHZV($*lt$K4L(Kpy)tN z;%tO~%I6@{>FYS-o9_2P zpkeCvfd)u*7_K3f71@r%>K5e(befsS=v}9&ZI|_aUd-FH(!Zx`1HvOB-nT#pmh0EQ zW>s%dz4793Z$AhMNbFlt&Z6KKcxsfK&4u?kde6W5P-BT|%)9x<@Ci`i2_Um%Z97Ts zTCkQAdl$96B0=ZYT?`8A?(c#D)J%|*3czh`Z_Aeajsh2<3|B)(g=h48(y_E8ka<&L zP`wb23vXZ&Y+;)*>5Y%0Vk?kYveMkKu>IZCwbVlF`gax+-HTfHg9hT70w4IcK+^nL z^G3-{X&8*rL5KAM*=!2Dk#G-SNyA5t;R#ej=Yk=LZC9#qRu{FDw?FRZH%z>H;eWLR ziwB?Re}PDyr*20*yEs=RvEsZUa|;7 zPJqL}<0PJ%v?BcOhH{O1CFEs2&hZ56`5|eV_3W3hdvxW|%;(|uz&AdLH`fEuLq<%t&W|oUJZ~%|^m+(I8focVIIz^*T}Mrr7KyJm zA@?{5HrM5FVBbPtoj`ZJ?+ff!6<=O&lL9>pdshi`^`I2!T-b(uXFaF{2BejCy{-sm z|2IA6lW_Z5043f@@DNxR7PI-1X+jYTm8v~mEOEd-dVCB-Pe{U(#JsVvMO46RW{2GC7P3w~eq`BwT2=;YbB5HK5dRs|- zq{cs058YJ{{WadYFm@;2HG2xU54CeQgEy)-rhiqvS-n+T?m2o#JGauB0{A9^v!@_P z0?{9yef{iw_Z_wK!%$?d@5+%kk9_~N`B!g;I##sA2U==LOD*hux93{V^~bL5|FiZ8 PR2f>TzLTh(0{#C3>BGCC literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba97c8f8fbda47dab1851278d6a65cb17960be7c GIT binary patch literal 1859 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 pgD*b(>w{CGfHk4|;N1T>OiLcCz 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 HG@AcE+mfXT literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..823a57608f1cdc812143ca557a22e2c8a1c15b76 GIT binary patch literal 6049 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 T^TFNnbQ(ZVn7%pOHi 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1f799e41d4dc5e1003599ec6d3aa89236bbe1c3 GIT binary patch literal 14082 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..447f14ffc73678b787bbdf72b491450cd5c80597 GIT binary patch literal 9604 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 axy}tILAQdyrwt3czB!O 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5169a27fd085c4da1e5a73716c8c85abcc83bb9b GIT binary patch literal 6957 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ebdfe62e3b31feea0c00e9c355cb0a3c95e7ed06 GIT binary patch literal 1834 zcmZux%}*Og6rc5ec>RTGJ|HxqT8a|vR@jg#l^R8r42if@s1ofVzO0s=0T$M~?#u#R zD+elZ0QEq6f+NR9^q;6U0}s8WC7bSFu-PY+P{}0?sV+5A^^}C?lq)xsx+0MjnIlx*CRAb45%|GX zS0kwkQjMv7sm9VYy;dTGKcG6zxOyW~&ww|bX5DNfSI?n0mOF}_kb0J7S4Wb=IYx8e zGnQb6?OH+@OFlO&qlxlLJ8k=3z`UTXaTcs|Z{AKy z=!eJFcapHSFSE|R@j z;&~BvJcncu$pDgckKikdn?Sb7FUr_+^>Qbrs`-Q24gq#}|4(FHnP^vDqCED1#uuQ1 zv2b;#fLw$M07aoPQvoQ-wo=#PGsUw8=X9t-VY!7+1gsImX5v%9gb}Q;_>tkYMPRuu zqlWKAVi74h`3Y-?t8(Ykc5j!G=Mg1Xm$Y>{7!BL@@5#kYShmcB2Rz8*d< zPJgFQM=iZL0sRtgf!#iNL{|GnfFN1_CJaN4GcpE!i~9o@NqV;~plyqx5fxLJFH8Ie znE$7M2qLY)^VuT=he1~$T(-z_J-?UR%{`v`Nxu|CjnBg&hvvc2P(K&(D34%epSr&DU}gY-YC%aj-Z literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..236c9c9bcde97d07cffa9b543cd2af6a5c1f1599 GIT binary patch literal 5328 zcma)AeN0=|6~E8#!{69|4d&Z4AH^+!0Ab6rG;KmCNt4hvq+RN!^^D&GOrCA>-lM_D zma-{QoUH3W(TbyW3Y{jEC`=;SA4~ts{;RZq;*u%!ji}A4Nz48+Ayc<$Qg_aMeh^5s z?ZP|v+17UhL9N|5|NQff(bJW@)p^W zV8blsS(!`lVLl;*g@iS1g*r~;Wn01?wlhSsDgww0vLoRPI~igjeMGdLC!+1T#h4-N zlH8*GbPFNMQIK@VW#KZ&oiM5=?4dKbWN)H8TuynnT#={@S0;R6A1#;3{zO%{it--0 zIuQs5O0#%jmh!b(YAi&myk1&VxK^qi{jRyx^&DhsOquJjZcGeGJJOC&#RDva7@bqk zC>rE;Ss9PSqOlPv#Ok&I>CCv4j7d6wVth=NboYt3Uh9qY9O~^ka=5?m0geTITsaNBy16xFe_RlPU0m2|AyEaXvc5JBC_YX zuvO$FLF6Ud5GM*ywu^4j3b_N;

    f5c5^+VW8)amM}R)g^PIWzuq*8fmFd>kqM)TF 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 E4=*(3ng9R* literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb20ef414fa629e23897716429fe91aadb8a293a GIT binary patch literal 12743 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 z


    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 T|BrX?+x?K?c-Jr<^40w>$m&g} literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f15fffad21c4e4208856960da27c1c1265426c56 GIT binary patch literal 10403 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 AFaQ7m literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d2405ac0b0fb9dc1e1c61c94f28360481a9bd45a GIT binary patch literal 16008 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb2af6f20ac1de1644863c9e42421a1358d145e7 GIT binary patch literal 581 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 S&XxGWU$NFaEa>YPi2rYo(>M|U literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fef6fd0e8bcf2e673be481192f91887fb812a00a GIT binary patch literal 5939 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 M{QFzPy}Mlh0S+)$KmY&$ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..50ffda48a25349b9b54708b720c5d1b571a5a856 GIT binary patch literal 6082 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
    4r$LY(uVun<8^K9{K|MklG>P@$58sa-< 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cade0a44bf5d42970e39c1701f2426575badb94 GIT binary patch literal 2153 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 V_iukvabWWiukLTXh9mU_{|{TKVG#fT literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41c64ca5aecb0c18378e01ac48d38101a58db6f2 GIT binary patch literal 3362 zcma)8TWlOx89pp>$Wy)Mp(Pe z?PT2{tUKGRn;N@vJpqcyX?|q1;(C5!qV823yHxd~Q}gwz6)3POe&>Kwb@&vokmk`i z{%DDaXO-m=B&Nc_`Y|FGnZ=5V$%?9}6txaox2ahXGeWrCC@Ud5gvyX`tv z3s=vwy?ipM)2E-$xQ7M9=v1jZH^ZHI+td$;g`TX~Ua#JSr*emNnzG$Z%$nawFzs;b z|47j8=2>UFoUFc;$98zFRMiil`zLQ#2} z%xj))wxBIU&M2;`5Iaj*u7uH)Cp?RcHQ2H;o{Mq>`Po+GhUki)ZPhOoo`7SjM4KT6 zHy8CIu2r4pI1juNKu;USGXyTygFfo-+J$EvKIhg;Wy>v04)u-pAG^PA(kpqDa^HYs zT1G$J_YJq=7V@Vp`*fjNIaR1PyjjOSl)v}B0`0xkN5ONY8H%r0>IH+`OotbEr94~k z!h>UobCRz&{Dfgt?22a?XS;7XRr#jgh5GI%SY$UdY;WJ?r?2V{o{#)KvHMSYZ`+_} z--{o+eByU~5B>1;%AH5v?0NWnprpf){(8VVa+1k)^U zAm5!$$R(OV@DF`twIUKg9)j!e2nE60g$-{JOd%V_rqIeEOnaDEw79uHOq>I#zCVJ0 zqzSnWl6GNqR}+@C;3hco1qJ~LOW@Z5VV3`ZUj$$t^7sz8MIZ~?FV!cZt^oc)KvVr3 z{1<@Nq;LxS(|}P3agIoS5M1NE(BA@-pxz4*_Ky;yZ2y9Alpy%06!41T$C^N8{RqaN z0)9*&R(lwuhX4bRwBU8{hXKP<_%ir60Us9ve-Qk8031FFnE*cxcu5Lh1pgG^Yf^Xu z{Of?133xcwc?i!!7$eBVDb>F*5_@+KBrVuPmw*EbLf{X8*8zuw5a7TCHNe|K;7`#- z?$?YEf;u&f0~!5<+ACJE3O9>WOdI6#l7k~hK8&ESX>ur0wQ0)Dp? zdh(TsPX+mIF@X~77Ds}QgU zG=XT$&!Emp;RN{i0e=-jP@#)lyDU;R=GXAJAUs6z!FM6NB7`7E7mmFVu&l`q{}nub z2@f0+(W`Mtk3-Ue-_nIY2cakgnf5Z&uS(%_Fun>v(<$UL;9nu&xW#BSsF34~@h=G> zn59ebB82Aw&k~TEnD$%5gBKvsZNqhp?jqn-Nb(U9d;!9+6vXW3AfTb-ft}>vCI|v4 z=-|Bsydi`DJ?5CF`Jl>!3xH`nm-S;_qfUR}+TH?DviNE7?lnC5_fx)_<8}EDRK9;T z`ai^XBVQ5$-Gf7)?01gn~& zD1TuGR@i~RvHgE$AG)5|dSPH`>r(l`*h*&KV(Oh(mvU5DV*>MR*Zymft=A&y8)`>1 zcB6}6y=VI_^(yOLyN{)IT#IDMenU-?u{%M=-P=>@Vtnl$wq?(4Y+KaD4B4`~Mbhjo Waanb-lX7PliiS#fMG_=XfL;|u5&~@5 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 aTpPbP=qxkBQ-bGPm}c)UrK6P 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..638b2eaa9e76a8e996bb63d4283422c01ca8d508 GIT binary patch literal 11810 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 str: + """Replace emoji code in text.""" + get_emoji = EMOJI.__getitem__ + variants = {"text": "\uFE0E", "emoji": "\uFE0F"} + get_variant = variants.get + default_variant_code = variants.get(default_variant, "") if default_variant else "" + + def do_replace(match: Match[str]) -> str: + emoji_code, emoji_name, variant = match.groups() + try: + return get_emoji(emoji_name.lower()) + get_variant( + variant, default_variant_code + ) + except KeyError: + return emoji_code + + return _emoji_sub(do_replace, text) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py new file mode 100644 index 0000000..e7527e5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py @@ -0,0 +1,76 @@ +CONSOLE_HTML_FORMAT = """\ + + + + + + + +
    {code}
    + + +""" + +CONSOLE_SVG_FORMAT = """\ + + + + + + + + + {lines} + + + {chrome} + + {backgrounds} + + {matrix} + + + +""" + +_SVG_FONT_FAMILY = "Rich Fira Code" +_SVG_CLASSES_PREFIX = "rich-svg" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py new file mode 100644 index 0000000..cbd6da9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py @@ -0,0 +1,10 @@ +from typing import Any + + +def load_ipython_extension(ip: Any) -> None: # pragma: no cover + # prevent circular import + from pip._vendor.rich.pretty import install + from pip._vendor.rich.traceback import install as tr_install + + install() + tr_install() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py new file mode 100644 index 0000000..b17ee65 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py @@ -0,0 +1,24 @@ +from __future__ import annotations + +from typing import IO, Callable + + +def get_fileno(file_like: IO[str]) -> int | None: + """Get fileno() from a file, accounting for poorly implemented file-like objects. + + Args: + file_like (IO): A file-like object. + + Returns: + int | None: The result of fileno if available, or None if operation failed. + """ + fileno: Callable[[], int] | None = getattr(file_like, "fileno", None) + if fileno is not None: + try: + return fileno() + except Exception: + # `fileno` is documented as potentially raising a OSError + # Alas, from the issues, there are so many poorly implemented file-like objects, + # that `fileno()` can raise just about anything. + return None + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py new file mode 100644 index 0000000..27d65ce --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py @@ -0,0 +1,268 @@ +import inspect +from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature +from typing import Any, Collection, Iterable, Optional, Tuple, Type, Union + +from .console import Group, RenderableType +from .control import escape_control_codes +from .highlighter import ReprHighlighter +from .jupyter import JupyterMixin +from .panel import Panel +from .pretty import Pretty +from .table import Table +from .text import Text, TextType + + +def _first_paragraph(doc: str) -> str: + """Get the first paragraph from a docstring.""" + paragraph, _, _ = doc.partition("\n\n") + return paragraph + + +class Inspect(JupyterMixin): + """A renderable to inspect any Python Object. + + Args: + obj (Any): An object to inspect. + title (str, optional): Title to display over inspect result, or None use type. Defaults to None. + help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. + methods (bool, optional): Enable inspection of callables. Defaults to False. + docs (bool, optional): Also render doc strings. Defaults to True. + private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. + dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. + sort (bool, optional): Sort attributes alphabetically. Defaults to True. + all (bool, optional): Show all attributes. Defaults to False. + value (bool, optional): Pretty print value of object. Defaults to True. + """ + + def __init__( + self, + obj: Any, + *, + title: Optional[TextType] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = True, + value: bool = True, + ) -> None: + self.highlighter = ReprHighlighter() + self.obj = obj + self.title = title or self._make_title(obj) + if all: + methods = private = dunder = True + self.help = help + self.methods = methods + self.docs = docs or help + self.private = private or dunder + self.dunder = dunder + self.sort = sort + self.value = value + + def _make_title(self, obj: Any) -> Text: + """Make a default title.""" + title_str = ( + str(obj) + if (isclass(obj) or callable(obj) or ismodule(obj)) + else str(type(obj)) + ) + title_text = self.highlighter(title_str) + return title_text + + def __rich__(self) -> Panel: + return Panel.fit( + Group(*self._render()), + title=self.title, + border_style="scope.border", + padding=(0, 1), + ) + + def _get_signature(self, name: str, obj: Any) -> Optional[Text]: + """Get a signature for a callable.""" + try: + _signature = str(signature(obj)) + ":" + except ValueError: + _signature = "(...)" + except TypeError: + return None + + source_filename: Optional[str] = None + try: + source_filename = getfile(obj) + except (OSError, TypeError): + # OSError is raised if obj has no source file, e.g. when defined in REPL. + pass + + callable_name = Text(name, style="inspect.callable") + if source_filename: + callable_name.stylize(f"link file://{source_filename}") + signature_text = self.highlighter(_signature) + + qualname = name or getattr(obj, "__qualname__", name) + + # If obj is a module, there may be classes (which are callable) to display + if inspect.isclass(obj): + prefix = "class" + elif inspect.iscoroutinefunction(obj): + prefix = "async def" + else: + prefix = "def" + + qual_signature = Text.assemble( + (f"{prefix} ", f"inspect.{prefix.replace(' ', '_')}"), + (qualname, "inspect.callable"), + signature_text, + ) + + return qual_signature + + def _render(self) -> Iterable[RenderableType]: + """Render object.""" + + def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]: + key, (_error, value) = item + return (callable(value), key.strip("_").lower()) + + def safe_getattr(attr_name: str) -> Tuple[Any, Any]: + """Get attribute or any exception.""" + try: + return (None, getattr(obj, attr_name)) + except Exception as error: + return (error, None) + + obj = self.obj + keys = dir(obj) + total_items = len(keys) + if not self.dunder: + keys = [key for key in keys if not key.startswith("__")] + if not self.private: + keys = [key for key in keys if not key.startswith("_")] + not_shown_count = total_items - len(keys) + items = [(key, safe_getattr(key)) for key in keys] + if self.sort: + items.sort(key=sort_items) + + items_table = Table.grid(padding=(0, 1), expand=False) + items_table.add_column(justify="right") + add_row = items_table.add_row + highlighter = self.highlighter + + if callable(obj): + signature = self._get_signature("", obj) + if signature is not None: + yield signature + yield "" + + if self.docs: + _doc = self._get_formatted_doc(obj) + if _doc is not None: + doc_text = Text(_doc, style="inspect.help") + doc_text = highlighter(doc_text) + yield doc_text + yield "" + + if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)): + yield Panel( + Pretty(obj, indent_guides=True, max_length=10, max_string=60), + border_style="inspect.value.border", + ) + yield "" + + for key, (error, value) in items: + key_text = Text.assemble( + ( + key, + "inspect.attr.dunder" if key.startswith("__") else "inspect.attr", + ), + (" =", "inspect.equals"), + ) + if error is not None: + warning = key_text.copy() + warning.stylize("inspect.error") + add_row(warning, highlighter(repr(error))) + continue + + if callable(value): + if not self.methods: + continue + + _signature_text = self._get_signature(key, value) + if _signature_text is None: + add_row(key_text, Pretty(value, highlighter=highlighter)) + else: + if self.docs: + docs = self._get_formatted_doc(value) + if docs is not None: + _signature_text.append("\n" if "\n" in docs else " ") + doc = highlighter(docs) + doc.stylize("inspect.doc") + _signature_text.append(doc) + + add_row(key_text, _signature_text) + else: + add_row(key_text, Pretty(value, highlighter=highlighter)) + if items_table.row_count: + yield items_table + elif not_shown_count: + yield Text.from_markup( + f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] " + f"Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options." + ) + + def _get_formatted_doc(self, object_: Any) -> Optional[str]: + """ + Extract the docstring of an object, process it and returns it. + The processing consists in cleaning up the docstring's indentation, + taking only its 1st paragraph if `self.help` is not True, + and escape its control codes. + + Args: + object_ (Any): the object to get the docstring from. + + Returns: + Optional[str]: the processed docstring, or None if no docstring was found. + """ + docs = getdoc(object_) + if docs is None: + return None + docs = cleandoc(docs).strip() + if not self.help: + docs = _first_paragraph(docs) + return escape_control_codes(docs) + + +def get_object_types_mro(obj: Union[object, Type[Any]]) -> Tuple[type, ...]: + """Returns the MRO of an object's class, or of the object itself if it's a class.""" + if not hasattr(obj, "__mro__"): + # N.B. we cannot use `if type(obj) is type` here because it doesn't work with + # some types of classes, such as the ones that use abc.ABCMeta. + obj = type(obj) + return getattr(obj, "__mro__", ()) + + +def get_object_types_mro_as_strings(obj: object) -> Collection[str]: + """ + Returns the MRO of an object's class as full qualified names, or of the object itself if it's a class. + + Examples: + `object_types_mro_as_strings(JSONDecoder)` will return `['json.decoder.JSONDecoder', 'builtins.object']` + """ + return [ + f'{getattr(type_, "__module__", "")}.{getattr(type_, "__qualname__", "")}' + for type_ in get_object_types_mro(obj) + ] + + +def is_object_one_of_types( + obj: object, fully_qualified_types_names: Collection[str] +) -> bool: + """ + Returns `True` if the given object's class (or the object itself, if it's a class) has one of the + fully qualified names in its MRO. + """ + for type_name in get_object_types_mro_as_strings(obj): + if type_name in fully_qualified_types_names: + return True + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py new file mode 100644 index 0000000..fc16c84 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py @@ -0,0 +1,94 @@ +from datetime import datetime +from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable + + +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import Console, ConsoleRenderable, RenderableType + from .table import Table + +FormatTimeCallable = Callable[[datetime], Text] + + +class LogRender: + def __init__( + self, + show_time: bool = True, + show_level: bool = False, + show_path: bool = True, + time_format: Union[str, FormatTimeCallable] = "[%x %X]", + omit_repeated_times: bool = True, + level_width: Optional[int] = 8, + ) -> None: + self.show_time = show_time + self.show_level = show_level + self.show_path = show_path + self.time_format = time_format + self.omit_repeated_times = omit_repeated_times + self.level_width = level_width + self._last_time: Optional[Text] = None + + def __call__( + self, + console: "Console", + renderables: Iterable["ConsoleRenderable"], + log_time: Optional[datetime] = None, + time_format: Optional[Union[str, FormatTimeCallable]] = None, + level: TextType = "", + path: Optional[str] = None, + line_no: Optional[int] = None, + link_path: Optional[str] = None, + ) -> "Table": + from .containers import Renderables + from .table import Table + + output = Table.grid(padding=(0, 1)) + output.expand = True + if self.show_time: + output.add_column(style="log.time") + if self.show_level: + output.add_column(style="log.level", width=self.level_width) + output.add_column(ratio=1, style="log.message", overflow="fold") + if self.show_path and path: + output.add_column(style="log.path") + row: List["RenderableType"] = [] + if self.show_time: + log_time = log_time or console.get_datetime() + time_format = time_format or self.time_format + if callable(time_format): + log_time_display = time_format(log_time) + else: + log_time_display = Text(log_time.strftime(time_format)) + if log_time_display == self._last_time and self.omit_repeated_times: + row.append(Text(" " * len(log_time_display))) + else: + row.append(log_time_display) + self._last_time = log_time_display + if self.show_level: + row.append(level) + + row.append(Renderables(renderables)) + if self.show_path and path: + path_text = Text() + path_text.append( + path, style=f"link file://{link_path}" if link_path else "" + ) + if line_no: + path_text.append(":") + path_text.append( + f"{line_no}", + style=f"link file://{link_path}#{line_no}" if link_path else "", + ) + row.append(path_text) + + output.add_row(*row) + return output + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + c = Console() + c.print("[on blue]Hello", justify="right") + c.log("[on blue]hello", justify="right") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py new file mode 100644 index 0000000..01c6caf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py @@ -0,0 +1,43 @@ +from typing import Iterable, Tuple, TypeVar + +T = TypeVar("T") + + +def loop_first(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for first value.""" + iter_values = iter(values) + try: + value = next(iter_values) + except StopIteration: + return + yield True, value + for value in iter_values: + yield False, value + + +def loop_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + for value in iter_values: + yield False, previous_value + previous_value = value + yield True, previous_value + + +def loop_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]: + """Iterate and generate a tuple with a flag for first and last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + first = True + for value in iter_values: + yield first, False, previous_value + first = False + previous_value = value + yield first, True, previous_value diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py new file mode 100644 index 0000000..6ae05d3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py @@ -0,0 +1,69 @@ +from types import TracebackType +from typing import IO, Iterable, Iterator, List, Optional, Type + + +class NullFile(IO[str]): + def close(self) -> None: + pass + + def isatty(self) -> bool: + return False + + def read(self, __n: int = 1) -> str: + return "" + + def readable(self) -> bool: + return False + + def readline(self, __limit: int = 1) -> str: + return "" + + def readlines(self, __hint: int = 1) -> List[str]: + return [] + + def seek(self, __offset: int, __whence: int = 1) -> int: + return 0 + + def seekable(self) -> bool: + return False + + def tell(self) -> int: + return 0 + + def truncate(self, __size: Optional[int] = 1) -> int: + return 0 + + def writable(self) -> bool: + return False + + def writelines(self, __lines: Iterable[str]) -> None: + pass + + def __next__(self) -> str: + return "" + + def __iter__(self) -> Iterator[str]: + return iter([""]) + + def __enter__(self) -> IO[str]: + return self + + def __exit__( + self, + __t: Optional[Type[BaseException]], + __value: Optional[BaseException], + __traceback: Optional[TracebackType], + ) -> None: + pass + + def write(self, text: str) -> int: + return 0 + + def flush(self) -> None: + pass + + def fileno(self) -> int: + return -1 + + +NULL_FILE = NullFile() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py new file mode 100644 index 0000000..3c748d3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py @@ -0,0 +1,309 @@ +from .palette import Palette + + +# Taken from https://en.wikipedia.org/wiki/ANSI_escape_code (Windows 10 column) +WINDOWS_PALETTE = Palette( + [ + (12, 12, 12), + (197, 15, 31), + (19, 161, 14), + (193, 156, 0), + (0, 55, 218), + (136, 23, 152), + (58, 150, 221), + (204, 204, 204), + (118, 118, 118), + (231, 72, 86), + (22, 198, 12), + (249, 241, 165), + (59, 120, 255), + (180, 0, 158), + (97, 214, 214), + (242, 242, 242), + ] +) + +# # The standard ansi colors (including bright variants) +STANDARD_PALETTE = Palette( + [ + (0, 0, 0), + (170, 0, 0), + (0, 170, 0), + (170, 85, 0), + (0, 0, 170), + (170, 0, 170), + (0, 170, 170), + (170, 170, 170), + (85, 85, 85), + (255, 85, 85), + (85, 255, 85), + (255, 255, 85), + (85, 85, 255), + (255, 85, 255), + (85, 255, 255), + (255, 255, 255), + ] +) + + +# The 256 color palette +EIGHT_BIT_PALETTE = Palette( + [ + (0, 0, 0), + (128, 0, 0), + (0, 128, 0), + (128, 128, 0), + (0, 0, 128), + (128, 0, 128), + (0, 128, 128), + (192, 192, 192), + (128, 128, 128), + (255, 0, 0), + (0, 255, 0), + (255, 255, 0), + (0, 0, 255), + (255, 0, 255), + (0, 255, 255), + (255, 255, 255), + (0, 0, 0), + (0, 0, 95), + (0, 0, 135), + (0, 0, 175), + (0, 0, 215), + (0, 0, 255), + (0, 95, 0), + (0, 95, 95), + (0, 95, 135), + (0, 95, 175), + (0, 95, 215), + (0, 95, 255), + (0, 135, 0), + (0, 135, 95), + (0, 135, 135), + (0, 135, 175), + (0, 135, 215), + (0, 135, 255), + (0, 175, 0), + (0, 175, 95), + (0, 175, 135), + (0, 175, 175), + (0, 175, 215), + (0, 175, 255), + (0, 215, 0), + (0, 215, 95), + (0, 215, 135), + (0, 215, 175), + (0, 215, 215), + (0, 215, 255), + (0, 255, 0), + (0, 255, 95), + (0, 255, 135), + (0, 255, 175), + (0, 255, 215), + (0, 255, 255), + (95, 0, 0), + (95, 0, 95), + (95, 0, 135), + (95, 0, 175), + (95, 0, 215), + (95, 0, 255), + (95, 95, 0), + (95, 95, 95), + (95, 95, 135), + (95, 95, 175), + (95, 95, 215), + (95, 95, 255), + (95, 135, 0), + (95, 135, 95), + (95, 135, 135), + (95, 135, 175), + (95, 135, 215), + (95, 135, 255), + (95, 175, 0), + (95, 175, 95), + (95, 175, 135), + (95, 175, 175), + (95, 175, 215), + (95, 175, 255), + (95, 215, 0), + (95, 215, 95), + (95, 215, 135), + (95, 215, 175), + (95, 215, 215), + (95, 215, 255), + (95, 255, 0), + (95, 255, 95), + (95, 255, 135), + (95, 255, 175), + (95, 255, 215), + (95, 255, 255), + (135, 0, 0), + (135, 0, 95), + (135, 0, 135), + (135, 0, 175), + (135, 0, 215), + (135, 0, 255), + (135, 95, 0), + (135, 95, 95), + (135, 95, 135), + (135, 95, 175), + (135, 95, 215), + (135, 95, 255), + (135, 135, 0), + (135, 135, 95), + (135, 135, 135), + (135, 135, 175), + (135, 135, 215), + (135, 135, 255), + (135, 175, 0), + (135, 175, 95), + (135, 175, 135), + (135, 175, 175), + (135, 175, 215), + (135, 175, 255), + (135, 215, 0), + (135, 215, 95), + (135, 215, 135), + (135, 215, 175), + (135, 215, 215), + (135, 215, 255), + (135, 255, 0), + (135, 255, 95), + (135, 255, 135), + (135, 255, 175), + (135, 255, 215), + (135, 255, 255), + (175, 0, 0), + (175, 0, 95), + (175, 0, 135), + (175, 0, 175), + (175, 0, 215), + (175, 0, 255), + (175, 95, 0), + (175, 95, 95), + (175, 95, 135), + (175, 95, 175), + (175, 95, 215), + (175, 95, 255), + (175, 135, 0), + (175, 135, 95), + (175, 135, 135), + (175, 135, 175), + (175, 135, 215), + (175, 135, 255), + (175, 175, 0), + (175, 175, 95), + (175, 175, 135), + (175, 175, 175), + (175, 175, 215), + (175, 175, 255), + (175, 215, 0), + (175, 215, 95), + (175, 215, 135), + (175, 215, 175), + (175, 215, 215), + (175, 215, 255), + (175, 255, 0), + (175, 255, 95), + (175, 255, 135), + (175, 255, 175), + (175, 255, 215), + (175, 255, 255), + (215, 0, 0), + (215, 0, 95), + (215, 0, 135), + (215, 0, 175), + (215, 0, 215), + (215, 0, 255), + (215, 95, 0), + (215, 95, 95), + (215, 95, 135), + (215, 95, 175), + (215, 95, 215), + (215, 95, 255), + (215, 135, 0), + (215, 135, 95), + (215, 135, 135), + (215, 135, 175), + (215, 135, 215), + (215, 135, 255), + (215, 175, 0), + (215, 175, 95), + (215, 175, 135), + (215, 175, 175), + (215, 175, 215), + (215, 175, 255), + (215, 215, 0), + (215, 215, 95), + (215, 215, 135), + (215, 215, 175), + (215, 215, 215), + (215, 215, 255), + (215, 255, 0), + (215, 255, 95), + (215, 255, 135), + (215, 255, 175), + (215, 255, 215), + (215, 255, 255), + (255, 0, 0), + (255, 0, 95), + (255, 0, 135), + (255, 0, 175), + (255, 0, 215), + (255, 0, 255), + (255, 95, 0), + (255, 95, 95), + (255, 95, 135), + (255, 95, 175), + (255, 95, 215), + (255, 95, 255), + (255, 135, 0), + (255, 135, 95), + (255, 135, 135), + (255, 135, 175), + (255, 135, 215), + (255, 135, 255), + (255, 175, 0), + (255, 175, 95), + (255, 175, 135), + (255, 175, 175), + (255, 175, 215), + (255, 175, 255), + (255, 215, 0), + (255, 215, 95), + (255, 215, 135), + (255, 215, 175), + (255, 215, 215), + (255, 215, 255), + (255, 255, 0), + (255, 255, 95), + (255, 255, 135), + (255, 255, 175), + (255, 255, 215), + (255, 255, 255), + (8, 8, 8), + (18, 18, 18), + (28, 28, 28), + (38, 38, 38), + (48, 48, 48), + (58, 58, 58), + (68, 68, 68), + (78, 78, 78), + (88, 88, 88), + (98, 98, 98), + (108, 108, 108), + (118, 118, 118), + (128, 128, 128), + (138, 138, 138), + (148, 148, 148), + (158, 158, 158), + (168, 168, 168), + (178, 178, 178), + (188, 188, 188), + (198, 198, 198), + (208, 208, 208), + (218, 218, 218), + (228, 228, 228), + (238, 238, 238), + ] +) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py new file mode 100644 index 0000000..4f6d8b2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py @@ -0,0 +1,17 @@ +from typing import Optional + + +def pick_bool(*values: Optional[bool]) -> bool: + """Pick the first non-none bool or return the last value. + + Args: + *values (bool): Any number of boolean or None values. + + Returns: + bool: First non-none boolean. + """ + assert values, "1 or more values required" + for value in values: + if value is not None: + return value + return bool(value) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py new file mode 100644 index 0000000..5fd5a38 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py @@ -0,0 +1,153 @@ +from fractions import Fraction +from math import ceil +from typing import cast, List, Optional, Sequence, Protocol + + +class Edge(Protocol): + """Any object that defines an edge (such as Layout).""" + + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + +def ratio_resolve(total: int, edges: Sequence[Edge]) -> List[int]: + """Divide total space to satisfy size, ratio, and minimum_size, constraints. + + The returned list of integers should add up to total in most cases, unless it is + impossible to satisfy all the constraints. For instance, if there are two edges + with a minimum size of 20 each and `total` is 30 then the returned list will be + greater than total. In practice, this would mean that a Layout object would + clip the rows that would overflow the screen height. + + Args: + total (int): Total number of characters. + edges (List[Edge]): Edges within total space. + + Returns: + List[int]: Number of characters for each edge. + """ + # Size of edge or None for yet to be determined + sizes = [(edge.size or None) for edge in edges] + + _Fraction = Fraction + + # While any edges haven't been calculated + while None in sizes: + # Get flexible edges and index to map these back on to sizes list + flexible_edges = [ + (index, edge) + for index, (size, edge) in enumerate(zip(sizes, edges)) + if size is None + ] + # Remaining space in total + remaining = total - sum(size or 0 for size in sizes) + if remaining <= 0: + # No room for flexible edges + return [ + ((edge.minimum_size or 1) if size is None else size) + for size, edge in zip(sizes, edges) + ] + # Calculate number of characters in a ratio portion + portion = _Fraction( + remaining, sum((edge.ratio or 1) for _, edge in flexible_edges) + ) + + # If any edges will be less than their minimum, replace size with the minimum + for index, edge in flexible_edges: + if portion * edge.ratio <= edge.minimum_size: + sizes[index] = edge.minimum_size + # New fixed size will invalidate calculations, so we need to repeat the process + break + else: + # Distribute flexible space and compensate for rounding error + # Since edge sizes can only be integers we need to add the remainder + # to the following line + remainder = _Fraction(0) + for index, edge in flexible_edges: + size, remainder = divmod(portion * edge.ratio + remainder, 1) + sizes[index] = size + break + # Sizes now contains integers only + return cast(List[int], sizes) + + +def ratio_reduce( + total: int, ratios: List[int], maximums: List[int], values: List[int] +) -> List[int]: + """Divide an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + maximums (List[int]): List of maximums values for each slot. + values (List[int]): List of values + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + ratios = [ratio if _max else 0 for ratio, _max in zip(ratios, maximums)] + total_ratio = sum(ratios) + if not total_ratio: + return values[:] + total_remaining = total + result: List[int] = [] + append = result.append + for ratio, maximum, value in zip(ratios, maximums, values): + if ratio and total_ratio > 0: + distributed = min(maximum, round(ratio * total_remaining / total_ratio)) + append(value - distributed) + total_remaining -= distributed + total_ratio -= ratio + else: + append(value) + return result + + +def ratio_distribute( + total: int, ratios: List[int], minimums: Optional[List[int]] = None +) -> List[int]: + """Distribute an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + minimums (List[int]): List of minimum values for each slot. + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + if minimums: + ratios = [ratio if _min else 0 for ratio, _min in zip(ratios, minimums)] + total_ratio = sum(ratios) + assert total_ratio > 0, "Sum of ratios must be > 0" + + total_remaining = total + distributed_total: List[int] = [] + append = distributed_total.append + if minimums is None: + _minimums = [0] * len(ratios) + else: + _minimums = minimums + for ratio, minimum in zip(ratios, _minimums): + if total_ratio > 0: + distributed = max(minimum, ceil(ratio * total_remaining / total_ratio)) + else: + distributed = total_remaining + append(distributed) + total_ratio -= ratio + total_remaining -= distributed + return distributed_total + + +if __name__ == "__main__": + from dataclasses import dataclass + + @dataclass + class E: + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + resolved = ratio_resolve(110, [E(None, 1, 1), E(None, 1, 1), E(None, 1, 1)]) + print(sum(resolved)) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py new file mode 100644 index 0000000..d0bb1fe --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py @@ -0,0 +1,482 @@ +""" +Spinners are from: +* cli-spinners: + MIT License + Copyright (c) Sindre Sorhus (sindresorhus.com) + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE + FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +""" + +SPINNERS = { + "dots": { + "interval": 80, + "frames": "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", + }, + "dots2": {"interval": 80, "frames": "⣾⣽⣻⢿⡿⣟⣯⣷"}, + "dots3": { + "interval": 80, + "frames": "⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓", + }, + "dots4": { + "interval": 80, + "frames": "⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆", + }, + "dots5": { + "interval": 80, + "frames": "⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋", + }, + "dots6": { + "interval": 80, + "frames": "⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁", + }, + "dots7": { + "interval": 80, + "frames": "⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈", + }, + "dots8": { + "interval": 80, + "frames": "⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈", + }, + "dots9": {"interval": 80, "frames": "⢹⢺⢼⣸⣇⡧⡗⡏"}, + "dots10": {"interval": 80, "frames": "⢄⢂⢁⡁⡈⡐⡠"}, + "dots11": {"interval": 100, "frames": "⠁⠂⠄⡀⢀⠠⠐⠈"}, + "dots12": { + "interval": 80, + "frames": [ + "⢀⠀", + "⡀⠀", + "⠄⠀", + "⢂⠀", + "⡂⠀", + "⠅⠀", + "⢃⠀", + "⡃⠀", + "⠍⠀", + "⢋⠀", + "⡋⠀", + "⠍⠁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⢈⠩", + "⡀⢙", + "⠄⡙", + "⢂⠩", + "⡂⢘", + "⠅⡘", + "⢃⠨", + "⡃⢐", + "⠍⡐", + "⢋⠠", + "⡋⢀", + "⠍⡁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⠈⠩", + "⠀⢙", + "⠀⡙", + "⠀⠩", + "⠀⢘", + "⠀⡘", + "⠀⠨", + "⠀⢐", + "⠀⡐", + "⠀⠠", + "⠀⢀", + "⠀⡀", + ], + }, + "dots8Bit": { + "interval": 80, + "frames": "⠀⠁⠂⠃⠄⠅⠆⠇⡀⡁⡂⡃⡄⡅⡆⡇⠈⠉⠊⠋⠌⠍⠎⠏⡈⡉⡊⡋⡌⡍⡎⡏⠐⠑⠒⠓⠔⠕⠖⠗⡐⡑⡒⡓⡔⡕⡖⡗⠘⠙⠚⠛⠜⠝⠞⠟⡘⡙" + "⡚⡛⡜⡝⡞⡟⠠⠡⠢⠣⠤⠥⠦⠧⡠⡡⡢⡣⡤⡥⡦⡧⠨⠩⠪⠫⠬⠭⠮⠯⡨⡩⡪⡫⡬⡭⡮⡯⠰⠱⠲⠳⠴⠵⠶⠷⡰⡱⡲⡳⡴⡵⡶⡷⠸⠹⠺⠻" + "⠼⠽⠾⠿⡸⡹⡺⡻⡼⡽⡾⡿⢀⢁⢂⢃⢄⢅⢆⢇⣀⣁⣂⣃⣄⣅⣆⣇⢈⢉⢊⢋⢌⢍⢎⢏⣈⣉⣊⣋⣌⣍⣎⣏⢐⢑⢒⢓⢔⢕⢖⢗⣐⣑⣒⣓⣔⣕" + "⣖⣗⢘⢙⢚⢛⢜⢝⢞⢟⣘⣙⣚⣛⣜⣝⣞⣟⢠⢡⢢⢣⢤⢥⢦⢧⣠⣡⣢⣣⣤⣥⣦⣧⢨⢩⢪⢫⢬⢭⢮⢯⣨⣩⣪⣫⣬⣭⣮⣯⢰⢱⢲⢳⢴⢵⢶⢷" + "⣰⣱⣲⣳⣴⣵⣶⣷⢸⢹⢺⢻⢼⢽⢾⢿⣸⣹⣺⣻⣼⣽⣾⣿", + }, + "line": {"interval": 130, "frames": ["-", "\\", "|", "/"]}, + "line2": {"interval": 100, "frames": "⠂-–—–-"}, + "pipe": {"interval": 100, "frames": "┤┘┴└├┌┬┐"}, + "simpleDots": {"interval": 400, "frames": [". ", ".. ", "...", " "]}, + "simpleDotsScrolling": { + "interval": 200, + "frames": [". ", ".. ", "...", " ..", " .", " "], + }, + "star": {"interval": 70, "frames": "✶✸✹✺✹✷"}, + "star2": {"interval": 80, "frames": "+x*"}, + "flip": { + "interval": 70, + "frames": "___-``'´-___", + }, + "hamburger": {"interval": 100, "frames": "☱☲☴"}, + "growVertical": { + "interval": 120, + "frames": "▁▃▄▅▆▇▆▅▄▃", + }, + "growHorizontal": { + "interval": 120, + "frames": "▏▎▍▌▋▊▉▊▋▌▍▎", + }, + "balloon": {"interval": 140, "frames": " .oO@* "}, + "balloon2": {"interval": 120, "frames": ".oO°Oo."}, + "noise": {"interval": 100, "frames": "▓▒░"}, + "bounce": {"interval": 120, "frames": "⠁⠂⠄⠂"}, + "boxBounce": {"interval": 120, "frames": "▖▘▝▗"}, + "boxBounce2": {"interval": 100, "frames": "▌▀▐▄"}, + "triangle": {"interval": 50, "frames": "◢◣◤◥"}, + "arc": {"interval": 100, "frames": "◜◠◝◞◡◟"}, + "circle": {"interval": 120, "frames": "◡⊙◠"}, + "squareCorners": {"interval": 180, "frames": "◰◳◲◱"}, + "circleQuarters": {"interval": 120, "frames": "◴◷◶◵"}, + "circleHalves": {"interval": 50, "frames": "◐◓◑◒"}, + "squish": {"interval": 100, "frames": "╫╪"}, + "toggle": {"interval": 250, "frames": "⊶⊷"}, + "toggle2": {"interval": 80, "frames": "▫▪"}, + "toggle3": {"interval": 120, "frames": "□■"}, + "toggle4": {"interval": 100, "frames": "■□▪▫"}, + "toggle5": {"interval": 100, "frames": "▮▯"}, + "toggle6": {"interval": 300, "frames": "ဝ၀"}, + "toggle7": {"interval": 80, "frames": "⦾⦿"}, + "toggle8": {"interval": 100, "frames": "◍◌"}, + "toggle9": {"interval": 100, "frames": "◉◎"}, + "toggle10": {"interval": 100, "frames": "㊂㊀㊁"}, + "toggle11": {"interval": 50, "frames": "⧇⧆"}, + "toggle12": {"interval": 120, "frames": "☗☖"}, + "toggle13": {"interval": 80, "frames": "=*-"}, + "arrow": {"interval": 100, "frames": "←↖↑↗→↘↓↙"}, + "arrow2": { + "interval": 80, + "frames": ["⬆️ ", "↗️ ", "➡️ ", "↘️ ", "⬇️ ", "↙️ ", "⬅️ ", "↖️ "], + }, + "arrow3": { + "interval": 120, + "frames": ["▹▹▹▹▹", "▸▹▹▹▹", "▹▸▹▹▹", "▹▹▸▹▹", "▹▹▹▸▹", "▹▹▹▹▸"], + }, + "bouncingBar": { + "interval": 80, + "frames": [ + "[ ]", + "[= ]", + "[== ]", + "[=== ]", + "[ ===]", + "[ ==]", + "[ =]", + "[ ]", + "[ =]", + "[ ==]", + "[ ===]", + "[====]", + "[=== ]", + "[== ]", + "[= ]", + ], + }, + "bouncingBall": { + "interval": 80, + "frames": [ + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "( ●)", + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "(● )", + ], + }, + "smiley": {"interval": 200, "frames": ["😄 ", "😝 "]}, + "monkey": {"interval": 300, "frames": ["🙈 ", "🙈 ", "🙉 ", "🙊 "]}, + "hearts": {"interval": 100, "frames": ["💛 ", "💙 ", "💜 ", "💚 ", "❤️ "]}, + "clock": { + "interval": 100, + "frames": [ + "🕛 ", + "🕐 ", + "🕑 ", + "🕒 ", + "🕓 ", + "🕔 ", + "🕕 ", + "🕖 ", + "🕗 ", + "🕘 ", + "🕙 ", + "🕚 ", + ], + }, + "earth": {"interval": 180, "frames": ["🌍 ", "🌎 ", "🌏 "]}, + "material": { + "interval": 17, + "frames": [ + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███████▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "██████████▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "█████████████▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁██████████████▁▁▁▁", + "▁▁▁██████████████▁▁▁", + "▁▁▁▁█████████████▁▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁▁▁████████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁▁█████████████▁▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁▁███████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁▁█████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + ], + }, + "moon": { + "interval": 80, + "frames": ["🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "], + }, + "runner": {"interval": 140, "frames": ["🚶 ", "🏃 "]}, + "pong": { + "interval": 80, + "frames": [ + "▐⠂ ▌", + "▐⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂▌", + "▐ ⠠▌", + "▐ ⡀▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐⠠ ▌", + ], + }, + "shark": { + "interval": 120, + "frames": [ + "▐|\\____________▌", + "▐_|\\___________▌", + "▐__|\\__________▌", + "▐___|\\_________▌", + "▐____|\\________▌", + "▐_____|\\_______▌", + "▐______|\\______▌", + "▐_______|\\_____▌", + "▐________|\\____▌", + "▐_________|\\___▌", + "▐__________|\\__▌", + "▐___________|\\_▌", + "▐____________|\\▌", + "▐____________/|▌", + "▐___________/|_▌", + "▐__________/|__▌", + "▐_________/|___▌", + "▐________/|____▌", + "▐_______/|_____▌", + "▐______/|______▌", + "▐_____/|_______▌", + "▐____/|________▌", + "▐___/|_________▌", + "▐__/|__________▌", + "▐_/|___________▌", + "▐/|____________▌", + ], + }, + "dqpb": {"interval": 100, "frames": "dqpb"}, + "weather": { + "interval": 100, + "frames": [ + "☀️ ", + "☀️ ", + "☀️ ", + "🌤 ", + "⛅️ ", + "🌥 ", + "☁️ ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "⛈ ", + "🌨 ", + "🌧 ", + "🌨 ", + "☁️ ", + "🌥 ", + "⛅️ ", + "🌤 ", + "☀️ ", + "☀️ ", + ], + }, + "christmas": {"interval": 400, "frames": "🌲🎄"}, + "grenade": { + "interval": 80, + "frames": [ + "، ", + "′ ", + " ´ ", + " ‾ ", + " ⸌", + " ⸊", + " |", + " ⁎", + " ⁕", + " ෴ ", + " ⁓", + " ", + " ", + " ", + ], + }, + "point": {"interval": 125, "frames": ["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"]}, + "layer": {"interval": 150, "frames": "-=≡"}, + "betaWave": { + "interval": 80, + "frames": [ + "ρββββββ", + "βρβββββ", + "ββρββββ", + "βββρβββ", + "ββββρββ", + "βββββρβ", + "ββββββρ", + ], + }, + "aesthetic": { + "interval": 80, + "frames": [ + "▰▱▱▱▱▱▱", + "▰▰▱▱▱▱▱", + "▰▰▰▱▱▱▱", + "▰▰▰▰▱▱▱", + "▰▰▰▰▰▱▱", + "▰▰▰▰▰▰▱", + "▰▰▰▰▰▰▰", + "▰▱▱▱▱▱▱", + ], + }, +} diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py new file mode 100644 index 0000000..194564e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py @@ -0,0 +1,16 @@ +from typing import List, TypeVar + +T = TypeVar("T") + + +class Stack(List[T]): + """A small shim over builtin list.""" + + @property + def top(self) -> T: + """Get top of stack.""" + return self[-1] + + def push(self, item: T) -> None: + """Push an item on to the stack (append in stack nomenclature).""" + self.append(item) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py new file mode 100644 index 0000000..a2ca6be --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py @@ -0,0 +1,19 @@ +""" +Timer context manager, only used in debug. + +""" + +from time import time + +import contextlib +from typing import Generator + + +@contextlib.contextmanager +def timer(subject: str = "time") -> Generator[None, None, None]: + """print the elapsed time. (only used in debugging)""" + start = time() + yield + elapsed = time() - start + elapsed_ms = elapsed * 1000 + print(f"{subject} elapsed {elapsed_ms:.1f}ms") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py new file mode 100644 index 0000000..2eba1b9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py @@ -0,0 +1,661 @@ +"""Light wrapper around the Win32 Console API - this module should only be imported on Windows + +The API that this module wraps is documented at https://docs.microsoft.com/en-us/windows/console/console-functions +""" + +import ctypes +import sys +from typing import Any + +windll: Any = None +if sys.platform == "win32": + windll = ctypes.LibraryLoader(ctypes.WinDLL) +else: + raise ImportError(f"{__name__} can only be imported on Windows") + +import time +from ctypes import Structure, byref, wintypes +from typing import IO, NamedTuple, Type, cast + +from pip._vendor.rich.color import ColorSystem +from pip._vendor.rich.style import Style + +STDOUT = -11 +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 + +COORD = wintypes._COORD + + +class LegacyWindowsError(Exception): + pass + + +class WindowsCoordinates(NamedTuple): + """Coordinates in the Windows Console API are (y, x), not (x, y). + This class is intended to prevent that confusion. + Rows and columns are indexed from 0. + This class can be used in place of wintypes._COORD in arguments and argtypes. + """ + + row: int + col: int + + @classmethod + def from_param(cls, value: "WindowsCoordinates") -> COORD: + """Converts a WindowsCoordinates into a wintypes _COORD structure. + This classmethod is internally called by ctypes to perform the conversion. + + Args: + value (WindowsCoordinates): The input coordinates to convert. + + Returns: + wintypes._COORD: The converted coordinates struct. + """ + return COORD(value.col, value.row) + + +class CONSOLE_SCREEN_BUFFER_INFO(Structure): + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + + +class CONSOLE_CURSOR_INFO(ctypes.Structure): + _fields_ = [("dwSize", wintypes.DWORD), ("bVisible", wintypes.BOOL)] + + +_GetStdHandle = windll.kernel32.GetStdHandle +_GetStdHandle.argtypes = [ + wintypes.DWORD, +] +_GetStdHandle.restype = wintypes.HANDLE + + +def GetStdHandle(handle: int = STDOUT) -> wintypes.HANDLE: + """Retrieves a handle to the specified standard device (standard input, standard output, or standard error). + + Args: + handle (int): Integer identifier for the handle. Defaults to -11 (stdout). + + Returns: + wintypes.HANDLE: The handle + """ + return cast(wintypes.HANDLE, _GetStdHandle(handle)) + + +_GetConsoleMode = windll.kernel32.GetConsoleMode +_GetConsoleMode.argtypes = [wintypes.HANDLE, wintypes.LPDWORD] +_GetConsoleMode.restype = wintypes.BOOL + + +def GetConsoleMode(std_handle: wintypes.HANDLE) -> int: + """Retrieves the current input mode of a console's input buffer + or the current output mode of a console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Raises: + LegacyWindowsError: If any error occurs while calling the Windows console API. + + Returns: + int: Value representing the current console mode as documented at + https://docs.microsoft.com/en-us/windows/console/getconsolemode#parameters + """ + + console_mode = wintypes.DWORD() + success = bool(_GetConsoleMode(std_handle, console_mode)) + if not success: + raise LegacyWindowsError("Unable to get legacy Windows Console Mode") + return console_mode.value + + +_FillConsoleOutputCharacterW = windll.kernel32.FillConsoleOutputCharacterW +_FillConsoleOutputCharacterW.argtypes = [ + wintypes.HANDLE, + ctypes.c_char, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputCharacterW.restype = wintypes.BOOL + + +def FillConsoleOutputCharacter( + std_handle: wintypes.HANDLE, + char: str, + length: int, + start: WindowsCoordinates, +) -> int: + """Writes a character to the console screen buffer a specified number of times, beginning at the specified coordinates. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + char (str): The character to write. Must be a string of length 1. + length (int): The number of times to write the character. + start (WindowsCoordinates): The coordinates to start writing at. + + Returns: + int: The number of characters written. + """ + character = ctypes.c_char(char.encode()) + num_characters = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + _FillConsoleOutputCharacterW( + std_handle, + character, + num_characters, + start, + byref(num_written), + ) + return num_written.value + + +_FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute +_FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputAttribute.restype = wintypes.BOOL + + +def FillConsoleOutputAttribute( + std_handle: wintypes.HANDLE, + attributes: int, + length: int, + start: WindowsCoordinates, +) -> int: + """Sets the character attributes for a specified number of character cells, + beginning at the specified coordinates in a screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours of the cells. + length (int): The number of cells to set the output attribute of. + start (WindowsCoordinates): The coordinates of the first cell whose attributes are to be set. + + Returns: + int: The number of cells whose attributes were actually set. + """ + num_cells = wintypes.DWORD(length) + style_attrs = wintypes.WORD(attributes) + num_written = wintypes.DWORD(0) + _FillConsoleOutputAttribute( + std_handle, style_attrs, num_cells, start, byref(num_written) + ) + return num_written.value + + +_SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute +_SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, +] +_SetConsoleTextAttribute.restype = wintypes.BOOL + + +def SetConsoleTextAttribute( + std_handle: wintypes.HANDLE, attributes: wintypes.WORD +) -> bool: + """Set the colour attributes for all text written after this function is called. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours. + + + Returns: + bool: True if the attribute was set successfully, otherwise False. + """ + return bool(_SetConsoleTextAttribute(std_handle, attributes)) + + +_GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo +_GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_SCREEN_BUFFER_INFO), +] +_GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + +def GetConsoleScreenBufferInfo( + std_handle: wintypes.HANDLE, +) -> CONSOLE_SCREEN_BUFFER_INFO: + """Retrieves information about the specified console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Returns: + CONSOLE_SCREEN_BUFFER_INFO: A CONSOLE_SCREEN_BUFFER_INFO ctype struct contain information about + screen size, cursor position, colour attributes, and more.""" + console_screen_buffer_info = CONSOLE_SCREEN_BUFFER_INFO() + _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info)) + return console_screen_buffer_info + + +_SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition +_SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + cast(Type[COORD], WindowsCoordinates), +] +_SetConsoleCursorPosition.restype = wintypes.BOOL + + +def SetConsoleCursorPosition( + std_handle: wintypes.HANDLE, coords: WindowsCoordinates +) -> bool: + """Set the position of the cursor in the console screen + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + coords (WindowsCoordinates): The coordinates to move the cursor to. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorPosition(std_handle, coords)) + + +_GetConsoleCursorInfo = windll.kernel32.GetConsoleCursorInfo +_GetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_GetConsoleCursorInfo.restype = wintypes.BOOL + + +def GetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Get the cursor info - used to get cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct that receives information + about the console's cursor. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_GetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleCursorInfo = windll.kernel32.SetConsoleCursorInfo +_SetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_SetConsoleCursorInfo.restype = wintypes.BOOL + + +def SetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Set the cursor info - used for adjusting cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct containing the new cursor info. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleTitle = windll.kernel32.SetConsoleTitleW +_SetConsoleTitle.argtypes = [wintypes.LPCWSTR] +_SetConsoleTitle.restype = wintypes.BOOL + + +def SetConsoleTitle(title: str) -> bool: + """Sets the title of the current console window + + Args: + title (str): The new title of the console window. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleTitle(title)) + + +class LegacyWindowsTerm: + """This class allows interaction with the legacy Windows Console API. It should only be used in the context + of environments where virtual terminal processing is not available. However, if it is used in a Windows environment, + the entire API should work. + + Args: + file (IO[str]): The file which the Windows Console API HANDLE is retrieved from, defaults to sys.stdout. + """ + + BRIGHT_BIT = 8 + + # Indices are ANSI color numbers, values are the corresponding Windows Console API color numbers + ANSI_TO_WINDOWS = [ + 0, # black The Windows colours are defined in wincon.h as follows: + 4, # red define FOREGROUND_BLUE 0x0001 -- 0000 0001 + 2, # green define FOREGROUND_GREEN 0x0002 -- 0000 0010 + 6, # yellow define FOREGROUND_RED 0x0004 -- 0000 0100 + 1, # blue define FOREGROUND_INTENSITY 0x0008 -- 0000 1000 + 5, # magenta define BACKGROUND_BLUE 0x0010 -- 0001 0000 + 3, # cyan define BACKGROUND_GREEN 0x0020 -- 0010 0000 + 7, # white define BACKGROUND_RED 0x0040 -- 0100 0000 + 8, # bright black (grey) define BACKGROUND_INTENSITY 0x0080 -- 1000 0000 + 12, # bright red + 10, # bright green + 14, # bright yellow + 9, # bright blue + 13, # bright magenta + 11, # bright cyan + 15, # bright white + ] + + def __init__(self, file: "IO[str]") -> None: + handle = GetStdHandle(STDOUT) + self._handle = handle + default_text = GetConsoleScreenBufferInfo(handle).wAttributes + self._default_text = default_text + + self._default_fore = default_text & 7 + self._default_back = (default_text >> 4) & 7 + self._default_attrs = self._default_fore | (self._default_back << 4) + + self._file = file + self.write = file.write + self.flush = file.flush + + @property + def cursor_position(self) -> WindowsCoordinates: + """Returns the current position of the cursor (0-based) + + Returns: + WindowsCoordinates: The current cursor position. + """ + coord: COORD = GetConsoleScreenBufferInfo(self._handle).dwCursorPosition + return WindowsCoordinates(row=coord.Y, col=coord.X) + + @property + def screen_size(self) -> WindowsCoordinates: + """Returns the current size of the console screen buffer, in character columns and rows + + Returns: + WindowsCoordinates: The width and height of the screen as WindowsCoordinates. + """ + screen_size: COORD = GetConsoleScreenBufferInfo(self._handle).dwSize + return WindowsCoordinates(row=screen_size.Y, col=screen_size.X) + + def write_text(self, text: str) -> None: + """Write text directly to the terminal without any modification of styles + + Args: + text (str): The text to write to the console + """ + self.write(text) + self.flush() + + def write_styled(self, text: str, style: Style) -> None: + """Write styled text to the terminal. + + Args: + text (str): The text to write + style (Style): The style of the text + """ + color = style.color + bgcolor = style.bgcolor + if style.reverse: + color, bgcolor = bgcolor, color + + if color: + fore = color.downgrade(ColorSystem.WINDOWS).number + fore = fore if fore is not None else 7 # Default to ANSI 7: White + if style.bold: + fore = fore | self.BRIGHT_BIT + if style.dim: + fore = fore & ~self.BRIGHT_BIT + fore = self.ANSI_TO_WINDOWS[fore] + else: + fore = self._default_fore + + if bgcolor: + back = bgcolor.downgrade(ColorSystem.WINDOWS).number + back = back if back is not None else 0 # Default to ANSI 0: Black + back = self.ANSI_TO_WINDOWS[back] + else: + back = self._default_back + + assert fore is not None + assert back is not None + + SetConsoleTextAttribute( + self._handle, attributes=ctypes.c_ushort(fore | (back << 4)) + ) + self.write_text(text) + SetConsoleTextAttribute(self._handle, attributes=self._default_text) + + def move_cursor_to(self, new_position: WindowsCoordinates) -> None: + """Set the position of the cursor + + Args: + new_position (WindowsCoordinates): The WindowsCoordinates representing the new position of the cursor. + """ + if new_position.col < 0 or new_position.row < 0: + return + SetConsoleCursorPosition(self._handle, coords=new_position) + + def erase_line(self) -> None: + """Erase all content on the line the cursor is currently located at""" + screen_size = self.screen_size + cursor_position = self.cursor_position + cells_to_erase = screen_size.col + start_coordinates = WindowsCoordinates(row=cursor_position.row, col=0) + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=start_coordinates + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=start_coordinates, + ) + + def erase_end_of_line(self) -> None: + """Erase all content from the cursor position to the end of that line""" + cursor_position = self.cursor_position + cells_to_erase = self.screen_size.col - cursor_position.col + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=cursor_position + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=cursor_position, + ) + + def erase_start_of_line(self) -> None: + """Erase all content from the cursor position to the start of that line""" + row, col = self.cursor_position + start = WindowsCoordinates(row, 0) + FillConsoleOutputCharacter(self._handle, " ", length=col, start=start) + FillConsoleOutputAttribute( + self._handle, self._default_attrs, length=col, start=start + ) + + def move_cursor_up(self) -> None: + """Move the cursor up a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row - 1, col=cursor_position.col + ), + ) + + def move_cursor_down(self) -> None: + """Move the cursor down a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row + 1, + col=cursor_position.col, + ), + ) + + def move_cursor_forward(self) -> None: + """Move the cursor forward a single cell. Wrap to the next line if required.""" + row, col = self.cursor_position + if col == self.screen_size.col - 1: + row += 1 + col = 0 + else: + col += 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def move_cursor_to_column(self, column: int) -> None: + """Move cursor to the column specified by the zero-based column index, staying on the same row + + Args: + column (int): The zero-based column index to move the cursor to. + """ + row, _ = self.cursor_position + SetConsoleCursorPosition(self._handle, coords=WindowsCoordinates(row, column)) + + def move_cursor_backward(self) -> None: + """Move the cursor backward a single cell. Wrap to the previous line if required.""" + row, col = self.cursor_position + if col == 0: + row -= 1 + col = self.screen_size.col - 1 + else: + col -= 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def hide_cursor(self) -> None: + """Hide the cursor""" + current_cursor_size = self._get_cursor_size() + invisible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=0) + SetConsoleCursorInfo(self._handle, cursor_info=invisible_cursor) + + def show_cursor(self) -> None: + """Show the cursor""" + current_cursor_size = self._get_cursor_size() + visible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=1) + SetConsoleCursorInfo(self._handle, cursor_info=visible_cursor) + + def set_title(self, title: str) -> None: + """Set the title of the terminal window + + Args: + title (str): The new title of the console window + """ + assert len(title) < 255, "Console title must be less than 255 characters" + SetConsoleTitle(title) + + def _get_cursor_size(self) -> int: + """Get the percentage of the character cell that is filled by the cursor""" + cursor_info = CONSOLE_CURSOR_INFO() + GetConsoleCursorInfo(self._handle, cursor_info=cursor_info) + return int(cursor_info.dwSize) + + +if __name__ == "__main__": + handle = GetStdHandle() + + from pip._vendor.rich.console import Console + + console = Console() + + term = LegacyWindowsTerm(sys.stdout) + term.set_title("Win32 Console Examples") + + style = Style(color="black", bgcolor="red") + + heading = Style.parse("black on green") + + # Check colour output + console.rule("Checking colour output") + console.print("[on red]on red!") + console.print("[blue]blue!") + console.print("[yellow]yellow!") + console.print("[bold yellow]bold yellow!") + console.print("[bright_yellow]bright_yellow!") + console.print("[dim bright_yellow]dim bright_yellow!") + console.print("[italic cyan]italic cyan!") + console.print("[bold white on blue]bold white on blue!") + console.print("[reverse bold white on blue]reverse bold white on blue!") + console.print("[bold black on cyan]bold black on cyan!") + console.print("[black on green]black on green!") + console.print("[blue on green]blue on green!") + console.print("[white on black]white on black!") + console.print("[black on white]black on white!") + console.print("[#1BB152 on #DA812D]#1BB152 on #DA812D!") + + # Check cursor movement + console.rule("Checking cursor movement") + console.print() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("went back and wrapped to prev line") + time.sleep(1) + term.move_cursor_up() + term.write_text("we go up") + time.sleep(1) + term.move_cursor_down() + term.write_text("and down") + time.sleep(1) + term.move_cursor_up() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went up and back 2") + time.sleep(1) + term.move_cursor_down() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went down and back 2") + time.sleep(1) + + # Check erasing of lines + term.hide_cursor() + console.print() + console.rule("Checking line erasing") + console.print("\n...Deleting to the start of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + term.move_cursor_to_column(16) + term.write_styled("<", Style.parse("black on red")) + term.move_cursor_backward() + time.sleep(1) + term.erase_start_of_line() + time.sleep(1) + + console.print("\n\n...And to the end of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + + term.move_cursor_to_column(16) + term.write_styled(">", Style.parse("black on red")) + time.sleep(1) + term.erase_end_of_line() + time.sleep(1) + + console.print("\n\n...Now the whole line will be erased...") + term.write_styled("I'm going to disappear!", style=Style.parse("black on cyan")) + time.sleep(1) + term.erase_line() + + term.show_cursor() + print("\n") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py new file mode 100644 index 0000000..7520a9f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py @@ -0,0 +1,71 @@ +import sys +from dataclasses import dataclass + + +@dataclass +class WindowsConsoleFeatures: + """Windows features available.""" + + vt: bool = False + """The console supports VT codes.""" + truecolor: bool = False + """The console supports truecolor.""" + + +try: + import ctypes + from ctypes import LibraryLoader + + if sys.platform == "win32": + windll = LibraryLoader(ctypes.WinDLL) + else: + windll = None + raise ImportError("Not windows") + + from pip._vendor.rich._win32_console import ( + ENABLE_VIRTUAL_TERMINAL_PROCESSING, + GetConsoleMode, + GetStdHandle, + LegacyWindowsError, + ) + +except (AttributeError, ImportError, ValueError): + # Fallback if we can't load the Windows DLL + def get_windows_console_features() -> WindowsConsoleFeatures: + features = WindowsConsoleFeatures() + return features + +else: + + def get_windows_console_features() -> WindowsConsoleFeatures: + """Get windows console features. + + Returns: + WindowsConsoleFeatures: An instance of WindowsConsoleFeatures. + """ + handle = GetStdHandle() + try: + console_mode = GetConsoleMode(handle) + success = True + except LegacyWindowsError: + console_mode = 0 + success = False + vt = bool(success and console_mode & ENABLE_VIRTUAL_TERMINAL_PROCESSING) + truecolor = False + if vt: + win_version = sys.getwindowsversion() + truecolor = win_version.major > 10 or ( + win_version.major == 10 and win_version.build >= 15063 + ) + features = WindowsConsoleFeatures(vt=vt, truecolor=truecolor) + return features + + +if __name__ == "__main__": + import platform + + features = get_windows_console_features() + from pip._vendor.rich import print + + print(f'platform="{platform.system()}"') + print(repr(features)) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py new file mode 100644 index 0000000..5ece056 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py @@ -0,0 +1,56 @@ +from typing import Iterable, Sequence, Tuple, cast + +from pip._vendor.rich._win32_console import LegacyWindowsTerm, WindowsCoordinates +from pip._vendor.rich.segment import ControlCode, ControlType, Segment + + +def legacy_windows_render(buffer: Iterable[Segment], term: LegacyWindowsTerm) -> None: + """Makes appropriate Windows Console API calls based on the segments in the buffer. + + Args: + buffer (Iterable[Segment]): Iterable of Segments to convert to Win32 API calls. + term (LegacyWindowsTerm): Used to call the Windows Console API. + """ + for text, style, control in buffer: + if not control: + if style: + term.write_styled(text, style) + else: + term.write_text(text) + else: + control_codes: Sequence[ControlCode] = control + for control_code in control_codes: + control_type = control_code[0] + if control_type == ControlType.CURSOR_MOVE_TO: + _, x, y = cast(Tuple[ControlType, int, int], control_code) + term.move_cursor_to(WindowsCoordinates(row=y - 1, col=x - 1)) + elif control_type == ControlType.CARRIAGE_RETURN: + term.write_text("\r") + elif control_type == ControlType.HOME: + term.move_cursor_to(WindowsCoordinates(0, 0)) + elif control_type == ControlType.CURSOR_UP: + term.move_cursor_up() + elif control_type == ControlType.CURSOR_DOWN: + term.move_cursor_down() + elif control_type == ControlType.CURSOR_FORWARD: + term.move_cursor_forward() + elif control_type == ControlType.CURSOR_BACKWARD: + term.move_cursor_backward() + elif control_type == ControlType.CURSOR_MOVE_TO_COLUMN: + _, column = cast(Tuple[ControlType, int], control_code) + term.move_cursor_to_column(column - 1) + elif control_type == ControlType.HIDE_CURSOR: + term.hide_cursor() + elif control_type == ControlType.SHOW_CURSOR: + term.show_cursor() + elif control_type == ControlType.ERASE_IN_LINE: + _, mode = cast(Tuple[ControlType, int], control_code) + if mode == 0: + term.erase_end_of_line() + elif mode == 1: + term.erase_start_of_line() + elif mode == 2: + term.erase_line() + elif control_type == ControlType.SET_WINDOW_TITLE: + _, title = cast(Tuple[ControlType, str], control_code) + term.set_title(title) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py new file mode 100644 index 0000000..2e94ff6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py @@ -0,0 +1,93 @@ +from __future__ import annotations + +import re +from typing import Iterable + +from ._loop import loop_last +from .cells import cell_len, chop_cells + +re_word = re.compile(r"\s*\S+\s*") + + +def words(text: str) -> Iterable[tuple[int, int, str]]: + """Yields each word from the text as a tuple + containing (start_index, end_index, word). A "word" in this context may + include the actual word and any whitespace to the right. + """ + position = 0 + word_match = re_word.match(text, position) + while word_match is not None: + start, end = word_match.span() + word = word_match.group(0) + yield start, end, word + word_match = re_word.match(text, end) + + +def divide_line(text: str, width: int, fold: bool = True) -> list[int]: + """Given a string of text, and a width (measured in cells), return a list + of cell offsets which the string should be split at in order for it to fit + within the given width. + + Args: + text: The text to examine. + width: The available cell width. + fold: If True, words longer than `width` will be folded onto a new line. + + Returns: + A list of indices to break the line at. + """ + break_positions: list[int] = [] # offsets to insert the breaks at + append = break_positions.append + cell_offset = 0 + _cell_len = cell_len + + for start, _end, word in words(text): + word_length = _cell_len(word.rstrip()) + remaining_space = width - cell_offset + word_fits_remaining_space = remaining_space >= word_length + + if word_fits_remaining_space: + # Simplest case - the word fits within the remaining width for this line. + cell_offset += _cell_len(word) + else: + # Not enough space remaining for this word on the current line. + if word_length > width: + # The word doesn't fit on any line, so we can't simply + # place it on the next line... + if fold: + # Fold the word across multiple lines. + folded_word = chop_cells(word, width=width) + for last, line in loop_last(folded_word): + if start: + append(start) + if last: + cell_offset = _cell_len(line) + else: + start += len(line) + else: + # Folding isn't allowed, so crop the word. + if start: + append(start) + cell_offset = _cell_len(word) + elif cell_offset and start: + # The word doesn't fit within the remaining space on the current + # line, but it *can* fit on to the next (empty) line. + append(start) + cell_offset = _cell_len(word) + + return break_positions + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + console = Console(width=10) + console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345") + print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10)) + + console = Console(width=20) + console.rule() + console.print("TextualはPythonの高速アプリケーション開発フレームワークです") + + console.rule() + console.print("アプリケーションは1670万色を使用でき") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py new file mode 100644 index 0000000..e6e498e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py @@ -0,0 +1,33 @@ +from abc import ABC + + +class RichRenderable(ABC): + """An abstract base class for Rich renderables. + + Note that there is no need to extend this class, the intended use is to check if an + object supports the Rich renderable protocol. For example:: + + if isinstance(my_object, RichRenderable): + console.print(my_object) + + """ + + @classmethod + def __subclasshook__(cls, other: type) -> bool: + """Check if this class supports the rich render protocol.""" + return hasattr(other, "__rich_console__") or hasattr(other, "__rich__") + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.text import Text + + t = Text() + print(isinstance(Text, RichRenderable)) + print(isinstance(t, RichRenderable)) + + class Foo: + pass + + f = Foo() + print(isinstance(f, RichRenderable)) + print(isinstance("", RichRenderable)) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py new file mode 100644 index 0000000..e65dc5b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py @@ -0,0 +1,306 @@ +from itertools import chain +from typing import TYPE_CHECKING, Iterable, Optional, Literal + +from .constrain import Constrain +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import StyleType + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + +AlignMethod = Literal["left", "center", "right"] +VerticalAlignMethod = Literal["top", "middle", "bottom"] + + +class Align(JupyterMixin): + """Align a renderable by adding spaces if necessary. + + Args: + renderable (RenderableType): A console renderable. + align (AlignMethod): One of "left", "center", or "right"" + style (StyleType, optional): An optional style to apply to the background. + vertical (Optional[VerticalAlignMethod], optional): Optional vertical align, one of "top", "middle", or "bottom". Defaults to None. + pad (bool, optional): Pad the right with spaces. Defaults to True. + width (int, optional): Restrict contents to given width, or None to use default width. Defaults to None. + height (int, optional): Set height of align renderable, or None to fit to contents. Defaults to None. + + Raises: + ValueError: if ``align`` is not one of the expected values. + """ + + def __init__( + self, + renderable: "RenderableType", + align: AlignMethod = "left", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> None: + if align not in ("left", "center", "right"): + raise ValueError( + f'invalid value for align, expected "left", "center", or "right" (not {align!r})' + ) + if vertical is not None and vertical not in ("top", "middle", "bottom"): + raise ValueError( + f'invalid value for vertical, expected "top", "middle", or "bottom" (not {vertical!r})' + ) + self.renderable = renderable + self.align = align + self.style = style + self.vertical = vertical + self.pad = pad + self.width = width + self.height = height + + def __repr__(self) -> str: + return f"Align({self.renderable!r}, {self.align!r})" + + @classmethod + def left( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the left.""" + return cls( + renderable, + "left", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def center( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the center.""" + return cls( + renderable, + "center", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def right( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the right.""" + return cls( + renderable, + "right", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + align = self.align + width = console.measure(self.renderable, options=options).maximum + rendered = console.render( + Constrain( + self.renderable, width if self.width is None else min(width, self.width) + ), + options.update(height=None), + ) + lines = list(Segment.split_lines(rendered)) + width, height = Segment.get_shape(lines) + lines = Segment.set_shape(lines, width, height) + new_line = Segment.line() + excess_space = options.max_width - width + style = console.get_style(self.style) if self.style is not None else None + + def generate_segments() -> Iterable[Segment]: + if excess_space <= 0: + # Exact fit + for line in lines: + yield from line + yield new_line + + elif align == "left": + # Pad on the right + pad = Segment(" " * excess_space, style) if self.pad else None + for line in lines: + yield from line + if pad: + yield pad + yield new_line + + elif align == "center": + # Pad left and right + left = excess_space // 2 + pad = Segment(" " * left, style) + pad_right = ( + Segment(" " * (excess_space - left), style) if self.pad else None + ) + for line in lines: + if left: + yield pad + yield from line + if pad_right: + yield pad_right + yield new_line + + elif align == "right": + # Padding on left + pad = Segment(" " * excess_space, style) + for line in lines: + yield pad + yield from line + yield new_line + + blank_line = ( + Segment(f"{' ' * (self.width or options.max_width)}\n", style) + if self.pad + else Segment("\n") + ) + + def blank_lines(count: int) -> Iterable[Segment]: + if count > 0: + for _ in range(count): + yield blank_line + + vertical_height = self.height or options.height + iter_segments: Iterable[Segment] + if self.vertical and vertical_height is not None: + if self.vertical == "top": + bottom_space = vertical_height - height + iter_segments = chain(generate_segments(), blank_lines(bottom_space)) + elif self.vertical == "middle": + top_space = (vertical_height - height) // 2 + bottom_space = vertical_height - top_space - height + iter_segments = chain( + blank_lines(top_space), + generate_segments(), + blank_lines(bottom_space), + ) + else: # self.vertical == "bottom": + top_space = vertical_height - height + iter_segments = chain(blank_lines(top_space), generate_segments()) + else: + iter_segments = generate_segments() + if self.style: + style = console.get_style(self.style) + iter_segments = Segment.apply_style(iter_segments, style) + yield from iter_segments + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +class VerticalCenter(JupyterMixin): + """Vertically aligns a renderable. + + Warn: + This class is deprecated and may be removed in a future version. Use Align class with + `vertical="middle"`. + + Args: + renderable (RenderableType): A renderable object. + style (StyleType, optional): An optional style to apply to the background. Defaults to None. + """ + + def __init__( + self, + renderable: "RenderableType", + style: Optional[StyleType] = None, + ) -> None: + self.renderable = renderable + self.style = style + + def __repr__(self) -> str: + return f"VerticalCenter({self.renderable!r})" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + style = console.get_style(self.style) if self.style is not None else None + lines = console.render_lines( + self.renderable, options.update(height=None), pad=False + ) + width, _height = Segment.get_shape(lines) + new_line = Segment.line() + height = options.height or options.size.height + top_space = (height - len(lines)) // 2 + bottom_space = height - top_space - len(lines) + blank_line = Segment(f"{' ' * width}", style) + + def blank_lines(count: int) -> Iterable[Segment]: + for _ in range(count): + yield blank_line + yield new_line + + if top_space > 0: + yield from blank_lines(top_space) + for line in lines: + yield from line + yield new_line + if bottom_space > 0: + yield from blank_lines(bottom_space) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console, Group + from pip._vendor.rich.highlighter import ReprHighlighter + from pip._vendor.rich.panel import Panel + + highlighter = ReprHighlighter() + console = Console() + + panel = Panel( + Group( + Align.left(highlighter("align='left'")), + Align.center(highlighter("align='center'")), + Align.right(highlighter("align='right'")), + ), + width=60, + style="on dark_blue", + title="Align", + ) + + console.print( + Align.center(panel, vertical="middle", style="on red", height=console.height) + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py new file mode 100644 index 0000000..7de86ce --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py @@ -0,0 +1,241 @@ +import re +import sys +from contextlib import suppress +from typing import Iterable, NamedTuple, Optional + +from .color import Color +from .style import Style +from .text import Text + +re_ansi = re.compile( + r""" +(?:\x1b[0-?])| +(?:\x1b\](.*?)\x1b\\)| +(?:\x1b([(@-Z\\-_]|\[[0-?]*[ -/]*[@-~])) +""", + re.VERBOSE, +) + + +class _AnsiToken(NamedTuple): + """Result of ansi tokenized string.""" + + plain: str = "" + sgr: Optional[str] = "" + osc: Optional[str] = "" + + +def _ansi_tokenize(ansi_text: str) -> Iterable[_AnsiToken]: + """Tokenize a string in to plain text and ANSI codes. + + Args: + ansi_text (str): A String containing ANSI codes. + + Yields: + AnsiToken: A named tuple of (plain, sgr, osc) + """ + + position = 0 + sgr: Optional[str] + osc: Optional[str] + for match in re_ansi.finditer(ansi_text): + start, end = match.span(0) + osc, sgr = match.groups() + if start > position: + yield _AnsiToken(ansi_text[position:start]) + if sgr: + if sgr == "(": + position = end + 1 + continue + if sgr.endswith("m"): + yield _AnsiToken("", sgr[1:-1], osc) + else: + yield _AnsiToken("", sgr, osc) + position = end + if position < len(ansi_text): + yield _AnsiToken(ansi_text[position:]) + + +SGR_STYLE_MAP = { + 1: "bold", + 2: "dim", + 3: "italic", + 4: "underline", + 5: "blink", + 6: "blink2", + 7: "reverse", + 8: "conceal", + 9: "strike", + 21: "underline2", + 22: "not dim not bold", + 23: "not italic", + 24: "not underline", + 25: "not blink", + 26: "not blink2", + 27: "not reverse", + 28: "not conceal", + 29: "not strike", + 30: "color(0)", + 31: "color(1)", + 32: "color(2)", + 33: "color(3)", + 34: "color(4)", + 35: "color(5)", + 36: "color(6)", + 37: "color(7)", + 39: "default", + 40: "on color(0)", + 41: "on color(1)", + 42: "on color(2)", + 43: "on color(3)", + 44: "on color(4)", + 45: "on color(5)", + 46: "on color(6)", + 47: "on color(7)", + 49: "on default", + 51: "frame", + 52: "encircle", + 53: "overline", + 54: "not frame not encircle", + 55: "not overline", + 90: "color(8)", + 91: "color(9)", + 92: "color(10)", + 93: "color(11)", + 94: "color(12)", + 95: "color(13)", + 96: "color(14)", + 97: "color(15)", + 100: "on color(8)", + 101: "on color(9)", + 102: "on color(10)", + 103: "on color(11)", + 104: "on color(12)", + 105: "on color(13)", + 106: "on color(14)", + 107: "on color(15)", +} + + +class AnsiDecoder: + """Translate ANSI code in to styled Text.""" + + def __init__(self) -> None: + self.style = Style.null() + + def decode(self, terminal_text: str) -> Iterable[Text]: + """Decode ANSI codes in an iterable of lines. + + Args: + lines (Iterable[str]): An iterable of lines of terminal output. + + Yields: + Text: Marked up Text. + """ + for line in terminal_text.splitlines(): + yield self.decode_line(line) + + def decode_line(self, line: str) -> Text: + """Decode a line containing ansi codes. + + Args: + line (str): A line of terminal output. + + Returns: + Text: A Text instance marked up according to ansi codes. + """ + from_ansi = Color.from_ansi + from_rgb = Color.from_rgb + _Style = Style + text = Text() + append = text.append + line = line.rsplit("\r", 1)[-1] + for plain_text, sgr, osc in _ansi_tokenize(line): + if plain_text: + append(plain_text, self.style or None) + elif osc is not None: + if osc.startswith("8;"): + _params, semicolon, link = osc[2:].partition(";") + if semicolon: + self.style = self.style.update_link(link or None) + elif sgr is not None: + # Translate in to semi-colon separated codes + # Ignore invalid codes, because we want to be lenient + codes = [ + min(255, int(_code) if _code else 0) + for _code in sgr.split(";") + if _code.isdigit() or _code == "" + ] + iter_codes = iter(codes) + for code in iter_codes: + if code == 0: + # reset + self.style = _Style.null() + elif code in SGR_STYLE_MAP: + # styles + self.style += _Style.parse(SGR_STYLE_MAP[code]) + elif code == 38: + #  Foreground + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ) + ) + elif code == 48: + # Background + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + None, from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + None, + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ), + ) + + return text + + +if sys.platform != "win32" and __name__ == "__main__": # pragma: no cover + import io + import os + import pty + import sys + + decoder = AnsiDecoder() + + stdout = io.BytesIO() + + def read(fd: int) -> bytes: + data = os.read(fd, 1024) + stdout.write(data) + return data + + pty.spawn(sys.argv[1:], read) + + from .console import Console + + console = Console(record=True) + + stdout_result = stdout.getvalue().decode("utf-8") + print(stdout_result) + + for line in decoder.decode(stdout_result): + console.print(line) + + console.save_html("stdout.html") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py new file mode 100644 index 0000000..022284b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py @@ -0,0 +1,93 @@ +from typing import Optional, Union + +from .color import Color +from .console import Console, ConsoleOptions, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style + +# There are left-aligned characters for 1/8 to 7/8, but +# the right-aligned characters exist only for 1/8 and 4/8. +BEGIN_BLOCK_ELEMENTS = ["█", "█", "█", "▐", "▐", "▐", "▕", "▕"] +END_BLOCK_ELEMENTS = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"] +FULL_BLOCK = "█" + + +class Bar(JupyterMixin): + """Renders a solid block bar. + + Args: + size (float): Value for the end of the bar. + begin (float): Begin point (between 0 and size, inclusive). + end (float): End point (between 0 and size, inclusive). + width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None. + color (Union[Color, str], optional): Color of the bar. Defaults to "default". + bgcolor (Union[Color, str], optional): Color of bar background. Defaults to "default". + """ + + def __init__( + self, + size: float, + begin: float, + end: float, + *, + width: Optional[int] = None, + color: Union[Color, str] = "default", + bgcolor: Union[Color, str] = "default", + ): + self.size = size + self.begin = max(begin, 0) + self.end = min(end, size) + self.width = width + self.style = Style(color=color, bgcolor=bgcolor) + + def __repr__(self) -> str: + return f"Bar({self.size}, {self.begin}, {self.end})" + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + width = min( + self.width if self.width is not None else options.max_width, + options.max_width, + ) + + if self.begin >= self.end: + yield Segment(" " * width, self.style) + yield Segment.line() + return + + prefix_complete_eights = int(width * 8 * self.begin / self.size) + prefix_bar_count = prefix_complete_eights // 8 + prefix_eights_count = prefix_complete_eights % 8 + + body_complete_eights = int(width * 8 * self.end / self.size) + body_bar_count = body_complete_eights // 8 + body_eights_count = body_complete_eights % 8 + + # When start and end fall into the same cell, we ideally should render + # a symbol that's "center-aligned", but there is no good symbol in Unicode. + # In this case, we fall back to right-aligned block symbol for simplicity. + + prefix = " " * prefix_bar_count + if prefix_eights_count: + prefix += BEGIN_BLOCK_ELEMENTS[prefix_eights_count] + + body = FULL_BLOCK * body_bar_count + if body_eights_count: + body += END_BLOCK_ELEMENTS[body_eights_count] + + suffix = " " * (width - len(body)) + + yield Segment(prefix + body[len(prefix) :] + suffix, self.style) + yield Segment.line() + + def __rich_measure__( + self, console: Console, options: ConsoleOptions + ) -> Measurement: + return ( + Measurement(self.width, self.width) + if self.width is not None + else Measurement(4, options.max_width) + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py new file mode 100644 index 0000000..3f330cc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py @@ -0,0 +1,474 @@ +from typing import TYPE_CHECKING, Iterable, List, Literal + + +from ._loop import loop_last + +if TYPE_CHECKING: + from pip._vendor.rich.console import ConsoleOptions + + +class Box: + """Defines characters to render boxes. + + ┌─┬┐ top + │ ││ head + ├─┼┤ head_row + │ ││ mid + ├─┼┤ row + ├─┼┤ foot_row + │ ││ foot + └─┴┘ bottom + + Args: + box (str): Characters making up box. + ascii (bool, optional): True if this box uses ascii characters only. Default is False. + """ + + def __init__(self, box: str, *, ascii: bool = False) -> None: + self._box = box + self.ascii = ascii + line1, line2, line3, line4, line5, line6, line7, line8 = box.splitlines() + # top + self.top_left, self.top, self.top_divider, self.top_right = iter(line1) + # head + self.head_left, _, self.head_vertical, self.head_right = iter(line2) + # head_row + ( + self.head_row_left, + self.head_row_horizontal, + self.head_row_cross, + self.head_row_right, + ) = iter(line3) + + # mid + self.mid_left, _, self.mid_vertical, self.mid_right = iter(line4) + # row + self.row_left, self.row_horizontal, self.row_cross, self.row_right = iter(line5) + # foot_row + ( + self.foot_row_left, + self.foot_row_horizontal, + self.foot_row_cross, + self.foot_row_right, + ) = iter(line6) + # foot + self.foot_left, _, self.foot_vertical, self.foot_right = iter(line7) + # bottom + self.bottom_left, self.bottom, self.bottom_divider, self.bottom_right = iter( + line8 + ) + + def __repr__(self) -> str: + return "Box(...)" + + def __str__(self) -> str: + return self._box + + def substitute(self, options: "ConsoleOptions", safe: bool = True) -> "Box": + """Substitute this box for another if it won't render due to platform issues. + + Args: + options (ConsoleOptions): Console options used in rendering. + safe (bool, optional): Substitute this for another Box if there are known problems + displaying on the platform (currently only relevant on Windows). Default is True. + + Returns: + Box: A different Box or the same Box. + """ + box = self + if options.legacy_windows and safe: + box = LEGACY_WINDOWS_SUBSTITUTIONS.get(box, box) + if options.ascii_only and not box.ascii: + box = ASCII + return box + + def get_plain_headed_box(self) -> "Box": + """If this box uses special characters for the borders of the header, then + return the equivalent box that does not. + + Returns: + Box: The most similar Box that doesn't use header-specific box characters. + If the current Box already satisfies this criterion, then it's returned. + """ + return PLAIN_HEADED_SUBSTITUTIONS.get(self, self) + + def get_top(self, widths: Iterable[int]) -> str: + """Get the top of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.top_left) + for last, width in loop_last(widths): + append(self.top * width) + if not last: + append(self.top_divider) + append(self.top_right) + return "".join(parts) + + def get_row( + self, + widths: Iterable[int], + level: Literal["head", "row", "foot", "mid"] = "row", + edge: bool = True, + ) -> str: + """Get the top of a simple box. + + Args: + width (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + if level == "head": + left = self.head_row_left + horizontal = self.head_row_horizontal + cross = self.head_row_cross + right = self.head_row_right + elif level == "row": + left = self.row_left + horizontal = self.row_horizontal + cross = self.row_cross + right = self.row_right + elif level == "mid": + left = self.mid_left + horizontal = " " + cross = self.mid_vertical + right = self.mid_right + elif level == "foot": + left = self.foot_row_left + horizontal = self.foot_row_horizontal + cross = self.foot_row_cross + right = self.foot_row_right + else: + raise ValueError("level must be 'head', 'row' or 'foot'") + + parts: List[str] = [] + append = parts.append + if edge: + append(left) + for last, width in loop_last(widths): + append(horizontal * width) + if not last: + append(cross) + if edge: + append(right) + return "".join(parts) + + def get_bottom(self, widths: Iterable[int]) -> str: + """Get the bottom of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.bottom_left) + for last, width in loop_last(widths): + append(self.bottom * width) + if not last: + append(self.bottom_divider) + append(self.bottom_right) + return "".join(parts) + + +# fmt: off +ASCII: Box = Box( + "+--+\n" + "| ||\n" + "|-+|\n" + "| ||\n" + "|-+|\n" + "|-+|\n" + "| ||\n" + "+--+\n", + ascii=True, +) + +ASCII2: Box = Box( + "+-++\n" + "| ||\n" + "+-++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +ASCII_DOUBLE_HEAD: Box = Box( + "+-++\n" + "| ||\n" + "+=++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +SQUARE: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +SQUARE_DOUBLE_HEAD: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "╞═╪╡\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +MINIMAL: Box = Box( + " ╷ \n" + " │ \n" + "╶─┼╴\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + + +MINIMAL_HEAVY_HEAD: Box = Box( + " ╷ \n" + " │ \n" + "╺━┿╸\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + +MINIMAL_DOUBLE_HEAD: Box = Box( + " ╷ \n" + " │ \n" + " ═╪ \n" + " │ \n" + " ─┼ \n" + " ─┼ \n" + " │ \n" + " ╵ \n" +) + + +SIMPLE: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " ── \n" + " \n" + " \n" +) + +SIMPLE_HEAD: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " \n" + " \n" + " \n" +) + + +SIMPLE_HEAVY: Box = Box( + " \n" + " \n" + " ━━ \n" + " \n" + " \n" + " ━━ \n" + " \n" + " \n" +) + + +HORIZONTALS: Box = Box( + " ── \n" + " \n" + " ── \n" + " \n" + " ── \n" + " ── \n" + " \n" + " ── \n" +) + +ROUNDED: Box = Box( + "╭─┬╮\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "╰─┴╯\n" +) + +HEAVY: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┗━┻┛\n" +) + +HEAVY_EDGE: Box = Box( + "┏━┯┓\n" + "┃ │┃\n" + "┠─┼┨\n" + "┃ │┃\n" + "┠─┼┨\n" + "┠─┼┨\n" + "┃ │┃\n" + "┗━┷┛\n" +) + +HEAVY_HEAD: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┡━╇┩\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +DOUBLE: Box = Box( + "╔═╦╗\n" + "║ ║║\n" + "╠═╬╣\n" + "║ ║║\n" + "╠═╬╣\n" + "╠═╬╣\n" + "║ ║║\n" + "╚═╩╝\n" +) + +DOUBLE_EDGE: Box = Box( + "╔═╤╗\n" + "║ │║\n" + "╟─┼╢\n" + "║ │║\n" + "╟─┼╢\n" + "╟─┼╢\n" + "║ │║\n" + "╚═╧╝\n" +) + +MARKDOWN: Box = Box( + " \n" + "| ||\n" + "|-||\n" + "| ||\n" + "|-||\n" + "|-||\n" + "| ||\n" + " \n", + ascii=True, +) +# fmt: on + +# Map Boxes that don't render with raster fonts on to equivalent that do +LEGACY_WINDOWS_SUBSTITUTIONS = { + ROUNDED: SQUARE, + MINIMAL_HEAVY_HEAD: MINIMAL, + SIMPLE_HEAVY: SIMPLE, + HEAVY: SQUARE, + HEAVY_EDGE: SQUARE, + HEAVY_HEAD: SQUARE, +} + +# Map headed boxes to their headerless equivalents +PLAIN_HEADED_SUBSTITUTIONS = { + HEAVY_HEAD: SQUARE, + SQUARE_DOUBLE_HEAD: SQUARE, + MINIMAL_DOUBLE_HEAD: MINIMAL, + MINIMAL_HEAVY_HEAD: MINIMAL, + ASCII_DOUBLE_HEAD: ASCII2, +} + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.panel import Panel + + from . import box as box + from .console import Console + from .table import Table + from .text import Text + + console = Console(record=True) + + BOXES = [ + "ASCII", + "ASCII2", + "ASCII_DOUBLE_HEAD", + "SQUARE", + "SQUARE_DOUBLE_HEAD", + "MINIMAL", + "MINIMAL_HEAVY_HEAD", + "MINIMAL_DOUBLE_HEAD", + "SIMPLE", + "SIMPLE_HEAD", + "SIMPLE_HEAVY", + "HORIZONTALS", + "ROUNDED", + "HEAVY", + "HEAVY_EDGE", + "HEAVY_HEAD", + "DOUBLE", + "DOUBLE_EDGE", + "MARKDOWN", + ] + + console.print(Panel("[bold green]Box Constants", style="green"), justify="center") + console.print() + + columns = Columns(expand=True, padding=2) + for box_name in sorted(BOXES): + table = Table( + show_footer=True, style="dim", border_style="not dim", expand=True + ) + table.add_column("Header 1", "Footer 1") + table.add_column("Header 2", "Footer 2") + table.add_row("Cell", "Cell") + table.add_row("Cell", "Cell") + table.box = getattr(box, box_name) + table.title = Text(f"box.{box_name}", style="magenta") + columns.add_renderable(table) + console.print(columns) + + # console.save_svg("box.svg") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py new file mode 100644 index 0000000..a854622 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py @@ -0,0 +1,174 @@ +from __future__ import annotations + +from functools import lru_cache +from typing import Callable + +from ._cell_widths import CELL_WIDTHS + +# Ranges of unicode ordinals that produce a 1-cell wide character +# This is non-exhaustive, but covers most common Western characters +_SINGLE_CELL_UNICODE_RANGES: list[tuple[int, int]] = [ + (0x20, 0x7E), # Latin (excluding non-printable) + (0xA0, 0xAC), + (0xAE, 0x002FF), + (0x00370, 0x00482), # Greek / Cyrillic + (0x02500, 0x025FC), # Box drawing, box elements, geometric shapes + (0x02800, 0x028FF), # Braille +] + +# A set of characters that are a single cell wide +_SINGLE_CELLS = frozenset( + [ + character + for _start, _end in _SINGLE_CELL_UNICODE_RANGES + for character in map(chr, range(_start, _end + 1)) + ] +) + +# When called with a string this will return True if all +# characters are single-cell, otherwise False +_is_single_cell_widths: Callable[[str], bool] = _SINGLE_CELLS.issuperset + + +@lru_cache(4096) +def cached_cell_len(text: str) -> int: + """Get the number of cells required to display text. + + This method always caches, which may use up a lot of memory. It is recommended to use + `cell_len` over this method. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + if _is_single_cell_widths(text): + return len(text) + return sum(map(get_character_cell_size, text)) + + +def cell_len(text: str, _cell_len: Callable[[str], int] = cached_cell_len) -> int: + """Get the number of cells required to display text. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + if len(text) < 512: + return _cell_len(text) + if _is_single_cell_widths(text): + return len(text) + return sum(map(get_character_cell_size, text)) + + +@lru_cache(maxsize=4096) +def get_character_cell_size(character: str) -> int: + """Get the cell size of a character. + + Args: + character (str): A single character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + codepoint = ord(character) + _table = CELL_WIDTHS + lower_bound = 0 + upper_bound = len(_table) - 1 + index = (lower_bound + upper_bound) // 2 + while True: + start, end, width = _table[index] + if codepoint < start: + upper_bound = index - 1 + elif codepoint > end: + lower_bound = index + 1 + else: + return 0 if width == -1 else width + if upper_bound < lower_bound: + break + index = (lower_bound + upper_bound) // 2 + return 1 + + +def set_cell_size(text: str, total: int) -> str: + """Set the length of a string to fit within given number of cells.""" + + if _is_single_cell_widths(text): + size = len(text) + if size < total: + return text + " " * (total - size) + return text[:total] + + if total <= 0: + return "" + cell_size = cell_len(text) + if cell_size == total: + return text + if cell_size < total: + return text + " " * (total - cell_size) + + start = 0 + end = len(text) + + # Binary search until we find the right size + while True: + pos = (start + end) // 2 + before = text[: pos + 1] + before_len = cell_len(before) + if before_len == total + 1 and cell_len(before[-1]) == 2: + return before[:-1] + " " + if before_len == total: + return before + if before_len > total: + end = pos + else: + start = pos + + +def chop_cells( + text: str, + width: int, +) -> list[str]: + """Split text into lines such that each line fits within the available (cell) width. + + Args: + text: The text to fold such that it fits in the given width. + width: The width available (number of cells). + + Returns: + A list of strings such that each string in the list has cell width + less than or equal to the available width. + """ + _get_character_cell_size = get_character_cell_size + lines: list[list[str]] = [[]] + + append_new_line = lines.append + append_to_last_line = lines[-1].append + + total_width = 0 + + for character in text: + cell_width = _get_character_cell_size(character) + char_doesnt_fit = total_width + cell_width > width + + if char_doesnt_fit: + append_new_line([character]) + append_to_last_line = lines[-1].append + total_width = cell_width + else: + append_to_last_line(character) + total_width += cell_width + + return ["".join(line) for line in lines] + + +if __name__ == "__main__": # pragma: no cover + print(get_character_cell_size("😽")) + for line in chop_cells("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", 8): + print(line) + for n in range(80, 1, -1): + print(set_cell_size("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", n) + "|") + print("x" * n) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py new file mode 100644 index 0000000..e2c23a6 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py @@ -0,0 +1,621 @@ +import re +import sys +from colorsys import rgb_to_hls +from enum import IntEnum +from functools import lru_cache +from typing import TYPE_CHECKING, NamedTuple, Optional, Tuple + +from ._palettes import EIGHT_BIT_PALETTE, STANDARD_PALETTE, WINDOWS_PALETTE +from .color_triplet import ColorTriplet +from .repr import Result, rich_repr +from .terminal_theme import DEFAULT_TERMINAL_THEME + +if TYPE_CHECKING: # pragma: no cover + from .terminal_theme import TerminalTheme + from .text import Text + + +WINDOWS = sys.platform == "win32" + + +class ColorSystem(IntEnum): + """One of the 3 color system supported by terminals.""" + + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorSystem.{self.name}" + + def __str__(self) -> str: + return repr(self) + + +class ColorType(IntEnum): + """Type of color stored in Color class.""" + + DEFAULT = 0 + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorType.{self.name}" + + +ANSI_COLOR_NAMES = { + "black": 0, + "red": 1, + "green": 2, + "yellow": 3, + "blue": 4, + "magenta": 5, + "cyan": 6, + "white": 7, + "bright_black": 8, + "bright_red": 9, + "bright_green": 10, + "bright_yellow": 11, + "bright_blue": 12, + "bright_magenta": 13, + "bright_cyan": 14, + "bright_white": 15, + "grey0": 16, + "gray0": 16, + "navy_blue": 17, + "dark_blue": 18, + "blue3": 20, + "blue1": 21, + "dark_green": 22, + "deep_sky_blue4": 25, + "dodger_blue3": 26, + "dodger_blue2": 27, + "green4": 28, + "spring_green4": 29, + "turquoise4": 30, + "deep_sky_blue3": 32, + "dodger_blue1": 33, + "green3": 40, + "spring_green3": 41, + "dark_cyan": 36, + "light_sea_green": 37, + "deep_sky_blue2": 38, + "deep_sky_blue1": 39, + "spring_green2": 47, + "cyan3": 43, + "dark_turquoise": 44, + "turquoise2": 45, + "green1": 46, + "spring_green1": 48, + "medium_spring_green": 49, + "cyan2": 50, + "cyan1": 51, + "dark_red": 88, + "deep_pink4": 125, + "purple4": 55, + "purple3": 56, + "blue_violet": 57, + "orange4": 94, + "grey37": 59, + "gray37": 59, + "medium_purple4": 60, + "slate_blue3": 62, + "royal_blue1": 63, + "chartreuse4": 64, + "dark_sea_green4": 71, + "pale_turquoise4": 66, + "steel_blue": 67, + "steel_blue3": 68, + "cornflower_blue": 69, + "chartreuse3": 76, + "cadet_blue": 73, + "sky_blue3": 74, + "steel_blue1": 81, + "pale_green3": 114, + "sea_green3": 78, + "aquamarine3": 79, + "medium_turquoise": 80, + "chartreuse2": 112, + "sea_green2": 83, + "sea_green1": 85, + "aquamarine1": 122, + "dark_slate_gray2": 87, + "dark_magenta": 91, + "dark_violet": 128, + "purple": 129, + "light_pink4": 95, + "plum4": 96, + "medium_purple3": 98, + "slate_blue1": 99, + "yellow4": 106, + "wheat4": 101, + "grey53": 102, + "gray53": 102, + "light_slate_grey": 103, + "light_slate_gray": 103, + "medium_purple": 104, + "light_slate_blue": 105, + "dark_olive_green3": 149, + "dark_sea_green": 108, + "light_sky_blue3": 110, + "sky_blue2": 111, + "dark_sea_green3": 150, + "dark_slate_gray3": 116, + "sky_blue1": 117, + "chartreuse1": 118, + "light_green": 120, + "pale_green1": 156, + "dark_slate_gray1": 123, + "red3": 160, + "medium_violet_red": 126, + "magenta3": 164, + "dark_orange3": 166, + "indian_red": 167, + "hot_pink3": 168, + "medium_orchid3": 133, + "medium_orchid": 134, + "medium_purple2": 140, + "dark_goldenrod": 136, + "light_salmon3": 173, + "rosy_brown": 138, + "grey63": 139, + "gray63": 139, + "medium_purple1": 141, + "gold3": 178, + "dark_khaki": 143, + "navajo_white3": 144, + "grey69": 145, + "gray69": 145, + "light_steel_blue3": 146, + "light_steel_blue": 147, + "yellow3": 184, + "dark_sea_green2": 157, + "light_cyan3": 152, + "light_sky_blue1": 153, + "green_yellow": 154, + "dark_olive_green2": 155, + "dark_sea_green1": 193, + "pale_turquoise1": 159, + "deep_pink3": 162, + "magenta2": 200, + "hot_pink2": 169, + "orchid": 170, + "medium_orchid1": 207, + "orange3": 172, + "light_pink3": 174, + "pink3": 175, + "plum3": 176, + "violet": 177, + "light_goldenrod3": 179, + "tan": 180, + "misty_rose3": 181, + "thistle3": 182, + "plum2": 183, + "khaki3": 185, + "light_goldenrod2": 222, + "light_yellow3": 187, + "grey84": 188, + "gray84": 188, + "light_steel_blue1": 189, + "yellow2": 190, + "dark_olive_green1": 192, + "honeydew2": 194, + "light_cyan1": 195, + "red1": 196, + "deep_pink2": 197, + "deep_pink1": 199, + "magenta1": 201, + "orange_red1": 202, + "indian_red1": 204, + "hot_pink": 206, + "dark_orange": 208, + "salmon1": 209, + "light_coral": 210, + "pale_violet_red1": 211, + "orchid2": 212, + "orchid1": 213, + "orange1": 214, + "sandy_brown": 215, + "light_salmon1": 216, + "light_pink1": 217, + "pink1": 218, + "plum1": 219, + "gold1": 220, + "navajo_white1": 223, + "misty_rose1": 224, + "thistle1": 225, + "yellow1": 226, + "light_goldenrod1": 227, + "khaki1": 228, + "wheat1": 229, + "cornsilk1": 230, + "grey100": 231, + "gray100": 231, + "grey3": 232, + "gray3": 232, + "grey7": 233, + "gray7": 233, + "grey11": 234, + "gray11": 234, + "grey15": 235, + "gray15": 235, + "grey19": 236, + "gray19": 236, + "grey23": 237, + "gray23": 237, + "grey27": 238, + "gray27": 238, + "grey30": 239, + "gray30": 239, + "grey35": 240, + "gray35": 240, + "grey39": 241, + "gray39": 241, + "grey42": 242, + "gray42": 242, + "grey46": 243, + "gray46": 243, + "grey50": 244, + "gray50": 244, + "grey54": 245, + "gray54": 245, + "grey58": 246, + "gray58": 246, + "grey62": 247, + "gray62": 247, + "grey66": 248, + "gray66": 248, + "grey70": 249, + "gray70": 249, + "grey74": 250, + "gray74": 250, + "grey78": 251, + "gray78": 251, + "grey82": 252, + "gray82": 252, + "grey85": 253, + "gray85": 253, + "grey89": 254, + "gray89": 254, + "grey93": 255, + "gray93": 255, +} + + +class ColorParseError(Exception): + """The color could not be parsed.""" + + +RE_COLOR = re.compile( + r"""^ +\#([0-9a-f]{6})$| +color\(([0-9]{1,3})\)$| +rgb\(([\d\s,]+)\)$ +""", + re.VERBOSE, +) + + +@rich_repr +class Color(NamedTuple): + """Terminal color definition.""" + + name: str + """The name of the color (typically the input to Color.parse).""" + type: ColorType + """The type of the color.""" + number: Optional[int] = None + """The color number, if a standard color, or None.""" + triplet: Optional[ColorTriplet] = None + """A triplet of color components, if an RGB color.""" + + def __rich__(self) -> "Text": + """Displays the actual color if Rich printed.""" + from .style import Style + from .text import Text + + return Text.assemble( + f"", + ) + + def __rich_repr__(self) -> Result: + yield self.name + yield self.type + yield "number", self.number, None + yield "triplet", self.triplet, None + + @property + def system(self) -> ColorSystem: + """Get the native color system for this color.""" + if self.type == ColorType.DEFAULT: + return ColorSystem.STANDARD + return ColorSystem(int(self.type)) + + @property + def is_system_defined(self) -> bool: + """Check if the color is ultimately defined by the system.""" + return self.system not in (ColorSystem.EIGHT_BIT, ColorSystem.TRUECOLOR) + + @property + def is_default(self) -> bool: + """Check if the color is a default color.""" + return self.type == ColorType.DEFAULT + + def get_truecolor( + self, theme: Optional["TerminalTheme"] = None, foreground: bool = True + ) -> ColorTriplet: + """Get an equivalent color triplet for this color. + + Args: + theme (TerminalTheme, optional): Optional terminal theme, or None to use default. Defaults to None. + foreground (bool, optional): True for a foreground color, or False for background. Defaults to True. + + Returns: + ColorTriplet: A color triplet containing RGB components. + """ + + if theme is None: + theme = DEFAULT_TERMINAL_THEME + if self.type == ColorType.TRUECOLOR: + assert self.triplet is not None + return self.triplet + elif self.type == ColorType.EIGHT_BIT: + assert self.number is not None + return EIGHT_BIT_PALETTE[self.number] + elif self.type == ColorType.STANDARD: + assert self.number is not None + return theme.ansi_colors[self.number] + elif self.type == ColorType.WINDOWS: + assert self.number is not None + return WINDOWS_PALETTE[self.number] + else: # self.type == ColorType.DEFAULT: + assert self.number is None + return theme.foreground_color if foreground else theme.background_color + + @classmethod + def from_ansi(cls, number: int) -> "Color": + """Create a Color number from it's 8-bit ansi number. + + Args: + number (int): A number between 0-255 inclusive. + + Returns: + Color: A new Color instance. + """ + return cls( + name=f"color({number})", + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + @classmethod + def from_triplet(cls, triplet: "ColorTriplet") -> "Color": + """Create a truecolor RGB color from a triplet of values. + + Args: + triplet (ColorTriplet): A color triplet containing red, green and blue components. + + Returns: + Color: A new color object. + """ + return cls(name=triplet.hex, type=ColorType.TRUECOLOR, triplet=triplet) + + @classmethod + def from_rgb(cls, red: float, green: float, blue: float) -> "Color": + """Create a truecolor from three color components in the range(0->255). + + Args: + red (float): Red component in range 0-255. + green (float): Green component in range 0-255. + blue (float): Blue component in range 0-255. + + Returns: + Color: A new color object. + """ + return cls.from_triplet(ColorTriplet(int(red), int(green), int(blue))) + + @classmethod + def default(cls) -> "Color": + """Get a Color instance representing the default color. + + Returns: + Color: Default color. + """ + return cls(name="default", type=ColorType.DEFAULT) + + @classmethod + @lru_cache(maxsize=1024) + def parse(cls, color: str) -> "Color": + """Parse a color definition.""" + original_color = color + color = color.lower().strip() + + if color == "default": + return cls(color, type=ColorType.DEFAULT) + + color_number = ANSI_COLOR_NAMES.get(color) + if color_number is not None: + return cls( + color, + type=(ColorType.STANDARD if color_number < 16 else ColorType.EIGHT_BIT), + number=color_number, + ) + + color_match = RE_COLOR.match(color) + if color_match is None: + raise ColorParseError(f"{original_color!r} is not a valid color") + + color_24, color_8, color_rgb = color_match.groups() + if color_24: + triplet = ColorTriplet( + int(color_24[0:2], 16), int(color_24[2:4], 16), int(color_24[4:6], 16) + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + elif color_8: + number = int(color_8) + if number > 255: + raise ColorParseError(f"color number must be <= 255 in {color!r}") + return cls( + color, + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + else: # color_rgb: + components = color_rgb.split(",") + if len(components) != 3: + raise ColorParseError( + f"expected three components in {original_color!r}" + ) + red, green, blue = components + triplet = ColorTriplet(int(red), int(green), int(blue)) + if not all(component <= 255 for component in triplet): + raise ColorParseError( + f"color components must be <= 255 in {original_color!r}" + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + @lru_cache(maxsize=1024) + def get_ansi_codes(self, foreground: bool = True) -> Tuple[str, ...]: + """Get the ANSI escape codes for this color.""" + _type = self.type + if _type == ColorType.DEFAULT: + return ("39" if foreground else "49",) + + elif _type == ColorType.WINDOWS: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.STANDARD: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.EIGHT_BIT: + assert self.number is not None + return ("38" if foreground else "48", "5", str(self.number)) + + else: # self.standard == ColorStandard.TRUECOLOR: + assert self.triplet is not None + red, green, blue = self.triplet + return ("38" if foreground else "48", "2", str(red), str(green), str(blue)) + + @lru_cache(maxsize=1024) + def downgrade(self, system: ColorSystem) -> "Color": + """Downgrade a color system to a system with fewer colors.""" + + if self.type in (ColorType.DEFAULT, system): + return self + # Convert to 8-bit color from truecolor color + if system == ColorSystem.EIGHT_BIT and self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + _h, l, s = rgb_to_hls(*self.triplet.normalized) + # If saturation is under 15% assume it is grayscale + if s < 0.15: + gray = round(l * 25.0) + if gray == 0: + color_number = 16 + elif gray == 25: + color_number = 231 + else: + color_number = 231 + gray + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + red, green, blue = self.triplet + six_red = red / 95 if red < 95 else 1 + (red - 95) / 40 + six_green = green / 95 if green < 95 else 1 + (green - 95) / 40 + six_blue = blue / 95 if blue < 95 else 1 + (blue - 95) / 40 + + color_number = ( + 16 + 36 * round(six_red) + 6 * round(six_green) + round(six_blue) + ) + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + # Convert to standard from truecolor or 8-bit + elif system == ColorSystem.STANDARD: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = STANDARD_PALETTE.match(triplet) + return Color(self.name, ColorType.STANDARD, number=color_number) + + elif system == ColorSystem.WINDOWS: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + if self.number < 16: + return Color(self.name, ColorType.WINDOWS, number=self.number) + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = WINDOWS_PALETTE.match(triplet) + return Color(self.name, ColorType.WINDOWS, number=color_number) + + return self + + +def parse_rgb_hex(hex_color: str) -> ColorTriplet: + """Parse six hex characters in to RGB triplet.""" + assert len(hex_color) == 6, "must be 6 characters" + color = ColorTriplet( + int(hex_color[0:2], 16), int(hex_color[2:4], 16), int(hex_color[4:6], 16) + ) + return color + + +def blend_rgb( + color1: ColorTriplet, color2: ColorTriplet, cross_fade: float = 0.5 +) -> ColorTriplet: + """Blend one RGB color in to another.""" + r1, g1, b1 = color1 + r2, g2, b2 = color2 + new_color = ColorTriplet( + int(r1 + (r2 - r1) * cross_fade), + int(g1 + (g2 - g1) * cross_fade), + int(b1 + (b2 - b1) * cross_fade), + ) + return new_color + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + from .table import Table + from .text import Text + + console = Console() + + table = Table(show_footer=False, show_edge=True) + table.add_column("Color", width=10, overflow="ellipsis") + table.add_column("Number", justify="right", style="yellow") + table.add_column("Name", style="green") + table.add_column("Hex", style="blue") + table.add_column("RGB", style="magenta") + + colors = sorted((v, k) for k, v in ANSI_COLOR_NAMES.items()) + for color_number, name in colors: + if "grey" in name: + continue + color_cell = Text(" " * 10, style=f"on {name}") + if color_number < 16: + table.add_row(color_cell, f"{color_number}", Text(f'"{name}"')) + else: + color = EIGHT_BIT_PALETTE[color_number] # type: ignore[has-type] + table.add_row( + color_cell, str(color_number), Text(f'"{name}"'), color.hex, color.rgb + ) + + console.print(table) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py new file mode 100644 index 0000000..02cab32 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py @@ -0,0 +1,38 @@ +from typing import NamedTuple, Tuple + + +class ColorTriplet(NamedTuple): + """The red, green, and blue components of a color.""" + + red: int + """Red component in 0 to 255 range.""" + green: int + """Green component in 0 to 255 range.""" + blue: int + """Blue component in 0 to 255 range.""" + + @property + def hex(self) -> str: + """get the color triplet in CSS style.""" + red, green, blue = self + return f"#{red:02x}{green:02x}{blue:02x}" + + @property + def rgb(self) -> str: + """The color in RGB format. + + Returns: + str: An rgb color, e.g. ``"rgb(100,23,255)"``. + """ + red, green, blue = self + return f"rgb({red},{green},{blue})" + + @property + def normalized(self) -> Tuple[float, float, float]: + """Convert components into floats between 0 and 1. + + Returns: + Tuple[float, float, float]: A tuple of three normalized colour components. + """ + red, green, blue = self + return red / 255.0, green / 255.0, blue / 255.0 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py new file mode 100644 index 0000000..669a3a7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py @@ -0,0 +1,187 @@ +from collections import defaultdict +from itertools import chain +from operator import itemgetter +from typing import Dict, Iterable, List, Optional, Tuple + +from .align import Align, AlignMethod +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .constrain import Constrain +from .measure import Measurement +from .padding import Padding, PaddingDimensions +from .table import Table +from .text import TextType +from .jupyter import JupyterMixin + + +class Columns(JupyterMixin): + """Display renderables in neat columns. + + Args: + renderables (Iterable[RenderableType]): Any number of Rich renderables (including str). + width (int, optional): The desired width of the columns, or None to auto detect. Defaults to None. + padding (PaddingDimensions, optional): Optional padding around cells. Defaults to (0, 1). + expand (bool, optional): Expand columns to full width. Defaults to False. + equal (bool, optional): Arrange in to equal sized columns. Defaults to False. + column_first (bool, optional): Align items from top to bottom (rather than left to right). Defaults to False. + right_to_left (bool, optional): Start column from right hand side. Defaults to False. + align (str, optional): Align value ("left", "right", or "center") or None for default. Defaults to None. + title (TextType, optional): Optional title for Columns. + """ + + def __init__( + self, + renderables: Optional[Iterable[RenderableType]] = None, + padding: PaddingDimensions = (0, 1), + *, + width: Optional[int] = None, + expand: bool = False, + equal: bool = False, + column_first: bool = False, + right_to_left: bool = False, + align: Optional[AlignMethod] = None, + title: Optional[TextType] = None, + ) -> None: + self.renderables = list(renderables or []) + self.width = width + self.padding = padding + self.expand = expand + self.equal = equal + self.column_first = column_first + self.right_to_left = right_to_left + self.align: Optional[AlignMethod] = align + self.title = title + + def add_renderable(self, renderable: RenderableType) -> None: + """Add a renderable to the columns. + + Args: + renderable (RenderableType): Any renderable object. + """ + self.renderables.append(renderable) + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + render_str = console.render_str + renderables = [ + render_str(renderable) if isinstance(renderable, str) else renderable + for renderable in self.renderables + ] + if not renderables: + return + _top, right, _bottom, left = Padding.unpack(self.padding) + width_padding = max(left, right) + max_width = options.max_width + widths: Dict[int, int] = defaultdict(int) + column_count = len(renderables) + + get_measurement = Measurement.get + renderable_widths = [ + get_measurement(console, options, renderable).maximum + for renderable in renderables + ] + if self.equal: + renderable_widths = [max(renderable_widths)] * len(renderable_widths) + + def iter_renderables( + column_count: int, + ) -> Iterable[Tuple[int, Optional[RenderableType]]]: + item_count = len(renderables) + if self.column_first: + width_renderables = list(zip(renderable_widths, renderables)) + + column_lengths: List[int] = [item_count // column_count] * column_count + for col_no in range(item_count % column_count): + column_lengths[col_no] += 1 + + row_count = (item_count + column_count - 1) // column_count + cells = [[-1] * column_count for _ in range(row_count)] + row = col = 0 + for index in range(item_count): + cells[row][col] = index + column_lengths[col] -= 1 + if column_lengths[col]: + row += 1 + else: + col += 1 + row = 0 + for index in chain.from_iterable(cells): + if index == -1: + break + yield width_renderables[index] + else: + yield from zip(renderable_widths, renderables) + # Pad odd elements with spaces + if item_count % column_count: + for _ in range(column_count - (item_count % column_count)): + yield 0, None + + table = Table.grid(padding=self.padding, collapse_padding=True, pad_edge=False) + table.expand = self.expand + table.title = self.title + + if self.width is not None: + column_count = (max_width) // (self.width + width_padding) + for _ in range(column_count): + table.add_column(width=self.width) + else: + while column_count > 1: + widths.clear() + column_no = 0 + for renderable_width, _ in iter_renderables(column_count): + widths[column_no] = max(widths[column_no], renderable_width) + total_width = sum(widths.values()) + width_padding * ( + len(widths) - 1 + ) + if total_width > max_width: + column_count = len(widths) - 1 + break + else: + column_no = (column_no + 1) % column_count + else: + break + + get_renderable = itemgetter(1) + _renderables = [ + get_renderable(_renderable) + for _renderable in iter_renderables(column_count) + ] + if self.equal: + _renderables = [ + None + if renderable is None + else Constrain(renderable, renderable_widths[0]) + for renderable in _renderables + ] + if self.align: + align = self.align + _Align = Align + _renderables = [ + None if renderable is None else _Align(renderable, align) + for renderable in _renderables + ] + + right_to_left = self.right_to_left + add_row = table.add_row + for start in range(0, len(_renderables), column_count): + row = _renderables[start : start + column_count] + if right_to_left: + row = row[::-1] + add_row(*row) + yield table + + +if __name__ == "__main__": # pragma: no cover + import os + + console = Console() + + files = [f"{i} {s}" for i, s in enumerate(sorted(os.listdir()))] + columns = Columns(files, padding=(0, 1), expand=False, equal=False) + console.print(columns) + console.rule() + columns.column_first = True + console.print(columns) + columns.right_to_left = True + console.rule() + console.print(columns) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py new file mode 100644 index 0000000..db2ba55 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py @@ -0,0 +1,2680 @@ +import inspect +import os +import sys +import threading +import zlib +from abc import ABC, abstractmethod +from dataclasses import dataclass, field +from datetime import datetime +from functools import wraps +from getpass import getpass +from html import escape +from inspect import isclass +from itertools import islice +from math import ceil +from time import monotonic +from types import FrameType, ModuleType, TracebackType +from typing import ( + IO, + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + List, + Literal, + Mapping, + NamedTuple, + Optional, + Protocol, + TextIO, + Tuple, + Type, + Union, + cast, + runtime_checkable, +) + +from pip._vendor.rich._null_file import NULL_FILE + +from . import errors, themes +from ._emoji_replace import _emoji_replace +from ._export_format import CONSOLE_HTML_FORMAT, CONSOLE_SVG_FORMAT +from ._fileno import get_fileno +from ._log_render import FormatTimeCallable, LogRender +from .align import Align, AlignMethod +from .color import ColorSystem, blend_rgb +from .control import Control +from .emoji import EmojiVariant +from .highlighter import NullHighlighter, ReprHighlighter +from .markup import render as render_markup +from .measure import Measurement, measure_renderables +from .pager import Pager, SystemPager +from .pretty import Pretty, is_expandable +from .protocol import rich_cast +from .region import Region +from .scope import render_scope +from .screen import Screen +from .segment import Segment +from .style import Style, StyleType +from .styled import Styled +from .terminal_theme import DEFAULT_TERMINAL_THEME, SVG_EXPORT_THEME, TerminalTheme +from .text import Text, TextType +from .theme import Theme, ThemeStack + +if TYPE_CHECKING: + from ._windows import WindowsConsoleFeatures + from .live import Live + from .status import Status + +JUPYTER_DEFAULT_COLUMNS = 115 +JUPYTER_DEFAULT_LINES = 100 +WINDOWS = sys.platform == "win32" + +HighlighterType = Callable[[Union[str, "Text"]], "Text"] +JustifyMethod = Literal["default", "left", "center", "right", "full"] +OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"] + + +class NoChange: + pass + + +NO_CHANGE = NoChange() + +try: + _STDIN_FILENO = sys.__stdin__.fileno() # type: ignore[union-attr] +except Exception: + _STDIN_FILENO = 0 +try: + _STDOUT_FILENO = sys.__stdout__.fileno() # type: ignore[union-attr] +except Exception: + _STDOUT_FILENO = 1 +try: + _STDERR_FILENO = sys.__stderr__.fileno() # type: ignore[union-attr] +except Exception: + _STDERR_FILENO = 2 + +_STD_STREAMS = (_STDIN_FILENO, _STDOUT_FILENO, _STDERR_FILENO) +_STD_STREAMS_OUTPUT = (_STDOUT_FILENO, _STDERR_FILENO) + + +_TERM_COLORS = { + "kitty": ColorSystem.EIGHT_BIT, + "256color": ColorSystem.EIGHT_BIT, + "16color": ColorSystem.STANDARD, +} + + +class ConsoleDimensions(NamedTuple): + """Size of the terminal.""" + + width: int + """The width of the console in 'cells'.""" + height: int + """The height of the console in lines.""" + + +@dataclass +class ConsoleOptions: + """Options for __rich_console__ method.""" + + size: ConsoleDimensions + """Size of console.""" + legacy_windows: bool + """legacy_windows: flag for legacy windows.""" + min_width: int + """Minimum width of renderable.""" + max_width: int + """Maximum width of renderable.""" + is_terminal: bool + """True if the target is a terminal, otherwise False.""" + encoding: str + """Encoding of terminal.""" + max_height: int + """Height of container (starts as terminal)""" + justify: Optional[JustifyMethod] = None + """Justify value override for renderable.""" + overflow: Optional[OverflowMethod] = None + """Overflow value override for renderable.""" + no_wrap: Optional[bool] = False + """Disable wrapping for text.""" + highlight: Optional[bool] = None + """Highlight override for render_str.""" + markup: Optional[bool] = None + """Enable markup when rendering strings.""" + height: Optional[int] = None + + @property + def ascii_only(self) -> bool: + """Check if renderables should use ascii only.""" + return not self.encoding.startswith("utf") + + def copy(self) -> "ConsoleOptions": + """Return a copy of the options. + + Returns: + ConsoleOptions: a copy of self. + """ + options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions) + options.__dict__ = self.__dict__.copy() + return options + + def update( + self, + *, + width: Union[int, NoChange] = NO_CHANGE, + min_width: Union[int, NoChange] = NO_CHANGE, + max_width: Union[int, NoChange] = NO_CHANGE, + justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE, + overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE, + no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE, + highlight: Union[Optional[bool], NoChange] = NO_CHANGE, + markup: Union[Optional[bool], NoChange] = NO_CHANGE, + height: Union[Optional[int], NoChange] = NO_CHANGE, + ) -> "ConsoleOptions": + """Update values, return a copy.""" + options = self.copy() + if not isinstance(width, NoChange): + options.min_width = options.max_width = max(0, width) + if not isinstance(min_width, NoChange): + options.min_width = min_width + if not isinstance(max_width, NoChange): + options.max_width = max_width + if not isinstance(justify, NoChange): + options.justify = justify + if not isinstance(overflow, NoChange): + options.overflow = overflow + if not isinstance(no_wrap, NoChange): + options.no_wrap = no_wrap + if not isinstance(highlight, NoChange): + options.highlight = highlight + if not isinstance(markup, NoChange): + options.markup = markup + if not isinstance(height, NoChange): + if height is not None: + options.max_height = height + options.height = None if height is None else max(0, height) + return options + + def update_width(self, width: int) -> "ConsoleOptions": + """Update just the width, return a copy. + + Args: + width (int): New width (sets both min_width and max_width) + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + return options + + def update_height(self, height: int) -> "ConsoleOptions": + """Update the height, and return a copy. + + Args: + height (int): New height + + Returns: + ~ConsoleOptions: New Console options instance. + """ + options = self.copy() + options.max_height = options.height = height + return options + + def reset_height(self) -> "ConsoleOptions": + """Return a copy of the options with height set to ``None``. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.height = None + return options + + def update_dimensions(self, width: int, height: int) -> "ConsoleOptions": + """Update the width and height, and return a copy. + + Args: + width (int): New width (sets both min_width and max_width). + height (int): New height. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + options.height = options.max_height = height + return options + + +@runtime_checkable +class RichCast(Protocol): + """An object that may be 'cast' to a console renderable.""" + + def __rich__( + self, + ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover + ... + + +@runtime_checkable +class ConsoleRenderable(Protocol): + """An object that supports the console protocol.""" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": # pragma: no cover + ... + + +# A type that may be rendered by Console. +RenderableType = Union[ConsoleRenderable, RichCast, str] +"""A string or any object that may be rendered by Rich.""" + +# The result of calling a __rich_console__ method. +RenderResult = Iterable[Union[RenderableType, Segment]] + +_null_highlighter = NullHighlighter() + + +class CaptureError(Exception): + """An error in the Capture context manager.""" + + +class NewLine: + """A renderable to generate new line(s)""" + + def __init__(self, count: int = 1) -> None: + self.count = count + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> Iterable[Segment]: + yield Segment("\n" * self.count) + + +class ScreenUpdate: + """Render a list of lines at a given offset.""" + + def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None: + self._lines = lines + self.x = x + self.y = y + + def __rich_console__( + self, console: "Console", options: ConsoleOptions + ) -> RenderResult: + x = self.x + move_to = Control.move_to + for offset, line in enumerate(self._lines, self.y): + yield move_to(x, offset) + yield from line + + +class Capture: + """Context manager to capture the result of printing to the console. + See :meth:`~rich.console.Console.capture` for how to use. + + Args: + console (Console): A console instance to capture output. + """ + + def __init__(self, console: "Console") -> None: + self._console = console + self._result: Optional[str] = None + + def __enter__(self) -> "Capture": + self._console.begin_capture() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self._result = self._console.end_capture() + + def get(self) -> str: + """Get the result of the capture.""" + if self._result is None: + raise CaptureError( + "Capture result is not available until context manager exits." + ) + return self._result + + +class ThemeContext: + """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage.""" + + def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None: + self.console = console + self.theme = theme + self.inherit = inherit + + def __enter__(self) -> "ThemeContext": + self.console.push_theme(self.theme) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.console.pop_theme() + + +class PagerContext: + """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage.""" + + def __init__( + self, + console: "Console", + pager: Optional[Pager] = None, + styles: bool = False, + links: bool = False, + ) -> None: + self._console = console + self.pager = SystemPager() if pager is None else pager + self.styles = styles + self.links = links + + def __enter__(self) -> "PagerContext": + self._console._enter_buffer() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if exc_type is None: + with self._console._lock: + buffer: List[Segment] = self._console._buffer[:] + del self._console._buffer[:] + segments: Iterable[Segment] = buffer + if not self.styles: + segments = Segment.strip_styles(segments) + elif not self.links: + segments = Segment.strip_links(segments) + content = self._console._render_buffer(segments) + self.pager.show(content) + self._console._exit_buffer() + + +class ScreenContext: + """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage.""" + + def __init__( + self, console: "Console", hide_cursor: bool, style: StyleType = "" + ) -> None: + self.console = console + self.hide_cursor = hide_cursor + self.screen = Screen(style=style) + self._changed = False + + def update( + self, *renderables: RenderableType, style: Optional[StyleType] = None + ) -> None: + """Update the screen. + + Args: + renderable (RenderableType, optional): Optional renderable to replace current renderable, + or None for no change. Defaults to None. + style: (Style, optional): Replacement style, or None for no change. Defaults to None. + """ + if renderables: + self.screen.renderable = ( + Group(*renderables) if len(renderables) > 1 else renderables[0] + ) + if style is not None: + self.screen.style = style + self.console.print(self.screen, end="") + + def __enter__(self) -> "ScreenContext": + self._changed = self.console.set_alt_screen(True) + if self._changed and self.hide_cursor: + self.console.show_cursor(False) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if self._changed: + self.console.set_alt_screen(False) + if self.hide_cursor: + self.console.show_cursor(True) + + +class Group: + """Takes a group of renderables and returns a renderable object that renders the group. + + Args: + renderables (Iterable[RenderableType]): An iterable of renderable objects. + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None: + self._renderables = renderables + self.fit = fit + self._render: Optional[List[RenderableType]] = None + + @property + def renderables(self) -> List["RenderableType"]: + if self._render is None: + self._render = list(self._renderables) + return self._render + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.fit: + return measure_renderables(console, options, self.renderables) + else: + return Measurement(options.max_width, options.max_width) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> RenderResult: + yield from self.renderables + + +def group(fit: bool = True) -> Callable[..., Callable[..., Group]]: + """A decorator that turns an iterable of renderables in to a group. + + Args: + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def decorator( + method: Callable[..., Iterable[RenderableType]], + ) -> Callable[..., Group]: + """Convert a method that returns an iterable of renderables in to a Group.""" + + @wraps(method) + def _replace(*args: Any, **kwargs: Any) -> Group: + renderables = method(*args, **kwargs) + return Group(*renderables, fit=fit) + + return _replace + + return decorator + + +def _is_jupyter() -> bool: # pragma: no cover + """Check if we're running in a Jupyter notebook.""" + try: + get_ipython # type: ignore[name-defined] + except NameError: + return False + ipython = get_ipython() # type: ignore[name-defined] + shell = ipython.__class__.__name__ + if ( + "google.colab" in str(ipython.__class__) + or os.getenv("DATABRICKS_RUNTIME_VERSION") + or shell == "ZMQInteractiveShell" + ): + return True # Jupyter notebook or qtconsole + elif shell == "TerminalInteractiveShell": + return False # Terminal running IPython + else: + return False # Other type (?) + + +COLOR_SYSTEMS = { + "standard": ColorSystem.STANDARD, + "256": ColorSystem.EIGHT_BIT, + "truecolor": ColorSystem.TRUECOLOR, + "windows": ColorSystem.WINDOWS, +} + +_COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()} + + +@dataclass +class ConsoleThreadLocals(threading.local): + """Thread local values for Console context.""" + + theme_stack: ThemeStack + buffer: List[Segment] = field(default_factory=list) + buffer_index: int = 0 + + +class RenderHook(ABC): + """Provides hooks in to the render process.""" + + @abstractmethod + def process_renderables( + self, renderables: List[ConsoleRenderable] + ) -> List[ConsoleRenderable]: + """Called with a list of objects to render. + + This method can return a new list of renderables, or modify and return the same list. + + Args: + renderables (List[ConsoleRenderable]): A number of renderable objects. + + Returns: + List[ConsoleRenderable]: A replacement list of renderables. + """ + + +_windows_console_features: Optional["WindowsConsoleFeatures"] = None + + +def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover + global _windows_console_features + if _windows_console_features is not None: + return _windows_console_features + from ._windows import get_windows_console_features + + _windows_console_features = get_windows_console_features() + return _windows_console_features + + +def detect_legacy_windows() -> bool: + """Detect legacy Windows.""" + return WINDOWS and not get_windows_console_features().vt + + +class Console: + """A high level console interface. + + Args: + color_system (str, optional): The color system supported by your terminal, + either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect. + force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None. + force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None. + force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None. + soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False. + theme (Theme, optional): An optional style theme object, or ``None`` for default theme. + stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False. + file (IO, optional): A file object where the console should write to. Defaults to stdout. + quiet (bool, Optional): Boolean to suppress all output. Defaults to False. + width (int, optional): The width of the terminal. Leave as default to auto-detect width. + height (int, optional): The height of the terminal. Leave as default to auto-detect height. + style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None. + no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None. + tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8. + record (bool, optional): Boolean to enable recording of terminal output, + required to call :meth:`export_html`, :meth:`export_svg`, and :meth:`export_text`. Defaults to False. + markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True. + emoji (bool, optional): Enable emoji code. Defaults to True. + emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. + highlight (bool, optional): Enable automatic highlighting. Defaults to True. + log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True. + log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True. + log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ". + highlighter (HighlighterType, optional): Default highlighter. + legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``. + safe_box (bool, optional): Restrict box options that don't render on legacy Windows. + get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log), + or None for datetime.now. + get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic. + """ + + _environ: Mapping[str, str] = os.environ + + def __init__( + self, + *, + color_system: Optional[ + Literal["auto", "standard", "256", "truecolor", "windows"] + ] = "auto", + force_terminal: Optional[bool] = None, + force_jupyter: Optional[bool] = None, + force_interactive: Optional[bool] = None, + soft_wrap: bool = False, + theme: Optional[Theme] = None, + stderr: bool = False, + file: Optional[IO[str]] = None, + quiet: bool = False, + width: Optional[int] = None, + height: Optional[int] = None, + style: Optional[StyleType] = None, + no_color: Optional[bool] = None, + tab_size: int = 8, + record: bool = False, + markup: bool = True, + emoji: bool = True, + emoji_variant: Optional[EmojiVariant] = None, + highlight: bool = True, + log_time: bool = True, + log_path: bool = True, + log_time_format: Union[str, FormatTimeCallable] = "[%X]", + highlighter: Optional["HighlighterType"] = ReprHighlighter(), + legacy_windows: Optional[bool] = None, + safe_box: bool = True, + get_datetime: Optional[Callable[[], datetime]] = None, + get_time: Optional[Callable[[], float]] = None, + _environ: Optional[Mapping[str, str]] = None, + ): + # Copy of os.environ allows us to replace it for testing + if _environ is not None: + self._environ = _environ + + self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter + if self.is_jupyter: + if width is None: + jupyter_columns = self._environ.get("JUPYTER_COLUMNS") + if jupyter_columns is not None and jupyter_columns.isdigit(): + width = int(jupyter_columns) + else: + width = JUPYTER_DEFAULT_COLUMNS + if height is None: + jupyter_lines = self._environ.get("JUPYTER_LINES") + if jupyter_lines is not None and jupyter_lines.isdigit(): + height = int(jupyter_lines) + else: + height = JUPYTER_DEFAULT_LINES + + self.tab_size = tab_size + self.record = record + self._markup = markup + self._emoji = emoji + self._emoji_variant: Optional[EmojiVariant] = emoji_variant + self._highlight = highlight + self.legacy_windows: bool = ( + (detect_legacy_windows() and not self.is_jupyter) + if legacy_windows is None + else legacy_windows + ) + + if width is None: + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) - self.legacy_windows + if height is None: + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + self.soft_wrap = soft_wrap + self._width = width + self._height = height + + self._color_system: Optional[ColorSystem] + + self._force_terminal = None + if force_terminal is not None: + self._force_terminal = force_terminal + + self._file = file + self.quiet = quiet + self.stderr = stderr + + if color_system is None: + self._color_system = None + elif color_system == "auto": + self._color_system = self._detect_color_system() + else: + self._color_system = COLOR_SYSTEMS[color_system] + + self._lock = threading.RLock() + self._log_render = LogRender( + show_time=log_time, + show_path=log_path, + time_format=log_time_format, + ) + self.highlighter: HighlighterType = highlighter or _null_highlighter + self.safe_box = safe_box + self.get_datetime = get_datetime or datetime.now + self.get_time = get_time or monotonic + self.style = style + self.no_color = ( + no_color + if no_color is not None + else self._environ.get("NO_COLOR", "") != "" + ) + if force_interactive is None: + tty_interactive = self._environ.get("TTY_INTERACTIVE", None) + if tty_interactive is not None: + if tty_interactive == "0": + force_interactive = False + elif tty_interactive == "1": + force_interactive = True + + self.is_interactive = ( + (self.is_terminal and not self.is_dumb_terminal) + if force_interactive is None + else force_interactive + ) + + self._record_buffer_lock = threading.RLock() + self._thread_locals = ConsoleThreadLocals( + theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme) + ) + self._record_buffer: List[Segment] = [] + self._render_hooks: List[RenderHook] = [] + self._live_stack: List[Live] = [] + self._is_alt_screen = False + + def __repr__(self) -> str: + return f"" + + @property + def file(self) -> IO[str]: + """Get the file object to write to.""" + file = self._file or (sys.stderr if self.stderr else sys.stdout) + file = getattr(file, "rich_proxied_file", file) + if file is None: + file = NULL_FILE + return file + + @file.setter + def file(self, new_file: IO[str]) -> None: + """Set a new file object.""" + self._file = new_file + + @property + def _buffer(self) -> List[Segment]: + """Get a thread local buffer.""" + return self._thread_locals.buffer + + @property + def _buffer_index(self) -> int: + """Get a thread local buffer.""" + return self._thread_locals.buffer_index + + @_buffer_index.setter + def _buffer_index(self, value: int) -> None: + self._thread_locals.buffer_index = value + + @property + def _theme_stack(self) -> ThemeStack: + """Get the thread local theme stack.""" + return self._thread_locals.theme_stack + + def _detect_color_system(self) -> Optional[ColorSystem]: + """Detect color system from env vars.""" + if self.is_jupyter: + return ColorSystem.TRUECOLOR + if not self.is_terminal or self.is_dumb_terminal: + return None + if WINDOWS: # pragma: no cover + if self.legacy_windows: # pragma: no cover + return ColorSystem.WINDOWS + windows_console_features = get_windows_console_features() + return ( + ColorSystem.TRUECOLOR + if windows_console_features.truecolor + else ColorSystem.EIGHT_BIT + ) + else: + color_term = self._environ.get("COLORTERM", "").strip().lower() + if color_term in ("truecolor", "24bit"): + return ColorSystem.TRUECOLOR + term = self._environ.get("TERM", "").strip().lower() + _term_name, _hyphen, colors = term.rpartition("-") + color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD) + return color_system + + def _enter_buffer(self) -> None: + """Enter in to a buffer context, and buffer all output.""" + self._buffer_index += 1 + + def _exit_buffer(self) -> None: + """Leave buffer context, and render content if required.""" + self._buffer_index -= 1 + self._check_buffer() + + def set_live(self, live: "Live") -> bool: + """Set Live instance. Used by Live context manager (no need to call directly). + + Args: + live (Live): Live instance using this Console. + + Returns: + Boolean that indicates if the live is the topmost of the stack. + + Raises: + errors.LiveError: If this Console has a Live context currently active. + """ + with self._lock: + self._live_stack.append(live) + return len(self._live_stack) == 1 + + def clear_live(self) -> None: + """Clear the Live instance. Used by the Live context manager (no need to call directly).""" + with self._lock: + self._live_stack.pop() + + def push_render_hook(self, hook: RenderHook) -> None: + """Add a new render hook to the stack. + + Args: + hook (RenderHook): Render hook instance. + """ + with self._lock: + self._render_hooks.append(hook) + + def pop_render_hook(self) -> None: + """Pop the last renderhook from the stack.""" + with self._lock: + self._render_hooks.pop() + + def __enter__(self) -> "Console": + """Own context manager to enter buffer context.""" + self._enter_buffer() + return self + + def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: + """Exit buffer context.""" + self._exit_buffer() + + def begin_capture(self) -> None: + """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output.""" + self._enter_buffer() + + def end_capture(self) -> str: + """End capture mode and return captured string. + + Returns: + str: Console output. + """ + render_result = self._render_buffer(self._buffer) + del self._buffer[:] + self._exit_buffer() + return render_result + + def push_theme(self, theme: Theme, *, inherit: bool = True) -> None: + """Push a new theme on to the top of the stack, replacing the styles from the previous theme. + Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather + than calling this method directly. + + Args: + theme (Theme): A theme instance. + inherit (bool, optional): Inherit existing styles. Defaults to True. + """ + self._theme_stack.push_theme(theme, inherit=inherit) + + def pop_theme(self) -> None: + """Remove theme from top of stack, restoring previous theme.""" + self._theme_stack.pop_theme() + + def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext: + """Use a different theme for the duration of the context manager. + + Args: + theme (Theme): Theme instance to user. + inherit (bool, optional): Inherit existing console styles. Defaults to True. + + Returns: + ThemeContext: [description] + """ + return ThemeContext(self, theme, inherit) + + @property + def color_system(self) -> Optional[str]: + """Get color system string. + + Returns: + Optional[str]: "standard", "256" or "truecolor". + """ + + if self._color_system is not None: + return _COLOR_SYSTEMS_NAMES[self._color_system] + else: + return None + + @property + def encoding(self) -> str: + """Get the encoding of the console file, e.g. ``"utf-8"``. + + Returns: + str: A standard encoding string. + """ + return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower() + + @property + def is_terminal(self) -> bool: + """Check if the console is writing to a terminal. + + Returns: + bool: True if the console writing to a device capable of + understanding escape sequences, otherwise False. + """ + # If dev has explicitly set this value, return it + if self._force_terminal is not None: + return self._force_terminal + + # Fudge for Idle + if hasattr(sys.stdin, "__module__") and sys.stdin.__module__.startswith( + "idlelib" + ): + # Return False for Idle which claims to be a tty but can't handle ansi codes + return False + + if self.is_jupyter: + # return False for Jupyter, which may have FORCE_COLOR set + return False + + environ = self._environ + + tty_compatible = environ.get("TTY_COMPATIBLE", "") + # 0 indicates device is not tty compatible + if tty_compatible == "0": + return False + # 1 indicates device is tty compatible + if tty_compatible == "1": + return True + + # https://force-color.org/ + force_color = environ.get("FORCE_COLOR") + if force_color is not None: + return force_color != "" + + # Any other value defaults to auto detect + isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None) + try: + return False if isatty is None else isatty() + except ValueError: + # in some situation (at the end of a pytest run for example) isatty() can raise + # ValueError: I/O operation on closed file + # return False because we aren't in a terminal anymore + return False + + @property + def is_dumb_terminal(self) -> bool: + """Detect dumb terminal. + + Returns: + bool: True if writing to a dumb terminal, otherwise False. + + """ + _term = self._environ.get("TERM", "") + is_dumb = _term.lower() in ("dumb", "unknown") + return self.is_terminal and is_dumb + + @property + def options(self) -> ConsoleOptions: + """Get default console options.""" + size = self.size + return ConsoleOptions( + max_height=size.height, + size=size, + legacy_windows=self.legacy_windows, + min_width=1, + max_width=size.width, + encoding=self.encoding, + is_terminal=self.is_terminal, + ) + + @property + def size(self) -> ConsoleDimensions: + """Get the size of the console. + + Returns: + ConsoleDimensions: A named tuple containing the dimensions. + """ + + if self._width is not None and self._height is not None: + return ConsoleDimensions(self._width - self.legacy_windows, self._height) + + if self.is_dumb_terminal: + return ConsoleDimensions(80, 25) + + width: Optional[int] = None + height: Optional[int] = None + + streams = _STD_STREAMS_OUTPUT if WINDOWS else _STD_STREAMS + for file_descriptor in streams: + try: + width, height = os.get_terminal_size(file_descriptor) + except (AttributeError, ValueError, OSError): # Probably not a terminal + pass + else: + break + + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + # get_terminal_size can report 0, 0 if run from pseudo-terminal + width = width or 80 + height = height or 25 + return ConsoleDimensions( + width - self.legacy_windows if self._width is None else self._width, + height if self._height is None else self._height, + ) + + @size.setter + def size(self, new_size: Tuple[int, int]) -> None: + """Set a new size for the terminal. + + Args: + new_size (Tuple[int, int]): New width and height. + """ + width, height = new_size + self._width = width + self._height = height + + @property + def width(self) -> int: + """Get the width of the console. + + Returns: + int: The width (in characters) of the console. + """ + return self.size.width + + @width.setter + def width(self, width: int) -> None: + """Set width. + + Args: + width (int): New width. + """ + self._width = width + + @property + def height(self) -> int: + """Get the height of the console. + + Returns: + int: The height (in lines) of the console. + """ + return self.size.height + + @height.setter + def height(self, height: int) -> None: + """Set height. + + Args: + height (int): new height. + """ + self._height = height + + def bell(self) -> None: + """Play a 'bell' sound (if supported by the terminal).""" + self.control(Control.bell()) + + def capture(self) -> Capture: + """A context manager to *capture* the result of print() or log() in a string, + rather than writing it to the console. + + Example: + >>> from rich.console import Console + >>> console = Console() + >>> with console.capture() as capture: + ... console.print("[bold magenta]Hello World[/]") + >>> print(capture.get()) + + Returns: + Capture: Context manager with disables writing to the terminal. + """ + capture = Capture(self) + return capture + + def pager( + self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False + ) -> PagerContext: + """A context manager to display anything printed within a "pager". The pager application + is defined by the system and will typically support at least pressing a key to scroll. + + Args: + pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None. + styles (bool, optional): Show styles in pager. Defaults to False. + links (bool, optional): Show links in pager. Defaults to False. + + Example: + >>> from rich.console import Console + >>> from rich.__main__ import make_test_card + >>> console = Console() + >>> with console.pager(): + console.print(make_test_card()) + + Returns: + PagerContext: A context manager. + """ + return PagerContext(self, pager=pager, styles=styles, links=links) + + def line(self, count: int = 1) -> None: + """Write new line(s). + + Args: + count (int, optional): Number of new lines. Defaults to 1. + """ + + assert count >= 0, "count must be >= 0" + self.print(NewLine(count)) + + def clear(self, home: bool = True) -> None: + """Clear the screen. + + Args: + home (bool, optional): Also move the cursor to 'home' position. Defaults to True. + """ + if home: + self.control(Control.clear(), Control.home()) + else: + self.control(Control.clear()) + + def status( + self, + status: RenderableType, + *, + spinner: str = "dots", + spinner_style: StyleType = "status.spinner", + speed: float = 1.0, + refresh_per_second: float = 12.5, + ) -> "Status": + """Display a status and spinner. + + Args: + status (RenderableType): A status renderable (str or Text typically). + spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots". + spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner". + speed (float, optional): Speed factor for spinner animation. Defaults to 1.0. + refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5. + + Returns: + Status: A Status object that may be used as a context manager. + """ + from .status import Status + + status_renderable = Status( + status, + console=self, + spinner=spinner, + spinner_style=spinner_style, + speed=speed, + refresh_per_second=refresh_per_second, + ) + return status_renderable + + def show_cursor(self, show: bool = True) -> bool: + """Show or hide the cursor. + + Args: + show (bool, optional): Set visibility of the cursor. + """ + if self.is_terminal: + self.control(Control.show_cursor(show)) + return True + return False + + def set_alt_screen(self, enable: bool = True) -> bool: + """Enables alternative screen mode. + + Note, if you enable this mode, you should ensure that is disabled before + the application exits. See :meth:`~rich.Console.screen` for a context manager + that handles this for you. + + Args: + enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True. + + Returns: + bool: True if the control codes were written. + + """ + changed = False + if self.is_terminal and not self.legacy_windows: + self.control(Control.alt_screen(enable)) + changed = True + self._is_alt_screen = enable + return changed + + @property + def is_alt_screen(self) -> bool: + """Check if the alt screen was enabled. + + Returns: + bool: True if the alt screen was enabled, otherwise False. + """ + return self._is_alt_screen + + def set_window_title(self, title: str) -> bool: + """Set the title of the console terminal window. + + Warning: There is no means within Rich of "resetting" the window title to its + previous value, meaning the title you set will persist even after your application + exits. + + ``fish`` shell resets the window title before and after each command by default, + negating this issue. Windows Terminal and command prompt will also reset the title for you. + Most other shells and terminals, however, do not do this. + + Some terminals may require configuration changes before you can set the title. + Some terminals may not support setting the title at all. + + Other software (including the terminal itself, the shell, custom prompts, plugins, etc.) + may also set the terminal window title. This could result in whatever value you write + using this method being overwritten. + + Args: + title (str): The new title of the terminal window. + + Returns: + bool: True if the control code to change the terminal title was + written, otherwise False. Note that a return value of True + does not guarantee that the window title has actually changed, + since the feature may be unsupported/disabled in some terminals. + """ + if self.is_terminal: + self.control(Control.title(title)) + return True + return False + + def screen( + self, hide_cursor: bool = True, style: Optional[StyleType] = None + ) -> "ScreenContext": + """Context manager to enable and disable 'alternative screen' mode. + + Args: + hide_cursor (bool, optional): Also hide the cursor. Defaults to False. + style (Style, optional): Optional style for screen. Defaults to None. + + Returns: + ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit. + """ + return ScreenContext(self, hide_cursor=hide_cursor, style=style or "") + + def measure( + self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None + ) -> Measurement: + """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains + information regarding the number of characters required to print the renderable. + + Args: + renderable (RenderableType): Any renderable or string. + options (Optional[ConsoleOptions], optional): Options to use when measuring, or None + to use default options. Defaults to None. + + Returns: + Measurement: A measurement of the renderable. + """ + measurement = Measurement.get(self, options or self.options, renderable) + return measurement + + def render( + self, renderable: RenderableType, options: Optional[ConsoleOptions] = None + ) -> Iterable[Segment]: + """Render an object in to an iterable of `Segment` instances. + + This method contains the logic for rendering objects with the console protocol. + You are unlikely to need to use it directly, unless you are extending the library. + + Args: + renderable (RenderableType): An object supporting the console protocol, or + an object that may be converted to a string. + options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None. + + Returns: + Iterable[Segment]: An iterable of segments that may be rendered. + """ + + _options = options or self.options + if _options.max_width < 1: + # No space to render anything. This prevents potential recursion errors. + return + render_iterable: RenderResult + + renderable = rich_cast(renderable) + if hasattr(renderable, "__rich_console__") and not isclass(renderable): + render_iterable = renderable.__rich_console__(self, _options) + elif isinstance(renderable, str): + text_renderable = self.render_str( + renderable, highlight=_options.highlight, markup=_options.markup + ) + render_iterable = text_renderable.__rich_console__(self, _options) + else: + raise errors.NotRenderableError( + f"Unable to render {renderable!r}; " + "A str, Segment or object with __rich_console__ method is required" + ) + + try: + iter_render = iter(render_iterable) + except TypeError: + raise errors.NotRenderableError( + f"object {render_iterable!r} is not renderable" + ) + _Segment = Segment + _options = _options.reset_height() + for render_output in iter_render: + if isinstance(render_output, _Segment): + yield render_output + else: + yield from self.render(render_output, _options) + + def render_lines( + self, + renderable: RenderableType, + options: Optional[ConsoleOptions] = None, + *, + style: Optional[Style] = None, + pad: bool = True, + new_lines: bool = False, + ) -> List[List[Segment]]: + """Render objects in to a list of lines. + + The output of render_lines is useful when further formatting of rendered console text + is required, such as the Panel class which draws a border around any renderable object. + + Args: + renderable (RenderableType): Any object renderable in the console. + options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``. + style (Style, optional): Optional style to apply to renderables. Defaults to ``None``. + pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``. + new_lines (bool, optional): Include "\n" characters at end of lines. + + Returns: + List[List[Segment]]: A list of lines, where a line is a list of Segment objects. + """ + with self._lock: + render_options = options or self.options + _rendered = self.render(renderable, render_options) + if style: + _rendered = Segment.apply_style(_rendered, style) + + render_height = render_options.height + if render_height is not None: + render_height = max(0, render_height) + + lines = list( + islice( + Segment.split_and_crop_lines( + _rendered, + render_options.max_width, + include_new_lines=new_lines, + pad=pad, + style=style, + ), + None, + render_height, + ) + ) + if render_options.height is not None: + extra_lines = render_options.height - len(lines) + if extra_lines > 0: + pad_line = [ + ( + [ + Segment(" " * render_options.max_width, style), + Segment("\n"), + ] + if new_lines + else [Segment(" " * render_options.max_width, style)] + ) + ] + lines.extend(pad_line * extra_lines) + + return lines + + def render_str( + self, + text: str, + *, + style: Union[str, Style] = "", + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + highlighter: Optional[HighlighterType] = None, + ) -> "Text": + """Convert a string to a Text instance. This is called automatically if + you print or log a string. + + Args: + text (str): Text to render. + style (Union[str, Style], optional): Style to apply to rendered text. + justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default. + highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default. + highlighter (HighlighterType, optional): Optional highlighter to apply. + Returns: + ConsoleRenderable: Renderable object. + + """ + emoji_enabled = emoji or (emoji is None and self._emoji) + markup_enabled = markup or (markup is None and self._markup) + highlight_enabled = highlight or (highlight is None and self._highlight) + + if markup_enabled: + rich_text = render_markup( + text, + style=style, + emoji=emoji_enabled, + emoji_variant=self._emoji_variant, + ) + rich_text.justify = justify + rich_text.overflow = overflow + else: + rich_text = Text( + ( + _emoji_replace(text, default_variant=self._emoji_variant) + if emoji_enabled + else text + ), + justify=justify, + overflow=overflow, + style=style, + ) + + _highlighter = (highlighter or self.highlighter) if highlight_enabled else None + if _highlighter is not None: + highlight_text = _highlighter(str(rich_text)) + highlight_text.copy_styles(rich_text) + return highlight_text + + return rich_text + + def get_style( + self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None + ) -> Style: + """Get a Style instance by its theme name or parse a definition. + + Args: + name (str): The name of a style or a style definition. + + Returns: + Style: A Style object. + + Raises: + MissingStyle: If no style could be parsed from name. + + """ + if isinstance(name, Style): + return name + + try: + style = self._theme_stack.get(name) + if style is None: + style = Style.parse(name) + return style.copy() if style.link else style + except errors.StyleSyntaxError as error: + if default is not None: + return self.get_style(default) + raise errors.MissingStyle( + f"Failed to get style {name!r}; {error}" + ) from None + + def _collect_renderables( + self, + objects: Iterable[Any], + sep: str, + end: str, + *, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + ) -> List[ConsoleRenderable]: + """Combine a number of renderables and text into one renderable. + + Args: + objects (Iterable[Any]): Anything that Rich can render. + sep (str): String to write between print data. + end (str): String to write at end of print data. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. + + Returns: + List[ConsoleRenderable]: A list of things to render. + """ + renderables: List[ConsoleRenderable] = [] + _append = renderables.append + text: List[Text] = [] + append_text = text.append + + append = _append + if justify in ("left", "center", "right"): + + def align_append(renderable: RenderableType) -> None: + _append(Align(renderable, cast(AlignMethod, justify))) + + append = align_append + + _highlighter: HighlighterType = _null_highlighter + if highlight or (highlight is None and self._highlight): + _highlighter = self.highlighter + + def check_text() -> None: + if text: + sep_text = Text(sep, justify=justify, end=end) + append(sep_text.join(text)) + text.clear() + + for renderable in objects: + renderable = rich_cast(renderable) + if isinstance(renderable, str): + append_text( + self.render_str( + renderable, + emoji=emoji, + markup=markup, + highlight=highlight, + highlighter=_highlighter, + ) + ) + elif isinstance(renderable, Text): + append_text(renderable) + elif isinstance(renderable, ConsoleRenderable): + check_text() + append(renderable) + elif is_expandable(renderable): + check_text() + append(Pretty(renderable, highlighter=_highlighter)) + else: + append_text(_highlighter(str(renderable))) + + check_text() + + if self.style is not None: + style = self.get_style(self.style) + renderables = [Styled(renderable, style) for renderable in renderables] + + return renderables + + def rule( + self, + title: TextType = "", + *, + characters: str = "─", + style: Union[str, Style] = "rule.line", + align: AlignMethod = "center", + ) -> None: + """Draw a line with optional centered title. + + Args: + title (str, optional): Text to render over the rule. Defaults to "". + characters (str, optional): Character(s) to form the line. Defaults to "─". + style (str, optional): Style of line. Defaults to "rule.line". + align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center". + """ + from .rule import Rule + + rule = Rule(title=title, characters=characters, style=style, align=align) + self.print(rule) + + def control(self, *control: Control) -> None: + """Insert non-printing control codes. + + Args: + control_codes (str): Control codes, such as those that may move the cursor. + """ + if not self.is_dumb_terminal: + with self: + self._buffer.extend(_control.segment for _control in control) + + def out( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + highlight: Optional[bool] = None, + ) -> None: + """Output to the terminal. This is a low-level way of writing to the terminal which unlike + :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will + optionally apply highlighting and a basic style. + + Args: + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use + console default. Defaults to ``None``. + """ + raw_output: str = sep.join(str(_object) for _object in objects) + self.print( + raw_output, + style=style, + highlight=highlight, + emoji=False, + markup=False, + no_wrap=True, + overflow="ignore", + crop=False, + end=end, + ) + + def print( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + no_wrap: Optional[bool] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + width: Optional[int] = None, + height: Optional[int] = None, + crop: bool = True, + soft_wrap: Optional[bool] = None, + new_line_start: bool = False, + ) -> None: + """Print to the console. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``. + overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None. + no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``. + width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``. + crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True. + soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for + Console default. Defaults to ``None``. + new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``. + """ + if not objects: + objects = (NewLine(),) + + if soft_wrap is None: + soft_wrap = self.soft_wrap + if soft_wrap: + if no_wrap is None: + no_wrap = True + if overflow is None: + overflow = "ignore" + crop = False + render_hooks = self._render_hooks[:] + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + render_options = self.options.update( + justify=justify, + overflow=overflow, + width=min(width, self.width) if width is not None else NO_CHANGE, + height=height, + no_wrap=no_wrap, + markup=markup, + highlight=highlight, + ) + + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + if style is None: + for renderable in renderables: + extend(render(renderable, render_options)) + else: + for renderable in renderables: + extend( + Segment.apply_style( + render(renderable, render_options), self.get_style(style) + ) + ) + if new_line_start: + if ( + len("".join(segment.text for segment in new_segments).splitlines()) + > 1 + ): + new_segments.insert(0, Segment.line()) + if crop: + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + else: + self._buffer.extend(new_segments) + + def print_json( + self, + json: Optional[str] = None, + *, + data: Any = None, + indent: Union[None, int, str] = 2, + highlight: bool = True, + skip_keys: bool = False, + ensure_ascii: bool = False, + check_circular: bool = True, + allow_nan: bool = True, + default: Optional[Callable[[Any], Any]] = None, + sort_keys: bool = False, + ) -> None: + """Pretty prints JSON. Output will be valid JSON. + + Args: + json (Optional[str]): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2. + highlight (bool, optional): Enable highlighting of output: Defaults to True. + skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. + ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. + check_circular (bool, optional): Check for circular references. Defaults to True. + allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. + default (Callable, optional): A callable that converts values that can not be encoded + in to something that can be JSON encoded. Defaults to None. + sort_keys (bool, optional): Sort dictionary keys. Defaults to False. + """ + from pip._vendor.rich.json import JSON + + if json is None: + json_renderable = JSON.from_data( + data, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + else: + if not isinstance(json, str): + raise TypeError( + f"json must be str. Did you mean print_json(data={json!r}) ?" + ) + json_renderable = JSON( + json, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + self.print(json_renderable, soft_wrap=True) + + def update_screen( + self, + renderable: RenderableType, + *, + region: Optional[Region] = None, + options: Optional[ConsoleOptions] = None, + ) -> None: + """Update the screen at a given offset. + + Args: + renderable (RenderableType): A Rich renderable. + region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None. + x (int, optional): x offset. Defaults to 0. + y (int, optional): y offset. Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + render_options = options or self.options + if region is None: + x = y = 0 + render_options = render_options.update_dimensions( + render_options.max_width, render_options.height or self.height + ) + else: + x, y, width, height = region + render_options = render_options.update_dimensions(width, height) + + lines = self.render_lines(renderable, options=render_options) + self.update_screen_lines(lines, x, y) + + def update_screen_lines( + self, lines: List[List[Segment]], x: int = 0, y: int = 0 + ) -> None: + """Update lines of the screen at a given offset. + + Args: + lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`). + x (int, optional): x offset (column no). Defaults to 0. + y (int, optional): y offset (column no). Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + screen_update = ScreenUpdate(lines, x, y) + segments = self.render(screen_update) + self._buffer.extend(segments) + self._check_buffer() + + def print_exception( + self, + *, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, + ) -> None: + """Prints a rich render of the last exception and traceback. + + Args: + width (Optional[int], optional): Number of characters used to render code. Defaults to 100. + extra_lines (int, optional): Additional lines of code to render. Defaults to 3. + theme (str, optional): Override pygments theme used in traceback + word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False. + show_locals (bool, optional): Enable display of local variables. Defaults to False. + suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. + max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100. + """ + from .traceback import Traceback + + traceback = Traceback( + width=width, + extra_lines=extra_lines, + theme=theme, + word_wrap=word_wrap, + show_locals=show_locals, + suppress=suppress, + max_frames=max_frames, + ) + self.print(traceback) + + @staticmethod + def _caller_frame_info( + offset: int, + currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe, + ) -> Tuple[str, int, Dict[str, Any]]: + """Get caller frame information. + + Args: + offset (int): the caller offset within the current frame stack. + currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to + retrieve the current frame. Defaults to ``inspect.currentframe``. + + Returns: + Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and + the dictionary of local variables associated with the caller frame. + + Raises: + RuntimeError: If the stack offset is invalid. + """ + # Ignore the frame of this local helper + offset += 1 + + frame = currentframe() + if frame is not None: + # Use the faster currentframe where implemented + while offset and frame is not None: + frame = frame.f_back + offset -= 1 + assert frame is not None + return frame.f_code.co_filename, frame.f_lineno, frame.f_locals + else: + # Fallback to the slower stack + frame_info = inspect.stack()[offset] + return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals + + def log( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + log_locals: bool = False, + _stack_offset: int = 1, + ) -> None: + """Log rich content to the terminal. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None. + log_locals (bool, optional): Boolean to enable logging of locals where ``log()`` + was called. Defaults to False. + _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1. + """ + if not objects: + objects = (NewLine(),) + + render_hooks = self._render_hooks[:] + + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + if style is not None: + renderables = [Styled(renderable, style) for renderable in renderables] + + filename, line_no, locals = self._caller_frame_info(_stack_offset) + link_path = None if filename.startswith("<") else os.path.abspath(filename) + path = filename.rpartition(os.sep)[-1] + if log_locals: + locals_map = { + key: value + for key, value in locals.items() + if not key.startswith("__") + } + renderables.append(render_scope(locals_map, title="[i]locals")) + + renderables = [ + self._log_render( + self, + renderables, + log_time=self.get_datetime(), + path=path, + line_no=line_no, + link_path=link_path, + ) + ] + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + render_options = self.options + for renderable in renderables: + extend(render(renderable, render_options)) + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + + def on_broken_pipe(self) -> None: + """This function is called when a `BrokenPipeError` is raised. + + This can occur when piping Textual output in Linux and macOS. + The default implementation is to exit the app, but you could implement + this method in a subclass to change the behavior. + + See https://docs.python.org/3/library/signal.html#note-on-sigpipe for details. + """ + self.quiet = True + devnull = os.open(os.devnull, os.O_WRONLY) + os.dup2(devnull, sys.stdout.fileno()) + raise SystemExit(1) + + def _check_buffer(self) -> None: + """Check if the buffer may be rendered. Render it if it can (e.g. Console.quiet is False) + Rendering is supported on Windows, Unix and Jupyter environments. For + legacy Windows consoles, the win32 API is called directly. + This method will also record what it renders if recording is enabled via Console.record. + """ + if self.quiet: + del self._buffer[:] + return + + try: + self._write_buffer() + except BrokenPipeError: + self.on_broken_pipe() + + def _write_buffer(self) -> None: + """Write the buffer to the output file.""" + + with self._lock: + if self.record and not self._buffer_index: + with self._record_buffer_lock: + self._record_buffer.extend(self._buffer[:]) + + if self._buffer_index == 0: + if self.is_jupyter: # pragma: no cover + from .jupyter import display + + display(self._buffer, self._render_buffer(self._buffer[:])) + del self._buffer[:] + else: + if WINDOWS: + use_legacy_windows_render = False + if self.legacy_windows: + fileno = get_fileno(self.file) + if fileno is not None: + use_legacy_windows_render = ( + fileno in _STD_STREAMS_OUTPUT + ) + + if use_legacy_windows_render: + from pip._vendor.rich._win32_console import LegacyWindowsTerm + from pip._vendor.rich._windows_renderer import legacy_windows_render + + buffer = self._buffer[:] + if self.no_color and self._color_system: + buffer = list(Segment.remove_color(buffer)) + + legacy_windows_render(buffer, LegacyWindowsTerm(self.file)) + else: + # Either a non-std stream on legacy Windows, or modern Windows. + text = self._render_buffer(self._buffer[:]) + # https://bugs.python.org/issue37871 + # https://github.com/python/cpython/issues/82052 + # We need to avoid writing more than 32Kb in a single write, due to the above bug + write = self.file.write + # Worse case scenario, every character is 4 bytes of utf-8 + MAX_WRITE = 32 * 1024 // 4 + try: + if len(text) <= MAX_WRITE: + write(text) + else: + batch: List[str] = [] + batch_append = batch.append + size = 0 + for line in text.splitlines(True): + if size + len(line) > MAX_WRITE and batch: + write("".join(batch)) + batch.clear() + size = 0 + batch_append(line) + size += len(line) + if batch: + write("".join(batch)) + batch.clear() + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + else: + text = self._render_buffer(self._buffer[:]) + try: + self.file.write(text) + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + + self.file.flush() + del self._buffer[:] + + def _render_buffer(self, buffer: Iterable[Segment]) -> str: + """Render buffered output, and clear buffer.""" + output: List[str] = [] + append = output.append + color_system = self._color_system + legacy_windows = self.legacy_windows + not_terminal = not self.is_terminal + if self.no_color and color_system: + buffer = Segment.remove_color(buffer) + for text, style, control in buffer: + if style: + append( + style.render( + text, + color_system=color_system, + legacy_windows=legacy_windows, + ) + ) + elif not (not_terminal and control): + append(text) + + rendered = "".join(output) + return rendered + + def input( + self, + prompt: TextType = "", + *, + markup: bool = True, + emoji: bool = True, + password: bool = False, + stream: Optional[TextIO] = None, + ) -> str: + """Displays a prompt and waits for input from the user. The prompt may contain color / style. + + It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded. + + Args: + prompt (Union[str, Text]): Text to render in the prompt. + markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True. + emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True. + password: (bool, optional): Hide typed text. Defaults to False. + stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None. + + Returns: + str: Text read from stdin. + """ + if prompt: + self.print(prompt, markup=markup, emoji=emoji, end="") + if password: + result = getpass("", stream=stream) + else: + if stream: + result = stream.readline() + else: + result = input() + return result + + def export_text(self, *, clear: bool = True, styles: bool = False) -> str: + """Generate text from console contents (requires record=True argument in constructor). + + Args: + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text. + Defaults to ``False``. + + Returns: + str: String containing console contents. + + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + + with self._record_buffer_lock: + if styles: + text = "".join( + (style.render(text) if style else text) + for text, style, _ in self._record_buffer + ) + else: + text = "".join( + segment.text + for segment in self._record_buffer + if not segment.control + ) + if clear: + del self._record_buffer[:] + return text + + def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None: + """Generate text from console and save to a given location (requires record=True argument in constructor). + + Args: + path (str): Path to write text files. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text. + Defaults to ``False``. + + """ + text = self.export_text(clear=clear, styles=styles) + with open(path, "w", encoding="utf-8") as write_file: + write_file.write(text) + + def export_html( + self, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: Optional[str] = None, + inline_styles: bool = False, + ) -> str: + """Generate HTML from console contents (requires record=True argument in constructor). + + Args: + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + Returns: + str: String containing console contents as HTML. + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + fragments: List[str] = [] + append = fragments.append + _theme = theme or DEFAULT_TERMINAL_THEME + stylesheet = "" + + render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format + + with self._record_buffer_lock: + if inline_styles: + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + if style.link: + text = f'
    {text}' + text = f'{text}' if rule else text + append(text) + else: + styles: Dict[str, int] = {} + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + style_number = styles.setdefault(rule, len(styles) + 1) + if style.link: + text = f'{text}' + else: + text = f'{text}' + append(text) + stylesheet_rules: List[str] = [] + stylesheet_append = stylesheet_rules.append + for style_rule, style_number in styles.items(): + if style_rule: + stylesheet_append(f".r{style_number} {{{style_rule}}}") + stylesheet = "\n".join(stylesheet_rules) + + rendered_code = render_code_format.format( + code="".join(fragments), + stylesheet=stylesheet, + foreground=_theme.foreground_color.hex, + background=_theme.background_color.hex, + ) + if clear: + del self._record_buffer[:] + return rendered_code + + def save_html( + self, + path: str, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_HTML_FORMAT, + inline_styles: bool = False, + ) -> None: + """Generate HTML from console contents and write to a file (requires record=True argument in constructor). + + Args: + path (str): Path to write html file. + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + """ + html = self.export_html( + theme=theme, + clear=clear, + code_format=code_format, + inline_styles=inline_styles, + ) + with open(path, "w", encoding="utf-8") as write_file: + write_file.write(html) + + def export_svg( + self, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> str: + """ + Generate an SVG from the console contents (requires record=True in Console constructor). + + Args: + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + + from pip._vendor.rich.cells import cell_len + + style_cache: Dict[Style, str] = {} + + def get_svg_style(style: Style) -> str: + """Convert a Style to CSS rules for SVG.""" + if style in style_cache: + return style_cache[style] + css_rules = [] + color = ( + _theme.foreground_color + if (style.color is None or style.color.is_default) + else style.color.get_truecolor(_theme) + ) + bgcolor = ( + _theme.background_color + if (style.bgcolor is None or style.bgcolor.is_default) + else style.bgcolor.get_truecolor(_theme) + ) + if style.reverse: + color, bgcolor = bgcolor, color + if style.dim: + color = blend_rgb(color, bgcolor, 0.4) + css_rules.append(f"fill: {color.hex}") + if style.bold: + css_rules.append("font-weight: bold") + if style.italic: + css_rules.append("font-style: italic;") + if style.underline: + css_rules.append("text-decoration: underline;") + if style.strike: + css_rules.append("text-decoration: line-through;") + + css = ";".join(css_rules) + style_cache[style] = css + return css + + _theme = theme or SVG_EXPORT_THEME + + width = self.width + char_height = 20 + char_width = char_height * font_aspect_ratio + line_height = char_height * 1.22 + + margin_top = 1 + margin_right = 1 + margin_bottom = 1 + margin_left = 1 + + padding_top = 40 + padding_right = 8 + padding_bottom = 8 + padding_left = 8 + + padding_width = padding_left + padding_right + padding_height = padding_top + padding_bottom + margin_width = margin_left + margin_right + margin_height = margin_top + margin_bottom + + text_backgrounds: List[str] = [] + text_group: List[str] = [] + classes: Dict[str, int] = {} + style_no = 1 + + def escape_text(text: str) -> str: + """HTML escape text and replace spaces with nbsp.""" + return escape(text).replace(" ", " ") + + def make_tag( + name: str, content: Optional[str] = None, **attribs: object + ) -> str: + """Make a tag from name, content, and attributes.""" + + def stringify(value: object) -> str: + if isinstance(value, (float)): + return format(value, "g") + return str(value) + + tag_attribs = " ".join( + f'{k.lstrip("_").replace("_", "-")}="{stringify(v)}"' + for k, v in attribs.items() + ) + return ( + f"<{name} {tag_attribs}>{content}" + if content + else f"<{name} {tag_attribs}/>" + ) + + with self._record_buffer_lock: + segments = list(Segment.filter_control(self._record_buffer)) + if clear: + self._record_buffer.clear() + + if unique_id is None: + unique_id = "terminal-" + str( + zlib.adler32( + ("".join(repr(segment) for segment in segments)).encode( + "utf-8", + "ignore", + ) + + title.encode("utf-8", "ignore") + ) + ) + y = 0 + for y, line in enumerate(Segment.split_and_crop_lines(segments, length=width)): + x = 0 + for text, style, _control in line: + style = style or Style() + rules = get_svg_style(style) + if rules not in classes: + classes[rules] = style_no + style_no += 1 + class_name = f"r{classes[rules]}" + + if style.reverse: + has_background = True + background = ( + _theme.foreground_color.hex + if style.color is None + else style.color.get_truecolor(_theme).hex + ) + else: + bgcolor = style.bgcolor + has_background = bgcolor is not None and not bgcolor.is_default + background = ( + _theme.background_color.hex + if style.bgcolor is None + else style.bgcolor.get_truecolor(_theme).hex + ) + + text_length = cell_len(text) + if has_background: + text_backgrounds.append( + make_tag( + "rect", + fill=background, + x=x * char_width, + y=y * line_height + 1.5, + width=char_width * text_length, + height=line_height + 0.25, + shape_rendering="crispEdges", + ) + ) + + if text != " " * len(text): + text_group.append( + make_tag( + "text", + escape_text(text), + _class=f"{unique_id}-{class_name}", + x=x * char_width, + y=y * line_height + char_height, + textLength=char_width * len(text), + clip_path=f"url(#{unique_id}-line-{y})", + ) + ) + x += cell_len(text) + + line_offsets = [line_no * line_height + 1.5 for line_no in range(y)] + lines = "\n".join( + f""" + {make_tag("rect", x=0, y=offset, width=char_width * width, height=line_height + 0.25)} + """ + for line_no, offset in enumerate(line_offsets) + ) + + styles = "\n".join( + f".{unique_id}-r{rule_no} {{ {css} }}" for css, rule_no in classes.items() + ) + backgrounds = "".join(text_backgrounds) + matrix = "".join(text_group) + + terminal_width = ceil(width * char_width + padding_width) + terminal_height = (y + 1) * line_height + padding_height + chrome = make_tag( + "rect", + fill=_theme.background_color.hex, + stroke="rgba(255,255,255,0.35)", + stroke_width="1", + x=margin_left, + y=margin_top, + width=terminal_width, + height=terminal_height, + rx=8, + ) + + title_color = _theme.foreground_color.hex + if title: + chrome += make_tag( + "text", + escape_text(title), + _class=f"{unique_id}-title", + fill=title_color, + text_anchor="middle", + x=terminal_width // 2, + y=margin_top + char_height + 6, + ) + chrome += f""" + + + + + + """ + + svg = code_format.format( + unique_id=unique_id, + char_width=char_width, + char_height=char_height, + line_height=line_height, + terminal_width=char_width * width - 1, + terminal_height=(y + 1) * line_height - 1, + width=terminal_width + margin_width, + height=terminal_height + margin_height, + terminal_x=margin_left + padding_left, + terminal_y=margin_top + padding_top, + styles=styles, + chrome=chrome, + backgrounds=backgrounds, + matrix=matrix, + lines=lines, + ) + return svg + + def save_svg( + self, + path: str, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> None: + """Generate an SVG file from the console contents (requires record=True in Console constructor). + + Args: + path (str): The path to write the SVG to. + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + svg = self.export_svg( + title=title, + theme=theme, + clear=clear, + code_format=code_format, + font_aspect_ratio=font_aspect_ratio, + unique_id=unique_id, + ) + with open(path, "w", encoding="utf-8") as write_file: + write_file.write(svg) + + +def _svg_hash(svg_main_code: str) -> str: + """Returns a unique hash for the given SVG main code. + + Args: + svg_main_code (str): The content we're going to inject in the SVG envelope. + + Returns: + str: a hash of the given content + """ + return str(zlib.adler32(svg_main_code.encode())) + + +if __name__ == "__main__": # pragma: no cover + console = Console(record=True) + + console.log( + "JSONRPC [i]request[/i]", + 5, + 1.3, + True, + False, + None, + { + "jsonrpc": "2.0", + "method": "subtract", + "params": {"minuend": 42, "subtrahend": 23}, + "id": 3, + }, + ) + + console.log("Hello, World!", "{'a': 1}", repr(console)) + + console.print( + { + "name": None, + "empty": [], + "quiz": { + "sport": { + "answered": True, + "q1": { + "question": "Which one is correct team name in NBA?", + "options": [ + "New York Bulls", + "Los Angeles Kings", + "Golden State Warriors", + "Huston Rocket", + ], + "answer": "Huston Rocket", + }, + }, + "maths": { + "answered": False, + "q1": { + "question": "5 + 7 = ?", + "options": [10, 11, 12, 13], + "answer": 12, + }, + "q2": { + "question": "12 - 8 = ?", + "options": [1, 2, 3, 4], + "answer": 4, + }, + }, + }, + } + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py new file mode 100644 index 0000000..65fdf56 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py @@ -0,0 +1,37 @@ +from typing import Optional, TYPE_CHECKING + +from .jupyter import JupyterMixin +from .measure import Measurement + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + + +class Constrain(JupyterMixin): + """Constrain the width of a renderable to a given number of characters. + + Args: + renderable (RenderableType): A renderable object. + width (int, optional): The maximum width (in characters) to render. Defaults to 80. + """ + + def __init__(self, renderable: "RenderableType", width: Optional[int] = 80) -> None: + self.renderable = renderable + self.width = width + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.width is None: + yield self.renderable + else: + child_options = options.update_width(min(self.width, options.max_width)) + yield from console.render(self.renderable, child_options) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.width is not None: + options = options.update_width(self.width) + measurement = Measurement.get(console, options, self.renderable) + return measurement diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py new file mode 100644 index 0000000..901ff8b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py @@ -0,0 +1,167 @@ +from itertools import zip_longest +from typing import ( + TYPE_CHECKING, + Iterable, + Iterator, + List, + Optional, + TypeVar, + Union, + overload, +) + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + JustifyMethod, + OverflowMethod, + RenderResult, + RenderableType, + ) + from .text import Text + +from .cells import cell_len +from .measure import Measurement + +T = TypeVar("T") + + +class Renderables: + """A list subclass which renders its contents to the console.""" + + def __init__( + self, renderables: Optional[Iterable["RenderableType"]] = None + ) -> None: + self._renderables: List["RenderableType"] = ( + list(renderables) if renderables is not None else [] + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._renderables + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + dimensions = [ + Measurement.get(console, options, renderable) + for renderable in self._renderables + ] + if not dimensions: + return Measurement(1, 1) + _min = max(dimension.minimum for dimension in dimensions) + _max = max(dimension.maximum for dimension in dimensions) + return Measurement(_min, _max) + + def append(self, renderable: "RenderableType") -> None: + self._renderables.append(renderable) + + def __iter__(self) -> Iterable["RenderableType"]: + return iter(self._renderables) + + +class Lines: + """A list subclass which can render to the console.""" + + def __init__(self, lines: Iterable["Text"] = ()) -> None: + self._lines: List["Text"] = list(lines) + + def __repr__(self) -> str: + return f"Lines({self._lines!r})" + + def __iter__(self) -> Iterator["Text"]: + return iter(self._lines) + + @overload + def __getitem__(self, index: int) -> "Text": + ... + + @overload + def __getitem__(self, index: slice) -> List["Text"]: + ... + + def __getitem__(self, index: Union[slice, int]) -> Union["Text", List["Text"]]: + return self._lines[index] + + def __setitem__(self, index: int, value: "Text") -> "Lines": + self._lines[index] = value + return self + + def __len__(self) -> int: + return self._lines.__len__() + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._lines + + def append(self, line: "Text") -> None: + self._lines.append(line) + + def extend(self, lines: Iterable["Text"]) -> None: + self._lines.extend(lines) + + def pop(self, index: int = -1) -> "Text": + return self._lines.pop(index) + + def justify( + self, + console: "Console", + width: int, + justify: "JustifyMethod" = "left", + overflow: "OverflowMethod" = "fold", + ) -> None: + """Justify and overflow text to a given width. + + Args: + console (Console): Console instance. + width (int): Number of cells available per line. + justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left". + overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold". + + """ + from .text import Text + + if justify == "left": + for line in self._lines: + line.truncate(width, overflow=overflow, pad=True) + elif justify == "center": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left((width - cell_len(line.plain)) // 2) + line.pad_right(width - cell_len(line.plain)) + elif justify == "right": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left(width - cell_len(line.plain)) + elif justify == "full": + for line_index, line in enumerate(self._lines): + if line_index == len(self._lines) - 1: + break + words = line.split(" ") + words_size = sum(cell_len(word.plain) for word in words) + num_spaces = len(words) - 1 + spaces = [1 for _ in range(num_spaces)] + index = 0 + if spaces: + while words_size + num_spaces < width: + spaces[len(spaces) - index - 1] += 1 + num_spaces += 1 + index = (index + 1) % len(spaces) + tokens: List[Text] = [] + for index, (word, next_word) in enumerate( + zip_longest(words, words[1:]) + ): + tokens.append(word) + if index < len(spaces): + style = word.get_style_at_offset(console, -1) + next_style = next_word.get_style_at_offset(console, 0) + space_style = style if style == next_style else line.style + tokens.append(Text(" " * spaces[index], style=space_style)) + self[line_index] = Text("").join(tokens) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py new file mode 100644 index 0000000..84963e9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py @@ -0,0 +1,219 @@ +import time +from typing import TYPE_CHECKING, Callable, Dict, Iterable, List, Union, Final + +from .segment import ControlCode, ControlType, Segment + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + +STRIP_CONTROL_CODES: Final = [ + 7, # Bell + 8, # Backspace + 11, # Vertical tab + 12, # Form feed + 13, # Carriage return +] +_CONTROL_STRIP_TRANSLATE: Final = { + _codepoint: None for _codepoint in STRIP_CONTROL_CODES +} + +CONTROL_ESCAPE: Final = { + 7: "\\a", + 8: "\\b", + 11: "\\v", + 12: "\\f", + 13: "\\r", +} + +CONTROL_CODES_FORMAT: Dict[int, Callable[..., str]] = { + ControlType.BELL: lambda: "\x07", + ControlType.CARRIAGE_RETURN: lambda: "\r", + ControlType.HOME: lambda: "\x1b[H", + ControlType.CLEAR: lambda: "\x1b[2J", + ControlType.ENABLE_ALT_SCREEN: lambda: "\x1b[?1049h", + ControlType.DISABLE_ALT_SCREEN: lambda: "\x1b[?1049l", + ControlType.SHOW_CURSOR: lambda: "\x1b[?25h", + ControlType.HIDE_CURSOR: lambda: "\x1b[?25l", + ControlType.CURSOR_UP: lambda param: f"\x1b[{param}A", + ControlType.CURSOR_DOWN: lambda param: f"\x1b[{param}B", + ControlType.CURSOR_FORWARD: lambda param: f"\x1b[{param}C", + ControlType.CURSOR_BACKWARD: lambda param: f"\x1b[{param}D", + ControlType.CURSOR_MOVE_TO_COLUMN: lambda param: f"\x1b[{param+1}G", + ControlType.ERASE_IN_LINE: lambda param: f"\x1b[{param}K", + ControlType.CURSOR_MOVE_TO: lambda x, y: f"\x1b[{y+1};{x+1}H", + ControlType.SET_WINDOW_TITLE: lambda title: f"\x1b]0;{title}\x07", +} + + +class Control: + """A renderable that inserts a control code (non printable but may move cursor). + + Args: + *codes (str): Positional arguments are either a :class:`~rich.segment.ControlType` enum or a + tuple of ControlType and an integer parameter + """ + + __slots__ = ["segment"] + + def __init__(self, *codes: Union[ControlType, ControlCode]) -> None: + control_codes: List[ControlCode] = [ + (code,) if isinstance(code, ControlType) else code for code in codes + ] + _format_map = CONTROL_CODES_FORMAT + rendered_codes = "".join( + _format_map[code](*parameters) for code, *parameters in control_codes + ) + self.segment = Segment(rendered_codes, None, control_codes) + + @classmethod + def bell(cls) -> "Control": + """Ring the 'bell'.""" + return cls(ControlType.BELL) + + @classmethod + def home(cls) -> "Control": + """Move cursor to 'home' position.""" + return cls(ControlType.HOME) + + @classmethod + def move(cls, x: int = 0, y: int = 0) -> "Control": + """Move cursor relative to current position. + + Args: + x (int): X offset. + y (int): Y offset. + + Returns: + ~Control: Control object. + + """ + + def get_codes() -> Iterable[ControlCode]: + control = ControlType + if x: + yield ( + control.CURSOR_FORWARD if x > 0 else control.CURSOR_BACKWARD, + abs(x), + ) + if y: + yield ( + control.CURSOR_DOWN if y > 0 else control.CURSOR_UP, + abs(y), + ) + + control = cls(*get_codes()) + return control + + @classmethod + def move_to_column(cls, x: int, y: int = 0) -> "Control": + """Move to the given column, optionally add offset to row. + + Returns: + x (int): absolute x (column) + y (int): optional y offset (row) + + Returns: + ~Control: Control object. + """ + + return ( + cls( + (ControlType.CURSOR_MOVE_TO_COLUMN, x), + ( + ControlType.CURSOR_DOWN if y > 0 else ControlType.CURSOR_UP, + abs(y), + ), + ) + if y + else cls((ControlType.CURSOR_MOVE_TO_COLUMN, x)) + ) + + @classmethod + def move_to(cls, x: int, y: int) -> "Control": + """Move cursor to absolute position. + + Args: + x (int): x offset (column) + y (int): y offset (row) + + Returns: + ~Control: Control object. + """ + return cls((ControlType.CURSOR_MOVE_TO, x, y)) + + @classmethod + def clear(cls) -> "Control": + """Clear the screen.""" + return cls(ControlType.CLEAR) + + @classmethod + def show_cursor(cls, show: bool) -> "Control": + """Show or hide the cursor.""" + return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR) + + @classmethod + def alt_screen(cls, enable: bool) -> "Control": + """Enable or disable alt screen.""" + if enable: + return cls(ControlType.ENABLE_ALT_SCREEN, ControlType.HOME) + else: + return cls(ControlType.DISABLE_ALT_SCREEN) + + @classmethod + def title(cls, title: str) -> "Control": + """Set the terminal window title + + Args: + title (str): The new terminal window title + """ + return cls((ControlType.SET_WINDOW_TITLE, title)) + + def __str__(self) -> str: + return self.segment.text + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.segment.text: + yield self.segment + + +def strip_control_codes( + text: str, _translate_table: Dict[int, None] = _CONTROL_STRIP_TRANSLATE +) -> str: + """Remove control codes from text. + + Args: + text (str): A string possibly contain control codes. + + Returns: + str: String with control codes removed. + """ + return text.translate(_translate_table) + + +def escape_control_codes( + text: str, + _translate_table: Dict[int, str] = CONTROL_ESCAPE, +) -> str: + """Replace control codes with their "escaped" equivalent in the given text. + (e.g. "\b" becomes "\\b") + + Args: + text (str): A string possibly containing control codes. + + Returns: + str: String with control codes replaced with their escaped version. + """ + return text.translate(_translate_table) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + console = Console() + console.print("Look at the title of your terminal window ^") + # console.print(Control((ControlType.SET_WINDOW_TITLE, "Hello, world!"))) + for i in range(10): + console.set_window_title("🚀 Loading" + "." * i) + time.sleep(0.5) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py new file mode 100644 index 0000000..61797bf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py @@ -0,0 +1,193 @@ +from typing import Dict + +from .style import Style + +DEFAULT_STYLES: Dict[str, Style] = { + "none": Style.null(), + "reset": Style( + color="default", + bgcolor="default", + dim=False, + bold=False, + italic=False, + underline=False, + blink=False, + blink2=False, + reverse=False, + conceal=False, + strike=False, + ), + "dim": Style(dim=True), + "bright": Style(dim=False), + "bold": Style(bold=True), + "strong": Style(bold=True), + "code": Style(reverse=True, bold=True), + "italic": Style(italic=True), + "emphasize": Style(italic=True), + "underline": Style(underline=True), + "blink": Style(blink=True), + "blink2": Style(blink2=True), + "reverse": Style(reverse=True), + "strike": Style(strike=True), + "black": Style(color="black"), + "red": Style(color="red"), + "green": Style(color="green"), + "yellow": Style(color="yellow"), + "magenta": Style(color="magenta"), + "cyan": Style(color="cyan"), + "white": Style(color="white"), + "inspect.attr": Style(color="yellow", italic=True), + "inspect.attr.dunder": Style(color="yellow", italic=True, dim=True), + "inspect.callable": Style(bold=True, color="red"), + "inspect.async_def": Style(italic=True, color="bright_cyan"), + "inspect.def": Style(italic=True, color="bright_cyan"), + "inspect.class": Style(italic=True, color="bright_cyan"), + "inspect.error": Style(bold=True, color="red"), + "inspect.equals": Style(), + "inspect.help": Style(color="cyan"), + "inspect.doc": Style(dim=True), + "inspect.value.border": Style(color="green"), + "live.ellipsis": Style(bold=True, color="red"), + "layout.tree.row": Style(dim=False, color="red"), + "layout.tree.column": Style(dim=False, color="blue"), + "logging.keyword": Style(bold=True, color="yellow"), + "logging.level.notset": Style(dim=True), + "logging.level.debug": Style(color="green"), + "logging.level.info": Style(color="blue"), + "logging.level.warning": Style(color="yellow"), + "logging.level.error": Style(color="red", bold=True), + "logging.level.critical": Style(color="red", bold=True, reverse=True), + "log.level": Style.null(), + "log.time": Style(color="cyan", dim=True), + "log.message": Style.null(), + "log.path": Style(dim=True), + "repr.ellipsis": Style(color="yellow"), + "repr.indent": Style(color="green", dim=True), + "repr.error": Style(color="red", bold=True), + "repr.str": Style(color="green", italic=False, bold=False), + "repr.brace": Style(bold=True), + "repr.comma": Style(bold=True), + "repr.ipv4": Style(bold=True, color="bright_green"), + "repr.ipv6": Style(bold=True, color="bright_green"), + "repr.eui48": Style(bold=True, color="bright_green"), + "repr.eui64": Style(bold=True, color="bright_green"), + "repr.tag_start": Style(bold=True), + "repr.tag_name": Style(color="bright_magenta", bold=True), + "repr.tag_contents": Style(color="default"), + "repr.tag_end": Style(bold=True), + "repr.attrib_name": Style(color="yellow", italic=False), + "repr.attrib_equal": Style(bold=True), + "repr.attrib_value": Style(color="magenta", italic=False), + "repr.number": Style(color="cyan", bold=True, italic=False), + "repr.number_complex": Style(color="cyan", bold=True, italic=False), # same + "repr.bool_true": Style(color="bright_green", italic=True), + "repr.bool_false": Style(color="bright_red", italic=True), + "repr.none": Style(color="magenta", italic=True), + "repr.url": Style(underline=True, color="bright_blue", italic=False, bold=False), + "repr.uuid": Style(color="bright_yellow", bold=False), + "repr.call": Style(color="magenta", bold=True), + "repr.path": Style(color="magenta"), + "repr.filename": Style(color="bright_magenta"), + "rule.line": Style(color="bright_green"), + "rule.text": Style.null(), + "json.brace": Style(bold=True), + "json.bool_true": Style(color="bright_green", italic=True), + "json.bool_false": Style(color="bright_red", italic=True), + "json.null": Style(color="magenta", italic=True), + "json.number": Style(color="cyan", bold=True, italic=False), + "json.str": Style(color="green", italic=False, bold=False), + "json.key": Style(color="blue", bold=True), + "prompt": Style.null(), + "prompt.choices": Style(color="magenta", bold=True), + "prompt.default": Style(color="cyan", bold=True), + "prompt.invalid": Style(color="red"), + "prompt.invalid.choice": Style(color="red"), + "pretty": Style.null(), + "scope.border": Style(color="blue"), + "scope.key": Style(color="yellow", italic=True), + "scope.key.special": Style(color="yellow", italic=True, dim=True), + "scope.equals": Style(color="red"), + "table.header": Style(bold=True), + "table.footer": Style(bold=True), + "table.cell": Style.null(), + "table.title": Style(italic=True), + "table.caption": Style(italic=True, dim=True), + "traceback.error": Style(color="red", italic=True), + "traceback.border.syntax_error": Style(color="bright_red"), + "traceback.border": Style(color="red"), + "traceback.text": Style.null(), + "traceback.title": Style(color="red", bold=True), + "traceback.exc_type": Style(color="bright_red", bold=True), + "traceback.exc_value": Style.null(), + "traceback.offset": Style(color="bright_red", bold=True), + "traceback.error_range": Style(underline=True, bold=True), + "traceback.note": Style(color="green", bold=True), + "traceback.group.border": Style(color="magenta"), + "bar.back": Style(color="grey23"), + "bar.complete": Style(color="rgb(249,38,114)"), + "bar.finished": Style(color="rgb(114,156,31)"), + "bar.pulse": Style(color="rgb(249,38,114)"), + "progress.description": Style.null(), + "progress.filesize": Style(color="green"), + "progress.filesize.total": Style(color="green"), + "progress.download": Style(color="green"), + "progress.elapsed": Style(color="yellow"), + "progress.percentage": Style(color="magenta"), + "progress.remaining": Style(color="cyan"), + "progress.data.speed": Style(color="red"), + "progress.spinner": Style(color="green"), + "status.spinner": Style(color="green"), + "tree": Style(), + "tree.line": Style(), + "markdown.paragraph": Style(), + "markdown.text": Style(), + "markdown.em": Style(italic=True), + "markdown.emph": Style(italic=True), # For commonmark backwards compatibility + "markdown.strong": Style(bold=True), + "markdown.code": Style(bold=True, color="cyan", bgcolor="black"), + "markdown.code_block": Style(color="cyan", bgcolor="black"), + "markdown.block_quote": Style(color="magenta"), + "markdown.list": Style(color="cyan"), + "markdown.item": Style(), + "markdown.item.bullet": Style(color="yellow", bold=True), + "markdown.item.number": Style(color="yellow", bold=True), + "markdown.hr": Style(color="yellow"), + "markdown.h1.border": Style(), + "markdown.h1": Style(bold=True), + "markdown.h2": Style(bold=True, underline=True), + "markdown.h3": Style(bold=True), + "markdown.h4": Style(bold=True, dim=True), + "markdown.h5": Style(underline=True), + "markdown.h6": Style(italic=True), + "markdown.h7": Style(italic=True, dim=True), + "markdown.link": Style(color="bright_blue"), + "markdown.link_url": Style(color="blue", underline=True), + "markdown.s": Style(strike=True), + "iso8601.date": Style(color="blue"), + "iso8601.time": Style(color="magenta"), + "iso8601.timezone": Style(color="yellow"), +} + + +if __name__ == "__main__": # pragma: no cover + import argparse + import io + + from pip._vendor.rich.console import Console + from pip._vendor.rich.table import Table + from pip._vendor.rich.text import Text + + parser = argparse.ArgumentParser() + parser.add_argument("--html", action="store_true", help="Export as HTML table") + args = parser.parse_args() + html: bool = args.html + console = Console(record=True, width=70, file=io.StringIO()) if html else Console() + + table = Table("Name", "Styling") + + for style_name, style in DEFAULT_STYLES.items(): + table.add_row(Text(style_name, style=style), str(style)) + + console.print(table) + if html: + print(console.export_html(inline_styles=True)) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py new file mode 100644 index 0000000..92893b3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py @@ -0,0 +1,39 @@ +import os +import platform + +from pip._vendor.rich import inspect +from pip._vendor.rich.console import Console, get_windows_console_features +from pip._vendor.rich.panel import Panel +from pip._vendor.rich.pretty import Pretty + + +def report() -> None: # pragma: no cover + """Print a report to the terminal with debugging information""" + console = Console() + inspect(console) + features = get_windows_console_features() + inspect(features) + + env_names = ( + "CLICOLOR", + "COLORTERM", + "COLUMNS", + "JPY_PARENT_PID", + "JUPYTER_COLUMNS", + "JUPYTER_LINES", + "LINES", + "NO_COLOR", + "TERM_PROGRAM", + "TERM", + "TTY_COMPATIBLE", + "TTY_INTERACTIVE", + "VSCODE_VERBOSE_LOGGING", + ) + env = {name: os.getenv(name) for name in env_names} + console.print(Panel.fit((Pretty(env)), title="[b]Environment Variables")) + + console.print(f'platform="{platform.system()}"') + + +if __name__ == "__main__": # pragma: no cover + report() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py new file mode 100644 index 0000000..4a667ed --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py @@ -0,0 +1,91 @@ +import sys +from typing import TYPE_CHECKING, Optional, Union, Literal + +from .jupyter import JupyterMixin +from .segment import Segment +from .style import Style +from ._emoji_codes import EMOJI +from ._emoji_replace import _emoji_replace + + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + + +EmojiVariant = Literal["emoji", "text"] + + +class NoEmoji(Exception): + """No emoji by that name.""" + + +class Emoji(JupyterMixin): + __slots__ = ["name", "style", "_char", "variant"] + + VARIANTS = {"text": "\uFE0E", "emoji": "\uFE0F"} + + def __init__( + self, + name: str, + style: Union[str, Style] = "none", + variant: Optional[EmojiVariant] = None, + ) -> None: + """A single emoji character. + + Args: + name (str): Name of emoji. + style (Union[str, Style], optional): Optional style. Defaults to None. + + Raises: + NoEmoji: If the emoji doesn't exist. + """ + self.name = name + self.style = style + self.variant = variant + try: + self._char = EMOJI[name] + except KeyError: + raise NoEmoji(f"No emoji called {name!r}") + if variant is not None: + self._char += self.VARIANTS.get(variant, "") + + @classmethod + def replace(cls, text: str) -> str: + """Replace emoji markup with corresponding unicode characters. + + Args: + text (str): A string with emojis codes, e.g. "Hello :smiley:!" + + Returns: + str: A string with emoji codes replaces with actual emoji. + """ + return _emoji_replace(text) + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self._char + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + yield Segment(self._char, console.get_style(self.style)) + + +if __name__ == "__main__": # pragma: no cover + import sys + + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.console import Console + + console = Console(record=True) + + columns = Columns( + (f":{name}: {name}" for name in sorted(EMOJI.keys()) if "\u200D" not in name), + column_first=True, + ) + + console.print(columns) + if len(sys.argv) > 1: + console.save_html(sys.argv[1]) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py new file mode 100644 index 0000000..0bcbe53 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py @@ -0,0 +1,34 @@ +class ConsoleError(Exception): + """An error in console operation.""" + + +class StyleError(Exception): + """An error in styles.""" + + +class StyleSyntaxError(ConsoleError): + """Style was badly formatted.""" + + +class MissingStyle(StyleError): + """No such style.""" + + +class StyleStackError(ConsoleError): + """Style stack is invalid.""" + + +class NotRenderableError(ConsoleError): + """Object is not renderable.""" + + +class MarkupError(ConsoleError): + """Markup was badly formatted.""" + + +class LiveError(ConsoleError): + """Error related to Live display.""" + + +class NoAltScreen(ConsoleError): + """Alt screen mode was required.""" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py new file mode 100644 index 0000000..4b0b0da --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py @@ -0,0 +1,57 @@ +import io +from typing import IO, TYPE_CHECKING, Any, List + +from .ansi import AnsiDecoder +from .text import Text + +if TYPE_CHECKING: + from .console import Console + + +class FileProxy(io.TextIOBase): + """Wraps a file (e.g. sys.stdout) and redirects writes to a console.""" + + def __init__(self, console: "Console", file: IO[str]) -> None: + self.__console = console + self.__file = file + self.__buffer: List[str] = [] + self.__ansi_decoder = AnsiDecoder() + + @property + def rich_proxied_file(self) -> IO[str]: + """Get proxied file.""" + return self.__file + + def __getattr__(self, name: str) -> Any: + return getattr(self.__file, name) + + def write(self, text: str) -> int: + if not isinstance(text, str): + raise TypeError(f"write() argument must be str, not {type(text).__name__}") + buffer = self.__buffer + lines: List[str] = [] + while text: + line, new_line, text = text.partition("\n") + if new_line: + lines.append("".join(buffer) + line) + buffer.clear() + else: + buffer.append(line) + break + if lines: + console = self.__console + with console: + output = Text("\n").join( + self.__ansi_decoder.decode_line(line) for line in lines + ) + console.print(output) + return len(text) + + def flush(self) -> None: + output = "".join(self.__buffer) + if output: + self.__console.print(output) + del self.__buffer[:] + + def fileno(self) -> int: + return self.__file.fileno() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py new file mode 100644 index 0000000..83bc911 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py @@ -0,0 +1,88 @@ +"""Functions for reporting filesizes. Borrowed from https://github.com/PyFilesystem/pyfilesystem2 + +The functions declared in this module should cover the different +use cases needed to generate a string representation of a file size +using several different units. Since there are many standards regarding +file size units, three different functions have been implemented. + +See Also: + * `Wikipedia: Binary prefix `_ + +""" + +__all__ = ["decimal"] + +from typing import Iterable, List, Optional, Tuple + + +def _to_str( + size: int, + suffixes: Iterable[str], + base: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + if size == 1: + return "1 byte" + elif size < base: + return f"{size:,} bytes" + + for i, suffix in enumerate(suffixes, 2): # noqa: B007 + unit = base**i + if size < unit: + break + return "{:,.{precision}f}{separator}{}".format( + (base * size / unit), + suffix, + precision=precision, + separator=separator, + ) + + +def pick_unit_and_suffix(size: int, suffixes: List[str], base: int) -> Tuple[int, str]: + """Pick a suffix and base for the given size.""" + for i, suffix in enumerate(suffixes): + unit = base**i + if size < unit * base: + break + return unit, suffix + + +def decimal( + size: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + """Convert a filesize in to a string (powers of 1000, SI prefixes). + + In this convention, ``1000 B = 1 kB``. + + This is typically the format used to advertise the storage + capacity of USB flash drives and the like (*256 MB* meaning + actually a storage capacity of more than *256 000 000 B*), + or used by **Mac OS X** since v10.6 to report file sizes. + + Arguments: + int (size): A file size. + int (precision): The number of decimal places to include (default = 1). + str (separator): The string to separate the value from the units (default = " "). + + Returns: + `str`: A string containing a abbreviated file size and units. + + Example: + >>> filesize.decimal(30000) + '30.0 kB' + >>> filesize.decimal(30000, precision=2, separator="") + '30.00kB' + + """ + return _to_str( + size, + ("kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"), + 1000, + precision=precision, + separator=separator, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py new file mode 100644 index 0000000..e4c462e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py @@ -0,0 +1,232 @@ +import re +from abc import ABC, abstractmethod +from typing import List, Union + +from .text import Span, Text + + +def _combine_regex(*regexes: str) -> str: + """Combine a number of regexes in to a single regex. + + Returns: + str: New regex with all regexes ORed together. + """ + return "|".join(regexes) + + +class Highlighter(ABC): + """Abstract base class for highlighters.""" + + def __call__(self, text: Union[str, Text]) -> Text: + """Highlight a str or Text instance. + + Args: + text (Union[str, ~Text]): Text to highlight. + + Raises: + TypeError: If not called with text or str. + + Returns: + Text: A test instance with highlighting applied. + """ + if isinstance(text, str): + highlight_text = Text(text) + elif isinstance(text, Text): + highlight_text = text.copy() + else: + raise TypeError(f"str or Text instance required, not {text!r}") + self.highlight(highlight_text) + return highlight_text + + @abstractmethod + def highlight(self, text: Text) -> None: + """Apply highlighting in place to text. + + Args: + text (~Text): A text object highlight. + """ + + +class NullHighlighter(Highlighter): + """A highlighter object that doesn't highlight. + + May be used to disable highlighting entirely. + + """ + + def highlight(self, text: Text) -> None: + """Nothing to do""" + + +class RegexHighlighter(Highlighter): + """Applies highlighting from a list of regular expressions.""" + + highlights: List[str] = [] + base_style: str = "" + + def highlight(self, text: Text) -> None: + """Highlight :class:`rich.text.Text` using regular expressions. + + Args: + text (~Text): Text to highlighted. + + """ + + highlight_regex = text.highlight_regex + for re_highlight in self.highlights: + highlight_regex(re_highlight, style_prefix=self.base_style) + + +class ReprHighlighter(RegexHighlighter): + """Highlights the text typically produced from ``__repr__`` methods.""" + + base_style = "repr." + highlights = [ + r"(?P<)(?P[-\w.:|]*)(?P[\w\W]*)(?P>)", + r'(?P[\w_]{1,50})=(?P"?[\w_]+"?)?', + r"(?P[][{}()])", + _combine_regex( + r"(?P[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})", + r"(?P([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){3}[0-9A-Fa-f]{4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){2}[0-9A-Fa-f]{4})", + r"(?P[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})", + r"(?P[\w.]*?)\(", + r"\b(?PTrue)\b|\b(?PFalse)\b|\b(?PNone)\b", + r"(?P\.\.\.)", + r"(?P(?(?\B(/[-\w._+]+)*\/)(?P[-\w._+]*)?", + r"(?b?'''.*?(?(file|https|http|ws|wss)://[-0-9a-zA-Z$_+!`(),.?/;:&=%#~@]*)", + ), + ] + + +class JSONHighlighter(RegexHighlighter): + """Highlights JSON""" + + # Captures the start and end of JSON strings, handling escaped quotes + JSON_STR = r"(?b?\".*?(?[\{\[\(\)\]\}])", + r"\b(?Ptrue)\b|\b(?Pfalse)\b|\b(?Pnull)\b", + r"(?P(? None: + super().highlight(text) + + # Additional work to handle highlighting JSON keys + plain = text.plain + append = text.spans.append + whitespace = self.JSON_WHITESPACE + for match in re.finditer(self.JSON_STR, plain): + start, end = match.span() + cursor = end + while cursor < len(plain): + char = plain[cursor] + cursor += 1 + if char == ":": + append(Span(start, end, "json.key")) + elif char in whitespace: + continue + break + + +class ISO8601Highlighter(RegexHighlighter): + """Highlights the ISO8601 date time strings. + Regex reference: https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/ch04s07.html + """ + + base_style = "iso8601." + highlights = [ + # + # Dates + # + # Calendar month (e.g. 2008-08). The hyphen is required + r"^(?P[0-9]{4})-(?P1[0-2]|0[1-9])$", + # Calendar date w/o hyphens (e.g. 20080830) + r"^(?P(?P[0-9]{4})(?P1[0-2]|0[1-9])(?P3[01]|0[1-9]|[12][0-9]))$", + # Ordinal date (e.g. 2008-243). The hyphen is optional + r"^(?P(?P[0-9]{4})-?(?P36[0-6]|3[0-5][0-9]|[12][0-9]{2}|0[1-9][0-9]|00[1-9]))$", + # + # Weeks + # + # Week of the year (e.g., 2008-W35). The hyphen is optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9]))$", + # Week date (e.g., 2008-W35-6). The hyphens are optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9])-?(?P[1-7]))$", + # + # Times + # + # Hours and minutes (e.g., 17:21). The colon is optional + r"^(?P

    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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE new file mode 100644 index 0000000..f35fed9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2010-202x The platformdirs developers + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py new file mode 100644 index 0000000..2325ec2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py @@ -0,0 +1,631 @@ +""" +Utilities for determining application-specific dirs. + +See for details and usage. + +""" + +from __future__ import annotations + +import os +import sys +from typing import TYPE_CHECKING + +from .api import PlatformDirsABC +from .version import __version__ +from .version import __version_tuple__ as __version_info__ + +if TYPE_CHECKING: + from pathlib import Path + from typing import Literal + +if sys.platform == "win32": + from pip._vendor.platformdirs.windows import Windows as _Result +elif sys.platform == "darwin": + from pip._vendor.platformdirs.macos import MacOS as _Result +else: + from pip._vendor.platformdirs.unix import Unix as _Result + + +def _set_platform_dir_class() -> type[PlatformDirsABC]: + if os.getenv("ANDROID_DATA") == "/data" and os.getenv("ANDROID_ROOT") == "/system": + if os.getenv("SHELL") or os.getenv("PREFIX"): + return _Result + + from pip._vendor.platformdirs.android import _android_folder # noqa: PLC0415 + + if _android_folder() is not None: + from pip._vendor.platformdirs.android import Android # noqa: PLC0415 + + return Android # return to avoid redefinition of a result + + return _Result + + +if TYPE_CHECKING: + # Work around mypy issue: https://github.com/python/mypy/issues/10962 + PlatformDirs = _Result +else: + PlatformDirs = _set_platform_dir_class() #: Currently active platform +AppDirs = PlatformDirs #: Backwards compatibility with appdirs + + +def user_data_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: data directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_data_dir + + +def site_data_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: data directory shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_data_dir + + +def user_config_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_config_dir + + +def site_config_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config directory shared by the users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_config_dir + + +def user_cache_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: cache directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_cache_dir + + +def site_cache_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: cache directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_cache_dir + + +def user_state_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: state directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_state_dir + + +def user_log_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: log directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_log_dir + + +def user_documents_dir() -> str: + """:returns: documents directory tied to the user""" + return PlatformDirs().user_documents_dir + + +def user_downloads_dir() -> str: + """:returns: downloads directory tied to the user""" + return PlatformDirs().user_downloads_dir + + +def user_pictures_dir() -> str: + """:returns: pictures directory tied to the user""" + return PlatformDirs().user_pictures_dir + + +def user_videos_dir() -> str: + """:returns: videos directory tied to the user""" + return PlatformDirs().user_videos_dir + + +def user_music_dir() -> str: + """:returns: music directory tied to the user""" + return PlatformDirs().user_music_dir + + +def user_desktop_dir() -> str: + """:returns: desktop directory tied to the user""" + return PlatformDirs().user_desktop_dir + + +def user_runtime_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_runtime_dir + + +def site_runtime_dir( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime directory shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_runtime_dir + + +def user_data_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: data path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_data_path + + +def site_data_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `multipath `. + :param ensure_exists: See `ensure_exists `. + :returns: data path shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_data_path + + +def user_config_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_config_path + + +def site_config_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config path shared by the users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_config_path + + +def site_cache_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: cache directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_cache_path + + +def user_cache_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: cache path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_cache_path + + +def user_state_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: state path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_state_path + + +def user_log_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: log path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_log_path + + +def user_documents_path() -> Path: + """:returns: documents a path tied to the user""" + return PlatformDirs().user_documents_path + + +def user_downloads_path() -> Path: + """:returns: downloads path tied to the user""" + return PlatformDirs().user_downloads_path + + +def user_pictures_path() -> Path: + """:returns: pictures path tied to the user""" + return PlatformDirs().user_pictures_path + + +def user_videos_path() -> Path: + """:returns: videos path tied to the user""" + return PlatformDirs().user_videos_path + + +def user_music_path() -> Path: + """:returns: music path tied to the user""" + return PlatformDirs().user_music_path + + +def user_desktop_path() -> Path: + """:returns: desktop path tied to the user""" + return PlatformDirs().user_desktop_path + + +def user_runtime_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_runtime_path + + +def site_runtime_path( + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime path shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_runtime_path + + +__all__ = [ + "AppDirs", + "PlatformDirs", + "PlatformDirsABC", + "__version__", + "__version_info__", + "site_cache_dir", + "site_cache_path", + "site_config_dir", + "site_config_path", + "site_data_dir", + "site_data_path", + "site_runtime_dir", + "site_runtime_path", + "user_cache_dir", + "user_cache_path", + "user_config_dir", + "user_config_path", + "user_data_dir", + "user_data_path", + "user_desktop_dir", + "user_desktop_path", + "user_documents_dir", + "user_documents_path", + "user_downloads_dir", + "user_downloads_path", + "user_log_dir", + "user_log_path", + "user_music_dir", + "user_music_path", + "user_pictures_dir", + "user_pictures_path", + "user_runtime_dir", + "user_runtime_path", + "user_state_dir", + "user_state_path", + "user_videos_dir", + "user_videos_path", +] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py new file mode 100644 index 0000000..fa8a677 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py @@ -0,0 +1,55 @@ +"""Main entry point.""" + +from __future__ import annotations + +from pip._vendor.platformdirs import PlatformDirs, __version__ + +PROPS = ( + "user_data_dir", + "user_config_dir", + "user_cache_dir", + "user_state_dir", + "user_log_dir", + "user_documents_dir", + "user_downloads_dir", + "user_pictures_dir", + "user_videos_dir", + "user_music_dir", + "user_runtime_dir", + "site_data_dir", + "site_config_dir", + "site_cache_dir", + "site_runtime_dir", +) + + +def main() -> None: + """Run the main entry point.""" + app_name = "MyApp" + app_author = "MyCompany" + + print(f"-- platformdirs {__version__} --") # noqa: T201 + + print("-- app dirs (with optional 'version')") # noqa: T201 + dirs = PlatformDirs(app_name, app_author, version="1.0") + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + print("\n-- app dirs (without optional 'version')") # noqa: T201 + dirs = PlatformDirs(app_name, app_author) + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + print("\n-- app dirs (without optional 'appauthor')") # noqa: T201 + dirs = PlatformDirs(app_name) + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + print("\n-- app dirs (with disabled 'appauthor')") # noqa: T201 + dirs = PlatformDirs(app_name, appauthor=False) + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6760d0f86b25833c32576cfe8f73dbc303177f70 GIT binary patch literal 19860 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 E3-?x$J^%m! literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a747c0cd836022bc8955fa0f6b9526ab607e427 GIT binary patch literal 1981 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..baa093958c8b54de2e23e949c77fcaaf15f0979b GIT binary patch literal 13373 zcmd5CTWl29b!MNl_IlTkg&6Q-Y=iCf6G#ZbA*sx>_SKm+blput zQ`7=U3vHx8q)JKq(H4=Y`KeU(r$7CvDpfY7VzUA@ZB(_9`r*WB)ubQoIcJ``Gdsk@ zRNa-%z4x4R@0@e)x#ylcbAQ*=)WE=Ro%cV-C)YE~``FNbezn3bor20`Mr5WLkrh2@ zHshK0uvqt|z0+POeQ96DKkd&1rUQicr-K=8nxlFk9m+IJH?WM(%%>LcN&M)rX`S`x6y@25M6(l)P z$jML-K9RykI;lQWg+8@lmtFu-E;AA{&4ThCk)8I280%jgx3=tcaii!x>!0?Cn?&DP z-?U%cEc&4gi1&*DD1#Cwg~SKM;91`_?fH5+-JsDp2U?>>3pvoj8m+;B)}+xI9cU4a z7IvUTHCmGcty!Z*9B3^XE$TpP)o9HQv^I^_;y{aOv{nb&Dvj3WKwGWRVh*(XG}2apD&7K9e%NmN4xW%sRrXv0yp~v(|#?B+NPsri(Bg7ECu`IxQHUFkKc* z4`I43m|nv07EB*udMudrgz2?lHV~%Ig6SvBdJATNFdHnGLBjM~FmdrgaRB^$2+Bby zhoOu^IRfPnl%wKSaTv-mC`X_ihjJ9kjZlt3xvA)hKU9hCPbUgTb8==^N>*U0&yG%N zOPxQ0p&^-0C<+e@d|qSZ#gr^1VS%S4Wo#aeKUr7Tn~GbOgf2nM<2fflPb zLrlpFZR|lmX#1e8MJEOVLCFtoEm%-H0BtR5GE6B5t$^OU$i_X1XJGIKUib)?jc>#s$+<)(l|81hX)QZjW+q)oJ0Q64WHGgbc|lLG9U7#NJ%%2=V5Jk|8 zpanrIf;IpOx|cqupPn2)os&;0`9xAu#t-ZsePVLQmeB*aStUnz=0r)D%qG%BC8dmy zoszPr#?z@IW=2XZH`t5>0_Lr3`uXP<%w{08(W~CXAP9c z*plbR?Aw9wG0#K%IDvjs^DBAH=ajq$n7DW912l?^)}%Bzr} zLr|ZAg@6G@NMuEDI|>c6BR0=+;r=p?o&j)%xz)1jl6Ym)mCcuqzuI*!P;QJ~+mxV91LbJj#nOdRxq0>Frtddh5#LC^p1#pMd@I^=@$~uA7fa_$ zS9ZPG^7`Jn=;)hAuSZAE`N~}QCKsRQ;y+t|gByqb=Njev;E74AC!vBA<)4BIM0w@} zl(j#(vtY#X606UMljniovTu2=X-{C8BK%>_4npo31iMPvf>PlqNC~-*P>qkHXr`CDq3&Q|msvdoJ(K|eXBaT)&Bo5_jh(l`&6i>?KXxjO#v!(ZPQy~PZ-t#M(tNX%hJzjt?4!tSzHItv*sEy z?F-)SnNl6yPm#0|0uvTe=*MygbVHLCjw@20EErc!R|y$@tym0L;f13R4+{c>&5V#x z1nerLjtWMApWSHl-#hfcbU+yaKo-9E=!Hk$Ywx+)K0Mz({ML@2KX&!8h4!t#Warx_ z&h5JuZM(GZl-bTS8NPlTm%(PQne;6HYk}E-vy% ziX@scC6B?V@;HDh;c)A65w41i%TeBhfR^r^L>n?hOXjjiQ^(va=PX^6Y@_xj<8?b4 z&t%9gPr}jq5}M}IXSbdSqhupfhFP1CH4M0dmtn@ZDP$rEo@Oj5yZ<>`F``-#JChN+ zoQFMN-3L_~G&-G}m=zMoA@?@0)5+q|PLtE$ond2K`6N6K~j z#3I40&5*Sm@6?wOvujEaG1sg*C%c|=A%A9P`%JIEL=v-J+a3;?Gaf2d?*lL` zCoP=c2k7K7jG)wn@D1~^4GYo!Ij(oTRV&k8x|J+8Vu?xc%) zzSU1Pq>c0W*2?lv7^yaL#OGu2h3L>6H?*?8XDX?mNL-bCvc8h~nZ!j&E6cxeq&$KZ z-I>j`RHcuZ5>_P{UvgB3atN!ev$i?2u`uxdxQ;sb0=y4DM(%>js)VHuP<=DpDf|$ zhnKo|w(1-0y)esgeX~@3?a-}3=Ther9OkAzJ ziF_I?anG$VQr`;IZ?$zZ&`H8M;Z~MD2#?nUC~b=X%HxSYP0J{zrxw zt8WNBI_TdYbW>1(a}EonsU8++f!M-=jU{F`N8fy;?>g5<=D_*_*XLjkTrw0i_Cv)8 z8ZcVzPrt0Ui#Z&n@10(q!~EW<29H--eDDcS3m`70sSY3*&fx+RgbuucslLv^Z@*Qa zKwDHVpffn7Sc*Ml+E~`0Z3bZ|HG0I_Z^mesiw%Fou%XU#yKc3vzEpU1Xd&G3p%)NZ z99iFA9Y^l9r8d-eB8n-df#_Qkz3;LaC`#HJFNEr?Ba@-aZX7z5$KrL2BcB0FR)v;( zZJ7T0hB1%#s_T3MWUJ#k+O}gH>FaJgCP$y$HuQoiHuQgEo5A|F(Ib!PH_z9%PHR;} zp)Rww(~F&F&~70*yu?P_EEEq;O-=3Db8t_*nJ)f(+5k6z_!2*r%Sv?rY<8WB(C#ZA z+LK5t(qWwg!Ve>V2SGCcxbu_CrPX_C^tp~Mt5K~Dd9YRqsCN-6K70gR7UB`_OqfW`YlR9CSVRP1my7S|mFDYKtex8P@+_Gy={55Xf2YuvLD1G^t$-QoCVywgT^ zkc3KuAY^jlOj;6zN>~uSHj_wel%OEMiv>ZDSEC%g2=FG2jBnB_Twc!QCAml)L&CTORR;-)mX7=!bGKz{JKEgIMF3){eyx z)*6`B)r*Z-3p26y#U`vp5EsQ-Gt=HdV=T5Z4Uwfbz%9MNa{ky-%;TR};(Y#Y=og5T z{cRt4SpU`~FB6C%h%EY`2~RX=4_4D2w9>X!)3#Y@+pB5Yt+a=#X%AUxZnC)bbCc6e z7B||%)p9;;mD5dkH#sM&$DFW^=|*#W-bWsfe-HrB;R5wBIf(tE z$y_=O*WKaBsf=MS4ts?VP?V^S9G`OA)u{TY{2H*pX2mGTvFK%4_FX3W7pC`pCiF+9 h?>5tZo8kZDZNBXryzT4yIPk2G?Yxxy2ZJSP@m~`RBqIO- literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb2b3a14b88b91f472f450280e649fc69a1dbe8d GIT binary patch literal 9016 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c35a589b01808e6c39416c6256825fa4a551706d GIT binary patch literal 816 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py new file mode 100644 index 0000000..92efc85 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py @@ -0,0 +1,249 @@ +"""Android.""" + +from __future__ import annotations + +import os +import re +import sys +from functools import lru_cache +from typing import TYPE_CHECKING, cast + +from .api import PlatformDirsABC + + +class Android(PlatformDirsABC): + """ + Follows the guidance `from here `_. + + Makes use of the `appname `, `version + `, `ensure_exists `. + + """ + + @property + def user_data_dir(self) -> str: + """:return: data directory tied to the user, e.g. ``/data/user///files/``""" + return self._append_app_name_and_version(cast("str", _android_folder()), "files") + + @property + def site_data_dir(self) -> str: + """:return: data directory shared by users, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_config_dir(self) -> str: + """ + :return: config directory tied to the user, e.g. \ + ``/data/user///shared_prefs/`` + """ + return self._append_app_name_and_version(cast("str", _android_folder()), "shared_prefs") + + @property + def site_config_dir(self) -> str: + """:return: config directory shared by the users, same as `user_config_dir`""" + return self.user_config_dir + + @property + def user_cache_dir(self) -> str: + """:return: cache directory tied to the user, e.g.,``/data/user///cache/``""" + return self._append_app_name_and_version(cast("str", _android_folder()), "cache") + + @property + def site_cache_dir(self) -> str: + """:return: cache directory shared by users, same as `user_cache_dir`""" + return self.user_cache_dir + + @property + def user_state_dir(self) -> str: + """:return: state directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_log_dir(self) -> str: + """ + :return: log directory tied to the user, same as `user_cache_dir` if not opinionated else ``log`` in it, + e.g. ``/data/user///cache//log`` + """ + path = self.user_cache_dir + if self.opinion: + path = os.path.join(path, "log") # noqa: PTH118 + return path + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user e.g. ``/storage/emulated/0/Documents``""" + return _android_documents_folder() + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user e.g. ``/storage/emulated/0/Downloads``""" + return _android_downloads_folder() + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user e.g. ``/storage/emulated/0/Pictures``""" + return _android_pictures_folder() + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user e.g. ``/storage/emulated/0/DCIM/Camera``""" + return _android_videos_folder() + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user e.g. ``/storage/emulated/0/Music``""" + return _android_music_folder() + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user e.g. ``/storage/emulated/0/Desktop``""" + return "/storage/emulated/0/Desktop" + + @property + def user_runtime_dir(self) -> str: + """ + :return: runtime directory tied to the user, same as `user_cache_dir` if not opinionated else ``tmp`` in it, + e.g. ``/data/user///cache//tmp`` + """ + path = self.user_cache_dir + if self.opinion: + path = os.path.join(path, "tmp") # noqa: PTH118 + return path + + @property + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users, same as `user_runtime_dir`""" + return self.user_runtime_dir + + +@lru_cache(maxsize=1) +def _android_folder() -> str | None: # noqa: C901 + """:return: base folder for the Android OS or None if it cannot be found""" + result: str | None = None + # type checker isn't happy with our "import android", just don't do this when type checking see + # https://stackoverflow.com/a/61394121 + if not TYPE_CHECKING: + try: + # First try to get a path to android app using python4android (if available)... + from android import mActivity # noqa: PLC0415 + + context = cast("android.content.Context", mActivity.getApplicationContext()) # noqa: F821 + result = context.getFilesDir().getParentFile().getAbsolutePath() + except Exception: # noqa: BLE001 + result = None + if result is None: + try: + # ...and fall back to using plain pyjnius, if python4android isn't available or doesn't deliver any useful + # result... + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + result = context.getFilesDir().getParentFile().getAbsolutePath() + except Exception: # noqa: BLE001 + result = None + if result is None: + # and if that fails, too, find an android folder looking at path on the sys.path + # warning: only works for apps installed under /data, not adopted storage etc. + pattern = re.compile(r"/data/(data|user/\d+)/(.+)/files") + for path in sys.path: + if pattern.match(path): + result = path.split("/files")[0] + break + else: + result = None + if result is None: + # one last try: find an android folder looking at path on the sys.path taking adopted storage paths into + # account + pattern = re.compile(r"/mnt/expand/[a-fA-F0-9-]{36}/(data|user/\d+)/(.+)/files") + for path in sys.path: + if pattern.match(path): + result = path.split("/files")[0] + break + else: + result = None + return result + + +@lru_cache(maxsize=1) +def _android_documents_folder() -> str: + """:return: documents folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + documents_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOCUMENTS).getAbsolutePath() + except Exception: # noqa: BLE001 + documents_dir = "/storage/emulated/0/Documents" + + return documents_dir + + +@lru_cache(maxsize=1) +def _android_downloads_folder() -> str: + """:return: downloads folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + downloads_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath() + except Exception: # noqa: BLE001 + downloads_dir = "/storage/emulated/0/Downloads" + + return downloads_dir + + +@lru_cache(maxsize=1) +def _android_pictures_folder() -> str: + """:return: pictures folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + pictures_dir: str = context.getExternalFilesDir(environment.DIRECTORY_PICTURES).getAbsolutePath() + except Exception: # noqa: BLE001 + pictures_dir = "/storage/emulated/0/Pictures" + + return pictures_dir + + +@lru_cache(maxsize=1) +def _android_videos_folder() -> str: + """:return: videos folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + videos_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DCIM).getAbsolutePath() + except Exception: # noqa: BLE001 + videos_dir = "/storage/emulated/0/DCIM/Camera" + + return videos_dir + + +@lru_cache(maxsize=1) +def _android_music_folder() -> str: + """:return: music folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + music_dir: str = context.getExternalFilesDir(environment.DIRECTORY_MUSIC).getAbsolutePath() + except Exception: # noqa: BLE001 + music_dir = "/storage/emulated/0/Music" + + return music_dir + + +__all__ = [ + "Android", +] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py new file mode 100644 index 0000000..251600e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py @@ -0,0 +1,299 @@ +"""Base API.""" + +from __future__ import annotations + +import os +from abc import ABC, abstractmethod +from pathlib import Path +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from collections.abc import Iterator + from typing import Literal + + +class PlatformDirsABC(ABC): # noqa: PLR0904 + """Abstract base class for platform directories.""" + + def __init__( # noqa: PLR0913, PLR0917 + self, + appname: str | None = None, + appauthor: str | Literal[False] | None = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + multipath: bool = False, # noqa: FBT001, FBT002 + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 + ) -> None: + """ + Create a new platform directory. + + :param appname: See `appname`. + :param appauthor: See `appauthor`. + :param version: See `version`. + :param roaming: See `roaming`. + :param multipath: See `multipath`. + :param opinion: See `opinion`. + :param ensure_exists: See `ensure_exists`. + + """ + self.appname = appname #: The name of application. + self.appauthor = appauthor + """ + The name of the app author or distributing body for this application. + + Typically, it is the owning company name. Defaults to `appname`. You may pass ``False`` to disable it. + + """ + self.version = version + """ + An optional version path element to append to the path. + + You might want to use this if you want multiple versions of your app to be able to run independently. If used, + this would typically be ``.``. + + """ + self.roaming = roaming + """ + Whether to use the roaming appdata directory on Windows. + + That means that for users on a Windows network setup for roaming profiles, this user data will be synced on + login (see + `here `_). + + """ + self.multipath = multipath + """ + An optional parameter which indicates that the entire list of data dirs should be returned. + + By default, the first item would only be returned. + + """ + self.opinion = opinion #: A flag to indicating to use opinionated values. + self.ensure_exists = ensure_exists + """ + Optionally create the directory (and any missing parents) upon access if it does not exist. + + By default, no directories are created. + + """ + + def _append_app_name_and_version(self, *base: str) -> str: + params = list(base[1:]) + if self.appname: + params.append(self.appname) + if self.version: + params.append(self.version) + path = os.path.join(base[0], *params) # noqa: PTH118 + self._optionally_create_directory(path) + return path + + def _optionally_create_directory(self, path: str) -> None: + if self.ensure_exists: + Path(path).mkdir(parents=True, exist_ok=True) + + def _first_item_as_path_if_multipath(self, directory: str) -> Path: + if self.multipath: + # If multipath is True, the first path is returned. + directory = directory.partition(os.pathsep)[0] + return Path(directory) + + @property + @abstractmethod + def user_data_dir(self) -> str: + """:return: data directory tied to the user""" + + @property + @abstractmethod + def site_data_dir(self) -> str: + """:return: data directory shared by users""" + + @property + @abstractmethod + def user_config_dir(self) -> str: + """:return: config directory tied to the user""" + + @property + @abstractmethod + def site_config_dir(self) -> str: + """:return: config directory shared by the users""" + + @property + @abstractmethod + def user_cache_dir(self) -> str: + """:return: cache directory tied to the user""" + + @property + @abstractmethod + def site_cache_dir(self) -> str: + """:return: cache directory shared by users""" + + @property + @abstractmethod + def user_state_dir(self) -> str: + """:return: state directory tied to the user""" + + @property + @abstractmethod + def user_log_dir(self) -> str: + """:return: log directory tied to the user""" + + @property + @abstractmethod + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user""" + + @property + @abstractmethod + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user""" + + @property + @abstractmethod + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user""" + + @property + @abstractmethod + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user""" + + @property + @abstractmethod + def user_music_dir(self) -> str: + """:return: music directory tied to the user""" + + @property + @abstractmethod + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user""" + + @property + @abstractmethod + def user_runtime_dir(self) -> str: + """:return: runtime directory tied to the user""" + + @property + @abstractmethod + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users""" + + @property + def user_data_path(self) -> Path: + """:return: data path tied to the user""" + return Path(self.user_data_dir) + + @property + def site_data_path(self) -> Path: + """:return: data path shared by users""" + return Path(self.site_data_dir) + + @property + def user_config_path(self) -> Path: + """:return: config path tied to the user""" + return Path(self.user_config_dir) + + @property + def site_config_path(self) -> Path: + """:return: config path shared by the users""" + return Path(self.site_config_dir) + + @property + def user_cache_path(self) -> Path: + """:return: cache path tied to the user""" + return Path(self.user_cache_dir) + + @property + def site_cache_path(self) -> Path: + """:return: cache path shared by users""" + return Path(self.site_cache_dir) + + @property + def user_state_path(self) -> Path: + """:return: state path tied to the user""" + return Path(self.user_state_dir) + + @property + def user_log_path(self) -> Path: + """:return: log path tied to the user""" + return Path(self.user_log_dir) + + @property + def user_documents_path(self) -> Path: + """:return: documents a path tied to the user""" + return Path(self.user_documents_dir) + + @property + def user_downloads_path(self) -> Path: + """:return: downloads path tied to the user""" + return Path(self.user_downloads_dir) + + @property + def user_pictures_path(self) -> Path: + """:return: pictures path tied to the user""" + return Path(self.user_pictures_dir) + + @property + def user_videos_path(self) -> Path: + """:return: videos path tied to the user""" + return Path(self.user_videos_dir) + + @property + def user_music_path(self) -> Path: + """:return: music path tied to the user""" + return Path(self.user_music_dir) + + @property + def user_desktop_path(self) -> Path: + """:return: desktop path tied to the user""" + return Path(self.user_desktop_dir) + + @property + def user_runtime_path(self) -> Path: + """:return: runtime path tied to the user""" + return Path(self.user_runtime_dir) + + @property + def site_runtime_path(self) -> Path: + """:return: runtime path shared by users""" + return Path(self.site_runtime_dir) + + def iter_config_dirs(self) -> Iterator[str]: + """:yield: all user and site configuration directories.""" + yield self.user_config_dir + yield self.site_config_dir + + def iter_data_dirs(self) -> Iterator[str]: + """:yield: all user and site data directories.""" + yield self.user_data_dir + yield self.site_data_dir + + def iter_cache_dirs(self) -> Iterator[str]: + """:yield: all user and site cache directories.""" + yield self.user_cache_dir + yield self.site_cache_dir + + def iter_runtime_dirs(self) -> Iterator[str]: + """:yield: all user and site runtime directories.""" + yield self.user_runtime_dir + yield self.site_runtime_dir + + def iter_config_paths(self) -> Iterator[Path]: + """:yield: all user and site configuration paths.""" + for path in self.iter_config_dirs(): + yield Path(path) + + def iter_data_paths(self) -> Iterator[Path]: + """:yield: all user and site data paths.""" + for path in self.iter_data_dirs(): + yield Path(path) + + def iter_cache_paths(self) -> Iterator[Path]: + """:yield: all user and site cache paths.""" + for path in self.iter_cache_dirs(): + yield Path(path) + + def iter_runtime_paths(self) -> Iterator[Path]: + """:yield: all user and site runtime paths.""" + for path in self.iter_runtime_dirs(): + yield Path(path) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py new file mode 100644 index 0000000..30ab368 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py @@ -0,0 +1,146 @@ +"""macOS.""" + +from __future__ import annotations + +import os.path +import sys +from typing import TYPE_CHECKING + +from .api import PlatformDirsABC + +if TYPE_CHECKING: + from pathlib import Path + + +class MacOS(PlatformDirsABC): + """ + Platform directories for the macOS operating system. + + Follows the guidance from + `Apple documentation `_. + Makes use of the `appname `, + `version `, + `ensure_exists `. + + """ + + @property + def user_data_dir(self) -> str: + """:return: data directory tied to the user, e.g. ``~/Library/Application Support/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Application Support")) # noqa: PTH111 + + @property + def site_data_dir(self) -> str: + """ + :return: data directory shared by users, e.g. ``/Library/Application Support/$appname/$version``. + If we're using a Python binary managed by `Homebrew `_, the directory + will be under the Homebrew prefix, e.g. ``$homebrew_prefix/share/$appname/$version``. + If `multipath ` is enabled, and we're in Homebrew, + the response is a multi-path string separated by ":", e.g. + ``$homebrew_prefix/share/$appname/$version:/Library/Application Support/$appname/$version`` + """ + is_homebrew = "/opt/python" in sys.prefix + homebrew_prefix = sys.prefix.split("/opt/python")[0] if is_homebrew else "" + path_list = [self._append_app_name_and_version(f"{homebrew_prefix}/share")] if is_homebrew else [] + path_list.append(self._append_app_name_and_version("/Library/Application Support")) + if self.multipath: + return os.pathsep.join(path_list) + return path_list[0] + + @property + def site_data_path(self) -> Path: + """:return: data path shared by users. Only return the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_data_dir) + + @property + def user_config_dir(self) -> str: + """:return: config directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def site_config_dir(self) -> str: + """:return: config directory shared by the users, same as `site_data_dir`""" + return self.site_data_dir + + @property + def user_cache_dir(self) -> str: + """:return: cache directory tied to the user, e.g. ``~/Library/Caches/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches")) # noqa: PTH111 + + @property + def site_cache_dir(self) -> str: + """ + :return: cache directory shared by users, e.g. ``/Library/Caches/$appname/$version``. + If we're using a Python binary managed by `Homebrew `_, the directory + will be under the Homebrew prefix, e.g. ``$homebrew_prefix/var/cache/$appname/$version``. + If `multipath ` is enabled, and we're in Homebrew, + the response is a multi-path string separated by ":", e.g. + ``$homebrew_prefix/var/cache/$appname/$version:/Library/Caches/$appname/$version`` + """ + is_homebrew = "/opt/python" in sys.prefix + homebrew_prefix = sys.prefix.split("/opt/python")[0] if is_homebrew else "" + path_list = [self._append_app_name_and_version(f"{homebrew_prefix}/var/cache")] if is_homebrew else [] + path_list.append(self._append_app_name_and_version("/Library/Caches")) + if self.multipath: + return os.pathsep.join(path_list) + return path_list[0] + + @property + def site_cache_path(self) -> Path: + """:return: cache path shared by users. Only return the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_cache_dir) + + @property + def user_state_dir(self) -> str: + """:return: state directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_log_dir(self) -> str: + """:return: log directory tied to the user, e.g. ``~/Library/Logs/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Logs")) # noqa: PTH111 + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user, e.g. ``~/Documents``""" + return os.path.expanduser("~/Documents") # noqa: PTH111 + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user, e.g. ``~/Downloads``""" + return os.path.expanduser("~/Downloads") # noqa: PTH111 + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user, e.g. ``~/Pictures``""" + return os.path.expanduser("~/Pictures") # noqa: PTH111 + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user, e.g. ``~/Movies``""" + return os.path.expanduser("~/Movies") # noqa: PTH111 + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user, e.g. ``~/Music``""" + return os.path.expanduser("~/Music") # noqa: PTH111 + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user, e.g. ``~/Desktop``""" + return os.path.expanduser("~/Desktop") # noqa: PTH111 + + @property + def user_runtime_dir(self) -> str: + """:return: runtime directory tied to the user, e.g. ``~/Library/Caches/TemporaryItems/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches/TemporaryItems")) # noqa: PTH111 + + @property + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users, same as `user_runtime_dir`""" + return self.user_runtime_dir + + +__all__ = [ + "MacOS", +] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py new file mode 100644 index 0000000..fc75d8d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py @@ -0,0 +1,272 @@ +"""Unix.""" + +from __future__ import annotations + +import os +import sys +from configparser import ConfigParser +from pathlib import Path +from typing import TYPE_CHECKING, NoReturn + +from .api import PlatformDirsABC + +if TYPE_CHECKING: + from collections.abc import Iterator + +if sys.platform == "win32": + + def getuid() -> NoReturn: + msg = "should only be used on Unix" + raise RuntimeError(msg) + +else: + from os import getuid + + +class Unix(PlatformDirsABC): # noqa: PLR0904 + """ + On Unix/Linux, we follow the `XDG Basedir Spec `_. + + The spec allows overriding directories with environment variables. The examples shown are the default values, + alongside the name of the environment variable that overrides them. Makes use of the `appname + `, `version `, `multipath + `, `opinion `, `ensure_exists + `. + + """ + + @property + def user_data_dir(self) -> str: + """ + :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or + ``$XDG_DATA_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_DATA_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.local/share") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def _site_data_dirs(self) -> list[str]: + path = os.environ.get("XDG_DATA_DIRS", "") + if not path.strip(): + path = f"/usr/local/share{os.pathsep}/usr/share" + return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)] + + @property + def site_data_dir(self) -> str: + """ + :return: data directories shared by users (if `multipath ` is + enabled and ``XDG_DATA_DIRS`` is set and a multi path the response is also a multi path separated by the + OS path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version`` + """ + # XDG default for $XDG_DATA_DIRS; only first, if multipath is False + dirs = self._site_data_dirs + if not self.multipath: + return dirs[0] + return os.pathsep.join(dirs) + + @property + def user_config_dir(self) -> str: + """ + :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or + ``$XDG_CONFIG_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_CONFIG_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.config") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def _site_config_dirs(self) -> list[str]: + path = os.environ.get("XDG_CONFIG_DIRS", "") + if not path.strip(): + path = "/etc/xdg" + return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)] + + @property + def site_config_dir(self) -> str: + """ + :return: config directories shared by users (if `multipath ` + is enabled and ``XDG_CONFIG_DIRS`` is set and a multi path the response is also a multi path separated by + the OS path separator), e.g. ``/etc/xdg/$appname/$version`` + """ + # XDG default for $XDG_CONFIG_DIRS only first, if multipath is False + dirs = self._site_config_dirs + if not self.multipath: + return dirs[0] + return os.pathsep.join(dirs) + + @property + def user_cache_dir(self) -> str: + """ + :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or + ``~/$XDG_CACHE_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_CACHE_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.cache") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def site_cache_dir(self) -> str: + """:return: cache directory shared by users, e.g. ``/var/cache/$appname/$version``""" + return self._append_app_name_and_version("/var/cache") + + @property + def user_state_dir(self) -> str: + """ + :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or + ``$XDG_STATE_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_STATE_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.local/state") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def user_log_dir(self) -> str: + """:return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in it""" + path = self.user_state_dir + if self.opinion: + path = os.path.join(path, "log") # noqa: PTH118 + self._optionally_create_directory(path) + return path + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user, e.g. ``~/Documents``""" + return _get_user_media_dir("XDG_DOCUMENTS_DIR", "~/Documents") + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user, e.g. ``~/Downloads``""" + return _get_user_media_dir("XDG_DOWNLOAD_DIR", "~/Downloads") + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user, e.g. ``~/Pictures``""" + return _get_user_media_dir("XDG_PICTURES_DIR", "~/Pictures") + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user, e.g. ``~/Videos``""" + return _get_user_media_dir("XDG_VIDEOS_DIR", "~/Videos") + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user, e.g. ``~/Music``""" + return _get_user_media_dir("XDG_MUSIC_DIR", "~/Music") + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user, e.g. ``~/Desktop``""" + return _get_user_media_dir("XDG_DESKTOP_DIR", "~/Desktop") + + @property + def user_runtime_dir(self) -> str: + """ + :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or + ``$XDG_RUNTIME_DIR/$appname/$version``. + + For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/user/$(id -u)/$appname/$version`` if + exists, otherwise ``/tmp/runtime-$(id -u)/$appname/$version``, if``$XDG_RUNTIME_DIR`` + is not set. + """ + path = os.environ.get("XDG_RUNTIME_DIR", "") + if not path.strip(): + if sys.platform.startswith(("freebsd", "openbsd", "netbsd")): + path = f"/var/run/user/{getuid()}" + if not Path(path).exists(): + path = f"/tmp/runtime-{getuid()}" # noqa: S108 + else: + path = f"/run/user/{getuid()}" + return self._append_app_name_and_version(path) + + @property + def site_runtime_dir(self) -> str: + """ + :return: runtime directory shared by users, e.g. ``/run/$appname/$version`` or \ + ``$XDG_RUNTIME_DIR/$appname/$version``. + + Note that this behaves almost exactly like `user_runtime_dir` if ``$XDG_RUNTIME_DIR`` is set, but will + fall back to paths associated to the root user instead of a regular logged-in user if it's not set. + + If you wish to ensure that a logged-in root user path is returned e.g. ``/run/user/0``, use `user_runtime_dir` + instead. + + For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/$appname/$version`` if ``$XDG_RUNTIME_DIR`` is not set. + """ + path = os.environ.get("XDG_RUNTIME_DIR", "") + if not path.strip(): + if sys.platform.startswith(("freebsd", "openbsd", "netbsd")): + path = "/var/run" + else: + path = "/run" + return self._append_app_name_and_version(path) + + @property + def site_data_path(self) -> Path: + """:return: data path shared by users. Only return the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_data_dir) + + @property + def site_config_path(self) -> Path: + """:return: config path shared by the users, returns the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_config_dir) + + @property + def site_cache_path(self) -> Path: + """:return: cache path shared by users. Only return the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_cache_dir) + + def iter_config_dirs(self) -> Iterator[str]: + """:yield: all user and site configuration directories.""" + yield self.user_config_dir + yield from self._site_config_dirs + + def iter_data_dirs(self) -> Iterator[str]: + """:yield: all user and site data directories.""" + yield self.user_data_dir + yield from self._site_data_dirs + + +def _get_user_media_dir(env_var: str, fallback_tilde_path: str) -> str: + media_dir = _get_user_dirs_folder(env_var) + if media_dir is None: + media_dir = os.environ.get(env_var, "").strip() + if not media_dir: + media_dir = os.path.expanduser(fallback_tilde_path) # noqa: PTH111 + + return media_dir + + +def _get_user_dirs_folder(key: str) -> str | None: + """ + Return directory from user-dirs.dirs config file. + + See https://freedesktop.org/wiki/Software/xdg-user-dirs/. + + """ + user_dirs_config_path = Path(Unix().user_config_dir) / "user-dirs.dirs" + if user_dirs_config_path.exists(): + parser = ConfigParser() + + with user_dirs_config_path.open() as stream: + # Add fake section header, so ConfigParser doesn't complain + parser.read_string(f"[top]\n{stream.read()}") + + if key not in parser["top"]: + return None + + path = parser["top"][key].strip('"') + # Handle relative home paths + return path.replace("$HOME", os.path.expanduser("~")) # noqa: PTH111 + + return None + + +__all__ = [ + "Unix", +] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py new file mode 100644 index 0000000..3575282 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py @@ -0,0 +1,34 @@ +# file generated by setuptools-scm +# don't change, don't track in version control + +__all__ = [ + "__version__", + "__version_tuple__", + "version", + "version_tuple", + "__commit_id__", + "commit_id", +] + +TYPE_CHECKING = False +if TYPE_CHECKING: + from typing import Tuple + from typing import Union + + VERSION_TUPLE = Tuple[Union[int, str], ...] + COMMIT_ID = Union[str, None] +else: + VERSION_TUPLE = object + COMMIT_ID = object + +version: str +__version__: str +__version_tuple__: VERSION_TUPLE +version_tuple: VERSION_TUPLE +commit_id: COMMIT_ID +__commit_id__: COMMIT_ID + +__version__ = version = '4.5.0' +__version_tuple__ = version_tuple = (4, 5, 0) + +__commit_id__ = commit_id = None diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py new file mode 100644 index 0000000..d7bc960 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py @@ -0,0 +1,272 @@ +"""Windows.""" + +from __future__ import annotations + +import os +import sys +from functools import lru_cache +from typing import TYPE_CHECKING + +from .api import PlatformDirsABC + +if TYPE_CHECKING: + from collections.abc import Callable + + +class Windows(PlatformDirsABC): + """ + `MSDN on where to store app data files `_. + + Makes use of the `appname `, `appauthor + `, `version `, `roaming + `, `opinion `, `ensure_exists + `. + + """ + + @property + def user_data_dir(self) -> str: + """ + :return: data directory tied to the user, e.g. + ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname`` (not roaming) or + ``%USERPROFILE%\\AppData\\Roaming\\$appauthor\\$appname`` (roaming) + """ + const = "CSIDL_APPDATA" if self.roaming else "CSIDL_LOCAL_APPDATA" + path = os.path.normpath(get_win_folder(const)) + return self._append_parts(path) + + def _append_parts(self, path: str, *, opinion_value: str | None = None) -> str: + params = [] + if self.appname: + if self.appauthor is not False: + author = self.appauthor or self.appname + params.append(author) + params.append(self.appname) + if opinion_value is not None and self.opinion: + params.append(opinion_value) + if self.version: + params.append(self.version) + path = os.path.join(path, *params) # noqa: PTH118 + self._optionally_create_directory(path) + return path + + @property + def site_data_dir(self) -> str: + """:return: data directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname``""" + path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA")) + return self._append_parts(path) + + @property + def user_config_dir(self) -> str: + """:return: config directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def site_config_dir(self) -> str: + """:return: config directory shared by the users, same as `site_data_dir`""" + return self.site_data_dir + + @property + def user_cache_dir(self) -> str: + """ + :return: cache directory tied to the user (if opinionated with ``Cache`` folder within ``$appname``) e.g. + ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname\\Cache\\$version`` + """ + path = os.path.normpath(get_win_folder("CSIDL_LOCAL_APPDATA")) + return self._append_parts(path, opinion_value="Cache") + + @property + def site_cache_dir(self) -> str: + """:return: cache directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname\\Cache\\$version``""" + path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA")) + return self._append_parts(path, opinion_value="Cache") + + @property + def user_state_dir(self) -> str: + """:return: state directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_log_dir(self) -> str: + """:return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``Logs`` in it""" + path = self.user_data_dir + if self.opinion: + path = os.path.join(path, "Logs") # noqa: PTH118 + self._optionally_create_directory(path) + return path + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user e.g. ``%USERPROFILE%\\Documents``""" + return os.path.normpath(get_win_folder("CSIDL_PERSONAL")) + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user e.g. ``%USERPROFILE%\\Downloads``""" + return os.path.normpath(get_win_folder("CSIDL_DOWNLOADS")) + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user e.g. ``%USERPROFILE%\\Pictures``""" + return os.path.normpath(get_win_folder("CSIDL_MYPICTURES")) + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user e.g. ``%USERPROFILE%\\Videos``""" + return os.path.normpath(get_win_folder("CSIDL_MYVIDEO")) + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user e.g. ``%USERPROFILE%\\Music``""" + return os.path.normpath(get_win_folder("CSIDL_MYMUSIC")) + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user, e.g. ``%USERPROFILE%\\Desktop``""" + return os.path.normpath(get_win_folder("CSIDL_DESKTOPDIRECTORY")) + + @property + def user_runtime_dir(self) -> str: + """ + :return: runtime directory tied to the user, e.g. + ``%USERPROFILE%\\AppData\\Local\\Temp\\$appauthor\\$appname`` + """ + path = os.path.normpath(os.path.join(get_win_folder("CSIDL_LOCAL_APPDATA"), "Temp")) # noqa: PTH118 + return self._append_parts(path) + + @property + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users, same as `user_runtime_dir`""" + return self.user_runtime_dir + + +def get_win_folder_from_env_vars(csidl_name: str) -> str: + """Get folder from environment variables.""" + result = get_win_folder_if_csidl_name_not_env_var(csidl_name) + if result is not None: + return result + + env_var_name = { + "CSIDL_APPDATA": "APPDATA", + "CSIDL_COMMON_APPDATA": "ALLUSERSPROFILE", + "CSIDL_LOCAL_APPDATA": "LOCALAPPDATA", + }.get(csidl_name) + if env_var_name is None: + msg = f"Unknown CSIDL name: {csidl_name}" + raise ValueError(msg) + result = os.environ.get(env_var_name) + if result is None: + msg = f"Unset environment variable: {env_var_name}" + raise ValueError(msg) + return result + + +def get_win_folder_if_csidl_name_not_env_var(csidl_name: str) -> str | None: + """Get a folder for a CSIDL name that does not exist as an environment variable.""" + if csidl_name == "CSIDL_PERSONAL": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Documents") # noqa: PTH118 + + if csidl_name == "CSIDL_DOWNLOADS": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Downloads") # noqa: PTH118 + + if csidl_name == "CSIDL_MYPICTURES": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Pictures") # noqa: PTH118 + + if csidl_name == "CSIDL_MYVIDEO": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Videos") # noqa: PTH118 + + if csidl_name == "CSIDL_MYMUSIC": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Music") # noqa: PTH118 + return None + + +def get_win_folder_from_registry(csidl_name: str) -> str: + """ + Get folder from the registry. + + This is a fallback technique at best. I'm not sure if using the registry for these guarantees us the correct answer + for all CSIDL_* names. + + """ + shell_folder_name = { + "CSIDL_APPDATA": "AppData", + "CSIDL_COMMON_APPDATA": "Common AppData", + "CSIDL_LOCAL_APPDATA": "Local AppData", + "CSIDL_PERSONAL": "Personal", + "CSIDL_DOWNLOADS": "{374DE290-123F-4565-9164-39C4925E467B}", + "CSIDL_MYPICTURES": "My Pictures", + "CSIDL_MYVIDEO": "My Video", + "CSIDL_MYMUSIC": "My Music", + }.get(csidl_name) + if shell_folder_name is None: + msg = f"Unknown CSIDL name: {csidl_name}" + raise ValueError(msg) + if sys.platform != "win32": # only needed for mypy type checker to know that this code runs only on Windows + raise NotImplementedError + import winreg # noqa: PLC0415 + + key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders") + directory, _ = winreg.QueryValueEx(key, shell_folder_name) + return str(directory) + + +def get_win_folder_via_ctypes(csidl_name: str) -> str: + """Get folder with ctypes.""" + # There is no 'CSIDL_DOWNLOADS'. + # Use 'CSIDL_PROFILE' (40) and append the default folder 'Downloads' instead. + # https://learn.microsoft.com/en-us/windows/win32/shell/knownfolderid + + import ctypes # noqa: PLC0415 + + csidl_const = { + "CSIDL_APPDATA": 26, + "CSIDL_COMMON_APPDATA": 35, + "CSIDL_LOCAL_APPDATA": 28, + "CSIDL_PERSONAL": 5, + "CSIDL_MYPICTURES": 39, + "CSIDL_MYVIDEO": 14, + "CSIDL_MYMUSIC": 13, + "CSIDL_DOWNLOADS": 40, + "CSIDL_DESKTOPDIRECTORY": 16, + }.get(csidl_name) + if csidl_const is None: + msg = f"Unknown CSIDL name: {csidl_name}" + raise ValueError(msg) + + buf = ctypes.create_unicode_buffer(1024) + windll = getattr(ctypes, "windll") # noqa: B009 # using getattr to avoid false positive with mypy type checker + windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf) + + # Downgrade to short path name if it has high-bit chars. + if any(ord(c) > 255 for c in buf): # noqa: PLR2004 + buf2 = ctypes.create_unicode_buffer(1024) + if windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024): + buf = buf2 + + if csidl_name == "CSIDL_DOWNLOADS": + return os.path.join(buf.value, "Downloads") # noqa: PTH118 + + return buf.value + + +def _pick_get_win_folder() -> Callable[[str], str]: + try: + import ctypes # noqa: PLC0415 + except ImportError: + pass + else: + if hasattr(ctypes, "windll"): + return get_win_folder_via_ctypes + try: + import winreg # noqa: PLC0415, F401 + except ImportError: + return get_win_folder_from_env_vars + else: + return get_win_folder_from_registry + + +get_win_folder = lru_cache(maxsize=None)(_pick_get_win_folder()) + +__all__ = [ + "Windows", +] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE new file mode 100644 index 0000000..446a1a8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE @@ -0,0 +1,25 @@ +Copyright (c) 2006-2022 by the respective authors (see AUTHORS file). +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py new file mode 100644 index 0000000..cb229c9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py @@ -0,0 +1,82 @@ +""" + Pygments + ~~~~~~~~ + + Pygments is a syntax highlighting package written in Python. + + It is a generic syntax highlighter for general use in all kinds of software + such as forum systems, wikis or other applications that need to prettify + source code. Highlights are: + + * a wide range of common languages and markup formats is supported + * special attention is paid to details, increasing quality by a fair amount + * support for new languages and formats are added easily + * a number of output formats, presently HTML, LaTeX, RTF, SVG, all image + formats that PIL supports, and ANSI sequences + * it is usable as a command-line tool and as a library + * ... and it highlights even Brainfuck! + + The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``. + + .. _Pygments master branch: + https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" +from io import StringIO, BytesIO + +__version__ = '2.19.2' +__docformat__ = 'restructuredtext' + +__all__ = ['lex', 'format', 'highlight'] + + +def lex(code, lexer): + """ + Lex `code` with the `lexer` (must be a `Lexer` instance) + and return an iterable of tokens. Currently, this only calls + `lexer.get_tokens()`. + """ + try: + return lexer.get_tokens(code) + except TypeError: + # Heuristic to catch a common mistake. + from pip._vendor.pygments.lexer import RegexLexer + if isinstance(lexer, type) and issubclass(lexer, RegexLexer): + raise TypeError('lex() argument must be a lexer instance, ' + 'not a class') + raise + + +def format(tokens, formatter, outfile=None): # pylint: disable=redefined-builtin + """ + Format ``tokens`` (an iterable of tokens) with the formatter ``formatter`` + (a `Formatter` instance). + + If ``outfile`` is given and a valid file object (an object with a + ``write`` method), the result will be written to it, otherwise it + is returned as a string. + """ + try: + if not outfile: + realoutfile = getattr(formatter, 'encoding', None) and BytesIO() or StringIO() + formatter.format(tokens, realoutfile) + return realoutfile.getvalue() + else: + formatter.format(tokens, outfile) + except TypeError: + # Heuristic to catch a common mistake. + from pip._vendor.pygments.formatter import Formatter + if isinstance(formatter, type) and issubclass(formatter, Formatter): + raise TypeError('format() argument must be a formatter instance, ' + 'not a class') + raise + + +def highlight(code, lexer, formatter, outfile=None): + """ + This is the most high-level highlighting function. It combines `lex` and + `format` in one function. + """ + return format(lex(code, lexer), formatter, outfile) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py new file mode 100644 index 0000000..a2e612f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py @@ -0,0 +1,17 @@ +""" + pygments.__main__ + ~~~~~~~~~~~~~~~~~ + + Main entry point for ``python -m pygments``. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import sys +from pip._vendor.pygments.cmdline import main + +try: + sys.exit(main(sys.argv)) +except KeyboardInterrupt: + sys.exit(1) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6fc5dc5e21b85812dc09c330a2579c5df21f0b9 GIT binary patch literal 3502 zcmaJ@Uu+b|8Q;A-+vhv~p*B#(P#B;D4(vN{NdY$?8A5^;2N36`>Gk1my*s{JytjLq znZ-WKR0!pvkEvRTJR}mTA~h9#$YUN8wQqfa*cEie18UWWzR@^RD_+{)H+y?WQ@0~~ zZgytpoA3Mf_xsKFhvDIzfwm|8ug0(QhVd7ANLs2h*gB8FUBfXdhGRM@&upeDsb;#8 zHVr3T$vBxxU)^x}eq~nro&NWX%7Bw|vhSIdEPe;^JJ=p5HOlaKV-W!Su4_u~2d{VR;@~c6~>(V2R0KNv&9dYma1TH<%@9Q`m$xsd!UPvK4n3 zF2Yct8Zc?KTApiL$_;$URKrrt=iFf`U@gIwa+lh%u^<#SXLjK5BD>Z+k#t?68mmwd9G@+#Wq}6vRnk!3_@Qe_G0@wc|KqHhChiT z2!vUVgV4#U7e`Go`C)Src|trvs9K>)T%V)_NqFeB+2w_|<|o;_wZPw*WY-s7pJe5? z-d((u&uo zJlE&=P60B7&3egm7lkDf-;2efUV@1(5GCU`fxQdDa{Z;yUOo_iyoCm5wFKSxM!P#mktf5p(&Xh`Z z7!4PT2(HxXu&g(*gxzp&@>1+ram{TV;`REu#Pk%-jN_QGgH~G*<7U{!WXPsZocR9K z^oi+L2qHjz*ITBz)tp4mIh+0A!sV;i%SG+i3@E{U$!FMw@@w(>{M^M$SIU<(iaH=H z=Ke-9Q%FVGvJybz+|_8{LR)b;cXh3Qx_I(zaXQ)okSGz_DiqvNd{q_FQQG6HQGblQ zXt4Wj>_oN5Y9Id7_}}^v-CbkQST}E&7=ELz8}~c2W#f>cx)#1`h!Ql8G!J@rD`gsL zFxk3pDy^LKe800pd|M6o*4I7>o`RaPT` zs6hvS5K43nk#bREN1LHkY!L`%HM~bt8aV)ZL2o7qLvKO>MFZghKMggoP6f;O6h(G1 z6hgCY5|&B9d=SqDCS#_=Cl%{lRpT8;3qT=>wxAFTW|X_m>wHz8zIFLCd_ z>$#^L?m9Qg{6G=sJWI;LK$Pp*j|LaoEq+OeKtvNQw^giySWX~{34Dv%l%P~cITuO= z1|i-kqp*)=WVjgHO-C8ZTh!OvAt~!{{<&9L3Bh2H* z@;bWP#QnL!)y4g~Nr=AR*|BPh9B|#;f4^g8)s!?(wscG8Z>7PZfn>J#yKbzf6TF)k z-{>->_fBG?Og!A)Mwc_D(N2MjU5<6Qn07K=e{yE3gWF2`(iv*8u=F9d8Wl%mpveJY zr$AgsMZsn0Dfo$62O5$TP^eK{H5u12D=w8o@s*FmV=2L9uCGN1Fw{9#gD8vJHE{5J zB@u?fZd_|Wh{N7q8oDX@AM%io1|Sb8TZBNtXb1wPAgn}L%p(UO7en;8Z(F(Onisoi z;|O)5)a^i5=!^Q}4;c-1UyKGi8ISU)g}ly#-YyCK&=1JpIN2aKbax5^`Ezt2_SkUW z$e%`cKbbgiukcCbvz;3g=f9ko|NZITo&9p6vU%;Djcb*kz4>@(*Q24m4~O=C@bqU>M>fU_4~7a)Us(RpABU!1(1lk?7u=6`ZsuS9?aZg{=Pzv@fAjz8 z0ukZPY<6~^@kM@&`h90E>`vR1%cPM$QChc7pu21Il%b~rV6&MpW<3RFcl4o*J7BG) zVYWc`2mT0K%>Wk@UBOcxDkHB~DN$v)6#6z*phbq_9Hq%3N-n7{wHhHi#%%mKh!VJy zcyEthEu`YqljDVqAl?g#Q|zH`FFHx_^*&UV=Bay&)+W&1HondoLu0=@^uF`KrH!$J z_vSuX*~p)MkU71DRYY~Akc$SYRVT2k)hOi#G4RN2l&?bWg+vHg8rJW`?&1+!aC=s( zvFK}n(7C@c#D4r}*gVg^+6LoMtk5h(u;OWTj+xf>k f4&EOAbMENvfv@^U%#p2wyUmfWr~Aw^+T6bZC{)l{ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5cd5373fbb192582decca51a731727f5e9229ad1 GIT binary patch literal 748 zcmZ`$J8u&~5Z?7(uyF_k2?P=;R)iv!xI4!v6c$2qj3rwM;o(rkMb78j#a?nR?QZNG z1%if$kPuX9_ydTFpFmBCkfM{QsL}=8AUCk*M-m}1#mwx?eDlrBewmrc0wtHwpNnv&GBtMk@0GI)2xtHTNy>!{s4Q|*9%>*6PJ$Gm@KI(0JF+T{RA$I<6ivL3itD(A zAWF>xdg2P;=iz_*5p9BlU_&8#U<0UkbyrJe&EJHH<#_SF*$K zZB>C)HIHx@Fkj+_0msc|7|BlHW8FLK)@&LhM9~Sth_iM_7IAsv;zB-uT`%MdOSlzb z*`fIEcnU13?Onx!Qe1klUcGa_ZVZWwE_0|aXb~^hZ;kS+wQ^;xUKx%+sI-|YjO>1L zp|u>0wPcz70dGf`9O z06_?UrZQ0Lp966EJJ1g_1ZVfOQ%}n;s?Vyg*5A(WF1%ZKz4=X>`@NUG_zS>e>6iDO auOuyI2jYzC_U7^;_;jH(jXr0g(tiPx>Bxrw literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a99fe6d6f6e5e6d329fc6948c260f2eb5f11e49 GIT binary patch literal 2647 zcmbVN%WoS+7@vLF>sOk0nuNlV#-&agJI$kyv?@y51W?lOFugc{v-VD%jqP2tyG~*^ zMYe=QDv)YRm1=G&;y~3q{{R;xF0lxbS#gNODYwwvdMV%RZlVw~{RNOC7)mlS49lkDSz541hKFRggvV?sQW5^kxQAYnt4GkVxtqBq zyfk+4((rKBa%c}2onMpiK3 zaZpVFod)_GsH)4hD8v)Km;^rLZgMFNW5sk8a3-U!K%h(>o9?Wbf>Memn=FWm$)+^1 z0Cv8FRS(+Y3Jwp%0Ir1OM; zv{SRv3j;Wu-Wnq5tx@Fh98H?=qDbq9MGL|dqD_w#IiAJ^lQrb|~jZ+>_F;U{(9=q5Y*_l>e(U~P2M>QpIohhBqTCDAy1%pbQd6Qhn^`P{bcCF+J!Gp`I7P^->Ys z|04qbQV~4Qjqrl(?Snp){XgojQ7_UsR8Q|;_agb0_Wv`7&R~t+_ZUSXfAL2z>8ehv zTv#A?XkkHEk&Q(`v|FbD%_jm)Ojom55Di0<6L|yc6BBj^CFa&WBLobEblr^2vV0Tf zfTb}&NP#rDBVzmg#4YhbcRQ*yX!#hleUO$XE2%?%=CnS@a_1S0r_`VZ{}^Oa0~)D- zNyRlEtX99!$o&g3rc2D_;9YB{hyuH$$_g-9lAkt2ST1r@)>=xhuayB#d&eL0b=&%v%{o+RX#{FQ8tqyLnuQqI4 z>EB|z92#WqYIuu%z2OVoJAe0l<=mHVZn8aAW0(v1O?NylsmXZUWU!vJi|3O>Eo~p6 zZu&FiXS$E5Rg)>oIg=$SCTGd4HfePvtAyGcP(I7ORpO`o<*X{@Gx&-&2?Ej_bOz>K zhN7rHXr5ws+mXAe#BB5464&rImAF!(>}j;LS8mr^`T(WMP20_F6exWZ2TSvXl7H8QICqKqwXL&qdt>(J zwzE$VL;1=xrR(d#Mr%in+n~PoR3oLS_5Siqqph>nvC+5j>BCd??ohog1ngjWw!w1i tE#>L*sIfi1lj^mK^d}%ll_3BC literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..30a79b04d8a2fc9f327448b4a34b83ccb5acfbfd GIT binary patch literal 3240 zcmaJ@(Qg~K87EJ7lA_9XVkge#I5E?7n6<`|>mnKA)n3!YS%bA+F()k`U^}06C;Qy9 zP9snDq$z=s8CwEmTk^2U-8#&`^3Wg{us-#V7z#M`fMi-80_RT%v~vajx>XBhuKcis(1lYOJvpj$%0?5a(8hlm}F<7CYu-^KRGrrK5>FA zRHf}Z;r=Xetd-+TI1W2~@xq(m`~F;3Zae9@1*asON%qFvSvCIF`7<-Kb2F^ybJ#kt zTu)?EvxU$*=_AGpzgrVf{akC1t6GuTbR&5wR;Opl4_+YTlCF_@tghEd6s=3-dXG-( zWR7IC+AX>JMS&i>f~`2gl5exXXI8oFRhd;{E`-ZkfROmb&~pLf(#&Ea;NVY|oi8%a z`LV+ptg+~>I%xKFfk$7nxb4UlA%xOOh3`1?p@Xlva%(4CnsKM#fW2Vzvwq2$SHUTS z_bh$Zp?(#8J_psW>30bQl+?*Gm7`tNHLXq~uV(;BKY>{NMr&w4GYqh*l5djh#-Czq z^fsN%&}Lj6EE8)cRLg9}m48h`IwvsHjIBRi&aL_UeNnawj>yf;jJ>{cFQ>vrrAD+NeZR8 z5Mt$OGj7V8s2!GnrWz30*F3*qd15-NhWp`U;t*6{{F8jKPVNs3HKuP)Z+-2f!JUEe zd&%+7lH*TB8peM*c$9uXNA%yukJ8&DV{o7!i5wO@311w!$>UH7#1~`pjPX6tYW8%U zf%iZkt|>;Lf?YpPQ{$C~14B;;H8NKdf7^F(GqE+evv2fT{80?L9=@<|{p}XaC56t* z!aXI3m!Z)hL3<1?we#Z95K4dmkflfiJiRP+Vz;jv>~PIp1!ia;w#5O!AFKUc;_<9g z@VONL%OvRwereU=fnXLZR!W7y^#RN!WJHM3$w|e0P!;yNkQ$+GMXrXuAQa5=*BoB3 zgfl7}uXtS11BfjN1K=;?!Xh)-HbO(BdJt60&T+PCc@+mX4lTOp;oPe0c)+WU*;%>g zXhtsCOqu42)H2h|#Q0u_Ml)fWwqG#KW-{_DV>ESKp_w$zlC|Q%Sns*e>vK{mn~6ox zo*>|SA1nbhp+$i=6hb21836tj82Bpu#0jVX5d9>*_XcgGZl*r`;r8&@gTcd_*4FUO zVD|pN{>G`Br|$1R@HnB5$6G{CCms>qNbp{;EWoc_A~>{$p{qe00(k(kfKBr;$O(;j+~>Dr z{0K}`a)2BQrB7WtM_H)#gvTmMm|y}D==eH$(0g>J_tW6g5U#acaDzX5*aaLx#b~ZpcJ{ z!6!sMUe!PY55TnAU3ufD7l5HwAqe3C*sw8$cVh$dV~7TY8EG1EDnbVX;lO7@(W_?J z1!(MAqzx`71I-)Xk?d+kohgDW&Zbjq?U-+9rO`md8Bb%7bT z=r1W|;Y@6nBU@_2NJX2ixsWL<0bB4ZCA+P`nRqj?WC>KF=AH{6SrVwtJ*Fv%Y?=yX z5;PK0hhfQ1MoFO64tA?sn^fP%+24W+@Y^?dBiPLUwQux6|Dny`50^i$tX%C;V;5|&*AKWUEVA1p2f)wD*1MJIB>8rb#rR#z(?^v>z|}QPVWp% z-Ahh=mYh;Ah$}~5rhlXv{Z{;Cnn^t4Hb+MlrSUfZKd+H(l5!`ZAuweiuMH#lC{6b6 zUw`w79y2nnlx9pTddvBUL|`hafP8nzRHGz9j(2Ov)8uO^_f7L}fCU0mU;~~Zls?vy kRBsKYX#bO;9-8p0)@-~zW@LL literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b463be2fed71bd37eca1aaff806bb505274f6d1a GIT binary patch literal 4734 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 DE}0hV literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd8913ca9fb0cd9e9fccad61ba6072f1ddf37fac GIT binary patch literal 38450 zcmch=33waVohMj@8w5!3z9|(cUXUmrIxLB%WKp7SiLxU(i50s^hyW=_BtREHNrXX1 zaXcN;QLo8%5T`Nbcd~8u_RK`i>FM6D7ZBwkgjMgbXT3X}J-(4dW|AoV zb@umvuc`o0kYo3L+a>X#>eaiC|NZ{;*SWbl0qyRtoDtgz z+lc*yeI)lp?nvH=Joe5s>=?;Ekv~#!qF|)(MBzx$iK3C>6U8GXCra3R^Kj`%*@-ey z7!ur;KM_xq>jaN@dV|`?)UVt6uE?KGR3dE-(pDjDwcGZppuMTl3Ht=M{Z+x8>sj@# zUP-^2#pWT_;aUB?d@WvL@db!4^hjE4EsHHeY_X?Ki(SKFOAuT7F2;+l6ZNRS{$2hc zoM>Pv%8;Vm)2QWZVzCv7t<>^0yQ^LmPB__{YP_k@-mFE5Yqb*BxmO`w3rn{e=_D=P zdKOoUxH?a>WB4?38w^x6+38_9xbFXy33|Iyo){ zPkE%Lm1?A*$2HO-1w0<9``P3BkAC4;D=WWq*gN3y1w5V7u46s?{ow<<_w*jyBMtgx z$?XZcyu+yT7c@k@PF*tBH99&x-Z$tS4tnH3(zKV|IK^b)kSC}__njQ?^SMSmPGi!z zN0$9^(s0~!KA1EfMU&)Y&X-PkgPy>sYrvDt={xQ}^$3 zIZmTf7oZ*aU;pxlA>&wZaQ#+9&{F)}KMF#~L@^sTC{cp&kG~69c+^P`B5BM0?jL!o zjwh4|HBHA8Cp`lSa6meKQB_M+{3T&rbn1HlixMwf7cfrZ`2b~*9(vo**fVT$0&U0k ztUuhnYxDYJL5#-0`rR1QzHT+rWk-TIoagisiuK)uw? zER`bWlHd^llLdmufWvG=gWgcO=(X&_CiD@(#F$ zhsUJ>zwfL^4hE$De!h@AeKf!Q{gmUB-yM*!_WZ1z0PDXNf9{lb;FRPVKIa+_NU{eD z&nFEI`&~iltZNwSk8iC31+1_>5OQHN@I32)TMX;Z3UWbE?U)b-QmMeZca<1=?!t3W z0j`2@+K9&$S6B#(VO?0Sg0N!(W;SV0?~hY2=OGu?B=%U++}G#xoa^huXz51=0!ahy z)1>hvz)T=1y4m_8@FcH69=QcUs6ZRlRweT~LV}E zU*C&ku3_a3TI==?^!2fZ$hFAHvh&6@(<229_zTz(yeiz+>5Z199KErFC#2UI3rQW# zrGC6wxsXm6hJ+JF{F(4)#-GKlKVfz2PUPUvhCjR8fW?;UHX_V(n-DtOW`y}}3&H}o z&24>EJW=S*!BY`{y!ZgG3gdWQX@gfRMBB$spwaDV+UMM^_sUbjaI`lWM#M1Vc49+pYP6ueRe zdq}5TXHkAID0@$i0SHTD0gs!tXyBCJPr!?zjS+t!C;`&T{!!WM3VKqdO0-nmlHZ55 zE_?lB0cijg0}Q&9_P4gOeWq2>*(uR%vJ$YcI(`22Y?pMhm@KJX!(LjApFIO`k%y}I z99dW$gssvtW@*ZZ7oY&!=5v&c@$zFp#yOT|V^4sDVGK8JQW!aK%0D*j<`WV;=a*b= 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..694ba72d2f43f3e0e0a8f5c84431de62df2c147a GIT binary patch literal 1583 zcmZV;&rjP{_&wW6OcH*tw4_XW+Qx+0NGKDN7PX*2k+un?Q^R&hOCu+K2@a0q`Wa{< zGi6$*!Keh<1$N`uia%u+I;4$R9476=VNwP?_0oNIVyM_B`Fr1c-|t`kwX-vf0B-Vc zmj2-p`rEzuAhe0|M?mZ%1!a+f6;8uhtnekAvBlO7JPphH9K7)_)HZ0Hao_P~BqjN>!nns#EXv+p7@vo>PRW6+@%M7bb>mGHQ~M zyv(RVsyf*7c~ZQklq^(@nyHqStR$KBNis1${^{7n_{1d1*NC-5$ye<_h(+bf$AnQz zQeQ88e(!!J?)gq?YJuvECdo|ZZi_$v#q3-U1VLb$}Z;$*yy0GyN+#a z_S(1{xFP~q1^ZGNR6`P%K6RBO-ii42&zaN-GAf&eB_~iat1E`YIaqUWg}Gxv$ZIXJ zRyCKIAr~l1Wah@^Q!|re8B4a*!q_Z~LoTJuT8*hJ5nrYHYC==<38Q8$RrOEew3Ly5`HXkqvj0!za#FvnNbL406sPXsDVzz{y)UnOEI>0 z>qvaJk@_@OU3jc&k1cOCZ+ z{Pblr1dLZA>gwP5Y%jn6-cjf984?0FH}G*J`i$*NZq>J@PWnckUwi)e#f_uBiH%vO zyYKjV?B{T^1LT@f6zwrPAr1+jx`|7o6Uyb3Y9W_%I9L|A$eIS1P@!5e;Md`VzL~o} zb1ySzy199U@e+E0JTqRJuf^L?{S}Q)nFNH~nPVwHO&(+XFDGK*{2heDe?^85!yh(6 q%^>O?+{ka2H_J`L#{{?s#UHcZWzR!=cW)zd7Ugm5RkRzoBK;4bw~L+t literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aeed844f165682946e3a9406442398cbd19a9e8a GIT binary patch literal 2642 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 OR$TEij;;8p#^%2ifX=)C literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b1be29a4df0d148c699aad4434818e1a35c6ea6 GIT binary patch literal 4770 zcmdT|-ES1v6`$FivG)rv1@je?<|ce@uxAMg`LHOG0k<@wPJ|sLSe0hSGuOLg&(2Km zodxgKMW{lRU9|$lgN>33^{F5plJ=#^Q~rRy*m5OSD;_HKsc&FMs>Dls&YhiEdog{; zTd(lh`*H4>bMHClch2Q+J9cCwXamXrRQhw0^iLc_O>K8JhM}`0S<<9r$yUOVC*_3n z6Uj>6lq`iN9wkG*$)uQ7VYcT{qCKb76NO$wfnkO~^Xug*bpx((({NqN#N_p^mJzcP z6`K>so?-^86T9j=RO}=MVYE!=$dtjUMcQ&SGVWC=aSXRyGs=_;364EW$;Sq;IK*I- zP=nV=;1S4?DI=T~3F|x$z6(`lX+q9~~PXCDR@w77YyB;acWj=oMpT=o=xG+k=gr&{>kG zG%16lB`kR|39gfDrAJ-sqv;8_`^KdB)@8$n>$j(gunt%OmIxe-QNyf&M;Kr<)EQ14 zx>vw#n1*`*KLAG{RU0o;CgfU$zoO6j_5RH?4FGP+*%teS)UoUZ?(W;pGY zUR}35Q`a9#8>sj5*&=w&EcXqQ^5XdD(4~=cr-#M^Be2b(^PWZZ5!Z0)+~!5?Ds`_G z!JmtMJ*ar@+uB>Firfz95Nw`BpDp^fU(|uk@)$6Mfl`d@1!hvbfXttg%WLv%CVOTeOVXAQvwvo$)9ybCus8YBA3*s;cD08_8P6+DmxZq$p zx6H|L*9$|^^s2t?fH6D4!(T6mPnpS0T4NvoHhu$SNt&1EB|TmaV$ON_QQP}qy$x6r zKpc!>9x;k8QkqY|S_F%dg`@b�ZTdnk~UvDjK0DH-0G;MHCzc1Tw0^bBA#}0q!c? z_*%sV*W?wi=2&D3ph;Y()xB}rG0GfwT6Ef|IRPSK_vHzmcq7B(jTO=@#WDh;m2{}v z%3@cCUOA|=(mXI&paYDxl1Nmszoj?^4_c}SnO0h7R5vloATAY7o#~c>YBS-Fcx9jx z%fc_llI_}ot~YkJT|$dy4#7Gf0dhlnnvwP#SWteKelqaG<>2!V7L>oI_BRi_0#kj> z-Tm;BYVN^NrrEzA`I>?~(>yS+p!~j1xV;$x2uPIhl&HtXJ3zqj(hU4|H<*o$-C3Lc zxg?EC1-YS>CRmM@5MdBT+VK~|3(jpq9<7jIyFm*30g#6>+Ydh+Rcc>El6t(6jqU&j zZz01zAUC9cP# z^Jil34QG*FmDx}b`|3>WryUNlQvULos`;$Qi`*7jWH-U2za!OU@wvbqd|?i@m4fwm=e6H8EQg` zKYqcZ+&u<4)~i7{!sdcTK7pho5yH>g3cjWqn%p`Mq9mY z=n|pA_98c)+^fy(uI0n`wR_rX_V|;d$Nx0*$CrouUoNlak3P;1uI2|HOniCe;gzqIZ&Tl-*774OsgW0*5gk!D<8kN+XWSfrFo&%J ztd?Ap!BmNc6vSQNE|Z0WC%nXOo&;Va*e!ToX*{k6=Ze@zRz9lGs!#4T=+C4u9!(!HyiIk_H>&GN1$*5MM*$+#z_1Cr|j4 zK=pmkhBpy|It8vyJYC{jy9QF*dJlq7xVczdtUe~u2$wq{{Nss2Ul)L~*TArhAi+W- zL{D_24urN;p*KS(Y$ZW*OD!|6<`VC<+JrcQ64*7h#=$0R%9i z|9b;#|Nf;9?|dlg6~N{QZy)ChtGU91!(SF27QUMJ>t}!dY%O(MwrFGo| zf9JZ+u#)doZ!ew}Sg6mo7O~-s2|Gn8cSCCC2b!UoALkBXUWLKM#f$LsICpS0ckpSi z@>=GZr0mQ*m6UWwSPw54(^DZA>VP1{5R(~}V(b+pSVgo_KJ$Faf_j+Oj^Ki@jD|g| zB^g4Y5GuTyp$P;*SmZwfa#MPiP}S5%Urs%^elVd9KI@UPyKld}oV=gCmtD&ozHxqC z$*AY#_5F%kT+i)M``5LEx^E+;s-e0fF4x?^uF_G)JQmhE;=@~&d7e5G yzN61FEXc7^;KzVGP0F(TERmO$4I;^z?|KwDbvyT+1V8`o`HNKaxO6{bcFLk1;n2pdODLnb9{44X&kAsW)AAq#6Bva&GQ-0RtF1rs*>E%*hTUKS;c%9p+ViZ`o@FD2r8JIIs32D=dyuClC`zHZz0mzL1JOM}>YNmDgWLh00N}zL1LVg;WeVD)tvrv5F3@oHc%yU9InvV!4(Z za%rjjGq)l-u~N&G$WWD*&Ocd`Mw2yvPJf152qCT)aoLpsv#8b5`KP3pbed))VIM=; zmiZb4(LO zs!CP1n??5-AF`0;YZ!aJQ;1Di1HVO zvA{4Vv=8>S4IDnQt8EaC+i+VqH1Qvf1j3U-P-ypE;v$#Y!@+ayW0T^AXk>@4V|%+0 z6uCBNd@*ny+K&at+WkJwAMgPQt} zDyONdWf`mETGve1LQ~3GpD^FCZqB$oE3Sb10`U^X(;C8&gRYO0yPiRwc`=tW7JwObW1mto=Ft znAozy6@W1-=IGpsw?2CHE$ zP~sGn+J<#XnFq>jl1;K=UjliR7VEURYPs5c=X6)ADWDg(738!-jy`USTYp$KT{c3p zxwyUm-Nrs1-oXLG-_Zvo>OLd8 zs?7MgJxMmU3fBUj)!AnaKG|BxslycPK>a8BXGe0?2ZrW3bW4qfU00I7^xE78VXaAJ zy(iR^vd$BPw;^`xXwFYy#K5`naDZnt>x3>s9@b@D0o1*x0qXg~T(ehg3HC4`aH<;;V8X%3MZ}rt zU#NX3u+gVj+nZnv2YUaa_l-d?i_Vc?gjKDbU#T-(h#t^zRKR}?0m3{Xkvz?k5^jM` zA|cj)Vi*L(0hXLP`GkBgrehAo^j+`yZxUV|*dPGjvVNQo3rLe;_)YMTt*RyU;}~Q6 z3T=aC__D?~XYhRo!qMSCSm^QF0muAAt5BIwkDlh zGZj_S$9XT*c?t^SV3bMuAOVvC-Kuby5{Ggi7z(pNlN6Yy?j(;Y78cGBj!tkqtR;C_ zz&7gao|q4W1Ec5IKv!({A2&6vT?l9iZiuFc+lOxle%MwGW%0QmzS{a$#@WZHMn?KVU|CFjw+ka=HW2JoY%K0%ZZWQ~R{u9x(D6PO${T15dw61k`-0AkH9wDts~ z=q*hFI8GM>8U;1GDA=@8{)a?rwQ#dyu0F*u+nSA?ga1C-RE^u(j5D-CK zDQka_-v(X429U#u!^ikj@XEgik$|R!VWzT6=}=b$s^Ec4l#d(vg5 zHVfXEJ%93nuhs!P6jIMe6p7=zp)bA%q8Qz&$XVxmAMm}H*^Uu9lHM|TJwRw*7D5AF z&YoYXK7`Ld3j7K1p9hmk$aOEM$^*mzP8HxVh68qn^&b^@RB^IH5q5vh+2Q*km*0-j zaV$6S+*lZ#0a-s9xGd{|uf0yb8H=$~g{~?F21S7Q9oUFgCZuS0iVcVXnN~&&_CrwS zE!(nUf>i|BsJ?+S5S`%PM6&r!cfu=}vx0EwkRnTbHI&5G{~?=>(jxo@)X8^K#J3iL zK16c)xn{ zl6xs|vnpNPG2Nf3Xb_l>ZaBKqa4OYsD*4)A^3Au?4MTSt*yOux zrmpe&zQuis(@RY^&ZO(wGWATNeDUbQzQo}~F!8-)O~*I1p|!eDo-(lEkD9-{gP zIcmj(;qG-Me&S|GmccI}NYht9^Zq zfU47FkBv0l^sPrvx2(d#*sfV-EOW1AO3OfFRX=!2wr-FJ@;5{<8u-zmcu@Z{l(hO(nN;}@-#zJty$ z_BbK_XA=!M|8md(@l*C3kEQkSU)u)e>-nA%cu+)`itCl9Ax?p5GX%lofxk)29sGa^ zLfI?|8UjEs>vKci1kUQt)@O~N89W{UM~Ecimi&>BWMSbrTr!_0HN+aX!XZovzo#S` zwT8e$C=Qy5BZ&g9!YY}yaiK?1>Yzw)i0d?3tWh!pfHMJ-&KhFC|0P?+?IOY~B}jIW z$tH6^0FDCfAvBdmfi-KCfdVdz5&*^1ETJ7&#ml5J{v+@dH)!SgCjbY;i$&pC;1Gi2 z$l_2ckF~_C;73?7mdY@WJ0wSFYjInsWBc5m8@p3-3gsdySS7G9Vpul^uHGj(|L^-G z?7b5w$?w!sSzdtEVasE{U*L<`S(j7}tt&p!XLFn(GzUfDv+O%SEF7f^+PNhcw5!zG zUA2R+V+)}zEegDo^^`7w@#^9g5gl6ze1*uEmwoYKQhcOOdT(>osmJS-y^K(8^!hTVr8wT5ZWLRgB~gae?`sP*sv&4O$=I zB&=7Dpn22-;MSQn6!w&f$+?Vp29|dj2Z@{D5MrSMYx&)fDsTq*z3?7udjW>Yd$yYU zcO9Cnp+(c&zbVz}<55at^qBx30Z7=%#OmN?68!y0RD`2~O9;5ZeHKI>N_{dlE{^P# z&3^83V00|Z$p#TF`~=ySeMdMb#0*fWZ7o}>N5{lTxD!>H;e95@Y>L@7 zDF^Hd$YXfiyjX*JaR+yT0d_PR3E}}aTnzTA4J~kws6sltG=yX2wsYXYUxW%Voy8K% zmSGJA2*+Gd4G#D578cI5ITkANhzxmTMg9;(U!#HNQE+%1lORvd>0{5#mnfQ$$ZHm^SE6Q_FK9O&&i z)y==F3|={Yf>&=$Z$A^O zj!Pv}h}FG7=>HZf2-|_7r--l2uY6_R{5!J;eh<-O$$-mm%G9k(nyVi)ZqOW-U-|Af z_OB7G^mf%>$yC-XG|iov?t9>>2l#$^Y3H(cxi0NGh%nuG?c~hK6wM z=3U3uO#OzH`qor^>(X24`kk}%@9UZqJC-cVJ?XlA(*yS%bs2Zv{J`8mqH3jSN2+PZ z@~i2lgK2lyin}-E?p<*Yq}&5g#lEI+`2Teur*z~ zXV!GTs^LLxOQzPhBrQd54P@%pFKmU&lA29xdR^V-RYF&}dDTp~s~5J*0Ea$Zi~q#>>u)&O)Jdy6tg|e?1YP&%KZyern)H+ zTVB8HS>}@)I#bo1i!}69xqsD2I4f2h%pC`lf$4Ow?CeeL>`m_IOEw;zvpsBVnzcQ& zRb*H9Qi4z0wyfAXQnrqavnJzo&(m}C!uo~x7dNGy&3BxwiIL*W73Y?ebIa0>WkcGz zd&Sw6a(3MkZug{}{db&$U%pjbJxc><*RR@*I~pDnMtkFG8R7IK*R`b`ZJC<->vfBD zv&IJ%>lQ|S!QHKB&8%y=es=Nf((d%S?X!KEtsO}xlklXSn^)f^frB2uLlVGQXFff9 zAzR z$G76ym-6gOd-mTtobq(7czRNvp0uZL#d9L%Iq~Ii+VjTr(X7AtHtbDes0m33G^jNr>3_@ixD+YDy-Y3C0dJe>%zLJi>9!9iAW(0~oA2Y^Ls zkP=|W@3H_(4|nEN7Rnc1uNf4#PG8{G8Nsc?(G-PH&b7=J0Q@d-ZKi<|aO-jxXOdCU zYom&rBvUEJF>WsSvcN3n97e4jIB4b&D)XYi=3o$9@0m(MUK(!hb1q}Px!9nk!Pzl} znzXn46V~jh3&bq!Hb1vEjRVwHpd^g8uvTqG8a2s0LKOkOuK@JfN{%Q8h5_{1Rn!L9 z$I^G|jT47YpN89zKM#uND5?4LUk^MB`GD03L4|x@l3zCcD>YRB`S^=as^TC7UJ4lE z$1s%#Lr!@0y5ztk7)BCCag08I2=N9Q zO28m^f+(B&PQa3(LC+a|uSK=xN-t=<^A?)Fim!i-(T_2@hS5Ak%Cz%#R5hT;z_G@c zEaM8c{thBEqFsvZM1vVx*|g|o0mQA1TyRmQS^m5b9GwGIHD=i08EeCH6-`A%y0HlU?-)u3zfeM9J~ecuu~d;4kyOk=hBWx5dco1zP+K|?;P3qb?sv?0{Y22BHk z&VwCMJ_10UM}+V$s3?T!q6~Nyb2_i&2LegyjsMWf2J zBDLjmeQBvxKP=+W9aNvHuK5E2sVb+1~nKR9@P7D1f!mZ{6|GZ?CD^ZVZ)4}`Po4VO^1UI++&%};Rg-23D3^(O1j ze<%e=MI{t_%H>`WKvD47-=rZ|= zq5jbkozqaiw%%f>SKyOE_bFS4F0`UIwm||mYF#0)0%0}Qgi*^Vu`&IGl;{O3kLFp0#3Kn=0 zB>9bwCaEYOPs$xJ{V(*gc^m>u0@>34E@J L29n&aO#lA@eJkmP)W1PBBOu(5^tx3L-jj0YQ!$Mytg2TwB5tXC^^8xR%}?rw~w zh?Fbk2U2m>G&56+?8%mKDwVuPYch5cdocnXm>HfE>DjR{P$@st19v>lp#zyH8ip*XMN5~4HBt$4j4RLPP z5HidfLq?9o2sKjv6OIbh1k_9|K&{jU)J`2ht7tV)C#?bMqP0NX)C1H@>wwnN2B1FL z2(*d%fi}|?psh3jw2iiZ!i9L4qk|fueS``?k5V(xPHF{ujM{-7r&U0M)CshUx`3Xb zZlK-N3$%yU1MQ_gpnbFnXg_TRIzU^24$?N5Log80B=Rr7PkcgV1G!4*$%llV5-l%` zMbygBAwW-y)_*=z#%-zL;2Y`R+XC>+rKV=Zgd+FKN-8cg=qCpr8^bO|F z88NE#>K$jJ$+?sio0?Y61}>M_z+iv>>7K#+Z znUolhCl^rc%%s?_S#(wNqOR%8q-IBCHZldv716Z;$i$+lNKsh{nUW$Y%_I)tpXOw$ z*di5e8)A=Ewco)koYXC>kT2VbU0Th)e978Lc%Y|xzh@#|vUze+bM510%W(j7RSYTF zkIMA*S(uI~;5h=5lWAKAQ-kZ8b}*hsq&r}8y1LwAmX;)?&U5xM~%{SkuBJaW35oeI8wzz6eESY!cnN$@%EC9E%iHEA!Ib`D9EM ziyD}3QT>kSw0MokUO%)~h)6;l1P=q{9+Hre8i4ZD2vndvP!kn^nyCq>C1nm;H0wBC zp6|gSjq(+GEx_Yl+F=U>4( z+B0^_-#Je7m9$fV@g`~lD@<%JJs@E&qLwn+3aGV0*2ZMJ0JT@h>gW)ljtbc-Ci@nk z)fKWjdIL~Gs~QP)vOcGQWK4in;p)67ULLTbhUu7K(k_s$Js|CRMcU1zQy}fBu*1vH zhk({qpe}}f1ZaH)+Q85!x-}JcSQ!3m9?tKhF-Aq6WcYCs^o?mGTDtAH^LP>6@V{pP zbOkQq{w0M2V#ttjz_5q_cZ_W63(z*OW5FrqYn9Igla+|1$O|!L8d5l~i1!uE2m&%{4FtZ8^(`c&JMvs4D$0H1S9;zZ zxir)>u0)hrwC8e?is6w&B%YFEa$oN~F>$Xi9-HW!ODWUI#L3=)!9E#MRu2rm11VbW zn~Tl$g+YuaB@oh!oIX~-^v{p$*K^xO)8P8}7p~v^;ETxbLK{sNbDoQN zmp5Dcabv#T2i!{Qa_g%1rR&(*seifn{Nfj&Ofe+_g__ih4GYM#re>W_ zP*IA<5~9?DJ@!PhjHHbdQ)hQD)9jdmq|Fma353t?;OW%_DLETSNZrWuG87paKbuS> zcQA7Xt#CwAbE0N0Zi<9jG!xrH8PFml$a8V9**GOCnrSW~L3t+OSq(Zg<7^Z(CL*(< zCQL+R5zZlvf+$q5nxJ3>DV+gH={hPF6gC?VzCaPglmjPgmNM%AF|3(Ok8~ObzXK%g z8ZT7uAVOJ=p>(-U8L8&*Qgp*?cUIt=4| zEl-;sH+|N;M>?y9RUz+g$X?xWcjP_(e0|HxkC%VEI`sMZXXn>FTlJ?^KJRbE$)1iq z9$On)Z{P9{ed#~9;Xk+Kzo1(GSl^VL&n{|BZ!C}Iy@Azh8{VGvqkov+7#z(vwf}19 z@te=va!uXKqhB?(KI5`y)X{v~QPrFkmaFrDj?Zn+Y@b&@t6rO5pV$h#@nzuRM&ROB zU}Tpxx`x$v^7XB&=Qitm^9}yIuWj`Qo4ynI_Kqx{{hKFd1U}gG_55WZwCU?RAo1a* zum1pWd($^~0BBzw$okj3o4(#Zw)d<}uissl*5X_3=k}-7C44aOyCiFYkA^fl8D z0Dr=Xw%X6=Q|u0b^SeISnt~DbtMDF2YTQdUX&BB&6mM1O!PAB3cJH^vR5VlSsrb#X zq_GGI2x>UvBAuT zD;im9ViE^6nxJak*I1Gg?sKw%gIY?lmgWb$jc8RV86D{1zq5yVQW}#nmGpu(Hdm>A zK%2Qz+o2MczbaupOd?~<@YMDTJJc1$gekoRF0r`DLL`fZ(j~+&!bu}Y-Ubr1YXVCw z(piKsR7h_E(aaN54A)G0n3OJK*C>)J*w5Z?bqV{#6uy+PMo`d0SY4QkbCMX1C?XA) zdu3?=$66RN8=1rKo{R_0kbC2@G>(0oBK<8+avRBykc5E97_p1Nj>S67$zov`@@ANY z&$Mqp?!D6W6IAd&KpoFCoz*^R8Q;b>Xn^6i~DOXreRy^*hRscp;rl90F8y!3Q! z*t@npU28)do&ktz_L@(xZ`fP%4b4l}wmtsr`^z^0t%X#(d}PU-x7WU`>)x<;Z`XCN z{cxjhXz40IpU!O91Np|br5oFIE!l;Qx?@XM3ntRs{^WbBx3>L(RoCjkGtXz&4`=iK zjwd%)mAt<>8+knXx@7j^S*3SEn=KaUMu6NYf3dCV8UUICWN)KLecF7xn zfmgzEU#5H&#>sPTEXZkmJSHp8IVl2?GRg(?J+LEQOnzza{`yzIzrZ0FPayX|adP?R zshp+Z^@xM3c{l#IZ=`rLyeSP}sZa_pD|4a_F#7C^<)O}EU!j(}V|8g=`o zRpL)^lnV$}QJ$>vsr|7%=Y-_ep&M9U5fH%|p#%Q+J^*rqaI8W<%tUx`s)r!RF&EIK zSDyX)eA4g_+zQ8$M?RjU$Zw1bobH-|xh6$nV97tc83+8cgu_r`O5t$2cHg%W_DhuR z1M=_WzrZy}(H|~>RWgf=-^mrHd z+ItDx8Vno<&&fKsg1)I5=^jW?|5;QB>cXZD*}| za^>9exh-dF&eF>EW(-O)SOcu5!ePx84$mg(d>na4IDB_L64!fJMZ{K8nno*d!=yNp z1d!*1>C$VbPDGJl9F*IEJS4mPTb$tD9X0p`+wOTz@a>v7;mEGZAe@4?G$Ei5$3eJR z<)?IR_D%s*`3(oZ;NbTg{Cb1mZt%-Z$PyzVD>a8~QzT@kmXIT54cat;ZEM=xQT**^MMS{4hSD7HEe`72Ti1usd`2?;3eS0ieB_+WSX%5L}* z5bm6Yk6!Gz~Z#eqi->v~mzbPdhBiRPK1 zvS%f-Z$X^U!%KK75|4{gDlFcQ#^<4GmrxoD7k&5eU0Fi%Pw+3l3*;ezaNE$9<2~?O zA9!#RethjY-V47+26B7=e%rcod^7xZ59Rpd@LOH;;O&BiIJ^%=zXJYh!9m(OH~40K zB2*8-&^n7B*WwXb9)siwN0=s~aPAu6Ew8uumItqO#ZTFKWslc~y)sB)wIawBM8-f*c+#`Cow+j2y>(ZLo0se|iXapXhl9igobQGp$++V9q&N?h;G|a z;2&5DUG7G3qDDOdPBbzn-0C%O0(fx3tKI=8fM-s0gA>4m6CO1LP5{rGxByN74^Gsm zjRhC-;DlG5DY%gbCp$71N^ATx!S-H zXn-T`oaY#L0uA&eSJzqSzy`SD0?UsApCff&A1Bo=wc+QtAK1Pz&2n5o<-Z~L`_11Q P+qh0O_8$a(*unZga&}cY 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 Oj%Q^$@@ka61pg1I3MIAx literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..531119f05f18f4c6067c6a8275149d3ac1400a6e GIT binary patch literal 33025 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 X{tm7z#up7IQDgkE`DD?!PR;)T*p*eO literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ebb37f5302b21d61cb8d719973a71c1aff4b985 GIT binary patch literal 14097 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 RRDy$mxhwz0;fG=7{{RQ%5OV+k literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py new file mode 100644 index 0000000..ee1ac27 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py @@ -0,0 +1,70 @@ +""" + pygments.console + ~~~~~~~~~~~~~~~~ + + Format colored console output. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +esc = "\x1b[" + +codes = {} +codes[""] = "" +codes["reset"] = esc + "39;49;00m" + +codes["bold"] = esc + "01m" +codes["faint"] = esc + "02m" +codes["standout"] = esc + "03m" +codes["underline"] = esc + "04m" +codes["blink"] = esc + "05m" +codes["overline"] = esc + "06m" + +dark_colors = ["black", "red", "green", "yellow", "blue", + "magenta", "cyan", "gray"] +light_colors = ["brightblack", "brightred", "brightgreen", "brightyellow", "brightblue", + "brightmagenta", "brightcyan", "white"] + +x = 30 +for dark, light in zip(dark_colors, light_colors): + codes[dark] = esc + "%im" % x + codes[light] = esc + "%im" % (60 + x) + x += 1 + +del dark, light, x + +codes["white"] = codes["bold"] + + +def reset_color(): + return codes["reset"] + + +def colorize(color_key, text): + return codes[color_key] + text + codes["reset"] + + +def ansiformat(attr, text): + """ + Format ``text`` with a color and/or some attributes:: + + color normal color + *color* bold color + _color_ underlined color + +color+ blinking color + """ + result = [] + if attr[:1] == attr[-1:] == '+': + result.append(codes['blink']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '*': + result.append(codes['bold']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '_': + result.append(codes['underline']) + attr = attr[1:-1] + result.append(codes[attr]) + result.append(text) + result.append(codes['reset']) + return ''.join(result) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py new file mode 100644 index 0000000..5efff43 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py @@ -0,0 +1,70 @@ +""" + pygments.filter + ~~~~~~~~~~~~~~~ + + Module that implements the default filter. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +def apply_filters(stream, filters, lexer=None): + """ + Use this method to apply an iterable of filters to + a stream. If lexer is given it's forwarded to the + filter, otherwise the filter receives `None`. + """ + def _apply(filter_, stream): + yield from filter_.filter(lexer, stream) + for filter_ in filters: + stream = _apply(filter_, stream) + return stream + + +def simplefilter(f): + """ + Decorator that converts a function into a filter:: + + @simplefilter + def lowercase(self, lexer, stream, options): + for ttype, value in stream: + yield ttype, value.lower() + """ + return type(f.__name__, (FunctionFilter,), { + '__module__': getattr(f, '__module__'), + '__doc__': f.__doc__, + 'function': f, + }) + + +class Filter: + """ + Default filter. Subclass this class or use the `simplefilter` + decorator to create own filters. + """ + + def __init__(self, **options): + self.options = options + + def filter(self, lexer, stream): + raise NotImplementedError() + + +class FunctionFilter(Filter): + """ + Abstract class used by `simplefilter` to create simple + function filters on the fly. The `simplefilter` decorator + automatically creates subclasses of this class for + functions passed to it. + """ + function = None + + def __init__(self, **options): + if not hasattr(self, 'function'): + raise TypeError(f'{self.__class__.__name__!r} used without bound function') + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + # pylint: disable=not-callable + yield from self.function(lexer, stream, self.options) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py new file mode 100644 index 0000000..97380c9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py @@ -0,0 +1,940 @@ +""" + pygments.filters + ~~~~~~~~~~~~~~~~ + + Module containing filter lookup functions and default + filters. + + :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re + +from pip._vendor.pygments.token import String, Comment, Keyword, Name, Error, Whitespace, \ + string_to_tokentype +from pip._vendor.pygments.filter import Filter +from pip._vendor.pygments.util import get_list_opt, get_int_opt, get_bool_opt, \ + get_choice_opt, ClassNotFound, OptionError +from pip._vendor.pygments.plugin import find_plugin_filters + + +def find_filter_class(filtername): + """Lookup a filter by name. Return None if not found.""" + if filtername in FILTERS: + return FILTERS[filtername] + for name, cls in find_plugin_filters(): + if name == filtername: + return cls + return None + + +def get_filter_by_name(filtername, **options): + """Return an instantiated filter. + + Options are passed to the filter initializer if wanted. + Raise a ClassNotFound if not found. + """ + cls = find_filter_class(filtername) + if cls: + return cls(**options) + else: + raise ClassNotFound(f'filter {filtername!r} not found') + + +def get_all_filters(): + """Return a generator of all filter names.""" + yield from FILTERS + for name, _ in find_plugin_filters(): + yield name + + +def _replace_special(ttype, value, regex, specialttype, + replacefunc=lambda x: x): + last = 0 + for match in regex.finditer(value): + start, end = match.start(), match.end() + if start != last: + yield ttype, value[last:start] + yield specialttype, replacefunc(value[start:end]) + last = end + if last != len(value): + yield ttype, value[last:] + + +class CodeTagFilter(Filter): + """Highlight special code tags in comments and docstrings. + + Options accepted: + + `codetags` : list of strings + A list of strings that are flagged as code tags. The default is to + highlight ``XXX``, ``TODO``, ``FIXME``, ``BUG`` and ``NOTE``. + + .. versionchanged:: 2.13 + Now recognizes ``FIXME`` by default. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + tags = get_list_opt(options, 'codetags', + ['XXX', 'TODO', 'FIXME', 'BUG', 'NOTE']) + self.tag_re = re.compile(r'\b({})\b'.format('|'.join([ + re.escape(tag) for tag in tags if tag + ]))) + + def filter(self, lexer, stream): + regex = self.tag_re + for ttype, value in stream: + if ttype in String.Doc or \ + ttype in Comment and \ + ttype not in Comment.Preproc: + yield from _replace_special(ttype, value, regex, Comment.Special) + else: + yield ttype, value + + +class SymbolFilter(Filter): + """Convert mathematical symbols such as \\ in Isabelle + or \\longrightarrow in LaTeX into Unicode characters. + + This is mostly useful for HTML or console output when you want to + approximate the source rendering you'd see in an IDE. + + Options accepted: + + `lang` : string + The symbol language. Must be one of ``'isabelle'`` or + ``'latex'``. The default is ``'isabelle'``. + """ + + latex_symbols = { + '\\alpha' : '\U000003b1', + '\\beta' : '\U000003b2', + '\\gamma' : '\U000003b3', + '\\delta' : '\U000003b4', + '\\varepsilon' : '\U000003b5', + '\\zeta' : '\U000003b6', + '\\eta' : '\U000003b7', + '\\vartheta' : '\U000003b8', + '\\iota' : '\U000003b9', + '\\kappa' : '\U000003ba', + '\\lambda' : '\U000003bb', + '\\mu' : '\U000003bc', + '\\nu' : '\U000003bd', + '\\xi' : '\U000003be', + '\\pi' : '\U000003c0', + '\\varrho' : '\U000003c1', + '\\sigma' : '\U000003c3', + '\\tau' : '\U000003c4', + '\\upsilon' : '\U000003c5', + '\\varphi' : '\U000003c6', + '\\chi' : '\U000003c7', + '\\psi' : '\U000003c8', + '\\omega' : '\U000003c9', + '\\Gamma' : '\U00000393', + '\\Delta' : '\U00000394', + '\\Theta' : '\U00000398', + '\\Lambda' : '\U0000039b', + '\\Xi' : '\U0000039e', + '\\Pi' : '\U000003a0', + '\\Sigma' : '\U000003a3', + '\\Upsilon' : '\U000003a5', + '\\Phi' : '\U000003a6', + '\\Psi' : '\U000003a8', + '\\Omega' : '\U000003a9', + '\\leftarrow' : '\U00002190', + '\\longleftarrow' : '\U000027f5', + '\\rightarrow' : '\U00002192', + '\\longrightarrow' : '\U000027f6', + '\\Leftarrow' : '\U000021d0', + '\\Longleftarrow' : '\U000027f8', + '\\Rightarrow' : '\U000021d2', + '\\Longrightarrow' : '\U000027f9', + '\\leftrightarrow' : '\U00002194', + '\\longleftrightarrow' : '\U000027f7', + '\\Leftrightarrow' : '\U000021d4', + '\\Longleftrightarrow' : '\U000027fa', + '\\mapsto' : '\U000021a6', + '\\longmapsto' : '\U000027fc', + '\\relbar' : '\U00002500', + '\\Relbar' : '\U00002550', + '\\hookleftarrow' : '\U000021a9', + '\\hookrightarrow' : '\U000021aa', + '\\leftharpoondown' : '\U000021bd', + '\\rightharpoondown' : '\U000021c1', + '\\leftharpoonup' : '\U000021bc', + '\\rightharpoonup' : '\U000021c0', + '\\rightleftharpoons' : '\U000021cc', + '\\leadsto' : '\U0000219d', + '\\downharpoonleft' : '\U000021c3', + '\\downharpoonright' : '\U000021c2', + '\\upharpoonleft' : '\U000021bf', + '\\upharpoonright' : '\U000021be', + '\\restriction' : '\U000021be', + '\\uparrow' : '\U00002191', + '\\Uparrow' : '\U000021d1', + '\\downarrow' : '\U00002193', + '\\Downarrow' : '\U000021d3', + '\\updownarrow' : '\U00002195', + '\\Updownarrow' : '\U000021d5', + '\\langle' : '\U000027e8', + '\\rangle' : '\U000027e9', + '\\lceil' : '\U00002308', + '\\rceil' : '\U00002309', + '\\lfloor' : '\U0000230a', + '\\rfloor' : '\U0000230b', + '\\flqq' : '\U000000ab', + '\\frqq' : '\U000000bb', + '\\bot' : '\U000022a5', + '\\top' : '\U000022a4', + '\\wedge' : '\U00002227', + '\\bigwedge' : '\U000022c0', + '\\vee' : '\U00002228', + '\\bigvee' : '\U000022c1', + '\\forall' : '\U00002200', + '\\exists' : '\U00002203', + '\\nexists' : '\U00002204', + '\\neg' : '\U000000ac', + '\\Box' : '\U000025a1', + '\\Diamond' : '\U000025c7', + '\\vdash' : '\U000022a2', + '\\models' : '\U000022a8', + '\\dashv' : '\U000022a3', + '\\surd' : '\U0000221a', + '\\le' : '\U00002264', + '\\ge' : '\U00002265', + '\\ll' : '\U0000226a', + '\\gg' : '\U0000226b', + '\\lesssim' : '\U00002272', + '\\gtrsim' : '\U00002273', + '\\lessapprox' : '\U00002a85', + '\\gtrapprox' : '\U00002a86', + '\\in' : '\U00002208', + '\\notin' : '\U00002209', + '\\subset' : '\U00002282', + '\\supset' : '\U00002283', + '\\subseteq' : '\U00002286', + '\\supseteq' : '\U00002287', + '\\sqsubset' : '\U0000228f', + '\\sqsupset' : '\U00002290', + '\\sqsubseteq' : '\U00002291', + '\\sqsupseteq' : '\U00002292', + '\\cap' : '\U00002229', + '\\bigcap' : '\U000022c2', + '\\cup' : '\U0000222a', + '\\bigcup' : '\U000022c3', + '\\sqcup' : '\U00002294', + '\\bigsqcup' : '\U00002a06', + '\\sqcap' : '\U00002293', + '\\Bigsqcap' : '\U00002a05', + '\\setminus' : '\U00002216', + '\\propto' : '\U0000221d', + '\\uplus' : '\U0000228e', + '\\bigplus' : '\U00002a04', + '\\sim' : '\U0000223c', + '\\doteq' : '\U00002250', + '\\simeq' : '\U00002243', + '\\approx' : '\U00002248', + '\\asymp' : '\U0000224d', + '\\cong' : '\U00002245', + '\\equiv' : '\U00002261', + '\\Join' : '\U000022c8', + '\\bowtie' : '\U00002a1d', + '\\prec' : '\U0000227a', + '\\succ' : '\U0000227b', + '\\preceq' : '\U0000227c', + '\\succeq' : '\U0000227d', + '\\parallel' : '\U00002225', + '\\mid' : '\U000000a6', + '\\pm' : '\U000000b1', + '\\mp' : '\U00002213', + '\\times' : '\U000000d7', + '\\div' : '\U000000f7', + '\\cdot' : '\U000022c5', + '\\star' : '\U000022c6', + '\\circ' : '\U00002218', + '\\dagger' : '\U00002020', + '\\ddagger' : '\U00002021', + '\\lhd' : '\U000022b2', + '\\rhd' : '\U000022b3', + '\\unlhd' : '\U000022b4', + '\\unrhd' : '\U000022b5', + '\\triangleleft' : '\U000025c3', + '\\triangleright' : '\U000025b9', + '\\triangle' : '\U000025b3', + '\\triangleq' : '\U0000225c', + '\\oplus' : '\U00002295', + '\\bigoplus' : '\U00002a01', + '\\otimes' : '\U00002297', + '\\bigotimes' : '\U00002a02', + '\\odot' : '\U00002299', + '\\bigodot' : '\U00002a00', + '\\ominus' : '\U00002296', + '\\oslash' : '\U00002298', + '\\dots' : '\U00002026', + '\\cdots' : '\U000022ef', + '\\sum' : '\U00002211', + '\\prod' : '\U0000220f', + '\\coprod' : '\U00002210', + '\\infty' : '\U0000221e', + '\\int' : '\U0000222b', + '\\oint' : '\U0000222e', + '\\clubsuit' : '\U00002663', + '\\diamondsuit' : '\U00002662', + '\\heartsuit' : '\U00002661', + '\\spadesuit' : '\U00002660', + '\\aleph' : '\U00002135', + '\\emptyset' : '\U00002205', + '\\nabla' : '\U00002207', + '\\partial' : '\U00002202', + '\\flat' : '\U0000266d', + '\\natural' : '\U0000266e', + '\\sharp' : '\U0000266f', + '\\angle' : '\U00002220', + '\\copyright' : '\U000000a9', + '\\textregistered' : '\U000000ae', + '\\textonequarter' : '\U000000bc', + '\\textonehalf' : '\U000000bd', + '\\textthreequarters' : '\U000000be', + '\\textordfeminine' : '\U000000aa', + '\\textordmasculine' : '\U000000ba', + '\\euro' : '\U000020ac', + '\\pounds' : '\U000000a3', + '\\yen' : '\U000000a5', + '\\textcent' : '\U000000a2', + '\\textcurrency' : '\U000000a4', + '\\textdegree' : '\U000000b0', + } + + isabelle_symbols = { + '\\' : '\U0001d7ec', + '\\' : '\U0001d7ed', + '\\' : '\U0001d7ee', + '\\' : '\U0001d7ef', + '\\' : '\U0001d7f0', + '\\' : '\U0001d7f1', + '\\' : '\U0001d7f2', + '\\' : '\U0001d7f3', + '\\' : '\U0001d7f4', + '\\' : '\U0001d7f5', + '\\' : '\U0001d49c', + '\\' : '\U0000212c', + '\\' : '\U0001d49e', + '\\' : '\U0001d49f', + '\\' : '\U00002130', + '\\' : '\U00002131', + '\\' : '\U0001d4a2', + '\\' : '\U0000210b', + '\\' : '\U00002110', + '\\' : '\U0001d4a5', + '\\' : '\U0001d4a6', + '\\' : '\U00002112', + '\\' : '\U00002133', + '\\' : '\U0001d4a9', + '\\' : '\U0001d4aa', + '\\

  2. D{8Wvqfv~ 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 Ib>{#70CI({IsgCw literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af19318a439ecbc6bcff3c8d2daa4180f5bbe26f GIT binary patch literal 1894 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce721b9ee9ab205ed3d9d1ab213d22610bfeb6d8 GIT binary patch literal 8533 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 B7o`9I literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c9a529afdb5009d7685ca570e68f42359968be1 GIT binary patch literal 11950 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 V!SLQQ+(Cw^ymagnf-&8K{{vd}#%urp literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..555c0e7c161ff11aca2c4acda558b2bdd914931f GIT binary patch literal 14351 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 G@qYl!Ib!4h literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1cf0fbe91629168fbc1ef4d40ba587ef411fc91 GIT binary patch literal 2085 zcmah~O>7%Q6rSC+*Y@tlKTS(%6JViLsME$)Qk6o4Dy2!N(nbjoXhjq$+IqL~I-6a0 zX6zDUOBUjgz@Y{q)fH5Q8$vB%uG)Z~z`DN+zWQf`qFB$NxhS!bO@m0;wZ_c!m& zn>X(p|Jc?hAs8LPKiL5hq2HL`kH9Xo^)@hfkdAcDLX%C(O>&;hPYNCl0OfVT3eJg> zB8T*V5z>Q3=te*nKM72R^-xO=gB+RXl93G-er$t-Imx-9Ya?SrW%Fx^4a*P|TYVp~iu*kW7E|9FI23tLPXJ>1Q}rxirQzB%XB&X<}r z*LF~5lFse(i9T!3C7#vo+j;kN6|T%ppd??)N-B&&$1WO}s+!6QrcwvE8>VIStM9)% zno`yGvPRQ#%d{-@x}nZ#x}j><0jp*NT3HB3p$QPwK<~?Oi8{O zNC2L&v#ILNO!}6CXCYd~AnA$Wp3#Ae=XxfnM$Jsmpraep1GZ+(6O*Ja(`~2eh6}h7!cYJ;E{-wK@?vLLc|88ixvv*nUs}4Pt;`GzY)CKG z=fCgzA@v}&(mmYh9$wOyyRR%uqt(GxIag}I$uU#0k-Z551VH6F-Kb+pYu_=Yhxt$pPf7fIaIg`UlCyD%5WQHUJuNk zf^-EvSmEvCd) zY1Sla-qPp|Kw`hT!TJfahS=fKm;heCrtfZLTrYl1@hCdb&cY&rIKJq6_RkRsKO6>N9#S5$9*tWnc;wIvQ zL)?0#|MA(!uP!B?ga)^ROtT$EFPykPdUtfCv$xUN`{=}S=WC6?vFbpzxIk;~)VW{f zMD1$*qo0m+uP53U#a|-v^~BM7*XJ)SioZvnUyZ)CM3!crC}Ud!ACq90hy)>(Lu~IA zxvL>}eN%iC__nevpQ{f2rJzXs=lF9^l~^tC*+@O{>Da0guO${Q)kur|vbb{ebOV0M zY0p^eT^Ol%G?bI;vG&?P?c&0R3xRbxR=tARd6N=meJ!_Hc(MNlc@^X9 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..efeab394465f5d8bcbbe37bfbfeeac4ed80fd519 GIT binary patch literal 4403 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 list(yield_lines('')) + [] + >>> list(yield_lines(['foo', 'bar'])) + ['foo', 'bar'] + >>> list(yield_lines('foo\nbar')) + ['foo', 'bar'] + >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) + ['foo', 'baz #comment'] + >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) + ['foo', 'bar', 'baz', 'bing'] + """ + return itertools.chain.from_iterable(map(yield_lines, iterable)) + + +@yield_lines.register(str) +def _(text): + return filter(_nonblank, map(str.strip, text.splitlines())) + + +def drop_comment(line): + """ + Drop comments. + + >>> drop_comment('foo # bar') + 'foo' + + A hash without a space may be in a URL. + + >>> drop_comment('http://example.com/foo#bar') + 'http://example.com/foo#bar' + """ + return line.partition(" #")[0] + + +def join_continuation(lines): + r""" + Join lines continued by a trailing backslash. + + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) + ['foobarbaz'] + + Not sure why, but... + The character preceding the backslash is also elided. + + >>> list(join_continuation(['goo\\', 'dly'])) + ['godly'] + + A terrible idea, but... + If no line is available to continue, suppress the lines. + + >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) + ['foo'] + """ + lines = iter(lines) + for item in lines: + while item.endswith("\\"): + try: + item = item[:-2].strip() + next(lines) + except StopIteration: + return + yield item diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..4152528 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> list[str]: + if sys.platform == "darwin": + dirval = _appdirs.site_data_dir(appname, appauthor=False, multipath=True) + return dirval.split(os.pathsep) + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..324789f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,85 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import importlib.resources +import logging +import os +import sys +from typing import IO + +__all__ = ["get_path_uid", "stdlib_pkgs", "tomllib", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# The importlib.resources.open_text function was deprecated in 3.11 with suggested +# replacement we use below. +if sys.version_info < (3, 11): + open_text_resource = importlib.resources.open_text +else: + + def open_text_resource( + package: str, resource: str, encoding: str = "utf-8", errors: str = "strict" + ) -> IO[str]: + return (importlib.resources.files(package) / resource).open( + "r", encoding=encoding, errors=errors + ) + + +if sys.version_info >= (3, 11): + import tomllib +else: + from pip._vendor import tomli as tomllib + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..6d98171 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,201 @@ +"""Generate and work with PEP 425 Compatibility Tags.""" + +from __future__ import annotations + +import re + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + android_platforms, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + ios_platforms, + mac_platforms, +) + +_apple_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> list[str]: + match = _apple_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _ios_platforms(arch: str) -> list[str]: + match = _apple_arch_pat.match(arch) + if match: + name, major, minor, actual_multiarch = match.groups() + ios_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "ios", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "ioscustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("ios_") :]) + for arch in ios_platforms(ios_version, actual_multiarch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _android_platforms(arch: str) -> list[str]: + match = re.fullmatch(r"android_(\d+)_(.+)", arch) + if match: + api_level, abi = match.groups() + return list(android_platforms(int(api_level), abi)) + else: + # arch pattern didn't match (?!) + return [arch] + + +def _custom_manylinux_platforms(arch: str) -> list[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> list[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch.startswith("ios"): + arches = _ios_platforms(arch) + elif arch_prefix == "android": + arches = _android_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: list[str] | None) -> list[str] | None: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: str | None = None, version: str | None = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: str | None = None, + platforms: list[str] | None = None, + impl: str | None = None, + abis: list[str] | None = None, +) -> list[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: list[Tag] = [] + + python_version: PythonVersion | None = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..776e498 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,10 @@ +"""For when pip wants to check the date or time.""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..96e7783 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,126 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +from __future__ import annotations + +import logging +import warnings +from typing import Any, TextIO + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Warning | str, + category: type[Warning], + filename: str, + lineno: int, + file: TextIO | None = None, + line: str | None = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: str | None, + gone_in: str | None, + feature_flag: str | None = None, + issue: int | None = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + ( + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported." + ), + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + ( + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None + ), + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..3cbc1e7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from __future__ import annotations + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += ( + f"{direct_url.info.vcs}+{direct_url.url}@{direct_url.info.commit_id}" + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: str | None = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 0000000..dc85a58 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,81 @@ +from __future__ import annotations + +import os +import re +import sys + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_names(raw_name: str) -> list[str]: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + + We also look for the raw name (without normalization) as setuptools 69 changed + the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). + """ + return [ + re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", + f"{raw_name}.egg-link", + ] + + +def egg_link_path_from_sys_path(raw_name: str) -> str | None: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_names = _egg_link_names(raw_name) + for path_item in sys.path: + for egg_link_name in egg_link_names: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> str | None: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites: list[str] = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_names = _egg_link_names(raw_name) + for site in sites: + for egg_link_name in egg_link_names: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..e3a150e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,88 @@ +from __future__ import annotations + +import itertools +import os +import shutil +import sys + +from pip._internal.cli.main import main +from pip._internal.utils.compat import WINDOWS + +_EXECUTABLE_NAMES = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", +] +if WINDOWS: + _allowed_extensions = {"", ".exe"} + _EXECUTABLE_NAMES = [ + "".join(parts) + for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) + ] + + +def _wrapper(args: list[str] | None = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) + + +def get_best_invocation_for_this_pip() -> str: + """Try to figure out the best way to invoke pip in the current environment.""" + binary_directory = "Scripts" if WINDOWS else "bin" + binary_prefix = os.path.join(sys.prefix, binary_directory) + + # Try to use pip[X[.Y]] names, if those executables for this environment are + # the first on PATH with that name. + path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) + exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts + if exe_are_in_PATH: + for exe_name in _EXECUTABLE_NAMES: + found_executable = shutil.which(exe_name) + binary_executable = os.path.join(binary_prefix, exe_name) + if ( + found_executable + and os.path.exists(binary_executable) + and os.path.samefile( + found_executable, + binary_executable, + ) + ): + return exe_name + + # Use the `-m` invocation, if there's no "nice" invocation. + return f"{get_best_invocation_for_this_python()} -m pip" + + +def get_best_invocation_for_this_python() -> str: + """Try to figure out the best way to invoke the current Python.""" + exe = sys.executable + exe_name = os.path.basename(exe) + + # Try to use the basename, if it's the first executable. + found_executable = shutil.which(exe_name) + # Virtual environments often symlink to their parent Python binaries, but we don't + # want to treat the Python binaries as equivalent when the environment's Python is + # not on PATH (not activated). Thus, we don't follow symlinks. + if found_executable and os.path.samestat(os.lstat(found_executable), os.lstat(exe)): + return exe_name + + # Use the full executable name, because we couldn't find something simpler. + return exe diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..e34ffcf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,164 @@ +from __future__ import annotations + +import fnmatch +import os +import os.path +import random +import sys +from collections.abc import Generator +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, cast + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size +from pip._internal.utils.retry import retry + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +replace = retry(stop_after_delay=1, wait=0.25)(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> list[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: list[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> int | float: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> int | float: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) + + +def copy_directory_permissions(directory: str, target_file: BinaryIO) -> None: + mode = ( + os.stat(directory).st_mode & 0o666 # select read/write permissions of directory + | 0o600 # set owner read/write permissions + ) + # Change permissions only if there is no risk of following a symlink. + if os.chmod in os.supports_fd: + os.chmod(target_file.fileno(), mode) + elif os.chmod in os.supports_follow_symlinks: + os.chmod(target_file.name, mode, follow_symlinks=False) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..2b8baad --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,24 @@ +"""Filetype information.""" + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..2cb3013 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,102 @@ +from __future__ import annotations + +import os +import sys + + +def glibc_version_string() -> str | None: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> str | None: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") + if gnu_libc_version is None: + return None + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = gnu_libc_version.split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> str | None: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can't proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..3d8c125 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,150 @@ +from __future__ import annotations + +import hashlib +from collections.abc import Iterable +from typing import TYPE_CHECKING, BinaryIO, NoReturn + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: dict[str, list[str]] | None = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = [k.lower() for k in sorted(keys)] + self._allowed = allowed + + def __and__(self, other: Hashes) -> Hashes: + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterable[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: dict[str, _Hash]) -> NoReturn: + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def has_one_of(self, hashes: dict[str, str]) -> bool: + """Return whether any of the given hashes are allowed.""" + for hash_name, hex_digest in hashes.items(): + if self.is_hash_allowed(hash_name, hex_digest): + return True + return False + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: dict[str, _Hash]) -> NoReturn: + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..5cdbeb7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,364 @@ +from __future__ import annotations + +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from collections.abc import Generator +from dataclasses import dataclass +from io import TextIOWrapper +from logging import Filter +from typing import Any, ClassVar + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderableType, + RenderResult, + RichCast, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +_stdout_console = None +_stderr_console = None +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Generator[None, None, None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: RenderableType + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class PipConsole(Console): + def on_broken_pipe(self) -> None: + # Reraise the original exception, rich 13.8.0+ exits by default + # instead, preventing our handler from firing. + raise BrokenPipeError() from None + + +def get_console(*, stderr: bool = False) -> Console: + if stderr: + assert _stderr_console is not None, "stderr rich console is missing!" + return _stderr_console + else: + assert _stdout_console is not None, "stdout rich console is missing!" + return _stdout_console + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[list[str] | None] = [] + + def __init__(self, console: Console) -> None: + super().__init__( + console=console, + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Style | None = None + + # If we are given a diagnostic error to present, present it with indentation. + if getattr(record, "rich", False): + assert isinstance(record.args, tuple) + (rich_renderable,) = record.args + assert isinstance( + rich_renderable, (ConsoleRenderable, RichCast, str) + ), f"{rich_renderable} is not rich-console-renderable" + + renderable: RenderableType = IndentedRenderable( + rich_renderable, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> TextIOWrapper: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: str | None) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + global _stdout_console, stderr_console + _stdout_console = PipConsole(file=sys.stdout, no_color=no_color, soft_wrap=True) + _stderr_console = PipConsole(file=sys.stderr, no_color=no_color, soft_wrap=True) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "console": _stdout_console, + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "console": _stderr_console, + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "console": _stderr_console, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..3a28e84 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,765 @@ +from __future__ import annotations + +import errno +import getpass +import hashlib +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +from collections.abc import Generator, Iterable, Iterator, Mapping, Sequence +from dataclasses import dataclass +from functools import partial +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from pathlib import Path +from types import FunctionType, TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + Optional, + TextIO, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip import __version__ +from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.retry import retry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "ensure_dir", + "remove_auth_from_url", + "check_externally_managed", + "ConfiguredBuildBackendHookCaller", +] + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = tuple[type[BaseException], BaseException, TracebackType] +VersionInfo = tuple[int, int, int] +NetlocTuple = tuple[str, tuple[Optional[str], Optional[str]]] +OnExc = Callable[[FunctionType, Path, BaseException], Any] +OnErr = Callable[[FunctionType, Path, ExcInfo], Any] + +FILE_CHUNK_SIZE = 1024 * 1024 + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" + + +def normalize_version_info(py_version_info: tuple[int, ...]) -> tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +@retry(stop_after_delay=3, wait=0.5) +def rmtree(dir: str, ignore_errors: bool = False, onexc: OnExc | None = None) -> None: + if ignore_errors: + onexc = _onerror_ignore + if onexc is None: + onexc = _onerror_reraise + handler: OnErr = partial(rmtree_errorhandler, onexc=onexc) + if sys.version_info >= (3, 12): + # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. + shutil.rmtree(dir, onexc=handler) # type: ignore + else: + shutil.rmtree(dir, onerror=handler) # type: ignore + + +def _onerror_ignore(*_args: Any) -> None: + pass + + +def _onerror_reraise(*_args: Any) -> None: + raise # noqa: PLE0704 - Bare exception used to reraise existing exception + + +def rmtree_errorhandler( + func: FunctionType, + path: Path, + exc_info: ExcInfo | BaseException, + *, + onexc: OnExc = _onerror_reraise, +) -> None: + """ + `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). + + * If a file is readonly then it's write flag is set and operation is + retried. + + * `onerror` is the original callback from `rmtree(... onerror=onerror)` + that is chained at the end if the "rm -f" still fails. + """ + try: + st_mode = os.stat(path).st_mode + except OSError: + # it's equivalent to os.path.exists + return + + if not st_mode & stat.S_IWRITE: + # convert to read/write + try: + os.chmod(path, st_mode | stat.S_IWRITE) + except OSError: + pass + else: + # use the original function to repeat the operation + try: + func(path) + return + except OSError: + pass + + if not isinstance(exc_info, BaseException): + _, exc_info, _ = exc_info + onexc(func, path, exc_info) + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return f"{bytes / 1000.0 / 1000:.1f} MB" + elif bytes > 10 * 1000: + return f"{int(bytes / 1000)} kB" + elif bytes > 1000: + return f"{bytes / 1000.0:.1f} kB" + else: + return f"{int(bytes)} bytes" + + +def tabulate(rows: Iterable[Iterable[Any]]) -> tuple[list[str], list[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks( + file: BinaryIO, size: int = FILE_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> StreamWrapper: + ret = cls() + ret.orig_stream = orig_stream + return ret + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # type ignore is because TextIOBase.encoding is writeable + @property + def encoding(self) -> str: # type: ignore + return self.orig_stream.encoding + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: int | None) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> tuple[str | None, int | None]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: str | None = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return f"{user}{password}@{netloc}" + + +def _transform_url( + url: str, transform_netloc: Callable[[str], tuple[Any, ...]] +) -> tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url( + url: str, +) -> tuple[str, str, tuple[str | None, str | None]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +def redact_auth_from_requirement(req: Requirement) -> str: + """Replace the password in a given requirement url with ****.""" + if not req.url: + return str(req) + return str(req).replace(req.url, redact_auth_from_url(req.url)) + + +@dataclass(frozen=True) +class HiddenText: + secret: str + redacted: str + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) is not type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def check_externally_managed() -> None: + """Check whether the current environment is externally managed. + + If the ``EXTERNALLY-MANAGED`` config file is found, the current environment + is considered externally managed, and an ExternallyManagedEnvironment is + raised. + """ + if running_under_virtualenv(): + return + marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") + if not os.path.isfile(marker): + return + raise ExternallyManagedEnvironment.from_config(marker) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def pairwise(iterable: Iterable[Any]) -> Iterator[tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], iterable: Iterable[T] +) -> tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) + + +class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): + def __init__( + self, + config_holder: Any, + source_dir: str, + build_backend: str, + backend_path: str | None = None, + runner: Callable[..., None] | None = None, + python_executable: str | None = None, + ): + super().__init__( + source_dir, build_backend, backend_path, runner, python_executable + ) + self.config_holder = config_holder + + def build_wheel( + self, + wheel_directory: str, + config_settings: Mapping[str, Any] | None = None, + metadata_directory: str | None = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_wheel( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Mapping[str, Any] | None = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_sdist(sdist_directory, config_settings=cs) + + def build_editable( + self, + wheel_directory: str, + config_settings: Mapping[str, Any] | None = None, + metadata_directory: str | None = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_editable( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def get_requires_for_build_wheel( + self, config_settings: Mapping[str, Any] | None = None + ) -> Sequence[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_wheel(config_settings=cs) + + def get_requires_for_build_sdist( + self, config_settings: Mapping[str, Any] | None = None + ) -> Sequence[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_sdist(config_settings=cs) + + def get_requires_for_build_editable( + self, config_settings: Mapping[str, Any] | None = None + ) -> Sequence[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_editable(config_settings=cs) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Mapping[str, Any] | None = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_wheel( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Mapping[str, Any] | None = None, + _allow_fallback: bool = True, + ) -> str | None: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_editable( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager, possibly " + "rendering your system unusable. " + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv. " + "Use the --root-user-action option if you know what you are doing and " + "want to suppress this warning." + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..3cbc049 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,44 @@ +from __future__ import annotations + +import functools +import logging + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +logger = logging.getLogger(__name__) + + +@functools.lru_cache(maxsize=32) +def check_requires_python( + requires_python: str | None, version_info: tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=10000) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/retry.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/retry.py new file mode 100644 index 0000000..27d3b6e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/retry.py @@ -0,0 +1,45 @@ +from __future__ import annotations + +import functools +from time import perf_counter, sleep +from typing import TYPE_CHECKING, Callable, TypeVar + +if TYPE_CHECKING: + from typing_extensions import ParamSpec + + T = TypeVar("T") + P = ParamSpec("P") + + +def retry( + wait: float, stop_after_delay: float +) -> Callable[[Callable[P, T]], Callable[P, T]]: + """Decorator to automatically retry a function on error. + + If the function raises, the function is recalled with the same arguments + until it returns or the time limit is reached. When the time limit is + surpassed, the last exception raised is reraised. + + :param wait: The time to wait after an error before retrying, in seconds. + :param stop_after_delay: The time limit after which retries will cease, + in seconds. + """ + + def wrapper(func: Callable[P, T]) -> Callable[P, T]: + + @functools.wraps(func) + def retry_wrapped(*args: P.args, **kwargs: P.kwargs) -> T: + # The performance counter is monotonic on all platforms we care + # about and has much better resolution than time.monotonic(). + start_time = perf_counter() + while True: + try: + return func(*args, **kwargs) + except Exception: + if perf_counter() - start_time > stop_after_delay: + raise + sleep(wait) + + return retry_wrapped + + return wrapper diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..3e7b83f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,248 @@ +from __future__ import annotations + +import logging +import os +import shlex +import subprocess +from collections.abc import Iterable, Mapping +from typing import Any, Callable, Literal, Union + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +CommandArgs = list[Union[str, HiddenText]] + + +def make_command(*args: str | HiddenText | CommandArgs) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: list[str] | CommandArgs) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: list[str] | CommandArgs) -> list[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: list[str] | CommandArgs, + show_stdout: bool = False, + cwd: str | None = None, + on_returncode: Literal["raise", "warn", "ignore"] = "raise", + extra_ok_returncodes: Iterable[int] | None = None, + extra_environ: Mapping[str, Any] | None = None, + unset_environ: Iterable[str] | None = None, + spinner: SpinnerInterface | None = None, + log_failed_cmd: bool | None = True, + stdout_only: bool | None = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess: Callable[..., None] = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("%s", error, extra={"rich": True}) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for BuildBackendHookCaller. Thus, the runner has + an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. + """ + + def runner( + cmd: list[str], + cwd: str | None = None, + extra_environ: Mapping[str, Any] | None = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..a9afa76 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,294 @@ +from __future__ import annotations + +import errno +import itertools +import logging +import os.path +import tempfile +import traceback +from collections.abc import Generator +from contextlib import ExitStack, contextmanager +from pathlib import Path +from typing import ( + Any, + Callable, + TypeVar, +) + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: ExitStack | None = None + + +@contextmanager +def global_tempdir_manager() -> Generator[None, None, None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: TempDirectoryTypeRegistry | None = None + + +@contextmanager +def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: str | None = None, + delete: bool | None | _Default = _default, + kind: str = "temp", + globally_managed: bool = False, + ignore_cleanup_errors: bool = True, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + self.ignore_cleanup_errors = ignore_cleanup_errors + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + + errors: list[BaseException] = [] + + def onerror( + func: Callable[..., Any], + path: Path, + exc_val: BaseException, + ) -> None: + """Log a warning for a `rmtree` error and continue""" + formatted_exc = "\n".join( + traceback.format_exception_only(type(exc_val), exc_val) + ) + formatted_exc = formatted_exc.rstrip() # remove trailing new line + if func in (os.unlink, os.remove, os.rmdir): + logger.debug( + "Failed to remove a temporary file '%s' due to %s.\n", + path, + formatted_exc, + ) + else: + logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) + errors.append(exc_val) + + if self.ignore_cleanup_errors: + try: + # first try with @retry; retrying to handle ephemeral errors + rmtree(self._path, ignore_errors=False) + except OSError: + # last pass ignore/log all errors + rmtree(self._path, onexc=onerror) + if errors: + logger.warning( + "Failed to remove contents in a temporary directory '%s'.\n" + "You can safely remove it manually.", + self._path, + ) + else: + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: bool | None = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Generator[str, None, None]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..bc950ac --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,362 @@ +"""Utilities related archives.""" + +from __future__ import annotations + +import logging +import os +import shutil +import stat +import sys +import tarfile +import zipfile +from collections.abc import Iterable +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> list[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def _get_default_mode_plus_executable() -> int: + return 0o777 & ~current_umask() | 0o111 + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, _get_default_mode_plus_executable()) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith(("/", "\\")): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied on top of the + default. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + + tar = tarfile.open(filename, mode, encoding="utf-8") # type: ignore + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + + # PEP 706 added `tarfile.data_filter`, and made some other changes to + # Python's tarfile module (see below). The features were backported to + # security releases. + try: + data_filter = tarfile.data_filter + except AttributeError: + _untar_without_filter(filename, location, tar, leading) + else: + default_mode_plus_executable = _get_default_mode_plus_executable() + + if leading: + # Strip the leading directory from all files in the archive, + # including hardlink targets (which are relative to the + # unpack location). + for member in tar.getmembers(): + name_lead, name_rest = split_leading_dir(member.name) + member.name = name_rest + if member.islnk(): + lnk_lead, lnk_rest = split_leading_dir(member.linkname) + if lnk_lead == name_lead: + member.linkname = lnk_rest + + def pip_filter(member: tarfile.TarInfo, path: str) -> tarfile.TarInfo: + orig_mode = member.mode + try: + try: + member = data_filter(member, location) + except tarfile.LinkOutsideDestinationError: + if sys.version_info[:3] in { + (3, 9, 17), + (3, 10, 12), + (3, 11, 4), + }: + # The tarfile filter in specific Python versions + # raises LinkOutsideDestinationError on valid input + # (https://github.com/python/cpython/issues/107845) + # Ignore the error there, but do use the + # more lax `tar_filter` + member = tarfile.tar_filter(member, location) + else: + raise + except tarfile.TarError as exc: + message = "Invalid member in the tar file {}: {}" + # Filter error messages mention the member name. + # No need to add it here. + raise InstallationError( + message.format( + filename, + exc, + ) + ) + if member.isfile() and orig_mode & 0o111: + member.mode = default_mode_plus_executable + else: + # See PEP 706 note above. + # The PEP changed this from `int` to `Optional[int]`, + # where None means "use the default". Mypy doesn't + # know this yet. + member.mode = None # type: ignore [assignment] + return member + + tar.extractall(location, filter=pip_filter) + + finally: + tar.close() + + +def is_symlink_target_in_tar(tar: tarfile.TarFile, tarinfo: tarfile.TarInfo) -> bool: + """Check if the file pointed to by the symbolic link is in the tar archive""" + linkname = os.path.join(os.path.dirname(tarinfo.name), tarinfo.linkname) + + linkname = os.path.normpath(linkname) + linkname = linkname.replace("\\", "/") + + try: + tar.getmember(linkname) + return True + except KeyError: + return False + + +def _untar_without_filter( + filename: str, + location: str, + tar: tarfile.TarFile, + leading: bool, +) -> None: + """Fallback for Python without tarfile.data_filter""" + # NOTE: This function can be removed once pip requires CPython ≥ 3.12.​ + # PEP 706 added tarfile.data_filter, made tarfile extraction operations more secure. + # This feature is fully supported from CPython 3.12 onward. + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + if not is_symlink_target_in_tar(tar, member): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError( + message.format(filename, member.name, member.linkname) + ) + try: + tar._extract_member(member, path) + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + + +def unpack_file( + filename: str, + location: str, + content_type: str | None = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..e951a5e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,55 @@ +import os +import string +import urllib.parse +import urllib.request + +from .compat import WINDOWS + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file://", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..b1742a3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,105 @@ +from __future__ import annotations + +import logging +import os +import re +import site +import sys + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_legacy_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """True if we're running inside a virtual environment, False otherwise.""" + return _running_under_venv() or _running_under_legacy_virtualenv() + + +def _get_pyvenv_cfg_lines() -> list[str] | None: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_legacy_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_legacy_virtualenv(): + return _no_global_under_legacy_virtualenv() + + return False diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py b/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..789e736 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,132 @@ +"""Support functions for working with wheel files.""" + +import logging +from email.message import Message +from email.parser import Parser +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d222fe1bed0cbed09eb3e63b28e93a094b6d3a7c GIT binary patch literal 543 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 I#psm(2BVL>ivR!s literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c9ce955920000d8f3ce20a12f393233126377bc GIT binary patch literal 19925 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..257d49e13365cc914631583173f854ee8dbc446b GIT binary patch literal 7776 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04c351359ffc397962cb6b740d7453b981433ab3 GIT binary patch literal 28750 zcmchA3v?S-dfp6P1PKrz3GgA3qK2d%gv5tlUOlXbWj!p}vh0=Yb(XdRL6{*02_Wbh zP!h3Zmb>dTve73xk3z%8sO%att~|iaV3eK_`2=23_p!9(1#}XVAmmRfAr^8i!67KlbI+T@Exwh=4UCwc!Hvo$C8YGOLfm{0Iq275pWG(NgV(&lU&7#ame-8D7Bg?~G1Py|D)9wYViiiXS|xUjJ0okdk)yE@ zIjLw;ESZ$Pbnukab3swHM0!Mur$;hsIvJ6)vC+}An)wNRE+Xo_*vLpa6U(5Cb|T`` zy~i?&8atCzj94bE>Q&FiMn@AP!x4vGEypskcrvDGx_c<0BxO`_9vB(dtBxnAVp8`$ zH%g7gl4!i{6snCV>ah{z4aMRLTBvz4CLc_vQs}5&e{4j{psVcjhgCJLM!b5>(S$53 zBQGeIGI}tkosW*jGH0X8rG%Ez^qMoV`1!HXsGLxBznsuUld*ADK=+2#|VJ=i@&pYT@X$Q5odN=jfCfMVINQogS zb5@Z?Vkt#Rrqky&DVaF0NHOWflgIm6=_7!U>ue@7s=F!Fbk|Sjme2;QM{lkzEL;gnM2g5Wf7%%qxqv zUHRIs`Rxm}J&Uyi`PzZ0BOm$d3&C)~SN}odV}I!ULGb&*eB)C&-%~l)Q_H9<#9b5` z56vmVfRl(^6($_#?D%060x@-%OLx*WA$&`aof9HL*M#d^!dvc1_k>gRPPk>f@!OHD z6$GTYF_)g~AC$}`<`6R`0ar11wB%LgwXuYX85qg**RZ05-n&^$Lhfjq#=o1*K8mF? z3af^+Ug=^Yb5@Ftj7uYmA}cb>7*&;_#3iXm=^yTwx`q>(O! zy4UQi?o^cvy5Igapc$*E*P)$gNe&9XrqSXdl*foSAgZ^pbqkb;+Tgws2P}?~D^lWU-IXgCYIM=l`*SRfMvwiB|M^&{2 zuWzaGI1Dks0O^?RuWk0TazOXp)*vXQVUZlBUGe_*v{& z(%2{~O@vDu*D^{<8dB3K*3{`_I?gtp)BP4sRohJ2U)C86(?e-wUSn-mXolvyMiHKKi1ZZ_f8pN9hrdJ`K7OU<_riX_W?Clq0 z>IfjEdo?680*@7#q{1NoUK2)owKZzJHmxRxqgGBWxPgrIQzLvWF1sEY2;adoX=|Ah z@S-#kSd1V?^izEj^^W16_6-DBh7CgF>Zxb%1f=Vq*)PWR&zoI&*|3l<_i*or*Hr7>(*R(P%0ykAVk?>i%f- zwXs-|CL$WWF0fBAGNm3u(<~T5M5Ddrb)n$$@)DF8$3N=# z@pb>8b6U704!UR!*?Re($- z#a{NCjh#mctr@{jr-VD++L@}nw`DGL+q=3DYMOTa8i!QG!9U~FGHS%F9!7EX2nA13 zKp)X-jUL1mFeuUMqWVRoYBaJZcvqgLq7s>;cz#9A|T*1LisOX)A9hB zv&u*uKdpxbhDTifdkBl@@**TINLvoYB|G;ZM|MHha^shWeu2;TC{^!NnJ|XjtqtYN?EWFMrE8pS8qlLTW)2Y$H$GK*`lR<2`m3giw*DXzibxGNIYYfdT`IESuf z|CZ6g!z0+PwJ{Jlk{f8t@6$$=cw#6K2e)t`!Ndp9J%f$z1+__ovRbSHDzJ8pd@0TN zf2{)VAxRhFeBO7{hqz>NkP9Y|OU^KqFj)&?RW5Lzg4T(Y=KN}f9u;dqWKd&_Pp1zg zAu&)jmRjr<5vTj%%=oDCa%mS{)xBo_PTa2n>PQn35p{JlCI*unl$D{_SQ3;g#<&%g z&`_@_epL6JQDYpg7AnZF8jWT_#Z2VDg5!x_qtaA; zN+{H?o|E5By_s6<*qra!oLjx+X45U#54_*^-kf-UOD=dg=RM5Hra>W43kv}MuolGS zUql29amA5OH6h)iBvg$*mBxMQ0d1TT)Z?gyA=5zFxQlZJ;SB@2pq@sSeehLAMz+B= zb|dX|D!UHBlyKJ)n~6fyBOY< z4{y79a3Q=i@83CnsNnU_x~>MV1oK{0!gNggR!#+`flmdI&IchON!Dz!p-lNh653l% zw%Bwb8vy5(E>g$)Vg&1oVcls|wBuI|hG*z0vW+$rD<)s18fy?>fe|i!^HL$yc(;Dd zyz9H(Z+qvm*Xnb@O*!u-J}CPdvG9w4{-8mfqoJ2Q3|pvn+4GK_<#uF$)0+Heq4bbq zP$G?vn}j$%rZR?;k^Pal(kq=A%NV-?#K(&S9b*q5^f_RYLFqSgA41$onq}Gvw39wV zB4!a00ciu*h_dN*Ot2#~G&UZd>tLA3agbnU%7I>19Q`XHc4p#RD5-TJ01^g-y71-6 znaRaqUq0A(Eq+V>LHhgYT(EB;cp~RL!KMS8pGRd%6_vz&@Es~%>Yy!7n*`PlLk=p# zOT0v>b!D81UKNeX={Pv1U^Hse%YhWL>ZI(^U9_#SF{-apb1_QvLf`<;l^N%2^eknh zD0qzm5^Py_IcG!PRw)?8KaF7d%fcrvuiFdJH`u-4>MAs~P922q=XvmOI0#pT~dlAU#ZQAh}+jRx1_pv4MBm-9O!c%%ShX zHr}TiDfM!dEv1H~cx@>@@JH3C?FU~}!}z2y#|Bhv&2~G2NhOsWtG4=!kDth+&4raQ)6b$VE6bnsKZSj63PH$FRfBLQAnjF zq5H-(MT?Fo8Hj$m2W*c56>gQG+*6;Wa>QC=5fDA%3^iMNcIG}*grvpO(`U6_1V4oy z&LdO@FZ*Zwi(V=3l@`4l^4<;CT;KCw_uuwDW^()=dRsX;G&VuhCEnQp;};P5S;(O| zY?Fa-sN-mX2{2G4V)dQIPa9EJe;L2CWg}rF-=%^ia&ub#OEbT;7+jwZu3rfDw$upS}J?Y*%XC0*0>;N7iX1?`|BvKeglEQak04iO(c{sTq-fI*(TePv#I0%kV+3A zz~I4dRTY}su1;Q={8SLDd#9f&_?bRsZpYjE-`xM9f76l^$#;WI(*Zu`1Z4BEAOVwL zDHcNoVJh*oPMZ?20!ItRORU7fn)Qh$p+p6W1{|{}nb{>6K16lD12xR`QMpv*7HQwH z^|pe7lhpN<`eN_xI7wzq^2#TdK$eVl^B6fj|qktnyUoEd{%j%e8I0dFs7a-hJh^|H*>C0US7qKXcpP-uLFdyf5<6hK;{7 zHhqXn&TV^p=bPZf*HX>nGsknQ9=oZ%cj?_rANrqIatr>AEAfSJhfzI(GYItqq@oLg z8mLS^Cd9qK26K-R8IikgY&!&;5+Kx!jhG|OHrkd#G5OD_iot>Vg0tJN?z@6Pb{6Ww zR|8i9bD4bI+9jvp?^-z$lDODN{xcg%f>wD&39r)1H!&0R0f3lvPB<$X1TB3V3`H(Y ze4{yI$$96h@!7Hmx&;v}Ragh_vlId6L**p_SGoDXivdAF>@ zd|*At{2@es9%c(zALhGaIIcGuCLFZ$pAuXGsoC%EvJmAFSO@u$RCh(hfnvId z5hYvaS`0w_7J`zkQ*SDt4$kOiJ0CJ*yvScsTf~_#O-8#^HeZhFZp>G(ajtD~Rd0S( z?+3x&LUY##bzMttWI?2=3qJ(hzkqg$WLB~&n*@cand}=h>d^CW@&;+V~soWFwLx82yV!E zH?T2dCnEt`chTe-KeDyVB?ZKTgsxZ3)G*1x*Wxw3CRmq;g zYPkw|Uizif$Xz7Hn>at{LrOOZ^j3-=DQiizw^C}6vaZBf5>SHjdJ^}oGIjC>W;Ur; zYTy#qQ*`{2BQT@5t#S=$YolCes~Msi#sB0@a=k4#jPkv5gDs^I-|mw`wv;BhUk*bh z(Ttn{xzU!>g4&zqCR@s?;+Kjsd5heP`mN~s)?%s|Lv9P4+1ehMy9&AO_|i7H)%K;; z@^-lmt#-(d$?bTrL5VNOt8FDDmeOHM=`4i>?}5C-?8&3w@=ke;4ccA!!Y)~|eW4pE z-EyZbW$m~pvRe<7E?M;)kcDZ$vcb&QXj0*toBsa(SK0d0YsW@3um|uhN~r0P6HIrf z66Tf|MhSbd<%!F$Ao3{sTZ!2NTWG8RG+;f@DvNJfs(e4OR*vkimv3?x&njSwxJDE# z2wW3ZdgMsjS>`+dmx37F=inrfmSR>zMdpXRB)HQLjIt719wGiohILPhA;;!A#CaFk z%EaB+JAVg#)?pNjsTqw-e~f;D+!ArsYj~67PE)c;tm2)DqDN8UosbV70P1|Ur*xY7 zA6U`_nNr(?uV54L3*nB%P5?z9r0&qZjZgx`7azN?>JKMLxr5>S4|x0QCbZpJ0f3 zokLZny{H77b+otI{iU*N%Ai9?Dp(Wq<*iqDuKwwD}X0kUd!maL~YW zQ!#d3^1NZ(c@Zfefn;FY{nUB06%(_#3m7=%53dmN)Jn9rY+ zwLx=N_7o?BJO?X@fVL9ujL)nNq0dDk+&hjNvCNm?S6NX9@((`*S2rITQEfvvl_qohglzEbQb(X7cQkifBflDRE@#on<= z>&y4WO<yoqGabiPNie@4M$RJ4jSsQ-czwopJiIa1y5FS7R3 z?MPz_+2|tI?=X>4Q{zBuYofAU6_!9*nKr`yB$@r5 zeLZiQ z%hyv2^#jwMJAw7{mu|M)+LL?!OSc0r!6h=-FkQnJm3`SzoGmI+H`slRzAl2wylKJJ zMxM#$49qh~4Q$EWOwBywVsJ0fV54NdVG9)NUpi!tZREk*J^0qQr8(4PaO%bq$OkbwaQ!=j~ice~?|if5iq- zaRrQQuH6KQM267+tOO5iC>CTX4I3?1q^!U-2EOe`)~qJ@reuH?n-nnL4#nif*f=o{ zY-JsZB{i6Q4JUFaUnDsVEeyFX8V3xdL@G6wp_2q`N)j3CJJcb?^baC@e&HGz zX}Q=8>#^|x6-*8Ok;`FH8XMsQ1K2UF*a#fIt)|gyHni9fltg^c7%^Oyz%(UBr6N@# znlQpiS)5Rc8=PY{GxHI)7n}O^=Kz1*MQxXA30Beh0&}3WyF^*P@zE6=&I3#C#XOpu zbdylmxN`Qb-Df?zQEDcFvd?iz)Sx687GSMSU@rOeVG0|mRa2@R8D*` zm{JRUPhRcAfiVq_uuZ>(`Xg zUTey*^=;cKLDf=HR94B;xrZGGiSK>|o20C$5vvjuq&v_vbteKy1a#(u)lmNlB{=Z` z-E}67qefiwqPu7_)!nR&?#jdx$ub||a1={}t!*qIQ%{`jF5AW`6?%#0oU{R$bHC8M z>gw>7;l-w&d{fW0@Iq7njBnaKogr=0S7*NZTk6{v-@N$tSKj=}LU7Xu!QJm-bUO_$bE4sG@l{Gr*$Etb!S_rUvV$SKOi@6QB(A08 zwMq-4=RA|)4DA)v>!QeM>k6aUM7Cpz5pa2&ek#(bu`?IU6K8ZvjK-Npii*Qoy^=<3 z7q*`mhG-4lHdOM9C#QI@R~Jx0mM$b>tP6d802XsxXCUpvksnRN!69sD+}qUF8th$Q zNtwH-njRa5Ge5>ahnghm2-L!9{8TM(Q(!*B^QW*;l30r|TTN+WaXJiRd;*hMHZf9a z47(`S*f>eg=2wcGB&WLCZmGvahaPhjy;z`p01@jfjU-)noZu3mK@W8gugJ8GB_xrX zG`FR^~LVm>^p*OY4QYrrC*Husi4N=8J$3-+V~&V8n40RsJuDBh0-- z94B3q?nxXdop8W78_Za;4ViwKGpi*XeH~>gNj7u{)ig-SE;2?jgPTPj&CbJ39VRZb zBqPqw$tu}B>6JYbE*KWqPq@xm2Crf**;8zv)pAXGC%jrPLm*?1T*dn8eaqI@N09e= zvu^PXIgF$+w_H8szG0Aha)X%gPE-w%mtjrzI~E>3h|U-^WCfK0u9K>QGjc^@PqfHF zVWX~XK^L(Vd>^adD?I{V)$e0O*{V}%SPFWj?0GWh#Xu2~M7ywhi7g~15)2;Wut3kK z$Q}@seVg`Rk!RBJbaLPBfq^|Jwy#%WN6g?IwTaFfA~`iq^l1Po1J8~h7#(H87mNLb zfObOdqYikfc{&4^O>tRoL{d_tnQ;pSQV-_`pNK%=mB6A#Cv2RmBKJ$jM&ijanS2~g zz)40OI<7hd0+dThW0|kDll5jOM;_wFM|5L%T8A)uq4pw8^6%da<%FS`B=Wb zXWCO}U$fZ0E#JQF=8;=R7TOQyy{pi2HJp8!qwnn6na2w)?Qi?u^vxfnBc#uO*%|4v5qK_AIB;0j*v;U$Y3u_f`mI`vxkbZTw!MrMD#`r~nm9rQ$nwx+ zHB48pq~$JiZ2yLh?LkVuO3bNAon8TKI1Qh0G0Mm&`DE3E=WD(U=sSNVJZ5?1R6eKZ zo~SbEGH7dM{grdV3oVtg8% zBmm_zh@k0JY@5XsTy*iMItGn%s7f3xo*Kpv_1{xK;))tV5UJs=1hlfjDYJ4+7qpp5 zd_=(=$_g4;CN8M|jAXJhZ%Mh>y=EETlO>Y<4n{CDKn=LyRo+ z3ph=g&~R-64wH_Jyf&83kV+doA|Vyq4d^!xN?YyV;87w;i5l46vqg6MzBm9us1rS5 zTZCT4o5KN2l{BiOkbnt2G=haOrL`kwp9oo2tp1YR>okpPQI|GYg9G{Cz)j~uaC^?XokN`B0w9yqk1Bz|AIT&#;2aXe7!w2VNSviYijfmTLvV}3!2QdsH8cck2u=vI=2#oFClv)b8&6lR(jom7m-}E*;YaRizv4}mwu1B`5`)+j$q*f_ zTR~UtWg+gJA#bno-I5iRlF9`I>O_-#ss9pyyYA-n@sAN_t3drRVtTbziyeSvRXDM$ zW<7-q`o(NZ*`!)Iw`fKUb!v-Uo%*?_EnC#+pMp$?Ni#u1s?*b_35usr6W~VExNL$V zr%wZ|PvbneHNbMve|`Wm(5Qb6NR$uXLzdV0S$Hv)9G&dv$^QxiH}%M^Ki|N=X?6d_ zQC#!_nh2|KQiVJ{-p4Lrp+(A8F~&?l;eL9jPuoWK{~iistZyrzz>_}&6x4f!P!R-i zCj#?9&V$!#_8n{N2B&AYx+e^U0(9BNu_q7_Qm(`90!_FL7IaqiA!txsfyD)DH-(w& zLt>X^&{8w(ZoFMHo8gG5HD$|(G{dDtkgmSry^JR0DC;Pk*Ge&GWs#3<%csGPMYL6z z4=F4GS#kMaV^KYD+px9;LpkcQxm4R*Gg_^rI4xQ-H98jyitIVp zY{rUjxRwj&NReIkoTCeM${uq>85}U+PqBZ{e^?Mfi{#&2_5gOSb5dC%ewsbi4%m9y zy|SF_s`%ZCy`ONG^oF+FvZwM)KB5Pf_JrMEQiSV%yYxo zL~!+3)nwI3zpZzbzUal6eui%rAtYB%Rz0Hang_J(Fl|6E8*DPiD*Gm?WIyT4=r$q5 zYbkEdGwHbG05NZBV}?{J>^awO#)@w_c!Q`Y9ypQX@Exo3#3OoIUkR4xx6w;7db6j9 zyJ-DqS?ylAf%W92%(j(nL4JHVUW6+3Z=%`;N3zqi=Nug^D|;}<)y2{LjQtL?em`mJ zVWoA}h*m35go^!!her`hQEyjSck#3GN*i}XnqmW(UTY&f#xG7I4H(~Ci9c231h?wq zHWP0BFs|Ps#z0jxW)CO1iC9;wsnUICrSWk$1g=<$8E;n@CW^c&KF<|+U_Y$uCd|$i znMS#fXz3g+F#!yM4plV2vg&d=6F?65JAidLkQH2UdNAP9*Tl>bPQ- zEX{FfNWpG10ka23d$M(mzoI^%^g0bEf!3ZnpJ12l!Tu4CK|f?NUI2YxCf!HuSbw&I z6)*V;9|esI4Lh>ydb9}R5~00KL`blL-KFPZBr!_wGZA)uo)mHEqNa-pUA(A^XR@0Q zS>gabU~qgTqcAk4G2Y*Pe5mbV%{$fq36QA&i-P}+AiL>>voPxGWgsW7>GoyI>BdJ>}}pyJjiG>Qh0 zbDuun%o%wL;5-iiTdjUftrrcNIM)ila!vh&l2i22W-v*`{?VxoE;*@xKt=u=1$Qa1 z4wM*2Lx^M3-H>pTic0K&`cn!>^`pC(&Fg>A@5d=1=1r}m9H%yptD4YSFqYV`LBsp%wl#RJ2wdJ(qh}TJdTYWTxi>gOL?Z9(=UGGa~HXc-hNH{UiNzSc5wHdx~8lCEB-=we<9q$PpS6g!#xY( zjd#K%%ZJw&!p--p-SrL7Nw>5wHuvY7(caCM-;2H*z1@8HPPp~zGgokiX5*cfwev45 zwBWj__O}CX25_nd)f$^nt#K6LWcHcc;p1?NuW!ER6dKzoD<>Vf9e%1% z*Yq(zL072TOb5uSuT&f7$nMm&&%Llv*Hx%%zvuHnKOPX8UKD4JSmmEY!O|-DI4^fZ zoIdigH*h&H6Dat15g3on94q*PxaO+52Ac11_x!6jzi_Mb-CZ{~<+}I1?|J{VKdN2` zJx$(Rp;_&l`|tRJmygaIojv)+aVv!#^qbrJPVddk!p1$f{d;j-Xm#~(CHMoZBB ztzBr|Fn!cID!BRgdv9eHwjO%_>}~&Zl={rfGq4ok*M9T()JAQk9froQeeygBJ98fQ5NAb7c>atTI;+&)5iY6DtS~Pd*A- zqY+oiY*hXLyR>cJ%)Ysv+dewDI=l0>za7`XT=vcQW{=Ky-&{5A`_TJ1M-tja%m>|h zh$i44SOB-#d}vCrE5n4EsQ~hmu>>7LJh}1`IMYS0xPug3+|I^eRE%M!$w}1uD18a{ zl@29_$KYaHp3qjxJ5wcLZ2+p&L<=H5{2!O~aslJudb`P3r97C&92fW=Sq%pUN; z_W3tbhhcI5j`)u~zfM;Wc&6-jEQ<(Cda4CG889vP6P^jOaFHgY?12rxdZGq|!06d2 zq1$%V##%vbh0H@eWe>Y=s6yY${UM4+a?!$u&)EX`hgWXf{gx#;e_hNF>%pECy(5{q zatl><4~UDxCFhrgi(@sFZ6IggSN5XY&Xw+)SXqhR@ILpmkFsUGMkzg>X3t&5A7hs|xhg7R7Zkw)6 zkAS-)pVm0!89mHzb4#DMCF0U&;~Pwf-PqW|IpwtIa4qtUFrRNX4aFiv;X=yw?27d;Sh-^FZ zA+;pYDBCO`Wgt^!rT1r7oq#5q&O~eGRej1OB~D&|*=ww6R+X$*%*ieZi_35_eFn{q z!!trV53u4qb%b9`N`At{#`~pH3i$RkS|&$c=3GcOh0`i$cS6HS1CF)0S9vtnpGXfV zBLnOn!OQ?o`Ec_M<>RhTMae1y-8lIJ9=xyE+dde9aD!<-oFG~ON6rb8ZbBt_m&3LJ zzSajU357XUsI-3c`Xc}{GK*Jk>cQtNK(K-lA3vewM0dt7$|@ZLQE@Rn z_9+UQDZst-g1U+VEL1_GRcuOycymL9PaPXEF9FZCmJwfDo`SWb{dcs09c#T1Y~z%_YpNJYJ<@W zJNs#T#ncDg00z;+jLyd`x>IIhh!rgW%yE|yD;on?%r5Su+0_SWsggv?bq-`wh0sgt z1sra~{Rfsj%5KTwE31?_(_QCaz%q_nF^8iP&O$`zv+K){`vJo6+l1(cF;XCUjd6oh zu5tTK`PRW7JoEi${xtN%mOpE`?LB#?C=veFnYV}E9DY0bX7bwho1ypG-fdgx*t-zi zm-Fsh$)^xzFr3+l$OA17)~>C>qwo|vrD9Qm(n?e`eI^0F~_>J~4<7A`=X5zo- zuO$$@WtuGJ1Y2|z0jN*Yk&x3ScV{UDXzIwd408hS0GlD`7;}9~K?Go$4LG?PZm}SM zOd(<(CXuuhoVKwM%DCtvPJc?l>U~O~^9~6u#SQ4zEv*m>3)3rRu!L;E19 zT`DRudLryPSEZkPW33M{N)T$)ck zQ2&A#VpZwm%&#ZgaFFvuWF|JRnPokBiHf__KckYYO_s{W;!%HSrLMJNl%I{*jy79S zqg}XNTUXh>`YPIfuCy-qczPLy>?M1p18^xm20`;x43XTF_{nH;P0H36|3pVg=bMpf zet@VY18#OT?@_T%ug!m8Wrx_X@y-824KNV=S1VQoMvYnoHX9K8-jAsyfsl!#x)Tzz z?a~L4sS?q2u`1KNv1utb?X~3>nxg2)!J>)|C=;2{kxQvJdS-3`Yf zO*w(*g(HzBwS$Omvvqw1z-z-4bq#%=p_N22)^XxtvR%jdpI>=-18Z(Wue5=Nej-X8~`?D@)GmL9u z-6PhCca%Ykjn>7sm~yOMSAIVRn-a2Gs5sPQT#}KYpTuahlli)j-4xAFjHx#%nH{Hm zk79p_K=*^?#a|FHN(@o@pHMJL0Xac3mt5w+$9?ubrZn;`;tE}+{Ut@K%9ONBb4yAL zwT^;6pbU~&)lT}!2;5crd6WY3J78R*`j03^!F~MGLfF4>8;7rU>QEt2Hw9H;!_=|6 zYdWW%nvO2GI`6LAF!k*0{sq^DLf87K=Vk{NTppe3>7ET-uUWsuqEH)p>M1pB zC5DYOmwTg;h8T2~RIbq-GSU!R>K8l>pE|1CU6j_a#9|FTcOy=Ldg|{Ud3woNgRd1D z+KtGTgFJG#I`pZVvW&JU3UW*z@VFm05)oUfL)wy~!M(Q7*s|oLch@@hzFWQZQ#XDa zWf5EIVfEYG-9{Q>OS@SIUG4@-LkB75uXS%(>R=ge_hUu|V%DgiG`r<;KPfKx{q8R4 zdzYN_?&#s~9S8XP#24B7ZguUl8~Hc`(b~4;t95tX4b(5W@rGtH(6UrTF|W`hEmczt z3f5*;3P7z1EZ0(6&(B>GLjl~pd=daHiiKYi-G{|x)luW#V*u8eB@{qxsex5;S(OlD zGmKuY?ku!+6!sh}JhrRQy`ix63x!Psg*DxU_Rgi|9qz#0+O7zJ$AeI8;OV+GgfQh?k5h!_JsnK>>h2#h_w|LYAjLjRD4* zt1_!-iMtW#eyGy$=ZA2P4(Gm@ODFzj6fud6OVj#eXX2`hzC$`_)k97BtUs5fXezm- zs$NR=;PNy20Qs}1H58DPskf3SZTSYCl_V;?rL=%@DX#G2PfQ+G0~N}U z;YjO;ZXm9*9kPzTMph+mlL}Fc%;W42g)nWc-ckA$-U3uOFdo4hQ)AcObMc%B>aD0v zHy6{@l2N@HO1tCiPm6H6zMFF0j00e^qI*rgg8c<1b_AaN?GL^BusIy{5OwHj3fNwL ziDKma!YOJgmA&uX!~d?vK6NK%3I7Y)V+bL}isDDYz<(6Fek=rjBvk)MsQr;p^CKbj zm%@&`u;VXUr= zpcpKG$gp=y8-H)==kJ|QviDuLciD|{OKV%j&8#rJJ35z~c;9sgm)&^Z+bxRKbCG)j zUiZ9Cv6 list[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + elif verbosity == 1: + flags = [] + else: + flags = [f"-{'v'*verbosity}"] + cmd_args = make_command( + "checkout", "--lightweight", *flags, rev_options.to_args(), url, dest + ) + self.run_command(cmd_args) + + def switch( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + flags = [] + + if verbosity <= 0: + flags.append("-q") + + output = self.run_command( + make_command("info"), show_stdout=False, stdout_only=True, cwd=dest + ) + if output.startswith("Standalone "): + # Older versions of pip used to create standalone branches. + # Convert the standalone branch to a checkout by calling "bzr bind". + cmd_args = make_command("bind", *flags, url) + self.run_command(cmd_args, cwd=dest) + + cmd_args = make_command("update", *flags, rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> tuple[str, str | None, AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: str | None) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..1769da7 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,571 @@ +from __future__ import annotations + +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from dataclasses import replace +from typing import Any + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> list[str]: + return [rev] + + @classmethod + def run_command(cls, *args: Any, **kwargs: Any) -> str: + if os.environ.get("PIP_NO_INPUT"): + extra_environ = kwargs.get("extra_environ", {}) + extra_environ["GIT_TERMINAL_PROMPT"] = "0" + extra_environ["GIT_SSH_COMMAND"] = "ssh -oBatchMode=yes" + kwargs["extra_environ"] = extra_environ + return super().run_command(*args, **kwargs) + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return (int(match.group(1)), int(match.group(2))) + + @classmethod + def get_current_branch(cls, location: str) -> str | None: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> tuple[str | None, bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options = replace(rev_options, branch_name=(rev if is_branch else None)) + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.info( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: str | None) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest, verbosity=verbosity) + + def switch( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + + extra_flags = [] + + if verbosity <= 0: + extra_flags.append("-q") + + cmd_args = make_command("checkout", *extra_flags, rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest, verbosity=verbosity) + + def update( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + extra_flags = [] + + if verbosity <= 0: + extra_flags.append("-q") + + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "--tags", *extra_flags], cwd=dest) + else: + self.run_command(["fetch", *extra_flags], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command( + "reset", + "--hard", + *extra_flags, + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: str | None = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> str | None: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> tuple[str, str | None, AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str, verbosity: int = 0) -> None: + argv = ["submodule", "update", "--init", "--recursive"] + + if verbosity <= 0: + argv.append("-q") + + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + argv, + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> str | None: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..c875803 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,186 @@ +from __future__ import annotations + +import configparser +import logging +import os + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> list[str]: + return [f"--rev={rev}"] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + extra_flags = [] + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + + if verbosity <= 0: + extra_flags.append("-q") + + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", *extra_flags, rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + extra_flags = [] + + if verbosity <= 0: + extra_flags.append("-q") + + self.run_command(["pull", *extra_flags], cwd=dest) + cmd_args = make_command("update", *extra_flags, rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: str | None) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> str | None: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> str | None: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..579f428 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,335 @@ +from __future__ import annotations + +import logging +import os +import re + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> list[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> tuple[str, tuple[str | None, str | None]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> tuple[str, str | None, AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args(username: str | None, password: HiddenText | None) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> tuple[str | None, int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith(("8", "9", "10")): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: str | None) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: bool | None = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: tuple[int, ...] | None = None + + super().__init__() + + def call_vcs_version(self) -> tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + else: + flags = [] + cmd_args = make_command( + "checkout", + *flags, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..4e91ccd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,693 @@ +"""Handles all VCS (version control) support""" + +from __future__ import annotations + +import logging +import os +import shutil +import sys +import urllib.parse +from collections.abc import Iterable, Iterator, Mapping +from dataclasses import dataclass, field +from typing import ( + Any, + Literal, + Optional, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = urllib.parse.urlsplit(name).scheme + if not scheme: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: str | None = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> str | None: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +@dataclass(frozen=True) +class RevOptions: + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + + vc_class: type[VersionControl] + rev: str | None = None + extra_args: CommandArgs = field(default_factory=list) + branch_name: str | None = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> str | None: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> RevOptions: + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: dict[str, VersionControl] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> list[VersionControl]: + return list(self._registry.values()) + + @property + def dirnames(self) -> list[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> list[str]: + schemes: list[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: type[VersionControl]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> VersionControl | None: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> VersionControl | None: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> VersionControl | None: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: tuple[str, ...] = () + default_arg_rev: str | None = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> str | None: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> list[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: str | None = None, extra_args: CommandArgs | None = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args or []) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> tuple[str, tuple[str | None, str | None]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> tuple[str, str | None, AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + f"Sorry, {url!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + f"The URL {url!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL." + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args(username: str | None, password: HiddenText | None) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: HiddenText | None = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update( + self, + dest: str, + url: HiddenText, + rev_options: RevOptions, + verbosity: int = 0, + ) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: str | None) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options, verbosity=verbosity) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options, verbosity=verbosity) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: list[str] | CommandArgs, + show_stdout: bool = True, + cwd: str | None = None, + on_returncode: Literal["raise", "warn", "ignore"] = "raise", + extra_ok_returncodes: Iterable[int] | None = None, + command_desc: str | None = None, + extra_environ: Mapping[str, Any] | None = None, + spinner: SpinnerInterface | None = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except NotADirectoryError: + raise BadCommand(f"Cannot find command {cls.name!r} - invalid PATH") + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> str | None: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py b/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..4dbf767 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,261 @@ +"""Orchestrator for building wheels from InstallRequirements.""" + +from __future__ import annotations + +import logging +import os.path +import re +from collections.abc import Iterable +from tempfile import TemporaryDirectory + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BuildResult = tuple[list[InstallRequirement], list[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_cache( + req: InstallRequirement, +) -> bool | None: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if w.name != canonical_name: + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {canonical_name!r}, " + f"got {w.name!r}", + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {dist_verstr!r}, " + f"got {w.version!r}", + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + editable: bool, +) -> str | None: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env(req, output_dir, editable) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + editable: bool, +) -> str | None: + with TemporaryDirectory(dir=output_dir) as wheel_directory: + assert req.name + assert req.metadata_directory + assert req.pep517_backend + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + wheel_directory=wheel_directory, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + wheel_directory=wheel_directory, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + # We can do a replace here because wheel_path is guaranteed to + # be in the same filesystem as output_dir. This will perform an + # atomic rename, which is necessary to avoid concurrency issues + # when populating the cache. + os.replace(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + return None + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Record the download origin in the cache + if req.download_info is not None: + # download_info is guaranteed to be set because when we build an + # InstallRequirement it has been through the preparer before, but + # let's be cautious. + wheel_cache.record_download_origin(cache_dir, req.download_info) + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/README.rst b/.venv/lib/python3.12/site-packages/pip/_vendor/README.rst new file mode 100644 index 0000000..a925e8c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/README.rst @@ -0,0 +1,180 @@ +================ +Vendoring Policy +================ + +* Vendored libraries **MUST** not be modified except as required to + successfully vendor them. +* Vendored libraries **MUST** be released copies of libraries available on + PyPI. +* Vendored libraries **MUST** be available under a license that allows + them to be integrated into ``pip``, which is released under the MIT license. +* Vendored libraries **MUST** be accompanied with LICENSE files. +* The versions of libraries vendored in pip **MUST** be reflected in + ``pip/_vendor/vendor.txt``. +* Vendored libraries **MUST** function without any build steps such as ``2to3`` + or compilation of C code, practically this limits to single source 2.x/3.x and + pure Python. +* Any modifications made to libraries **MUST** be noted in + ``pip/_vendor/README.rst`` and their corresponding patches **MUST** be + included ``tools/vendoring/patches``. +* Vendored libraries should have corresponding ``vendored()`` entries in + ``pip/_vendor/__init__.py``. + +Rationale +========= + +Historically pip has not had any dependencies except for ``setuptools`` itself, +choosing instead to implement any functionality it needed to prevent needing +a dependency. However, starting with pip 1.5, we began to replace code that was +implemented inside of pip with reusable libraries from PyPI. This brought the +typical benefits of reusing libraries instead of reinventing the wheel like +higher quality and more battle tested code, centralization of bug fixes +(particularly security sensitive ones), and better/more features for less work. + +However, there are several issues with having dependencies in the traditional +way (via ``install_requires``) for pip. These issues are: + +**Fragility** + When pip depends on another library to function then if for whatever reason + that library either isn't installed or an incompatible version is installed + then pip ceases to function. This is of course true for all Python + applications, however for every application *except* for pip the way you fix + it is by re-running pip. Obviously, when pip can't run, you can't use pip to + fix pip, so you're left having to manually resolve dependencies and + installing them by hand. + +**Making other libraries uninstallable** + One of pip's current dependencies is the ``requests`` library, for which pip + requires a fairly recent version to run. If pip depended on ``requests`` in + the traditional manner, then we'd either have to maintain compatibility with + every ``requests`` version that has ever existed (and ever will), OR allow + pip to render certain versions of ``requests`` uninstallable. (The second + issue, although technically true for any Python application, is magnified by + pip's ubiquity; pip is installed by default in Python, in ``pyvenv``, and in + ``virtualenv``.) + +**Security** + This might seem puzzling at first glance, since vendoring has a tendency to + complicate updating dependencies for security updates, and that holds true + for pip. However, given the *other* reasons for avoiding dependencies, the + alternative is for pip to reinvent the wheel itself. This is what pip did + historically. It forced pip to re-implement its own HTTPS verification + routines as a workaround for the Python standard library's lack of SSL + validation, which resulted in similar bugs in the validation routine in + ``requests`` and ``urllib3``, except that they had to be discovered and + fixed independently. Even though we're vendoring, reusing libraries keeps + pip more secure by relying on the great work of our dependencies, *and* + allowing for faster, easier security fixes by simply pulling in newer + versions of dependencies. + +**Bootstrapping** + Currently most popular methods of installing pip rely on pip's + self-contained nature to install pip itself. These tools work by bundling a + copy of pip, adding it to ``sys.path``, and then executing that copy of pip. + This is done instead of implementing a "mini installer" (to reduce + duplication); pip already knows how to install a Python package, and is far + more battle-tested than any "mini installer" could ever possibly be. + +Many downstream redistributors have policies against this kind of bundling, and +instead opt to patch the software they distribute to debundle it and make it +rely on the global versions of the software that they already have packaged +(which may have its own patches applied to it). We (the pip team) would prefer +it if pip was *not* debundled in this manner due to the above reasons and +instead we would prefer it if pip would be left intact as it is now. + +In the longer term, if someone has a *portable* solution to the above problems, +other than the bundling method we currently use, that doesn't add additional +problems that are unreasonable then we would be happy to consider, and possibly +switch to said method. This solution must function correctly across all of the +situation that we expect pip to be used and not mandate some external mechanism +such as OS packages. + + +Modifications +============= + +* ``setuptools`` is completely stripped to only keep ``pkg_resources``. +* ``pkg_resources`` has been modified to import its dependencies from + ``pip._vendor``, and to use the vendored copy of ``platformdirs`` + rather than ``appdirs``. +* ``packaging`` has been modified to import its dependencies from + ``pip._vendor``. +* ``CacheControl`` has been modified to import its dependencies from + ``pip._vendor``. +* ``requests`` has been modified to import its other dependencies from + ``pip._vendor`` and to *not* load ``simplejson`` (all platforms) and + ``pyopenssl`` (Windows). +* ``platformdirs`` has been modified to import its submodules from ``pip._vendor.platformdirs``. + +Automatic Vendoring +=================== + +Vendoring is automated via the `vendoring `_ tool from the content of +``pip/_vendor/vendor.txt`` and the different patches in +``tools/vendoring/patches``. +Launch it via ``vendoring sync . -v`` (requires ``vendoring>=0.2.2``). +Tool configuration is done via ``pyproject.toml``. + +To update the vendored library versions, we have a session defined in ``nox``. +The command to upgrade everything is:: + + nox -s vendoring -- --upgrade-all --skip urllib3 --skip setuptools + +At the time of writing (April 2025) we do not upgrade ``urllib3`` because the +next version is a major upgrade and will be handled as an independent PR. We also +do not upgrade ``setuptools``, because we only rely on ``pkg_resources``, and +tracking every ``setuptools`` change is unnecessary for our needs. + + +Managing Local Patches +====================== + +The ``vendoring`` tool automatically applies our local patches, but updating, +the patches sometimes no longer apply cleanly. In that case, the update will +fail. To resolve this, take the following steps: + +1. Revert any incomplete changes in the revendoring branch, to ensure you have + a clean starting point. +2. Run the revendoring of the library with a problem again: ``nox -s vendoring + -- --upgrade ``. +3. This will fail again, but you will have the original source in your working + directory. Review the existing patch against the source, and modify the patch + to reflect the new version of the source. If you ``git add`` the changes the + vendoring made, you can modify the source to reflect the patch file and then + generate a new patch with ``git diff``. +4. Now, revert everything *except* the patch file changes. Leave the modified + patch file unstaged but saved in the working tree. +5. Re-run the vendoring. This time, it should pick up the changed patch file + and apply it cleanly. The patch file changes will be committed along with the + revendoring, so the new commit should be ready to test and publish as a PR. + + +Debundling +========== + +As mentioned in the rationale, we, the pip team, would prefer it if pip was not +debundled (other than optionally ``pip/_vendor/requests/cacert.pem``) and that +pip was left intact. However, if you insist on doing so, we have a +semi-supported method (that we don't test in our CI) and requires a bit of +extra work on your end in order to solve the problems described above. + +1. Delete everything in ``pip/_vendor/`` **except** for + ``pip/_vendor/__init__.py`` and ``pip/_vendor/vendor.txt``. +2. Generate wheels for each of pip's dependencies (and any of their + dependencies) using your patched copies of these libraries. These must be + placed somewhere on the filesystem that pip can access (``pip/_vendor`` is + the default assumption). +3. Modify ``pip/_vendor/__init__.py`` so that the ``DEBUNDLED`` variable is + ``True``. +4. Upon installation, the ``INSTALLER`` file in pip's own ``dist-info`` + directory should be set to something other than ``pip``, so that pip + can detect that it wasn't installed using itself. +5. *(optional)* If you've placed the wheels in a location other than + ``pip/_vendor/``, then modify ``pip/_vendor/__init__.py`` so that the + ``WHEEL_DIR`` variable points to the location you've placed them. +6. *(optional)* Update the ``pip_self_version_check`` logic to use the + appropriate logic for determining the latest available version of pip and + prompt the user with the correct upgrade message. + +Note that partial debundling is **NOT** supported. You need to prepare wheels +for all dependencies for successful debundling. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..34ccb99 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,117 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("dependency-groups") + vendored("distlib") + vendored("distro") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("pyproject_hooks") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("rich") + vendored("rich.console") + vendored("rich.highlighter") + vendored("rich.logging") + vendored("rich.markup") + vendored("rich.progress") + vendored("rich.segment") + vendored("rich.style") + vendored("rich.text") + vendored("rich.traceback") + if sys.version_info < (3, 11): + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12242e73679a3aae118ba115acb7586f130ca0d2 GIT binary patch literal 4606 zcmbVOU2GKB6~41`_t(4rHwMhl7@MDkcozfaFAgb=9UPT_+Nf<{)$ypB53 z&OP5b-#z#4x#ylU|41Za2%aAGzxe|l2z@I+?Fm(d7hht8ZXq2_AYIV|rcww@1Qa2w zraGbeBc2HQV`w6z#VSS6{RYYxE@*ztX+eIzVDwnK>B`*uIg$Jg1sd4aBZJT1xF+tm2gbL z_5WL)AD8S22{%i)MZ&ETZj*4kggYeMDd8>&Z<27ggf~lgi-fmIxJSa?*eG=}M@NNn3k?>v#?~`y+!uutBK*DcGctFA_38y7|P{M-}J|yA85WWtw4YQ!rGJQJmIvVu6Jea|W?BI;8L>D`w49EcUKpf)}G`8#<{vtFLV5Y01>JNuuSbPhdpXj6$Krvy&##vPE61QfSdE z120yx^ehJwZ09mzwgJ<$DMkxg$+9^k*+MGzRD>(3crDpUo0=s~GDg9ojGucqSFM_U zJVkv};rHTW&_YdDW>#B$3PQYE0};B0YV~kVi6S1X5c%D=KUBz&&*ldWU!v z#Qjbq4;}@TQ6J*%6@*YfVyc2Jfc6Tys$M`>lw|0f6aM7jTZu5OGUkOK2Mby5MKYOUwm>o&FP5pE9LV8mlTKz$+Y6aACq~sS+g`Xp^%A6)7h<+$ z8r%!pgl9QtUekO2nU66>SrU7(3Q;)r5|u~speT~3?EWZEk8JS`qh4IWC{1}6hB zc{V!@^WmPPt9LC8f2nBjOeSTOy+~~%tQ*!9UD&<>uX*&ibNi#t{-w_TKYe)DS?)YJ z|NaVY363aFBJDR%{{G7E%J=px?)z)+!^rT<&1g^Z&lmrA@&4AO-NT=%H=3?D-F$y3 zvg>izu18(TrLN@NzPp!}y9Tev7Vv`pB+~L*^;XkoO}9svT6_O+LdcNqnKe3ej z(Zk5;|Gex$@$Tm+8caNEN72Me2S~4Mkvg|`j%esBEjsds`qcpi-cE3T>Pp`9;<;=t zPvG`)MollABa9nUhSOFrA?1N-M&WXLVcoDf#K{W@fl)772@sSEr>!nRIQ?7gbiP*E z7RiBAFn9@Tb~?j|O-l?;#*15KmW#a64KPM5MyJ7Odo5NO+>LB#R|>Y_d{3~ zrKZ!{kja@b>FnQ-k}7f&t_HX}urb#vQ|JV?Z8{D9%c?kP>$`;WGj-e9)resdi`u*q zr+z%?_5IX1Dav#L4JD%+Io{~d>Jx0^sx$Nh978}dP^xly$S#|UqT-DGU(-^ez?q}~ zT@^|TEjqg!xPdb(WQ$NySffm+I%pI`xFQy0J#ludzgmeKrju-JPp!)026sZZO4YWt zcLSI8y){U@iC!uK_SD;$mN~5c#BYg zo;a;O${W*p6Mpa!RJEIQdRkPvCf{Djve}a5Bz#b-T2-b^rbRwDG2dwOGI)*pGKa4! zr@10B=uDH)V3L8Sq76T7f|nQMv|t)ujI$DyI!+n!!quXcZ1uvKj81cvzB*OnB?di~ ziOC)o&D9H2J7r~g-V0EhC4@dYIyUmNbE9X+Mm_9X!thB|5uo7u%@n%z6nx-;*XS?C z$HvZPM&J9X-_ATdLye*ruhw&DdsFla^a9)>wh3OZBEyxQe2N_hC_V!0OYm*5qAH5= zED%!gznhV=_gmET4Ql=d#a3b{(LNttiK9fzjWgHJ+&F*z{Oys?&)hll`T0BN?~X5T z8(NMZosT|`w<{yc^CJi+Rzj#_+s*!4$I$}O?`<`7mtBv1u4xtUm_)_{Y(7u zBQ75DdG+<`z6M;J@=eEGd}6Jyqb@$?YwBA$qBHqj2|9xcm0re};R%jg!#2h`U$j L6vz^G3{vlZ2!7SS literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt new file mode 100644 index 0000000..d8b3b56 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt @@ -0,0 +1,13 @@ +Copyright 2012-2021 Eric Larson + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 0000000..67888db --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,29 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" + +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.14.3" + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.controller import CacheController +from pip._vendor.cachecontrol.wrapper import CacheControl + +__all__ = [ + "__author__", + "__email__", + "__version__", + "CacheControlAdapter", + "CacheController", + "CacheControl", +] + +import logging + +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ca9cab0427cd9e946e33d71356563fca1c5233a GIT binary patch literal 915 zcmaJ<&1=*^6rb!@Hc3BKicl;8q3a$tu~rY3s;#A-m1OzqA%NBx)+_po8No$K7Q}L`8+vkA~^HKKg|yXguds> z=#+-w;v;~!h$0VB&C_VXE6}1>q$OGwrLgRkH3YaKDxvP_1FVZ`Xn2N(0z|9tHP3{1 zLs*_wK+M{|Jt}a0v&lp4O54A4Z5^RO)WS%+z7L0R6sw`GQ8#0M3Y&+q zRH^+kN}1XtK66a-6=^Y>r#2%=*G}cgWlzb__VZYO7~A1#Q?^rE$SANQ60#(Q42fg* ztWCvzdyA+XS7a93|zoGJ#H2Q)5N%` zUdc?1NgGHgj57mc77{K1S{NTNl|V_1RS}A)d|9dtV!J+*=@?V#!&4=<>ba?}QS6P~gLEU-lamblQPI~;{OJ_;9O9`O`oC+=QWS3^nL zf<0ApKp_93$!iejMNQLwnMJL1ZlbCAzIi&a&^Jz}=K9tTw04G`ouS9SOS)C)>lZhW uHvJ9F_Vp7qdxU1++&f0|Cus2qEq7fK6rS~t?X}l-9Fjn2elR$N_z+tZ+9KMfP2-RhfjJ2MLF~qDfGgneKWfo8yY(D&b)c^ z=Iz_}y&wM)4hIp8A^xAj&pw16(~UbkHoLmk z<6+HP_GNvH_GHNfLpA5si>hY%=@%FEyyZ>LynlYy3NM&MmCJLouE2*{L0M588vNid*ldH^8GELs zE>*|{<|HGvFf%bf_5SM<3lyQ;#B@bbr72z3>PFE>B`>P_#gtb3G*zveg^GS8dHA)I zQ8d*F@bCpWuNtXpv6_-VOsSAmjv|$_kxEIqvXZRUtuWYJt4fZ&q#sP!4Udt8sfpHc z@amb%XTF|YK7I4_Dn76t8E8l1tw?+&@@jJyPTP2(g$HirAK}q0xPhL-kYd3w{0WF| z3{8qI8?Mh44x$|0_uO-k1PnS@?S!dwe~DYcuQoylvGpB8&(j~q$q2}1|SLtgaK5-PyApf zp|MA(TFbwn8U|#ZPQSY!|)g%!2~cy_OA=Q*TviY55|5Rd&+xye9hUXJ{0P2i$g7OXhj@prq{4=_2lJ~ z*Xp+p0n+ZSaqG=h9RGbd-X2c2hLg?oD&D&$_B2nC0Z{!M+!Q(n_a{Jf!|j5+1gTTn zh8~2R0pNS?^IdSE(l+?63_`9J00Cz#zDBgh;JJbtJOAN)%&f#rQjb9%#hBM1t8hWp zstKM@tE>D%8dIbn_E@rs1Ea^-S5{2xls$4Z9LMKAsR6Xef|u+ zX!$hiFhR_Seb+dwvn~-(Uua13r>_&Qd?&ciJJjg`vt}ACY1r!Lkg^`vp zvdJUw0El`A+Bn|A@!RRU^LOSSjQueF-S{eg3r>W=w*O$ufAF?>ck#~Rs{iP^5WZG? zBnd=F^X)U_y&qSp}+Sw(9sR_#vgoi10Q&Tr?-4Ow{I&H;G$cD djOyq1Z6*;8U2FWx@BIx6Uz`AB@hj|&{{pZ$O>O`H literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f70012b2f1c0478d549577a4c409f9531e54e60f GIT binary patch literal 6721 zcma(#ZEPDycC*W`B}IyqNJ*3^*|cQErXo{{E!&Bc$kvxFJC3YcbP_Xh7c{xDNG(a- z?9#GSDrX!5oD^JYxyZpX`oj+TaXvUeeMQkT?oZRh9j-wCn3k?$Hy6Z*Yku56US*?c z{ReA(ID^>WM8@=+K_IHHZr_jZc6*3eg->$Pjj@H z!8LMAIuH#o*eSQB+oEk8;mIkIaD6}$wUYC`NnclV*Bl>m{~jA5POFJ!GFdgICbJo3 zEM(SPk&ELa;?U^G&>N@6PHCor%$(*J%F417$1$4i&DhLLGIIq8s1z9^v3DpY z%a>#E>61xWdYi%=(9LV^aVpKksFXM_eJ3X=swSM5lo=3J0vadIzo~5>j46^X0H?XI zF)HO~Qc;s}810ylXfh@z=Or4~H$pGXdc|#g2Eg~>yd@Il5+uq`!MXnx7d6>Q^_Q?# z;hms_ZIMiJ3H}3D)Vz62LfG8;Hk`0CIup=Y5SwspGp2@(F~b;Z!pUIE2hJ$Wc#Vq+ z6C~uqorEJOZ*KW?`tj&B)A)smW*Hxd42^2m;gPc=k&(DfUp*^P@7;uO8~+Hv54l@J zdG5MHE!zqq_sc^wT%OAlv8-!AVS!e8kD+C~#wk4L zD2}Pn=1tIR<%sGu=3B7yByZ1?l-1~|)_Fc}{**Vg8TeGzFh@eBF*s_|sgVdMPfZ+m zLX_0l6-9F>mE#WynnlThf@y*%CNoJ@6saBfYZgYJ*{2M((dt-F?6NG0X-S>RCKOtO zBOURo^44f(MUp4!E)&L1X0vo!nTf?ErDtN~z}bPp!v`kNeB%d(vI$8X$i(D1C8_j;uS%J# zJ#zAL&&(VMo;ehL>0pnNRHXwzJRQ3N^fSqs9ubBmvb2Y-vn)$bOtx5;|!|s)~|UN2MyN zRqe}j_seFnV9(pB4=7z#tO0=$*c1GxCPPgpz+6(b2DVzK>Z-5-?I4TSz*p<4EQU;A zL_Pz*R0BqP0E~_UlQHGZV2alJWrJF9>l3-*iT2eY%} zn&~2$=Wy_XA_dhc$><0sGm}}GX7MGcW`l|(1(TD(q*`Gh zT>}rTz&J+6^e`9$o;swn(p^3h&Pu_IBqflQJ}48ea2kuCo1diFw8)40f)B_fV8(WA*bMGgMWs?Kt=ZIMTFT~B&3YBw(BzzEj!RV4Y%?@_Eh#CwoOUJ} zIvdShk+Lj_8D*mTfVqNB(%5~duhad|LHnSX_YZAjs3_PWB>a0Qz(`B2q~V3fzT@|N z>!IU?(D6lkv8Mh;|5E?T#X`*sCEn!PS8RXbM?IhPthb*iw4eB_X|?_IvilEK;@Mqn z3amGE6`H#49er@_(Rk!hQ`c(Kg-4zXB`b0HZk$^>x9)5&INR^`{pk27$JaYf7CKIT zHoMw!Zp}IVA8y~$>{5Q^)ZMr4z5QVFVdAq>tM0Rl<|l6NV$Ii28;H+;>)6d>|4BF| zz+bpaCV;+C&_X^547QS=w>Av+nSOqVgEC$T9)Ly7Wxk*rZ1{)V_Z{F3%>So1u;fk4 zoRZtYCs?kMWsXj6Z-+FnegC$;f;a4PfzR`)imidX+rhK&_sgDa z!J4<``5Z_21ixT{86bRb{Su~6&4v`<9r^7%juE^8Z(ZOszgH{1W_zg(epO!sUbJn8 zH8gFNNcTv_8aR^qi3%yW{=s}0LbrS>h9UN)Fx+hUc9^$u%P?r>ITf7%`%-ABTfThd zybQl>NSWuwikAl&_iiDCCLM$R7rxz}Li616eOO8D64pfrB#V&5E!h6ZDsBI7*~{7i zGFM`O+GU8qqQb@J&tS*sNK#>gu3E!cNAp6ex7uSsum@b~pwX(<*ZDK#dyw*NtK)~O z;|yqfE{4`Y+$E_a#@K3|dZh{*P~L7(fo_}ff>_a{Jf_RG`M+@(zH|_MKMQ5$aC3Ps zn2t@uU8fq~f>|2ODcFU9i8<-8qrxFFl~jVWNm&kJP|VH109nSt=z>|iqLP}U8J*=! zR+Ta;TuJ1)3J2ZoL-5o^sPrd$A?Jvkg!opQkm8u=VXg+`apLdRKt)7a^ z_MPLmkKcr~K4hlDP|bJX`lvJ+J}*s5RLaDq z$lQ$d?&f>zCC#cUg=QYhW~9(AmJ85sAZHf_%>s8}c}{~&BBtgPJ&9>Fb_m1$rhEmm zgjhmzQc0HJ_KP}_(M(CWW@BtAr#_YJhGHT?2N7eR%w^#2k(CulNn#Y0QnQt1*G#Yg z&BhKxO0X1!okc)0!zqWlhg(L;%?xNwX$EK6o>D z5opU96GbPW35MP?l)e#o9P~9T*rcx`^bQsySZtFJohT#egl&;G{Ow(jdJ_&SUJ);sRo?sfl>g8#@v+b^1a75L}C zzr3?L@D@nZ(70i-1nZZDkDVZeuXWwq@z~o@?0tE?cd*bqxZeAAq4(`az5^w*y&+ue zI9W15{iM0=nFVUN>>ci3?;9!fjTHUepI-U9=^sx&+`k$g0>+0Mmq*upFM&iYyKgrY zntLAD9{N|C2N%t-OHMD#HY4k8M+)$-Ir6aYpN{_QXwlnp>(!gDKJs=IoLv>MUn+pz z?fdDAKY4N0-@kaed^ucqwiTRhE6FwIeqb2rge#?+<&n(%zU36bd2kzV!9lZ&;k% z=+6=6%V62G17~ej(f@3o8lK-S8Kd!)V!p2WPG$zT}xI|w@Y6q?x@E{V!)L_1^%Dk(amLcXc5JGiNFi5^2zfBD%H*Vm04 zD~k*Qn*J#kY-xDM5Ai3*LXJ(#iXs|wbKSAA1qQLXl}_iuw#SaIQ<+#=5=G4+is@`3 z2d_|~<`l*6MiD#HAxe%-+^<5=5LLQtP zxxkc;`e$B*hB?x@2f5cwaAo!g0Dtf9l8u1^X=pCl8R$R`Y$VJ8EL_<8Un!oq`2Rql zU{=UBF|->GX)*`t9UKxxXF|uJ&@5xHfo_3zwhd z!sRyvC0u@vQ>cJrc5NOL#{>XVL3l_HvxfeX*|GDW%EKi~3iRj9y*mz{gy;BK{W+fH z3z~29P(wuBcv1B=?`AxNe0W_sq^rIM(K`!Pd304M-uSil&5WK~XZ0nw9tN`Q|1r^z z0`FSi2(RhJ(oeI{M3q<2qTo4!-ZhLLJu)e!*Tl{J-UyAU;7XAxi2vipu(X=8w7pmn*}Nm;Fok}m!wEpX;Yvl zXm)RQc6MfV=6AzC=kr+t&uiM(i+{)v@+H1>A45%OdkrS*#3L2rQ7;wHTB?$wIM)KL zrdM=1*8`)LuB2<3N~UI3OiEaWr$NRDteRD^C`pm)#7nOcFY`2|G*_~cX9CY+*{52E zJ0!VT;12b1bIn{K-KzA z;5LHT_J!@*@girgmlf^;v;A>^*lt9~P@ zE)}#SRlb?zZ_Ryh&AIa4wJSd_&sC7fgj?6@Hxf?U)UE@6Bo2f(>ELcdiCDs(E%C=wB zO7|kZB7sq+z>9|n>b%WlwMNrv68`JF*sznPMqX(~r3aV% zyRb4)@)<7$rLD;l2MmScPxqHTykpTDeML{P=&u4&$)cY*IM03}&w07(SBTR~k`;QN z3P5n502k9uKAl7ouNK&{Ex!|-$d)5`Zyb0JS z5Q?C5$BzB}XCLdowYJ8-_q&@%+F4OlCOxD4|yD;v5?t;YrX9d8t z`(>F`Ne_k>K}@B?{^F9{R({W90GdgV7FgSm`NKyZH6Jt|ee~d?joBv?pADb+)I6ii zMH9PE8Ya@*RhWE}xfcmVNBZ6D?7!Rj$aY@kutHZ-K7HD`F8H|0zpiT(DterpCxYIC zE1Uz($hoi0k$Y6uAY9-S=#ic$=|&yPjZ3^jyL+f6%cI|YK((_VAl?MBN}i|5q0vWk z59YQBwa#wkMjn+Pl>d@D{w#NVqx$6H#xFn5y|Jso(k`w`p%=o0tq)IJ(Eez=of$~a zUX(UK;y*@-9vr7-!e2Xh<=_bZf1;<=qxwsrEFq;evX?gsk$lfaE{r{3rK!|WFJWG!$-^ojs(?o z@Np-V0?ae1G1&u2-8d^j5=R6{91$d8lpqP?PEIq%6+WWAD*X4JPD#+V4Xi$Vq=1YD zAS56ov_~2?KTW-mNsi94y2~M>FGpUp_t|pqK(S;owaX!Nc+luAyWDrf_#C`3dmd!5 z`-67Q7IDOxXV?7uK>g6Z=f{gusK#O!!487jz+O?RtGhxdxk(qhM;Y&_z+dWip9R$6 z+M;6>^qoOq$B}*eHk6Zt2TvAm-!5jQwp)uXYF0);s{!4sR1Wp&%Kp=?yD_|kAav=H z+JjEXKB))_C!s4l2Zw=gf!|`D(>1yv^$*CZ!(l@~DVp_be&F%|6!c;u7NbVs+4IZ} zBG&_3x_$&rd)arv3&6xaFXRDQ@A3%r^#8Tllu0Z*E&!&zj!Vbb2-F2iRkLGuL)JQR z;4NbWq%l`vS6}nf53Aq8paN~Z*$dY%WGAy15xC_AKVbb=TFeDlMB`Ue$*Wu9al$BU|t!x5MG zTS)d*`Hzu@1pfuLcxz-kl{L)vG1=MZ#)PU|T%RfAIW|hzcr7%b1%$?n;}s^B`dI}( zepK_2j+^*Ph~w9dBlvUpaY;CSA5`Nd(M29UXwVDuE!EP!!>2(Qzk%XiAkQ^Q>2_A5 z`d3*($Nx!Q{X4nvj9mCa8~K}lYB!yy`E3GZ$39HQKe2WQ3_Fu!bYi3Y6@fuI@o(AC BDGLAq literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a76801b9ea6dafd374e6ae27b4e70f4c61110a66 GIT binary patch literal 16442 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 W_uL)_uf5S}zWeUEZ#a0db^H&rO#WN| literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c94655c65bc624473f7e2b8b0523995d2d78c655 GIT binary patch literal 5278 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 m0{O)#!%!BSyAsI^O@PvJlw&9lrYmu*s0f6q=aW None: + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session() -> requests.Session: + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller # type: ignore[attr-defined] + return sess + + +def get_args() -> Namespace: + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main() -> None: + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + cache_controller: CacheController = ( + sess.cache_controller # type: ignore[attr-defined] + ) + cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..18084d1 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,168 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import functools +import types +import weakref +import zlib +from typing import TYPE_CHECKING, Any, Collection, Mapping + +from pip._vendor.requests.adapters import HTTPAdapter + +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController +from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest, Response + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + controller_class: type[CacheController] | None = None, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + cacheable_methods: Collection[str] | None = None, + *args: Any, + **kw: Any, + ) -> None: + super().__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: None | float | tuple[float, float] | tuple[float, None] = None, + verify: bool | str = True, + cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, + proxies: Mapping[str, str] | None = None, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super().send(request, stream, timeout, verify, cert, proxies) + + return resp + + def build_response( # type: ignore[override] + self, + request: PreparedRequest, + response: HTTPResponse, + from_cache: bool = False, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( # type: ignore[assignment] + response._fp, # type: ignore[arg-type] + functools.partial( + self.controller.cache_response, request, weakref.ref(response) + ), + ) + if response.chunked: + super_update_chunk_length = response.__class__._update_chunk_length + + def _update_chunk_length( + weak_self: weakref.ReferenceType[HTTPResponse], + ) -> None: + self = weak_self() + if self is None: + return + + super_update_chunk_length(self) + if self.chunk_left == 0: + self._fp._close() # type: ignore[union-attr] + + response._update_chunk_length = functools.partial( # type: ignore[method-assign] + _update_chunk_length, weakref.ref(response) + ) + + resp: Response = super().build_response(request, response) + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + assert request.url is not None + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache # type: ignore[attr-defined] + + return resp + + def close(self) -> None: + self.cache.close() + super().close() # type: ignore[no-untyped-call] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..91598e9 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,75 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" + +from __future__ import annotations + +from threading import Lock +from typing import IO, TYPE_CHECKING, MutableMapping + +if TYPE_CHECKING: + from datetime import datetime + + +class BaseCache: + def get(self, key: str) -> bytes | None: + raise NotImplementedError() + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + raise NotImplementedError() + + def delete(self, key: str) -> None: + raise NotImplementedError() + + def close(self) -> None: + pass + + +class DictCache(BaseCache): + def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key: str) -> bytes | None: + return self.data.get(key, None) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + with self.lock: + self.data.update({key: value}) + + def delete(self, key: str) -> None: + with self.lock: + if key in self.data: + self.data.pop(key) + + +class SeparateBodyBaseCache(BaseCache): + """ + In this variant, the body is not stored mixed in with the metadata, but is + passed in (as a bytes-like object) in a separate call to ``set_body()``. + + That is, the expected interaction pattern is:: + + cache.set(key, serialized_metadata) + cache.set_body(key) + + Similarly, the body should be loaded separately via ``get_body()``. + """ + + def set_body(self, key: str, body: bytes) -> None: + raise NotImplementedError() + + def get_body(self, key: str) -> IO[bytes] | None: + """ + Return the body as file-like object. + """ + raise NotImplementedError() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..24ff469 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache +from pip._vendor.cachecontrol.caches.redis_cache import RedisCache + +__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1814193135dce9e116f8ccc436a2d9c323f26b8 GIT binary patch literal 448 zcmaixzfQw25XS8!r4Z2xG4TQflvse+P^Gql2{DibWwA_bTB}YR*``%So`Ri?XWr>r817}l4x{yC0d6J9dP_2Nr}25Oe;lWV7@o%iNg3{yMAVvVl-TAbNbqY^)n+8iqvYTa zX>M3-;V~In-gbjlGoZgSEQLlG^O75kld7JtpA?eb3f5Jdwhy}zpto##_aTHIA%Iu# O8T4Pm?p<5C#eD%TpMuu_ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aeb2302767f248d75cbb3cc5b560d1a426d20cd5 GIT binary patch literal 7065 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 N1hAc_e4G5@hXXZL;KPFw4>`1vp|>64aM-ap>dF zt7R#@Ic(tqx%j-eMl6m&vQXd3rB;P1F`jLg$sJ)Bw3YLo>w=}SPn}Vggnb{+>H5=3 z_KL?Y`9(8N{p`p<@0s^czSTQ|*yMZrJ&PLeyQWk2Z9kj2Ox?>_$G(^?mVnLw5eZKC0rwaZmuUWn!+glRBJiyW3v z8l%A-k!^;hP`X6R4V+jjEUvwCF%Gg$f*@S3}8mgD@FDwQ&p|^TG1dF&YbuDXcvqLjOvu9_{*7ny* zOIqrFva1%q-TiCw;Qh`$bIwiYcHj5MzdOFzdHDL^a%<=8wV7*oTT{zBdcMtmll`fq zmR;QO_Ko;*$IjZ=LPzTQK=a0PGv{jkx7%->znAJ;NcAnIjxF}Q`}6rFt^Z*|Cg-@- z^+Re&JIsUs#rb*+wEchiivC@fu`vJ&pk_P~qpB7`l|rbttjX4h5tn^rhJ;nM*~CoZ zp4z>jcGudM)ZLNFjnV)-grKK+x?Y9B%c$H8(NpBYZU}#<%P%ZW&k`7gMQyb>3FOPY zGARpbu`+a;Iz`I#QIF|)hnmcG$8^(i^kAIoSg3T{)lD6qGV>z5QyKldPxUKyFy0b{ zkFMv<625pn!)YmsY8j6)#N#>eLWRqyw5@@UuN(kw|1gj#vJxX5-E&889-TXJ^TcBN z{=bNj*mu3Z5i9q!T?^W-+Q^dD^GJe?=aEHYIkE`xTx8{YT%KO?sjuUkMf0e#Ui3T% z>^-Erp6*g=>466zcwiw~zsi^yz60+&PcI*xsPjlbV}N&qF|d*W79SljMINde*Dx(} zY$_U8obwHH@&uFbbYka&W8}#^)u|iFQ~U z-iQU3Vcm#ajUHsLAvuTy3wV?-_!uxGc*-9HGEM5Dplq+l1ZCffN=^%BgcV6sjx4u# zM*ZGbqCR_y_YV`vx&r(4U4pWw9+Q=Qk2O(AMl$f`;q)fdcC-X&g0>86Hm{{o8I1+y zBDk4h(F^y$-$bVIH<4NUHxW%3zHFhw@Rx$&+s0MjVAE6ec!bOe_71RMNcgV;S&;-m lc%l+v|KBkp9C$$VKggTENo^10osVO>ki4<|34x9){x6@YKREyZ literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 0000000..45c632c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,145 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import hashlib +import os +import tempfile +from textwrap import dedent +from typing import IO, TYPE_CHECKING +from pathlib import Path + +from pip._vendor.cachecontrol.cache import BaseCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.controller import CacheController + +if TYPE_CHECKING: + from datetime import datetime + + from filelock import BaseFileLock + + +class _FileCacheMixin: + """Shared implementation for both FileCache variants.""" + + def __init__( + self, + directory: str | Path, + forever: bool = False, + filemode: int = 0o0600, + dirmode: int = 0o0700, + lock_class: type[BaseFileLock] | None = None, + ) -> None: + try: + if lock_class is None: + from filelock import FileLock + + lock_class = FileLock + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + filelock installed. You can install it via pip: + pip install cachecontrol[filecache] + """ + ) + raise ImportError(notice) + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x: str) -> str: + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name: str) -> str: + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + name = self._fn(key) + self._write(name, value) + + def _write(self, path: str, data: bytes) -> None: + """ + Safely write the data to the given path. + """ + # Make sure the directory exists + dirname = os.path.dirname(path) + os.makedirs(dirname, self.dirmode, exist_ok=True) + + with self.lock_class(path + ".lock"): + # Write our actual file + (fd, name) = tempfile.mkstemp(dir=dirname) + try: + os.write(fd, data) + finally: + os.close(fd) + os.chmod(name, self.filemode) + os.replace(name, path) + + def _delete(self, key: str, suffix: str) -> None: + name = self._fn(key) + suffix + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +class FileCache(_FileCacheMixin, BaseCache): + """ + Traditional FileCache: body is stored in memory, so not suitable for large + downloads. + """ + + def delete(self, key: str) -> None: + self._delete(key, "") + + +class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): + """ + Memory-efficient FileCache: body is stored in a separate file, reducing + peak memory usage. + """ + + def get_body(self, key: str) -> IO[bytes] | None: + name = self._fn(key) + ".body" + try: + return open(name, "rb") + except FileNotFoundError: + return None + + def set_body(self, key: str, body: bytes) -> None: + name = self._fn(key) + ".body" + self._write(name, body) + + def delete(self, key: str) -> None: + self._delete(key, "") + self._delete(key, ".body") + + +def url_to_file_path(url: str, filecache: FileCache) -> str: + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..f4f68c4 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,48 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + + +from datetime import datetime, timezone +from typing import TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache + +if TYPE_CHECKING: + from redis import Redis + + +class RedisCache(BaseCache): + def __init__(self, conn: Redis[bytes]) -> None: + self.conn = conn + + def get(self, key: str) -> bytes | None: + return self.conn.get(key) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + if not expires: + self.conn.set(key, value) + elif isinstance(expires, datetime): + now_utc = datetime.now(timezone.utc) + if expires.tzinfo is None: + now_utc = now_utc.replace(tzinfo=None) + delta = expires - now_utc + self.conn.setex(key, int(delta.total_seconds()), value) + else: + self.conn.setex(key, expires, value) + + def delete(self, key: str) -> None: + self.conn.delete(key) + + def clear(self) -> None: + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self) -> None: + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..d92d991 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,511 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" + +from __future__ import annotations + +import calendar +import logging +import re +import time +import weakref +from email.utils import parsedate_tz +from typing import TYPE_CHECKING, Collection, Mapping + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.serialize import Serializer + +if TYPE_CHECKING: + from typing import Literal + + from pip._vendor.requests import PreparedRequest + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri: str) -> tuple[str, str, str, str, str]: + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + match = URI.match(uri) + assert match is not None + groups = match.groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController: + """An interface to see if request should cached or not.""" + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + status_codes: Collection[int] | None = None, + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri: str) -> str: + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri: str) -> str: + return cls._urlnorm(uri) + + def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval: dict[str, int | None] = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: + """ + Load a cached response, or return None if it's not available. + """ + # We do not support caching of partial content: so if the request contains a + # Range header then we don't want to load anything from the cache. + if "Range" in request.headers: + return None + + cache_url = request.url + assert cache_url is not None + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return None + + if isinstance(self.cache, SeparateBodyBaseCache): + body_file = self.cache.get_body(cache_url) + else: + body_file = None + + result = self.serializer.loads(request, cache_data, body_file) + if result is None: + logger.warning("Cache entry deserialization failed, entry ignored") + return result + + def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Check whether we can load the response from the cache: + resp = self._load_from_cache(request) + if not resp: + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + max_age = resp_cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires[:6]) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + max_age = cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + min_fresh = cc.get("min-fresh") + if min_fresh is not None: + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: + resp = self._load_from_cache(request) + new_headers = {} + + if resp: + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def _cache_set( + self, + cache_url: str, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + expires_time: int | None = None, + ) -> None: + """ + Store the data in the cache. + """ + if isinstance(self.cache, SeparateBodyBaseCache): + # We pass in the body separately; just put a placeholder empty + # string in the metadata. + self.cache.set( + cache_url, + self.serializer.dumps(request, response, b""), + expires=expires_time, + ) + # body is None can happen when, for example, we're only updating + # headers, as is the case in update_cached_response(). + if body is not None: + self.cache.set_body(cache_url, body) + else: + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + def cache_response( + self, + request: PreparedRequest, + response_or_ref: HTTPResponse | weakref.ReferenceType[HTTPResponse], + body: bytes | None = None, + status_codes: Collection[int] | None = None, + ) -> None: + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + if isinstance(response_or_ref, weakref.ReferenceType): + response = response_or_ref() + if response is None: + # The weakref can be None only in case the user used streamed request + # and did not consume or close it, and holds no reference to requests.Response. + # In such case, we don't want to cache the response. + return + else: + response = response_or_ref + + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug(f"etag object cached for {expires_time} seconds") + logger.debug("Caching due to etag") + self._cache_set(cache_url, request, response, body, expires_time) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self._cache_set(cache_url, request, response, b"") + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + # cache when there is a max-age > 0 + max_age = cc.get("max-age") + if max_age is not None and max_age > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = max_age + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {} seconds".format( + expires_time + ) + ) + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + def update_cached_response( + self, request: PreparedRequest, response: HTTPResponse + ) -> HTTPResponse: + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + cached_response = self._load_from_cache(request) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + { + k: v + for k, v in response.headers.items() + if k.lower() not in excluded_headers + } + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self._cache_set(cache_url, request, cached_response) + + return cached_response diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..37d2fa5 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,119 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import mmap +from tempfile import NamedTemporaryFile +from typing import TYPE_CHECKING, Any, Callable + +if TYPE_CHECKING: + from http.client import HTTPResponse + + +class CallbackFileWrapper: + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__( + self, fp: HTTPResponse, callback: Callable[[bytes], None] | None + ) -> None: + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name: str) -> Any: + # The vagaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop things from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self) -> bool: + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + closed: bool = self.__fp.closed + return closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self) -> None: + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt: int | None = None) -> bytes: + data: bytes = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt: int) -> bytes: + data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..b778c4f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,157 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import calendar +import time +from datetime import datetime, timedelta, timezone +from email.utils import formatdate, parsedate, parsedate_tz +from typing import TYPE_CHECKING, Any, Mapping + +if TYPE_CHECKING: + from pip._vendor.urllib3 import HTTPResponse + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: + date = date or datetime.now(timezone.utc) + return date + delta + + +def datetime_to_header(dt: datetime) -> str: + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic: + def warning(self, response: HTTPResponse) -> str | None: + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response: HTTPResponse) -> HTTPResponse: + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after( + timedelta(days=1), + date=datetime(*date[:6], tzinfo=timezone.utc), # type: ignore[index,misc] + ) + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw: Any) -> None: + self.delta = timedelta(**kw) + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response: HTTPResponse) -> str | None: + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + + cacheable_by_default_statuses = { + 200, + 203, + 204, + 206, + 300, + 301, + 404, + 405, + 410, + 414, + 501, + } + + def update_headers(self, resp: HTTPResponse) -> dict[str, str]: + headers: Mapping[str, str] = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + last_modified = parsedate(headers["last-modified"]) + if last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp: HTTPResponse) -> str | None: + return None diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..a49487a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,146 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import io +from typing import IO, TYPE_CHECKING, Any, Mapping, cast + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3 import HTTPResponse + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest + + +class Serializer: + serde_version = "4" + + def dumps( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + ) -> bytes: + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) # type: ignore[assignment] + response.length_remaining = len(body) + + data = { + "response": { + "body": body, # Empty bytestring if body is stored separately + "headers": {str(k): str(v) for k, v in response.headers.items()}, + "status": response.status, + "version": response.version, + "reason": str(response.reason), + "decode_content": response.decode_content, + } + } + + # Construct our vary headers + data["vary"] = {} + if "vary" in response_headers: + varied_headers = response_headers["vary"].split(",") + for header in varied_headers: + header = str(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = str(header_value) + data["vary"][header] = header_value + + return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) + + def serialize(self, data: dict[str, Any]) -> bytes: + return cast(bytes, msgpack.dumps(data, use_bin_type=True)) + + def loads( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # Short circuit if we've been given an empty set of data + if not data: + return None + + # Previous versions of this library supported other serialization + # formats, but these have all been removed. + if not data.startswith(f"cc={self.serde_version},".encode()): + return None + + data = data[5:] + return self._loads_v4(request, data, body_file) + + def prepare_response( + self, + request: PreparedRequest, + cached: Mapping[str, Any], + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return None + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return None + + body_raw = cached["response"].pop("body") + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + data=cached["response"]["headers"] + ) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body: IO[bytes] + if body_file is None: + body = io.BytesIO(body_raw) + else: + body = body_file + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + # Discard any `strict` parameter serialized by older version of cachecontrol. + cached["response"].pop("strict", None) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v4( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return None + + return self.prepare_response(request, cached, body_file) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..f618bc3 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache + +if TYPE_CHECKING: + from pip._vendor import requests + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.controller import CacheController + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +def CacheControl( + sess: requests.Session, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + controller_class: type[CacheController] | None = None, + adapter_class: type[CacheControlAdapter] | None = None, + cacheable_methods: Collection[str] | None = None, +) -> requests.Session: + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE new file mode 100644 index 0000000..62b076c --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE @@ -0,0 +1,20 @@ +This package contains a modified version of ca-bundle.crt: + +ca-bundle.crt -- Bundle of CA Root Certificates + +This is a bundle of X.509 certificates of public Certificate Authorities +(CA). These were automatically extracted from Mozilla's root certificates +file (certdata.txt). This file can be found in the mozilla source tree: +https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt +It contains the certificates in PEM format and therefore +can be directly used with curl / libcurl / php_curl, or with +an Apache+mod_ssl webserver for SSL client authentication. +Just configure this file as the SSLCACertificateFile.# + +***** BEGIN LICENSE BLOCK ***** +This Source Code Form is subject to the terms of the Mozilla Public License, +v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain +one at http://mozilla.org/MPL/2.0/. + +***** END LICENSE BLOCK ***** +@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $ diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..c4b6c0b --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2025.10.05" diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3802bf711bad435d73bea2018cd393efb02338c2 GIT binary patch literal 331 zcmYjMu}T9$5Z%4In3yAWB50wODeg9jq!S^Eo!F$i!r{DKlO>nkV|PusRQd;YeuLj) zV=31tSlJ2b(&z*fe8tS0dGmP8bF0-Ph&}&%e1-jEJ^aD@CCdXOkAxFWb26m~oqCB! z3HP`^@)Dm1Nl@0>8=n-<+FsSjv~of@Th-=cVTAE0h>MRgmfb za#aUN^BkZG0cOHjsTIHzS)!G!CTyx2Tp%=+zS$D={l6^5VX-V-=1X1b5 zoBjz({7<|XT1g!*6%XP~=&hGJo9;Fj2WEcXeBbZ!&3viXU7*%g{j`6o;;-UTEwcp2 z2MW9g7+@HKZV|N@CR$fZ^sWwp1_&6~Rna0&O4v1tIjArA3Sk`^*!*0Z=w}QBDsQ<` z7xBE0P3(cO;48$Ilmka?t;(FhGYx_MV44P`Bi1kKX6EA5c=@{n;N8#&GWV2h+UV}3-KpwB5Q-o^^ka;d|5 zqeP8(Qe-n(n^!S;A;dUPP3D?(=WKE3(wLuS&S)w=f#bsJ$q;R4Y{>I4A{=c#@*a2Y zuX>vz6g2W4WS9hpfba^x!~TPUW_P(Bv@EM4*M+(n!U;;G_c*i-e&Fe(kB(l82w zB&2B&`1$z6UQ04Oipf28NzE=kl|NO-UmZgD11$dr=*VfkY0jM1)M@QI*LG`%pf&@I zDQLWV_~G`)7hgf+0IVHa^_kV2TFrgy%C2#wTd&t&u75Y2w>S50eKRiqROtHNjaM7& HqH6vR;1Z-& literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..423a1f8bbae815062fe1473d0092b33516b1ee75 GIT binary patch literal 2095 zcmbVNO>7%Q6rTNYys@2bh||QWQDeD6s@ujEX@DLeB8jRX)k>l!L|~P!mfcOfj=gKm zOnwX!%7H^Ukz0GHP!C+HaOjaEMtWa->iH7*u^JB)T}`g$=rmEs~-|BV}5Is^zju zP1{P9ZLQgdp0;ZO}_xTOs5M3sfPg}e9Hl!dhq97$1(J(DWRbJS+}XPdcQ8*h;+ z9FXKz?@s0C=HHlFrEqd>YQfeGWzJH|HDZ!ncE_-Ga%J=5T(w4vwskxE`gD$%)R=Y;2kY z=G@9)hKXANJjk*_yF~*Vcmn*(Fi0NMJ~|ynu|z#Oc{+xY>91d_Uw@~Wo^7QU8|lUG zW6kvY%`5AV?j0qsKK-;cIn$V&X->Y`OuqFfe-s<}a`}tpr^_#6xBifmbt&n->RdTl z$=GPGgMxB;#X@jr_%L1A20`IUL8)N_PjulM(a#28LreG-Si!6SPDmx1X=XS_GAzy3 zO=~kFxCmm#P-hSus;&T5v>zMEZ)Q9Rfms;jIw;_@JX*heqbc8P$ukXk=EZ}iJl~S@ z4LM(5|EMnKoASfD^w8tEBf2%Z3Yq6{5Mjc_;VW>?(R#j1Yj%GgdiSf!(}2*FWxG;h zW$cp+h#FA56zdCyN6Pr*ijU!WqGCqwjD+K09BI>_NJBWDSx`MROQ7Vn`n5aX-fCW1{NKb1?g<9 None: + _CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr] + + +if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +else: + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt new file mode 100644 index 0000000..b9723b8 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2024-present Stephen Rosen + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py new file mode 100644 index 0000000..9fec202 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py @@ -0,0 +1,13 @@ +from ._implementation import ( + CyclicDependencyError, + DependencyGroupInclude, + DependencyGroupResolver, + resolve, +) + +__all__ = ( + "CyclicDependencyError", + "DependencyGroupInclude", + "DependencyGroupResolver", + "resolve", +) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py new file mode 100644 index 0000000..48ebb0d --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py @@ -0,0 +1,65 @@ +import argparse +import sys + +from ._implementation import resolve +from ._toml_compat import tomllib + + +def main() -> None: + if tomllib is None: + print( + "Usage error: dependency-groups CLI requires tomli or Python 3.11+", + file=sys.stderr, + ) + raise SystemExit(2) + + parser = argparse.ArgumentParser( + description=( + "A dependency-groups CLI. Prints out a resolved group, newline-delimited." + ) + ) + parser.add_argument( + "GROUP_NAME", nargs="*", help="The dependency group(s) to resolve." + ) + parser.add_argument( + "-f", + "--pyproject-file", + default="pyproject.toml", + help="The pyproject.toml file. Defaults to trying in the current directory.", + ) + parser.add_argument( + "-o", + "--output", + help="An output file. Defaults to stdout.", + ) + parser.add_argument( + "-l", + "--list", + action="store_true", + help="List the available dependency groups", + ) + args = parser.parse_args() + + with open(args.pyproject_file, "rb") as fp: + pyproject = tomllib.load(fp) + + dependency_groups_raw = pyproject.get("dependency-groups", {}) + + if args.list: + print(*dependency_groups_raw.keys()) + return + if not args.GROUP_NAME: + print("A GROUP_NAME is required", file=sys.stderr) + raise SystemExit(3) + + content = "\n".join(resolve(dependency_groups_raw, *args.GROUP_NAME)) + + if args.output is None or args.output == "-": + print(content) + else: + with open(args.output, "w", encoding="utf-8") as fp: + print(content, file=fp) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e1a6d064c95d66c1774fc387cbc67900f063208 GIT binary patch literal 390 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a92ceef9c2a603d5308d4abed2a2b2f1453f2134 GIT binary patch literal 2877 zcmcImU2Gf25#IYF@AxO`$NII66)m};T#Aupx3=IGm1M~Yptwn`7O;xoa^bF|qmI1m z-cd3Ms!@v+P*4| zbviXJ(5EiJo7tJ!oo{A$XZJ7BXb8~OC;V&i_W=MtV;!#vO@@2;3S~9{0*Es}j+^5+ z#`6Y0$2X`jCm;cdhM1G)B&rjTWCU`-xgh0v6u7}51qELZ%*j|m^3pQ^5Sa&9zP0Cv z14X{bCqoZdKgqdaEuS|X&C$)geenU;6n34*7S1D_&lE2Zvta!I+orLM3AGP8X3jA5 zS1BuMWMMh8H!omAgY-}1;2wTNznj4EbYShcvlkzraXF%=$kHr)z1`+-@l6>A9L3Wj z;TH2i+s`>C+~ferMm)}^NW3k1wyRv3%eMGBk3#_zL^4uthi>g*;Q+O4_4Gb1gP-wb zkZ(JHxy{#l910`Q3--P8&LK}z=Chq1?^6`~TItVc)t44$Rf+ z%m2p=ZN6m@90Mc3=2mzPT&7!>#_{eI;WAj^jsYj(d36T%x#J!;FAM-Ox~h}|*`z1) zsdK{P%ZleM`%O>g)9V1m$_mZF{@OAe2&^hURj$6@q$}JC*vItWknsO^B>((6l4SeE z()bT;Z2?0}h)KpE+OHI;1y(9-I63n?B={!r?3~@nf)bx{+KP(gJK2@(v~#!Ieeo7~(5hPR}!U{z%wN{8)*H(B;h~!qS@TCaku) zl0|5GUBNEeZoqaBo!JdtD%uXtO3(e==?B4o=a*OLPa@X-l`#Dm6nUNk4@# ztr~RM)TiXbR?!u6nw}@mQf%xsVc(^<#~RoT#@1fjm7_b6@9(yDZ1!I3{ZbN?&?6bN z^t{#j%Unh7yB|GNiw;zy19g#$UgRE0QY^4GU5@}MTob#hV%Lrw*^zs9;&3NATUUV8 z{Rl`>fEq;FYT?7x@Zqi5%HZj@Xa6|*{+U0V`C$BmiTBQJho4(Je_x5Nqgt%L8tdOW zwXHl;2b?r`b7HrnZ*%6_%vRfW$H2Psl|Y4`9v=M73va(r8T!t9Wc%<$MeO;syO)CC z6=`g@eW-Hcd)w{f>vCNNy@^`SXtihb3m__E>(AGDAv(4b@2NwuOl;U2cw^|}$dS50h4IH}3JH59rSK7Z#XJc+VH>200?{sWwzwN5^k5v0dD)8i;#GRM! zOjeGbsm0G$<7b~xAJMTVkD?&jbwjCy6LhF_az~E68GR#qqvI{@dRMI{S?x(yx`%Ei zZoYJLveNl%O&+PrBW$R2^09r6F6W;*I;UEM4};<9LGWRsb*hiQ+agVM2k-WEOedtf z>E!eg>E02E^7jT?E__3{cPe=yA^bTZQJ$R-wl`EYDK<_Lo*%QYer5_qA$9)14pMjRYgU~;~sZT(E kJphgmeF;)rNBtEJh>`WuUxl8(iSjR|>jDsa$r(EC-{3~ZF8}}l literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b6ad8a62d6f3ccf78554ec9507d1b667fae05d4 GIT binary patch literal 3444 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py new file mode 100644 index 0000000..64e314a --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py @@ -0,0 +1,209 @@ +from __future__ import annotations + +import dataclasses +import re +from collections.abc import Mapping + +from pip._vendor.packaging.requirements import Requirement + + +def _normalize_name(name: str) -> str: + return re.sub(r"[-_.]+", "-", name).lower() + + +def _normalize_group_names( + dependency_groups: Mapping[str, str | Mapping[str, str]], +) -> Mapping[str, str | Mapping[str, str]]: + original_names: dict[str, list[str]] = {} + normalized_groups = {} + + for group_name, value in dependency_groups.items(): + normed_group_name = _normalize_name(group_name) + original_names.setdefault(normed_group_name, []).append(group_name) + normalized_groups[normed_group_name] = value + + errors = [] + for normed_name, names in original_names.items(): + if len(names) > 1: + errors.append(f"{normed_name} ({', '.join(names)})") + if errors: + raise ValueError(f"Duplicate dependency group names: {', '.join(errors)}") + + return normalized_groups + + +@dataclasses.dataclass +class DependencyGroupInclude: + include_group: str + + +class CyclicDependencyError(ValueError): + """ + An error representing the detection of a cycle. + """ + + def __init__(self, requested_group: str, group: str, include_group: str) -> None: + self.requested_group = requested_group + self.group = group + self.include_group = include_group + + if include_group == group: + reason = f"{group} includes itself" + else: + reason = f"{include_group} -> {group}, {group} -> {include_group}" + super().__init__( + "Cyclic dependency group include while resolving " + f"{requested_group}: {reason}" + ) + + +class DependencyGroupResolver: + """ + A resolver for Dependency Group data. + + This class handles caching, name normalization, cycle detection, and other + parsing requirements. There are only two public methods for exploring the data: + ``lookup()`` and ``resolve()``. + + :param dependency_groups: A mapping, as provided via pyproject + ``[dependency-groups]``. + """ + + def __init__( + self, + dependency_groups: Mapping[str, str | Mapping[str, str]], + ) -> None: + if not isinstance(dependency_groups, Mapping): + raise TypeError("Dependency Groups table is not a mapping") + self.dependency_groups = _normalize_group_names(dependency_groups) + # a map of group names to parsed data + self._parsed_groups: dict[ + str, tuple[Requirement | DependencyGroupInclude, ...] + ] = {} + # a map of group names to their ancestors, used for cycle detection + self._include_graph_ancestors: dict[str, tuple[str, ...]] = {} + # a cache of completed resolutions to Requirement lists + self._resolve_cache: dict[str, tuple[Requirement, ...]] = {} + + def lookup(self, group: str) -> tuple[Requirement | DependencyGroupInclude, ...]: + """ + Lookup a group name, returning the parsed dependency data for that group. + This will not resolve includes. + + :param group: the name of the group to lookup + + :raises ValueError: if the data does not appear to be valid dependency group + data + :raises TypeError: if the data is not a string + :raises LookupError: if group name is absent + :raises packaging.requirements.InvalidRequirement: if a specifier is not valid + """ + if not isinstance(group, str): + raise TypeError("Dependency group name is not a str") + group = _normalize_name(group) + return self._parse_group(group) + + def resolve(self, group: str) -> tuple[Requirement, ...]: + """ + Resolve a dependency group to a list of requirements. + + :param group: the name of the group to resolve + + :raises TypeError: if the inputs appear to be the wrong types + :raises ValueError: if the data does not appear to be valid dependency group + data + :raises LookupError: if group name is absent + :raises packaging.requirements.InvalidRequirement: if a specifier is not valid + """ + if not isinstance(group, str): + raise TypeError("Dependency group name is not a str") + group = _normalize_name(group) + return self._resolve(group, group) + + def _parse_group( + self, group: str + ) -> tuple[Requirement | DependencyGroupInclude, ...]: + # short circuit -- never do the work twice + if group in self._parsed_groups: + return self._parsed_groups[group] + + if group not in self.dependency_groups: + raise LookupError(f"Dependency group '{group}' not found") + + raw_group = self.dependency_groups[group] + if not isinstance(raw_group, list): + raise TypeError(f"Dependency group '{group}' is not a list") + + elements: list[Requirement | DependencyGroupInclude] = [] + for item in raw_group: + if isinstance(item, str): + # packaging.requirements.Requirement parsing ensures that this is a + # valid PEP 508 Dependency Specifier + # raises InvalidRequirement on failure + elements.append(Requirement(item)) + elif isinstance(item, dict): + if tuple(item.keys()) != ("include-group",): + raise ValueError(f"Invalid dependency group item: {item}") + + include_group = next(iter(item.values())) + elements.append(DependencyGroupInclude(include_group=include_group)) + else: + raise ValueError(f"Invalid dependency group item: {item}") + + self._parsed_groups[group] = tuple(elements) + return self._parsed_groups[group] + + def _resolve(self, group: str, requested_group: str) -> tuple[Requirement, ...]: + """ + This is a helper for cached resolution to strings. + + :param group: The name of the group to resolve. + :param requested_group: The group which was used in the original, user-facing + request. + """ + if group in self._resolve_cache: + return self._resolve_cache[group] + + parsed = self._parse_group(group) + + resolved_group = [] + for item in parsed: + if isinstance(item, Requirement): + resolved_group.append(item) + elif isinstance(item, DependencyGroupInclude): + include_group = _normalize_name(item.include_group) + if include_group in self._include_graph_ancestors.get(group, ()): + raise CyclicDependencyError( + requested_group, group, item.include_group + ) + self._include_graph_ancestors[include_group] = ( + *self._include_graph_ancestors.get(group, ()), + group, + ) + resolved_group.extend(self._resolve(include_group, requested_group)) + else: # unreachable + raise NotImplementedError( + f"Invalid dependency group item after parse: {item}" + ) + + self._resolve_cache[group] = tuple(resolved_group) + return self._resolve_cache[group] + + +def resolve( + dependency_groups: Mapping[str, str | Mapping[str, str]], /, *groups: str +) -> tuple[str, ...]: + """ + Resolve a dependency group to a tuple of requirements, as strings. + + :param dependency_groups: the parsed contents of the ``[dependency-groups]`` table + from ``pyproject.toml`` + :param groups: the name of the group(s) to resolve + + :raises TypeError: if the inputs appear to be the wrong types + :raises ValueError: if the data does not appear to be valid dependency group data + :raises LookupError: if group name is absent + :raises packaging.requirements.InvalidRequirement: if a specifier is not valid + """ + resolver = DependencyGroupResolver(dependency_groups) + return tuple(str(r) for group in groups for r in resolver.resolve(group)) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py new file mode 100644 index 0000000..09454bd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py @@ -0,0 +1,59 @@ +from __future__ import annotations + +import argparse +import sys + +from ._implementation import DependencyGroupResolver +from ._toml_compat import tomllib + + +def main(*, argv: list[str] | None = None) -> None: + if tomllib is None: + print( + "Usage error: dependency-groups CLI requires tomli or Python 3.11+", + file=sys.stderr, + ) + raise SystemExit(2) + + parser = argparse.ArgumentParser( + description=( + "Lint Dependency Groups for validity. " + "This will eagerly load and check all of your Dependency Groups." + ) + ) + parser.add_argument( + "-f", + "--pyproject-file", + default="pyproject.toml", + help="The pyproject.toml file. Defaults to trying in the current directory.", + ) + args = parser.parse_args(argv if argv is not None else sys.argv[1:]) + + with open(args.pyproject_file, "rb") as fp: + pyproject = tomllib.load(fp) + dependency_groups_raw = pyproject.get("dependency-groups", {}) + + errors: list[str] = [] + try: + resolver = DependencyGroupResolver(dependency_groups_raw) + except (ValueError, TypeError) as e: + errors.append(f"{type(e).__name__}: {e}") + else: + for groupname in resolver.dependency_groups: + try: + resolver.resolve(groupname) + except (LookupError, ValueError, TypeError) as e: + errors.append(f"{type(e).__name__}: {e}") + + if errors: + print("errors encountered while examining dependency groups:") + for msg in errors: + print(f" {msg}") + sys.exit(1) + else: + print("ok") + sys.exit(0) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py new file mode 100644 index 0000000..f86d896 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py @@ -0,0 +1,62 @@ +from __future__ import annotations + +import argparse +import subprocess +import sys + +from ._implementation import DependencyGroupResolver +from ._toml_compat import tomllib + + +def _invoke_pip(deps: list[str]) -> None: + subprocess.check_call([sys.executable, "-m", "pip", "install", *deps]) + + +def main(*, argv: list[str] | None = None) -> None: + if tomllib is None: + print( + "Usage error: dependency-groups CLI requires tomli or Python 3.11+", + file=sys.stderr, + ) + raise SystemExit(2) + + parser = argparse.ArgumentParser(description="Install Dependency Groups.") + parser.add_argument( + "DEPENDENCY_GROUP", nargs="+", help="The dependency groups to install." + ) + parser.add_argument( + "-f", + "--pyproject-file", + default="pyproject.toml", + help="The pyproject.toml file. Defaults to trying in the current directory.", + ) + args = parser.parse_args(argv if argv is not None else sys.argv[1:]) + + with open(args.pyproject_file, "rb") as fp: + pyproject = tomllib.load(fp) + dependency_groups_raw = pyproject.get("dependency-groups", {}) + + errors: list[str] = [] + resolved: list[str] = [] + try: + resolver = DependencyGroupResolver(dependency_groups_raw) + except (ValueError, TypeError) as e: + errors.append(f"{type(e).__name__}: {e}") + else: + for groupname in args.DEPENDENCY_GROUP: + try: + resolved.extend(str(r) for r in resolver.resolve(groupname)) + except (LookupError, ValueError, TypeError) as e: + errors.append(f"{type(e).__name__}: {e}") + + if errors: + print("errors encountered while examining dependency groups:") + for msg in errors: + print(f" {msg}") + sys.exit(1) + + _invoke_pip(resolved) + + +if __name__ == "__main__": + main() diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py new file mode 100644 index 0000000..8d6f921 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py @@ -0,0 +1,9 @@ +try: + import tomllib +except ImportError: + try: + from pip._vendor import tomli as tomllib # type: ignore[no-redef, unused-ignore] + except ModuleNotFoundError: # pragma: no cover + tomllib = None # type: ignore[assignment, unused-ignore] + +__all__ = ("tomllib",) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed b/.venv/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt new file mode 100644 index 0000000..c31ac56 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt @@ -0,0 +1,284 @@ +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations (now Zope +Corporation, see http://www.zope.com). In 2001, the Python Software +Foundation (PSF, see http://www.python.org/psf/) was formed, a +non-profit organization created specifically to own Python-related +Intellectual Property. Zope Corporation is a sponsoring member of +the PSF. + +All Python releases are Open Source (see http://www.opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.2 2.1.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2.1 2.2 2002 PSF yes + 2.2.2 2.2.1 2002 PSF yes + 2.2.3 2.2.2 2003 PSF yes + 2.3 2.2.2 2002-2003 PSF yes + 2.3.1 2.3 2002-2003 PSF yes + 2.3.2 2.3.1 2002-2003 PSF yes + 2.3.3 2.3.2 2002-2003 PSF yes + 2.3.4 2.3.3 2004 PSF yes + 2.3.5 2.3.4 2005 PSF yes + 2.4 2.3 2004 PSF yes + 2.4.1 2.4 2005 PSF yes + 2.4.2 2.4.1 2005 PSF yes + 2.4.3 2.4.2 2006 PSF yes + 2.4.4 2.4.3 2006 PSF yes + 2.5 2.4 2006 PSF yes + 2.5.1 2.5 2007 PSF yes + 2.5.2 2.5.1 2008 PSF yes + 2.5.3 2.5.2 2008 PSF yes + 2.6 2.5 2008 PSF yes + 2.6.1 2.6 2008 PSF yes + 2.6.2 2.6.1 2009 PSF yes + 2.6.3 2.6.2 2009 PSF yes + 2.6.4 2.6.3 2009 PSF yes + 2.6.5 2.6.4 2010 PSF yes + 3.0 2.6 2008 PSF yes + 3.0.1 3.0 2009 PSF yes + 3.1 3.0.1 2009 PSF yes + 3.1.1 3.1 2009 PSF yes + 3.1.2 3.1 2010 PSF yes + 3.2 3.1 2010 PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +Python Software Foundation; All Rights Reserved" are retained in Python alone or +in any derivative version prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the Internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the Internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 0000000..4e82943 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2024 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.4.0' + + +class DistlibException(Exception): + pass + + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + + class NullHandler(logging.Handler): + + def handle(self, record): + pass + + def emit(self, record): + pass + + def createLock(self): + self.lock = None + + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d53713dce8f9ceb41baf8b983164d0875732aaaa GIT binary patch literal 1282 zcmaJ=%}*0i5TCcZUAiq_1ySVNz@;(m`k8nzCMZNnNH3h|WwY)+%hGMPyj_GP9yoCD zpozu<{tJY^!o-^=Vhm&x6BAF~8cK}eqBGl;f-%0sym|9x<~K9%_dfOXqyX2b{Cj0h z0{Bjc_EK9)<0C4&V1vzED1t2&nFNo)mUqBbxU?@f{fe?iJ_#2pN>O1T0f*JzcCyaS zll!a{p>b_>sB_cSFjCoX9ooJOLN*ONF#}?lawEQq_+5z6-Hz+*XEiCy@M?YoHsxj5 zVAsltPx3qW(F@4_xQz{HDcgf#X#RSvg7? zM%Aov!-!IbQSt0`m-KGKSX(#U=FJ{72;#J?Z+N2Y*G!B1`qF%EarWWe+)`i$j+J}l z+1!||nr`SjzMg;1tIu_W(raO`;#F_wZ{E^rh z1cs5Xg+f8ZSWqK=0>us-DM_KV?O7J33+t}?#H`vb7yq8Z1bTO-V6z=4%C>}3p=U29 zLM59JX>_uXH5V4Kp+QCLLI``TAd;x>Ns;1n_gSP0Zh6A?DQap;5cwi?C9Y&^;9OPt zrtLD`H>ihgIO^_?d-y+~Ai~9vq7StTI0~;g!B+oy6tY~Uh(QuGBCAaV)RATYaX$m7 z&<}V42HE2kLJWrER9w$0XPM|nyHD}0#!{BxX22KmcI)za*p7XSLI@Wd93Fc)_j)0& zqL5VuwJqomiY^jVf}qbLhDp#=n{P@pjGrPFm+<6gQ0&05!nDk>ilTvHyy;DEmQ6=p zu2(8K)l!r;kW9iyQX_k{Gln;5M9xuqp;GfiFfW8BqOKNeBCW)OMa;oPTxg_HLN20| zY1=KIziK>9-fw=B2jUv$r8)U4DC#m}tkDas?_2NCcKSqROnVca0B-eU4;%lgOxGtM zHTv?(p*C`$jl942S)18bk3c0laL%dhBO;LQMAPPo6@fL*82&l Z))Qzvji>TXot5B&G%`CWf0$q>{{T1M5lH|5 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7172afab128e1404d73dd05e9fc34735867d2798 GIT binary patch literal 45610 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 aOe0VCO$AhD8+*F5v+PKj{(mdwk^a9Hg)4dh literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..411241feba7bc9d876da38432e2396a97bf440d9 GIT binary patch literal 17338 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 literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c270739f0897c224203285e58122e95cd6b2dbf GIT binary patch literal 88247 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ℜ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 DTYEJp literal 0 HcmV?d00001 diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 0000000..ca561dd --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1137 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import absolute_import + +import os +import re +import shutil +import sys + +try: + import ssl +except ImportError: # pragma: no cover + ssl = None + +if sys.version_info[0] < 3: # pragma: no cover + from StringIO import StringIO + string_types = basestring, + text_type = unicode + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) + + def quote(s): + if isinstance(s, unicode): + s = s.encode('utf-8') + return _quote(s) + + import urllib2 + from urllib2 import (Request, urlopen, URLError, HTTPError, + HTTPBasicAuthHandler, HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib2 import HTTPSHandler + import httplib + import xmlrpclib + import Queue as queue + from HTMLParser import HTMLParser + import htmlentitydefs + raw_input = raw_input + from itertools import ifilter as filter + from itertools import ifilterfalse as filterfalse + + # Leaving this around for now, in case it needs resurrecting in some way + # _userprog = None + # def splituser(host): + # """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" + # global _userprog + # if _userprog is None: + # import re + # _userprog = re.compile('^(.*)@(.*)$') + + # match = _userprog.match(host) + # if match: return match.group(1, 2) + # return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + from urllib.parse import (urlparse, urlunparse, urljoin, quote, unquote, + urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, HTTPBasicAuthHandler, + HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + + class CertificateError(ValueError): + pass + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" % + (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" % + (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if os.curdir not in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if normdir not in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + + +import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format( + filename, encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format( + filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, + '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' + A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[ + key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__( + key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union( + *self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover + # {{{ http://code.activestate.com/recipes/576693/ (r9) + # Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. + # Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % + len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args), )) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: + _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__, ) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items, ), inst_dict) + return self.__class__, (items, ) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self) == len( + other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext': 'ext_convert', + 'cfg': 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int( + idx + ) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + # rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance( + value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance( + value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 0000000..fef52aa --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py @@ -0,0 +1,358 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import bisect +import io +import logging +import os +import pkgutil +import sys +import types +import zipimport + +from . import DistlibException +from .util import cached_property, get_cache_base, Cache + +logger = logging.getLogger(__name__) + + +cache = None # created when needed + + +class ResourceCache(Cache): + def __init__(self, base=None): + if base is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('resource-cache')) + super(ResourceCache, self).__init__(base) + + def is_stale(self, resource, path): + """ + Is the cache stale for the given resource? + + :param resource: The :class:`Resource` being cached. + :param path: The path of the resource in the cache. + :return: True if the cache is stale. + """ + # Cache invalidation is a hard problem :-) + return True + + def get(self, resource): + """ + Get a resource into the cache, + + :param resource: A :class:`Resource` instance. + :return: The pathname of the resource in the cache. + """ + prefix, path = resource.finder.get_cache_info(resource) + if prefix is None: + result = path + else: + result = os.path.join(self.base, self.prefix_to_dir(prefix), path) + dirname = os.path.dirname(result) + if not os.path.isdir(dirname): + os.makedirs(dirname) + if not os.path.exists(result): + stale = True + else: + stale = self.is_stale(resource, path) + if stale: + # write the bytes of the resource to the cache location + with open(result, 'wb') as f: + f.write(resource.bytes) + return result + + +class ResourceBase(object): + def __init__(self, finder, name): + self.finder = finder + self.name = name + + +class Resource(ResourceBase): + """ + A class representing an in-package resource, such as a data file. This is + not normally instantiated by user code, but rather by a + :class:`ResourceFinder` which manages the resource. + """ + is_container = False # Backwards compatibility + + def as_stream(self): + """ + Get the resource as a stream. + + This is not a property to make it obvious that it returns a new stream + each time. + """ + return self.finder.get_stream(self) + + @cached_property + def file_path(self): + global cache + if cache is None: + cache = ResourceCache() + return cache.get(self) + + @cached_property + def bytes(self): + return self.finder.get_bytes(self) + + @cached_property + def size(self): + return self.finder.get_size(self) + + +class ResourceContainer(ResourceBase): + is_container = True # Backwards compatibility + + @cached_property + def resources(self): + return self.finder.get_resources(self) + + +class ResourceFinder(object): + """ + Resource finder for file system resources. + """ + + if sys.platform.startswith('java'): + skipped_extensions = ('.pyc', '.pyo', '.class') + else: + skipped_extensions = ('.pyc', '.pyo') + + def __init__(self, module): + self.module = module + self.loader = getattr(module, '__loader__', None) + self.base = os.path.dirname(getattr(module, '__file__', '')) + + def _adjust_path(self, path): + return os.path.realpath(path) + + def _make_path(self, resource_name): + # Issue #50: need to preserve type of path on Python 2.x + # like os.path._get_sep + if isinstance(resource_name, bytes): # should only happen on 2.x + sep = b'/' + else: + sep = '/' + parts = resource_name.split(sep) + parts.insert(0, self.base) + result = os.path.join(*parts) + return self._adjust_path(result) + + def _find(self, path): + return os.path.exists(path) + + def get_cache_info(self, resource): + return None, resource.path + + def find(self, resource_name): + path = self._make_path(resource_name) + if not self._find(path): + result = None + else: + if self._is_directory(path): + result = ResourceContainer(self, resource_name) + else: + result = Resource(self, resource_name) + result.path = path + return result + + def get_stream(self, resource): + return open(resource.path, 'rb') + + def get_bytes(self, resource): + with open(resource.path, 'rb') as f: + return f.read() + + def get_size(self, resource): + return os.path.getsize(resource.path) + + def get_resources(self, resource): + def allowed(f): + return (f != '__pycache__' and not + f.endswith(self.skipped_extensions)) + return set([f for f in os.listdir(resource.path) if allowed(f)]) + + def is_container(self, resource): + return self._is_directory(resource.path) + + _is_directory = staticmethod(os.path.isdir) + + def iterator(self, resource_name): + resource = self.find(resource_name) + if resource is not None: + todo = [resource] + while todo: + resource = todo.pop(0) + yield resource + if resource.is_container: + rname = resource.name + for name in resource.resources: + if not rname: + new_name = name + else: + new_name = '/'.join([rname, name]) + child = self.find(new_name) + if child.is_container: + todo.append(child) + else: + yield child + + +class ZipResourceFinder(ResourceFinder): + """ + Resource finder for resources in .zip files. + """ + def __init__(self, module): + super(ZipResourceFinder, self).__init__(module) + archive = self.loader.archive + self.prefix_len = 1 + len(archive) + # PyPy doesn't have a _files attr on zipimporter, and you can't set one + if hasattr(self.loader, '_files'): + self._files = self.loader._files + else: + self._files = zipimport._zip_directory_cache[archive] + self.index = sorted(self._files) + + def _adjust_path(self, path): + return path + + def _find(self, path): + path = path[self.prefix_len:] + if path in self._files: + result = True + else: + if path and path[-1] != os.sep: + path = path + os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + if not result: + logger.debug('_find failed: %r %r', path, self.loader.prefix) + else: + logger.debug('_find worked: %r %r', path, self.loader.prefix) + return result + + def get_cache_info(self, resource): + prefix = self.loader.archive + path = resource.path[1 + len(prefix):] + return prefix, path + + def get_bytes(self, resource): + return self.loader.get_data(resource.path) + + def get_stream(self, resource): + return io.BytesIO(self.get_bytes(resource)) + + def get_size(self, resource): + path = resource.path[self.prefix_len:] + return self._files[path][3] + + def get_resources(self, resource): + path = resource.path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + plen = len(path) + result = set() + i = bisect.bisect(self.index, path) + while i < len(self.index): + if not self.index[i].startswith(path): + break + s = self.index[i][plen:] + result.add(s.split(os.sep, 1)[0]) # only immediate children + i += 1 + return result + + def _is_directory(self, path): + path = path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + return result + + +_finder_registry = { + type(None): ResourceFinder, + zipimport.zipimporter: ZipResourceFinder +} + +try: + # In Python 3.6, _frozen_importlib -> _frozen_importlib_external + try: + import _frozen_importlib_external as _fi + except ImportError: + import _frozen_importlib as _fi + _finder_registry[_fi.SourceFileLoader] = ResourceFinder + _finder_registry[_fi.FileFinder] = ResourceFinder + # See issue #146 + _finder_registry[_fi.SourcelessFileLoader] = ResourceFinder + del _fi +except (ImportError, AttributeError): + pass + + +def register_finder(loader, finder_maker): + _finder_registry[type(loader)] = finder_maker + + +_finder_cache = {} + + +def finder(package): + """ + Return a resource finder for a package. + :param package: The name of the package. + :return: A :class:`ResourceFinder` instance for the package. + """ + if package in _finder_cache: + result = _finder_cache[package] + else: + if package not in sys.modules: + __import__(package) + module = sys.modules[package] + path = getattr(module, '__path__', None) + if path is None: + raise DistlibException('You cannot get a finder for a module, ' + 'only for a package') + loader = getattr(module, '__loader__', None) + finder_maker = _finder_registry.get(type(loader)) + if finder_maker is None: + raise DistlibException('Unable to locate finder for %r' % package) + result = finder_maker(module) + _finder_cache[package] = result + return result + + +_dummy_module = types.ModuleType(str('__dummy__')) + + +def finder_for_path(path): + """ + Return a resource finder for a path, which should represent a container. + + :param path: The path. + :return: A :class:`ResourceFinder` instance for the path. + """ + result = None + # calls any path hooks, gets importer into cache + pkgutil.get_importer(path) + loader = sys.path_importer_cache.get(path) + finder = _finder_registry.get(type(loader)) + if finder: + module = _dummy_module + module.__file__ = os.path.join(path, '') + module.__loader__ = loader + result = finder(module) + return result diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 0000000..195dc3f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,447 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from io import BytesIO +import logging +import os +import re +import struct +import sys +import time +from zipfile import ZipInfo + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, get_executable, get_platform, in_venv) + +logger = logging.getLogger(__name__) + +_DEFAULT_MANIFEST = ''' + + + + + + + + + + + + +'''.strip() + +# check if Python is called on the first line with this expression +FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') +SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- +import re +import sys +if __name__ == '__main__': + from %(module)s import %(import_name)s + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(%(func)s()) +''' + +# Pre-fetch the contents of all executable wrapper stubs. +# This is to address https://github.com/pypa/pip/issues/12666. +# When updating pip, we rename the old pip in place before installing the +# new version. If we try to fetch a wrapper *after* that rename, the finder +# machinery will be confused as the package is no longer available at the +# location where it was imported from. So we load everything into memory in +# advance. + +if os.name == 'nt' or (os.name == 'java' and os._name == 'nt'): + # Issue 31: don't hardcode an absolute package name, but + # determine it relative to the current package + DISTLIB_PACKAGE = __name__.rsplit('.', 1)[0] + + WRAPPERS = { + r.name: r.bytes + for r in finder(DISTLIB_PACKAGE).iterator("") + if r.name.endswith(".exe") + } + + +def enquote_executable(executable): + if ' ' in executable: + # make sure we quote only the executable in case of env + # for example /usr/bin/env "/dir with spaces/bin/jython" + # instead of "/usr/bin/env /dir with spaces/bin/jython" + # otherwise whole + if executable.startswith('/usr/bin/env '): + env, _executable = executable.split(' ', 1) + if ' ' in _executable and not _executable.startswith('"'): + executable = '%s "%s"' % (env, _executable) + else: + if not executable.startswith('"'): + executable = '"%s"' % executable + return executable + + +# Keep the old name around (for now), as there is at least one project using it! +_enquote_executable = enquote_executable + + +class ScriptMaker(object): + """ + A class to copy or create scripts from source scripts or callable + specifications. + """ + script_template = SCRIPT_TEMPLATE + + executable = None # for shebangs + + def __init__(self, source_dir, target_dir, add_launchers=True, dry_run=False, fileop=None): + self.source_dir = source_dir + self.target_dir = target_dir + self.add_launchers = add_launchers + self.force = False + self.clobber = False + # It only makes sense to set mode bits on POSIX. + self.set_mode = (os.name == 'posix') or (os.name == 'java' and os._name == 'posix') + self.variants = set(('', 'X.Y')) + self._fileop = fileop or FileOperator(dry_run) + + self._is_nt = os.name == 'nt' or (os.name == 'java' and os._name == 'nt') + self.version_info = sys.version_info + + def _get_alternate_executable(self, executable, options): + if options.get('gui', False) and self._is_nt: # pragma: no cover + dn, fn = os.path.split(executable) + fn = fn.replace('python', 'pythonw') + executable = os.path.join(dn, fn) + return executable + + if sys.platform.startswith('java'): # pragma: no cover + + def _is_shell(self, executable): + """ + Determine if the specified executable is a script + (contains a #! line) + """ + try: + with open(executable) as fp: + return fp.read(2) == '#!' + except (OSError, IOError): + logger.warning('Failed to open %s', executable) + return False + + def _fix_jython_executable(self, executable): + if self._is_shell(executable): + # Workaround for Jython is not needed on Linux systems. + import java + + if java.lang.System.getProperty('os.name') == 'Linux': + return executable + elif executable.lower().endswith('jython.exe'): + # Use wrapper exe for Jython on Windows + return executable + return '/usr/bin/env %s' % executable + + def _build_shebang(self, executable, post_interp): + """ + Build a shebang line. In the simple case (on Windows, or a shebang line + which is not too long or contains spaces) use a simple formulation for + the shebang. Otherwise, use /bin/sh as the executable, with a contrived + shebang which allows the script to run either under Python or sh, using + suitable quoting. Thanks to Harald Nordgren for his input. + + See also: http://www.in-ulm.de/~mascheck/various/shebang/#length + https://hg.mozilla.org/mozilla-central/file/tip/mach + """ + if os.name != 'posix': + simple_shebang = True + elif getattr(sys, "cross_compiling", False): + # In a cross-compiling environment, the shebang will likely be a + # script; this *must* be invoked with the "safe" version of the + # shebang, or else using os.exec() to run the entry script will + # fail, raising "OSError 8 [Errno 8] Exec format error". + simple_shebang = False + else: + # Add 3 for '#!' prefix and newline suffix. + shebang_length = len(executable) + len(post_interp) + 3 + if sys.platform == 'darwin': + max_shebang_length = 512 + else: + max_shebang_length = 127 + simple_shebang = ((b' ' not in executable) and (shebang_length <= max_shebang_length)) + + if simple_shebang: + result = b'#!' + executable + post_interp + b'\n' + else: + result = b'#!/bin/sh\n' + result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' + result += b"' '''\n" + return result + + def _get_shebang(self, encoding, post_interp=b'', options=None): + enquote = True + if self.executable: + executable = self.executable + enquote = False # assume this will be taken care of + elif not sysconfig.is_python_build(): + executable = get_executable() + elif in_venv(): # pragma: no cover + executable = os.path.join(sysconfig.get_path('scripts'), 'python%s' % sysconfig.get_config_var('EXE')) + else: # pragma: no cover + if os.name == 'nt': + # for Python builds from source on Windows, no Python executables with + # a version suffix are created, so we use python.exe + executable = os.path.join(sysconfig.get_config_var('BINDIR'), + 'python%s' % (sysconfig.get_config_var('EXE'))) + else: + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), sysconfig.get_config_var('EXE'))) + if options: + executable = self._get_alternate_executable(executable, options) + + if sys.platform.startswith('java'): # pragma: no cover + executable = self._fix_jython_executable(executable) + + # Normalise case for Windows - COMMENTED OUT + # executable = os.path.normcase(executable) + # N.B. The normalising operation above has been commented out: See + # issue #124. Although paths in Windows are generally case-insensitive, + # they aren't always. For example, a path containing a ẞ (which is a + # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a + # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by + # Windows as equivalent in path names. + + # If the user didn't specify an executable, it may be necessary to + # cater for executable paths with spaces (not uncommon on Windows) + if enquote: + executable = enquote_executable(executable) + # Issue #51: don't use fsencode, since we later try to + # check that the shebang is decodable using utf-8. + executable = executable.encode('utf-8') + # in case of IronPython, play safe and enable frames support + if (sys.platform == 'cli' and '-X:Frames' not in post_interp and + '-X:FullFrames' not in post_interp): # pragma: no cover + post_interp += b' -X:Frames' + shebang = self._build_shebang(executable, post_interp) + # Python parser starts to read a script using UTF-8 until + # it gets a #coding:xxx cookie. The shebang has to be the + # first line of a file, the #coding:xxx cookie cannot be + # written before. So the shebang has to be decodable from + # UTF-8. + try: + shebang.decode('utf-8') + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable from utf-8' % shebang) + # If the script is encoded to a custom encoding (use a + # #coding:xxx cookie), the shebang has to be decodable from + # the script encoding too. + if encoding != 'utf-8': + try: + shebang.decode(encoding) + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable ' + 'from the script encoding (%r)' % (shebang, encoding)) + return shebang + + def _get_script_text(self, entry): + return self.script_template % dict( + module=entry.prefix, import_name=entry.suffix.split('.')[0], func=entry.suffix) + + manifest = _DEFAULT_MANIFEST + + def get_manifest(self, exename): + base = os.path.basename(exename) + return self.manifest % base + + def _write_script(self, names, shebang, script_bytes, filenames, ext): + use_launcher = self.add_launchers and self._is_nt + if not use_launcher: + script_bytes = shebang + script_bytes + else: # pragma: no cover + if ext == 'py': + launcher = self._get_launcher('t') + else: + launcher = self._get_launcher('w') + stream = BytesIO() + with ZipFile(stream, 'w') as zf: + source_date_epoch = os.environ.get('SOURCE_DATE_EPOCH') + if source_date_epoch: + date_time = time.gmtime(int(source_date_epoch))[:6] + zinfo = ZipInfo(filename='__main__.py', date_time=date_time) + zf.writestr(zinfo, script_bytes) + else: + zf.writestr('__main__.py', script_bytes) + zip_data = stream.getvalue() + script_bytes = launcher + shebang + zip_data + for name in names: + outname = os.path.join(self.target_dir, name) + if use_launcher: # pragma: no cover + n, e = os.path.splitext(outname) + if e.startswith('.py'): + outname = n + outname = '%s.exe' % outname + try: + self._fileop.write_binary_file(outname, script_bytes) + except Exception: + # Failed writing an executable - it might be in use. + logger.warning('Failed to write executable - trying to ' + 'use .deleteme logic') + dfname = '%s.deleteme' % outname + if os.path.exists(dfname): + os.remove(dfname) # Not allowed to fail here + os.rename(outname, dfname) # nor here + self._fileop.write_binary_file(outname, script_bytes) + logger.debug('Able to replace executable using ' + '.deleteme logic') + try: + os.remove(dfname) + except Exception: + pass # still in use - ignore error + else: + if self._is_nt and not outname.endswith('.' + ext): # pragma: no cover + outname = '%s.%s' % (outname, ext) + if os.path.exists(outname) and not self.clobber: + logger.warning('Skipping existing file %s', outname) + continue + self._fileop.write_binary_file(outname, script_bytes) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + + variant_separator = '-' + + def get_script_filenames(self, name): + result = set() + if '' in self.variants: + result.add(name) + if 'X' in self.variants: + result.add('%s%s' % (name, self.version_info[0])) + if 'X.Y' in self.variants: + result.add('%s%s%s.%s' % (name, self.variant_separator, self.version_info[0], self.version_info[1])) + return result + + def _make_script(self, entry, filenames, options=None): + post_interp = b'' + if options: + args = options.get('interpreter_args', []) + if args: + args = ' %s' % ' '.join(args) + post_interp = args.encode('utf-8') + shebang = self._get_shebang('utf-8', post_interp, options=options) + script = self._get_script_text(entry).encode('utf-8') + scriptnames = self.get_script_filenames(entry.name) + if options and options.get('gui', False): + ext = 'pyw' + else: + ext = 'py' + self._write_script(scriptnames, shebang, script, filenames, ext) + + def _copy_script(self, script, filenames): + adjust = False + script = os.path.join(self.source_dir, convert_path(script)) + outname = os.path.join(self.target_dir, os.path.basename(script)) + if not self.force and not self._fileop.newer(script, outname): + logger.debug('not copying %s (up-to-date)', script) + return + + # Always open the file, but ignore failures in dry-run mode -- + # that way, we'll get accurate feedback if we can read the + # script. + try: + f = open(script, 'rb') + except IOError: # pragma: no cover + if not self.dry_run: + raise + f = None + else: + first_line = f.readline() + if not first_line: # pragma: no cover + logger.warning('%s is an empty file (skipping)', script) + return + + match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) + if match: + adjust = True + post_interp = match.group(1) or b'' + + if not adjust: + if f: + f.close() + self._fileop.copy_file(script, outname) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + else: + logger.info('copying and adjusting %s -> %s', script, self.target_dir) + if not self._fileop.dry_run: + encoding, lines = detect_encoding(f.readline) + f.seek(0) + shebang = self._get_shebang(encoding, post_interp) + if b'pythonw' in first_line: # pragma: no cover + ext = 'pyw' + else: + ext = 'py' + n = os.path.basename(outname) + self._write_script([n], shebang, f.read(), filenames, ext) + if f: + f.close() + + @property + def dry_run(self): + return self._fileop.dry_run + + @dry_run.setter + def dry_run(self, value): + self._fileop.dry_run = value + + if os.name == 'nt' or (os.name == 'java' and os._name == 'nt'): # pragma: no cover + # Executable launcher support. + # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ + + def _get_launcher(self, kind): + if struct.calcsize('P') == 8: # 64-bit + bits = '64' + else: + bits = '32' + platform_suffix = '-arm' if get_platform() == 'win-arm64' else '' + name = '%s%s%s.exe' % (kind, bits, platform_suffix) + if name not in WRAPPERS: + msg = ('Unable to find resource %s in package %s' % + (name, DISTLIB_PACKAGE)) + raise ValueError(msg) + return WRAPPERS[name] + + # Public API follows + + def make(self, specification, options=None): + """ + Make a script. + + :param specification: The specification, which is either a valid export + entry specification (to make a script from a + callable) or a filename (to make a script by + copying from a source location). + :param options: A dictionary of options controlling script generation. + :return: A list of all absolute pathnames written to. + """ + filenames = [] + entry = get_export_entry(specification) + if entry is None: + self._copy_script(specification, filenames) + else: + self._make_script(entry, filenames, options=options) + return filenames + + def make_multiple(self, specifications, options=None): + """ + Take a list of specifications and make scripts from them, + :param specifications: A list of specifications. + :return: A list of all absolute pathnames written to, + """ + filenames = [] + for specification in specifications: + filenames.extend(self.make(specification, options)) + return filenames diff --git a/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe b/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..52154f0be32cc2bdbf98af131d477900667d0abd GIT binary patch literal 97792 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