Fix import -> cimport typo.
authorRobert Bradshaw <robertwb@math.washington.edu>
Sat, 9 Oct 2010 18:21:08 +0000 (11:21 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sat, 9 Oct 2010 18:21:08 +0000 (11:21 -0700)
src/tutorial/pxd_files.rst

index 1a89136bba96348b35797d2c7217cf3cc174687d..fc85f9dc78ac8c87cb43dfa71487a9750c6e9d6e 100644 (file)
@@ -26,7 +26,7 @@ In our integration example, we might break it up into ``pxd`` files like this:
 
  1. Add a ``cmath.pxd`` function which defines the C functions available from
     the C ``math.h`` header file, like ``sin``. Then one would simply do
-    ``from cmath import sin`` in ``integrate.pyx``.
+    ``from cmath cimport sin`` in ``integrate.pyx``.
  2. Add a ``integrate.pxd`` so that other modules written in Cython
     can define fast custom functions to integrate.
     ::