@@ -517,14 +517,14 @@ def _create_launchers(self):
517
517
command = '$SYSDIR\cmd.exe' ,
518
518
args = r'/k winpython.bat' )
519
519
520
- #self.create_launcher('IDLEX (students).exe', 'python.ico',
521
- # command='$SYSDIR\cmd.exe',
522
- # args= r'/k IDLEX_for_student.bat %*',
523
- # workdir='$EXEDIR\scripts')
524
- self .create_launcher ('IDLE (Python GUI).exe' , 'python.ico' ,
520
+ self .create_launcher ('IDLEX.exe' , 'python.ico' ,
525
521
command = 'wscript.exe' ,
526
522
args = r'Noshell.vbs winidlex.bat' )
527
523
524
+ self .create_launcher ('IDLE (Python GUI).exe' , 'python.ico' ,
525
+ command = 'wscript.exe' ,
526
+ args = r'Noshell.vbs winidle.bat' )
527
+
528
528
self .create_launcher ('Spyder.exe' , 'spyder.ico' ,
529
529
command = 'wscript.exe' ,
530
530
args = r'Noshell.vbs winspyder.bat' )
@@ -1068,6 +1068,11 @@ def _create_batch_scripts(self):
1068
1068
)
1069
1069
""" )
1070
1070
1071
+ self .create_batch_script ('idle.bat' ,r"""@echo off
1072
+ call "%~dp0env_for_icons.bat"
1073
+ "%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
1074
+
1075
+ """ )
1071
1076
self .create_batch_script ('winidlex.bat' ,r"""@echo off
1072
1077
call "%~dp0env_for_icons.bat"
1073
1078
cd/D "%WINPYWORKDIR%"
@@ -1078,6 +1083,12 @@ def _create_batch_scripts(self):
1078
1083
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
1079
1084
)
1080
1085
""" )
1086
+ self .create_batch_script ('winidle.bat' ,r"""@echo off
1087
+ call "%~dp0env_for_icons.bat"
1088
+ cd/D "%WINPYWORKDIR%"
1089
+ "%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
1090
+ """ )
1091
+
1081
1092
self .create_batch_script ('spyder.bat' ,r"""@echo off
1082
1093
call "%~dp0env_for_icons.bat"
1083
1094
cd/D "%WINPYWORKDIR%"
0 commit comments