(s)
| 91 | |
| 92 | |
| 93 | def _quote_escape_attrib(s): |
| 94 | return ('"' + _escape_cdata(s) + '"' if '"' not in s else |
| 95 | "'" + _escape_cdata(s) + "'" if "'" not in s else |
| 96 | '"' + _escape_attrib(s) + '"') |
| 97 | |
| 98 | |
| 99 | def _short_float_fmt(x): |
no test coverage detected
searching dependent graphs…