Chris
Chris
```python {'a': {'b': 0.2 + 0.1}} == pytest.approx({'a': {'b': 0.3}}) ``` ``` ~/.conda/lib/python3.6/site-packages/_pytest/python_api.py in __eq__(self, actual) 195 # other or not. The abs() calls are for compatibility with complex 196...
On further investigation of #475, I have a better idea what the real problem is: If the RPC worker runs for too long without yielding to the eventlet event loop,...
I don't know whether this bug is in nameko or in eventlet, if necessary I will close this and report upstream using a very basic nameko HTTP service: ```python from...
```python def foobar(foo: Union[str, float]): if foo in ['fizz', 'buzz']: reveal_type(foo) else: pass ``` The revealed type is `Union[builtins.str, builtins.float]` but should be `builtins.str`