diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-06 13:51:09 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-03-21 17:32:50 +0530 |
commit | df26ea5359820f692565c44afb84ee3fd05e20d1 (patch) | |
tree | ac8d2e08493a4ece8772a4811591b566c194c14d /scripts/pylint | |
parent | fdf4534d02483af279deddfd23cb61f6079dd277 (diff) | |
download | glibc-df26ea5359820f692565c44afb84ee3fd05e20d1.tar glibc-df26ea5359820f692565c44afb84ee3fd05e20d1.tar.gz glibc-df26ea5359820f692565c44afb84ee3fd05e20d1.tar.bz2 glibc-df26ea5359820f692565c44afb84ee3fd05e20d1.zip |
Implement benchmarking script in python
Implemented the benchmark script in python since it is much cleaner
and simpler to maintain.
Diffstat (limited to 'scripts/pylint')
-rwxr-xr-x | scripts/pylint | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/pylint b/scripts/pylint new file mode 100755 index 0000000000..49a775e52f --- /dev/null +++ b/scripts/pylint @@ -0,0 +1,5 @@ +#!/bin/sh +# Simple wrapper around the pylint program that uses the pylintrc file to +# validate the source code in files passed on command line. + +exec pylint --rcfile "${0%/*}/pylintrc" "$@" |