This repository was archived by the owner on Jun 11, 2018. It is now read-only.

Description
I've been browsing the Client code and I came across a line in base.py that stands out.
self.async_mode = (async_mode is True
or (defaults.ASYNC_MODE and async_mode is not False))
I'm guessing this is the intended effect?
self.async_mode = defaults.ASYNC_MODE if async_mode is None else async_mode