This repository has been archived on 2024-05-09. You can view files and clone it, but cannot push or open issues/pull-requests.
ipodderx-core/objc/_gnustep.py

14 lines
308 B
Python

__all__ = ['pathForFramework', 'infoForFramework']
#
# TODO - I have no idea what the semantics are for GNUStep ..
#
from _framework import infoForFramework
def ensure_unicode(s):
if isinstance(s, str):
return unicode(s)
return s
def pathForFramework(path):
return ensure_unicode(path)