call site 0 for path.svnwc.proplist
path/svn/testing/test_wccommand.py - line 177
173
174
175
176
177
178
179
180
181
182
183
   def test_proplist_recursive(self):
       s = self.root.join('samplefile')
       s.propset('gugu', 'that')
       try:
->         p = self.root.proplist(rec=1)
           # Comparing just the file names, because paths are unpredictable
           # on Windows. (long vs. 8.3 paths)
           assert (self.root / 'samplefile').basename in [item.basename 
                                                               for item in p]
       finally:
           s.propdel('gugu')