Home | History | Annotate | Download | only in python2.7

Lines Matching defs:LONG

111 LONG            = 'L'   # push long; decimal string argument
159 LONG1 = '\x8a' # push long from < 256 bytes
160 LONG4 = '\x8b' # push really big long
470 self.write(LONG + repr(obj) + '\n')
921 val = long(data)
938 self.append(long(self.readline()[:-1], 0))
939 dispatch[LONG] = load_long
1269 r"""Encode a long to a two's complement little-endian binary string.
1335 r"""Decode a long from a two's complement little-endian binary string.
1357 n = long(ashex, 16) # quadratic time before Python 2.3; linear now