~ellisonbg/ipython/trunk-dev

« back to all changes in this revision

Viewing changes to IPython/quarantine/ipy_stock_completers.py

  • Committer: Brian Granger
  • Date: 2010-01-31 23:57:46 UTC
  • mfrom: (1109.1.113 ipython)
  • Revision ID: ellisonbg@gmail.com-20100131235746-rj81qa8klooepq2m
Merging from upstream trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
IPython extension that installs completers related to core ipython behaviour.
4
4
 
5
 
The actual implementations are in Extensions/ipy_completers.py
 
5
The actual implementations are in extensions/ipy_completers.py
6
6
 
7
7
"""
8
 
import IPython.ipapi
 
8
from IPython.core import ipapi
9
9
 
10
 
ip = IPython.ipapi.get()
 
10
ip = ipapi.get()
11
11
 
12
12
from ipy_completers import *
13
13