Kazantcev Andrey
Kazantcev Andrey
It's not work `some_async_class.__aenter__.return_value = some_async_class()` The rison of this that some_async_class has been pathed. Also this ``` @asynctest.patch('test.SomeAsyncClass') async def test_some_test(some_async_class): res = await some_async_class.do_something() ``` doesn't work. Why...
``` https://www.cian.ru/cat.php?deal_type=sale&engine_version=2&offer_type=flat®ion=1&room0=1&rooms_count[0]=1&rooms_count[1]=2&rooms_count[2]=3 ```
Maybe add option for serialize array? You can do it by 3 possible methods 1) ```http://example.org?f=1,2,3``` 2) ```http://example.org?f=1&f=2&f=3``` 3) ```http://example.org?f[0]=1&f[1]=2&f[2]=3``` This can be achieved by adding list wrappers. For example:...
@gruns, what you say?
In swagger these fields are still present
How to make frozen dataclass with a list?
I got error new error ```AttributeError: 'Select' object has no attribute '_sa_instance_state'```
I just wanted to avoid two queries. How to get something like ``` select * from taken_collectible where user_id = (select id from users where token='123') and collectible_id=1; ``` ?...
You can use cte for tuple of keys. Example ``` with subquery as ( select a_id, b_id from table_1 where ... ) select * from table_2 where a_id = subquery.a_id...
@zzzeek, I proposed the solution for composite primary keys. Maybe not close this issue?