diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-12-08 11:27:27 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-12-09 19:06:44 +0100 |
commit | a9f2655dbe8702a8f8cf700990720801aed0e138 (patch) | |
tree | bd31475286cf9b326127f4c71065371d17e78703 /hwdb/ids_parser.py | |
parent | Merge pull request #11095 from evverx/use-systemd-as-pid1-yolo (diff) | |
download | systemd-a9f2655dbe8702a8f8cf700990720801aed0e138.tar.xz systemd-a9f2655dbe8702a8f8cf700990720801aed0e138.zip |
hwdb: drop comment
Diffstat (limited to '')
-rwxr-xr-x | hwdb/ids_parser.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hwdb/ids_parser.py b/hwdb/ids_parser.py index c80d22258a..61ca0ca6e0 100755 --- a/hwdb/ids_parser.py +++ b/hwdb/ids_parser.py @@ -17,7 +17,6 @@ TAB = White('\t', exact=1).suppress() COMMENTLINE = pythonStyleComment + EOL EMPTYLINE = LineEnd() text_eol = lambda name: Regex(r'[^\n]+')(name) + EOL -# text_eol = lambda name: Word(printables + ' ' + '®üäßçõãİó ײ⁶´‐“\u200E\u200B')(name) + EOL def klass_grammar(): klass_line = Literal('C ').suppress() + NUM2('klass') + text_eol('text') |