[issue40629] Error MSB4086 (numeric comparison)
New submission from veganaiZe : I'm getting an "error MSB4086: A numeric comparison was attempted ..." while attempting to build Python 3.8.3 (branch `3.8` from github) on Windows 8.1 (64-bit) with VC++ Build Tools 14.0 (2015 R3), at the command line. I'm guessing that I might have an incorrect (ie. too old) version of the .NET tools? I've attach the `PCBuild\clean.bat -vv` output. I can provide many more details but I didn't want to overwhelm. -- components: Windows files: clean_out.txt messages: 368877 nosy: paul.moore, steve.dower, tim.golden, veganaiZe, zach.ware priority: normal severity: normal status: open title: Error MSB4086 (numeric comparison) type: compile error versions: Python 3.8 Added file: https://bugs.python.org/file49155/clean_out.txt ___ Python tracker <https://bugs.python.org/issue40629> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue40629] Error MSB4086 (numeric comparison)
veganaiZe added the comment: Using Windows 10 SDK (from late 2019). It's essential for the 2015r3 tools (since the build tools don't include the standard lib headers! --Gimme a break Microsoft!) Here's the TL;DR from the log: 2>Building with tools version "4.0". 2>C:\src\cpython\PCbuild\python.props(111,31): error MSB4086: A numeric comparison was attempted on "$([System.Version]::Parse($(_RegistryVersion)))" that evaluates to "10.0.18362.0" instead of a number, in condition "$([System.Version]::Parse($(_RegistryVersion))) > $([System.Version]::Parse($(DefaultWindowsSDKVersion)))". [C:\src\cpython\PCbuild\_freeze_importlib.vcxproj] -- ___ Python tracker <https://bugs.python.org/issue40629> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue40629] Error MSB4086 (numeric comparison)
veganaiZe added the comment: Probably a result of pulling in `msbuild` from .net 4.0 tools. I'm setting up a dedicated virtual machine. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue40629> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue43236] Windows Taskbar Jump List fails to open Recent files
New submission from veganaiZe : OS: Windows 8.1 (x86-64) Python: 3.8.7 When I right-click on IDLE's rectangle/icon in the Windows taskbar it displays a "jump list" which contains recent/pinned filenames. A program will typically open a file when it's selected from the list. IDLE doesn't open the file, nor does it switch to the corresponding editor window if the file is already open. It seems to ignore the selection entirely. If IDLE is going to display a "Recent" list, within the jump list, then it would be nice if it actually opened the file(s). -- assignee: terry.reedy components: IDLE files: jumplist.png messages: 387082 nosy: terry.reedy, veganaiZe priority: normal severity: normal status: open title: Windows Taskbar Jump List fails to open Recent files type: behavior versions: Python 3.8 Added file: https://bugs.python.org/file49812/jumplist.png ___ Python tracker <https://bugs.python.org/issue43236> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue42007] Line continuation after Boolean operation
New submission from veganaiZe : I can't do something like this (regarding the `or`)... if (not position.x == 0 and velocity == -1) or (not position.x == 500 and velocity == 1) Nor this... if (not position.x == 0 and velocity == -1) or ( not position.x == 500 and velocity == 1) I have to do something like this... if (not position.x == 0 and velocity == -1) \ or (not position.x == 500 and velocity == 1) I would like to be able to do it the first way. -- components: Interpreter Core messages: 378441 nosy: veganaiZe priority: normal severity: normal status: open title: Line continuation after Boolean operation type: enhancement versions: Python 3.7 ___ Python tracker <https://bugs.python.org/issue42007> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue42007] Line continuation after Boolean operation
veganaiZe added the comment: Actually, I can do it the second way. I must have typo'd when testing (my apologies)... But I'd still like to do it the first way. ☺ -- ___ Python tracker <https://bugs.python.org/issue42007> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5680] Command-line arguments when running in IDLE
Changes by veganaiZe : -- nosy: +veganaiZe ___ Python tracker <http://bugs.python.org/issue5680> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue5680] Command-line arguments when running in IDLE
veganaiZe added the comment: I've created a simple work-around for those who don't want to wait for the next release(s) of IDLE. It's available on SO: https://stackoverflow.com/a/44687632/5039027 -- ___ Python tracker <http://bugs.python.org/issue5680> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue27163] IDLE entry for What's New in Python 3.6
Changes by veganaiZe : -- nosy: +veganaiZe ___ Python tracker <http://bugs.python.org/issue27163> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com