[Python-checkins] r88103 - python/branches/py3k/Doc/whatsnew/3.2.rst
david.malcolm
python-checkins at python.org
Wed Jan 19 00:45:54 CET 2011
Author: david.malcolm
Date: Wed Jan 19 00:45:53 2011
New Revision: 88103
Log:
Fix typo in example of barrier timeouts from r88102
Modified:
python/branches/py3k/Doc/whatsnew/3.2.rst
Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst (original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst Wed Jan 19 00:45:53 2011
@@ -874,7 +874,7 @@
ballots = conduct_election(site)
try:
all_polls_closed.wait(timeout = midnight - time.now())
- except BrokenBarrerError:
+ except BrokenBarrierError:
lockbox = seal_ballots(ballots)
queue.put(lockbox)
else:
More information about the Python-checkins
mailing list