diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-08-07 12:34:35 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-08-07 12:34:35 +0300 |
commit | a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d (patch) | |
tree | c04bf2434f84b6adecded34987b84d3aefa8ee92 /mparser.py | |
parent | 3e29c4fccba670c582400086b0a17963e2cebd71 (diff) | |
download | meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.zip meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.tar.gz meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.tar.bz2 |
Kill end of line whitespace dead.
Diffstat (limited to 'mparser.py')
-rw-r--r-- | mparser.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ class Token: self.lineno = lineno self.colno = colno self.value = value - + def __eq__(self, other): if isinstance(other, str): return self.tid == other @@ -273,7 +273,7 @@ class ArgumentNode(): # comparison, plus and multiplication would go here # 5 negation # 6 funcall, method call -# 7 parentheses +# 7 parentheses # 8 plain token class Parser: |