1
0
Fork 0
Old engine for Continuous Time Bayesian Networks. Superseded by reCTBN. 🐍 https://github.com/madlabunimib/PyCTBN
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
PyCTBN/venv/lib/python3.9/site-packages/pandas/util/__init__.py

30 lines
693 B

from pandas.util._decorators import Appender, Substitution, cache_readonly # noqa
from pandas import compat
from pandas.core.util.hashing import hash_array, hash_pandas_object # noqa
# compatibility for import pandas; pandas.util.testing
if compat.PY37:
def __getattr__(name):
if name == "testing":
import pandas.util.testing
return pandas.util.testing
else:
raise AttributeError(f"module 'pandas.util' has no attribute '{name}'")
else:
class _testing:
def __getattr__(self, item):
import pandas.util.testing
return getattr(pandas.util.testing, item)
testing = _testing()
del compat