method: path.svnurl.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/testing/fscommon.py

traceback path.svnurl.readlines.0

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

traceback path.svnurl.readlines.1

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

traceback path.svnurl.readlines.2

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

traceback path.svnurl.readlines.3