Searched refs:binhex (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython3/Lib/test/
H A Dtest_binhex.py1 """Test script for the binhex C module
3 Uses the mechanism of the python binhex module
6 import binhex namespace
30 binhex.binhex(self.fname1, self.fname2)
32 binhex.hexbin(self.fname2, self.fname1)
42 The testcase fails if no exception is raised when a filename parameter provided to binhex.binhex()
43 is too long, or if the exception raised in binhex.binhex() i
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_binhex.py1 """Test script for the binhex C module
3 Uses the mechanism of the python binhex module
6 import binhex namespace
32 binhex.binhex(self.fname1, self.fname2)
34 binhex.hexbin(self.fname2, self.fname1)
/external/dhcpcd-6.8.2/
H A Ddhcpcd-definitions.conf61 define 43 binhex vendor_encapsulated_options
78 define 60 binhex vendor_class_identifier
79 define 61 binhex dhcp_client_identifier
95 define 77 binhex user_class
133 embed binhex:8 replay
134 embed binhex information
197 define 123 binhex geoconf
200 define 124 binhex vivco
240 define 144 binhex geoloc
263 define 208 binhex pxelinux_magi
[all...]
/external/python/cpython2/Lib/
H A Dbinhex.py1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
256 def binhex(inp, out): function
257 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
311 'Premature EOF on binhex file'
316 raise Error, 'Premature EOF on binhex file'
386 raise Error, "No binhex data found"
512 binhex(fname, fname+'.hqx')
/external/python/cpython3/Lib/
H A Dbinhex.py1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
29 __all__ = ["binhex","hexbin","Error"]
233 def binhex(inp, out): function
234 """binhex(infilename, outfilename): create binhex-encoded copy of a file"""
285 raise Error('Premature EOF on binhex file')
290 raise Error('Premature EOF on binhex file')
360 raise Error("No binhex data found")

Completed in 1325 milliseconds