[Python-checkins] python/dist/src/Lib/test test_pyclbr.py,1.10,1.11

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Fri, 12 Jul 2002 08:54:39 -0700


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

Modified Files:
	test_pyclbr.py 
Log Message:
Remove httplib from tested modules.

The test of httplib makes it difficult to maintain httplib.  There are
two many idioms that pyclbr doesn't seem to understand, and I don't
understand how to update these tests to make them work.

Also remove commented out test of urllib2.


Index: test_pyclbr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pyclbr.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** test_pyclbr.py	10 Jul 2002 02:37:21 -0000	1.10
--- test_pyclbr.py	12 Jul 2002 15:54:37 -0000	1.11
***************
*** 127,148 ****
                               'open_https'))            # not on all platforms
  
-         #XXXX bad example
-         #cm('urllib2', ignore=('at_cnri',    # defined inside __main__
-         #                     '__super_init', # set with =.
-         #                     '_HTTPError__super_init', # set with =.
-         #                     'http_error_301', # set with =.
-         #                     ))
- 
- 
- 
          cm('pickle', ignore=('g',))       # deleted declaration
  
          cm('aifc', ignore=('openfp',))    # set with =
- 
-         cm('httplib', ignore=('error',    # set with =
-                               'sendall',  # set with =
-                               '_closedsocket', # it's a nested class
-                               'HTTPS',
-                               'HTTP11'))   # not on all platforms
  
          cm('Cookie', ignore=('__str__', 'Cookie')) # set with =
--- 127,133 ----