[issue28068] Error in freeze.py due to unguarded sys.abiflags usage under Windows

2016-09-11 Thread Gevorg Voskanyan
Gevorg Voskanyan added the comment: It works OK for me, but as mentioned above `ishome` is True in my setup, so the path-related changes in the patch don't affect my setup in any way. I really don't know how it would affect setups of other people where `ishome` is False. So no, I can't

[issue28068] Error in freeze.py due to unguarded sys.abiflags usage under Windows

2016-09-11 Thread Gevorg Voskanyan
Gevorg Voskanyan added the comment: Thanks for the patch! It makes the error go away for me, but only because `ishome` is True in my case. Were it False, it would fail the same way on the line containing sys.abiflags . I think this line in the patch: flagged_version = version

[issue28068] Error in freeze.py due to unguarded sys.abiflags usage under Windows

2016-09-10 Thread Gevorg Voskanyan
New submission from Gevorg Voskanyan: Traceback (most recent call last): File ".../freeze.py", line 493, in main() File ".../freeze.py", line 222, in main flagged_version = version + sys.abiflags AttributeError: module 'sys' has no attribute 'abiflags'