[XML-SIG] HTML<->UTF-8 'codec'? [Slightly-OT]

Martin v. Loewis Martin.v.Loewis@t-online.de
Sat, 20 Oct 2001 17:49:46 +0200


> When I converted the results audit trail to a list:
> 
> results.insert (1, "Current Dice Roll ...")
> 
> A 10,000 roll sequence only takes roughly 1.5 seconds....

Notice that using insert/append does not help at all when you add a
single character at the time, since the list is copied on each resize,
also.

Regards,
Martin