Skip to content

Commit aaa1061

Browse files
committed
Manual changes
1 parent 446f7eb commit aaa1061

File tree

4 files changed

+3
-0
lines changed

4 files changed

+3
-0
lines changed

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)