Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Vous êtes un professionnel et vous avez besoin d'une formation ? Calcul scientifique
avec Python
Voir le programme détaillé
Classe « Codec » Python 3.13.2

Méthode codecs.Codec.decode

Signature de la méthode decode

def decode(self, input, errors='strict') 

Description

help(Codec.decode)

Decodes the object input and returns a tuple (output
object, length consumed).

input must be an object which provides the bf_getreadbuf
buffer slot. Python strings, buffer objects and memory
mapped files are examples of objects providing this slot.

errors defines the error handling to apply. It defaults to
'strict' handling.

The method may not store state in the Codec instance. Use
StreamReader for codecs which have to keep state in order to
make decoding efficient.

The decoder must be able to handle zero length input and
return an empty object of the output object type in this
situation.



Vous êtes un professionnel et vous avez besoin d'une formation ? Programmation Python
Les fondamentaux
Voir le programme détaillé