Mercurial > code > home > repos > light9
view stubs/twisted/internet/fdesc.pyi @ 2036:00afa5ec081a
restore more of the stats widget including the cpu/mem spinner
author | drewp@bigasterisk.com |
---|---|
date | Sat, 09 Apr 2022 11:44:57 -0700 |
parents | 4ce991cdacdb |
children |
line wrap: on
line source
# Stubs for twisted.internet.fdesc (Python 3) # # NOTE: This dynamically typed stub was automatically generated by stubgen. from typing import Any def setNonBlocking(fd: Any) -> None: ... def setBlocking(fd: Any) -> None: ... def readFromFD(fd: Any, callback: Any): ... def writeToFD(fd: Any, data: Any): ...