summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Dahlgren <bjodah@gmail.com>2018-09-29 22:58:43 +0200
committerBjörn Dahlgren <bjodah@gmail.com>2018-09-29 22:58:43 +0200
commit73b3f207701a874ff0a2dc09b19ce8109297c9a0 (patch)
treebe070434dfe538e58bb20d165ca1be06ae2d9f93
parentc9eda12b4806fba3931f7b791be7a672c92d9ca0 (diff)
downloadcython-73b3f207701a874ff0a2dc09b19ce8109297c9a0.tar.gz
Add --3str command line option to 'cython' program
-rw-r--r--Cython/Compiler/CmdLine.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Cython/Compiler/CmdLine.py b/Cython/Compiler/CmdLine.py
index ee71f235b..e89e45ab4 100644
--- a/Cython/Compiler/CmdLine.py
+++ b/Cython/Compiler/CmdLine.py
@@ -40,6 +40,8 @@ Options:
--embed[=<method_name>] Generate a main() function that embeds the Python interpreter.
-2 Compile based on Python-2 syntax and code semantics.
-3 Compile based on Python-3 syntax and code semantics.
+ --3str Compile based on Python-3 syntax and code semantics without
+ assuming unicode by default for string literals under Python 2.
--lenient Change some compile time errors to runtime errors to
improve Python compatibility
--capi-reexport-cincludes Add cincluded headers to any auto-generated header files.
@@ -151,6 +153,8 @@ def parse_command_line(args):
options.language_level = 2
elif option == '-3':
options.language_level = 3
+ elif option == '--3str':
+ options.language_level = '3str'
elif option == "--capi-reexport-cincludes":
options.capi_reexport_cincludes = True
elif option == "--fast-fail":