]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
formatting
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 12 Feb 2010 20:28:23 +0000 (20:28 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 12 Feb 2010 20:28:23 +0000 (20:28 +0000)
lib/sqlalchemy/ext/serializer.py

index d40ccc9c68f87fda9c140a4c17a9fbe98947bd74..354f28c59ac54a064989abf92525976d764134c5 100644 (file)
@@ -33,13 +33,14 @@ The serializer module is only appropriate for query structures.  It is not
 needed for:
 
 * instances of user-defined classes.   These contain no references to engines, 
-sessions or expression constructs in the typical case and can be serialized directly.
+  sessions or expression constructs in the typical case and can be serialized directly.
+
 * Table metadata that is to be loaded entirely from the serialized structure (i.e. is
-not already declared in the application).   Regular pickle.loads()/dumps() can 
-be used to fully dump any ``MetaData`` object, typically one which was reflected 
-from an existing database at some previous point in time.  The serializer module
-is specifically for the opposite case, where the Table metadata is already present
- in memory.
+  not already declared in the application).   Regular pickle.loads()/dumps() can 
+  be used to fully dump any ``MetaData`` object, typically one which was reflected 
+  from an existing database at some previous point in time.  The serializer module
+  is specifically for the opposite case, where the Table metadata is already present
 in memory.
 
 """
 
@@ -151,4 +152,4 @@ def loads(data, metadata=None, scoped_session=None, engine=None):
     unpickler = Deserializer(buf, metadata, scoped_session, engine)
     return unpickler.load()
     
-    
\ No newline at end of file
+