From 325162254bfeef85e8d262bb1827874d74662a5d 2007-01-06 15:57:49 From: vivainio Date: 2007-01-06 15:57:49 Subject: [PATCH] ipy_user_conf disables system_verbose as default --- diff --git a/IPython/UserConfig/ipy_user_conf.py b/IPython/UserConfig/ipy_user_conf.py index 7910beb..e36655f 100644 --- a/IPython/UserConfig/ipy_user_conf.py +++ b/IPython/UserConfig/ipy_user_conf.py @@ -27,10 +27,17 @@ ip = IPython.ipapi.get() def main(): # Handy tab-completers for %cd, %run, import etc. # Try commenting this out if you have completion problems/slowness - import ipy_stock_completers + import ipy_stock_completers + + # uncomment if you want to get ipython -p sh behaviour + # without having to use command line switches + + # import ipy_profile_sh + o = ip.options # An example on how to set options #o.autocall = 1 + o.system_verbose = 0 main()