File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 17
17
import numpy as np
18
18
19
19
from pandas ._libs import lib
20
+ from pandas .util ._decorators import set_module
20
21
from pandas .util ._exceptions import find_stack_level
21
22
22
23
from pandas .core .dtypes .common import (
@@ -149,6 +150,7 @@ def concat(
149
150
) -> DataFrame | Series : ...
150
151
151
152
153
+ @set_module ("pandas" )
152
154
def concat (
153
155
objs : Iterable [Series | DataFrame ] | Mapping [HashableT , Series | DataFrame ],
154
156
* ,
Original file line number Diff line number Diff line change @@ -417,6 +417,7 @@ def test_set_module():
417
417
assert pd .Period .__module__ == "pandas"
418
418
assert pd .Timestamp .__module__ == "pandas"
419
419
assert pd .Timedelta .__module__ == "pandas"
420
+ assert pd .concat .__module__ == "pandas"
420
421
assert pd .isna .__module__ == "pandas"
421
422
assert pd .notna .__module__ == "pandas"
422
423
assert pd .merge .__module__ == "pandas"
You can’t perform that action at this time.
0 commit comments