Lines Matching full:read
16 number of the line that has just been read; filelineno() returns its
18 line just read is the first line of its file; isstdin() returns true
19 iff the line was read from sys.stdin. Function nextfile() closes the
20 current file so that the next iteration will read the first line from
21 the next file (if any); lines not read from the file will not count
23 after the first line of the next file has been read. Function close()
26 Before any lines have been read, filename() returns None and both line
28 read, filename() and the line number functions return the values
29 pertaining to the last line read; nextfile() has no effect.
64 disabled when standard input is read. XXX The current implementation
78 - read(), read(size), even readlines()
116 Close the current file so that the next iteration will read the first
117 line from the next file (if any); lines not read from the file will
119 changed until after the first line of the next file has been read.
120 Before the first line has been read, this function has no effect;
122 last file has been read, this function has no effect.
130 Return the name of the file currently being read.
131 Before the first line has been read, returns None.
139 Return the cumulative line number of the line that has just been read.
140 Before the first line has been read, returns 0. After the last line
141 of the last file has been read, returns the line number of that line.
150 has been read, returns 0. After the last line of the last file has
151 been read, returns the line number of that line within the file.
168 Returns true the line just read is the first line of its file,
177 Returns true if the last line was read from sys.stdin,