Changes between Initial Version and Version 1 of Ticket #19101


Ignore:
Timestamp:
Oct 10, 2012, 11:29:17 AM (12 years ago)
Author:
Claude Paroz
Comment:

Confirmed. We missed that because currently in QueryDictTests we always assume that the input is a real string in Python 3, which is True for GET requests, but not for a POST request where the first argument passed to QueryDict is the still-encoded self.body.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19101

    • Property Severity NormalRelease blocker
    • Property Triage Stage UnreviewedAccepted
  • Ticket #19101 – Description

    initial v1  
    22I used "python3 manage.py runserver"
    33
     4{{{
    45Internal Server Error: /formtest/
    56Traceback (most recent call last):
     
    7475    return obj.encode(encoding, errors)
    7576UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-2: ordinal not in range(128)
     77}}}
Back to Top