Ed, there's been a lot of noise in your recent commits, making it really tough to zero in on your substantive changes for review.
Did you change editors? It is probably removing whitespace at the end of some lines, which is fine I guess, but perhaps that kind of code cleanup would be best done as a separate commit? Here's an example: Ed Leafe wrote: > dabo Commit > Revision 3212 > Date: 2007-06-26 09:33:27 -0700 (Tue, 26 Jun 2007) > Author: Ed > Trac: http://svn.dabodev.com/trac/dabo/changeset/3212 > > Changed: > U trunk/dabo/db/dCursorMixin.py > > Log: > Added the _syncAuxProperties() method to ensure that the AuxCursor has the > same property settings as its main cursor. > > > Diff: > Modified: trunk/dabo/db/dCursorMixin.py > =================================================================== > --- trunk/dabo/db/dCursorMixin.py 2007-06-26 16:31:25 UTC (rev 3211) > +++ trunk/dabo/db/dCursorMixin.py 2007-06-26 16:33:27 UTC (rev 3212) > @@ -41,7 +41,7 @@ > ## call dObject's __init__, otherwise the cursor object > with > ## which we are mixed-in will take the __init__. > dObject.__init__(self, *args, **kwargs) > - > + > # Just in case this is used outside of the context of a bizobj > if not hasattr(self, "superCursor") or self.superCursor is None: > myBases = self.__class__.__bases__ > @@ -75,8 +75,8 @@ > self.nonUpdateFields = [] > # Flag that is set when the user explicitly sets the Key Field > self._keyFieldSet = False > - # Cursor that manages this cursor's SQL. Default to self; > - # in some cases, such as a single bizobj managing several > cursors, > + # Cursor that manages this cursor's SQL. Default to self; > + # in some cases, such as a single bizobj managing several > cursors, > # it will be a separate object. > self.sqlManager = self > # Attribute that holds the data of the cursor -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/dabo-dev/[EMAIL PROTECTED]
