(self)
| 58 | self.__linecnt = len(self.__lines) |
| 59 | |
| 60 | def __repr__(self): |
| 61 | self.__setup() |
| 62 | if len(self.__lines) <= self.MAXLINES: |
| 63 | return "\n".join(self.__lines) |
| 64 | else: |
| 65 | return "Type %s() to see the full %s text" % ((self.__name,)*2) |
| 66 | |
| 67 | def __call__(self): |
| 68 | try: |