Issue 1046077: urllib2: better import ftplib and gopherlib etc late (original) (raw)
Issue1046077
Created on 2004-10-13 09:41 by kxroberto, last changed 2022-04-11 14:56 by admin. This issue is now closed.
Messages (5) | ||
---|---|---|
msg22670 - (view) | Author: kxroberto (kxroberto) | Date: 2004-10-13 09:41 |
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') | ||
msg22671 - (view) | Author: Terry J. Reedy (terry.reedy) * ![]() |
Date: 2004-10-15 22:55 |
Logged In: YES user_id=593130 Since you have a patch, this should have been submitted as a patch rather than a bug. In any case, the patch needs to be submitted as separate file | ||
msg22672 - (view) | Author: Jeremy Hylton (jhylton) ![]() |
Date: 2004-11-07 14:42 |
Logged In: YES user_id=31392 I'd rather not move imports from their typical place for a small performance chance in an unusual use case. | ||
msg22673 - (view) | Author: John J Lee (jjlee) | Date: 2005-05-19 20:38 |
Logged In: YES user_id=261020 Since Jeremy doesn't like the idea, this should probably be closed, but: Robert re-submitted this as patch 1053150. | ||
msg22674 - (view) | Author: Martin v. Löwis (loewis) * ![]() |
Date: 2006-05-11 04:31 |
Logged In: YES user_id=21627 Closing this as out-of-date; it is replaced by #1484793. |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:56:07 | admin | set | github: 41012 |
2004-10-13 09:41:59 | kxroberto | create |