浏览代码

__repr__ and __str__ for ExclusionsDB (#5).

tags/v0.1^2
Ben Kurtovic 12 年前
父节点
当前提交
1c2dcc999a
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. +9
    -0
      earwigbot/wiki/copyvios/exclusions.py

+ 9
- 0
earwigbot/wiki/copyvios/exclusions.py 查看文件

@@ -52,6 +52,15 @@ class ExclusionsDB(object):
self._logger = logger
self._db_access_lock = Lock()

def __repr__(self):
"""Return the canonical string representation of the ExclusionsDB."""
res = "ExclusionsDB(sitesdb={0!r}, dbfile={1!r}, logger={2!r})"
return res.format(self._sitesdb, self._dbfile, self._logger)

def __str__(self):
"""Return a nice string representation of the ExclusionsDB."""
return "<ExclusionsDB at {0}>".format(self._dbfile)

def _create(self):
"""Initialize the exclusions database with its necessary tables."""
script = """


正在加载...
取消
保存