Changes between Initial Version and Version 1 of Ticket #19101


Ignore:
Timestamp:
10/10/12 16:29:17 (11 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 changed from Normal to Release blocker
    • Property Triage Stage changed from Unreviewed to Accepted
  • 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