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-08-15 20:06:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-15 20:06:26 +0400
commit3a34d669e197b874d757a320ecae46d99714e2c2 (patch)
tree4272d4838e26b42ddd347496e314b7a6ea4b39bb
parent728b713d86e69a57aa84a9aa5ce830befec67238 (diff)
remove foreach_get/set for rna arrays, was crashing and are only valid for collections.
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index e0a684bb767..05ccabe1641 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -3130,8 +3130,6 @@ static struct PyMethodDef pyrna_prop_methods[] = {
};
static struct PyMethodDef pyrna_prop_array_methods[] = {
- {"foreach_get", (PyCFunction)pyrna_prop_foreach_get, METH_VARARGS, NULL},
- {"foreach_set", (PyCFunction)pyrna_prop_foreach_set, METH_VARARGS, NULL},
{NULL, NULL, 0, NULL}
};