Changes between Initial Version and Version 1 of Ticket #18553, comment 4
- Timestamp:
- Jun 29, 2013, 6:39:15 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18553, comment 4
initial v1 19 19 The behavior is as follows: 20 20 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). 22 22 * When this view is called with a POST of type multipart/form-data POST, it returns "True". 23 23 * 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.