call site 0 for path.svnurl.__str__
path/testing/test_api.py - line 40
37
38
39
40
   def test_svnurl(self):
       p = path.svnurl('http://codespeak.net/svn/py')
       assert p.check(svnurl=1)
->     self.repr_eval_test(p)
path/testing/test_api.py - line 14
10
11
12
13
14
   def repr_eval_test(self, p):
       r = repr(p)
       from py.path import local,svnurl, svnwc
       y = eval(r)
->     assert y == p
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))