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>2007-08-20 14:08:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-08-20 14:08:59 +0400
commite8c39a5864a400971891932a8580d7e0784c334d (patch)
tree78d1f832fb01dbb787e8bcfe7d9f179133729304 /source/blender/python/api2_2x/gen_utils.h
parent196a3e410458182105b0356d1f9c9230637b216f (diff)
added face sorting to mesh so you can do mesh.faces.sort(...)
uses list sorting internally so is exactly the same as list sorting.
Diffstat (limited to 'source/blender/python/api2_2x/gen_utils.h')
-rw-r--r--source/blender/python/api2_2x/gen_utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/gen_utils.h b/source/blender/python/api2_2x/gen_utils.h
index 39e3e96d9ec..f13722e03d0 100644
--- a/source/blender/python/api2_2x/gen_utils.h
+++ b/source/blender/python/api2_2x/gen_utils.h
@@ -170,6 +170,7 @@ void EXPP_allqueue(unsigned short event, short val);
/* helper to keep dictionaries from causing memory leaks */
int EXPP_dict_set_item_str( PyObject *dict, char *key, PyObject *value);
+PyObject * EXPP_PyTuple_New_Prepend(PyObject *tuple, PyObject *value);
#endif /* EXPP_gen_utils_h */