Merge with trunk up to revision 45620.

This commit is contained in:
Thomas Wouters 2006-04-21 16:44:05 +00:00
parent 13247bfc8b
commit d4ec0c3e2c
23 changed files with 141 additions and 115 deletions

View file

@ -865,7 +865,7 @@ PyString_Repr(PyObject *obj, int smartquotes)
*p++ = quote;
*p = '\0';
_PyString_Resize(
&v, (int) (p - PyString_AS_STRING(v)));
&v, (p - PyString_AS_STRING(v)));
return v;
}
}