You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2019/02/05 15:18:44 UTC

[arrow] branch master updated: [Website] Edits to Python string blog post

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e533a9e  [Website] Edits to Python string blog post
e533a9e is described below

commit e533a9e3f04eeb29dbd58bc0246be7d404a643da
Author: Wes McKinney <we...@apache.org>
AuthorDate: Tue Feb 5 09:18:32 2019 -0600

    [Website] Edits to Python string blog post
    
    Change-Id: I4208e6d42fc6040313de7a01f897fc22db490c43
---
 site/_posts/2019-02-05-python-string-memory-0.12.md | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/site/_posts/2019-02-05-python-string-memory-0.12.md b/site/_posts/2019-02-05-python-string-memory-0.12.md
index 842cc23..0979274 100644
--- a/site/_posts/2019-02-05-python-string-memory-0.12.md
+++ b/site/_posts/2019-02-05-python-string-memory-0.12.md
@@ -130,10 +130,10 @@ values.
 
 ## Memory and Performance Benchmarks
 
-We can use the `memory_profiler` Python package to easily get process memory
-usage within a running Python application.
+We can use the [`memory_profiler`][2] Python package to easily get process
+memory usage within a running Python application.
 
-```
+```python
 import memory_profiler
 def mem():
     return memory_profiler.memory_usage()[0]
@@ -243,4 +243,5 @@ native memory layout of pandas or other analytics tools. We will do our best to
 provide fast and memory-efficient interoperability with pandas and other
 popular libraries.
 
-[1]: https://www.slideshare.net/xhochy/extending-pandas-using-apache-arrow-and-numba
\ No newline at end of file
+[1]: https://www.slideshare.net/xhochy/extending-pandas-using-apache-arrow-and-numba
+[2]: https://pypi.org/project/memory-profiler/
\ No newline at end of file