Skip to content

Commit 1fab3de

Browse files
committed
Merge pull request #238 from stonebig/master
IDLEX instead of IDLE
2 parents 10e5bf5 + a36d924 commit 1fab3de

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

make.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -518,9 +518,12 @@ def _create_launchers(self):
518518
command='$SYSDIR\cmd.exe',
519519
args='/k', workdir='${WINPYDIR}')
520520
self.create_launcher('WinPython Interpreter.exe', 'python.ico')
521-
self.create_launcher('IDLE (Python GUI).exe', 'python.ico',
522-
args='idle.pyw',
523-
workdir='${WINPYDIR}\Lib\idlelib')
521+
#self.create_launcher('IDLE (Python GUI).exe', 'python.ico',
522+
# args='idle.pyw',
523+
# workdir='${WINPYDIR}\Lib\idlelib')
524+
self.create_launcher('IDLEX (Python GUI).exe', 'python.ico',
525+
args='idlex.pyw',
526+
workdir='${WINPYDIR}\Scripts')
524527
settingspath = osp.join('.spyder2', '.spyder.ini')
525528
self.create_launcher('Spyder.exe', 'spyder.ico',
526529
command='${WINPYDIR}\python.exe',

winpython/data/packages.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,9 @@ description=General-purpose Python interface to HDF5 files (unlike PyTables, h5p
225225
[ipykernel]
226226
description=IPython Kernel for Jupyter
227227
228+
[idlex]
229+
description=IDLE Extensions for Python
230+
228231
[ipyparallel]
229232
description=Interactive Parallel Computing with IPython
230233
@@ -888,6 +891,9 @@ url=http://winpython.github.io/
888891
[wordcloud]
889892
description=A little word cloud generator
890893

894+
[wpca]
895+
description=Weighted Principal Component Analysis
896+
891897
[wrapt]
892898
description=A Python module for decorators, wrappers and monkey patching.
893899

0 commit comments

Comments
 (0)