コード例 #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()