Use cStringIO rather than StringIO in all modules.
authorAdam Sampson <ats@offog.org>
Sun, 12 Jul 2015 12:17:24 +0000 (13:17 +0100)
committerAdam Sampson <ats@offog.org>
Sun, 12 Jul 2015 12:17:24 +0000 (13:17 +0100)
NEWS
rawdoglib/rawdog.py

diff --git a/NEWS b/NEWS
index be75a0009cdf7a003aea922a88b75ef7c72e05c2..0ae388ce3cbce2d842949beb74699a4fcec8695f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,9 @@ locales have non-ASCII names.
 
 Fix some style problems reported by pylint.
 
+Use cStringIO rather than StringIO in all modules (rather than some
+using one and some using the other).
+
 - rawdog 2.20
 
 Add a test for the maxage option (suggested by joelmo).
index 57376bfdabfe1e20fd0befb01793b5223a16504a..3721f9d161849aa7d4ddaacc7438b5ac3cc41ac6 100644 (file)
@@ -24,7 +24,7 @@ import rawdoglib.feedscanner
 from rawdoglib.persister import Persistable, Persister
 from rawdoglib.plugins import Box, call_hook, load_plugins
 
-from StringIO import StringIO
+from cStringIO import StringIO
 import base64
 import calendar
 import cgi