Ilya Priven

Results 164 comments of Ilya Priven

Were tables names globally unique in 2018? They certainly [don't seem to be now](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html): > Names should be meaningful and concise—for example, names such as Products, Books, and Authors are...

The only counter-point I can offer is that, unless we break backward compatibility, we'd need to have: - `UpdateConditionalCheckFailedError` extending `UpdateError` - `PutConditionalCheckFailedError` extending `PutError` - `DeleteConditionalCheckFailedError` extending `DeleteError` BTW,...

This is likely a PyCharm limitation. Other type checkers handle the overloading of `==` correctly.

It's on my radar once I have some free time. Just wanted to record an issue first to gather feedback.

(I'll add tests assuming it's a good approach)

Aww! ```console $ echo 'int main() {}' > foo.c $ gcc -Ofast -fno-fast-math -o foo-gcc foo.c $ clang -Ofast -fno-fast-math -o foo-clang foo.c ``` and then ```console $ objdump -d...

Not exactly world news :) Jason has been maintaining this for about a decade. Just because this concern is not being addressed doesn't mean that it's abandoned. Also, does the...

> Right off the bat there's no good way to say `boto3.client('s3')` -> `botocore.client.S3`. Should now be possible with https://mypy.readthedocs.io/en/latest/literal_types.html > the form of dicts with pre-defined keys, which afaik...

While the documented approach is valid for the common case of a decorator which doesn't change the function type, and as the docs say the `cast` isn't too bad in...