# HG changeset patch # User Pierre-Yves David # Date 1551868534 -3600 # Node ID e8c4a9f5b9862ff884ae97cc0ff29e4d9c04db41 # Parent cfe08588d71142aacd1adbbd88685362cff93a60 verify: minimal documentation for `verifier.verify` I expect the docstring to grow over time, so lets start small. diff -r cfe08588d711 -r e8c4a9f5b986 mercurial/verify.py --- a/mercurial/verify.py Wed Mar 06 11:31:48 2019 +0100 +++ b/mercurial/verify.py Wed Mar 06 11:35:34 2019 +0100 @@ -130,6 +130,11 @@ return lr def verify(self): + """verify the content of the Mercurial repository + + This method run all verifications, displaying issues as they are found. + + return 1 if any error have been encountered""" repo = self.repo ui = repo.ui