Nikolaus Rath
Nikolaus Rath
I have the same problem, and Nikratio is an admin on the s3ql/s3ql repo - any idea? ``` $ python3 migrate.py --skip-attribution-for nikratio nikratio/s3ql s3ql/s3ql Nikratio Please enter your GitHub...
Wow, thanks for checking this in the source as well! Installing a fake handler with the `signal` module before installing the real one in C will work fine for me...
@njsmith Nope, I did not check whether it works. In the meantime, increased trio prevalence throughout the code meant that the custom signal handlers was no longer required.
I've come back to this issue because Python signal handling in general is a bit of a pain. Having read through all of the above, it seems to me that...
Ah, I see. I also just noticed that the data returned by Fernet is base64 encoded - probably also not a good idea if there's a lot of it :-)....
libfuse maintainer here. I would expect that most of the libfuse 2.x -> 3.x changes can also be applied to OSXFUSE - most of the new features (readdirplus, write-back cache)...
Not that I'm aware of, no. I expect that the majority of (maintained) filesystems will eventually migrate to take advantage of the new features, but it's probably going to take...
I'm using v2.1.1. I'd rather not put everything into `try..catch` for stylistic reasons. None of the other operations could possibly raise this exception, so there is no point having them...
What bothers me about putting the code into the bottom of the `try` is that: - It does not need protection from the exception. As a reader, I would wonder...
Thanks for your efforts! No, at least g++ 6 isn't smart enough for this. However, is there a fundamental reason why the following could not be made to work? ```...