1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix non-ASCII in README.rst
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2014-07-12
--- python-rfc3986-0.2.0.orig/README.rst
+++ python-rfc3986-0.2.0/README.rst
@@ -37,7 +37,7 @@ With a parsed URI you can access data ab
It can also parse URIs with unicode present::
- uni = uri_reference(b'http://httpbin.org/get?utf8=\xe2\x98\x83') # ☃
+ uni = uri_reference(b'http://httpbin.org/get?utf8=\xe2\x98\x83')
print(uni.query) # utf8=%E2%98%83
With a parsed URI you can also validate it::
|