pyximport blurb
authorRobert Bradshaw <robertwb@math.washington.edu>
Sun, 25 Jan 2009 00:00:16 +0000 (16:00 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sun, 25 Jan 2009 00:00:16 +0000 (16:00 -0800)
docs/tutorial.rst
sphinxext/cython_highlighting.pyc
sphinxext/ipython_console_highlighting.pyc

index d13d814ad4936b96a5d086656b36646567042775..f5b50625da270086d56fd65a985e174a1ff24c89 100644 (file)
@@ -59,7 +59,7 @@ or :file:`helloworld.dll` in Windows. Now to use this file: start the python
 interpreter and simply import it as if it was a regular python module::
 
     >>> import helloworld
-    "Hello World"
+    Hello World
 
 Congratulations! You now know how to build a Cython extension. But So Far
 this example doesn't really give a feeling why one would ever want to use Cython, so
@@ -68,6 +68,15 @@ lets create a more realistic example.
 :mod:`pyximport`: Cython Compilation the Easy Way
 ==================================================
 
+If your module doesn't require any extra libraries or other dependancies, then 
+you can use the pyximport module by Paul Prescod to load .pyx files directly 
+without having to write a :file:`setup.py` file. 
+
+    >>> import pyximport; pyximport.install()
+    >>> import helloworld
+    Hello World
+    
+This is shipped and installed with Cython. 
 
 Fibonacci Fun
 ==============
index d80f201a13019d4bbc9de6c3d78d5dad8045883a..93ae7b51084fea8e610cc4700ed452ce8d1f3ce7 100644 (file)
Binary files a/sphinxext/cython_highlighting.pyc and b/sphinxext/cython_highlighting.pyc differ
index 9d8a8c1cadb325e4232a5295c3b8020ccc5f850d..a06c3249177290f419d60b7e083c175d63342c1a 100644 (file)
Binary files a/sphinxext/ipython_console_highlighting.pyc and b/sphinxext/ipython_console_highlighting.pyc differ