https://t.me/RX1948
Server : Apache
System : Linux iad1-shared-b8-43 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User : dh_edsupp ( 6597262)
PHP Version : 8.2.26
Disable Function : NONE
Directory :  /lib/python3/dist-packages/numpy/typing/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //lib/python3/dist-packages/numpy/typing/tests/test_typing_extensions.py
"""Tests for the optional typing-extensions dependency."""

import sys
import textwrap
import subprocess

CODE = textwrap.dedent(r"""
    import sys
    import importlib

    assert "typing_extensions" not in sys.modules
    assert "numpy.typing" not in sys.modules

    # Importing `typing_extensions` will now raise an `ImportError`
    sys.modules["typing_extensions"] = None
    assert importlib.import_module("numpy.typing")
""")


def test_no_typing_extensions() -> None:
    """Import `numpy.typing` in the absence of typing-extensions.

    Notes
    -----
    Ideally, we'd just run the normal typing tests in an environment where
    typing-extensions is not installed, but unfortunatelly this is currently
    impossible as it is an indirect hard dependency of pytest.

    """
    p = subprocess.run([sys.executable, '-c', CODE], capture_output=True)
    if p.returncode:
        raise AssertionError(
            f"Non-zero return code: {p.returncode!r}\n\n{p.stderr.decode()}"
        )


https://t.me/RX1948 - 2025