diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-20 19:51:18 +0300 |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-20 19:51:18 +0300 |
| commit | cd1d3ef77bb4385ba59c76986eca75f8d4df8fd7 (patch) | |
| tree | 27d8eefbf44f30f96e960f1c072d9a034d0cc711 /Doc/library | |
| parent | 81231d9379490fc6c3d0fa3e2186f3dd8bb068e4 (diff) | |
| download | cpython-git-cd1d3ef77bb4385ba59c76986eca75f8d4df8fd7.tar.gz | |
#13233: fix typo.
Diffstat (limited to 'Doc/library')
| -rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index ea788d31f8..767c40f39a 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -910,7 +910,7 @@ Files and Directories try: fp = open("myfile") except IOError as e: - if e.errno == errno.EACCESS: + if e.errno == errno.EACCES: return "some default data" # Not a permission error. raise |
