python: Join a list of strings instead of concatenating a long string.
authorBen Pfaff <blp@nicira.com>
Tue, 23 Aug 2011 21:02:03 +0000 (14:02 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 24 Aug 2011 18:57:42 +0000 (11:57 -0700)
commitb33a04c63adc29096fe50c08c7b8781398f885c7
tree55fc268be4b4a10b21485baf407add0ed0a4235a
parent523a3bc7733b13cbfb4b702739cd26d0c29b05f7
python: Join a list of strings instead of concatenating a long string.

Python does not do a good job of appending strings: it takes O(n**2) time
to append n strings.

Suggested-by: Reid Price <reid@nicira.com>
python/ovs/db/data.py