File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 39
39
npt ,
40
40
)
41
41
from 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
+ )
43
46
from pandas .util ._exceptions import find_stack_level
44
47
45
48
from pandas .core .dtypes .base import ExtensionDtype
138
141
_known = (np .ndarray , ExtensionArray , Index , ABCSeries )
139
142
140
143
144
+ @set_module ("pandas" )
141
145
def merge (
142
146
left : DataFrame | Series ,
143
147
right : DataFrame | Series ,
@@ -502,6 +506,7 @@ def _groupby_and_merge(
502
506
return result , lby
503
507
504
508
509
+ @set_module ("pandas" )
505
510
def merge_ordered (
506
511
left : DataFrame | Series ,
507
512
right : DataFrame | Series ,
@@ -645,6 +650,7 @@ def _merger(x, y) -> DataFrame:
645
650
return result
646
651
647
652
653
+ @set_module ("pandas" )
648
654
def merge_asof (
649
655
left : DataFrame | Series ,
650
656
right : DataFrame | Series ,
You can’t perform that action at this time.
0 commit comments