[Python-checkins] python/dist/src/Lib/test test_pyclbr.py, 1.19, 1.20

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sun Jul 18 02:00:06 CEST 2004


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

Modified Files:
	test_pyclbr.py 
Log Message:
The Darwin-specific getproxies_internetconfig() was added to urllib,
causing test_pyclbr to fail on all other platforms.  Added that routine
to the urllib "ignore" list.
Removed the special case for "g" in the pickle module.  types.py deletes
"g" from its namespace; maybe it didn't always.  Whatever, the special
case isn't needed today.


Index: test_pyclbr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pyclbr.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** test_pyclbr.py	16 Nov 2003 16:17:48 -0000	1.19
--- test_pyclbr.py	18 Jul 2004 00:00:03 -0000	1.20
***************
*** 141,146 ****
          cm('mhlib')
          cm('urllib', ignore=('getproxies_registry',
!                              'open_https')) # not on all platforms
!         cm('pickle', ignore=('g',))     # from types import *
          cm('aifc', ignore=('openfp',))  # set with = in module
          cm('Cookie')
--- 141,146 ----
          cm('mhlib')
          cm('urllib', ignore=('getproxies_registry',
!                              'open_https',
!                              'getproxies_internetconfig',)) # not on all platforms
          cm('aifc', ignore=('openfp',))  # set with = in module
          cm('Cookie')



More information about the Python-checkins mailing list