Skip to content

Commit

Permalink
fix: add missing submodule benchmark, csv and cuda (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
zen-xu authored Sep 6, 2024
1 parent 2aad904 commit 1b4b5f2
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyarrow-stubs/benchmark.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from pyarrow.lib import benchmark_PandasObjectIsNull

__all__ = ["benchmark_PandasObjectIsNull"]
27 changes: 27 additions & 0 deletions pyarrow-stubs/csv.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from pyarrow._csv import (
ISO8601,
ConvertOptions,
CSVStreamingReader,
CSVWriter,
InvalidRow,
ParseOptions,
ReadOptions,
WriteOptions,
open_csv,
read_csv,
write_csv,
)

__all__ = [
"ISO8601",
"ConvertOptions",
"CSVStreamingReader",
"CSVWriter",
"InvalidRow",
"ParseOptions",
"ReadOptions",
"WriteOptions",
"open_csv",
"read_csv",
"write_csv",
]
25 changes: 25 additions & 0 deletions pyarrow-stubs/cuda.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from pyarrow._cuda import (
BufferReader,
BufferWriter,
Context,
CudaBuffer,
HostBuffer,
IpcMemHandle,
new_host_buffer,
read_message,
read_record_batch,
serialize_record_batch,
)

__all__ = [
"BufferReader",
"BufferWriter",
"Context",
"CudaBuffer",
"HostBuffer",
"IpcMemHandle",
"new_host_buffer",
"read_message",
"read_record_batch",
"serialize_record_batch",
]

0 comments on commit 1b4b5f2

Please sign in to comment.