Fix typo in 'Ansible and Python 3' dev guide ()

The underscore does not need to be escaped inside of the RST inline
literal.
This commit is contained in:
Jay Carman 2019-08-23 14:53:25 -05:00 committed by Sandra McCann
parent 1f733e2d55
commit fabd912fa5

View file

@ -288,8 +288,8 @@ The ``__future__`` imports do the following:
* `PEP 0238: Division <https://www.python.org/dev/peps/pep-0238>`_
* `PEP 3105: Print function <https://www.python.org/dev/peps/pep-3105>`_
Prefix byte strings with ``b\_``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Prefix byte strings with ``b_``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Since mixing text and bytes types leads to tracebacks we want to be clear
about what variables hold text and what variables hold bytes. We do this by