2012-06-09 | Paul Boddie | raw files shortlog changelog graph | Removed whitespace after unary operators. | |
micropython/report.py (file) |
1.1 --- a/micropython/report.py Sat Jun 09 02:01:56 2012 +0200 1.2 +++ b/micropython/report.py Sat Jun 09 18:26:25 2012 +0200 1.3 @@ -898,7 +898,7 @@ 1.4 1.5 def _visitUnary(self, node, name, symbol): 1.6 self._span_start(name) 1.7 - self._op(symbol, name) 1.8 + self._op(symbol, name, trailing=0) 1.9 self.dispatch(node.expr) 1.10 self._span_end() 1.11