-
Committer:
John Arbash Meinel
-
Date:
2008-09-04 02:42:34 UTC
-
mto:
This revision was merged to the branch mainline in
revision
3690.
-
Revision ID:
john@arbash-meinel.com-20080904024234-bgqpx4oupmqhv5t9
Properly append the data to the list buffer.
Rather than using [] += 'str', use [].append(str).
It turns out both *work*, but the former adds each character
individually to the list.