Gaëtan de Menten
Gaëtan de Menten
I was coping with link times of more than an hour until I used --lto=no which made the link step near instantaneous (with very little performance difference). The problem is...
The workaround that Nuitka has in place to make PyQt5 threading code work by using the explicit `@pyqtSlot` decorator for slot methods does not work when PyQt5 is accessed via...
Hello. Thanks for the great library. I have code that looks like this: ```python #pythran export look_pythran(int[], int:int dict) #pythran export look_pythran(int list, int:int dict) def look_pythran(key, mapping): if isinstance(key,...
I don't understand why you are capturing stderr and stdout at: https://github.com/xlwings/xlwings/blob/03a965e6ccbb90437871d3e3646aa52ad7de3b25/xlwings/_xlwindows.py#L534 since you are not using them.
```python >>> ne.evaluate('a', local_dict={'a': 1}) array(1, dtype=int32) >>> ne.evaluate('a', global_dict={'a': 1}) KeyError: 'a' ``` The problem is a regression introduced in https://github.com/pydata/numexpr/commit/21ff376a0853aff6aea63343c6010d6434917319 because global_dict is not passed to re_evaluate (which...
### We would like to learn about your use case. For example, if this feature is needed to adopt Narwhals in an open source project, could you please enter the...
This might be related to #193, but I tried to investigate the situation and found some interesting bits. I have a 77Gb sas7bat file (see below for some details about...
This is slightly annoying because it increases the import time of xlwings and makes it much harder to tell from within another library if the user using my lib is...