diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-09 18:29:43 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-09 18:29:43 (GMT) |
commit | ba21ffe311490bb348716e8e9127109e7fdc2f08 (patch) | |
tree | 5664bb6b48d53803e7ea52f1caa5afa241413f32 /bench | |
parent | 895f277379ccb6272549468d18f27f4a5fc2ee2f (diff) | |
download | SCons-ba21ffe311490bb348716e8e9127109e7fdc2f08.zip SCons-ba21ffe311490bb348716e8e9127109e7fdc2f08.tar.gz SCons-ba21ffe311490bb348716e8e9127109e7fdc2f08.tar.bz2 |
Add emacs and vim editing settings to the bottom of *.py files.
Diffstat (limited to 'bench')
-rw-r--r-- | bench/bench.py | 6 | ||||
-rw-r--r-- | bench/dependency-func.py | 6 | ||||
-rw-r--r-- | bench/env.__setitem__.py | 6 | ||||
-rw-r--r-- | bench/is_types.py | 6 | ||||
-rw-r--r-- | bench/lvars-gvars.py | 5 | ||||
-rw-r--r-- | bench/timeit.py | 6 |
6 files changed, 35 insertions, 0 deletions
diff --git a/bench/bench.py b/bench/bench.py index 3c5dd50..07c0384 100644 --- a/bench/bench.py +++ b/bench/bench.py @@ -121,3 +121,9 @@ for func in FunctionList: for label, args, kw in Data: r = apply(timer, (func,)+args, kw) display(label, r) + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/bench/dependency-func.py b/bench/dependency-func.py index 0af411d..beaa626 100644 --- a/bench/dependency-func.py +++ b/bench/dependency-func.py @@ -96,3 +96,9 @@ Data = [ {}, ), ] + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/bench/env.__setitem__.py b/bench/env.__setitem__.py index 3826176..d20785a 100644 --- a/bench/env.__setitem__.py +++ b/bench/env.__setitem__.py @@ -360,3 +360,9 @@ run_it('Results for adding 100 new, unique variable names:', common_imports + """ import __main__ ; names = __main__.uniq_variable_names """) + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/bench/is_types.py b/bench/is_types.py index 1f4805b..d225465 100644 --- a/bench/is_types.py +++ b/bench/is_types.py @@ -329,3 +329,9 @@ Data = [ {}, ), ] + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/bench/lvars-gvars.py b/bench/lvars-gvars.py index efcef2a..724b7a2 100644 --- a/bench/lvars-gvars.py +++ b/bench/lvars-gvars.py @@ -72,3 +72,8 @@ Data = [ ), ] +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/bench/timeit.py b/bench/timeit.py index d5e33bb..cc087e1 100644 --- a/bench/timeit.py +++ b/bench/timeit.py @@ -295,3 +295,9 @@ def main(args=None): if __name__ == "__main__": sys.exit(main()) + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |