Changeset 3898
- Timestamp:
- 01/12/08 16:26:37 (6 months ago)
- Files:
-
- branches/1.0/CHANGELOG.txt (modified) (4 diffs)
- branches/1.0/turbogears/testutil.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/CHANGELOG.txt
r3847 r3898 3 3 4 4 5 1.0.4 :6 ------ 5 1.0.4b4 (January, xx, xxxx): 6 ---------------------------- 7 7 8 8 Changes … … 16 16 ~~~~~ 17 17 18 * Fixed teardown for SQLObject tables (#1674). 18 19 * Fixed VisitFilter when Identity is on and there are list parameters (#1622). 19 20 * Paginate does a better handling of zeroed limit, avoiding ZeroDivisionError … … 25 26 ~~~~~~~~~~~~ 26 27 27 Toshio Kuratomi, Christoph Zwerschke, Jan ONDREJ (SAL).28 Florent Aide, Toshio Kuratomi, Jan ONDREJ (SAL), Matt Wilson, Christoph Zwerschke. 28 29 29 30 … … 37 38 ``default_reversed`` parameter has been deprecated. It will still be used 38 39 if it is informed, but a DeprecationWarning will be displayed. 39 40 40 Changes 41 41 ~~~~~~~ branches/1.0/turbogears/testutil.py
r3758 r3898 181 181 def tearDown(self): 182 182 database.rollback_all() 183 for item in self. _get_soClasses():183 for item in self.reversed(self._get_soClasses()): 184 184 if isinstance(item, types.TypeType) and issubclass(item, 185 185 sqlobject.SQLObject) and item != sqlobject.SQLObject \