From: Stefan Behnel Date: Fri, 21 Jan 2011 06:46:41 +0000 (+0100) Subject: simplified example X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6ef633168ce2bbbe2623e0f263d7fee58efd4415;p=cython.git simplified example --- diff --git a/src/tutorial/clibraries.rst b/src/tutorial/clibraries.rst index 67e7fd05..de4f9130 100644 --- a/src/tutorial/clibraries.rst +++ b/src/tutorial/clibraries.rst @@ -238,7 +238,8 @@ flags, such as:: Once we have compiled the module for the first time, we can now import it and instantiate a new Queue:: - PYTHONPATH=. python -c 'import queue.Queue as Q ; Q()' + $ export PYTHONPATH=. + $ python -c 'import queue.Queue as Q ; Q()' However, this is all our Queue class can do so far, so let's make it more usable.