p expression Print the value of the expression.
(self, arg)
| 1266 | return _rstr(f"*** repr({expr}) failed: {self._format_exc(e)} ***") |
| 1267 | |
| 1268 | def do_p(self, arg): |
| 1269 | """p expression |
| 1270 | Print the value of the expression. |
| 1271 | """ |
| 1272 | self._msg_val_func(arg, repr) |
| 1273 | |
| 1274 | def do_pp(self, arg): |
| 1275 | """pp expression |
nothing calls this directly
no test coverage detected