class documentation

class CommandLineParser:

View In Hierarchy

An object that knows how to split and join command-line arguments.

It must be true that argv == split(join(argv)) for all argv. The reverse neednt be true - join(split(cmd)) may result in the addition or removal of unnecessary escaping.

Static Method join Join a list of arguments into a command line string
Static Method split Split a command line string into a list of arguments
@staticmethod
def join(argv):
Join a list of arguments into a command line string
@staticmethod
def split(cmd):
Split a command line string into a list of arguments