A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
""" | |
(c) 2014 miraculixx at gmx.ch | |
""" | |
from shrutil.dictobj import DictObject | |
class RuleContext(DictObject): | |
""" | |
rule context to store values and attributes (or any object) | |
""" | |
def __init__(self): |