[Python-checkins] CVS: python/dist/src/Doc/lib liburllib.tex,1.36,1.37

Fred L. Drake fdrake@users.sourceforge.net
Mon, 23 Jul 2001 12:16:25 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv27456/lib

Modified Files:
	liburllib.tex 
Log Message:

Convert the use of apply(f, args) to the new spelling: f(*args).
This is part of SF patch #443788.


Index: liburllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburllib.tex,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** liburllib.tex	2001/07/14 02:50:55	1.36
--- liburllib.tex	2001/07/23 19:16:22	1.37
***************
*** 176,180 ****
      def __init__(self, *args):
          self.version = "App/1.7"
!         apply(urllib.FancyURLopener.__init__, (self,) + args)
  
  urllib._urlopener = AppURLopener()
--- 176,180 ----
      def __init__(self, *args):
          self.version = "App/1.7"
!         urllib.FancyURLopener.__init__(self, *args)
  
  urllib._urlopener = AppURLopener()