This is a code for fuzzy_and:
rv = True
for ai in args:
    ai = fuzzy_bool(ai)
    if ai is False:
        return False
    if rv: # this will stop updating if a None is ever trapped
        rv = ai
return rv

Is there any reason why None is not immediately returned?

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/a0260075-fb34-4cf0-bc27-21196cfb6c68n%40googlegroups.com.

Reply via email to