2008-02-28

simplehuman.py

  2008-02-28 00:28

python # -*- coding: utf-8; ...

#!/usr/bin/env python
# -*- coding: utf-8; -*-

__author__  = 'Gennady Kovalev, 2008'

__copyright__ = '''
Copyright (C) 2007 by Gennady Kovalev. All rights reserved.
Copyright (C) 2007 by BIGUR Company (http://www.bigur.ru/). All rights reserved.

See COPYING file that comes with this distribution.
'''

from zope.interface import implements
from zope.app.container.btree import BTreeContainer
from zope.app.container.contained import Contained

from interfaces import ISimpleHuman, ISimpleHumanContainer


class SimpleHuman(Contained):
    '''Simple human'''
    
    implements(ISimpleHuman)


class SimpleHumanContainer(BTreeContainer):
    '''Container for humans'''
    
    implements(ISimpleHumanContainer)

Официальный сайт Zope3 Московская группа изучения реактивного движения The Dream Bot Site noooxml