commit | 62ab10a05acdc8bb45549e4df6fd6fb5f4623aab | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Oct 12 20:10:51 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Oct 12 20:10:51 2011 +0200 |
tree | aa9923e821b0171ac71d11f9e8414fc594fcb61c | |
parent | 5d6fbe82078fe67437755bccfa504dbbcf909a74 [diff] [blame] |
Replace mentions of IOError
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 636ac24..9190775 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst
@@ -1426,11 +1426,8 @@ try: fp = open("myfile") - except IOError as e: - if e.errno == errno.EACCESS: - return "some default data" - # Not a permission error. - raise + except PermissionError: + return "some default data" else: with fp: return fp.read()