From ab778fc86b4c15777ae04c3cec544a03c1661a92 Mon Sep 17 00:00:00 2001 From: Kai Huuhko Date: Mon, 7 Apr 2014 00:39:23 +0300 Subject: [PATCH] setup.py: Disable automatic string encoding --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 229b59c..8d77d7d 100755 --- a/setup.py +++ b/setup.py @@ -357,8 +357,8 @@ setup( ext_package = "efl", # The prefix for ext modules/packages ext_modules = cythonize(modules, include_path=["include"], compiler_directives={ - "c_string_type": "unicode", - "c_string_encoding": "utf-8", + #"c_string_type": "unicode", + #"c_string_encoding": "utf-8", "embedsignature": True, } ),