This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pimp needs to do download itself
Type: Stage:
Components: macOS Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jackjansen Nosy List: jackjansen
Priority: low Keywords:

Created on 2003-04-10 21:35 by jackjansen, last changed 2022-04-10 16:08 by admin. This issue is now closed.

Messages (4)
msg15424 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2003-04-10 21:35
Pimp currently uses the OSX programs curl and tar to download distributions and unpack them. There is absolutely no reason not to use the urllib and tarfile modules for this.
msg15425 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2003-04-14 14:47
Logged In: YES 
user_id=45365

There is actually a very good reason to use at least the tarfile module: if we 
use that in stead of unix tar we can fiddle pathnames while we unpack. 
Thereby we can do per-user installs of packages even if the tarfile was 
created for a system-wide installation. (That is, once the details of where 
per-user packages are going to be stored have been worked out).
msg15426 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2003-04-22 13:58
Logged In: YES 
user_id=45365

Unpack has been implemented, downloading isn't that important, leaving 
that for later.
msg15427 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2004-06-03 13:09
Logged In: YES 
user_id=45365

urllib2-based downloading has been implemented in pimp.py rev. 1.31 
and 1.27.4.2, thanks to code donated by Kevin Ollivier.
History
Date User Action Args
2022-04-10 16:08:06adminsetgithub: 38285
2003-04-10 21:35:36jackjansencreate