Commit 6ef63316 authored by Stefan Behnel's avatar Stefan Behnel

simplified example

parent 2f0eb188
...@@ -238,7 +238,8 @@ flags, such as:: ...@@ -238,7 +238,8 @@ flags, such as::
Once we have compiled the module for the first time, we can now import Once we have compiled the module for the first time, we can now import
it and instantiate a new Queue:: 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 However, this is all our Queue class can do so far, so let's make it
more usable. more usable.
......
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