James Myatt

Results 153 comments of James Myatt

Thanks. I thought I might be missing something. In the meantime, is it OK to use the workaround above? ``` fiona.supported_drivers["SQLite"] = "r" ```

Great. Thanks.

@rasbt , unit tests would be much easier if it wasn't so closely tied to IPython (e.g. #46, #60)

I think "Z" is just a special code for "+0000": https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC i.e. the UTC format has a "Z" at the end to indicate that it's UTC

Also, I think that https://www.utctime.net/ is right that there ought to be a comma after the weekday too. And also, international format is always day-month-year or year-month-day. Finally, I think...

To be honest, my preference out of all of the options shown on https://www.utctime.net/ for human readability, is RFC1123 (or RSS) best, because it has consistent use of short name...

I'll try to make a PR for this. It won't depend on R at all, but I am planning to use `click`: https://click.palletsprojects.com/en/7.x/

I think `click` is quite widely used. But I can't remember some examples of the top of my head. `click` will let you build more complex applications and has a...

The issue is more general than "is immediately copied". The issue is whether that input argument is ever mutated. For example, I write lots of code that looks like the...

BTW, I was wrong in https://github.com/PyCQA/flake8-bugbear/issues/137#issuecomment-820303780: there *is* an immutable mapping. It's [`types.MappingProxyType`](https://docs.python.org/3/library/types.html#types.MappingProxyType) and has been there since Python 3.3. And this is what bugbear is expecting you to use:...