2
1

base.py 357 B

12345678910111213141516
  1. # See support/scripts/checkpackagelib/readme.txt before editing this file.
  2. class _CheckFunction(object):
  3. def __init__(self, filename, url_to_manual):
  4. self.filename = filename
  5. self.url_to_manual = url_to_manual
  6. def before(self):
  7. pass
  8. def check_line(self, lineno, text):
  9. pass
  10. def after(self):
  11. pass