Results 206 comments of Daniel Hrisca

* windows 10 x64 * python 3.7.7 x64 * python-lz4 3.1.3

> * self.evQueue.append(response) (line 292 of base.py) > * self.servQueue.append(response) (line 295 of base.py,) > * self.daqQueue.append (line 314 of base.py) In the current implementation you should consume those queues....

> I have used in anger I had to google that one to get the real meaning 😄

> @danielhrisca would it be possible to stream to a file directly? The only way to `stream` to the file is to use the `extend` method, but this is performance...

I also have this problem: I've created a standalone application using PyInstaller. On some PCs this import error pops up, but on the majority it is working correctly.

Multiple PCs with this configuration had the problem using numexpr 2.7.2 but no problem with numexpr 2.6.9 (possibly even 2.7.1) ![image](https://user-images.githubusercontent.com/20952040/107966865-1959a080-6fb5-11eb-9e71-7f101385416a.png) On my laptop I had no problem running either...

We've been able to narrow down the problem: 2.7.1 works and 2.7.2 does not work

We build the standalone executable using PyInstaller on a dedicated PC that has numpy 1.20.1 (from PyPI, not from some MKL custom build) MSCV installed: ![image](https://user-images.githubusercontent.com/20952040/108018547-c0bfed00-7020-11eb-9516-b90df4001616.png) The executable is the...

> Does it work without being bundled by PyInstaller? On my PC it runs both ways. I cannot run from source on the problematic PCs because I don't have access...