pgsql: Allow configure to deal with Python 3.0.

From: petere(at)postgresql(dot)org (Peter Eisentraut)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Allow configure to deal with Python 3.0.
Date: 2009-01-04 00:54:15
Message-ID: 20090104005415.4DF5B754A03@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Allow configure to deal with Python 3.0. Changes were:

print foo --> print(foo)
string.join(...) --> ' '.join(...)

These changes are backward compatible.

The actual plpython module appears to need significant updates to support
Python 3.0, though. This change just relieves interested developers from
having to deal with Autoconf.

Modified Files:
--------------
pgsql:
configure (r1.618 -> r1.619)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/configure?r1=1.618&r2=1.619)
pgsql/config:
python.m4 (r1.14 -> r1.15)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/config/python.m4?r1=1.14&r2=1.15)

Browse pgsql-committers by date

  From Date Subject
Next Message User Hinoue 2009-01-04 02:40:04 psqlodbc - psqlodbc: 1.Take domain types into account in SQLColumns()
Previous Message Tom Lane 2009-01-03 20:03:08 pgsql: Allow loadable modules to create PGC_POSTMASTER GUC variables,