mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-08-28 04:10:09 -04:00
4a2049a81e
They pass fine.
9 lines
159 B
Python
Executable File
9 lines
159 B
Python
Executable File
#!/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)
|