Commit fc818549 authored by Florian Apolloner's avatar Florian Apolloner
Browse files

Merge pull request #311 from gutworth/py3-doc

Indexing bytes is the problem not slicing.
parents d05eee01 c87b08d2
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
~~~~~~~~~~