aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/python.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/target/python.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/target/python.lux b/stdlib/source/library/lux/target/python.lux
index 369cbfd92..8ab7a88ec 100644
--- a/stdlib/source/library/lux/target/python.lux
+++ b/stdlib/source/library/lux/target/python.lux
@@ -25,7 +25,7 @@
["n" nat]
["f" frac]]]
[type
- [abstract "*"]]]])
+ [primitive "*"]]]])
(def: input_separator
", ")
@@ -57,7 +57,7 @@
(|>> (format \n+)
(text.replaced text.new_line nested_new_line)))))
-(abstract: .public (Code brand)
+(primitive: .public (Code brand)
Text
(implementation: .public equivalence
@@ -82,7 +82,7 @@
(template [<type> <super>]
[(with_expansions [<brand> (template.symbol [<type> "'"])]
- (`` (abstract: (<brand> brand) Any))
+ (`` (primitive: (<brand> brand) Any))
(`` (type: .public (<type> brand)
(<super> (<brand> brand)))))]
@@ -95,7 +95,7 @@
(template [<type> <super>]
[(with_expansions [<brand> (template.symbol [<type> "'"])]
- (`` (abstract: <brand> Any))
+ (`` (primitive: <brand> Any))
(`` (type: .public <type> (<super> <brand>))))]
[Literal Computation]
@@ -104,7 +104,7 @@
)
(template [<var> <brand>]
- [(abstract: .public <brand> Any)
+ [(primitive: .public <brand> Any)
(type: .public <var> (Var <brand>))]