Commit dc07dbcc authored by Denis Bilenko's avatar Denis Bilenko

core: add get_header_version()

parent c99aebed
...@@ -2,6 +2,7 @@ cimport libev ...@@ -2,6 +2,7 @@ cimport libev
__all__ = ['get_version', __all__ = ['get_version',
'get_header_version',
'supported_backends', 'supported_backends',
'recommended_backends', 'recommended_backends',
'embeddable_backends', 'embeddable_backends',
...@@ -78,6 +79,10 @@ def get_version(): ...@@ -78,6 +79,10 @@ def get_version():
return 'libev-%d.%02d' % (libev.ev_version_major(), libev.ev_version_minor()) return 'libev-%d.%02d' % (libev.ev_version_major(), libev.ev_version_minor())
def get_header_version():
return 'libev-%d.%02d' % (libev.EV_VERSION_MAJOR, libev.EV_VERSION_MINOR)
# This list backends in the order they are actually tried by libev # This list backends in the order they are actually tried by libev
_flags = [(libev.EVBACKEND_PORT, 'port'), _flags = [(libev.EVBACKEND_PORT, 'port'),
(libev.EVBACKEND_KQUEUE, 'kqueue'), (libev.EVBACKEND_KQUEUE, 'kqueue'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment