Gregory P. Smith

Results 97 comments of Gregory P. Smith

https://github.com/google/googletest/commit/f7902802f1a61140e188223fb6d1c95925cbec4a at least works around this in googletest's own cmake file by removing `-Werror`. The code bug still needs fixing.

Save yourselves pain: Don't check `sys.version_info`. Just check for the presence of the`sys` API with `hasattr`. https://docs.python.org/3/library/stdtypes.html#recommended-configuration It is entirely within reason for sympy to raise the limits. It's mostly...

> Will that break any other library that imports sympy? Yes. No, it won't. Assuming you meant `0` for unlimited above as `10**10000` isn't a valid limit, all calling that...

FYI - The equivalent pyflakes issue was filed as https://github.com/PyCQA/pyflakes/issues/690

Practicality beats purity. :) We've been allowing incremental formatting (aka "changed areas only") for years on hundreds of millions of lines of code (across a few languages including Python) at...

btw, if you do choose to implement this, `--lines` might be lower level than you want; integration with diff from the users version control system to determine the ranges of...

Rather than logic that individually keeps track of which things need closing and duplicates decision logic as to which were opened within the exception handler, a cleaner less difficult to...

thanks. i agree these are meaningless cases and shouldn't happen, but at least this prevents mysterious looking exceptions when someone does give you such a zip archive.

Of particular note, since the generated files check in CI passed, does that mean we don't have any actual standard library argument clinic uses of this str conversion via codec...

I'm pretty sure I had a version of the code doing exactly this originally and was guided towards making it simpler by not duplicating the field between `interp->config` and `interp`...