diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-03-14 09:53:26 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-03-14 09:53:26 -0600 |
commit | a2ca82f0b145e0e5f6c051259bd0df4ea1b87127 (patch) | |
tree | 95d54c2b90c71c0c932798be602215c404c00f0b /doc | |
parent | 8eb120fd13c50b269bb752a4dd5207c1fba9c905 (diff) | |
download | numpy-a2ca82f0b145e0e5f6c051259bd0df4ea1b87127.tar.gz |
DOC: Change pyrex to Cython in c-info.how-to-extend.rst.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/user/c-info.how-to-extend.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/c-info.how-to-extend.rst b/doc/source/user/c-info.how-to-extend.rst index 5901ce3e3..db6c8e118 100644 --- a/doc/source/user/c-info.how-to-extend.rst +++ b/doc/source/user/c-info.how-to-extend.rst @@ -255,7 +255,7 @@ Reference counting The biggest difficulty when writing extension modules is reference counting. It is an important reason for the popularity of f2py, weave, -pyrex, ctypes, etc.... If you mis-handle reference counts you can get +Cython, ctypes, etc.... If you mis-handle reference counts you can get problems from memory-leaks to segmentation faults. The only strategy I know of to handle reference counts correctly is blood, sweat, and tears. First, you force it into your head that every Python variable |