File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 3939 npt ,
4040)
4141from pandas .errors import MergeError
42- from pandas .util ._decorators import cache_readonly
42+ from pandas .util ._decorators import (
43+ cache_readonly ,
44+ set_module ,
45+ )
4346from pandas .util ._exceptions import find_stack_level
4447
4548from pandas .core .dtypes .base import ExtensionDtype
138141_known = (np .ndarray , ExtensionArray , Index , ABCSeries )
139142
140143
144+ @set_module ("pandas" )
141145def merge (
142146 left : DataFrame | Series ,
143147 right : DataFrame | Series ,
@@ -502,6 +506,7 @@ def _groupby_and_merge(
502506 return result , lby
503507
504508
509+ @set_module ("pandas" )
505510def merge_ordered (
506511 left : DataFrame | Series ,
507512 right : DataFrame | Series ,
@@ -645,6 +650,7 @@ def _merger(x, y) -> DataFrame:
645650 return result
646651
647652
653+ @set_module ("pandas" )
648654def merge_asof (
649655 left : DataFrame | Series ,
650656 right : DataFrame | Series ,
You can’t perform that action at this time.
0 commit comments