We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb5ef7c commit 3ca3945Copy full SHA for 3ca3945
pandas/tests/api/test_api.py
@@ -486,16 +486,6 @@ def test_util_in_top_level(self):
486
pd.util.foo
487
488
489
-def test_module():
490
- for name in pd.__all__:
491
- obj = getattr(pd, name)
492
- if inspect.isclass(obj) or inspect.isfunction(obj):
493
- assert obj.__module__ in ("pandas", "pandas._config.config")
494
-
495
- assert api.typing.SeriesGroupBy.__module__ == "pandas.api.typing"
496
- assert api.typing.DataFrameGroupBy.__module__ == "pandas.api.typing"
497
498
499
def get_pandas_objects(
500
module_name: str, recurse: bool, include_functions: bool
501
) -> list[tuple[str, str, object]]:
0 commit comments