From db756a59112e3fb84721cce6bf03f9e386f3e103 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 2 Feb 2013 18:49:33 -0500 Subject: [PATCH] formatting --- lib/sqlalchemy/dialects/firebird/kinterbasdb.py | 3 ++- lib/sqlalchemy/ext/hybrid.py | 10 +++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/lib/sqlalchemy/dialects/firebird/kinterbasdb.py b/lib/sqlalchemy/dialects/firebird/kinterbasdb.py index 0014ae50f7..206dbf38b6 100644 --- a/lib/sqlalchemy/dialects/firebird/kinterbasdb.py +++ b/lib/sqlalchemy/dialects/firebird/kinterbasdb.py @@ -120,7 +120,8 @@ class FBDialect_kinterbasdb(FBDialect): initialized = getattr(self.dbapi, 'initialized', None) if initialized is None: # CVS rev 1.96 changed the name of the attribute: - # http://kinterbasdb.cvs.sourceforge.net/viewvc/kinterbasdb/Kinterbasdb-3.0/__init__.py?r1=1.95&r2=1.96 + # http://kinterbasdb.cvs.sourceforge.net/viewvc/kinterbasdb/ + # Kinterbasdb-3.0/__init__.py?r1=1.95&r2=1.96 initialized = getattr(self.dbapi, '_initialized', False) if not initialized: self.dbapi.init(type_conv=type_conv, diff --git a/lib/sqlalchemy/ext/hybrid.py b/lib/sqlalchemy/ext/hybrid.py index eb0f6abc76..98da5ad366 100644 --- a/lib/sqlalchemy/ext/hybrid.py +++ b/lib/sqlalchemy/ext/hybrid.py @@ -470,11 +470,15 @@ The Hybrid Value pattern is very useful for any kind of value that may have multiple representations, such as timestamps, time deltas, units of measurement, currencies and encrypted passwords. -See Also: +.. seealso:: -`Hybrids and Value Agnostic Types `_ - on the techspot.zzzeek.org blog + `Hybrids and Value Agnostic Types + `_ - + on the techspot.zzzeek.org blog -`Value Agnostic Types, Part II `_ - on the techspot.zzzeek.org blog + `Value Agnostic Types, Part II + `_ - + on the techspot.zzzeek.org blog .. _hybrid_transformers: -- 2.47.2