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 gregory.p.smith
Recipients eng.mustafaelagamey, gregory.p.smith, orsenthil, terry.reedy
Date 2021-06-07.20:09:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623096544.37.0.202232880335.issue44334@roundup.psfhosted.org>
In-reply-to
Content
fwiw this sort of thing may be reasonable to backport to 3.9 as it is more than just a performance enhancement but also a resource consumption bug and should result in no behavior change.

"""
In case of form contain very large data ( in my case the string to parse was about 6000000 byte )
Old code use list of bytes during parsing consumes a lot of memory
New code will use bytearry , which use less memory
""" - text from the original PR
History
Date User Action Args
2021-06-07 20:09:04gregory.p.smithsetrecipients: + gregory.p.smith, terry.reedy, orsenthil, eng.mustafaelagamey
2021-06-07 20:09:04gregory.p.smithsetmessageid: <1623096544.37.0.202232880335.issue44334@roundup.psfhosted.org>
2021-06-07 20:09:04gregory.p.smithlinkissue44334 messages
2021-06-07 20:09:04gregory.p.smithcreate