Armin Berres

Results 42 comments of Armin Berres

FWIW this is always reproducible. I tried against the dockerized crossbar.io in the Cpy3 and the PyPy version. Autobahn version is 18.3.1.

Getting this merged would be great!

Might be related to https://github.com/sqlalchemy/sqlalchemy2-stubs/issues/141

Thanks for the reply. I've never seen the name syntax in a logging call. And does not seem to work in a quick test of mine. `{'a': 1}` is just...

I am a bit confused. This is valid Python, isn't it? ``` import logging logging.warning('My state is messed up: %s', {'a': 1}) ``` The docs state > When you’re using...

> Just to clarify, it's common for people to use `pip-compile` not only for `requirements.in` -> `requirements.txt` type of conversations, but also for `setup.py` -> `requirements.txt` and `setup.cfg` -> `requirements.txt`?...

Could someone enlighten me if knative support is supposed to work or not before I try it in vain? According to [these docs](https://www.getambassador.io/docs/emissary/latest/howtos/knative/), things should work. But the documentation is...

Another poor soul here having the same question. I am about to replace `fields.List` with `Nested(many=True)` as I want to reuse a validation without the need to change things in...

Just for the reference, this is a quick hack which works in my projects: ``` class ActorCollector: def __init__(self): self.actors = [] # type: List[dramatiq.Actor] def declare_actor(self, actor: dramatiq.Actor): self.actors.append(actor)...