diff options
author | David Malcolm <dmalcolm@redhat.com> | 2011-01-18 23:45:53 (GMT) |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2011-01-18 23:45:53 (GMT) |
commit | 4934864853439a1ede7e9acede8cccde02e22db9 (patch) | |
tree | 4ed277ce321d115d23154b6723608d76bb1c177d /Doc/whatsnew | |
parent | 2c3865b210c9c9cd5a2fc0a21e315b9d6da03084 (diff) | |
download | cpython-4934864853439a1ede7e9acede8cccde02e22db9.zip cpython-4934864853439a1ede7e9acede8cccde02e22db9.tar.gz cpython-4934864853439a1ede7e9acede8cccde02e22db9.tar.bz2 |
Fix typo in example of barrier timeouts from r88102
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 2 |
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: |