]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
formatting
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 2 Feb 2013 23:49:33 +0000 (18:49 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 2 Feb 2013 23:49:33 +0000 (18:49 -0500)
lib/sqlalchemy/dialects/firebird/kinterbasdb.py
lib/sqlalchemy/ext/hybrid.py

index 0014ae50f785180e247c6fbdd38a5129ece2543d..206dbf38b65719ed393e06ce3f13370348b9af15 100644 (file)
@@ -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,
index eb0f6abc76e2db4d913183b29f3c1e8a927c3c6a..98da5ad36682199a3d50191853e674d195d5624d 100644 (file)
@@ -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 <http://techspot.zzzeek.org/2011/10/21/hybrids-and-value-agnostic-types/>`_ - on the techspot.zzzeek.org blog
+    `Hybrids and Value Agnostic Types
+    <http://techspot.zzzeek.org/2011/10/21/hybrids-and-value-agnostic-types/>`_ -
+    on the techspot.zzzeek.org blog
 
-`Value Agnostic Types, Part II <http://techspot.zzzeek.org/2011/10/29/value-agnostic-types-part-ii/>`_ - on the techspot.zzzeek.org blog
+    `Value Agnostic Types, Part II
+    <http://techspot.zzzeek.org/2011/10/29/value-agnostic-types-part-ii/>`_ -
+    on the techspot.zzzeek.org blog
 
 .. _hybrid_transformers: