Paul Moore

Results 701 comments of Paul Moore

FWIW, I managed to extract all the files except the problematic ones from the zip of master that github provides. With that extract, the code builds fine on Windows and...

I created #45 to rename the test files to make the repository cloneable on Windows.

> You should be able to do e.g nox -s test-3.10 and select only the 3.10 version in a parametrised test, I don't know if this is any help to...

> According to https://nox.thea.codes/en/stable/config.html#defining-sessions, python is None by default, not [None]. I suppose that's the reason. Sorry, I should have been clearer, I knew that (that's actually what prompted me...

The simplest solution may be to make the thread that implements a DB connection a daemon thread. Ctrl-C interrupts the main thread, but the process won't terminate until all (non-daemon)...

That doesn't help in cases where (for whatever reason) the application doesn't manage to close all connections. I would prefer it if the issue was handled in the library itself....

Update: Changing the package name in `Cargo.toml` to `pylaunchlib` and changing the two use statements to refer to that name, makes everything look OK. So I think the problem is...

@sanderr Personally, I get what you're saying, but I feel that if things were as incorrect as you suggest, we'd have hit more problems. So I suspect there's a flaw...

Many thanks for putting this together. I'll take a proper look at it in the next few days.