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
6c7bc310
Kaydet (Commit)
6c7bc310
authored
Nis 16, 2002
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added small clarification to the descriptions of encode() and decode()
üst
0e661dcd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
libcodecs.tex
Doc/lib/libcodecs.tex
+6
-2
No files found.
Doc/lib/libcodecs.tex
Dosyayı görüntüle @
6c7bc310
...
...
@@ -201,7 +201,10 @@ function interfaces of the stateless encoder and decoder:
\begin{methoddesc}
{
encode
}{
input
\optional
{
, errors
}}
Encodes the object
\var
{
input
}
and returns a tuple (output object,
length consumed).
length consumed). While codecs are not restricted to use with Unicode, in
a Unicode context, encoding converts a Unicode object to a plain string
using a particular character set encoding (e.g.,
\code
{
cp1252
}
or
\code
{
iso-8859-1
}
).
\var
{
errors
}
defines the error handling to apply. It defaults to
\code
{
'strict'
}
handling.
...
...
@@ -216,7 +219,8 @@ function interfaces of the stateless encoder and decoder:
\begin{methoddesc}
{
decode
}{
input
\optional
{
, errors
}}
Decodes the object
\var
{
input
}
and returns a tuple (output object,
length consumed).
length consumed). In a Unicode context, decoding converts a plain string
encoded using a particular character set encoding to a Unicode object.
\var
{
input
}
must be an object which provides the
\code
{
bf
_
getreadbuf
}
buffer slot. Python strings, buffer objects and memory mapped files
...
...
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