##// END OF EJS Templates
Improvements to exception handling to transport structured tracebacks....
Improvements to exception handling to transport structured tracebacks. This code is still fairly hackish, but we're starting to get there. We still need to improve the api, because right now runlines() does way too much, and I had to set the exception state in a temporary private variable. But client-side things are working better, so we can continue fixing the kernel without bottlenecking Evan.

File last commit:

r2498:3eae1372
r2838:cbe60016
Show More
quitter.py
47 lines | 1.4 KiB | text/x-python | PythonLexer
Fernando Perez
Fix quitting: now, typing bare 'exit' or 'quit' unconditionally quits....
r2370 # coding: utf-8
Brian Granger
Created context manager for the things injected into __builtin__.
r2227 """
A simple class for quitting IPython.
Fernando Perez
Fix quitting: now, typing bare 'exit' or 'quit' unconditionally quits....
r2370 Authors
-------
* Fernando Perez
Brian Granger
Created context manager for the things injected into __builtin__.
r2227 * Brian Granger
"""
#-----------------------------------------------------------------------------
# Copyright (C) 2008-2009 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
Brian Granger
Work to address the review comments on Fernando's branch....
r2498
#-----------------------------------------------------------------------------
# Code
#-----------------------------------------------------------------------------
Brian Granger
Created context manager for the things injected into __builtin__.
r2227
class Quitter(object):
"""Simple class to handle exit, similar to Python 2.5's.
It handles exiting in an ipython-safe manner, which the one in Python 2.5
doesn't do (obviously, since it doesn't know about ipython)."""
def __init__(self, shell, name):
self.shell = shell
self.name = name
Fernando Perez
Fix quitting: now, typing bare 'exit' or 'quit' unconditionally quits....
r2370 def __str__(self):
Brian Granger
Created context manager for the things injected into __builtin__.
r2227 return 'Type %s() to exit.' % self.name
def __call__(self):
Fernando Perez
Fix quitting: now, typing bare 'exit' or 'quit' unconditionally quits....
r2370 self.shell.ask_exit()
Fernando Perez
Minor fix to exit/quit
r2379 # Repr MUST return a string, else display like pprint hooks get confused
def __repr__(self):
self.shell.ask_exit()
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 return ''