Get the text output for the table. @rtype: str @return: Text output.
(self)
| 1142 | return width |
| 1143 | |
| 1144 | def getOutput(self): |
| 1145 | """ |
| 1146 | Get the text output for the table. |
| 1147 | |
| 1148 | @rtype: str |
| 1149 | @return: Text output. |
| 1150 | """ |
| 1151 | return "%s\n" % "\n".join(self.yieldOutput()) |
| 1152 | |
| 1153 | def yieldOutput(self): |
| 1154 | """ |
no test coverage detected