~ellisonbg/ipython/trunk-dev

« back to all changes in this revision

Viewing changes to IPython/testing/attic/tstTEMPLATE_doctest.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:
1
 
"""Run this file with
2
 
 
3
 
    irunner --python filename
4
 
 
5
 
to generate valid doctest input.
6
 
 
7
 
NOTE: make sure to ALWAYS have a blank line before comments, otherwise doctest
8
 
gets confused."""
9
 
 
10
 
#---------------------------------------------------------------------------
11
 
 
12
 
# Setup - all imports are done in tcommon
13
 
import tcommon; reload(tcommon)  # for interactive use
14
 
from IPython.testing.tcommon import *
15
 
 
16
 
# Doctest code begins here