method: log.Path.__init__

*Not documented*
    def __init__(self, filename, append=False, delayed_create=False,

origin: log.Path

where:

changes in __dict__ after execution:

function source:

def __init__(self, filename, append=False, delayed_create=False,
        buffering=1): 
    self._append = append
    self._filename = filename
    self._buffering = buffering
    if not delayed_create:
        self._openfile()

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/log/testing/test_log.py

traceback log.Path.__init__.0

called in /home/johnny/projects/merlinux/py/dist/py/log/testing/test_log.py

traceback log.Path.__init__.1

called in /home/johnny/projects/merlinux/py/dist/py/log/testing/test_log.py

traceback log.Path.__init__.2

called in /home/johnny/projects/merlinux/py/dist/py/log/testing/test_log.py

traceback log.Path.__init__.3

called in /home/johnny/projects/merlinux/py/dist/py/log/testing/test_log.py

traceback log.Path.__init__.4