(self, s)
| 2024 | self.vcard = None |
| 2025 | |
| 2026 | def vcardEscape(self, s): |
| 2027 | if type(s) in (type(''), type(u'')): |
| 2028 | s = s.replace(',', '\\,').replace(';', '\\;').replace('\n', '\\n') |
| 2029 | return s |
| 2030 | |
| 2031 | def vcardFold(self, s): |
| 2032 | s = re.sub(';+$', '', s) |
no test coverage detected