call site 1 for path.svnurl.dirpath
path/svn/testing/svntestbase.py - line 98
96
97
98
99
   def test_info(self):
       url = self.root.join("samplefile")
->     res = url.info()
       assert res.size > len("samplefile") and res.created_rev >= 0
path/svn/svncommon.py - line 180
178
179
180
181
182
183
184
185
186
   def info(self):
       """ return an Info structure with svn-provided information. """
->     parent = self.dirpath()
       nameinfo_seq = parent._listdir_nameinfo()
       bn = self.basename
       for name, info in nameinfo_seq:
           if name == bn:
               return info
       raise py.error.ENOENT(self)