예제 #1
0
파일: compat.py 프로젝트: tabulon-ext/bup
 def get_argv():
     "Return a new list containing the current process argv strings."
     return [
         x.decode(errors='surrogateescape') for x in bup_main.argv()
     ]
예제 #2
0
파일: compat.py 프로젝트: tabulon-ext/bup
 def get_argv():
     return bup_main.argv()
예제 #3
0
파일: compat.py 프로젝트: tabulon-ext/bup
 def get_argvb():
     "Return a new list containing the current process argv bytes."
     return bup_main.argv()