view stubs/twisted/internet/fdesc.pyi @ 2008:51cedd7cf85c

checkpoint show data Ignore-this: 923190275e542181efe37815677c9504
author drewp@bigasterisk.com
date Mon, 10 Jun 2019 01:38:49 +0000
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): ...