method: path.svnwc.proplist

*Not documented*
    def proplist(self, rec=0):

origin: path.svnwc

where:

function source:

def proplist(self, rec=0):
    if rec:
        res = self._svn('proplist -R')
        return make_recursive_propdict(self, res)
    else:
        res = self._svn('proplist')
        lines = res.split('\n')
        lines = map(str.strip, lines[1:])
        return svncommon.PropListDict(self, lines)

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/test_wccommand.py

traceback path.svnwc.proplist.0

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/svntestbase.py

traceback path.svnwc.proplist.1

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/test_wccommand.py

traceback path.svnwc.proplist.2

called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/test_wccommand.py

traceback path.svnwc.proplist.3