twisted.words.protocols.irc.ServerSupportedFeatures._splitParamArgs(cls, params, valueProcessor=None) class method documentationtwisted.words.protocols.irc.ServerSupportedFeatures
          View Source
          
        
      Split ISUPPORT parameter arguments.
Values can optionally be processed by valueProcessor.
For example:
    >>> ServerSupportedFeatures._splitParamArgs(['A:1', 'B:2'])
    (('A', '1'), ('B', '2'))
| Parameters | valueProcessor | Callable to process argument values, or None to perform no processing (type: callable taking {str}) | 
| Returns | Sequence of (name, processedValue) (type: list of (str, object)) | |
| Function | _parse | Undocumented |