Pablo Nicolás Estevez
Pablo Nicolás Estevez
to_json doen't project null fields. In this case, to_json() have important differences with the model. ``` class Holding(MapAttribute): id_holding= NumberAttribute() available = NumberAttribute(null=True) class HoldingModel(Model): id_number = NumberAttribute(hash_key=True) holdings =...
### What is the current behavior? cursor.fetchone(), cursor.fetchmany() and cursor.fetchall() return a union type between tuple and dict. That require a lot of casting to work with type checkers. ###...
Add tupleCursor like dictCursor but always return Tuple. Modify types of dictCursor to always return dict related to: https://github.com/snowflakedb/snowflake-connector-python/issues/2085
## change old python example ### Description Supporting old versions was referring to Python 2.5, and libcloud drop support to 2.5 on 2016. ### Status - done, ready for review...
## Add signed upload to azure and s3 ### Description Add upload methods on get_object_cdn on azure blob storage and s3, using the same parameters. Related: https://github.com/apache/libcloud/issues/1458 ### Status -...
### Description type aiosqlite from dialects. type some related code on pysqlite.py changed AsyncAdapt_aiosqlite_dbapi to be instance of AsyncAdapt_dbapi_module, so its interface is DBAPIModule AsyncAdapt_dbapi_module is a type_checking only class....
On `assert_called_with` the assertionError have a very verbose error message, becuase it raise all the actual and expected request. For complex request, is difficult to know where is the difference....
### Summary Type Narrowing on a match class with multiple cases is not working correctly. If there is only one case is working fine. On pylance, and mypy the same...