~ellisonbg/ipython/trunk-dev

« back to all changes in this revision

Viewing changes to IPython/testing/mkdoctests.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:
37
37
import tempfile
38
38
 
39
39
# IPython-specific libraries
40
 
from IPython import irunner
41
 
from IPython.genutils import fatal
 
40
from IPython.lib import irunner
 
41
from IPython.utils.warn import fatal
42
42
 
43
43
class IndentOut(object):
44
44
    """A simple output stream that indents all output by a fixed amount.