Source code for pytext.common.utils

#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
from sys import stderr


[docs]def eprint(*args, **kwargs): print(file=stderr, *args, **kwargs)