Skip to content

Commit b201c68

Browse files
committed
Remove Column.name, rename get_buffer to get_data_buffer
1 parent 9f82870 commit b201c68

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

protocol/dataframe_protocol.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,6 @@ class Column:
117117
doesn't need its own version or ``__column__`` protocol.
118118
119119
"""
120-
@property
121-
def name(self) -> str:
122-
pass
123120

124121
@property
125122
def size(self) -> Optional[int]:
@@ -247,7 +244,7 @@ def get_chunks(self, n_chunks : Optional[int] = None) -> Iterable[Column]:
247244
"""
248245
pass
249246

250-
def get_buffer(self) -> Buffer:
247+
def get_data_buffer(self) -> Buffer:
251248
"""
252249
Return the buffer containing the data.
253250
"""

0 commit comments

Comments
 (0)