summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-08-08 13:03:41 +0000
committerGeorg Brandl <georg@python.org>2007-08-08 13:03:41 +0000
commitbc30369136f98913820adbf55c0c3a305ef28345 (patch)
tree3dbc8b3098156d165e3a7116813979aeae40de89
parentefc7dafb3b2300c8e1a20b7dfd65bf4afaabbe15 (diff)
downloadcpython-bc30369136f98913820adbf55c0c3a305ef28345.tar.gz
Revert the fix for #1548891, it broke backwards compatibility with arbitrary read buffers.
Fixes #1730114.
-rw-r--r--Doc/lib/libstringio.tex4
-rw-r--r--Lib/test/test_StringIO.py22
-rw-r--r--Misc/NEWS4
-rw-r--r--Modules/cStringIO.c7
4 files changed, 9 insertions, 28 deletions
diff --git a/Doc/lib/libstringio.tex b/Doc/lib/libstringio.tex
index 24312518f3..73ff0e4c3c 100644
--- a/Doc/lib/libstringio.tex
+++ b/Doc/lib/libstringio.tex
@@ -78,6 +78,10 @@ Unlike the memory files implemented by the \refmodule{StringIO}
module, those provided by this module are not able to accept Unicode
strings that cannot be encoded as plain \ASCII{} strings.
+Calling \function{StringIO()} with a Unicode string parameter populates
+the object with the buffer representation of the Unicode string, instead of
+encoding the string.
+
Another difference from the \refmodule{StringIO} module is that calling
\function{StringIO()} with a string parameter creates a read-only object.
Unlike an object created without a string parameter, it does not have
diff --git a/Lib/test/test_StringIO.py b/Lib/test/test_StringIO.py
index 9f79b02e16..58cbec06f8 100644
--- a/Lib/test/test_StringIO.py
+++ b/Lib/test/test_StringIO.py
@@ -121,28 +121,6 @@ class TestStringIO(TestGenericStringIO):
class TestcStringIO(TestGenericStringIO):
MODULE = cStringIO
- def test_unicode(self):
-
- if not test_support.have_unicode: return
-
- # The cStringIO module converts Unicode strings to character
- # strings when writing them to cStringIO objects.
- # Check that this works.
-
- f = self.MODULE.StringIO()
- f.write(unicode(self._line[:5]))
- s = f.getvalue()
- self.assertEqual(s, 'abcde')
- self.assertEqual(type(s), types.StringType)
-
- f = self.MODULE.StringIO(unicode(self._line[:5]))
- s = f.getvalue()
- self.assertEqual(s, 'abcde')
- self.assertEqual(type(s), types.StringType)
-
- self.assertRaises(UnicodeEncodeError, self.MODULE.StringIO,
- unicode('\xf4', 'latin-1'))
-
import sys
if sys.platform.startswith('java'):
# Jython doesn't have a buffer object, so we just do a useless
diff --git a/Misc/NEWS b/Misc/NEWS
index 30bb985882..375fb34c9d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -782,10 +782,6 @@ Extension Modules
- Patch #1576166: Support os.utime for directories on Windows NT+.
-- Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode
- arguments with the system default encoding just like the write()
- method does, instead of converting it to a raw buffer.
-
- Patch #1572724: fix typo ('=' instead of '==') in _msi.c.
- Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c
index 5834e20273..0cc9c6bb80 100644
--- a/Modules/cStringIO.c
+++ b/Modules/cStringIO.c
@@ -673,8 +673,11 @@ newIobject(PyObject *s) {
char *buf;
Py_ssize_t size;
- if (PyObject_AsCharBuffer(s, (const char **)&buf, &size) != 0)
- return NULL;
+ if (PyObject_AsReadBuffer(s, (const char **)&buf, &size)) {
+ PyErr_Format(PyExc_TypeError, "expected read buffer, %.200s found",
+ s->ob_type->tp_name);
+ return NULL;
+ }
self = PyObject_New(Iobject, &Itype);
if (!self) return NULL;