bwo

Results 26 comments of bwo

Yeah, I've actually run into this but haven't fixed it (obviously). A kind of stupid workaround for now is to just insert a do-nothing return expression at the beginning. Thanks...

I'll just drop some thoughts in here ... Actually, on further thought, there is a real question about how to treat this. The above example translates thus: ``` clojure (>>=...

Yes, I've thought the same about modify and friends, and will probably do it. I actually find the `for`, `doseq` etc. `let` syntax kind of gross, tbh; anyway, you don't...

Those were about the thoughts I had---I have a branch logical-lines that implements some of this (and some other stuff---it's not super organized) but it's not in quite the state...

AIUI, edward kmett's trifecta library (https://github.com/ekmett/trifecta/) doesn't attempt to show informative error messages like that unless you explicitly give your parser a name using the `` combinator, which isn't necessarily...

Because I'd like data not in the proper type not to validate: `'33'` is not an integer; `['33']` is not a list of integers. Ideally (imo) a `Model` would just...

I don't see why that's the case. It's possible to handle encoding `decimal.Decimal` objects without making not using decimals a generally available feature, especially since the failing function, `TokenEncoder.encode`, is...

``` $ git diff diff --git a/botocore/paginate.py b/botocore/paginate.py index b08c7ed8b..501f8bf74 100644 --- a/botocore/paginate.py +++ b/botocore/paginate.py @@ -15,6 +15,7 @@ from itertools import tee from botocore.compat import six +from decimal import...

I'm not sure but I suspect this is another instance of this issue, which just bit me today: ```python from typing import Optional, TypeVar, Callable, Tuple A = TypeVar('A') B...

> @mvaled See > > * https://github.com/typeddjango/django-stubs#my-queryset-methods-are-returning-any-rather-than-my-model, and > > * [Implement support for `.as_manager()` #1025](https://github.com/typeddjango/django-stubs/pull/1025) What is the first link supposed to communicate? The answer to the question is...