Jeremy Lucas

Results 5 comments of Jeremy Lucas

@ntk860 not sure if this is what you're asking for, but here's how I am doing it for multiple domains and their certs: 1. Firstly, you need to mount your...

I know this thread is pretty old, but I've been using this pattern for `str + Enum`s, which IMO is pretty clean and intuitive: ```python import click import enum class...

> Hello @jerluc, your pattern works functionally, but it fails type checking Does it @rdbisme? I don't see any issues using latest mypy (0.931) on Python 3.7: ``` jerluc@ws ~...

@mndrix is this a way to perform speculative execution of sorts in order to optimize in the case that one of the or-predicates can quickly be determined to be true?

Got it. Also, just to call out, outside of I/O and other side-effects of that nature that require in-order semantics around AND/OR evaluation, another interesting case is that of recursion....