Dummy method that does nothing for Void objects.
(self, value: Any)
| 117 | return 0 |
| 118 | |
| 119 | def write(self, value: Any) -> None: |
| 120 | """Dummy method that does nothing for Void objects.""" |
| 121 | raise TypeError("Cannot write data to a void, recast as another object") |
| 122 | |
| 123 | |
| 124 | class Function(interfaces.objects.ObjectInterface): |
no outgoing calls