Added list functionality to registry object (#4946)

* Added list functionality to registry object

* Fix indentation

* Punctuation fixes for comments.
This commit is contained in:
Karl Lattimer 2016-10-31 17:06:39 +00:00 committed by Vijay Vasudevan
parent 3ccdb2b695
commit 7cd00438e7

View File

@ -67,6 +67,14 @@ class Registry(object):
stack = traceback.extract_stack()
self._registry[name] = {_TYPE_TAG: candidate, _LOCATION_TAG: stack[2]}
def list(self):
"""Lists registered items.
Returns:
A list of names of registered objects.
"""
return self._registry.keys()
def lookup(self, name):
"""Looks up "name".