1From 3d195f4f599f37c89419f1db1302f94acb38c264 Mon Sep 17 00:00:00 2001
2From: Yegor Yefremov <yegorslists@googlemail.com>
3Date: Tue, 1 Aug 2017 10:15:33 +0200
4Subject: [PATCH] Convert HISTORY.rst from UTF-8 format to ASCII
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9UTF-8 formatted file breaks installations on some systems:
10
11Traceback (most recent call last):
12  File "setup.py", line 34, in <module>
13    long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
14  File "/home/peko/autobuild/instance-1/output/target/usr/lib/python3.6/encodings/ascii.py", line 26, in decode
15    return codecs.ascii_decode(input, self.errors)[0]
16UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 1125: ordinal not in range(128)
17
18To fix this error just replace '§' with 'S' meaning 'Section'.
19
20Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
21---
22 HISTORY.rst | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/HISTORY.rst b/HISTORY.rst
26index 37b2d9c..b9310f5 100644
27--- a/HISTORY.rst
28+++ b/HISTORY.rst
29@@ -27,7 +27,7 @@ Release History
30 - HPACK now tolerates receiving multiple header table size changes in sequence,
31   rather than only one.
32 - HPACK now forbids header table size changes anywhere but first in a header
33-  block, as required by RFC 7541 § 4.2.
34+  block, as required by RFC 7541 S 4.2.
35 - Other miscellaneous performance improvements.
36
37 2.3.0 (2016-08-04)
38--
392.11.0
40
41