Changes between Initial Version and Version 1 of Ticket #18553, comment 4


Ignore:
Timestamp:
Jun 29, 2013, 6:39:15 AM (11 years ago)
Author:
fred

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18553, comment 4

    initial v1  
    1919The behavior is as follows:
    2020
    21 * When this view is called with a POST of type application/x-www-form-urlencoded, it returns "False" (the POST is mutable).
     21* When this view is called with a POST of type application/x-www-form-urlencoded, it returns "False" (the POST is immutable).
    2222* When this view is called with a POST of type multipart/form-data POST, it returns "True".
    2323* Likewise, when calling the view through `self.client.post('/view')`, it returns "True".  This confirms that the bug may lead to code that passes tests and fails in production.
Back to Top