| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 import os.path | 3 import os.path |
| 4 import re | 4 import re |
| 5 import subprocess | 5 import subprocess |
| 6 import sys | 6 import sys |
| 7 | 7 |
| 8 from in_file import InFile | 8 from in_file import InFile |
| 9 import in_generator | 9 import in_generator |
| 10 import license | 10 import license |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 'internal_properties': '\n'.join(map(self._case_properties, filter(l
ambda property: property['is_internal'], self._properties))), | 248 'internal_properties': '\n'.join(map(self._case_properties, filter(l
ambda property: property['is_internal'], self._properties))), |
| 249 } | 249 } |
| 250 # FIXME: If we could depend on Python 2.7, we would use subprocess.check
_output | 250 # FIXME: If we could depend on Python 2.7, we would use subprocess.check
_output |
| 251 gperf_args = ['gperf', '--key-positions=*', '-P', '-D', '-n', '-s', '2'] | 251 gperf_args = ['gperf', '--key-positions=*', '-P', '-D', '-n', '-s', '2'] |
| 252 gperf = subprocess.Popen(gperf_args, stdin=subprocess.PIPE, stdout=subpr
ocess.PIPE) | 252 gperf = subprocess.Popen(gperf_args, stdin=subprocess.PIPE, stdout=subpr
ocess.PIPE) |
| 253 return gperf.communicate(gperf_input)[0] | 253 return gperf.communicate(gperf_input)[0] |
| 254 | 254 |
| 255 | 255 |
| 256 if __name__ == "__main__": | 256 if __name__ == "__main__": |
| 257 in_generator.Maker(CSSPropertiesWriter).main(sys.argv) | 257 in_generator.Maker(CSSPropertiesWriter).main(sys.argv) |
| OLD | NEW |