]> git.parisson.com Git - telemaster.git/commitdiff
cleanup
authoryomguy <yomguy@353fd7da-fb10-4236-9bec-1a49139083f2>
Fri, 1 May 2009 16:18:59 +0000 (16:18 +0000)
committeryomguy <yomguy@353fd7da-fb10-4236-9bec-1a49139083f2>
Fri, 1 May 2009 16:18:59 +0000 (16:18 +0000)
git-svn-id: http://svn.parisson.org/svn/telemaster/trunk@9 353fd7da-fb10-4236-9bec-1a49139083f2

flac2mp3mix.py

index 11b32efe4e9cf451e6c0eba7f815b28b45123eb0..d9d5ae66a460ac07219cdbbead244923a9f86eaf 100644 (file)
@@ -17,7 +17,7 @@ class SubProcessPipe:
 
         if not stdin:
             stdin =  subprocess.PIPE
-    
+
         self.buffer_size = 32768
         self.proc = subprocess.Popen(command.encode('utf-8'),
                     shell = True,
@@ -28,18 +28,6 @@ class SubProcessPipe:
 
         self.stdin = self.proc.stdin
         self.stdout = self.proc.stdout
-       
-    #def stdout(self):
-        #while True:
-            #__chunk = self.proc.stdout.read(self.buffer_size)
-            #if not __chunk:
-                #break
-            #yield __chunk
-
-    #def stdin(self, data):
-        #self.proc.stdin.write(data)
-        #self.proc.stdin.flush()
-
 
 class Flac2Mp3Mix: