You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2020/03/12 15:02:29 UTC

[arrow] branch master updated (f60c0b1 -> e28c5fa)

This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from f60c0b1  ARROW-8083: [GLib] Add support for Peek() to GIOInputStream
     add e28c5fa  ARROW-7419: [Python] Support SparseCSCMatrix

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/ipc/reader.cc                |  17 ++-
 cpp/src/arrow/python/deserialize.cc        |   8 ++
 cpp/src/arrow/python/deserialize.h         |  10 +-
 cpp/src/arrow/python/numpy_convert.cc      |  76 +++++++++---
 cpp/src/arrow/python/numpy_convert.h       |  17 +++
 cpp/src/arrow/python/pyarrow.cc            |  18 +++
 cpp/src/arrow/python/pyarrow.h             |   6 +
 cpp/src/arrow/python/pyarrow_api.h         |   9 ++
 cpp/src/arrow/python/pyarrow_lib.h         |   2 +
 cpp/src/arrow/python/serialize.cc          |  25 +++-
 cpp/src/arrow/python/serialize.h           |   1 +
 docs/source/python/extending.rst           |  21 ++++
 python/pyarrow/__init__.pxd                |   6 +-
 python/pyarrow/__init__.py                 |   2 +-
 python/pyarrow/includes/libarrow.pxd       |  31 +++++
 python/pyarrow/lib.pxd                     |  15 +++
 python/pyarrow/public-api.pxi              |  26 +++-
 python/pyarrow/serialization.pxi           |   1 +
 python/pyarrow/serialization.py            |  16 ++-
 python/pyarrow/tensor.pxi                  | 184 ++++++++++++++++++++++++++++-
 python/pyarrow/tests/test_serialization.py |  71 ++++++++++-
 python/pyarrow/tests/test_sparse_tensor.py |   3 +
 22 files changed, 533 insertions(+), 32 deletions(-)