This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/src/bindings/python/select.py

8 lines
164 B
Python
Raw Normal View History

import libzt
class select:
def select(self, r, w, x, timeout=None):
r, w, x = libzt.zts_py_select(self, r, w, x, timeout)
return r, w + x, []