func_timeout/func_timeout/__init__.py
Tim Savannah 178da73d27 Update copyright years, version number for 4.4.0.
Update compatible python versions all the way up to 3.9
2023-04-23 04:27:55 -04:00

17 lines
593 B
Python

'''
Copyright (c) 2016, 2017, 2019, 2023 Tim Savannah All Rights Reserved.
Licensed under the Lesser GNU Public License Version 3, LGPLv3. You should have recieved a copy of this with the source distribution as
LICENSE, otherwise it is available at https://github.com/kata198/func_timeout/LICENSE
'''
__version__ = '4.4.0'
__version_tuple__ = (4, 4, 0)
__all__ = ('func_timeout', 'func_set_timeout', 'FunctionTimedOut', 'StoppableThread')
from .exceptions import FunctionTimedOut
from .dafunc import func_timeout, func_set_timeout
from .StoppableThread import StoppableThread