~ipython-contrib/+junk/ipython-zmq

« back to all changes in this revision

Viewing changes to IPython/Extensions/ipy_system_conf.py

  • Committer: ville
  • Date: 2008-02-16 09:50:47 UTC
  • mto: (0.12.1 ipython_main)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: ville@ville-pc-20080216095047-500x6dluki1iz40o
initialization (no svn history)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
""" System wide configuration file for IPython.
 
2
 
 
3
This will be imported by ipython for all users.
 
4
 
 
5
After this ipy_user_conf.py is imported, user specific configuration
 
6
should reside there. 
 
7
 
 
8
 """
 
9
 
 
10
import IPython.ipapi
 
11
ip = IPython.ipapi.get()
 
12
 
 
13
# add system wide configuration information, import extensions etc. here.
 
14
# nothing here is essential 
 
15
 
 
16
import sys
 
17
 
 
18
import ext_rescapture # var = !ls and var = %magic
 
19
import pspersistence # %store magic
 
20
import clearcmd # %clear
 
21
 
 
22
import ipy_stock_completers
 
23
 
 
24
ip.load('IPython.history')