Commit ad28ee33 authored by Igor Dejanovic's avatar Igor Dejanovic

Removed unused method

parent c66bde4b
...@@ -1340,14 +1340,6 @@ class Parser(object): ...@@ -1340,14 +1340,6 @@ class Parser(object):
self.input[self.position] in self.ws: self.input[self.position] in self.ws:
self.position += 1 self.position += 1
def _skip_comments(self):
# We do not want to recurse into parsing comments
if self.comments_model and not self.in_skip_comments:
self.in_skip_comments = True
comments = self.comments_model.parse(self)
self.in_skip_comments = False
return comments
def _nm_raise(self, *args): def _nm_raise(self, *args):
""" """
Register new NoMatch object if the input is consumed Register new NoMatch object if the input is consumed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment