##// END OF EJS Templates
raise PIDFileError on empty PID file, not ValueError in baseapp
raise PIDFileError on empty PID file, not ValueError in baseapp

File last commit:

r3408:261328d5
r4032:b3c5b0cf
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