|
def | __getstate__ |
|
def | __setstate__ |
|
def | __init__ |
|
def | close |
|
def | accept |
|
def | dup |
|
def | makefile |
|
|
| family = property(lambda self: self._sock.family, doc="the socket family") |
|
| type = property(lambda self: self._sock.type, doc="the socket type") |
|
| proto = property(lambda self: self._sock.proto, doc="the socket protocol") |
|
def google.appengine.dist.socket._socketobject.dup |
( |
|
self | ) |
|
dup() -> socket object
Return a new socket object connected to the same system resource.
def google.appengine.dist.socket._socketobject.makefile |
( |
|
self, |
|
|
|
mode = 'r' , |
|
|
|
bufsize = -1 |
|
) |
| |
makefile([mode[, bufsize]]) -> file object
Return a regular file object corresponding to the socket. The mode
and bufsize arguments are as for the built-in open() function.
The documentation for this class was generated from the following file:
- code/googleappengine-read-only/python/google/appengine/dist/socket.py