diff options
Diffstat (limited to '.venv/lib/python3.12/site-packages/numpy/compat/__init__.py')
-rw-r--r-- | .venv/lib/python3.12/site-packages/numpy/compat/__init__.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/numpy/compat/__init__.py b/.venv/lib/python3.12/site-packages/numpy/compat/__init__.py new file mode 100644 index 00000000..504f8b00 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/numpy/compat/__init__.py @@ -0,0 +1,19 @@ +""" +Compatibility module. + +This module contains duplicated code from Python itself or 3rd party +extensions, which may be included for the following reasons: + + * compatibility + * we may only need a small subset of the copied library/module + +""" + +from .._utils import _inspect +from .._utils._inspect import getargspec, formatargspec +from . import py3k +from .py3k import * + +__all__ = [] +__all__.extend(_inspect.__all__) +__all__.extend(py3k.__all__) |