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 1bdc13e commit 6bc135fCopy full SHA for 6bc135f
pandas/core/common.py
@@ -652,7 +652,7 @@ def fill_missing_names(names: Sequence[Hashable | None]) -> list[Hashable]:
652
return [f"level_{i}" if name is None else name for i, name in enumerate(names)]
653
654
655
-def _depr_core():
+def _depr_core() -> None:
656
warnings.warn(
657
"pandas.core is deprecated and has been renamed to "
658
"pandas._core. Accessing `_core` directly is discouraged as "
scripts/validate_unwanted_patterns.py
@@ -53,6 +53,8 @@
53
"_version_meson",
54
# TODO(3.0): GH#55043 - remove upon removal of ArrayManager
55
"_get_option",
56
+ # GH#27522
57
+ "_depr_core",
58
}
59
60
0 commit comments