[ python-Bugs-1046077 ] urllib2: better import ftplib and gopherlib etc late

SourceForge.net noreply at sourceforge.net
Wed Oct 13 11:41:59 CEST 2004


Bugs item #1046077, was opened at 2004-10-13 11:41
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1046077&group_id=5470

Category: Python Library
Group: Python 2.3
Status: Open
Resolution: None
Priority: 5
Submitted By: Robert Kiendl (kxroberto)
Assigned to: Nobody/Anonymous (nobody)
Summary: urllib2: better import ftplib and gopherlib etc late

Initial Comment:
I've always trouble shrinking a py2exe'd package,
because of this. its also a speed issue. urllib2 is
most time used only with http(s) ...?

*** urllib2_old.py	Tue May 11 16:14:34 2004
--- urllib2.py	Wed Oct 13 11:32:44 2004
*************** f = urllib2.urlopen('http://www.python.o
*** 88,95 ****
  # check digest against correct (i.e. non-apache)
implementation
  
  import base64
- import ftplib
- import gopherlib
  import httplib
  import inspect
  import md5
--- 88,93 ----
*************** class FileHandler(BaseHandler):
*** 1009,1014 ****
--- 1007,1013 ----
  
  class FTPHandler(BaseHandler):
      def ftp_open(self, req):
+         import ftplib
          host = req.get_host()
          if not host:
              raise IOError, ('ftp error', 'no host given')
*************** class CacheFTPHandler(FTPHandler):
*** 1110,1115 ****
--- 1109,1115 ----
  
  class GopherHandler(BaseHandler):
      def gopher_open(self, req):
+         import gopherlib
          host = req.get_host()
          if not host:
              raise GopherError('no host given')


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1046077&group_id=5470


More information about the Python-bugs-list mailing list