From: Skip Montanaro Date: Fri, 14 May 2004 16:31:56 +0000 (+0000) Subject: typo - fixes 954030. X-Git-Tag: v2.4a1~373 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2dc0c138400cb562fbf10632a11a1703d99973e2;p=python typo - fixes 954030. --- diff --git a/Lib/pprint.py b/Lib/pprint.py index 716f35d646..e92b6390e7 100644 --- a/Lib/pprint.py +++ b/Lib/pprint.py @@ -26,7 +26,7 @@ pformat() Format a Python object into a pretty-printed representation. pprint() - Pretty-print a Python object to a stream [default is sys.sydout]. + Pretty-print a Python object to a stream [default is sys.stdout]. saferepr() Generate a 'standard' repr()-like value, but protect against recursive @@ -49,7 +49,7 @@ _type = type def pprint(object, stream=None, indent=1, width=80, depth=None): - """Pretty-print a Python object to a stream [default is sys.sydout].""" + """Pretty-print a Python object to a stream [default is sys.stdout].""" printer = PrettyPrinter( stream=stream, indent=indent, width=width, depth=depth) printer.pprint(object)