Skip to content

Commit deeb7e0

Browse files
committed
Manual changes
1 parent 446f7eb commit deeb7e0

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

pandas/__init__.py

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

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

4949
from pandas.core.api import (
5050
# dtype
@@ -365,3 +365,5 @@
365365
"value_counts",
366366
"wide_to_long",
367367
]
368+
369+
import pandas.core.groupby # pyright: ignore[reportUnusedImport] # noqa: F401

pandas/_core/__init__.py

Whitespace-only changes.

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)

pyright_reportGeneralTypeIssues.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"exclude":
1111
[
1212
"pandas/tests",
13+
"pandas/core/groupby",
1314

1415
"pandas/io/clipboard",
1516
"pandas/util/version",

0 commit comments

Comments
 (0)