CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
prop_logic.py
Go to the documentation of this file.
1 """
2 
3 This file is for functions that can be used to build propositional logic trees for query construction
4 
5 """
6 
7 def eq(a, b):
8  return str(a) + "=" + ("'%s'" % b if type(b) == str else str(b))