Example #1
0
 def get_argv():
     "Return a new list containing the current process argv strings."
     return [
         x.decode(errors='surrogateescape') for x in bup_main.argv()
     ]
Example #2
0
 def get_argv():
     return bup_main.argv()
Example #3
0
 def get_argvb():
     "Return a new list containing the current process argv bytes."
     return bup_main.argv()