summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-10 15:50:56 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-10 15:50:56 (GMT)
commit0312494665ba9a6492956183c181e1b87e10820d (patch)
treef5965d4f17e7d075661728a5f25e608e32bd5f62 /Lib
parentb1ef6735ba175d243b3bb8d7f46c53ffbecfb7bd (diff)
downloadcpython-0312494665ba9a6492956183c181e1b87e10820d.zip
cpython-0312494665ba9a6492956183c181e1b87e10820d.tar.gz
cpython-0312494665ba9a6492956183c181e1b87e10820d.tar.bz2
Remove last traces of cStringIO.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 14f55fb..e9570e9 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -297,7 +297,7 @@ class SysModuleTest(unittest.TestCase):
self.assert_(isinstance(vi[4], int))
def test_43581(self):
- # Can't use sys.stdout, as this is a cStringIO object when
+ # Can't use sys.stdout, as this is a StringIO object when
# the test runs under regrtest.
self.assertEqual(sys.__stdout__.encoding, sys.__stderr__.encoding)