[issue38704] No `GetActiveProcessorCount` on Windows Vista

2019-11-05 Thread Arseniy
Arseniy added the comment: just tested, CPython 3.7.5 Successfully runs on Windows Vista. -- ___ Python tracker <https://bugs.python.org/issue38704> ___ ___

[issue38704] No `GetActiveProcessorCount` on Windows Vista

2019-11-05 Thread Arseniy
New submission from Arseniy : This[https://www.python.org/downloads/windows/] page says "Note that Python 3.8.0 cannot be used on Windows XP or earlier.". I tried to install it on Windows Vista and got a message that `GetActiveProcessorCount` is missing from `KERNEL32.DLL`. Th

[issue15446] Recursion SIGSEGV

2012-07-25 Thread Arseniy
New submission from Arseniy : a=lambda:a print eval("a" + "()" * 99) -- components: None messages: 166378 nosy: senyai priority: normal severity: normal status: open title: Recursion SIGSEGV type: crash versions: Python 2.7, Python 3.3 __