call site 17 for path.svnurl.__eq__
path/testing/common.py - line 54
52
53
54
55
   def test_common(self):
       other = self.root.join('sampledir')
->     x = other.common(self.root)
       assert x == self.root
path/common.py - line 171
165
166
167
168
169
170
171
172
173
174
   def common(self, other):
       """ return the common part shared with the other path
               or None if there is no common part.
           """
       last = None
       for x, y in zip(self.parts(), other.parts()):
->         if x != y:
               return last
           last = x
       return last
path/svn/svncommon.py - line 131
130
131
   def __ne__(self, other):
->     return not self == other