zlib written in python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andreas Lobinger

    #1

    zlib written in python

    Aloha,

    is a pure _python_ implementation of the zlib available?
    I have broken zlib streams and need to patch the deocder to
    get them back.

    Wishing a happy day
    LOBI

  • Scott David Daniels

    #2
    Re: zlib written in python

    Andreas Lobinger wrote:[color=blue]
    > Aloha,
    >
    > is a pure _python_ implementation of the zlib available?
    > I have broken zlib streams and need to patch the deocder to
    > get them back.
    >
    > Wishing a happy day
    > LOBI
    >[/color]
    Check your zlib version: import zlib; print zlib.ZLIB_VERSI ON
    There were some fixes you can see described at 'http://www.zlib.net/'
    that are going into python 2.5. If you can figure it out yourself,
    you could build an alternative zlib module to either sit beside
    <pythondir>/DLLs/zlib.pyd or replace it.

    --Scott David Daniels
    Scott.Daniels@A cm.Org

    Comment

    Working...