diff -r d755ae8df565 pep-0008.txt --- a/pep-0008.txt Sat May 28 11:32:59 2016 -0700 +++ b/pep-0008.txt Thu Jun 02 18:00:54 2016 -0700 @@ -1183,8 +1176,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