CData strings are passed into the formatter. But the return value is ignored.
(self, formatter="minimal")
| 732 | """ |
| 733 | |
| 734 | def output_ready(self, formatter="minimal"): |
| 735 | """CData strings are passed into the formatter. |
| 736 | But the return value is ignored.""" |
| 737 | self.format_string(self, formatter) |
| 738 | return self.PREFIX + self + self.SUFFIX |
| 739 | |
| 740 | class CData(PreformattedString): |
| 741 |
nothing calls this directly
no test coverage detected