Changes between Initial Version and Version 1 of Ticket #2779
- Timestamp:
- Sep 26, 2006, 10:46:16 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2779
- Property Summary request.REQUEST doesn't support copy() method → datastructures.MergeDict needs a copy() method
-
Ticket #2779 – Description
initial v1 1 So I cann't write code like POST or GET: 1 {{{django.utils.datastructures.MergeDict}}} does not have a {{{copy()}}} method. 2 2 3 data = request.POST.copy() 4 5 data = request.REQUEST.copy() #will failed 3 {{{request.REQUEST}}} is an instance of {{{MergeDict}}}, so it's not possible to do {{{request.REQUEST.copy()}}}.