equal
deleted
inserted
replaced
89 |
89 |
90 _flagserrorclass = error.RevlogError |
90 _flagserrorclass = error.RevlogError |
91 |
91 |
92 def _processflags(self, text, flags, operation, raw=False): |
92 def _processflags(self, text, flags, operation, raw=False): |
93 """deprecated entry point to access flag processors""" |
93 """deprecated entry point to access flag processors""" |
|
94 msg = ('_processflag(...) use the specialized variant') |
|
95 util.nouideprecwarn(msg, '5.2', stacklevel=2) |
94 if raw: |
96 if raw: |
95 return text, self._processflagsraw(text, flags) |
97 return text, self._processflagsraw(text, flags) |
96 elif operation == 'read': |
98 elif operation == 'read': |
97 return self._processflagsread(text, flags) |
99 return self._processflagsread(text, flags) |
98 else: # write operation |
100 else: # write operation |