summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD'Arcy J.M. Cain2001-06-20 11:20:34 +0000
committerD'Arcy J.M. Cain2001-06-20 11:20:34 +0000
commit588463a449e70aff33d799b5c9475ab94fbdf4c9 (patch)
treed68b152491fa4128ef3d989a42602f1435d1b6e6
parent54e374c9e61b83e69801b682e8cb5581f643a92a (diff)
Make sure that everything says version 3.2.
-rw-r--r--src/interfaces/python/ChangeLog1
-rw-r--r--src/interfaces/python/README2
-rw-r--r--src/interfaces/python/pgmodule.c2
3 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/python/ChangeLog b/src/interfaces/python/ChangeLog
index 55309937e8..b61f7ca42c 100644
--- a/src/interfaces/python/ChangeLog
+++ b/src/interfaces/python/ChangeLog
@@ -9,6 +9,7 @@ Version 3.2
- Add WIN32 support ([email protected])
- Fix some DB-API quoting problems ([email protected])
- Moved development into PostgreSQL development tree.
+ - Added NUMERICOID to list of returned types.
Version 3.1
- Fix some quoting functions. In particular handle NULLs better.
diff --git a/src/interfaces/python/README b/src/interfaces/python/README
index 0aae21c83b..48ab721100 100644
--- a/src/interfaces/python/README
+++ b/src/interfaces/python/README
@@ -64,7 +64,7 @@ based on the PyGres95 code written by Pascal Andre, [email protected].
I changed the version to 2.0 and updated the code for Python 1.5 and
PostgreSQL 6.2.1. While I was at it I upgraded the code to use full ANSI
style prototypes and changed the order of arguments to connect. The latest
-version of PyGreSQL works with PostgreSQL 6.5 and Python 1.5.2.
+version of PyGreSQL works with PostgreSQL 7.1.2 and Python 2.0.
1.2. Distribution files
diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c
index 71ed7569f9..278d4124aa 100644
--- a/src/interfaces/python/pgmodule.c
+++ b/src/interfaces/python/pgmodule.c
@@ -46,7 +46,7 @@
#define NUMERICOID 1700
static PyObject *PGError;
-static const char *PyPgVersion = "3.1";
+static const char *PyPgVersion = "3.2";
/* taken from fileobject.c */
#define BUF(v) PyString_AS_STRING((PyStringObject *)(v))