##// END OF EJS Templates
Show the input object of the igrid browser as the window tile....
Show the input object of the igrid browser as the window tile. Show the object the cursor is on in the statusbar. (Patch by Nik Tautenhahn)

File last commit:

r392:f95b59e5
r546:83b88ca6
Show More
ipythonrc-scipy
35 lines | 1.2 KiB | text/plain | TextLexer
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 # -*- Mode: Shell-Script -*- Not really, but shows comments correctly
#***************************************************************************
#
# Configuration file for ipython -- ipythonrc format
#
# The format of this file is one of 'key value' lines.
# Lines containing only whitespace at the beginning and then a # are ignored
# as comments. But comments can NOT be put on lines with data.
#***************************************************************************
# This is an example of a 'profile' file which includes a base file and adds
# some customizaton for a particular purpose.
# If this file is found in the user's ~/.ipython directory as ipythonrc-scipy,
# it can be loaded by calling passing the '-profile scipy' (or '-p scipy')
# option to IPython.
# This example is meant to load several modules to turn ipython into a very
# capable environment for high-end numerical work, similar to IDL or MatLab
# but with the beauty of the Python language.
# load our basic configuration with generic options
include ipythonrc
# import ...
fptest
Cleanup scipy profile for numpy use, after comments by Ryan.
r392 # Load Numpy an SciPy by themselves so that 'help' works on them
import_mod numpy scipy
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
# from ... import ...
import_some
# Now we load all of SciPy
# from ... import *
fptest
Cleanup scipy profile for numpy use, after comments by Ryan.
r392 import_all numpy
import_all scipy