mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-07 04:38:46 +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)
|