Print a standard traceback to sys.stderr.
(self, py: Python)
| 307 | |
| 308 | /// Print a standard traceback to sys.stderr. |
| 309 | pub fn print(self, py: Python) { |
| 310 | self.restore(py); |
| 311 | unsafe { ffi::PyErr_PrintEx(0) } |
| 312 | } |
| 313 | |
| 314 | /// Print a standard traceback to sys.stderr. |
| 315 | pub fn print_and_set_sys_last_vars(self, py: Python) { |