[issue17630] Create a pure Python zipfile importer

2013-11-08 Thread Brett Cannon

Brett Cannon added the comment:

This is going to need a touch-up for PEP 451 to make the whole thing work more 
smoothly, so repositioning for Python 3.5. When that happens I can look into 
the 2 second issue that Amaury pointed out and Paul's review.

Although I do wonder about the utility of this work. Zipimport still gets 
around the bootstrapping problem that any pure Python zip implementation never 
will. Probably the only hope of being useful is to make this abstract enough to 
include a pluggable (de)compression setup so that lzma or bz2 can be used on 
top of a single file storage back-end like tar or zip.

--
versions: +Python 3.5 -Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-07-01 Thread Brett Cannon

Brett Cannon added the comment:

Paul's review did find one non-optimal thing the code is doing. I'll fix it the 
next time there's a need to upload a new patch.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-06-21 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc added the comment:

Times in a ZIP files have a two-seconds resolution (in the old DOS FAT format: 
5 bits for the hours, 6 bits for the minutes, and only 5 bits left for the 
seconds)
Some fuziness logic is needed when comparing against a time_t.

--
nosy: +amaury.forgeotdarc

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-06-21 Thread Brett Cannon

Brett Cannon added the comment:

A two second granularity? Ugh. That will require a new (possibly private) API 
to abstract that out in order to handle that case. What a pain. While I look 
into that if people can look at the code and let me know if they see anything 
wrong with it, hard to understand, or a way to improve I would appreciate it.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-06-20 Thread Brett Cannon

Brett Cannon added the comment:

Here is an initial stab at a zip file importer using importlib. Probably the 
biggest shortcoming is that it doesn't support bytecode files, but that's 
because I just have not bothered to add support yet (it's just one method to 
implement). There is a note in zipimport that the resolution does not match up 
between zip file modification times and what bytecode files store and so there 
needs to be a one second fuzzing factor but I'm not seeing why based on the 
fact that os.stat().st_mtime is used by bytecode files which has a one second 
resolution already like zip files. The other shortcoming is bytecode-only files 
are not supported (on purpose as importlib.abc.SourceLoader doesn't support 
bytecode-only files).

--
keywords: +patch
Added file: http://bugs.python.org/file30659/zip_importlib.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-06-20 Thread Brett Cannon

Brett Cannon added the comment:

I went ahead and added the needed method for bytecode loading; see the new 
patch.

--
Added file: http://bugs.python.org/file30660/zip_importlib.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-30 Thread Dmi Baranov

Changes by Dmi Baranov dmi.bara...@gmail.com:


--
nosy: +dmi.baranov

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-03 Thread Brett Cannon

New submission from Brett Cannon:

I'm going to write an importer using zipfile and importlib in pure Python. I'm 
doing this so that (a) there is an importer that relies on zipfile and thus 
what features it adds over time, (b) to have good example code to point people 
to when they need to implement their own importers, and (c) for me to see where 
there are API holes in importlib and the ABCs in order to continue to try and 
make things easier for people.

Do realize that the last point means I will most likely be writing this myself 
no matter what people contribute (sorry). If people still want to tackle it to 
provide feedback on what importlib is lacking that's totally fine and welcome 
feedback, but since this is partially an exercise for myself I feel like I do 
need to type it all out from scratch to discover sticking points, even from an 
experienced perspective. But I'm happy to discuss design choices, etc. here 
with folks as this progresses.

--
assignee: brett.cannon
components: Library (Lib)
messages: 185967
nosy: brett.cannon
priority: low
severity: normal
stage: test needed
status: open
title: Create a pure Python zipfile importer
type: enhancement
versions: Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-03 Thread Brett Cannon

Brett Cannon added the comment:

I should mention I have an old implementation at 
https://code.google.com/p/importers/.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-03 Thread Phil Connell

Changes by Phil Connell pconn...@gmail.com:


--
nosy: +pconnell

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-03 Thread Barry A. Warsaw

Changes by Barry A. Warsaw ba...@python.org:


--
nosy: +barry

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-03 Thread Eric V. Smith

Changes by Eric V. Smith e...@trueblade.com:


--
nosy: +eric.smith

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-03 Thread Jesús Cea Avión

Changes by Jesús Cea Avión j...@jcea.es:


--
nosy: +jcea

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17630] Create a pure Python zipfile importer

2013-04-03 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Thanks Brett.  I look forward to this.

--
nosy: +rhettinger

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17630
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com