From 4ab4eed2043dbec593ab2767e12d88bd6c41356b 2008-05-30 14:15:28 From: Ville M. Vainio Date: 2008-05-30 14:15:28 Subject: [PATCH] disable ipy_signals in sh profile, it does not work with python 2.3 (that has no subprocess module) --- diff --git a/IPython/Extensions/ipy_profile_sh.py b/IPython/Extensions/ipy_profile_sh.py index 8296f37..c25afef 100644 --- a/IPython/Extensions/ipy_profile_sh.py +++ b/IPython/Extensions/ipy_profile_sh.py @@ -43,7 +43,9 @@ def main(): # %store foo # %store bar import ipy_rehashdir - import ipy_signals + + # does not work without subprocess module! + #import ipy_signals ip.ex('import os') ip.ex("def up(): os.chdir('..')")