Sophie

Sophie

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

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

from zope.interface import Interface


class IPasting(Interface):

    def getLatestVersion():
        """Return the latest version"""

    def getVersion(version):
        """Get a specific version"""

    def getHistory():
        """Get the history of the pasting as a list of (version, author, time) tuples."""


class IVersion(Interface):
    
    def getAuthor():
        pass

    def getText():
        pass

    def getTime():
        pass