Commit ea0359d9 authored by Stefan Behnel's avatar Stefan Behnel

Improve initial note on memory views on the old buffer docs page.

parent 53d4eea0
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
Working with NumPy Working with NumPy
======================= =======================
.. NOTE:: In Cython 0.16, typed memoryviews were introduced. .. NOTE:: Cython 0.16 introduced typed memoryviews as a successor to the NumPy
They are easier to use than the numpy syntax, they are faster, integration described here. They are easier to use than the buffer syntax
and don't need the GIL. They should be preferred to the below, have less overhead, and can be passed around without requiring the GIL.
syntax presented in this page. They should be preferred to the syntax presented in this page.
See :ref:`Typed Memoryviews <memoryviews>`. See :ref:`Typed Memoryviews <memoryviews>`.
You can use NumPy from Cython exactly the same as in regular Python, but by You can use NumPy from Cython exactly the same as in regular Python, but by
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment