Returns a list of collections used in this graph.
(self)
| 3985 | return c |
| 3986 | |
| 3987 | def get_all_collection_keys(self): |
| 3988 | """Returns a list of collections used in this graph.""" |
| 3989 | with self._lock: |
| 3990 | return [x for x in self._collections if isinstance(x, six.string_types)] |
| 3991 | |
| 3992 | def clear_collection(self, name): |
| 3993 | """Clears all values in a collection. |
no outgoing calls