Mercurial > eagle-eye
view pyikriam/lazy/www/core/utils.py @ 112:ef5461db3951
Added usebot.sh,an interface for bot
author | macbook@59-116-8-229.dynamic.hinet.net |
---|---|
date | Thu, 30 Oct 2008 00:38:41 +0800 |
parents | a4c364888197 |
children |
line wrap: on
line source
def mix_in(py_class, mixin_class): if mixin_class not in py_class.__bases__: py_class.__bases__ += (mixin_class,)