diff options
author | Skip Montanaro <skip@pobox.com> | 2001-01-20 23:34:12 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-01-20 23:34:12 (GMT) |
commit | eccd02a40d0921fc2953213e71da8a3a79d00e17 (patch) | |
tree | 7f5a2cb83402b600e73e3cdbb71f7181aaa96138 /Lib/fileinput.py | |
parent | e78b92a062153ace94989e79d36e04e0997d1710 (diff) | |
download | cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.zip cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.gz cpython-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.bz2 |
more __all__ updates
Diffstat (limited to 'Lib/fileinput.py')
-rw-r--r-- | Lib/fileinput.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/fileinput.py b/Lib/fileinput.py index 9bc1700..794d575 100644 --- a/Lib/fileinput.py +++ b/Lib/fileinput.py @@ -81,6 +81,9 @@ XXX Possible additions: import sys, os, stat +__all__ = ["input","close","nextfile","filename","lineno","filelineno", + "isfirstline","isstdin","FileInput"] + _state = None DEFAULT_BUFSIZE = 8*1024 |