Staging
v0.5.1
https://github.com/python/cpython
Revision f9756c2336029d082317718cd1b2e330f48164d6 authored by Ezio Melotti on 09 May 2011, 15:36:53 UTC, committed by Ezio Melotti on 09 May 2011, 15:36:53 UTC
1 parent 2f48d89
Raw File
Tip revision: f9756c2336029d082317718cd1b2e330f48164d6 authored by Ezio Melotti on 09 May 2011, 15:36:53 UTC
Some more tests were incorrectly marked as C specific.
Tip revision: f9756c2
reindent-rst.py
#!/usr/bin/env python

# Make a reST file compliant to our pre-commit hook.
# Currently just remove trailing whitespace.

import sys

import patchcheck

def main(argv=sys.argv):
    patchcheck.normalize_docs_whitespace(argv[1:])

if __name__ == '__main__':
    sys.exit(main())
back to top