Vertaling van "objet bytes" in Engels
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.
Une fonction de conversion inverse existe pour transformer un objet bytes en sa représentation hexadécimale.
A reverse conversion function exists to transform a bytes object into its hexadecimal representation.
Toutes les entrées en attente sont traitées, et un objet bytes est renvoyé, contenant le reste des données à décompresser.
All pending input is processed, and a bytes object containing the remaining uncompressed output is returned.
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.
Finish the compression process, returning a bytes object containing any data stored in the compressor's internal buffers.
Compresse data et renvoie au moins une partie des données compressées sous forme d'objet bytes.
Compress data, returning a bytes object containing compressed data for at least part of the data in data.
Décompresse data, renvoie un objet bytes, contenant au moins une partie des données décompressées.
Decompress data, returning a bytes object containing the uncompressed data corresponding to at least part of the data in string.
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.
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.
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.
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.
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.
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.
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.
The producer indicates exhaustion (i.e. that it contains no more data) by having its more() method return the empty bytes object.
Comme les objets bytes sont des séquences d'entiers (semblables à un tuple), pour une instance de bytes b, b sera un entier, tandis que "b[0:1]" sera un objet bytes de longueur 1.
Since bytes objects are sequences of integers (akin to a tuple), for a bytes object b, b will be an integer, while b[0:1] will be a bytes object of length 1.
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).
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).
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.
Compress data (a bytes object), returning a bytes object containing compressed data for at least part of the input.
Sinon, l'objet bytes du buffer est obtenu avant d'appeler bytes.decode().