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
e8ee03db
Kaydet (Commit)
e8ee03db
authored
Eyl 18, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
adjust signature
üst
86089f0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
stdtypes.rst
Doc/library/stdtypes.rst
+3
-3
No files found.
Doc/library/stdtypes.rst
Dosyayı görüntüle @
e8ee03db
...
...
@@ -813,7 +813,7 @@ functions based on regular expressions.
interpreted as in slice notation.
.. method:: str.encode(
[encoding[, errors]]
)
.. method:: str.encode(
encoding=sys.getdefaultencoding(), errors="strict"
)
Return an encoded version of the string as a bytes object. Default encoding
is the current default string encoding. *errors* may be given to set a
...
...
@@ -1529,8 +1529,8 @@ Wherever one of these methods needs to interpret the bytes as characters
b = a.replace(b"a", b"f")
.. method:: bytes.decode(
[encoding[, errors]]
)
bytearray.decode(
[encoding[, errors]]
)
.. method:: bytes.decode(
encoding=sys.getdefaultencoding(), errors="strict"
)
bytearray.decode(
encoding=sys.getdefaultencoding(), errors="strict"
)
Return a string decoded from the given bytes. Default encoding is the
current default string encoding. *errors* may be given to set a different
...
...
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