call site 1 for path.svnurl.__str__
path/testing/common.py - line 9
7
8
9
   def test_constructor_equality(self):
       p = self.root.__class__(self.root)
->     assert p == self.root
path/svn/svncommon.py - line 127
125
126
127
128
   def __eq__(self, other):
       """ return true if path and rev attributes each match """
->     return (str(self) == str(other) and
              (self.rev == other.rev or self.rev == other.rev))