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
83 def input(files=None, inplace=False, backup="", bufsize=0, argument
94 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
176 """FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]])
188 def __init__(self, files=None, inplace=False, backup="", bufsize=0, argument
203 self._backup = backup
414 backup = False
418 if o == '-b': backup = a
419 for line in input(args, inplace=inplace, backup=backup):