pp expression Pretty-print the value of the expression.
(self, arg)
| 2146 | self._msg_val_func(arg, repr) |
| 2147 | |
| 2148 | def do_pp(self, arg): |
| 2149 | """pp expression |
| 2150 | |
| 2151 | Pretty-print the value of the expression. |
| 2152 | """ |
| 2153 | if not arg: |
| 2154 | self._print_invalid_arg(arg) |
| 2155 | return |
| 2156 | self._msg_val_func(arg, pprint.pformat) |
| 2157 | |
| 2158 | complete_print = _complete_expression |
| 2159 | complete_p = _complete_expression |
nothing calls this directly
no test coverage detected