##// END OF EJS Templates
Unbundle of all external modules....
Unbundle of all external modules. Move all libraries in external into subfolders and place a custom __init__.py into each of them. This way the system installed ones are tried first, before falling back to the bundled ones. Now every distribution can properly depend on the upstream library. (e.g. bundled libraries are not allowed in fedora) Signed-off-by: Toshio Ernie Kuratomi <toshio@fedoraproject.org> Signed-off-by: Thomas Spura <tomspur@fedoraproject.org>

File last commit:

r3408:261328d5
r3408:261328d5
Show More
__init__.py
8 lines | 304 B | text/x-python | PythonLexer
try:
from decorator import *
from decorator import getinfo, new_wrapper
# the following funcion is deprecated so using the python own one
from functools import update_wrapper
except ImportError:
from _decorator import *
from _decorator import getinfo, update_wrapper, new_wrapper