#20570: HttpRequest.REQUEST is still mentioned in the documentation
-------------------------------------+-------------------------------------
     Reporter:  jeff.revesz@…        |                    Owner:  nobody
         Type:                       |                   Status:  closed
  Cleanup/optimization               |                  Version:  1.5
    Component:  Documentation        |               Resolution:  invalid
     Severity:  Normal               |             Triage Stage:
     Keywords:                       |  Unreviewed
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  1                    |                    UI/UX:  0
-------------------------------------+-------------------------------------

Comment (by bmispelon):

 Hi,

 It seems to be working fine for me:
 {{{
 >>> from django.test.client import RequestFactory
 >>> request = RequestFactory().get('/foo/?bar=baz')
 >>> request.GET
 <QueryDict: {'bar': ['baz']}>
 >>> request.REQUEST
 MergeDict(<QueryDict: {}>, <QueryDict: {'bar': ['baz']}>)

 }}}

 Can you provide some steps to reproduce your issue?

 Thanks.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/20570#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/082.b73585296edeb402fdfe572a2edb474e%40djangoproject.com?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to