MCPcopy Create free account
hub / github.com/EasyIME/PIME / groups

Method groups

python/python3/tornado/options.py:186–191  ·  view source on GitHub ↗

The set of option-groups created by ``define``. .. versionadded:: 3.1

(self)

Source from the content-addressed store, hash-verified

184 return [(opt.name, opt.value()) for name, opt in self._options.items()]
185
186 def groups(self) -> Set[str]:
187 """The set of option-groups created by ``define``.
188
189 .. versionadded:: 3.1
190 """
191 return set(opt.group_name for opt in self._options.values())
192
193 def group_dict(self, group: str) -> Dict[str, Any]:
194 """The names and values of options in a group.

Callers 3

test_group_dictMethod · 0.95
matchMethod · 0.80
process_responseMethod · 0.80

Calls

no outgoing calls

Tested by 2

test_group_dictMethod · 0.76
process_responseMethod · 0.64