mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
#13233: fix typo.
This commit is contained in:
parent
81231d9379
commit
cd1d3ef77b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue