Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > f6c029cb6d7f91d967561f80e604bd05 > files > 458

python-nevow-0.9.32-2mdv2010.0.noarch.rpm

from zope.interface import Interface

class IPasteBin(Interface):

    def getListOfPastings(limit=None):
        """
        (oid, author, time) tuples
        """
        pass

    def getPasting(oid):
        pass

    def addPasting(author, text):
        pass

    def updatePasting(oid, author, text):
        pass