(df, *args, **kwargs)
| 56 | |
| 57 | @_deprecated_kwarg("convert_dtype", None) |
| 58 | def apply(df, *args, **kwargs): |
| 59 | with check_convert_dtype_deprecation(): |
| 60 | with check_apply_dataframe_deprecation(): |
| 61 | return df.apply(*args, **kwargs) |
| 62 | |
| 63 | |
| 64 | def try_loc(df, iindexer, cindexer=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…