According to PEP 358, a bytes object is used to store a mutable sequence of bytes (0-255), raising if this is not the case.
However, my python 2.7 says otherwise
bytes objects only really exist in Python 3.x. bytes is an alias for str in Python 2.7. It exists to help writing portable code between Python 2 and 3.
bytes