From 41515f338ae18321c3759b8ba1eb6bb3fdd51cca Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Sun, 6 Jan 2019 00:41:50 +0100 Subject: [PATCH] Disable inline by default, due to the impact it has on WHILE/FOR loops --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 0e1b124..2be6217 100755 --- a/main.py +++ b/main.py @@ -277,7 +277,7 @@ Case insensitive. with that name). This flag works around that limitation by replacing the names of the labels in the output with unique ones. - Inline + Enable 'inline' keyword to force functions to be inlined + Inline - Enable 'inline' keyword to force functions to be inlined (EXPERIMENTAL) Deprecated / compatibility syntax extensions options: @@ -379,7 +379,7 @@ def main(argv): options = set(('extendedglobalexpr','extendedtypecast','extendedassignment', 'allowkeyconcat','allowmultistrings','processpre','warntabs','optimize', 'optsigns','optfloats','constfold','dcr','errmissingdefault', - 'listlength','listadd','inline', + 'listlength','listadd', )) assert not (options - validoptions), (u"Default options not present in"