Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
a264384f
Kaydet (Commit)
a264384f
authored
Tem 29, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.
Patch by Serhiy Storchaka.
üst
2b168443
10f0c50a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
3 deletions
+34
-3
test_io.py
Lib/test/test_io.py
+17
-3
NEWS
Misc/NEWS
+3
-0
bufferedio.c
Modules/_io/bufferedio.c
+14
-0
No files found.
Lib/test/test_io.py
Dosyayı görüntüle @
a264384f
...
@@ -802,6 +802,20 @@ class CommonBufferedTests:
...
@@ -802,6 +802,20 @@ class CommonBufferedTests:
buf
.
raw
=
x
buf
.
raw
=
x
class
SizeofTest
:
@support.cpython_only
def
test_sizeof
(
self
):
bufsize1
=
4096
bufsize2
=
8192
rawio
=
self
.
MockRawIO
()
bufio
=
self
.
tp
(
rawio
,
buffer_size
=
bufsize1
)
size
=
sys
.
getsizeof
(
bufio
)
-
bufsize1
rawio
=
self
.
MockRawIO
()
bufio
=
self
.
tp
(
rawio
,
buffer_size
=
bufsize2
)
self
.
assertEqual
(
sys
.
getsizeof
(
bufio
),
size
+
bufsize2
)
class
BufferedReaderTest
(
unittest
.
TestCase
,
CommonBufferedTests
):
class
BufferedReaderTest
(
unittest
.
TestCase
,
CommonBufferedTests
):
read_mode
=
"rb"
read_mode
=
"rb"
...
@@ -999,7 +1013,7 @@ class BufferedReaderTest(unittest.TestCase, CommonBufferedTests):
...
@@ -999,7 +1013,7 @@ class BufferedReaderTest(unittest.TestCase, CommonBufferedTests):
"failed for {}: {} != 0"
.
format
(
n
,
rawio
.
_extraneous_reads
))
"failed for {}: {} != 0"
.
format
(
n
,
rawio
.
_extraneous_reads
))
class
CBufferedReaderTest
(
BufferedReaderTest
):
class
CBufferedReaderTest
(
BufferedReaderTest
,
SizeofTest
):
tp
=
io
.
BufferedReader
tp
=
io
.
BufferedReader
def
test_constructor
(
self
):
def
test_constructor
(
self
):
...
@@ -1260,7 +1274,7 @@ class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):
...
@@ -1260,7 +1274,7 @@ class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):
self
.
tp
(
self
.
MockRawIO
(),
8
,
12
)
self
.
tp
(
self
.
MockRawIO
(),
8
,
12
)
class
CBufferedWriterTest
(
BufferedWriterTest
):
class
CBufferedWriterTest
(
BufferedWriterTest
,
SizeofTest
):
tp
=
io
.
BufferedWriter
tp
=
io
.
BufferedWriter
def
test_constructor
(
self
):
def
test_constructor
(
self
):
...
@@ -1650,7 +1664,7 @@ class BufferedRandomTest(BufferedReaderTest, BufferedWriterTest):
...
@@ -1650,7 +1664,7 @@ class BufferedRandomTest(BufferedReaderTest, BufferedWriterTest):
# You can't construct a BufferedRandom over a non-seekable stream.
# You can't construct a BufferedRandom over a non-seekable stream.
test_unseekable
=
None
test_unseekable
=
None
class
CBufferedRandomTest
(
BufferedRandomTest
):
class
CBufferedRandomTest
(
BufferedRandomTest
,
SizeofTest
):
tp
=
io
.
BufferedRandom
tp
=
io
.
BufferedRandom
def
test_constructor
(
self
):
def
test_constructor
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
a264384f
...
@@ -334,6 +334,9 @@ Core and Builtins
...
@@ -334,6 +334,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.
Patch by Serhiy Storchaka.
- Issue #15187: Bugfix: remove temporary directories test_shutil was leaving
- Issue #15187: Bugfix: remove temporary directories test_shutil was leaving
behind.
behind.
...
...
Modules/_io/bufferedio.c
Dosyayı görüntüle @
a264384f
...
@@ -398,6 +398,17 @@ buffered_dealloc(buffered *self)
...
@@ -398,6 +398,17 @@ buffered_dealloc(buffered *self)
Py_TYPE
(
self
)
->
tp_free
((
PyObject
*
)
self
);
Py_TYPE
(
self
)
->
tp_free
((
PyObject
*
)
self
);
}
}
static
PyObject
*
buffered_sizeof
(
buffered
*
self
,
void
*
unused
)
{
Py_ssize_t
res
;
res
=
sizeof
(
buffered
);
if
(
self
->
buffer
)
res
+=
self
->
buffer_size
;
return
PyLong_FromSsize_t
(
res
);
}
static
int
static
int
buffered_traverse
(
buffered
*
self
,
visitproc
visit
,
void
*
arg
)
buffered_traverse
(
buffered
*
self
,
visitproc
visit
,
void
*
arg
)
{
{
...
@@ -1699,6 +1710,7 @@ static PyMethodDef bufferedreader_methods[] = {
...
@@ -1699,6 +1710,7 @@ static PyMethodDef bufferedreader_methods[] = {
{
"seek"
,
(
PyCFunction
)
buffered_seek
,
METH_VARARGS
},
{
"seek"
,
(
PyCFunction
)
buffered_seek
,
METH_VARARGS
},
{
"tell"
,
(
PyCFunction
)
buffered_tell
,
METH_NOARGS
},
{
"tell"
,
(
PyCFunction
)
buffered_tell
,
METH_NOARGS
},
{
"truncate"
,
(
PyCFunction
)
buffered_truncate
,
METH_VARARGS
},
{
"truncate"
,
(
PyCFunction
)
buffered_truncate
,
METH_VARARGS
},
{
"__sizeof__"
,
(
PyCFunction
)
buffered_sizeof
,
METH_NOARGS
},
{
NULL
,
NULL
}
{
NULL
,
NULL
}
};
};
...
@@ -2079,6 +2091,7 @@ static PyMethodDef bufferedwriter_methods[] = {
...
@@ -2079,6 +2091,7 @@ static PyMethodDef bufferedwriter_methods[] = {
{
"flush"
,
(
PyCFunction
)
buffered_flush
,
METH_NOARGS
},
{
"flush"
,
(
PyCFunction
)
buffered_flush
,
METH_NOARGS
},
{
"seek"
,
(
PyCFunction
)
buffered_seek
,
METH_VARARGS
},
{
"seek"
,
(
PyCFunction
)
buffered_seek
,
METH_VARARGS
},
{
"tell"
,
(
PyCFunction
)
buffered_tell
,
METH_NOARGS
},
{
"tell"
,
(
PyCFunction
)
buffered_tell
,
METH_NOARGS
},
{
"__sizeof__"
,
(
PyCFunction
)
buffered_sizeof
,
METH_NOARGS
},
{
NULL
,
NULL
}
{
NULL
,
NULL
}
};
};
...
@@ -2470,6 +2483,7 @@ static PyMethodDef bufferedrandom_methods[] = {
...
@@ -2470,6 +2483,7 @@ static PyMethodDef bufferedrandom_methods[] = {
{
"readline"
,
(
PyCFunction
)
buffered_readline
,
METH_VARARGS
},
{
"readline"
,
(
PyCFunction
)
buffered_readline
,
METH_VARARGS
},
{
"peek"
,
(
PyCFunction
)
buffered_peek
,
METH_VARARGS
},
{
"peek"
,
(
PyCFunction
)
buffered_peek
,
METH_VARARGS
},
{
"write"
,
(
PyCFunction
)
bufferedwriter_write
,
METH_VARARGS
},
{
"write"
,
(
PyCFunction
)
bufferedwriter_write
,
METH_VARARGS
},
{
"__sizeof__"
,
(
PyCFunction
)
buffered_sizeof
,
METH_NOARGS
},
{
NULL
,
NULL
}
{
NULL
,
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