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

Lines Matching full:tell

27 the input object has seek and tell capability, the rewindbody method will
34 libraries in which tell() discards buffered data before discovering that the
36 seekable argument to zero to prevent that initial \code{tell} when passing in
38 it is 1 on entry -- which it is by default -- the tell() method of the open
91 # Exercise tell() to make sure it works
94 fp.tell()
104 self.startofheaders = self.fp.tell()
112 self.startofbody = self.fp.tell()
143 startofline = unread = tell = None
147 tell = self.fp.tell
149 if tell:
151 startofline = tell()
153 startofline = tell = None
191 elif tell: