Home | History | Annotate | Download | only in python_gflags

Lines Matching refs:mcs

1998   def __call__(mcs, *args, **kwargs):
2003 for mcs with the same set of arguments exists, this instance is
2018 return type.__call__(mcs, *args, **kwargs)
2020 instances = mcs._instances
2021 key = (mcs,) + tuple(args)
2026 return instances.setdefault(key, type.__call__(mcs, *args))
2030 return type.__call__(mcs, *args)