include("import") func Init() fvar(i,l,m,s,u,x,f) need_re() i = (isndef(IgnoreCase)?' | re.IGNORECASE':'') l = (isndef(Locale)?' | re.LOCALE':'') m = (isndef(Multiline)?' | re.MULTILINE':'') s = (isndef(DotAll)?' | re.DOTALL':'') u = (isndef(Unicode)?' | re.UNICODE':'') x = (isndef(Verbose)?' | re.VERBOSE':'') f = 0 && i && l && m && s && u && x println(cre && ' = re.compile(' && RegExp && ', ' && f && ')') end func RE() return((cre)@PyREx) end