Mercurial > eagle-eye
view pyikriam/lazy/www/core/utils.py @ 175:9f248c8460ce
Simplize xpath patterns.
- Use 'descendant' aix name simplize patterns.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Sun, 02 Nov 2008 09:59:51 +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,)