Fix markup

This commit is contained in:
Raymond Hettinger 2012-04-28 00:51:37 -07:00
parent 9c952d97bf
commit 7cbdcfa301
1 changed files with 10 additions and 6 deletions

View File

@ -841,10 +841,14 @@ Programming Recommendations
whenever they do something other than acquire and release resources. whenever they do something other than acquire and release resources.
For example: For example:
Yes: with conn.begin_transaction(): Yes::
with conn.begin_transaction():
do_stuff_in_transaction(conn) do_stuff_in_transaction(conn)
No: with conn: No::
with conn:
do_stuff_in_transaction(conn) do_stuff_in_transaction(conn)
The latter example doesn't provide any information to indicate that The latter example doesn't provide any information to indicate that