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:
Diffstat (limited to 'source/blender/python/api2_2x/vector.c')
-rw-r--r--source/blender/python/api2_2x/vector.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/api2_2x/vector.c b/source/blender/python/api2_2x/vector.c
index 765a3d6e24a..14c663434ba 100644
--- a/source/blender/python/api2_2x/vector.c
+++ b/source/blender/python/api2_2x/vector.c
@@ -39,7 +39,7 @@
static void Vector_dealloc(VectorObject *self)
{
- PyMem_DEL(self);
+ PyObject_DEL (self);
}
static PyObject *Vector_getattr(VectorObject *self, char *name)
@@ -195,7 +195,7 @@ PyTypeObject vector_Type =
{
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
- "Vector", /*tp_name*/
+ "vector", /*tp_name*/
sizeof(VectorObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
@@ -213,7 +213,7 @@ PyObject *newVectorObject(float *vec, int size)
{
VectorObject *self;
- vector_Type.ob_type = &PyType_Type;
+ vector_Type.ob_type = &PyType_Type;
self= PyObject_NEW(VectorObject, &vector_Type);