Skip to content

Commit 3e097aa

Browse files
committed
add concat
1 parent 1dd4678 commit 3e097aa

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

spec/API_specification/dataframe_api/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ def concat(dataframes: Sequence[DataFrame]) -> DataFrame:
7070
The order in which the input DataFrames appear in
7171
the output is preserved (so long as the DataFrame implementation supports row
7272
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.
7376
"""
7477
...
7578

spec/design_topics/execution_model.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Operations which require `DataFrame.maybe_execute` to have been called at some p
6666
point are:
6767
- `DataFrame.to_array`
6868
- `DataFrame.shape`
69+
- `concat`
6970
- calling `bool`, `int`, or `float` on a scalar
7071

7172
Note now `DataFrame.maybe_execute` is called only once, and as late as possible.

0 commit comments

Comments
 (0)