Exemplo n.º 1
0
 def __read_arguments(self, line):
     """
     Read arguments for the current line.
     """
     args = line.split('&')
     for arg in args:
         if '=' in arg:
             name, value = arg.split('=')
             self.req.arguments.update({Tools.strip_item(name.strip()): Tools.strip_item(value.strip())})