Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Guignot <guignot@wanadoo.fr>2003-09-03 00:13:43 +0400
committerJacques Guignot <guignot@wanadoo.fr>2003-09-03 00:13:43 +0400
commitbb824b08b725f85f1167f0ae051a5ef772a72608 (patch)
tree751ea0bf61613c8290d6165e7d984f8984c5df8a
parent679a44d2c6d0b13ac0b2ad8c6dfa14694233f310 (diff)
function PyArgsParse changed for PyArgsParseTuple by Stephen ( not so that sure...)
-rw-r--r--source/blender/python/api2_2x/Object.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/python/api2_2x/Object.c b/source/blender/python/api2_2x/Object.c
index 096f4c22803..eca922291ce 100644
--- a/source/blender/python/api2_2x/Object.c
+++ b/source/blender/python/api2_2x/Object.c
@@ -964,7 +964,7 @@ static PyObject *Object_setDrawMode (BPy_Object *self, PyObject *args)
{
char dt;
- if (!PyArg_Parse (args, "b", &dt))
+ if (!PyArg_ParseTuple (args, "b", &dt))
{
return (PythonReturnErrorObject (PyExc_AttributeError,
"expected an integer as argument"));
@@ -979,7 +979,7 @@ static PyObject *Object_setDrawType (BPy_Object *self, PyObject *args)
{
char dtx;
- if (!PyArg_Parse (args, "b", &dtx))
+ if (!PyArg_ParseTuple (args, "b", &dtx))
{
return (PythonReturnErrorObject (PyExc_AttributeError,
"expected an integer as argument"));
@@ -1037,7 +1037,7 @@ static PyObject *Object_setMaterials (BPy_Object *self, PyObject *args)
int i;
Material ** matlist;
- if (!PyArg_Parse (args, "O", &list))
+ if (!PyArg_ParseTuple (args, "O", &list))
{
return (PythonReturnErrorObject (PyExc_AttributeError,
"expected a list of materials as argument"));
@@ -1093,7 +1093,7 @@ static PyObject *Object_setName (BPy_Object *self, PyObject *args)
char * name;
char buf[21];
- if (!PyArg_Parse (args, "s", &name))
+ if (!PyArg_ParseTuple (args, "s", &name))
{
return (PythonReturnErrorObject (PyExc_AttributeError,
"expected a String as argument"));
@@ -1113,7 +1113,7 @@ static PyObject *Object_shareFrom (BPy_Object *self, PyObject *args)
ID * id;
ID * oldid;
- if (!PyArg_Parse (args, "O", &object))
+ if (!PyArg_ParseTuple (args, "O", &object))
{
PythonReturnErrorObject (PyExc_AttributeError,
"expected an object argument");