/prebuilts/gdb/darwin-x86/lib/python2.7/ |
fileinput.py | 92 mode="r", openhook=None): 93 """input([files[, inplace[, backup[, mode[, openhook]]]]]) 103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]]) 198 mode="r", openhook=None): 227 if inplace and openhook: 229 elif openhook and not hasattr(openhook, '__call__'): 230 raise ValueError("FileInput openhook must be callable") 231 self._openhook = openhook 392 def openhook(filename, mode): function in function:hook_encoded [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
fileinput.py | 92 mode="r", openhook=None): 93 """input([files[, inplace[, backup[, mode[, openhook]]]]]) 103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]]) 198 mode="r", openhook=None): 227 if inplace and openhook: 229 elif openhook and not hasattr(openhook, '__call__'): 230 raise ValueError("FileInput openhook must be callable") 231 self._openhook = openhook 392 def openhook(filename, mode): function in function:hook_encoded [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fileinput.py | 92 mode="r", openhook=None): 93 """input([files[, inplace[, backup[, mode[, openhook]]]]]) 103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]]) 198 mode="r", openhook=None): 227 if inplace and openhook: 229 elif openhook and not hasattr(openhook, '__call__'): 230 raise ValueError("FileInput openhook must be callable") 231 self._openhook = openhook 392 def openhook(filename, mode): function in function:hook_encoded [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fileinput.py | 92 mode="r", openhook=None): 93 """input([files[, inplace[, backup[, mode[, openhook]]]]]) 103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]]) 198 mode="r", openhook=None): 227 if inplace and openhook: 229 elif openhook and not hasattr(openhook, '__call__'): 230 raise ValueError("FileInput openhook must be callable") 231 self._openhook = openhook 392 def openhook(filename, mode): function in function:hook_encoded [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_fileinput.py | 202 # cannot use openhook and inplace mode 203 fi = FileInput(inplace=1, openhook=lambda f,m: None) 205 "and openhook arguments are given") 209 fi = FileInput(openhook=1) 210 self.fail("FileInput should check openhook for being callable") 215 fi = FileInput(files=t1, openhook=hook_encoded("rot13"))
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_fileinput.py | 202 # cannot use openhook and inplace mode 203 fi = FileInput(inplace=1, openhook=lambda f,m: None) 205 "and openhook arguments are given") 209 fi = FileInput(openhook=1) 210 self.fail("FileInput should check openhook for being callable") 215 fi = FileInput(files=t1, openhook=hook_encoded("rot13"))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 202 # cannot use openhook and inplace mode 203 fi = FileInput(inplace=1, openhook=lambda f,m: None) 205 "and openhook arguments are given") 209 fi = FileInput(openhook=1) 210 self.fail("FileInput should check openhook for being callable") 215 fi = FileInput(files=t1, openhook=hook_encoded("rot13"))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 202 # cannot use openhook and inplace mode 203 fi = FileInput(inplace=1, openhook=lambda f,m: None) 205 "and openhook arguments are given") 209 fi = FileInput(openhook=1) 210 self.fail("FileInput should check openhook for being callable") 215 fi = FileInput(files=t1, openhook=hook_encoded("rot13"))
|