call site 4 for magic.AssertionError.__init__
magic/testing/test_assertion.py - line 21
19
20
21
22
23
   def test_assert_with_explicit_message():
       try:
->         assert f() == 3, "hello"
       except AssertionError, e:
           assert e.msg == 'hello'