(value)
| 31 | ### ### |
| 32 | |
| 33 | def wrap_data(value): |
| 34 | if not _check_py3(): return plistlib.Data(value) |
| 35 | return value |
| 36 | |
| 37 | def extract_data(value): |
| 38 | if not _check_py3() and isinstance(value,plistlib.Data): return value.data |
nothing calls this directly
no test coverage detected