call site 0 for path.svnurl.propget
path/svn/testing/svntestbase.py - line 94
91
92
93
94
   def test_proplist(self):
       url = self.root.join("samplefile")
       res = url.proplist()
->     assert res['svn:eol-style'] == 'native'
path/svn/svncommon.py - line 280
277
278
279
280
281
282
   def __getitem__(self, key):
       value = dict.__getitem__(self, key)
       if value is None:
->         value = self.path.propget(key)
           dict.__setitem__(self, key, value)
       return value