コード例 #1
0
 def __init__(self, executable, encoding="auto"):
     ConcreteCommand.__init__(
         self, executable,
         local.encoding if encoding == "auto" else encoding)
コード例 #2
0
ファイル: local.py プロジェクト: henryiii/plumbum
 def __init__(self, executable, encoding="auto"):
     ConcreteCommand.__init__(self, executable, local.encoding if encoding == "auto" else encoding)
コード例 #3
0
ファイル: remote.py プロジェクト: AntoineD/plumbum
 def __init__(self, remote, executable, encoding = "auto"):
     self.remote = remote
     ConcreteCommand.__init__(self, executable,
         remote.encoding if encoding == "auto" else encoding)
コード例 #4
0
 def __init__(self, remote, executable, encoding="auto"):
     self.remote = remote
     ConcreteCommand.__init__(
         self, executable,
         remote.encoding if encoding == "auto" else encoding)