Skip to content

Commit 1bc19ce

Browse files
authored
add Column.column (#186)
1 parent b166cdf commit 1bc19ce

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

spec/API_specification/dataframe_api/column_object.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@ def __column_namespace__(
4646
specification.
4747
4848
"""
49+
50+
@property
51+
def column(self) -> object:
52+
"""
53+
Return underlying (not-necessarily-Standard-compliant) column.
54+
55+
If a library only implements the Standard, then this can return `self`.
56+
"""
57+
...
4958

5059
def __len__(self) -> int:
5160
"""

0 commit comments

Comments
 (0)