Mercurial > p > roundup > code
view run_tests @ 1788:e5a17d4dd2c2
Normalize multiline strings for emacs.
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Fri, 05 Sep 2003 20:56:39 +0000 |
| parents | 4074e2336eed |
| children |
line wrap: on
line source
#! /usr/bin/env python # # Copyright (c) 2001 Richard Jones # This module is free software, and you may redistribute it and/or modify # under the same terms as Python, so long as this copyright message and # disclaimer are retained in their original form. # # This module is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # $Id: run_tests,v 1.9 2003-04-17 06:51:44 richard Exp $ from test import go import sys if len(sys.argv) > 1: go(sys.argv[1:]) else: go() # vim: set filetype=python ts=4 sw=4 et si
