[Python-checkins] CVS: python/dist/src/Lib pydoc.py,1.4,1.5

Ka-Ping Yee ping@users.sourceforge.net
Tue, 27 Feb 2001 15:35:11 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv2115

Modified Files:
	pydoc.py 
Log Message:
Acknowledgements.


Index: pydoc.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pydoc.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pydoc.py	2001/02/27 22:46:01	1.4
--- pydoc.py	2001/02/27 23:35:09	1.5
***************
*** 23,31 ****
  __date__ = "26 February 2001"
  __version__ = "$Revision$"
! __credits__ = """Tommy Burnette, the original creator of manpy.
  Paul Prescod, for all his work on onlinehelp.
  Richard Chamberlain, for the first implementation of textdoc.
  
! A moose bit my sister once."""
  
  import sys, imp, os, stat, re, types, inspect
--- 23,32 ----
  __date__ = "26 February 2001"
  __version__ = "$Revision$"
! __credits__ = """Guido van Rossum, for an excellent programming language.
! Tommy Burnette, the original creator of manpy.
  Paul Prescod, for all his work on onlinehelp.
  Richard Chamberlain, for the first implementation of textdoc.
  
! Mynd you, møøse bites Kan be pretty nasti..."""
  
  import sys, imp, os, stat, re, types, inspect