aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/ffi.py.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/ffi.py.lux')
-rw-r--r--stdlib/source/library/lux/ffi.py.lux27
1 files changed, 0 insertions, 27 deletions
diff --git a/stdlib/source/library/lux/ffi.py.lux b/stdlib/source/library/lux/ffi.py.lux
index e35da749c..4cb39155c 100644
--- a/stdlib/source/library/lux/ffi.py.lux
+++ b/stdlib/source/library/lux/ffi.py.lux
@@ -217,28 +217,6 @@
(~+ (list#each (with_none g!temp) g!inputs)))))))))))
(syntax: .public (import: [import ..import])
- ... {.#doc (example "Easily import types, methods, functions and constants."
- ... (import: os
- ... ["[1]::[0]"
- ... ("static" F_OK ..Integer)
- ... ("static" R_OK ..Integer)
- ... ("static" W_OK ..Integer)
- ... ("static" X_OK ..Integer)
-
- ... ("static" mkdir [..String] "io" "try" "?" Any)
- ... ("static" access [..String ..Integer] "io" "try" ..Boolean)
- ... ("static" remove [..String] "io" "try" "?" Any)
- ... ("static" rmdir [..String] "io" "try" "?" Any)
- ... ("static" rename [..String ..String] "io" "try" "?" Any)
- ... ("static" listdir [..String] "io" "try" (Array ..String))])
-
- ... (import: os/path
- ... ["[1]::[0]"
- ... ("static" isfile [..String] "io" "try" ..Boolean)
- ... ("static" isdir [..String] "io" "try" ..Boolean)
- ... ("static" sep ..String)
- ... ("static" getsize [..String] "io" "try" ..Integer)
- ... ("static" getmtime [..String] "io" "try" ..Float)]))}
(with_symbols [g!temp]
(case import
{#Class [class format members]}
@@ -334,11 +312,6 @@
)))
(template: .public (lambda <inputs> <output>)
- ... {.#doc (example "Allows defining closures/anonymous-functions in the form that Python expects."
- ... "This is useful for adapting Lux functions for usage by Python code."
- ... (: ..Function
- ... (lambda [left right]
- ... (do_something (:as Foo left) (:as Bar right)))))}
[(.:as ..Function
(`` ("python function"
(~~ (template.amount <inputs>))