[Python-checkins] python/dist/src/Lib/test test_inspect.py,1.8,1.9

ping@users.sourceforge.net ping@users.sourceforge.net
Fri, 29 Nov 2002 19:53:17 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv18609/test

Modified Files:
	test_inspect.py 
Log Message:
getdoc():
    Remove leading whitespace from first line; remove leading and
    trailing blank lines from docstrings.  (Patch 645938 submitted
    by David Goodger.)


Index: test_inspect.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_inspect.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** test_inspect.py	23 Jul 2002 19:03:55 -0000	1.8
--- test_inspect.py	30 Nov 2002 03:53:15 -0000	1.9
***************
*** 145,149 ****
       'A longer,\n\nindented\n\ndocstring.', 'getdoc(mod.StupidGit)')
  test(inspect.getdoc(git.abuse) ==
!      'Another\n\ndocstring\n\ncontaining\n\ntabs\n\n', 'getdoc(git.abuse)')
  test(inspect.getcomments(mod.StupidGit) == '# line 20\n',
       'getcomments(mod.StupidGit)')
--- 145,149 ----
       'A longer,\n\nindented\n\ndocstring.', 'getdoc(mod.StupidGit)')
  test(inspect.getdoc(git.abuse) ==
!      'Another\n\ndocstring\n\ncontaining\n\ntabs', 'getdoc(git.abuse)')
  test(inspect.getcomments(mod.StupidGit) == '# line 20\n',
       'getcomments(mod.StupidGit)')