Fiona

Results 25 comments of Fiona

Don't GCC and MSVC now give access to a lot of the SSE2 instructions as __builtin functions? As well as things like counting leading zeroes in a data type?

Here's a good implementation of Smaz in pure python: https://github.com/CordySmith/PySmaz/

This is a pure python implementation of the SHA-2 generation hash functions: https://github.com/thomdixon/pysha2

This is possible using an AST transformer... I can attempt to implement this tonight.

Oh, nevermind, just realized that would mean that there would be a requirement for python source files. I might do it using this regex: `"[^"\\]*(?:\\.[^"\\]*)*"` to search for quoted literals,...

.gitignore should probably be included in another PR

The above replacement didn't work for me. This still appears to be a problem. Any idea how I can rollback to a previous version without this error?

Additionally, I'm calling CairoSVG as a function in python code.

Oh yes, sorry. VS 2017. How do I restore packages with nuget? I just cloned the RGBSync library into the same folder. On Sat, Jul 28, 2018, 2:04 AM DarthAffe...

Couldn't you do ``` def __call__(self, *args, **kwargs): return self.eval(*args, **kwargs) ```