File tree 10 files changed +98
-0
lines changed
10 files changed +98
-0
lines changed Original file line number Diff line number Diff line change
1
+ from pandas ._core import groupby as groupby_
2
+ from pandas .core .common import _depr_core
3
+
4
+
5
+ def __getattr__ (attr_name ):
6
+ attr = getattr (groupby_ , attr_name )
7
+ _depr_core ()
8
+ return attr
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import base
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in base .__dir__ ():
11
+ _globals [item ] = getattr (base , item )
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import categorical
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in categorical .__dir__ ():
11
+ _globals [item ] = getattr (categorical , item )
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import generic
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in generic .__dir__ ():
11
+ _globals [item ] = getattr (generic , item )
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import groupby
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in groupby .__dir__ ():
11
+ _globals [item ] = getattr (groupby , item )
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import grouper
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in grouper .__dir__ ():
11
+ _globals [item ] = getattr (grouper , item )
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import indexing
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in indexing .__dir__ ():
11
+ _globals [item ] = getattr (indexing , item )
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import numba_
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in numba_ .__dir__ ():
11
+ _globals [item ] = getattr (numba_ , item )
Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from pandas ._core .groupby import ops
4
+ from pandas .core .common import _depr_core
5
+
6
+ _depr_core ()
7
+
8
+ _globals = globals ()
9
+
10
+ for item in ops .__dir__ ():
11
+ _globals [item ] = getattr (ops , item )
Original file line number Diff line number Diff line change 53
53
"_version_meson" ,
54
54
# TODO(3.0): GH#55043 - remove upon removal of ArrayManager
55
55
"_get_option" ,
56
+ # GH#27522
57
+ "_depr_core" ,
56
58
}
57
59
58
60
You can’t perform that action at this time.
0 commit comments