(value)
| 35 | return value |
| 36 | |
| 37 | def extract_data(value): |
| 38 | if not _check_py3() and isinstance(value,plistlib.Data): return value.data |
| 39 | return value |
| 40 | |
| 41 | def _check_py3(): |
| 42 | return sys.version_info >= (3, 0) |
nothing calls this directly
no test coverage detected