##// END OF EJS Templates
Refactor of platutils for cleanup....
Refactor of platutils for cleanup. Reduces duplication of common functionality, os-specific modules only implement their own routines and the common code is provided by the top-level public module.

File last commit:

r1237:7c8d2f7b
r1331:9992bddd
Show More
tstTEMPLATE_doctest.py
16 lines | 427 B | text/x-python | PythonLexer
"""Run this file with
irunner --python filename
to generate valid doctest input.
NOTE: make sure to ALWAYS have a blank line before comments, otherwise doctest
gets confused."""
#---------------------------------------------------------------------------
# Setup - all imports are done in tcommon
import tcommon; reload(tcommon) # for interactive use
from IPython.testing.tcommon import *
# Doctest code begins here