Results 12 issues of Sam Mason

I've just started using your code and realised it doesn't have a concept of "relative difference", e.g: ```rust let a = 1e10; let b = a + a * std::f64::EPSILON;...

PIL and Wand code fixing issue #3 and the start of a test framework To run test code, execute: ```python -m unittest``` The code was getting a bit verbose so...

I've just been exploring some ExodusII files and I'm getting an exception: ```none File "[...]meshio/src/meshio/_mesh.py", line 99, in __init__ self.dim = topological_dimension[cell_type] KeyError: 'tetra4' ``` It seems that there are...

I'd like some way of suppressing subprocess info in the flamegraph/SVG output. This pull-request doesn't expose this option to the user, but seems to do the right thing when I...

a minimal implementation of glob based autoreloading, as proposed in #13573 usage is something like: ```python %autoreload 1 %autoreload foo.* import foo.bar ``` and then modifications to `foo/bar.py` will autoreload....

A colleague is trying to use Polyscope (via the Python wrappers) under WSL and it crashes in `init` when indirect rendering isn't disabled (I've been using it under Linux where...

have been bitten by this issue a few times, as apparently have a few others, see: https://stackoverflow.com/a/61116743/1358308 not sure if the parser/lexer are the right place to fix this, but...

bug

Similar to #7173 I wanted a nicer way to get control over opacity of windows. These changes makes it easy to get the opacity of the current window, e.g., via:...

enhancement
window-management

Following up on #3186 (and suggested in #2125) this uses the new `read1` method when streaming a non-chunked response and `amt=None`. This would mean that https://github.com/psf/requests/issues/5536 could also be closed.

I've just been using this package and got very confused as to why my queries kept outputting timestamps rather than dates as I was asking for. For example: ``` sql...