Eventfd with epoll BlockingIOError

2021-11-24 Thread Jen via Python-list
I have a C program that uses fork-execv to run Python 3.10 in a child process, and I am using eventfd with epoll for IPC between them.  The eventfd file descriptor is created in C and passed to Python through execv.  Once the Python child process starts I print the file descriptor to verify that

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread Ulli Horlacher
Calvin Spealman wrote: > What version of Windows is this on? That's probably going to be a useful > bit of information, because there could be differences there to how EXE > icons are handled. > > On Tue, Nov 23, 2021 at 4:18 PM Ulli Horlacher < > frams...@rus.uni-stuttgart.de> wrote: > > > When

Re: Embedding Python crash on PyTuple_New

2021-11-24 Thread MRAB
On 2021-11-24 07:59, Arnaud Loonstra wrote: On 24-11-2021 01:46, MRAB wrote: On 2021-11-23 20:25, Arnaud Loonstra wrote: On 23-11-2021 18:31, MRAB wrote: On 2021-11-23 16:04, Arnaud Loonstra wrote: On 23-11-2021 16:37, MRAB wrote: On 2021-11-23 15:17, MRAB wrote: On 2021-11-23 14:44, Arnau

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread nospam_2021
Am 23.11.21 um 21:44 schrieb Ulli Horlacher: > When I compile a python program with pyinstaller, I get an executable: > > pyinstaller --onefile --icon fex.ico fextasy.py > > But the executables icon is only visable within the windows file browser, > not on the desktop: > > https://fex.flupp.org

Re: pyinstaller: icon not visable on desktop?

2021-11-24 Thread Calvin Spealman
What version of Windows is this on? That's probably going to be a useful bit of information, because there could be differences there to how EXE icons are handled. On Tue, Nov 23, 2021 at 4:18 PM Ulli Horlacher < frams...@rus.uni-stuttgart.de> wrote: > When I compile a python program with pyinsta

Re: Embedding Python crash on PyTuple_New

2021-11-24 Thread Arnaud Loonstra
On 24-11-2021 01:46, MRAB wrote: On 2021-11-23 20:25, Arnaud Loonstra wrote: On 23-11-2021 18:31, MRAB wrote: On 2021-11-23 16:04, Arnaud Loonstra wrote: On 23-11-2021 16:37, MRAB wrote: On 2021-11-23 15:17, MRAB wrote: On 2021-11-23 14:44, Arnaud Loonstra wrote: On 23-11-2021 15:34, MRAB