aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/python/pgmodule.c
diff options
context:
space:
mode:
authorD'Arcy J.M. Cain <darcy@druid.net>2002-03-26 01:50:14 +0000
committerD'Arcy J.M. Cain <darcy@druid.net>2002-03-26 01:50:14 +0000
commit102fe3f8453eaadf955cf398dcec12a9cbb3608a (patch)
treedd1e5e7498da18736036980fe3083b17a47dad81 /src/interfaces/python/pgmodule.c
parenteb32be62d4f1d8f2f0658828cd97d9015f4598b6 (diff)
downloadpostgresql-102fe3f8453eaadf955cf398dcec12a9cbb3608a.tar.gz
postgresql-102fe3f8453eaadf955cf398dcec12a9cbb3608a.zip
Further changes following discussion on INTERFACES mailing list:
- Use PyObject_Del() rather than macro version - Check version and drop back to PyMem_Del() for older systems.
Diffstat (limited to 'src/interfaces/python/pgmodule.c')
-rw-r--r--src/interfaces/python/pgmodule.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c
index a9f8023d201..7adaa93bbea 100644
--- a/src/interfaces/python/pgmodule.c
+++ b/src/interfaces/python/pgmodule.c
@@ -35,8 +35,13 @@
#include <stdlib.h>
#include <string.h>
+# PyObject_Del does not exist in older versions of Python.
+#if PY_VERSION_HEX < 0x01060000
+#define PyObject_Del(op) PyMem_Del((op))
+#endif
+
static PyObject *PGError;
-static const char *PyPgVersion = "3.3";
+static const char *PyPgVersion = "3.4 (beta)";
/* taken from fileobject.c */
#define BUF(v) PyString_AS_STRING((PyStringObject *)(v))
@@ -343,7 +348,7 @@ pgsource_dealloc(pgsourceobject * self)
PQclear(self->last_result);
Py_XDECREF(self->pgcnx);
- PyObject_DEL(self);
+ PyObject_Del(self);
}
/* closes object */
@@ -990,7 +995,7 @@ pglarge_dealloc(pglargeobject * self)
lo_close(self->pgcnx->cnx, self->lo_fd);
Py_XDECREF(self->pgcnx);
- PyObject_DEL(self);
+ PyObject_Del(self);
}
/* opens large object */
@@ -1546,7 +1551,7 @@ pg_dealloc(pgobject * self)
if (self->cnx)
PQfinish(self->cnx);
- PyObject_DEL(self);
+ PyObject_Del(self);
}
/* close without deleting */
@@ -1579,7 +1584,7 @@ pgquery_dealloc(pgqueryobject * self)
if (self->last_result)
PQclear(self->last_result);
- PyObject_DEL(self);
+ PyObject_Del(self);
}
/* resets connection */