wepoll 0.1.0__cp313-cp313-win32.whl → 0.1.2__cp313-cp313-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
wepoll/__init__.pxd ADDED
@@ -0,0 +1,4 @@
1
+ # You can theoretically send off _wepoll to other cython
2
+ # programs if you really wanted to however doing so may require
3
+ # you to have a copy of the C Library
4
+ from ._wepoll cimport *
wepoll/__init__.py CHANGED
@@ -1,6 +1,4 @@
1
1
  from ._wepoll import epoll
2
- from .loop import WepollEventLoop
3
- from .selector import EpollSelector
4
2
  from .flags import EPOLLERR as EPOLLERR
5
3
  from .flags import EPOLLHUP as EPOLLHUP
6
4
  from .flags import EPOLLIN as EPOLLIN
@@ -13,24 +11,26 @@ from .flags import EPOLLRDHUP as EPOLLRDHUP
13
11
  from .flags import EPOLLRDNORM as EPOLLRDNORM
14
12
  from .flags import EPOLLWRBAND as EPOLLWRBAND
15
13
  from .flags import EPOLLWRNORM as EPOLLWRNORM
16
-
14
+ from .loop import WepollEventLoop
15
+ from .selector import EpollSelector
17
16
 
18
17
  __author__ = "Vizonex"
19
- __version__ = "0.1.0"
18
+ __version__ = "0.1.2"
20
19
  __all__ = (
21
- "__author__",
22
- "__version__",
23
- "EPOLLIN",
24
- "EPOLLPRI",
25
- "EPOLLOUT",
26
20
  "EPOLLERR",
27
21
  "EPOLLHUP",
28
- "EPOLLWRNORM",
29
- "EPOLLWRBAND",
22
+ "EPOLLIN",
30
23
  "EPOLLMSG",
31
- "EPOLLRDHUP",
32
24
  "EPOLLONESHOT",
33
- "epoll",
25
+ "EPOLLOUT",
26
+ "EPOLLPRI",
27
+ "EPOLLRDHUP",
28
+ "EPOLLWRBAND",
29
+ "EPOLLWRNORM",
34
30
  "EpollSelector",
35
31
  "WepollEventLoop",
32
+ "__author__",
33
+ "__version__",
34
+ "epoll",
36
35
  )
36
+