💾 Archived View for tris.fyi › pydoc › multiprocessing.queues captured on 2023-04-26 at 13:36:44. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-01-08)

-=-=-=-=-=-=-

Back to module index

Go to module by name

multiprocessing

multiprocessing.queues

This module has no docstring.

Classes

Empty

Exception raised by Queue.get(block=0)/get_nowait().
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

Finalize


    Class which supports object finalization using weakrefs
    
cancel(self)


          Cancel finalization of the object
        
still_active(self)


          Return whether this finalizer is still waiting to invoke callback
        

Full

Exception raised by Queue.put(block=0)/put_nowait().
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

JoinableQueue

cancel_join_thread(self)
close(self)
empty(self)
full(self)
get(self, block=True, timeout=None)
get_nowait(self)
join(self)
join_thread(self)
put(self, obj, block=True, timeout=None)
put_nowait(self, obj)
qsize(self)
task_done(self)

Queue

cancel_join_thread(self)
close(self)
empty(self)
full(self)
get(self, block=True, timeout=None)
get_nowait(self)
join_thread(self)
put(self, obj, block=True, timeout=None)
put_nowait(self, obj)
qsize(self)

SimpleQueue

close(self)
empty(self)
get(self)
put(self, obj)

Functions

debug

debug(msg, *args)

info

info(msg, *args)

is_exiting

is_exiting()


      Returns true if the process is shutting down
    

register_after_fork

register_after_fork(obj, func)

Modules

collections

connection

context

errno

os

sys

threading

time

types

weakref