diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-10-28 14:52:29 +0200 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-10-28 14:52:29 +0200 |
commit | aabbda5354407cfe35097c7f17717a716a3d80c4 (patch) | |
tree | e15e7fe42975e08e567879ec8a949d4986ca4493 /Lib/fileinput.py | |
parent | ac73b0c95e352563ecf0a4643b30215b9bdee1a5 (diff) | |
parent | 5d1155c08edf7f53eca804b2b6538636c2dfe711 (diff) | |
download | cpython-git-aabbda5354407cfe35097c7f17717a716a3d80c4.tar.gz |
Merge 3.2
Diffstat (limited to 'Lib/fileinput.py')
-rw-r--r-- | Lib/fileinput.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/fileinput.py b/Lib/fileinput.py index a25a021eb3..554beb2448 100644 --- a/Lib/fileinput.py +++ b/Lib/fileinput.py @@ -225,10 +225,11 @@ class FileInput: raise ValueError("FileInput opening mode must be one of " "'r', 'rU', 'U' and 'rb'") self._mode = mode - if inplace and openhook: - raise ValueError("FileInput cannot use an opening hook in inplace mode") - elif openhook and not hasattr(openhook, '__call__'): - raise ValueError("FileInput openhook must be callable") + if openhook: + if inplace: + raise ValueError("FileInput cannot use an opening hook in inplace mode") + if not callable(openhook): + raise ValueError("FileInput openhook must be callable") self._openhook = openhook def __del__(self): |