mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 22:40:28 +02:00
This script is intended to identify common test file formatting errors prior to their acceptance into the project. It is designed to support future extensions for additional validation rules.
6 lines
123 B
Python
6 lines
123 B
Python
from __future__ import print_function
|
|
import sys
|
|
|
|
def eprint(*args, **kwargs):
|
|
print(*args, file=sys.stderr, **kwargs)
|