[Python-checkins] CVS: python/dist/src/Lib/test test_pyclbr.py,1.6,1.7

Jeremy Hylton jhylton@users.sourceforge.net
Fri, 08 Mar 2002 13:32:02 -0800


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

Modified Files:
	test_pyclbr.py 
Log Message:
Fix pyclbr test of httplib without really understanding pyclbr.

It seems that the new class HTTP11 in httplib.test() isn't
discoverable by pyclbr, which causes this test to fail.


Index: test_pyclbr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pyclbr.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** test_pyclbr.py	3 Oct 2001 04:08:26 -0000	1.6
--- test_pyclbr.py	8 Mar 2002 21:31:59 -0000	1.7
***************
*** 141,145 ****
  
          cm('httplib', ignore=('error',    # set with =
!                               'HTTPS'))   # not on all platforms
  
          cm('Cookie', ignore=('__str__', 'Cookie')) # set with =
--- 141,146 ----
  
          cm('httplib', ignore=('error',    # set with =
!                               'HTTPS',
!                               'HTTP11'))   # not on all platforms
  
          cm('Cookie', ignore=('__str__', 'Cookie')) # set with =