diff options
author | FELD Boris <lothiraldan@gmail.com> | 2012-05-03 12:48:09 +0200 |
---|---|---|
committer | FELD Boris <lothiraldan@gmail.com> | 2012-05-03 12:48:09 +0200 |
commit | 17365a04f538aee221f8511f78593de44ba36c24 (patch) | |
tree | 2ff3a120fc8c61578493d8594100de9435e9d865 /reporters/__init__.py | |
parent | bd13faac0f693e612568f668f3c39b76a2f68586 (diff) | |
download | pylint-17365a04f538aee221f8511f78593de44ba36c24.tar.gz |
Add 'on_close' event trigerring and event callback for reporters.
Diffstat (limited to 'reporters/__init__.py')
-rw-r--r-- | reporters/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/reporters/__init__.py b/reporters/__init__.py index e2cf26e..8f54820 100644 --- a/reporters/__init__.py +++ b/reporters/__init__.py @@ -81,3 +81,8 @@ class BaseReporter: """starting analyzis of a module""" pass + def on_close(self, stats, previous_stats): + """global end of analyzis""" + pass + + |