(self, s)
| 2110 | self.vcard = None |
| 2111 | |
| 2112 | def vcardEscape(self, s): |
| 2113 | if isinstance(s, basestring): |
| 2114 | s = s.replace(',', '\\,').replace(';', '\\;').replace('\n', '\\n') |
| 2115 | return s |
| 2116 | |
| 2117 | def vcardFold(self, s): |
| 2118 | s = re.sub(';+$', '', s) |