Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(11) | Call(11) | Derive(0) | Import(0)
src/p/r/Products.IssueDealer-0.9.131/Products/laf/laf.py Products.IssueDealer(Download)
def __init__(self, id, title='Lightweight application framework'): BTreeFolder2.__init__(self, id=id) self.title = title def get_editable_properties(self):
src/c/o/collective.arboreal-2.0/collective/arboreal/arboreal.py collective.arboreal(Download)
def __init__(self): BTreeFolder2.__init__(self, id=self.id) security.declareProtected(ManageProperties, 'addTree') def addTree(self, id):
src/p/r/Products.Bitakora-1.1/Products/Bitakora/BitakoraCommunity.py Products.Bitakora(Download)
def __init__(self, id, admin_mail): """ Create Bitakora community """ BTreeFolder2.__init__(self, id) self.id = id self.admin_mail = admin_mail
src/p/r/Products.BastionLedger-4.6.0/Products/BastionLedger/BLBase.py Products.BastionLedger(Download)
def __init__(self, id, title=''): title = title # f**k Archetype Schemas ... BTreeFolder2.__init__(self, id)
src/p/r/Products.Bitakora-1.1/Products/Bitakora/Post.py Products.Bitakora(Download)
def __init__(self, id, title, author, body, tags=[], date=u'', publish=1, comment_allowed=1): """ """ BTreeFolder2.__init__(self, id) self.id = str(id)
src/p/r/Products.Bitakora-1.1/Products/Bitakora/Bitakora.py Products.Bitakora(Download)
def __init__(self, id, title, subtitle, description, contact_mail): """ Constructor """ BTreeFolder2.__init__(self, id) self.id = id self.title = title
src/p/r/Products.IssueDealer-0.9.131/Products/laf/laf_property.py Products.IssueDealer(Download)
def __init__(self, id, type): BTreeFolder2.__init__(self, id) self.type = type self.title = convert('line', '') self.description = convert('text', '')
src/p/r/Products.IssueDealer-0.9.131/Products/laf/laf_object.py Products.IssueDealer(Download)
def __init__(self, id, klass): BTreeFolder2.__init__(self, id) self.klass = klass def _get_class(self):
src/p/r/Products.IssueDealer-0.9.131/Products/laf/laf_class.py Products.IssueDealer(Download)
def __init__(self, id): BTreeFolder2.__init__(self, id) self.title = 'LAF Class' def get_editable_properties(self):
src/p/r/Products.ZOpenArchives-1.7.2/Products/ZOpenArchives/zOAIHarvester.py Products.ZOpenArchives(Download)
BTreeFolder2.__init__(self,id) self.id = id
1 | 2 Next