Home | History | Annotate | Download | only in Lib

Lines Matching defs:LONG

111 LONG           = b'L'   # push long; decimal string argument
159 LONG1 = b'\x8a' # push long from < 256 bytes
160 LONG4 = b'\x8b' # push really big long
171 BINUNICODE8 = b'\x8d' # push very long string
172 BINBYTES8 = b'\x8e' # push very long bytes string
293 r"""Encode a long to a two's complement little-endian binary string.
323 r"""Decode a long from a two's complement little-endian binary string.
677 self.write(LONG + repr(obj).encode("ascii") + b'L\n')
1134 dispatch[LONG[0]] = load_long
1146 raise UnpicklingError("LONG pickle has negative byte count")