From e4f6a80ed843ac68ffbd1599d1dc0c55362df205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Sat, 12 Mar 2011 15:56:09 +0100 Subject: Fix example in atexit doc: Both open and read could raise the IOError (#10461 follow-up). Thanks to SilenGhost for catching this. --- Doc/library/atexit.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index fc2b5a7..db99eec 100644 --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -61,14 +61,11 @@ from a file when it is imported and save the counter's updated value automatically when the program terminates without relying on the application making an explicit call into this module at termination. :: - infile = open("/tmp/counter") try: - _count = int(infile.read()) + with open("/tmp/counter") as infile: + _count = int(infile.read()) except IOError: _count = 0 - finally: - infile.close() - def incrcounter(n): global _count -- cgit v0.12