Thomas Heller wrote:
> zipextimporter, as published, doesn't handle extensions in packages.
> The patch I attached at the end, may fix this - I tested it with PIL.
Thanks, that works fine.
However, ZopeX3 itself still won't run. As part of the startup, it
attempts to load some files relative to
"PJDM" <[EMAIL PROTECTED]> writes:
> I'm trying to make ZopeX3 start faster by zipping up the "zope"
> directory. (Because this will be stored on a CD, having less data to
> read will make it quicker to start.)
>
> The standard python zipimporter won't work with the ZopeX3 .pyd files,
> so zipexti
I'm trying to make ZopeX3 start faster by zipping up the "zope"
directory. (Because this will be stored on a CD, having less data to
read will make it quicker to start.)
The standard python zipimporter won't work with the ZopeX3 .pyd files,
so zipextimporter came along at just the right time. Howe
"Delaney, Timothy C (Timothy)" <[EMAIL PROTECTED]> writes:
> Thomas Heller wrote:
>
>> zipextimporter.py contains the ZipExtImporter class which allows to
>> load Python binary extension modules contained in a zip.archive,
>> without unpacking them to the file system.
>
> I take it this was what y
Thomas Heller wrote:
> zipextimporter.py contains the ZipExtImporter class which allows to
> load Python binary extension modules contained in a zip.archive,
> without unpacking them to the file system.
I take it this was what you were talking about the other day when you
mentioned single-file ap
I like this kind of gadget.
--
http://mail.python.org/mailman/listinfo/python-list
Warning: experimental code!
Overview
zipextimporter.py contains the ZipExtImporter class which allows to
load Python binary extension modules contained in a zip.archive,
without unpacking them to the file system.
Call the zipextimporter.install() function to install the import hook,
add