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
bb2e9c47
Kaydet (Commit)
bb2e9c47
authored
Ara 17, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11231: Fix bytes and bytearray docstrings
Patch written by Brice Berna.
üst
e83f8993
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
ACKS
Misc/ACKS
+1
-0
bytearrayobject.c
Objects/bytearrayobject.c
+5
-7
bytesobject.c
Objects/bytesobject.c
+4
-3
No files found.
Misc/ACKS
Dosyayı görüntüle @
bb2e9c47
...
...
@@ -80,6 +80,7 @@ Andrew Bennetts
Andy Bensky
Michel Van den Bergh
Julian Berman
Brice Berna
Eric Beser
Steven Bethard
Stephen Bevan
...
...
Objects/bytearrayobject.c
Dosyayı görüntüle @
bb2e9c47
...
...
@@ -2797,18 +2797,16 @@ bytearray_methods[] = {
PyDoc_STRVAR
(
bytearray_doc
,
"bytearray(iterable_of_ints) -> bytearray
\n
\
bytearray(string, encoding[, errors]) -> bytearray
\n
\
bytearray(bytes_or_bytearray) -> mutable copy of bytes_or_bytearray
\n
\
bytearray(memory_view) -> bytearray
\n
\
bytearray(bytes_or_buffer) -> mutable copy of bytes_or_buffer
\n
\
bytearray(int) -> bytes array of size given by the parameter initialized with null bytes
\n
\
bytearray() -> empty bytes array
\n
\
\n
\
Construct an mutable bytearray object from:
\n
\
- an iterable yielding integers in range(256)
\n
\
- a text string encoded using the specified encoding
\n
\
- a bytes or a b
ytearray
object
\n
\
- a bytes or a b
uffer
object
\n
\
- any object implementing the buffer API.
\n
\
\n
\
bytearray(int) -> bytearray
\n
\
\n
\
Construct a zero-initialized bytearray of the given length."
);
- an integer"
);
static
PyObject
*
bytearray_iter
(
PyObject
*
seq
);
...
...
Objects/bytesobject.c
Dosyayı görüntüle @
bb2e9c47
...
...
@@ -2721,13 +2721,14 @@ PyDoc_STRVAR(bytes_doc,
"bytes(iterable_of_ints) -> bytes
\n
\
bytes(string, encoding[, errors]) -> bytes
\n
\
bytes(bytes_or_buffer) -> immutable copy of bytes_or_buffer
\n
\
bytes(memory_view) -> bytes
\n
\
bytes(int) -> bytes object of size given by the parameter initialized with null bytes
\n
\
bytes() -> empty bytes object
\n
\
\n
\
Construct an immutable array of bytes from:
\n
\
- an iterable yielding integers in range(256)
\n
\
- a text string encoded using the specified encoding
\n
\
- a
bytes or a buffer object
\n
\
- an
y object implementing the buffer API.
"
);
- a
ny object implementing the buffer API.
\n
\
- an
integer
"
);
static
PyObject
*
bytes_iter
(
PyObject
*
seq
);
...
...
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