You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/03/16 23:48:24 UTC

svn commit: r1301810 - /subversion/trunk/notes/directory-index/dirindex.py

Author: brane
Date: Fri Mar 16 22:48:24 2012
New Revision: 1301810

URL: http://svn.apache.org/viewvc?rev=1301810&view=rev
Log:
* notex/directory-index/dirindex.py: Minor typosuction.

Modified:
    subversion/trunk/notes/directory-index/dirindex.py

Modified: subversion/trunk/notes/directory-index/dirindex.py
URL: http://svn.apache.org/viewvc/subversion/trunk/notes/directory-index/dirindex.py?rev=1301810&r1=1301809&r2=1301810&view=diff
==============================================================================
--- subversion/trunk/notes/directory-index/dirindex.py (original)
+++ subversion/trunk/notes/directory-index/dirindex.py Fri Mar 16 22:48:24 2012
@@ -161,7 +161,7 @@ class Strent(SQLobject):
 
 class Dirent(SQLobject):
     """O/R mapping for a virtual non-materialized view representing
-    a natural join of the "dirindex" and "pathindex" tables."""
+    a join of the "dirindex" and "strindex" tables."""
 
     __slots__ = ("rowid", "origin", "pathid", "version",
                  "kind", "opcode", "subtree",
@@ -329,8 +329,7 @@ class Revision(object):
         self.__created = created
         self.__author = author
         self.__log = log
-        self.__txn = None
-        self.__deferred = None
+        self.__context = None
         index.rollback()
 
     class __Context(object):