Function
_py_lazy_or
Lazy-eval equivalent of "or" in Python.
(cond, b)
Source from the content-addressed store, hash-verified
| 74 | |
| 75 | |
| 76 | def _py_lazy_or(cond, b): |
| 77 | """Lazy-eval equivalent of "or" in Python.""" |
| 78 | return cond or b() |
| 79 | |
| 80 | |
| 81 | def eq(a, b): |
Tested by
no test coverage detected