Results 720 comments of James Addison

It looks like Python's built-in `compile` behaviour became stricter between py37 and py38; a trailing line continuation statement is no longer accepted. ```pycon Python 3.7.7 (default, Apr 1 2020, 13:48:52)...

Another example where this has surfaced during fuzzer testing, after merging #1991: https://github.com/psf/black/pull/1958/checks?check_run_id=1945936278 ``` Falsifying example: test_idempotent_any_syntatically_valid_python( src_contents='\n\x0c\\\r\n', mode=Mode(target_versions=set(), line_length=88, string_normalization=False, magic_trailing_comma=True, experimental_string_processing=False, is_pyi=False), ) ``` It might be possible...

> I think we should just check `"\\" in src_contents` instead of using regex That's possible.. it seems like that might be quite permissive, though. That said, I suppose the...

This sounds useful @brycedrennan - allowing workloads that use `tldextract` to be offline-friendly, stateless and side-effect-free within their container would be great. Something that occurs to me is that this...

A small +1 on this issue, to agree that in-built support for this would be a useful extra (even if optional / disabled-by-default).

(afterthought: if it's challenging to implement within the library for algorithmic and/or performance reasons, perhaps including a usage example like the one above in the repo itself would be a...

Would there be a way for pods to offer infrastructure-level syncing of profile data using [`SyncThing`](https://syncthing.net/)? (and if so, it'd be nice to display to users how current their sync/backup...

Note: this depends on support for OpenSSL 3.0 in squid, currently in-progress at https://github.com/squid-cache/squid/pull/694

Adding some notes here: Another option may be to use the '[Conversation](https://www.home-assistant.io/integrations/conversation/)' built-in component of Home Assistant, available since [v0.7](https://github.com/home-assistant/core/tree/0.7) (released Sep 2015). Perhaps some of this functionality is already...

Thanks @Rollins-Star. Taking a look through the list of open issues and pull requests could be a good way to get started - and/or you're welcome to suggest additional changes...