Commit c87b08d2 authored by Benjamin Peterson's avatar Benjamin Peterson
Browse files

Indexing bytes is the problem not slicing.

parent 9eafb659
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
~~~~~~~~~~