##// END OF EJS Templates
Update pygments monkeypatch for compatibility with Pygments 2.0...
Carlos Cordoba -
Show More
@@ -24,11 +24,12 b" def get_tokens_unprocessed(self, text, stack=('root',)):"
24 24 for rexmatch, action, new_state in statetokens:
25 25 m = rexmatch(text, pos)
26 26 if m:
27 if type(action) is _TokenType:
28 yield pos, action, m.group()
29 else:
30 for item in action(self, m):
31 yield item
27 if action is not None:
28 if type(action) is _TokenType:
29 yield pos, action, m.group()
30 else:
31 for item in action(self, m):
32 yield item
32 33 pos = m.end()
33 34 if new_state is not None:
34 35 # state transition
General Comments 0
You need to be logged in to leave comments. Login now