Miro Hrončok

Results 305 comments of Miro Hrončok

> Do you think you can try to debug this yourself? If you give me hints on what to put to the code, I can try, but I don't have...

Unfortunately, I was unable to dedicate my time to admesh :( Do others think we should release 1.0 as is?

> Is Python 2 support really still needed? Its already EOL for a while Well, I don't need it and that's why I didn't bother with it. However, this project...

(If you want to work on this and don't know where, I'll give you access.)

I'm getting the same problem on Python 3.12.1. I updated to Fedora 39 and suddenly ilua does not work. ``` $ ilua Jupyter console 6.6.3 ILua 0.2.1 In [1]: 2023-12-13T14:39:40+0100...

FWIW it seems that this is called: https://github.com/guysv/ilua/blob/05eb1817bceb1a9cc83f378bd86cd9ae1279ea70/ilua/kernel.py#L104-L105 And before the `self.proto` attribute is set, other methods (such as `do_is_complete`) proceed and fail.

I've tried bisecting this and I belive the problem started with https://github.com/twisted/twisted/pull/1675/

Adding `usePTY=1` to this call forces fork-based process and makes it work. I don't know yet why it does not work with posix_spawn or whether there is a nicer way...

Setting `self.reactor._neverUseSpawn = True` (which is obviously a hack) also works. EDIT: That's what I did for now in the Fedora package.