From 20005dfdee1304e8610962e2978b1ba0e8541cd1 Mon Sep 17 00:00:00 2001 From: Catena cyber <35799796+catenacyber@users.noreply.github.com> Date: Tue, 17 Nov 2020 15:47:27 +0100 Subject: [PATCH] python: only use ascii character (#1704) Otherwise python setup.py install from bindings/python will fail with SyntaxError: Non-ASCII character '\xe2' in file setup.py on line 223, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details --- bindings/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 194b8020d..103e4637f 100755 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -219,7 +219,7 @@ Capstone offers some unparalleled features: - Having clean/simple/lightweight/intuitive architecture-neutral API. -- Provide details on disassembled instruction (called “decomposer” by others). +- Provide details on disassembled instruction (called "decomposer" by others). - Provide semantics of the disassembled instruction, such as list of implicit registers read & written.