Gaëtan de Menten

Results 17 comments of Gaëtan de Menten

The first example in this issue was probably fixed by #287. Adding an explicit test for that would not hurt. The second example (which I guess is what was important...

Logical operators (and, or) are only implemented for boolean type variables and not for integer type (even if the values are guaranteed to be always 0 or 1), so you...

Probably not (I would vote against it, but I am not the maintainer). Besides, is there a C API for these functions? You cannot call a Python function from numexpr...

@RoyiAvital This depends how your numexpr has been compiled. AFAIK, most recent versions of numexpr on Anaconda are linked against the MKL.

@RoyiAvital I suppose the binaries on pypi were not linked against the MKL, so you will have to compile yourself. But since you are using anaconda, why don't you install...

FWIW, I have working applications on Windows using, among others, feather files, pyarrow and pandas in a conda environment. The trick is that I used pip to install all the...

@bingoko I think it would be theoretically possible for Nuitka to create stub files (*.pyi) automatically but even if it did, I don't know if that would solve the problem...

+1 for a solution to let users report spammers directly within Piwik

FWIW, I could not find the source code on their website, but it is apparently accessible from: http://search.maven.org/remotecontent?filepath=com/ggasoftware/parso/1.2.1/parso-1.2.1-sources.jar

> I don't know what `Slot` is supposed to do, Well, that's the trick: it actually ***is*** pyqtSlot, just imported "dynamically" instead of "statically". qtpy.QtCore has code like this: ```python...