aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py/gflags/__init__.py
blob: fee354a3607eb552588adcb59a9fc16c0db2793f (plain)
1
2
3
4
5
6
# gflags raises DuplicateFlagError when defining default flags from packages
# with different names, so this pseudo-package must mimic the core gflags
# package name.
__name__ += ".gflags"  # i.e. "third_party.py.gflags.gflags"

from gflags import *