From 67e9fb9d7afbd9935322420a7cadd4cb6538dcdf Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 19 Feb 2006 13:56:17 +0000 Subject: Patch #1215184: fileinput now has a fileno() function for getting the current file number. --- Lib/fileinput.py | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'Lib/fileinput.py') diff --git a/Lib/fileinput.py b/Lib/fileinput.py index 5c06627238..692eeea0c7 100644 --- a/Lib/fileinput.py +++ b/Lib/fileinput.py @@ -73,7 +73,6 @@ XXX Possible additions: - optional getopt argument processing - specify open mode ('r' or 'rb') -- fileno() - isatty() - read(), read(size), even readlines() @@ -153,6 +152,15 @@ def filelineno(): raise RuntimeError, "no active input()" return _state.filelineno() +def fileno(): + """ + Return the file number of the current file. When no file is currently + opened, returns -1. + """ + if not _state: + raise RuntimeError, "no active input()" + return _state.fileno() + def isfirstline(): """ Returns true the line just read is the first line of its file, @@ -175,8 +183,9 @@ class FileInput: """class FileInput([files[, inplace[, backup]]]) Class FileInput is the implementation of the module; its methods - filename(), lineno(), fileline(), isfirstline(), isstdin(), nextfile() - and close() correspond to the functions of the same name in the module. + filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(), + nextfile() and close() correspond to the functions of the same name + in the module. In addition it has a readline() method which returns the next input line, and a __getitem__() method which implements the sequence behavior. The sequence must be accessed in strictly @@ -334,6 +343,15 @@ class FileInput: def filelineno(self): return self._filelineno + def fileno(self): + if self._file: + try: + return self._file.fileno() + except ValueError: + return -1 + else: + return -1 + def isfirstline(self): return self._filelineno == 1 -- cgit v1.2.1