File: ipy_system_conf.py

package info (click to toggle)
ipython 0.13.1-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 15,752 kB
  • sloc: python: 69,537; makefile: 355; lisp: 272; sh: 80; objc: 37
file content (24 lines) | stat: -rw-r--r-- 533 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
""" System wide configuration file for IPython.

This will be imported by ipython for all users.

After this ipy_user_conf.py is imported, user specific configuration
should reside there.

 """

from IPython.core import ipapi
ip = ipapi.get()

# add system wide configuration information, import extensions etc. here.
# nothing here is essential

import sys

import ext_rescapture # var = !ls and var = %magic
import pspersistence # %store magic
import clearcmd # %clear

import ipy_stock_completers

ip.load('IPython.core.history')