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
10dfc1ee
Kaydet (Commit)
10dfc1ee
authored
May 08, 2008
tarafından
Alexandre Vassalotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed bytes naming in the docstrings of _bytesio.c.
üst
bcd2c08e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
_bytesio.c
Modules/_bytesio.c
+3
-3
No files found.
Modules/_bytesio.c
Dosyayı görüntüle @
10dfc1ee
...
@@ -167,7 +167,7 @@ bytesio_flush(BytesIOObject *self)
...
@@ -167,7 +167,7 @@ bytesio_flush(BytesIOObject *self)
}
}
PyDoc_STRVAR
(
getval_doc
,
PyDoc_STRVAR
(
getval_doc
,
"getvalue() ->
string
.
\n
"
"getvalue() ->
bytes
.
\n
"
"
\n
"
"
\n
"
"Retrieve the entire contents of the BytesIO object."
);
"Retrieve the entire contents of the BytesIO object."
);
...
@@ -369,7 +369,7 @@ bytesio_readlines(BytesIOObject *self, PyObject *args)
...
@@ -369,7 +369,7 @@ bytesio_readlines(BytesIOObject *self, PyObject *args)
}
}
PyDoc_STRVAR
(
readinto_doc
,
PyDoc_STRVAR
(
readinto_doc
,
"readinto(byte
s
) -> int. Read up to len(b) bytes into b.
\n
"
"readinto(byte
array
) -> int. Read up to len(b) bytes into b.
\n
"
"
\n
"
"
\n
"
"Returns number of bytes read (0 for EOF), or None if the object
\n
"
"Returns number of bytes read (0 for EOF), or None if the object
\n
"
"is set not to block as has no data to read."
);
"is set not to block as has no data to read."
);
...
@@ -517,7 +517,7 @@ bytesio_seek(BytesIOObject *self, PyObject *args)
...
@@ -517,7 +517,7 @@ bytesio_seek(BytesIOObject *self, PyObject *args)
}
}
PyDoc_STRVAR
(
write_doc
,
PyDoc_STRVAR
(
write_doc
,
"write(
str) -> int. Write string str
to file.
\n
"
"write(
bytes) -> int. Write bytes
to file.
\n
"
"
\n
"
"
\n
"
"Return the number of bytes written."
);
"Return the number of bytes written."
);
...
...
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