method: path.svnurl.mkdir

*Not documented*
    def mkdir(self, *args, **kwargs):

origin: path.svnurl

where:

exceptions that might appear during execution:

function source:

def mkdir(self, *args, **kwargs):
    commit_msg=kwargs.get('msg', "mkdir by py lib invocation")
    createpath = self.join(*args)
    createpath._svnwrite('mkdir', '-m', commit_msg)
    self._lsnorevcache.delentry(createpath.dirpath().strpath)
    return createpath

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/test/raises.py

traceback path.svnurl.mkdir.0

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

traceback path.svnurl.mkdir.1

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

traceback path.svnurl.mkdir.2