##// END OF EJS Templates
Cleanup scipy profile for numpy use, after comments by Ryan.
fptest -
Show More
@@ -23,21 +23,13 b''
23 include ipythonrc
23 include ipythonrc
24
24
25 # import ...
25 # import ...
26 # Load SciPy by itself so that 'help scipy' works
26 # Load Numpy an SciPy by themselves so that 'help' works on them
27 import_mod scipy
27 import_mod numpy scipy
28
28
29 # from ... import ...
29 # from ... import ...
30 import_some
30 import_some
31
31
32 # Now we load all of SciPy
32 # Now we load all of SciPy
33 # from ... import *
33 # from ... import *
34 import_all scipy IPython.numutils
34 import_all numpy
35
35 import_all scipy
36 # code
37 execute print 'Welcome to the SciPy Scientific Computing Environment.'
38 execute scipy.alter_numeric()
39
40 # File with alternate printer system for Numeric Arrays.
41 # Files in the 'Extensions' directory will be found by IPython automatically
42 # (otherwise give the explicit path):
43 execfile Extensions/numeric_formats.py
@@ -1,5 +1,8 b''
1 2006-10-28 Fernando Perez <Fernando.Perez@colorado.edu>
1 2006-10-28 Fernando Perez <Fernando.Perez@colorado.edu>
2
2
3 * IPython/UserConfig/ipythonrc-scipy: minor clenaups to remove old
4 Numeric leftovers.
5
3 * ipython.el (py-execute-region): apply Stefan's patch to fix
6 * ipython.el (py-execute-region): apply Stefan's patch to fix
4 garbled results if the python shell hasn't been previously started.
7 garbled results if the python shell hasn't been previously started.
5
8
General Comments 0
You need to be logged in to leave comments. Login now