File tree Expand file tree Collapse file tree 2 files changed +0
-28
lines changed
com.oracle.graal.python.test/src/tests
com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 2 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,3 @@ def storage_to_native(s):
45
45
assert hasattr (__graalpython__ , 'storage_to_native' ), "Needs to be run with --python.EnableDebuggingBuiltins"
46
46
__graalpython__ .storage_to_native (s )
47
47
48
-
49
- def storage_to_arrow (s ):
50
- if sys .implementation .name == 'graalpy' :
51
- assert hasattr (__graalpython__ , 'storage_to_arrow' )
52
- __graalpython__ .storage_to_arrow (s )
Original file line number Diff line number Diff line change @@ -848,29 +848,6 @@ Object toNative(PSequence sequence) {
848
848
}
849
849
}
850
850
851
- @ Builtin (name = "storage_to_arrow" , minNumOfPositionalArgs = 1 )
852
- @ GenerateNodeFactory
853
- abstract static class StorageToArrow extends PythonUnaryBuiltinNode {
854
-
855
- @ Specialization
856
- static Object doArray (PArray array ,
857
- @ Shared @ Cached ToArrowStorageNode toArrowStorageNode ,
858
- @ Bind ("this" ) Node inliningTarget ) {
859
- ArrowSequenceStorage newStorage = toArrowStorageNode .execute (inliningTarget , array .getSequenceStorage ());
860
- array .setSequenceStorage (newStorage );
861
- return array ;
862
- }
863
-
864
- @ Specialization
865
- Object doSequence (PSequence sequence ,
866
- @ Shared @ Cached ToArrowStorageNode toArrowStorageNode ,
867
- @ Bind ("this" ) Node inliningTarget ) {
868
- ArrowSequenceStorage newStorage = toArrowStorageNode .execute (inliningTarget , sequence .getSequenceStorage ());
869
- sequence .setSequenceStorage (newStorage );
870
- return sequence ;
871
- }
872
- }
873
-
874
851
@ Builtin (name = J_EXTEND , minNumOfPositionalArgs = 1 , doc = "Extends Java class and return HostAdapterCLass" )
875
852
@ GenerateNodeFactory
876
853
public abstract static class JavaExtendNode extends PythonUnaryBuiltinNode {
You can’t perform that action at this time.
0 commit comments