1lit_path_function = 2 "# Takes a path that's relative to __file__ and makes it absolute.\n" + 3 "def path(p):\n" + 4 " return os.path.abspath(os.path.join(__file__, '..', p)) if p else ''" 5
1lit_path_function = 2 "# Takes a path that's relative to __file__ and makes it absolute.\n" + 3 "def path(p):\n" + 4 " return os.path.abspath(os.path.join(__file__, '..', p)) if p else ''" 5