##// END OF EJS Templates
use ipy_profile_scipy.py instead of ipythonrc-scipy
vivainio -
Show More
1 NO CONTENT: file renamed from IPython/UserConfig/ipy_profile_sci.py to IPython/UserConfig/ipy_profile_scipy.py
@@ -6,6 +6,9 b''
6 6 standalone IPython executables with py2exe (i.e.
7 7 no python installation required).
8 8
9 * Removed ipythonrc-scipy, ipy_profile_scipy.py takes
10 its place.
11
9 12 2007-05-21 Ville Vainio <vivainio@gmail.com>
10 13
11 14 * platutil_win32.py (set_term_title): handle
@@ -1,35 +0,0 b''
1 # -*- Mode: Shell-Script -*- Not really, but shows comments correctly
2 #***************************************************************************
3 #
4 # Configuration file for ipython -- ipythonrc format
5 #
6 # The format of this file is one of 'key value' lines.
7 # Lines containing only whitespace at the beginning and then a # are ignored
8 # as comments. But comments can NOT be put on lines with data.
9 #***************************************************************************
10
11 # This is an example of a 'profile' file which includes a base file and adds
12 # some customizaton for a particular purpose.
13
14 # If this file is found in the user's ~/.ipython directory as ipythonrc-scipy,
15 # it can be loaded by calling passing the '-profile scipy' (or '-p scipy')
16 # option to IPython.
17
18 # This example is meant to load several modules to turn ipython into a very
19 # capable environment for high-end numerical work, similar to IDL or MatLab
20 # but with the beauty of the Python language.
21
22 # load our basic configuration with generic options
23 include ipythonrc
24
25 # import ...
26 # Load Numpy an SciPy by themselves so that 'help' works on them
27 import_mod numpy scipy
28
29 # from ... import ...
30 import_some
31
32 # Now we load all of SciPy
33 # from ... import *
34 import_all numpy
35 import_all scipy
General Comments 0
You need to be logged in to leave comments. Login now