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 palaviv
Recipients mark.dickinson, meador.inge, palaviv
Date 2017-03-25.15:44:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490456688.43.0.618194339702.issue29903@psf.upfronthosting.co.za>
In-reply-to
Content
I would like to suggest that the struct.Struct class will support addition. For example you will be able to do:

>>> s1 = Struct(">L")
>>> s2 = Struct(">B")
>>> s3 = s1 + s2
>>> s3.format
b">LB"
History
Date User Action Args
2017-03-25 15:44:48palavivsetrecipients: + palaviv, mark.dickinson, meador.inge
2017-03-25 15:44:48palavivsetmessageid: <1490456688.43.0.618194339702.issue29903@psf.upfronthosting.co.za>
2017-03-25 15:44:48palavivlinkissue29903 messages
2017-03-25 15:44:48palavivcreate