| Index: presubmit_support.py
|
| diff --git a/presubmit_support.py b/presubmit_support.py
|
| index c8b4a460ce801699dbdf590bd19f0403791f3a7c..5a003eba0040c64f9c203f6551ece6c0651ff576 100755
|
| --- a/presubmit_support.py
|
| +++ b/presubmit_support.py
|
| @@ -6,7 +6,7 @@
|
| """Enables directory-specific presubmit checks to run at upload and/or commit.
|
| """
|
|
|
| -__version__ = '1.4'
|
| +__version__ = '1.5'
|
|
|
| # TODO(joi) Add caching where appropriate/needed. The API is designed to allow
|
| # caching (between all different invocations of presubmit scripts for a given
|
| @@ -251,6 +251,8 @@ class InputApi(object):
|
| self.cPickle = cPickle
|
| self.cStringIO = cStringIO
|
| self.json = json
|
| + self.os_listdir = os.listdir
|
| + self.os_walk = os.walk
|
| self.os_path = os.path
|
| self.pickle = pickle
|
| self.marshal = marshal
|
|
|