[Python-checkins] peps: Issue #27191: Improve markup of PEP 8, patch by Ian Lee

berker.peksag python-checkins at python.org
Thu Jun 2 22:03:25 EDT 2016


https://hg.python.org/peps/rev/bf7f369fb49a
changeset:   6348:bf7f369fb49a
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Thu Jun 02 19:13:50 2016 -0700
summary:
  Issue #27191: Improve markup of PEP 8, patch by Ian Lee

files:
  pep-0008.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/pep-0008.txt b/pep-0008.txt
--- a/pep-0008.txt
+++ b/pep-0008.txt
@@ -1183,8 +1183,8 @@
                    do_stuff_in_transaction(conn)
 
   The latter example doesn't provide any information to indicate that
-  the __enter__ and __exit__ methods are doing something other than
-  closing the connection after a transaction.  Being explicit is
+  the ``__enter__`` and ``__exit__`` methods are doing something other
+  than closing the connection after a transaction.  Being explicit is
   important in this case.
 
 - Be consistent in return statements.  Either all return statements in

-- 
Repository URL: https://hg.python.org/peps


More information about the Python-checkins mailing list