Skip to content

Commit d5950af

Browse files
committed
Merge remote-tracking branch 'upstream/main' into dt-namespace
2 parents 987d12e + 4ac1291 commit d5950af

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

spec/API_specification/dataframe_api/dataframe_object.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def __dataframe_namespace__(self) -> Namespace:
5050
recommended to only include those names that are part of the
5151
specification.
5252
"""
53+
...
5354

5455
@property
5556
def dataframe(self) -> SupportsDataFrameAPI:
@@ -256,7 +257,7 @@ def column_names(self) -> list[str]:
256257
...
257258

258259
@property
259-
def schema(self) -> dict[str, Any]:
260+
def schema(self) -> dict[str, DType]:
260261
"""
261262
Get dataframe's schema.
262263
@@ -265,6 +266,7 @@ def schema(self) -> dict[str, Any]:
265266
dict[str, Any]
266267
Mapping from column name to data type.
267268
"""
269+
...
268270

269271
def sort(
270272
self,
@@ -969,3 +971,4 @@ def join(
969971
If, apart from `left_on` and `right_on`, there are any column names
970972
present in both `self` and `other`.
971973
"""
974+
...

0 commit comments

Comments
 (0)