diff --git a/doc/src/conf.py b/doc/src/conf.py index 29b368a..d0020dc 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,7 +42,7 @@ author = 'Oracle' # The short X.Y version. version = '7.2' # The full version, including alpha/beta/rc tags. -release = '7.2.0' +release = '7.2.1' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/setup.py b/setup.py index 3d81737..405f1d1 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ except: from distutils.extension import Extension # define build constants -BUILD_VERSION = "7.2.0" +BUILD_VERSION = "7.2.1" # setup extra link and compile args extraLinkArgs = [] diff --git a/src/cxoCursor.c b/src/cxoCursor.c index ac0302e..d6cc3c7 100644 --- a/src/cxoCursor.c +++ b/src/cxoCursor.c @@ -414,7 +414,7 @@ static int cxoCursor_performDefine(cxoCursor *cursor, uint32_t numQueryColumns) // if using an output type handler, None implies default behavior if (outputTypeHandler) { result = PyObject_CallFunction(outputTypeHandler, "Os#Oiii", - cursor, queryInfo.name, queryInfo.nameLength, + cursor, queryInfo.name, (Py_ssize_t) queryInfo.nameLength, varType->pythonType, size, queryInfo.typeInfo.precision, queryInfo.typeInfo.scale); if (!result) {