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
d2780aed
Commit
d2780aed
authored
May 25, 2011
by
Victor Stinner
Browse files
Options
Browse Files
Download
Plain Diff
(Merge 3.2) Issue #12175: RawIOBase.readall() now returns None if read()
returns None.
parents
af62c7d3
988512cf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
11 deletions
+28
-11
Lib/_pyio.py
Lib/_pyio.py
+5
-1
Lib/test/test_io.py
Lib/test/test_io.py
+5
-2
Misc/NEWS
Misc/NEWS
+10
-8
Modules/_io/iobase.c
Modules/_io/iobase.c
+8
-0
No files found.
Lib/_pyio.py
View file @
d2780aed
...
...
@@ -558,7 +558,11 @@ class RawIOBase(IOBase):
if
not
data
:
break
res
+=
data
return
bytes
(
res
)
if
res
:
return
bytes
(
res
)
else
:
# b'' or None
return
data
def
readinto
(
self
,
b
):
"""Read up to len(b) bytes into bytearray b.
...
...
Lib/test/test_io.py
View file @
d2780aed
...
...
@@ -833,14 +833,17 @@ class BufferedReaderTest(unittest.TestCase, CommonBufferedTests):
# Inject some None's in there to simulate EWOULDBLOCK
rawio
=
self
.
MockRawIO
((
b"abc"
,
b"d"
,
None
,
b"efg"
,
None
,
None
,
None
))
bufio
=
self
.
tp
(
rawio
)
self
.
assertEqual
(
b"abcd"
,
bufio
.
read
(
6
))
self
.
assertEqual
(
b"e"
,
bufio
.
read
(
1
))
self
.
assertEqual
(
b"fg"
,
bufio
.
read
())
self
.
assertEqual
(
b""
,
bufio
.
peek
(
1
))
self
.
assert
True
(
None
is
bufio
.
read
())
self
.
assert
IsNone
(
bufio
.
read
())
self
.
assertEqual
(
b""
,
bufio
.
read
())
rawio
=
self
.
MockRawIO
((
b"a"
,
None
,
None
))
self
.
assertEqual
(
b"a"
,
rawio
.
readall
())
self
.
assertIsNone
(
rawio
.
readall
())
def
test_read_past_eof
(
self
):
rawio
=
self
.
MockRawIO
((
b"abc"
,
b"d"
,
b"efg"
))
bufio
=
self
.
tp
(
rawio
)
...
...
Misc/NEWS
View file @
d2780aed
...
...
@@ -161,11 +161,16 @@ Core and Builtins
Library
-------
- Issue #11109 - New service_action method for BaseServer, used by
ForkingMixin class for cleanup. Initial Patch by Justin Wark.
- Issue #12045: Avoid duplicate execution of command in ctypes.util._get_soname().
Patch by Sijin Joseph.
- Issue #12175: RawIOBase.readall() now returns None if read() returns None.
- Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError
if the file is closed.
- Issue #11109: New service_action method for BaseServer, used by ForkingMixin
class for cleanup. Initial Patch by Justin Wark.
- Issue #12045: Avoid duplicate execution of command in
ctypes.util._get_soname(). Patch by Sijin Joseph.
- Issue #10818: Remove the Tk GUI and the serve() function of the pydoc module,
pydoc -g has been deprecated in Python 3.2 and it has a new enhanced web
...
...
@@ -1062,9 +1067,6 @@ Core and Builtins
Library
-------
- Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError
if the file is closed.
- Issue #10916: mmap should not segfault when a file is mapped using 0 as length
and a non-zero offset, and an attempt to read past the end of file is made
(IndexError is raised instead). Patch by Ross Lagerwall.
...
...
Modules/_io/iobase.c
View file @
d2780aed
...
...
@@ -815,6 +815,14 @@ rawiobase_readall(PyObject *self, PyObject *args)
Py_DECREF
(
chunks
);
return
NULL
;
}
if
(
data
==
Py_None
)
{
if
(
PyList_GET_SIZE
(
chunks
)
==
0
)
{
Py_DECREF
(
chunks
);
return
data
;
}
Py_DECREF
(
data
);
break
;
}
if
(
!
PyBytes_Check
(
data
))
{
Py_DECREF
(
chunks
);
Py_DECREF
(
data
);
...
...
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