예제 #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)