Opened 12 years ago

Closed 12 years ago

#19785 closed Bug (needsinfo)

Some bug

Reported by: freeq2@… Owned by: nobody
Component: HTTP handling Version: 1.5-rc-1
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

-- ascii html file , with russian value word

<form method="post" action="http://127.0.0.1:8000/">

<input type="submit" name="attr" value="привет">

</form>

--

I post this to some view, and have encoding bug.
All value letters have ord 65533,
assert 0, ord(request.POSTattr[0]) ...

I can fix this only ready raw post data,
request.read()

Change History (2)

comment:1 by anonymous, 12 years ago

post html to site, with encoding utf-8

comment:2 by Claude Paroz, 12 years ago

Resolution: needsinfo
Status: newclosed

I'm afraid the report doesn't contain enough information for us to reproduce your issue. We would need at least the full HTTP request variables, or maybe a traceback of any failure you get in your code. Maybe even a full test case?

Note: See TracTickets for help on using tickets.
Back to Top