Stores value under the specified key in the dictionary object. :param `key`: a new or existing key of the dictionary object; :param `value`: any python object;
(self, key, value)
| 59 | raise Exception("ERROR: no such key: " + str(key)) |
| 60 | |
| 61 | def Set(self, key, value): |
| 62 | ''' |
| 63 | Stores value under the specified key in the dictionary object. |
| 64 | |
| 65 | :param `key`: a new or existing key of the dictionary object; |
| 66 | :param `value`: any python object; |
| 67 | ''' |
| 68 | self._options[key] = value |
| 69 | |
| 70 | def Del(self, key): |
| 71 | ''' |
no outgoing calls
no test coverage detected