Brian Maissy
Brian Maissy
In https://github.com/python/typeshed/pull/4989 the return types of the pipeline methods were changed so that they would all return pipeline instances, but that's not always correct. If the pipeline is watching keys...
on python 3.6.8, pytest 4.5.0, pytest-repeat 0.8.0 `py.test --doctest-modules --count=2` ```python @pytest.fixture(autouse=True) def __pytest_repeat_step_number(request): if request.config.option.count > 1: try: return request.param except AttributeError: > if issubclass(request.cls, TestCase): E TypeError: issubclass()...
I recently upgrade from python 3.6 to 3.8, and encountered a strange bug: ```python File ".../venv/lib/python3.8/site-packages/aiopg/connection.py", line 151, in _ready self._loop.add_writer(self._fileno, self._ready, weak_self) File "/usr/lib/python3.8/asyncio/selector_events.py", line 337, in add_writer return...
Similarly to `engine.scalar()` and `connection.scalar()`, it would be convenient if there were `fetchone()` and `fetchall()` methods as well, as shortcuts for: ``` result = await connection.execute(...) data = await result.fetchall()...
This is an extension of issue #1254, which was partially (but I belive not fully) resolved in #1731. I think that when non-decodable commands are called from within a pipeline,...
The python `select` module supports selecting on objects which provide a `fileno()` method. In order to allow selecting more seamlessly on `Reader` objects, I suggest adding a method like this:...
It would be nice if envconfig supported environment variable names of the form: `MYAPP__DATABASE__USER_NAME` as opposed to `MYAPP_DATABASE_USERNAME` or `MYAPP_DATABASE_USER_NAME`. Of course it would be opt-in and the default behavior...