p expression Print the value of the expression.
(self, arg)
| 2136 | return _rstr(f"*** repr({expr}) failed: {self._format_exc(e)} ***") |
| 2137 | |
| 2138 | def do_p(self, arg): |
| 2139 | """p expression |
| 2140 | |
| 2141 | Print the value of the expression. |
| 2142 | """ |
| 2143 | if not arg: |
| 2144 | self._print_invalid_arg(arg) |
| 2145 | return |
| 2146 | self._msg_val_func(arg, repr) |
| 2147 | |
| 2148 | def do_pp(self, arg): |
| 2149 | """pp expression |
nothing calls this directly
no test coverage detected