summaryrefslogtreecommitdiff
path: root/amqp/method_framing.py
Commit message (Expand)AuthorAgeFilesLines
* document memoryview usage, minor frame_writer.write_frame refactor (#384)Paul Brown2021-12-241-8/+11
* pyupgrade.Omer Katz2020-09-031-2/+2
* Happify linters.Omer Katz2020-08-311-6/+2
* Make __all__ immutable.Omer Katz2020-08-191-1/+1
* Drop Python 2.7 and 3.4 support.Omer Katz2020-08-191-5/+3
* Remove unused comment (#329)Dan Fuller2020-07-281-3/+0
* Fix buffer overflow in frame_writer after frame_max is increasedDan Fuller2020-07-251-2/+22
* Fix encoding errors (#198)Evan2018-08-131-5/+9
* Fix inconsistent frame_handler return value (#199)Evan2018-08-131-5/+7
* isort.Omer Katz2017-10-281-1/+1
* Remove LGPL headers from source files as project has since changed to BSD (#163)Adam Smith2017-08-241-14/+0
* fix for sending empty messages (addresses #151) (#154)Christian Blades2017-08-181-5/+7
* Drain events should read until message is ready (#144)Robert Kopaczewski2017-05-221-8/+12
* Use backport version of struct method on Python 2.7.5 and earlier (Issue #117)Ask Solem2016-12-141-12/+12
* Pass fmt string as a str object to struct functions (#112)Jon Dufresne2016-12-141-11/+11
* Revert "Pass fmt string as a str object to struct functions (#112)"Ask Solem2016-12-071-11/+11
* Pass fmt string as a str object to struct functions (#112)Jon Dufresne2016-11-081-11/+11
* Adds pydocstyle tox targetAsk Solem2016-10-111-1/+3
* flakesAsk Solem2016-10-061-1/+0
* Frame writer: Account for overhead when calculating frame size (Closes celery...Ask Solem2016-09-291-10/+20
* Solve unicode bugs on struct (#108)Brendan Smithyman2016-09-231-7/+7
* flakesAsk Solem2016-09-071-1/+1
* Frame_writer is no longer a generator. Closes #103Ask Solem2016-09-071-3/+2
* Argument to struct.unpack must be unicode on Python <=2.7.6Ask Solem2016-07-281-1/+1
* There is no bytes % int on python3.4Alan Justino2016-06-021-6/+6
* Mark bytes with b'...'Alan Justino2016-06-021-11/+11
* unicode_literals is breaking 2.7 testsAlan Justino2016-06-021-1/+1
* flakesAsk Solem2016-05-261-2/+2
* Fixed args packingFederico Ficarelli2016-05-231-1/+2
* Removes outdated funtests directoryAsk Solem2016-04-061-1/+1
* Fixes Python 3 bytes confusion (Closes #76, Closes #77)Ask Solem2016-01-041-1/+1
* Unit tests for amqp, with 96% coverage so farAsk Solem2015-12-071-11/+5
* flakesAsk Solem2015-09-041-3/+5
* Fixes Py3 issuesAsk Solem2015-09-041-5/+6
* frame_handler no longer coroutineAsk Solem2014-09-241-3/+5
* Refactors AMQPWriter -> frame_writerAsk Solem2014-06-051-39/+81
* Refactors MethodReader/drain_events/channel.waitAsk Solem2014-06-051-158/+49
* Always use unpack_from (no string slices) and adds amqp.spec classes referenceAsk Solem2014-06-041-11/+15
* Refactors AMQPReaderAsk Solem2014-06-041-7/+6
* Remove additional Py2.5 compatibility checksAsk Solem2014-01-131-6/+0
* Message.channel must be channel object, not id. Closes #24Ask Solem2013-10-291-1/+1
* Sets Message.channel on delivery. Closes #12Ask Solem2013-10-041-3/+5
* Add missing reference pagesAsk Solem2013-07-311-3/+1
* Avoid copy of small messagesAsk Solem2013-07-311-3/+8
* [Opt] No need to use Queue.Queue as channel not thread-safeAsk Solem2013-07-311-13/+16
* Pep8ify + cosmeticsAsk Solem2013-01-171-2/+3
* Use more str.formatAsk Solem2012-11-131-2/+2
* New exception hierarchyAsk Solem2012-11-121-2/+2
* Code now works on both Python 3 and Python 2 (not using 2to3)Ask Solem2012-11-081-5/+5
* Fixes error handling on amqp errorMher Movsisyan2012-10-171-0/+2