1__all__ = ['pathForFramework', 'infoForFramework']
2#
3# TODO - I have no idea what the semantics are for GNUStep ..
4#
5from objc._framework import infoForFramework
6
7def ensure_unicode(s):
8    if isinstance(s, str):
9        return unicode(s)
10    return s
11
12def pathForFramework(path):
13    return ensure_unicode(path)
14