From 80ff1984f87dc44e984edb5b84e41f769fa64fee Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 19 Apr 2012 23:23:29 +0000 Subject: [PATCH] bmesh py api: remove bmesh.loops.index_update(), it wasn't working, as joe noticed. --- source/blender/python/bmesh/bmesh_py_types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c index c1404e7ef0a..ee91b19a5a4 100644 --- a/source/blender/python/bmesh/bmesh_py_types.c +++ b/source/blender/python/bmesh/bmesh_py_types.c @@ -2201,7 +2201,7 @@ static struct PyMethodDef bpy_bmfaceseq_methods[] = { static struct PyMethodDef bpy_bmloopseq_methods[] = { /* odd function, initializes index values */ - {"index_update", (PyCFunction)bpy_bmelemseq_index_update, METH_NOARGS, bpy_bmelemseq_index_update_doc}, + /* no: index_update() function since we cant iterate over loops */ {NULL, NULL, 0, NULL} };