Yesterday a friend of mine who is a ruby fan (poor guy!) showed me wrong. wrong improves the buildin assert in Ruby adding a more detailed messages and the content of asserted variables at the point in time the assert failed.

Just for fun (and of course to prove that Python would allow the same thing) I started coding which resulted in the below code. If an assertion it results in the following output:

Assertion error in file 'assertion_hook.py' at line 46:

        assert(j < i)

Variables at this point:
{'i': 5, 'j': 5}

Question

Can this be improved (of course)? Made more pythonic? Import antigravitiy? I.e. what should if the codefile doesn't exist (in an interpreter or when only *.pyc files exist)?

Initial state

Note: The code can also be found in a Gist a Github.

#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import os.path
import pprint

sys._old_excepthook = sys.excepthook

def assert_hook(exc_type, exception, traceback):
    if exc_type.__name__ == 'AssertionError':
        try:

            frame = traceback.tb_frame
            local = frame.f_locals
            line = frame.f_lineno
            codefile = frame.f_code.co_filename

            print "Assertion error in file '%s' at line %d:\n"\
                 % (codefile, line)

            with open(codefile) as f:
                statement = f.readlines()[line - 1]
                print statement

                code = compile(statement.strip(), codefile, 'single')
                names_at_line = filter(lambda name: name\
                         != 'AssertionError', code.co_names)
                names_and_vars = dict((name, local[name]) for name in
                        names_at_line)

                print 'Variables at this point:'
                pprint.pprint(names_and_vars)
        except:
            sys._old_excepthook(exc_type, exception, traceback)
    else:
        sys._old_excepthook(exc_type, exception, traceback)

sys.excepthook = assert_hook

if __name__ == '__main__':
    i = 5
    for j in range(10):
        assert j < i
        print j
link|improve this question

3  
big +1 just because you didn't let ruby win :p – MatToufoutu Aug 9 '11 at 10:59
4  
this question belongs to codereview.stackexchange.com – Roman Bodnarchuk Aug 9 '11 at 11:03
did you check py.test, it do the same thing already, and more with assert. – mouad Aug 9 '11 at 11:34
1  
This is not a question. – agf Aug 9 '11 at 11:48
1  
You guys could have at least migrated it. – Jakob Bowyer Aug 9 '11 at 11:52
feedback

closed as not a real question by Mark, agf, Roman Bodnarchuk, Shawn Chin, gnibbler Aug 9 '11 at 11:51

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

Not that this is a code review site but there is already one thing that stares out at me

local = frame.f_locals

local shouldn't really be assigned to, you should consider using a new local variable name like

frame_locals = frame.f_locals

Also the type checking can be done better using

isinstance(e, AssertionError)

The last thing I notice is this line

except:

This is considered bad practice in python as it catches EVERYTHING. If you want to just catch exceptions generally its better to do something like this.

except Exception:

That way you don't swallow ctrl-c.

Im sure that others will have things to add to this but this is what I noticed.

link|improve this answer
feedback

It fails for functions. I had added this code:

def b():
    i,j=5,10
    assert i==j

if __name__=='__main__':
    b()

and what I was given is:

Assertion error in file 'aser.py' at line 45:

    b()

Variables at this point:
{'b': <function b at 0xb77a66f4>}

You should probably "traverse" the stack frame and print variables from the final call.

Also, I do not like the empty line after "Assertion error" line.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.