On Tue, Mar 25, 2008 at 12:50 PM, John Hunter <[EMAIL PROTECTED]> wrote:

>         result = self._cache.get(path)
>         if result is None:
>             realpath = os.path.realpath(path)
>             stat = os.stat(realpath)
>             stat_key = (stat.st_ino, stat.st_dev)


The hackish:

    if stat_key==(0,0):
        stat_key = (path, path)

does produce a working chi enabled EPS file, FYI

JDH

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to