Convert string to xml/html format
(s)
| 166 | code = None |
| 167 | |
| 168 | def strtoxml(s): |
| 169 | """Convert string to xml/html format""" |
| 170 | return s.replace('&', '&').replace('"', '"').replace('<', '<').replace('>', '>') |
| 171 | |
| 172 | |
| 173 | def trimname(name): |
no test coverage detected