diff options
author | Georg Brandl <georg@python.org> | 2006-02-19 09:51:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-19 09:51:27 (GMT) |
commit | e466217ab954c5a53fc2e0b78876385362120900 (patch) | |
tree | f325d50baeb8488a113024c10494d50874d3f4ec /Lib/fileinput.py | |
parent | e9b1949f70ff985e17e1ce5592b59073d101bbab (diff) | |
download | cpython-e466217ab954c5a53fc2e0b78876385362120900.zip cpython-e466217ab954c5a53fc2e0b78876385362120900.tar.gz cpython-e466217ab954c5a53fc2e0b78876385362120900.tar.bz2 |
Patch #1337756: fileinput now accepts Unicode filenames.
Diffstat (limited to 'Lib/fileinput.py')
-rw-r--r-- | Lib/fileinput.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/fileinput.py b/Lib/fileinput.py index 27ccc3b..5c06627 100644 --- a/Lib/fileinput.py +++ b/Lib/fileinput.py @@ -184,7 +184,7 @@ class FileInput: """ def __init__(self, files=None, inplace=0, backup="", bufsize=0): - if type(files) == type(''): + if isinstance(files, basestring): files = (files,) else: if files is None: |