(editors: check NEWS.help for information about editing NEWS using ReST.)
+What's New in Python 2.4.2 final?
+=================================
+
+*Release date: XX-SEP-2005*
+
+Core and builtins
+-----------------
+
+
+Extension Modules
+-----------------
+
+- Patch #1297028: fix segfault if call type on MultibyteCodec,
+ MultibyteStreamReader, or MultibyteStreamWriter.
+
+
+Tests
+-----
+
+
+Build
+-----
+
+
What's New in Python 2.4.2c1
============================
void
init_multibytecodec(void)
{
+ MultibyteCodec_Type.ob_type = &PyType_Type;
+ MultibyteStreamReader_Type.ob_type = &PyType_Type;
+ MultibyteStreamWriter_Type.ob_type = &PyType_Type;
+
Py_InitModule("_multibytecodec", __methods);
if (PyErr_Occurred())