Rok Mandeljc

Results 553 comments of Rok Mandeljc

Yeah, or at least until python 3.11 reaches release candidate stage.

Feel free to test in advance of the merge. It's always good to get early feedback.

Looks like there's no surprises in rc2 (or they are not covered by the basic test suite...), so I guess this is ready for review.

> Only thing I did notice is that the `SABnzbd.pkg` file increased from 4MB to 6MB, quite a dramatic change. Is there a way for me to investigate why? You...

@Safihre Hmm, I thought this was going to be caused by something like `setuptools._distutills` being collected now, but that does not seem to be the case... It seems that the...

The extra size may be due to [pep-0657](https://peps.python.org/pep-0657) - we'll have to check if if the opt-out mechanism works with PyInstaller...

> The extra size may be due to [pep-0657](https://peps.python.org/pep-0657) - we'll have to check if if the opt-out mechanism works with PyInstaller... ```python # python_size_test.py import sys import marshal import...

From my experiments, it would seem that `.app` bundle doesn't get console (regardless of `console` setting in `EXE()`). The minimal test example used here, when ran as an `.app` (i.e,...

> Can one please give a summary of what the exact cause is and how this script helps solving this? (this might also be helpful for documenting the pull-request later)....

The reproducer from original report: ```python print('hello world') input() ``` is crashing because `input()` requires valid `stdin`, which is missing when running as .app bundle (= no console): ``` $...