diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-12 18:10:51 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-12 18:10:51 (GMT) |
commit | 62ab10a05acdc8bb45549e4df6fd6fb5f4623aab (patch) | |
tree | aa9923e821b0171ac71d11f9e8414fc594fcb61c /Doc/library/atexit.rst | |
parent | 5d6fbe82078fe67437755bccfa504dbbcf909a74 (diff) | |
download | cpython-62ab10a05acdc8bb45549e4df6fd6fb5f4623aab.zip cpython-62ab10a05acdc8bb45549e4df6fd6fb5f4623aab.tar.gz cpython-62ab10a05acdc8bb45549e4df6fd6fb5f4623aab.tar.bz2 |
Replace mentions of IOError
Diffstat (limited to 'Doc/library/atexit.rst')
-rw-r--r-- | Doc/library/atexit.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index 15b55e8..54131f5 100644 --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -69,7 +69,7 @@ making an explicit call into this module at termination. :: try: with open("/tmp/counter") as infile: _count = int(infile.read()) - except IOError: + except FileNotFoundError: _count = 0 def incrcounter(n): |