source file: p10/commands/whois.py
file stats: 7 lines, 7 executed: 100.0% covered
1. #!/usr/bin/env python
2.
3. import genericcommand
4. import p10.base64
5.
6. class whois(genericcommand.genericcommand):
7.
8. def handle(self, origin, args):
9. for search in args[1].split(","):
10. self._state.requestWhois(origin, p10.base64.parseNumeric(args[0], self._state.maxClientNumerics), search)