Package coro :: Module frontdoor :: Class stdin
[hide private]
[frames] | no frames]

Class stdin

source code

object --+    
         |    
_coro.sock --+
             |
            stdin

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__dealloc__(self) source code
 
restore(self) source code
 
read(self, size)
Read data.
source code
 
write(self, data)
Write data.
source code
 
writelines(self, list) source code

Inherited from _coro.sock: __new__, __repr__, accept, accept_many, bind, close, connect, dup, fileno, get_fileno, getpeername, getsockname, getsockopt, listen, makefile, readv, recv, recv_exact, recv_into, recvfrom, recvfrom_into, send, sendall, sendto, set_reuse_addr, setsockopt, shutdown, wait_for_read, wait_for_write, writev

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]

Inherited from _coro.sock: domain, fd, orig_fd, stype

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 
x.__init__(...) initializes x; see help(type(x)) for signature
Overrides: object.__init__
(inherited documentation)

read(self, size)

source code 

Read data.

This is an alias for the recv method.

Overrides: _coro.sock.read
(inherited documentation)

write(self, data)

source code 

Write data.

This is an alias for the send method.

Overrides: _coro.sock.write
(inherited documentation)