aboutsummaryrefslogtreecommitdiff
path: root/lux-python
diff options
context:
space:
mode:
authorEduardo Julian2021-08-29 21:59:48 -0400
committerEduardo Julian2021-08-29 21:59:48 -0400
commitef437d6584d8fd863c0dab276e5a3d4dc094767b (patch)
treee9167f045de84e7865815178e967ee85584df088 /lux-python
parentff537895fe9c24f37a0ce11b640af5d4882571a5 (diff)
De-taggification | part 0
Diffstat (limited to 'lux-python')
-rw-r--r--lux-python/source/program.lux12
1 files changed, 6 insertions, 6 deletions
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)))