svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r72844 | martin.v.loewis | 2009-05-23 12:38:26 +0200 (Sa, 23 Mai 2009) | 2 lines
Issue #6093: Fix off-by-one error in locale.strxfrm.
........
- Issue #2703: SimpleXMLRPCDispatcher.__init__: Provide default values for
new arguments introduced in 2.5.
+Extension Modules
+-----------------
+
+- Issue #6093: Fix off-by-one error in locale.strxfrm.
+
Build
-----
PyErr_NoMemory();
goto exit;
}
- n2 = wcsxfrm(buf, s, n2);
+ n2 = wcsxfrm(buf, s, n2+1);
}
result = PyUnicode_FromWideChar(buf, n2);
exit: