def readInteger(self, signed=False): """ Reads and returns an integer from the stream. @type signed: C{bool} @see: U{Parsing integers on OSFlash <http://osflash.org/amf3/parsing_integers>} for the AMF3 integer data format. """ return decode_int(self.stream, signed)
def _readLength(self): x = decode_int(self.stream, False) return (x >> 1, x & REFERENCE_BIT == 0)