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

2020-06-12 Thread Ned Deily
Ned Deily added the comment: This appears to be a duplicate of Issue32217 which was fixed in 3.7.4 and 3.8.0. If that doesn't solve the problem, please reopen with a current failure. -- nosy: +ned.deily resolution: -> duplicate stage: patch review -> resolved status: open -> closed v

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

2016-09-11 Thread Steve Dower
Steve Dower added the comment: That folder won't ever exist on Windows - if anything it should just be os.path.join(sys.execprefix, "DLLs"), but I'm not even sure how valuable that is. -- ___ Python tracker _

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

2016-09-11 Thread SilentGhost
Changes by SilentGhost : Removed file: http://bugs.python.org/file44538/28068.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Un

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

2016-09-11 Thread SilentGhost
SilentGhost added the comment: Given that it's a Windows issue, I'm sure Windows core developers in the nosy list would find a way to verify the fix. For the record, this bug was introduced in issue 11824. -- nosy: +meador.inge ___ Python tracker <

[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 be sure

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

2016-09-11 Thread SilentGhost
SilentGhost added the comment: Sure, that was just a typo. While "no errors" is good news, does the code is actually doing what it's supposed to do? Are you sure there aren't any hidden issue related to the potentially incorrect paths? -- Added file: http://bugs.python.org/file44562/28

[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 + sys.abif

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

2016-09-10 Thread SilentGhost
SilentGhost added the comment: Here is the patch, I'm not sure if any more changes are needed there, so it would be good to test. -- components: +Windows keywords: +patch nosy: +SilentGhost, paul.moore, steve.dower, tim.golden, zach.ware stage: -> patch review type: compile error -> be

[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' -- components: Demos a