Created
August 30, 2013 23:39
-
-
Save remram44/6395281 to your computer and use it in GitHub Desktop.
Formatting IPython remote errors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def print_compositeerror(e): | |
sys.stderr.write("Got %d exceptions from IPython engines:\n" % | |
len(e.elist)) | |
for e_type, e_msg, formatted_tb, infos in e.elist: | |
sys.stderr.write("Error from engine %d (%r):\n" % ( | |
infos['engine_id'], infos['engine_uuid'])) | |
sys.stderr.write("%s\n" % strip_ansi_codes(formatted_tb)) | |
def print_remoteerror(e): | |
sys.stderr.write("Got exception from IPython engine:\n") | |
sys.stderr.write("%s: %s\n" % (e.ename, e.evalue)) | |
sys.stderr.write("Traceback:\n%s\n" % strip_ansi_codes(e.traceback)) | |
_ansi_code = re.compile(r'%s(?:(?:\[[^A-Za-z]*[A-Za-z])|[^\[])' % '\x1B') | |
def strip_ansi_codes(s): | |
return _ansi_code.sub('', s) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment