I am trying to do like this answer to the "same" question. But doesn't work.
How can I open Python3.3 IDLE from command line on windows?
I am trying to do like this answer to the "same" question. But doesn't work.
How can I open Python3.3 IDLE from command line on windows?
You need to do as stated in the main.py file of the idelib folder (C:\Python33\Lib\idlelib)
IDLE main entry point
Run IDLE as python -m idlelib
So with python -m idlelib <script_to_edit>
you will be able to open and edit the script with idle.
I haven't checked with previous versions but it could have the same usage.