method: path.svnwc.readlines

*Not documented*
    def readlines(self, cr=1):

origin: FSPathBase

where:

function source:

def readlines(self, cr=1):
    if not cr:
        content = self.read('rU')
        return content.split('\n')
    else:
        f = self.open('rU')
        try:
            return f.readlines()
        finally:
            f.close()

call sites:

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

traceback path.svnwc.readlines.0

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

traceback path.svnwc.readlines.1

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

traceback path.svnwc.readlines.2

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

traceback path.svnwc.readlines.3