view pyikriam/lazy/www/core/utils.py @ 221:1b7805535040

fixed the indent of yaml. I hate YALM (and python. :p)
author "Rex Tsai <chihchun@kalug.linux.org.tw>"
date Tue, 04 Nov 2008 18:30:56 +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,)