mirror of https://github.com/tc39/test262.git
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)
|