Return a tuple containing the names of all global tasks saved in the system.
(self)
| 165 | return names |
| 166 | |
| 167 | def _task_names(self): |
| 168 | """Return a tuple containing the names of all global tasks saved in the system. |
| 169 | """ |
| 170 | err, buf = self.lib.GetSysTasks(*RetStr(default_buf_size)) |
| 171 | names = tuple(n.strip() for n in buf.split(',') if n.strip()) |
| 172 | return names |
| 173 | |
| 174 | def _channel_names(self): |
| 175 | """Return a tuple containing the names of all global channels saved in the system. |