Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions python/doc/source/memory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,18 +142,6 @@ the stream is garbaged-collected, all of the memory is freed:
stream = None
pa.total_allocated_bytes()

Classes and functions that may allocate memory will often have an option to
pass in a custom memory pool:

.. ipython:: python

my_pool = pa.jemalloc_memory_pool()
my_pool
my_pool.bytes_allocated()
stream = pa.BufferOutputStream(my_pool)
stream.write(b'foo')
my_pool.bytes_allocated()

On-Disk and Memory Mapped Files
-------------------------------

Expand Down
2 changes: 1 addition & 1 deletion site/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ First, build PyArrow with all optional extensions (Apache Parquet).

```
cd ../python
python setup.py build_ext --inplace --with-parquet
python setup.py build_ext --inplace --with-parquet --with-plasma
python setup.py build_sphinx -s doc/source
rsync -r doc/_build/html/ ../site/asf-site/docs/python/
```
Expand Down