pp expression Pretty-print the value of the expression.
(self, arg)
| 1272 | self._msg_val_func(arg, repr) |
| 1273 | |
| 1274 | def do_pp(self, arg): |
| 1275 | """pp expression |
| 1276 | Pretty-print the value of the expression. |
| 1277 | """ |
| 1278 | self._msg_val_func(arg, pprint.pformat) |
| 1279 | |
| 1280 | complete_print = _complete_expression |
| 1281 | complete_p = _complete_expression |
nothing calls this directly
no test coverage detected