(self)
| 1233 | return __str |
| 1234 | |
| 1235 | def __tinyStr__(self): |
| 1236 | # 2to3 |
| 1237 | # __str = str("View[", 'utf-8', 'replace') |
| 1238 | __str = "View[" |
| 1239 | if "class" in self.map: |
| 1240 | __str += " class=" + re.sub(r'.*\.', '', self.map['class']) |
| 1241 | __str += " id=%s" % self.getId() |
| 1242 | __str += " ]" |
| 1243 | |
| 1244 | return __str |
| 1245 | |
| 1246 | def __microStr__(self): |
| 1247 | # 2to3 |
no test coverage detected