Updated script that can be controled by Nodejs web app

This commit is contained in:
mac OS
2024-11-25 12:24:18 +07:00
parent c440eda1f4
commit 8b0ab2bd3a
8662 changed files with 1803808 additions and 34 deletions
@@ -0,0 +1,29 @@
"""
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
This module is deprecated since 1.26.0 and will be removed in future versions.
"""
import warnings
from .._utils import _inspect
from .._utils._inspect import getargspec, formatargspec
from . import py3k
from .py3k import *
warnings.warn(
"`np.compat`, which was used during the Python 2 to 3 transition,"
" is deprecated since 1.26.0, and will be removed",
DeprecationWarning, stacklevel=2
)
__all__ = []
__all__.extend(_inspect.__all__)
__all__.extend(py3k.__all__)