Convert a lot of print statements to print functions in docstrings,

documentation, and unused/rarely used functions.
This commit is contained in:
Neal Norwitz 2008-05-13 04:55:24 +00:00
parent 8321f97891
commit 752abd0d3c
20 changed files with 53 additions and 50 deletions

View file

@ -89,7 +89,7 @@ Some error-handling code
>>> roundtrip("try: import somemodule\\n"
... "except ImportError: # comment\\n"
... " print('Can not import' # comment2\\n)"
... "else: print 'Loaded'\\n")
... "else: print('Loaded')\\n")
True
Balancing continuation