annotate pyikriam/lazy/www/core/utils.py @ 139:3bbb1e559e21

we are happy when the city level is more then 20
author "Rex Tsai <chihchun@kalug.linux.org.tw>"
date Fri, 31 Oct 2008 10:11:00 +0800
parents a4c364888197
children
rev   line source
62
a4c364888197 add ikriam game binding lib python version
hychen@mluna
parents:
diff changeset
1
a4c364888197 add ikriam game binding lib python version
hychen@mluna
parents:
diff changeset
2 def mix_in(py_class, mixin_class):
a4c364888197 add ikriam game binding lib python version
hychen@mluna
parents:
diff changeset
3 if mixin_class not in py_class.__bases__:
a4c364888197 add ikriam game binding lib python version
hychen@mluna
parents:
diff changeset
4 py_class.__bases__ += (mixin_class,)