UnicodeDecodeError with non-ASCII chars in the URL
Bug #277334 reported by
Juan Pablo Scaletti
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
web.py |
Fix Released
|
High
|
Anand Chitipothu |
Bug Description
With 0.3, when I run:
import web
urls = ( '/(.*)', 'hello' )
app = web.application
class hello:
def GET(self, name):
return 'Hello ' + name + '!'
if __name__ == "__main__": app.run()
and try to use a non-ASCII char in the URL like 'http://
This doesn't happen with 0.23
Changed in webpy: | |
assignee: | nobody → anandology |
importance: | Undecided → High |
milestone: | none → 0.3 |
status: | New → Confirmed |
Changed in webpy: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
fixed.