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
59406a9d
Commit
59406a9d
authored
Mar 26, 2009
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
officially deprecated max_buffer_size
parent
1ef7c6bc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
15 deletions
+65
-15
Lib/_pyio.py
Lib/_pyio.py
+14
-7
Lib/test/test_io.py
Lib/test/test_io.py
+24
-2
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_bufferedio.c
Modules/_bufferedio.c
+24
-6
No files found.
Lib/_pyio.py
View file @
59406a9d
...
...
@@ -5,6 +5,7 @@ Python implementation of the io module.
import
os
import
abc
import
codecs
import
warnings
# Import _thread instead of threading to reduce startup cost
try
:
from
_thread
import
allocate_lock
as
Lock
...
...
@@ -960,16 +961,20 @@ class BufferedWriter(_BufferedIOMixin):
The constructor creates a BufferedWriter for the given writeable raw
stream. If the buffer_size is not given, it defaults to
DEFAULT_BUFFER_SIZE. If max_buffer_size is omitted, it defaults to
twice the buffer size.
DEFAULT_BUFFER_SIZE.
"""
_warning_stack_offset
=
2
def
__init__
(
self
,
raw
,
buffer_size
=
DEFAULT_BUFFER_SIZE
,
max_buffer_size
=
None
):
raw
.
_checkWritable
()
_BufferedIOMixin
.
__init__
(
self
,
raw
)
if
buffer_size
<=
0
:
raise
ValueError
(
"invalid buffer size"
)
if
max_buffer_size
is
not
None
:
warnings
.
warn
(
"max_buffer_size is deprecated"
,
DeprecationWarning
,
self
.
_warning_stack_offset
)
self
.
buffer_size
=
buffer_size
self
.
_write_buf
=
bytearray
()
self
.
_write_lock
=
Lock
()
...
...
@@ -1055,8 +1060,7 @@ class BufferedRWPair(BufferedIOBase):
reader and writer are RawIOBase objects that are readable and
writeable respectively. If the buffer_size is omitted it defaults to
DEFAULT_BUFFER_SIZE. The max_buffer_size (for the buffered writer)
defaults to twice the buffer size.
DEFAULT_BUFFER_SIZE.
"""
# XXX The usefulness of this (compared to having two separate IO
...
...
@@ -1068,10 +1072,12 @@ class BufferedRWPair(BufferedIOBase):
The arguments are two RawIO instances.
"""
if
max_buffer_size
is
not
None
:
warnings
.
warn
(
"max_buffer_size is deprecated"
,
DeprecationWarning
,
2
)
reader
.
_checkReadable
()
writer
.
_checkWritable
()
self
.
reader
=
BufferedReader
(
reader
,
buffer_size
)
self
.
writer
=
BufferedWriter
(
writer
,
buffer_size
,
max_buffer_size
)
self
.
writer
=
BufferedWriter
(
writer
,
buffer_size
)
def
read
(
self
,
n
=
None
):
if
n
is
None
:
...
...
@@ -1117,10 +1123,11 @@ class BufferedRandom(BufferedWriter, BufferedReader):
The constructor creates a reader and writer for a seekable stream,
raw, given in the first argument. If the buffer_size is omitted it
defaults to DEFAULT_BUFFER_SIZE. The max_buffer_size (for the buffered
writer) defaults to twice the buffer size.
defaults to DEFAULT_BUFFER_SIZE.
"""
_warning_stack_offset
=
3
def
__init__
(
self
,
raw
,
buffer_size
=
DEFAULT_BUFFER_SIZE
,
max_buffer_size
=
None
):
raw
.
_checkSeekable
()
...
...
Lib/test/test_io.py
View file @
59406a9d
...
...
@@ -26,6 +26,7 @@ import array
import
threading
import
random
import
unittest
import
warnings
import
weakref
import
gc
import
abc
...
...
@@ -861,7 +862,7 @@ class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):
def
test_write_non_blocking
(
self
):
raw
=
self
.
MockNonBlockWriterIO
()
bufio
=
self
.
tp
(
raw
,
8
,
8
)
bufio
=
self
.
tp
(
raw
,
8
)
self
.
assertEquals
(
bufio
.
write
(
b"abcd"
),
4
)
self
.
assertEquals
(
bufio
.
write
(
b"efghi"
),
5
)
...
...
@@ -979,6 +980,17 @@ class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):
self
.
assertRaises
(
IOError
,
bufio
.
tell
)
self
.
assertRaises
(
IOError
,
bufio
.
write
,
b"abcdef"
)
def
test_max_buffer_size_deprecation
(
self
):
with
support
.
check_warnings
()
as
w
:
warnings
.
simplefilter
(
"always"
,
DeprecationWarning
)
self
.
tp
(
self
.
MockRawIO
(),
8
,
12
)
self
.
assertEqual
(
len
(
w
.
warnings
),
1
)
warning
=
w
.
warnings
[
0
]
self
.
assertTrue
(
warning
.
category
is
DeprecationWarning
)
self
.
assertEqual
(
str
(
warning
.
message
),
"max_buffer_size is deprecated"
)
class
CBufferedWriterTest
(
BufferedWriterTest
):
tp
=
io
.
BufferedWriter
...
...
@@ -1029,6 +1041,16 @@ class BufferedRWPairTest(unittest.TestCase):
pair
=
self
.
tp
(
r
,
w
)
self
.
assertFalse
(
pair
.
closed
)
def
test_max_buffer_size_deprecation
(
self
):
with
support
.
check_warnings
()
as
w
:
warnings
.
simplefilter
(
"always"
,
DeprecationWarning
)
self
.
tp
(
self
.
MockRawIO
(),
self
.
MockRawIO
(),
8
,
12
)
self
.
assertEqual
(
len
(
w
.
warnings
),
1
)
warning
=
w
.
warnings
[
0
]
self
.
assertTrue
(
warning
.
category
is
DeprecationWarning
)
self
.
assertEqual
(
str
(
warning
.
message
),
"max_buffer_size is deprecated"
)
# XXX More Tests
class
CBufferedRWPairTest
(
BufferedRWPairTest
):
...
...
@@ -1048,7 +1070,7 @@ class BufferedRandomTest(BufferedReaderTest, BufferedWriterTest):
def
test_read_and_write
(
self
):
raw
=
self
.
MockRawIO
((
b"asdf"
,
b"ghjk"
))
rw
=
self
.
tp
(
raw
,
8
,
12
)
rw
=
self
.
tp
(
raw
,
8
)
self
.
assertEqual
(
b"as"
,
rw
.
read
(
2
))
rw
.
write
(
b"ddd"
)
...
...
Misc/NEWS
View file @
59406a9d
...
...
@@ -41,6 +41,9 @@ Core and Builtins
Library
-------
- The max_buffer_size arguments of io.BufferedWriter, io.BufferedRWPair, and
io.BufferedRandom have been deprecated for removal in Python 3.2.
- Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop
forever on incomplete input. That caused tarfile.open() to hang when used
with mode 'r' or 'r:bz2' and a fileobj argument that contained no data or
...
...
Modules/_bufferedio.c
View file @
59406a9d
...
...
@@ -1415,6 +1415,16 @@ PyTypeObject PyBufferedReader_Type = {
};
static
int
complain_about_max_buffer_size
(
void
)
{
if
(
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
"max_buffer_size is deprecated"
,
1
)
<
0
)
return
0
;
return
1
;
}
/*
* class BufferedWriter
*/
...
...
@@ -1439,7 +1449,7 @@ BufferedWriter_init(BufferedObject *self, PyObject *args, PyObject *kwds)
/* TODO: properly deprecate max_buffer_size */
char
*
kwlist
[]
=
{
"raw"
,
"buffer_size"
,
"max_buffer_size"
,
NULL
};
Py_ssize_t
buffer_size
=
DEFAULT_BUFFER_SIZE
;
Py_ssize_t
max_buffer_size
=
-
1
;
Py_ssize_t
max_buffer_size
=
-
234
;
PyObject
*
raw
;
self
->
ok
=
0
;
...
...
@@ -1449,6 +1459,9 @@ BufferedWriter_init(BufferedObject *self, PyObject *args, PyObject *kwds)
return
-
1
;
}
if
(
max_buffer_size
!=
-
234
&&
!
complain_about_max_buffer_size
())
return
-
1
;
if
(
_PyIOBase_checkWritable
(
raw
,
Py_True
)
==
NULL
)
return
-
1
;
...
...
@@ -1767,8 +1780,7 @@ PyDoc_STRVAR(BufferedRWPair_doc,
"
\n
"
"reader and writer are RawIOBase objects that are readable and
\n
"
"writeable respectively. If the buffer_size is omitted it defaults to
\n
"
"DEFAULT_BUFFER_SIZE. The max_buffer_size (for the buffered writer)
\n
"
"defaults to twice the buffer size.
\n
"
"DEFAULT_BUFFER_SIZE.
\n
"
);
/* XXX The usefulness of this (compared to having two separate IO objects) is
...
...
@@ -1789,13 +1801,16 @@ BufferedRWPair_init(BufferedRWPairObject *self, PyObject *args,
{
PyObject
*
reader
,
*
writer
;
Py_ssize_t
buffer_size
=
DEFAULT_BUFFER_SIZE
;
Py_ssize_t
max_buffer_size
=
-
1
;
Py_ssize_t
max_buffer_size
=
-
234
;
if
(
!
PyArg_ParseTuple
(
args
,
"OO|nn:BufferedRWPair"
,
&
reader
,
&
writer
,
&
buffer_size
,
&
max_buffer_size
))
{
return
-
1
;
}
if
(
max_buffer_size
!=
-
234
&&
!
complain_about_max_buffer_size
())
return
-
1
;
if
(
_PyIOBase_checkReadable
(
reader
,
Py_True
)
==
NULL
)
return
-
1
;
if
(
_PyIOBase_checkWritable
(
writer
,
Py_True
)
==
NULL
)
...
...
@@ -1812,7 +1827,7 @@ BufferedRWPair_init(BufferedRWPairObject *self, PyObject *args,
if
(
self
->
reader
==
NULL
)
return
-
1
;
args
=
Py_BuildValue
(
"(n
n)"
,
buffer_size
,
max_
buffer_size
);
args
=
Py_BuildValue
(
"(n
)"
,
buffer_size
);
if
(
args
==
NULL
)
{
Py_CLEAR
(
self
->
reader
);
return
-
1
;
...
...
@@ -2016,7 +2031,7 @@ BufferedRandom_init(BufferedObject *self, PyObject *args, PyObject *kwds)
{
char
*
kwlist
[]
=
{
"raw"
,
"buffer_size"
,
"max_buffer_size"
,
NULL
};
Py_ssize_t
buffer_size
=
DEFAULT_BUFFER_SIZE
;
Py_ssize_t
max_buffer_size
=
-
1
;
Py_ssize_t
max_buffer_size
=
-
234
;
PyObject
*
raw
;
self
->
ok
=
0
;
...
...
@@ -2026,6 +2041,9 @@ BufferedRandom_init(BufferedObject *self, PyObject *args, PyObject *kwds)
return
-
1
;
}
if
(
max_buffer_size
!=
-
234
&&
!
complain_about_max_buffer_size
())
return
-
1
;
if
(
_PyIOBase_checkSeekable
(
raw
,
Py_True
)
==
NULL
)
return
-
1
;
if
(
_PyIOBase_checkReadable
(
raw
,
Py_True
)
==
NULL
)
...
...
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