Yet another hotfix release, PyScripter 4.2.4 is now available at Sourceforge. A scaling issue in code completion is fixed. This only affected users whose primary monitor is high-DPI (scaling > 100%).
Latest version 4.2.5 has a bug - autocomplete (Ctrl+Space) does not working at all. I install previous version 4.2.4 - it works fine. I Have Windows 7 and Python 3.8.10 installed
I have used sys.stdin = open() but pyscripter still requires keyboard input, not reading the file while other software redirects to read the file Hope the author team shows how to fix it. Thank you very much
2 comments:
Latest version 4.2.5 has a bug - autocomplete (Ctrl+Space) does not working at all. I install previous version 4.2.4 - it works fine.
I Have Windows 7 and Python 3.8.10 installed
import sys
sys.stdin = open('1.inp','r')
sys.stdout = open('1.out','w')
a = int(input())
print(a+1)
I have used sys.stdin = open() but pyscripter still requires keyboard input, not reading the file while other software redirects to read the file
Hope the author team shows how to fix it.
Thank you very much
Post a Comment