]> granicus.if.org Git - python/commitdiff
typo - fixes 954030.
authorSkip Montanaro <skip@pobox.com>
Fri, 14 May 2004 16:31:56 +0000 (16:31 +0000)
committerSkip Montanaro <skip@pobox.com>
Fri, 14 May 2004 16:31:56 +0000 (16:31 +0000)
Lib/pprint.py

index 716f35d646d90ade8e01ede2f3ed5844754f34dc..e92b6390e7b27afe4fec206beb37a7c5cccf74da 100644 (file)
@@ -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)