summaryrefslogtreecommitdiff
path: root/kombu/message.py
Commit message (Collapse)AuthorAgeFilesLines
* Removed dangerous default mutable arguments from function definitions… (#1040)Todd Cook2019-04-251-1/+2
| | | | | | * Removed dangerous default mutable arguments from function definitions where appropriate. * fixes for lint error
* Added missing comma for tuples with one element in __all__.Omer Katz2019-01-091-1/+1
|
* Used a tuple instead of a list to define __all__. (#945)Mads Jensen2018-11-121-1/+1
|
* flakesAsk Solem2016-10-271-0/+1
|
* Signature of Message is now Message(body, channel=), not Message(channel, body=)Ask Solem2016-10-271-3/+40
|
* Adds pydocstyle as a tox targetAsk Solem2016-10-111-3/+6
|
* Use Google-style docstringsAsk Solem2016-07-161-21/+17
|
* Make sure __repr__ and __str__ returns bytes on Python 2Ask Solem2016-04-111-6/+13
|
* Use unicode_litereals everywhere and updates flakeplus target to --2.7Ask Solem2016-04-061-1/+1
|
* 94% coverageAsk Solem2016-04-011-17/+17
|
* flakesAsk Solem2016-03-211-1/+1
|
* Message.ack now supports the multiple argumentAsk Solem2015-12-161-4/+4
|
* Message.decode() is now cached.Ask Solem2015-12-081-4/+12
|
* Add a more useful message __repr__Joshua Harlow2015-02-161-0/+19
| | | | | | | | | | In cases where a message is written to a log it is quite useful to have the message format itself in a somewhat useful format versus the default python repr which isn't quite useful. This commit adds such useful __repr__ and makes it so that it returns a string that has some useful information about the internals of the message (which can be handy when it is needed).
* Tests passing on py3Ask Solem2014-01-281-2/+2
|
* Message: Handle decompression and postencod errors as decode errorsAsk Solem2014-01-281-7/+26
|
* Message.reject and reject_log_error now supports a requeue argumentAsk Solem2013-10-071-5/+5
|
* Replaced StdConnectionError+StdChannelError with ↵Ask Solem2013-09-241-1/+1
| | | | amqp.ConnectionError+amqp.ChannelError
* Adds kombu.message.MessageAsk Solem2013-09-241-0/+135