Skip to content

Commit 7182589

Browse files
committed
Manual changes
1 parent 13d0104 commit 7182589

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

pandas/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
)
4545

4646
# let init-time option registration happen
47-
import pandas.core.config_init # pyright: ignore[reportUnusedImport] # noqa: F401
4847

4948
from pandas.core.api import (
5049
# dtype

pandas/tests/api/test_api.py

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ class TestPDApi(Base):
186186
# private modules in pandas namespace
187187
private_modules = [
188188
"_config",
189+
"_core",
189190
"_libs",
190191
"_is_numpy_dev",
191192
"_pandas_datetime_CAPI",

pandas/util/_tester.py

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def test(extra_args: list[str] | None = None, run_doctests: bool = False) -> Non
4343
"--doctest-modules",
4444
"--doctest-cython",
4545
f"--ignore={os.path.join(PKG, 'tests')}",
46+
f"--ignore={os.path.join(PKG, 'core', 'groupby')}",
4647
]
4748
cmd += [PKG]
4849
joined = " ".join(cmd)

0 commit comments

Comments
 (0)