Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7af65568
Commit
7af65568
authored
Dec 29, 2008
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#4764 in io.open, set IOError.filename when trying to open a directory on POSIX platforms
parent
fe231b07
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
Lib/test/test_fileio.py
Lib/test/test_fileio.py
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_fileio.c
Modules/_fileio.c
+4
-4
No files found.
Lib/test/test_fileio.py
View file @
7af65568
...
...
@@ -109,6 +109,7 @@ class AutoFileTests(unittest.TestCase):
_fileio
.
_FileIO
(
'.'
,
'r'
)
except
IOError
as
e
:
self
.
assertNotEqual
(
e
.
errno
,
0
)
self
.
assertEqual
(
e
.
filename
,
"."
)
else
:
self
.
fail
(
"Should have raised IOError"
)
...
...
Misc/NEWS
View file @
7af65568
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #4764: With io.open, IOError.filename is set when trying to open a
directory on POSIX systems.
- Issue #4764: IOError.filename is set when trying to open a directory on POSIX
systems.
...
...
Modules/_fileio.c
View file @
7af65568
...
...
@@ -98,7 +98,7 @@ fileio_new(PyTypeObject *type, PyObject *args, PyObject *kews)
directories, so we need a check. */
static
int
dircheck
(
PyFileIOObject
*
self
)
dircheck
(
PyFileIOObject
*
self
,
char
*
name
)
{
#if defined(HAVE_FSTAT) && defined(S_IFDIR) && defined(EISDIR)
struct
stat
buf
;
...
...
@@ -109,8 +109,8 @@ dircheck(PyFileIOObject* self)
PyObject
*
exc
;
internal_close
(
self
);
exc
=
PyObject_CallFunction
(
PyExc_IOError
,
"(is)"
,
EISDIR
,
msg
);
exc
=
PyObject_CallFunction
(
PyExc_IOError
,
"(is
s
)"
,
EISDIR
,
msg
,
name
);
PyErr_SetObject
(
PyExc_IOError
,
exc
);
Py_XDECREF
(
exc
);
return
-
1
;
...
...
@@ -271,7 +271,7 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
#endif
goto
error
;
}
if
(
dircheck
(
self
)
<
0
)
if
(
dircheck
(
self
,
name
)
<
0
)
goto
error
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment