We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a11acd commit 04e9b0aCopy full SHA for 04e9b0a
vortex-python/src/io.rs
@@ -108,7 +108,7 @@ pub fn read_url<'py>(
108
/// ... {'x': 11},
109
/// ... {'x': None},
110
/// ... ])
111
-/// >>> vx.io.write(a, "a.vortex")
+/// >>> vx.io.write(a, "a.vortex") # doctest: +SKIP
112
///
113
/// Stream a PyArrow Table directly to Vortex without loading into memory:
114
@@ -121,7 +121,7 @@ pub fn read_url<'py>(
121
122
/// >>> import pyarrow as pa
123
/// >>> import vortex as vx
124
-/// >>> reader = pa.RecordBatchReader.from_batches(schema, batches)
+/// >>> reader = pa.RecordBatchReader.from_batches(schema, batches) # doctest: +SKIP
125
/// >>> vx.io.write(reader, "streamed.vortex") # doctest: +SKIP
126
127
#[pyfunction]
0 commit comments