The device name encoded in the handle.
(handle)
| 120 | |
| 121 | @staticmethod |
| 122 | def _get_device_name(handle): |
| 123 | """The device name encoded in the handle.""" |
| 124 | handle_str = compat.as_str_any(handle) |
| 125 | return pydev.canonical_name(handle_str.split(";")[-1]) |
| 126 | |
| 127 | @staticmethod |
| 128 | def _get_reader_key(handle): |
no test coverage detected