golden hour
/opt/saltstack/salt/lib/python3.10/site-packages/zmq/eventloop/minitornado
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
332 B
Del
OK
__pycache__
-
Del
OK
concurrent.py
459 B
Del
OK
ioloop.py
40.38 KB
Del
OK
log.py
181 B
Del
OK
platform
-
Del
OK
stack_context.py
12.86 KB
Del
OK
util.py
7.26 KB
Del
OK
Edit: concurrent.py
"""pyzmq does not ship tornado's futures, this just raises informative NotImplementedErrors to avoid having to change too much code. """ class NotImplementedFuture(object): def __init__(self, *args, **kwargs): raise NotImplementedError("pyzmq does not ship tornado's Futures, " "install tornado >= 3.0 for future support." ) Future = TracebackFuture = NotImplementedFuture def is_future(x): return isinstance(x, Future)
Save