mirror of
https://github.com/python/cpython.git
synced 2025-08-11 20:40:27 +00:00

svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85766 | georg.brandl | 2010-10-21 09:40:03 +0200 (Do, 21 Okt 2010) | 1 line #10159: sort completion matches before comparing to dir() result. ........ r85767 | georg.brandl | 2010-10-21 14:49:28 +0200 (Do, 21 Okt 2010) | 1 line #9095, #8912, #8999: add support in patchcheck for Mercurial checkouts, C file reindenting, and docs whitespace fixing. ........
14 lines
278 B
Python
Executable file
14 lines
278 B
Python
Executable file
#!/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())
|