diff options
author | Jason Kirtland <jek@discorporate.us> | 2007-11-18 18:19:52 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2007-11-18 18:19:52 +0000 |
commit | ea627ebe5c8c34ffc4ab5efd04a4855c9419e9c6 (patch) | |
tree | 088dba60ebe3c3ab6b9ef34e0ea9d8f7ec1e6a69 /lib/sqlalchemy/interfaces.py | |
parent | 08a434881faa14eab8f17274b97af042903eaba9 (diff) | |
download | sqlalchemy-ea627ebe5c8c34ffc4ab5efd04a4855c9419e9c6.tar.gz |
Migrated Connection.properties to Connection.info ('info' is the new standard name for user-writable property collections that came out of [ticket:573]). 'properties' is now an alias, will be removed in 0.5.
Diffstat (limited to 'lib/sqlalchemy/interfaces.py')
-rw-r--r-- | lib/sqlalchemy/interfaces.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/interfaces.py b/lib/sqlalchemy/interfaces.py index ae2aeed69..eaad25769 100644 --- a/lib/sqlalchemy/interfaces.py +++ b/lib/sqlalchemy/interfaces.py @@ -29,7 +29,7 @@ class PoolListener(object): Events also receive a ``_ConnectionRecord``, a long-lived internal ``Pool`` object that basically represents a "slot" in the connection pool. ``_ConnectionRecord`` objects have one public - attribute of note: ``properties``, a dictionary whose contents are + attribute of note: ``info``, a dictionary whose contents are scoped to the lifetime of the DB-API connection managed by the record. You can use this shared storage area however you like. @@ -51,7 +51,7 @@ class PoolListener(object): con_record The ``_ConnectionRecord`` that persistently manages the connection - + """ def checkout(self, dbapi_con, con_record, con_proxy): |