# HG changeset patch # User Jeff Hammel # Date 1391619965 28800 # Node ID cd51786972c4da7e233a412ab704150c7a434c6a # Parent a43d0205f80bc6d8361ec03fae5a6142f316ffc9 STUB: .emacs diff -r a43d0205f80b -r cd51786972c4 .emacs --- 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__':