Home | History | Annotate | Download | only in Lib

Lines Matching defs:BinHex

1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
139 class BinHex:
148 ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:')
233 def binhex(inp, out):
234 """binhex(infilename, outfilename): create binhex-encoded copy of a file"""
236 ofp = BinHex(finfo, out)
285 raise Error('Premature EOF on binhex file')
290 raise Error('Premature EOF on binhex file')
360 raise Error("No binhex data found")