fix problems with empty decorators - just '@' and nothing else

This commit is contained in:
David Halter
2013-08-16 11:04:06 +04:30
parent e63783f122
commit f76ec55786

View File

@@ -655,7 +655,8 @@ class Parser(object):
# decorator
elif tok == '@':
stmt, tok = self._parse_statement()
self._decorators.append(stmt)
if stmt is not None:
self._decorators.append(stmt)
elif tok == 'pass':
continue
elif tok == 'assert':