File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22from ._liburing .lib import * # noqa
33from .interface import * # noqa
44from .helper import * # noqa
5- # note:
6- # - `.interface` module functions will override `lib` functions for better user experience.
7- # - `lib` and `ffi` is provided for those that like to tinker with cffi.
85'''
96 This is a Python wrapper around liburing C library,
107 which is a helper to setup and tear-down io_uring instances.
118'''
12- # enables `help(liburing)` to display everything
9+ # note:
10+ # - `.interface` module functions will override `lib` functions for better user experience.
11+ # - `lib` and `ffi` is provided for those that like to tinker with cffi.
12+ # - enables `help(liburing)` to display everything
1313__all__ = [i for i in locals ().keys () if not i .startswith ('_' )]
1414__liburing__ = '0.4.0'
1515__version__ = '2020.2.25'
You can’t perform that action at this time.
0 commit comments