(self, object_name, match=None)
| 134 | self.log.error('[!] can only store first-class objects: %s' % e) |
| 135 | |
| 136 | async def locate(self, object_name, match=None): |
| 137 | try: |
| 138 | return [obj for obj in self.ram[object_name] if obj.match(match)] |
| 139 | except Exception as e: |
| 140 | self.log.error('[!] LOCATE: %s' % e) |
| 141 | |
| 142 | async def search(self, value, object_name): |
| 143 | try: |
no test coverage detected