Skip to content

Commit 3d6a7ca

Browse files
committed
pre-release
1 parent 283ae7f commit 3d6a7ca

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

liburing/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
from ._liburing.lib import * # noqa
33
from .interface import * # noqa
44
from .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'

0 commit comments

Comments
 (0)