[Python-checkins] python/dist/src/Lib pprint.py,1.29,1.30

montanaro at users.sourceforge.net montanaro at users.sourceforge.net
Fri May 14 12:32:02 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4900

Modified Files:
	pprint.py 
Log Message:
typo - fixes 954030.


Index: pprint.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pprint.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** pprint.py	12 Feb 2004 17:35:07 -0000	1.29
--- pprint.py	14 May 2004 16:31:56 -0000	1.30
***************
*** 27,31 ****
  
  pprint()
!     Pretty-print a Python object to a stream [default is sys.sydout].
  
  saferepr()
--- 27,31 ----
  
  pprint()
!     Pretty-print a Python object to a stream [default is sys.stdout].
  
  saferepr()
***************
*** 50,54 ****
  
  def pprint(object, stream=None, indent=1, width=80, depth=None):
!     """Pretty-print a Python object to a stream [default is sys.sydout]."""
      printer = PrettyPrinter(
          stream=stream, indent=indent, width=width, depth=depth)
--- 50,54 ----
  
  def pprint(object, stream=None, indent=1, width=80, depth=None):
!     """Pretty-print a Python object to a stream [default is sys.stdout]."""
      printer = PrettyPrinter(
          stream=stream, indent=indent, width=width, depth=depth)




More information about the Python-checkins mailing list