Skip to content

Commit

Permalink
Remove ref to nonexistent sample code
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbaker committed Jan 19, 2010
1 parent bf5d5c6 commit 931b08e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions chapter19.rst
Expand Up @@ -581,9 +581,7 @@ most versatile of the synchronizing objects for real usage.
``Condition`` objects are always associated with a ``Lock``. Your code
needs to bracket waiting and notifying the condition by acquiring the
corresponding lock, then finally (as always!) releasing it. As usual,
this is easiest done in the context of the with-statement::

.. literalinclude:: src/chapter19/condition.py
this is easiest done in the context of the with-statement.

For example, here's how we actually implement a ``Queue`` in the
standard library of Jython (just modified here to use the
Expand Down

0 comments on commit 931b08e

Please sign in to comment.