Vertaling van "bytes object" in Frans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
A reverse conversion function exists to transform a bytes object into its hexadecimal representation.
Une fonction de conversion inverse existe pour transformer un objet bytes en sa représentation hexadécimale.
All pending input is processed, and a bytes object containing the remaining uncompressed output is returned.
Toutes les entrées en attente sont traitées, et un objet bytes est renvoyé, contenant le reste des données à décompresser.
Return a bytestring containing the bytes read. If the end of the file referred to by fd has been reached, an empty bytes object is returned.
Renvoie une chaîne d'octets contenant les octets lus, ou une chaîne d'octets vide si la fin du fichier pointé par fd est atteinte.
Finish the compression process, returning a bytes object containing any data stored in the compressor's internal buffers.
Conclut l'opération de compression, en renvoyant l'objet bytes constitué de toutes les données stockées dans les tampons interne du compresseur.
Compress data, returning a bytes object containing compressed data for at least part of the data in data.
Compresse data et renvoie au moins une partie des données compressées sous forme d'objet bytes.
Decompress data, returning a bytes object containing the uncompressed data corresponding to at least part of the data in string.
Décompresse data, renvoie un objet bytes, contenant au moins une partie des données décompressées.
This is a sequence of bytes (such as a bytes object) containing subsequences that are expected to occur frequently in the data that is to be compressed.
C'est une séquence d'octets (tel qu'un objet bytes) contenant des sous-séquences attendues régulièrement dans les données à compresser.
A bytes object that contains any data that was not consumed by the last decompress() call because it exceeded the limit for the uncompressed data buffer.
Un objet bytes contenant toutes les données non-traitées par le dernier appel à la méthode decompress(), à cause d'un dépassement de la limite du tampon de données décompressées.
Return a copy of the bytes or bytearray object where all bytes occurring in the optional argument delete are removed, and the remaining bytes have been mapped through the given translation table, which must be a bytes object of length 256.
Renvoie une copie du bytes ou bytearray dont tous les octets de delete sont supprimés, et les octets restants changés par la table de correspondance donnée, qui doit être un objet bytes d'une longueur de 256.
The producer indicates exhaustion (i.e. that it contains no more data) by having its more() method return the empty bytes object.
Le producteur indique son épuisement (c.-à-d. qu'il ne contiens plus de données) en ne retournant avec sa méthode more() l'objet bytes vide.
Passing a bytes object to str() without the encoding or errors arguments falls under the first case of returning the informal string representation (see also the -b command-line option to Python).
Donner un objet bytes à str() sans ni l'argument encoding ni l'argument errors relève du premier cas, où la représentation informelle de la chaîne est renvoyé (voir aussi l'option -b de Python).
Compress data (a bytes object), returning a bytes object containing compressed data for at least part of the input.
Une data compressée (un objet bytes), renvoie un objet bytes contenant une donnée compressée pour au moins une partie de l'entrée.
A bytes object is an immutable array.