From ef437d6584d8fd863c0dab276e5a3d4dc094767b Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 29 Aug 2021 21:59:48 -0400 Subject: De-taggification | part 0 --- lux-python/source/program.lux | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lux-python') diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux index 8049d94a6..9ee8e6d40 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -96,13 +96,13 @@ (asDouble [] double) (asString [] java/lang/String) (__nonzero__ [] boolean) - (__getitem__ [int] #try org/python/core/PyObject) - (__getitem__ #as __getitem__dict [org/python/core/PyObject] #try org/python/core/PyObject) + (__getitem__ [int] "try" org/python/core/PyObject) + (__getitem__ #as __getitem__dict [org/python/core/PyObject] "try" org/python/core/PyObject) (__len__ [] int)]) (import: org/python/core/PyFunction ["#::." - (__call__ [[org/python/core/PyObject]] #try org/python/core/PyObject)]) + (__call__ [[org/python/core/PyObject]] "try" org/python/core/PyObject)]) (import: org/python/core/ThreadState) @@ -114,8 +114,8 @@ (import: org/python/util/PythonInterpreter ["#::." (new []) - (exec [java/lang/String] #try void) - (eval [java/lang/String] #try PyObject)]) + (exec [java/lang/String] "try" void) + (eval [java/lang/String] "try" PyObject)]) (type: Translator (-> org/python/core/PyObject (Try Any))) @@ -313,7 +313,7 @@ @.python (as_is (import: (dict [] ffi.Dict)) - (import: (eval [ffi.String ffi.Dict] #try Any)) + (import: (eval [ffi.String ffi.Dict] "try" Any)) (def: host (IO (Host (_.Expression Any) (_.Statement Any))) -- cgit v1.2.3