~testdoc-dev/testdoc/trunk.git

« back to all changes in this revision

Viewing changes to bin/testdoc

  • Committer: Andrew Bennetts
  • Date: 2010-09-06 11:48:52 UTC
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: git-v1:c743e3b8dfbf65b6668a1f443171d1ca787a5e8e
Initial commit of hack to emit ReST.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    except:
37
37
        print usage()
38
38
        raise
39
 
    format = formatter.WikiFormatter(sys.stdout)
 
39
    format = formatter.ReSTFormatter(sys.stdout)
 
40
    #format = formatter.WikiFormatter(sys.stdout)
40
41
    doc = documenter.Documenter(format)
41
42
    finder.find_tests(doc, module)
42
43