Fixed invalid use of PyUnicode_FromFormat() where PyUnicode_FromString()

should have been used.
This commit is contained in:
2010-05-23 12:10:31 +00:00
parent ff3c742211
commit 2212564f18
29 changed files with 29 additions and 29 deletions

View File

@@ -110,7 +110,7 @@ static char BinaryPredicate1D_getName___doc__[] =
static PyObject *BinaryPredicate1D_getName( BPy_BinaryPredicate1D *self, PyObject *args)
{
return PyUnicode_FromFormat( self->bp1D->getName().c_str() );
return PyUnicode_FromString( self->bp1D->getName().c_str() );
}
static PyObject *BinaryPredicate1D___call__( BPy_BinaryPredicate1D *self, PyObject *args, PyObject *kwds)