Commit 5515acd6 authored by Igor Dejanovic's avatar Igor Dejanovic

Merge branch 'release/v0.7.x'

Conflicts:
	setup.cfg
	setup.py
parents f46b89cb fdfdb803
...@@ -930,7 +930,8 @@ class Parser(object): ...@@ -930,7 +930,8 @@ class Parser(object):
self.line_ends = [] self.line_ends = []
self.input = _input self.input = _input
self.parser_model.clear_cache() self.parser_model.clear_cache()
self.comments_model.clear_cache() if self.comments_model:
self.comments_model.clear_cache()
self.parse_tree = self._parse() self.parse_tree = self._parse()
# In debug mode export parse tree to dot file for # In debug mode export parse tree to dot file for
......
...@@ -49,7 +49,7 @@ setup( ...@@ -49,7 +49,7 @@ setup(
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python'
] ]
) )
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