]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/python/python.factor
core: Add the shuffler words but without primitives.
[factor.git] / extra / python / python.factor
index 12e92a8c790f32b6f231b212398fa1a101d9d53b..73950c89331925cf5b51c52bb265ae5427af8b15 100644 (file)
@@ -109,7 +109,7 @@ ERROR: missing-type type ;
 ! Callbacks
 : quot>py-callback ( quot: ( args kw -- ret ) -- alien )
     '[
-        [ nip ] dip
+        nipd
         [ [ py> ] [ { } ] if* ] bi@ @ >py
     ] PyCallback ; inline