Convert a description string into a list of positional and keyword parameters, using logic vaguely like what Python does.

Parametersdescriptiona string as described by serverFromString or clientFromString.
Returnsa 2-tuple of (args, kwargs), where 'args' is a list of all ':'-separated strs not containing an '=' and 'kwargs' is a map of all strs which do contain an '='. For example, the result of _parse('a:b:d=1:c') would be (['a', 'b', 'c'], {'d': '1'}).
Function add Undocumented
def add(sofar): (source)
Undocumented
API Documentation for Twisted, generated by pydoctor at 2020-03-20 23:54:06.