예제 #1
0
        def get_base_command_string(self):
            """Create the gnuplot command for plotting this item.

            The basecommand is different each time because each FIFOWriter
            creates a new FIFO.

            """

            # Create a new FIFO and a thread to write to it.  Retrieve the
            # filename of the FIFO to be used in the basecommand.
            fifo = _FIFOWriter(self.content, self.mode)
            return gp.double_quote_string(fifo.filename)
예제 #2
0
        def get_base_command_string(self):
            """Create the gnuplot command for plotting this item.

            The basecommand is different each time because each FIFOWriter
            creates a new FIFO.

            """

            # Create a new FIFO and a thread to write to it.  Retrieve the
            # filename of the FIFO to be used in the basecommand.
            fifo = _FIFOWriter(self.content, self.mode)
            return gp.double_quote_string(fifo.filename)
예제 #3
0
 def get_base_command_string(self):
     return gp.double_quote_string(self.filename)
예제 #4
0
파일: mvc.py 프로젝트: annefi/PUI-fun
 def get_base_command_string(self):
     return double_quote_string(self.fn)
예제 #5
0
 def get_base_command_string(self):
     return gp.double_quote_string(self.filename)