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
f25ef505
Kaydet (Commit)
f25ef505
authored
17 years ago
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove the deprecated array.read/write methods.
üst
400adb03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
arraymodule.c
Modules/arraymodule.c
+2
-9
No files found.
Modules/arraymodule.c
Dosyayı görüntüle @
f25ef505
...
...
@@ -1241,7 +1241,7 @@ PyDoc_STRVAR(fromfile_doc,
"fromfile(f, n)
\n
\
\n
\
Read n objects from the file object f and append them to the end of the
\n
\
array.
Also called as read.
"
);
array."
);
static
PyObject
*
...
...
@@ -1281,8 +1281,7 @@ array_tofile(arrayobject *self, PyObject *f)
PyDoc_STRVAR
(
tofile_doc
,
"tofile(f)
\n
\
\n
\
Write all items (as machine values) to the file object f. Also called as
\n
\
write."
);
Write all items (as machine values) to the file object f."
);
static
PyObject
*
...
...
@@ -1523,8 +1522,6 @@ PyMethodDef array_methods[] = {
insert_doc
},
{
"pop"
,
(
PyCFunction
)
array_pop
,
METH_VARARGS
,
pop_doc
},
{
"read"
,
(
PyCFunction
)
array_fromfile
,
METH_VARARGS
,
fromfile_doc
},
{
"__reduce__"
,
(
PyCFunction
)
array_reduce
,
METH_NOARGS
,
array_doc
},
{
"remove"
,
(
PyCFunction
)
array_remove
,
METH_O
,
...
...
@@ -1541,8 +1538,6 @@ PyMethodDef array_methods[] = {
tostring_doc
},
{
"tounicode"
,
(
PyCFunction
)
array_tounicode
,
METH_NOARGS
,
tounicode_doc
},
{
"write"
,
(
PyCFunction
)
array_tofile
,
METH_O
,
tofile_doc
},
{
NULL
,
NULL
}
/* sentinel */
};
...
...
@@ -2010,13 +2005,11 @@ fromstring() -- append items from the string\n\
index() -- return index of first occurence of an object
\n
\
insert() -- insert a new item into the array at a provided position
\n
\
pop() -- remove and return item (default last)
\n
\
read() -- DEPRECATED, use fromfile()
\n
\
remove() -- remove first occurence of an object
\n
\
reverse() -- reverse the order of the items in the array
\n
\
tofile() -- write all items to a file object
\n
\
tolist() -- return the array converted to an ordinary list
\n
\
tostring() -- return the array converted to a string
\n
\
write() -- DEPRECATED, use tofile()
\n
\
\n
\
Attributes:
\n
\
\n
\
...
...
This diff is collapsed.
Click to expand it.
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