File tree 2 files changed +4
-0
lines changed
API_specification/dataframe_api 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,9 @@ def concat(dataframes: Sequence[DataFrame]) -> DataFrame:
70
70
The order in which the input DataFrames appear in
71
71
the output is preserved (so long as the DataFrame implementation supports row
72
72
ordering).
73
+
74
+ To be guaranteed to run across all implementations, :meth:`maybe_execute` should
75
+ be executed on all input dataframes at some point before calling this method.
73
76
"""
74
77
...
75
78
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ Operations which require `DataFrame.maybe_execute` to have been called at some p
66
66
point are:
67
67
- ` DataFrame.to_array `
68
68
- ` DataFrame.shape `
69
+ - ` concat `
69
70
- calling ` bool ` , ` int ` , or ` float ` on a scalar
70
71
71
72
Note now ` DataFrame.maybe_execute ` is called only once, and as late as possible.
You can’t perform that action at this time.
0 commit comments