summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2011-01-18 23:45:53 (GMT)
committerDavid Malcolm <dmalcolm@redhat.com>2011-01-18 23:45:53 (GMT)
commit4934864853439a1ede7e9acede8cccde02e22db9 (patch)
tree4ed277ce321d115d23154b6723608d76bb1c177d /Doc
parent2c3865b210c9c9cd5a2fc0a21e315b9d6da03084 (diff)
downloadcpython-4934864853439a1ede7e9acede8cccde02e22db9.zip
cpython-4934864853439a1ede7e9acede8cccde02e22db9.tar.gz
cpython-4934864853439a1ede7e9acede8cccde02e22db9.tar.bz2
Fix typo in example of barrier timeouts from r88102
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index b53f1a3..f0a8fc0 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -874,7 +874,7 @@ released and a :exc:`~threading.BrokenBarrierError` exception is raised::
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: