School/.venv/lib/python3.9/site-packages/pandas/util/__init__.py
Kristofers Solo 1e065cc4b2 Updated .venv
2021-11-22 17:11:45 +02:00

20 lines
402 B
Python

from pandas.util._decorators import ( # noqa
Appender,
Substitution,
cache_readonly,
)
from pandas.core.util.hashing import ( # noqa
hash_array,
hash_pandas_object,
)
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}'")