This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients Olivier.Grisel, alexandre.vassalotti, pitrou, serhiy.storchaka
Date 2018-01-07.07:42:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515310949.05.0.467229070634.issue32503@psf.upfronthosting.co.za>
In-reply-to
Content
PR 5127 makes frames be created only when the size of the payload is not less than 4. Since the minimal size of 3 chunks is 3 bytes this is the absolute minimum of frame size.

It would be better to count the number of chunks instead of bytes, but this will complicate implementations, especially Python implementation.
History
Date User Action Args
2018-01-07 07:42:29serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, alexandre.vassalotti, Olivier.Grisel
2018-01-07 07:42:29serhiy.storchakasetmessageid: <1515310949.05.0.467229070634.issue32503@psf.upfronthosting.co.za>
2018-01-07 07:42:29serhiy.storchakalinkissue32503 messages
2018-01-07 07:42:28serhiy.storchakacreate