##// END OF EJS Templates
flagprocessors: deprecate _processflags...
marmoute -
r43150:519b4560 default
parent child Browse files
Show More
@@ -91,6 +91,8 b' class flagprocessorsmixin(object):'
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':
General Comments 0
You need to be logged in to leave comments. Login now