Skip to content

Commit

Permalink
ARROW-6873: [Python] Remove stale CColumn references
Browse files Browse the repository at this point in the history
Closes apache#5646 from xhochy/ARROW-6873 and squashes the following commits:

bcb6f78 <Uwe L. Korn> ARROW-6873:  Remove stale CColumn references

Authored-by: Uwe L. Korn <uwe.korn@quantco.com>
Signed-off-by: Antoine Pitrou <pitrou@free.fr>
  • Loading branch information
xhochy authored and pitrou committed Oct 14, 2019
1 parent 6f21dc6 commit d7ad509
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/pyarrow/__init__.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from __future__ import absolute_import

from libcpp.memory cimport shared_ptr
from pyarrow.includes.libarrow cimport (CArray, CBuffer, CColumn, CDataType,
from pyarrow.includes.libarrow cimport (CArray, CBuffer, CDataType,
CField, CRecordBatch, CSchema,
CTable, CTensor,
CSparseTensorCSR, CSparseTensorCOO)
Expand All @@ -36,6 +36,5 @@ cdef extern from "arrow/python/pyarrow.h" namespace "arrow::py":
const shared_ptr[CSparseTensorCOO]& sp_sparse_tensor)
cdef object wrap_sparse_tensor_csr(
const shared_ptr[CSparseTensorCSR]& sp_sparse_tensor)
cdef object wrap_column(const shared_ptr[CColumn]& ccolumn)
cdef object wrap_table(const shared_ptr[CTable]& ctable)
cdef object wrap_batch(const shared_ptr[CRecordBatch]& cbatch)

0 comments on commit d7ad509

Please sign in to comment.