Python/Справочник по библиотеке Python 3.1: различия между версиями

Содержимое удалено Содержимое добавлено
Нет описания правки
Нет описания правки
Строка 78:
 
'''bytearray([source[, encoding[, errors]]])'''
<!--
Return a new array of bytes. The bytearray type is a mutable sequence of integers in the range 0 <= x < 256. It has most of the usual methods of mutable sequences, described in Mutable Sequence Types, as well as most methods that the str type has, see Bytes and Byte Array Methods.
 
Строка 89:
 
Without an argument, an array of size 0 is created.
--!>