File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 1717import numpy as np
1818
1919from pandas ._libs import lib
20+ from pandas .util ._decorators import set_module
2021from pandas .util ._exceptions import find_stack_level
2122
2223from pandas .core .dtypes .common import (
@@ -149,6 +150,7 @@ def concat(
149150) -> DataFrame | Series : ...
150151
151152
153+ @set_module ("pandas" )
152154def concat (
153155 objs : Iterable [Series | DataFrame ] | Mapping [HashableT , Series | DataFrame ],
154156 * ,
Original file line number Diff line number Diff line change @@ -417,6 +417,7 @@ def test_set_module():
417417 assert pd .Period .__module__ == "pandas"
418418 assert pd .Timestamp .__module__ == "pandas"
419419 assert pd .Timedelta .__module__ == "pandas"
420+ assert pd .concat .__module__ == "pandas"
420421 assert pd .isna .__module__ == "pandas"
421422 assert pd .notna .__module__ == "pandas"
422423 assert pd .merge .__module__ == "pandas"
You can’t perform that action at this time.
0 commit comments