call site 0 for code.Code.__eq__
code/testing/test_code.py - line 15
11
12
13
14
15
   def test_ne():
       code1 = py.code.Code(compile('foo = "bar"', '', 'exec'))
       assert code1 == code1
       code2 = py.code.Code(compile('foo = "baz"', '', 'exec'))
->     assert code2 != code1
code/code.py - line 20
19
20
   def __ne__(self, other):
->     return not self == other