]> gitweb.factorcode.org Git - factor.git/commitdiff
python.ffi: Disable python3
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 4 Jul 2014 01:25:22 +0000 (01:25 +0000)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 4 Jul 2014 01:25:22 +0000 (01:25 +0000)
extra/python/ffi/ffi.factor

index 4d5f382bd67b3f6d665dacb0100450def9f9201c..a6bb90c7efeae5aa7168d750d268b850b50909fb 100644 (file)
@@ -2,7 +2,8 @@ USING: alien alien.c-types alien.destructors alien.libraries alien.libraries.fin
 alien.syntax assocs kernel sequences system ;
 IN: python.ffi
 
-<< "python" { "3.0" "3" "2.7" "2.6" }
+! << "python" { "3.0" "3" "2.7" "2.6" } ! Python 3 has a different api, enable someday
+<< "python" { "2.7" "2.6" }
 os windows? [ [ [ CHAR: . = not ] filter ] map ] when
 [ "python" prepend find-library* ] map-find drop
 cdecl add-library >>