_multiprocessing
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_multiprocessing.so
Module Docs

 
Classes
       
__builtin__.object
Connection
SemLock

 
class Connection(__builtin__.object)
    Connection type whose constructor signature is
 
    Connection(handle, readable=True, writable=True).
 
The constructor does *not* duplicate the handle.
 
  Methods defined here:
__repr__(...)
x.__repr__() <==> repr(x)
close(...)
close the connection
fileno(...)
file descriptor or handle of the connection
poll(...)
whether there is any input available to be read
recv(...)
receive a (picklable) object
recv_bytes(...)
receive byte data as a string
recv_bytes_into(...)
receive byte data into a writeable buffer-like object
returns the number of bytes read
send(...)
send a (picklable) object
send_bytes(...)
send the byte data from a readable buffer-like object

Data descriptors defined here:
closed
True if the connection is closed
readable
True if the connection is readable
writable
True if the connection is writable

Data and other attributes defined here:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class SemLock(__builtin__.object)
    Semaphore/Mutex type
 
  Methods defined here:
__enter__(...)
enter the semaphore/lock
__exit__(...)
exit the semaphore/lock
acquire(...)
acquire the semaphore/lock
release(...)
release the semaphore/lock

Data descriptors defined here:
handle
kind
maxvalue

Data and other attributes defined here:
SEM_VALUE_MAX = 32767L
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
Functions
       
address_of_buffer(...)
address_of_buffer(obj) -> int
Return address of obj assuming obj supports buffer inteface
recvfd(...)
recvfd(sockfd) -> fd
Receive a file descriptor over a unix domain socket
whose file decriptor is sockfd
sendfd(...)
sendfd(sockfd, fd) -> None
Send file descriptor given by fd over the unix domain socket
whose file decriptor is sockfd

 
Data
        flags = {'HAVE_BROKEN_SEM_GETVALUE': 1, 'HAVE_FD_TRANSFER': 1, 'HAVE_SEM_OPEN': 1}