From fabd912fa5ef4c86592d9d0754317dbef09f4f7e Mon Sep 17 00:00:00 2001 From: Jay Carman Date: Fri, 23 Aug 2019 14:53:25 -0500 Subject: [PATCH] Fix typo in 'Ansible and Python 3' dev guide (#61226) The underscore does not need to be escaped inside of the RST inline literal. --- docs/docsite/rst/dev_guide/developing_python_3.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/dev_guide/developing_python_3.rst b/docs/docsite/rst/dev_guide/developing_python_3.rst index 44c454aff04..bdc91483c50 100644 --- a/docs/docsite/rst/dev_guide/developing_python_3.rst +++ b/docs/docsite/rst/dev_guide/developing_python_3.rst @@ -288,8 +288,8 @@ The ``__future__`` imports do the following: * `PEP 0238: Division `_ * `PEP 3105: Print function `_ -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