Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(2) | Call(1) | Derive(0) | Import(1)
@summary: Raised at runtime by a QueueWriter if a marshaller is not provided.
src/p/y/PyRQ-0.4.1/PyRQ/Core/QueueWriter/QueueWriter.py PyRQ(Download)
''' import PyRQ.Core.Errors as Errors from PyRQ.Core.Marshal.NoMarshallerError import NoMarshallerError from PyRQ.Core.Marshal.iMarshaller import iMarshaller from PyRQ.Core.QueueServer.iQueueServerDetails import iQueueServerDetails
raise Errors.ClosedError() if not marshaller: raise NoMarshallerError() if not self._quiet: sys.stderr.write("%(N)s PUT(%(B)s, %(T)s) onto target: %(G)s, data: %(D)s"%{"B":block, "T":timeout, "U":self._uuid, "G":target, "N":self._name, "D":data}) try: