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:
authorCampbell Barton <ideasman42@gmail.com>2010-09-11 19:13:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-11 19:13:22 +0400
commit386bd712405c90946960718ce1460f38a1a4d9b9 (patch)
tree7f8672af54fbd2f3307912c1c56785c81a65c25b /source/blender/python/intern/bpy_operator_wrap.c
parent38669bd5fdf703f94de1884798580e9326e00057 (diff)
pyrna: replace method for operators forwarding getattr/setattr access from self.* to self.properties.*
Diffstat (limited to 'source/blender/python/intern/bpy_operator_wrap.c')
-rw-r--r--source/blender/python/intern/bpy_operator_wrap.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c
index 27da839960b..6d16896fb16 100644
--- a/source/blender/python/intern/bpy_operator_wrap.c
+++ b/source/blender/python/intern/bpy_operator_wrap.c
@@ -45,9 +45,6 @@ static void operator_properties_init(wmOperatorType *ot)
PyErr_Print(); /* failed to register operator props */
PyErr_Clear();
}
-
- // see bpy_types.py:Operator, May redo this some other way!
- PyObject_CallMethod(py_class, "easy_getsets", NULL);
}
void operator_wrapper(wmOperatorType *ot, void *userdata)