From 6ef633168ce2bbbe2623e0f263d7fee58efd4415 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 21 Jan 2011 07:46:41 +0100 Subject: [PATCH] simplified example --- src/tutorial/clibraries.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. -- 2.26.2