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

Lines Matching defs:read_long1

622 def read_long1(f):
625 >>> read_long1(StringIO.StringIO("\x00"))
627 >>> read_long1(StringIO.StringIO("\x02\xff\x00"))
629 >>> read_long1(StringIO.StringIO("\x02\xff\x7f"))
631 >>> read_long1(StringIO.StringIO("\x02\x00\xff"))
633 >>> read_long1(StringIO.StringIO("\x02\x00\x80"))
646 reader=read_long1,
665 >>> read_long1(StringIO.StringIO("\x00\x00\x00\x00"))