Skip to main content

Pyflakes your doctest

Project description

Introduction

Check your doctest for various errors. Depends on pyflakes (http://pypi.python.org/pypi/pyflakes).

Usage example:

docpyflakes yourdoctext.txt

This package has an entry point for buildout to create a script via:

[buildout]
parts = ...
        scripts

[scripts]
recipe = zc.recipe.egg:scripts
eggs = affinitic.docpyflakes

VIM

My vim configuration integration to run docpyflakes while I am working on my doctest and handle errors quickly:

fun! PyflakesForDocTest()
    let tmpfile = tempname()
    execute "w" tmpfile
    execute "set makeprg=(docpyflakes\\ " . tmpfile . "\\\\\\|sed\\ s@" . tmpfile ."@%@)"
    make
    cw
    redraw!
endfun

autocmd BufWrite *.{txt} :call PyflakesForDocTest()

EMACS

Learn VIM

Changelog

0.1 (2010-02-19)

  • Initial release

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

affinitic.docpyflakes-0.1.tar.gz (2.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page