From: David Malcolm Date: Tue, 18 Jan 2011 23:45:53 +0000 (+0000) Subject: Fix typo in example of barrier timeouts from r88102 X-Git-Tag: v3.2rc2~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4934864853439a1ede7e9acede8cccde02e22db9;p=thirdparty%2FPython%2Fcpython.git Fix typo in example of barrier timeouts from r88102 --- diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index b53f1a3e611b..f0a8fc08a567 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: