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

@ -481,7 +481,7 @@ def captured_output(stream_name):
Example use (with 'stream_name=stdout')::
with captured_stdout() as s:
print "hello"
print("hello")
assert s.getvalue() == "hello"
"""
import io