Mercurial > hg > config
changeset 621:cd51786972c4
STUB: .emacs
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 05 Feb 2014 09:06:05 -0800 |
parents | a43d0205f80b |
children | b18008a2b8fe |
files | .emacs |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/.emacs Wed Feb 05 08:33:16 2014 -0800 +++ b/.emacs Wed Feb 05 09:06:05 2014 -0800 @@ -157,13 +157,13 @@ import argparse import os +import subprocess import sys here = os.path.dirname(os.path.realpath(__file__)) def main(args=sys.argv[1:]): - usage = '%prog [options]' parser = argparse.ArgumentParser(usage=usage, description=__doc__) parser.add_option('input', nargs='?', type=argparse.FileType('r'), default=sys.stdin, @@ -200,8 +200,8 @@ here = os.path.dirname(os.path.abspath(__file__)) -class Test__(unittest.TestCase): - def test__(self): +class Test(unittest.TestCase): + def test_(self): pass if __name__ == '__main__':