view lockedfile/__init__.py @ 0:c8c2d98afc98

initial commit (stub)
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 18 Mar 2012 20:37:19 -0700
parents
children
line wrap: on
line source

class LockedFile(file):
    """locked file implementation"""

    def locked(self):
        """is the file locked?"""
        raise NotImplementedError