summaryrefslogtreecommitdiffstats
path: root/Modules/_hashopenssl.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-03-21 21:05:53 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-03-21 21:05:53 (GMT)
commit38c36f857600c72a094c65010d51342a1fd73658 (patch)
treee85caabd68ef137e309f9365019a9eb40eca88ff /Modules/_hashopenssl.c
parent19495a7adc505581734058a74c1a3476267bab40 (diff)
downloadcpython-38c36f857600c72a094c65010d51342a1fd73658.zip
cpython-38c36f857600c72a094c65010d51342a1fd73658.tar.gz
cpython-38c36f857600c72a094c65010d51342a1fd73658.tar.bz2
Merged revisions 78875 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r78875 | victor.stinner | 2010-03-12 18:00:41 +0100 (ven., 12 mars 2010) | 5 lines Issue #6697: use %U format instead of _PyUnicode_AsString(), because _PyUnicode_AsString() was not checked for error (NULL). The unicode string is no more truncated to 200 or 400 *bytes*. ........
Diffstat (limited to 'Modules/_hashopenssl.c')
-rw-r--r--Modules/_hashopenssl.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c
index 0850d7b..ee149e1 100644
--- a/Modules/_hashopenssl.c
+++ b/Modules/_hashopenssl.c
@@ -288,10 +288,7 @@ static PyGetSetDef EVP_getseters[] = {
static PyObject *
EVP_repr(EVPobject *self)
{
- char buf[100];
- PyOS_snprintf(buf, sizeof(buf), "<%s HASH object @ %p>",
- _PyUnicode_AsString(self->name), self);
- return PyUnicode_FromString(buf);
+ return PyUnicode_FromFormat("<%U HASH object @ %p>", self->name, self);
}
#if HASH_OBJ_CONSTRUCTOR