diff --git a/README.md b/README.md index 7f156c9..ba23b0a 100644 --- a/README.md +++ b/README.md @@ -1855,7 +1855,7 @@ db = connector.connect(host=, user=, password=, database=) Bytes ----- -**Bytes object is an immutable sequence of single bytes. Mutable version is called 'bytearray'.** +**Bytes object is an immutable sequence of single bytes. Mutable version is called bytearray.** ```python = b'' # Only accepts ASCII characters and \x00 - \xff. diff --git a/index.html b/index.html index 365a75e..da740ef 100644 --- a/index.html +++ b/index.html @@ -1656,7 +1656,7 @@ db = connector.connect(host=<str>, user=<str>, password=<str>, -

#Bytes

Bytes object is an immutable sequence of single bytes. Mutable version is called 'bytearray'.

<bytes> = b'<str>'                       # Only accepts ASCII characters and \x00 - \xff.
+

#Bytes

Bytes object is an immutable sequence of single bytes. Mutable version is called bytearray.

<bytes> = b'<str>'                       # Only accepts ASCII characters and \x00 - \xff.
 <int>   = <bytes>[<index>]               # Returns int in range from 0 to 255.
 <bytes> = <bytes>[<slice>]               # Returns bytes even if it has only one element.
 <bytes> = <bytes>.join(<coll_of_bytes>)  # Joins elements using bytes object as separator.