Skip to content

Commit

Permalink
pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
YoSTEALTH committed Feb 25, 2020
1 parent 283ae7f commit 3d6a7ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions liburing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
from ._liburing.lib import * # noqa
from .interface import * # noqa
from .helper import * # noqa
# note:
# - `.interface` module functions will override `lib` functions for better user experience.
# - `lib` and `ffi` is provided for those that like to tinker with cffi.
'''
This is a Python wrapper around liburing C library,
which is a helper to setup and tear-down io_uring instances.
'''
# enables `help(liburing)` to display everything
# note:
# - `.interface` module functions will override `lib` functions for better user experience.
# - `lib` and `ffi` is provided for those that like to tinker with cffi.
# - enables `help(liburing)` to display everything
__all__ = [i for i in locals().keys() if not i.startswith('_')]
__liburing__ = '0.4.0'
__version__ = '2020.2.25'

0 comments on commit 3d6a7ca

Please sign in to comment.