src/cm/utils/__init__.py
author Simon Descarpentries <sid@sopinspace.com>
Tue, 20 Mar 2012 16:08:18 +0100
changeset 401 ada83f9211e3
parent 0 40c8f766c9b8
permissions -rw-r--r--
Update contributors and licence files, adding Gibus and I in it, and the content of the AGPL licence.

def get_among(dico,key,allowed,default):
    res = dico.get(key, None)
    if not res or res not in allowed:
        return default
    else:
        return res
        
        
def get_int(dico, key, default):
    try:
        return int(dico.get(key, default))
    except ValueError:
        return default