-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1d51b9
commit 2f6ebcd
Showing
10 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from pandas._core import groupby as groupby_ | ||
from pandas.core.common import _depr_core | ||
|
||
|
||
def __getattr__(attr_name): | ||
attr = getattr(groupby_, attr_name) | ||
_depr_core() | ||
return attr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import base | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in base.__dir__(): | ||
_globals[item] = getattr(base, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import categorical | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in categorical.__dir__(): | ||
_globals[item] = getattr(categorical, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import generic | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in generic.__dir__(): | ||
_globals[item] = getattr(generic, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import groupby | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in groupby.__dir__(): | ||
_globals[item] = getattr(groupby, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import grouper | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in grouper.__dir__(): | ||
_globals[item] = getattr(grouper, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import indexing | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in indexing.__dir__(): | ||
_globals[item] = getattr(indexing, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import numba_ | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in numba_.__dir__(): | ||
_globals[item] = getattr(numba_, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pandas._core.groupby import ops | ||
from pandas.core.common import _depr_core | ||
|
||
_depr_core() | ||
|
||
_globals = globals() | ||
|
||
for item in ops.__dir__(): | ||
_globals[item] = getattr(ops, item) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters