mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
9 lines
159 B
Python
9 lines
159 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys
|
||
|
import json
|
||
|
|
||
|
# Try to decode line in order to ensure it is a valid JSON document
|
||
|
for line in sys.stdin:
|
||
|
json.loads(line)
|