Indexing bytes is the problem not slicing.

This commit is contained in:
Benjamin Peterson 2012-08-28 20:46:42 -04:00
parent 9eafb6592e
commit c87b08d2a1
1 changed files with 2 additions and 2 deletions

View File

@ -237,9 +237,9 @@ sometimes necessary::
value = value.encode('ascii', 'ignore').decode('ascii')
Be cautious if you have to `slice bytestrings`_.
Be cautious if you have to `index bytestrings`_.
.. _slice bytestrings: http://docs.python.org/py3k/howto/pyporting.html#bytes-literals
.. _index bytestrings: http://docs.python.org/py3k/howto/pyporting.html#bytes-literals
Exceptions
~~~~~~~~~~