Home | History | Annotate | Download | only in plat-mac

Lines Matching refs:AppleSingle

1 r"""Routines to decode AppleSingle files
5 warnpy3k("In 3.x, the applesingle module is removed.", stacklevel=2)
34 # The flag words for AppleSingle
47 class AppleSingle(object):
62 raise Error, "Unknown AppleSingle magic number 0x%8.8x" % (magic,)
64 raise Error, "Unknown AppleSingle version number 0x%8.8x" % (version,)
66 raise Error, "AppleSingle file contains no forks"
110 Creates a decoded file from an AppleSingle encoded file.
131 asfile = AppleSingle(infile, verbose=verbose)
136 print 'Usage: applesingle.py [-r] applesinglefile decodedfile'