[Checkins] SVN: z3c.sqlalchemy/trunk/ dictish proxy implementation for asDict()

Andreas Jung andreas at andreas-jung.com
Mon Jan 5 05:33:54 EST 2009


Log message for revision 94529:
  dictish proxy implementation for asDict()
  

Changed:
  U   z3c.sqlalchemy/trunk/CHANGES.txt
  U   z3c.sqlalchemy/trunk/setup.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py

-=-
Modified: z3c.sqlalchemy/trunk/CHANGES.txt
===================================================================
--- z3c.sqlalchemy/trunk/CHANGES.txt	2009-01-05 10:32:48 UTC (rev 94528)
+++ z3c.sqlalchemy/trunk/CHANGES.txt	2009-01-05 10:33:54 UTC (rev 94529)
@@ -1,3 +1,8 @@
+1.3.8 (06.01.2009)
+------------------
+
+ - replace asDict() with a dictish proxy implementation
+
 1.3.7 (12.12.2008)
 ------------------
 

Modified: z3c.sqlalchemy/trunk/setup.py
===================================================================
--- z3c.sqlalchemy/trunk/setup.py	2009-01-05 10:32:48 UTC (rev 94528)
+++ z3c.sqlalchemy/trunk/setup.py	2009-01-05 10:33:54 UTC (rev 94529)
@@ -21,7 +21,7 @@
     'Topic :: Software Development :: Libraries :: Python Modules',
 ]
 
-version = '1.3.7'
+version = '1.3.8'
 
 desc = open('README.txt').read().strip()
 changes = open('CHANGES.txt').read().strip()

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py	2009-01-05 10:32:48 UTC (rev 94528)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py	2009-01-05 10:33:54 UTC (rev 94529)
@@ -135,6 +135,7 @@
         self._engine = create_engine(self.dsn, **self.engine_options)
         self._sessionmaker = scoped_session(sessionmaker(bind=self._engine, 
                                             transactional=True,
+                                            twophase=True,
                                             autoflush=True, 
                                             extension=ZopeTransactionExtension(**self.extension_options),
                                             **self.session_options



More information about the Checkins mailing list