Doctester for your documentation

Doctester for your documentation 1.2

Doctester for your documentation 1.2 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 408
  • Released: Jun 4, 2007

Doctester for your documentation 1.2 Description

The doctester extracts code from stdin and tests it using the doctest module in the standard library.

It can be invoked from the command line, but it is best called from you editor of choice.

Doctester for your documentation Bookmark

Hyperlink code:
Hyperlink for Forum code:

Doctester for your documentation 1.2 Script Download Notice

Top 4 Download periodically updates information of Doctester for your documentation 1.2 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Doctester for your documentation 1.2 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Format a text block

This function formats a block of text. The text is broken into tokens. (Whitespace is NOT preserved.) The tokens are reassembled at the specified level of indentation and line width. A string is returned. ...
Python

AWK like text processing

AWK is a text processing language that makes it easy to "search files for lines [...] that contain certain patterns. When a line matches one of the patterns, awk performs specified actions on that line." (GNU Awk User's Guide). This script provides a way ...
Python

Text transformer with conditions

... uses an efficient way to tranform a file's text to something else, with conditions for few lines. ...
Python

Indices of a SubString in a Given String

This script uses string.index(sub) function which returns a list of indices of ALL occurances of a substring in the string. ...
Python

HTML to text converter

... html document and converts it to plain ASCII text. In the spirit of minimalism, this operates as a standard unix filter: htmltotext < foo.html > foo.txt . If the output is going to a terminal, then bold and underline are displayed on the terminal. ...
Python