##// END OF EJS Templates
dirstate: remove the interface decorator to help pytype...
Matt Harbison -
r53086:c1d7ac70 default
parent child Browse files
Show More
@@ -134,8 +134,7 b' CHANGE_TYPE_PARENTS = "parents"'
134 134 CHANGE_TYPE_FILES = "files"
135 135
136 136
137 @interfaceutil.implementer(intdirstate.idirstate)
138 class dirstate:
137 class DirState:
139 138 # used by largefile to avoid overwritting transaction callback
140 139 _tr_key_suffix = b''
141 140
@@ -1807,3 +1806,6 b' class dirstate:'
1807 1806 entry = self.get_entry(f)
1808 1807 if not entry.p1_tracked:
1809 1808 yield missing_from_ds % (f, node.short(p1))
1809
1810
1811 dirstate = interfaceutil.implementer(intdirstate.idirstate)(DirState)
General Comments 0
You need to be logged in to leave comments. Login now