python - fe: Use Green Trunk's new base functionality in Connectors and

From: jwp(at)pgfoundry(dot)org (James William Pye)
To: pgsql-committers(at)postgresql(dot)org
Subject: python - fe: Use Green Trunk's new base functionality in Connectors and
Date: 2006-03-19 21:02:27
Message-ID: 20060319210227.170E51033896@pgfoundry.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Use Green Trunk's new base functionality in Connectors and Fittings.

Also, get rid of the "first connection" when instantiating Connectors. This
provided some convenience by answering some questions prior to actually making
a real connection, but the overhead of that first connection creates is
fantastically undesirable, so displace the solution resolution to the actual first
connection made by the user. While this has the effect of allowing "invalid"
Connectors, it is unlikely to be a impedance on any application--unlike fc.
Additionally, it provides the user with the ability to correct connector
arguments without being forced to create another connector.

Modified Files:
--------------
fe/src:
abstract.py (r1.2 -> r1.3)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/fe/src/abstract.py.diff?r1=1.2&r2=1.3)
dbapi2.py (r1.1 -> r1.2)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/fe/src/dbapi2.py.diff?r1=1.1&r2=1.2)
tracenull.py (r1.16 -> r1.17)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/fe/src/tracenull.py.diff?r1=1.16&r2=1.17)

Browse pgsql-committers by date

  From Date Subject
Next Message Neil Conway 2006-03-19 22:22:56 pgsql: Fix a few places that were checking for the return value of
Previous Message James William Pye 2006-03-19 20:54:39 python - ip: Implement some common code in Connector and Fitting