Alias of ``pop``.
(self, name)
| 67 | return list(self.keys()) |
| 68 | |
| 69 | def remove(self, name): |
| 70 | """ |
| 71 | Alias of ``pop``. |
| 72 | """ |
| 73 | self.pop(name) |
| 74 | |
| 75 | def __str__(self): |
| 76 | return "DatasetCatalog(registered datasets: {})".format(", ".join(self.keys())) |
no outgoing calls