--
Ticket URL: <https://code.djangoproject.com/ticket/21447>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
Comment:
Pull request is https://github.com/django/django/pull/1924
As it happens, even with `_mark_post_parse_error()` commented out, the
`build_request_repr` *does* correctly mark <could not parse>, *at a least*
in the parse error case I've provided, as request.POST ends up re-parsing
the request. However it's not clear if there are cases such as parse
errors that only occur when the stream has been fully or partially read
where it would simply end up repr as a blank `request.POST`. That's
difficult to replicate as you need to provide a multipart content that
contains a file field, with an invalid base64 transfer encoding. (I
havn't quite figured out how to do that.)
Given that this is clearly an erroneous commenting out, I think we clearly
need to revert it in any case.
--
Ticket URL: <https://code.djangoproject.com/ticket/21447#comment:1>
* cc: bmispelon (added)
* needs_better_patch: 0 => 1
* has_patch: 0 => 1
* severity: Normal => Release blocker
* stage: Unreviewed => Accepted
Comment:
Yes, this was clearly a mistake on my part.
The patch looks good but as you said, the included test doesn't actually
fail when `self._mark_post_parse_error()` is commented out which is kind
of a problem.
I'll try to see if I can find a way to have the test fail and if I can't,
I'll merge your pull request directly.
Thanks for catching this early.
--
Ticket URL: <https://code.djangoproject.com/ticket/21447#comment:2>
* status: new => closed
* resolution: => fixed
Comment:
In [changeset:"ceecc962ad8f6bbbc2b989aec53eee6c6cca04b9"]:
{{{
#!CommitTicketReference repository=""
revision="ceecc962ad8f6bbbc2b989aec53eee6c6cca04b9"
Fixed #21447 -- Restored code erroneously removed in
20472aa827669d2b83b74e521504e88e18d086a1.
Also added some tests for HttpRequest.__repr__.
Note that the added tests don't actually catch the accidental code
removal (see ticket) but they do cover a codepath that wasn't tested
before.
Thanks to Tom Christie for the report and the original patch.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/21447#comment:3>