From c0b2eddf4dfe9fb2828686f9557467c6dcd046aa Mon Sep 17 00:00:00 2001 From: James French Date: Tue, 3 Aug 2010 13:02:37 +0800 Subject: [PATCH] Removed erroneous comments --- icalparse.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/icalparse.py b/icalparse.py index f4b8877..193a00a 100755 --- a/icalparse.py +++ b/icalparse.py @@ -64,24 +64,14 @@ def lineFolder(oldcal, length=75): ll = length foldedline = [] while uline: - # This algorithm prevents slicing multi-byte chars in half - - # Convert up to length octets to unicode, dropping any - # half characters ufold = unicode(line[0:ll], 'utf-8', 'ignore') fold = ufold.encode('utf-8') - - # Remove what we've converted from the line uline = uline.replace(ufold,u'',1) line = uline.encode('utf-8') - - # And add the fold to the list foldedline.append(fold) # Subsequent lines are shorter as they include a space ll = length - 1 - - # Finally, add the fold 'marker' to the line cal.append('\r\n '.join(foldedline)) return cal -- 2.20.1