File: fix-non-ASCII-in-README.rst.patch

package info (click to toggle)
python-rfc3986 0.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 192 kB
  • ctags: 195
  • sloc: python: 716; makefile: 32
file content (16 lines) | stat: -rw-r--r-- 543 bytes parent folder | download
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::