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
62f5a9d6
Kaydet (Commit)
62f5a9d6
authored
Nis 01, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse.
Add test for file.readinto().
üst
b955d6c4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
test_file.py
Lib/test/test_file.py
+15
-0
fileobject.c
Objects/fileobject.c
+2
-2
No files found.
Lib/test/test_file.py
Dosyayı görüntüle @
62f5a9d6
import
os
from
array
import
array
from
test_support
import
verify
,
TESTFN
from
UserList
import
UserList
...
...
@@ -13,6 +14,13 @@ buf = f.read()
f
.
close
()
verify
(
buf
==
'12'
)
# verify readinto
a
=
array
(
'c'
,
'x'
*
10
)
f
=
open
(
TESTFN
,
'rb'
)
n
=
f
.
readinto
(
a
)
f
.
close
()
verify
(
buf
==
a
.
tostring
()[:
n
])
# verify writelines with integers
f
=
open
(
TESTFN
,
'wb'
)
try
:
...
...
@@ -69,6 +77,13 @@ if f.isatty():
if
f
.
closed
:
raise
TestError
,
'file.closed should be false'
try
:
f
.
readinto
(
""
)
except
TypeError
:
pass
else
:
raise
TestError
,
'file.readinto("") should raise a TypeError'
f
.
close
()
if
not
f
.
closed
:
raise
TestError
,
'file.closed should be true'
...
...
Objects/fileobject.c
Dosyayı görüntüle @
62f5a9d6
...
...
@@ -686,7 +686,7 @@ file_readinto(PyFileObject *f, PyObject *args)
if
(
f
->
f_fp
==
NULL
)
return
err_closed
();
if
(
!
PyArg_Parse
(
args
,
"w#"
,
&
ptr
,
&
ntodo
))
if
(
!
PyArg_Parse
Tuple
(
args
,
"w#"
,
&
ptr
,
&
ntodo
))
return
NULL
;
ndone
=
0
;
while
(
ntodo
>
0
)
{
...
...
@@ -1462,7 +1462,7 @@ static PyMethodDef file_methods[] = {
{
"truncate"
,
(
PyCFunction
)
file_truncate
,
METH_VARARGS
,
truncate_doc
},
#endif
{
"tell"
,
(
PyCFunction
)
file_tell
,
METH_NOARGS
,
tell_doc
},
{
"readinto"
,
(
PyCFunction
)
file_readinto
,
METH_
OLD
ARGS
,
readinto_doc
},
{
"readinto"
,
(
PyCFunction
)
file_readinto
,
METH_
VAR
ARGS
,
readinto_doc
},
{
"readlines"
,
(
PyCFunction
)
file_readlines
,
METH_VARARGS
,
readlines_doc
},
{
"xreadlines"
,
(
PyCFunction
)
file_xreadlines
,
METH_NOARGS
,
xreadlines_doc
},
{
"writelines"
,
(
PyCFunction
)
file_writelines
,
METH_O
,
writelines_doc
},
...
...
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