kiddten

Results 27 comments of kiddten

Most of the time. Looks like it is ok only with default `go to` fallbacks.

Hm there is some pattern. If there is direct import statement with some expression `from .selectable import TableClause` go to called on `TableClause` jumps to import statement and only after...

Yeah https://github.com/davidhalter/jedi/issues/995

Something like option of originally pdb: b pathtests/test.py:777

My current use case: I am running django unittests with python -m pudb.run manage.py my_test.py So it is ok and you could walk through files line by line. With pbd...

try to turn of ssr like this `{ src: '~/plugins/vue-calendar-heatmap', ssr: false }`

Hi @seifertm I am trying to use async_generator with fixture in factory mode: ```python @pytest_asyncio.fixture async def async_client_factory(): async def _factory(x): print(x) # just to simplify case, we need x...

just a fixture w/o factory works well ```python @pytest_asyncio.fixture async def async_client(): async with AsyncClient() as ac: yield ac @pytest.mark.asyncio async def test_async_generator(async_client): response = await async_client.get("/test") assert response.status_code ==...