From aaa10614e9e021b1b3c5aa6d673f420110440c1d Mon Sep 17 00:00:00 2001 From: Richard Shadrach Date: Tue, 17 Oct 2023 16:55:10 -0400 Subject: [PATCH] Manual changes --- pandas/_core/__init__.py | 0 pandas/tests/api/test_api.py | 1 + pandas/util/_tester.py | 1 + pyright_reportGeneralTypeIssues.json | 1 + 4 files changed, 3 insertions(+) create mode 100644 pandas/_core/__init__.py diff --git a/pandas/_core/__init__.py b/pandas/_core/__init__.py new file mode 100644 index 00000000000000..e69de29bb2d1d6 diff --git a/pandas/tests/api/test_api.py b/pandas/tests/api/test_api.py index bc50726a1b5f91..dd462caa75b2c7 100644 --- a/pandas/tests/api/test_api.py +++ b/pandas/tests/api/test_api.py @@ -186,6 +186,7 @@ class TestPDApi(Base): # private modules in pandas namespace private_modules = [ "_config", + "_core", "_libs", "_is_numpy_dev", "_pandas_datetime_CAPI", diff --git a/pandas/util/_tester.py b/pandas/util/_tester.py index 7cfddef7ddff87..c3e2379bc9fc88 100644 --- a/pandas/util/_tester.py +++ b/pandas/util/_tester.py @@ -43,6 +43,7 @@ def test(extra_args: list[str] | None = None, run_doctests: bool = False) -> Non "--doctest-modules", "--doctest-cython", f"--ignore={os.path.join(PKG, 'tests')}", + f"--ignore={os.path.join(PKG, 'core', 'groupby')}", ] cmd += [PKG] joined = " ".join(cmd) diff --git a/pyright_reportGeneralTypeIssues.json b/pyright_reportGeneralTypeIssues.json index 1688576f6cb0ce..c948a538b6e6a1 100644 --- a/pyright_reportGeneralTypeIssues.json +++ b/pyright_reportGeneralTypeIssues.json @@ -10,6 +10,7 @@ "exclude": [ "pandas/tests", + "pandas/core/groupby", "pandas/io/clipboard", "pandas/util/version",