Lines Matching full:backup
58 to a backup file and standard output is directed to the input file.
60 in place. If the keyword argument backup=".<some extension>" is also
61 given, it specifies the extension for the backup file, and the backup
85 def input(files=None, inplace=0, backup="", bufsize=0, argument
96 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
178 """FileInput([files[, inplace[, backup[, bufsize[, mode[, openhook]]]]]])
190 def __init__(self, files=None, inplace=0, backup="", bufsize=0, argument
203 self._backup = backup
392 backup = 0
396 if o == '-b': backup = a
397 for line in input(args, inplace=inplace, backup=backup):