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
e07d5cf9
Kaydet (Commit)
e07d5cf9
authored
Ock 09, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Jeff Epler's patch adding an xreadlines() method. (It just imports
the xreadlines module and lets it do its thing.)
üst
07b78a87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletion
+25
-1
fileobject.c
Objects/fileobject.c
+25
-1
No files found.
Objects/fileobject.c
Dosyayı görüntüle @
e07d5cf9
...
...
@@ -963,6 +963,29 @@ file_readline(PyFileObject *f, PyObject *args)
return
get_line
(
f
,
n
);
}
static
PyObject
*
file_xreadlines
(
PyFileObject
*
f
,
PyObject
*
args
)
{
static
PyObject
*
xreadlines_function
=
NULL
;
if
(
!
PyArg_ParseTuple
(
args
,
":xreadlines"
))
return
NULL
;
if
(
!
xreadlines_function
)
{
PyObject
*
xreadlines_module
=
PyImport_ImportModule
(
"xreadlines"
);
if
(
!
xreadlines_module
)
return
NULL
;
xreadlines_function
=
PyObject_GetAttrString
(
xreadlines_module
,
"xreadlines"
);
Py_DECREF
(
xreadlines_module
);
if
(
!
xreadlines_function
)
return
NULL
;
}
return
PyObject_CallFunction
(
xreadlines_function
,
"(O)"
,
f
);
}
static
PyObject
*
file_readlines
(
PyFileObject
*
f
,
PyObject
*
args
)
{
...
...
@@ -1009,7 +1032,7 @@ file_readlines(PyFileObject *f, PyObject *args)
buffersize
*=
2
;
if
(
buffersize
>
INT_MAX
)
{
PyErr_SetString
(
PyExc_OverflowError
,
"line is longer than a Python string can hold"
);
"line is longer than a Python string can hold"
);
goto
error
;
}
if
(
big_buffer
==
NULL
)
{
...
...
@@ -1232,6 +1255,7 @@ static PyMethodDef file_methods[] = {
{
"tell"
,
(
PyCFunction
)
file_tell
,
0
},
{
"readinto"
,
(
PyCFunction
)
file_readinto
,
0
},
{
"readlines"
,
(
PyCFunction
)
file_readlines
,
1
},
{
"xreadlines"
,
(
PyCFunction
)
file_xreadlines
,
1
},
{
"writelines"
,
(
PyCFunction
)
file_writelines
,
0
},
{
"flush"
,
(
PyCFunction
)
file_flush
,
0
},
{
"close"
,
(
PyCFunction
)
file_close
,
0
},
...
...
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