diff options
Diffstat (limited to 'src/greenlet/__init__.py')
| -rw-r--r-- | src/greenlet/__init__.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/greenlet/__init__.py b/src/greenlet/__init__.py new file mode 100644 index 0000000..7e9142f --- /dev/null +++ b/src/greenlet/__init__.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +""" +The root of the greenlet package. +""" +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +# TODO: Define a correct __all__ +# pylint:disable=unused-import +# TODO: Move the definition of __version__ here, instead of the +# C code. zest.releaser will find it here, but not in C. + +from ._greenlet import * # pylint:disable=wildcard-import +from ._greenlet import __version__ +from ._greenlet import _C_API # pylint:disable=no-name-in-module |
