Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit ab3a99b

Browse files
authored
delete SplitViewString (#812)
1 parent 669443c commit ab3a99b

File tree

2 files changed

+0
-89
lines changed

2 files changed

+0
-89
lines changed

sdc/datatypes/hpat_pandas_stringmethods_types.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
from numba.extending import (models, overload, register_model, make_attribute_wrapper, intrinsic)
3737
from numba.datamodel import (register_default, StructModel)
3838
from numba.typing.templates import signature
39-
from sdc.hiframes.split_impl import SplitViewStringMethodsType, StringArraySplitViewType
4039
from sdc.utilities.utils import sdc_overload
4140

4241

@@ -116,8 +115,6 @@ def _hpat_pandas_stringmethods_init_codegen(context, builder, signature, args):
116115

117116
_hpat_pandas_stringmethods_init = intrinsic(
118117
_gen_hpat_pandas_stringmethods_init(string_methods_type=StringMethodsType))
119-
_hpat_pandas_split_view_stringmethods_init = intrinsic(
120-
_gen_hpat_pandas_stringmethods_init(string_methods_type=SplitViewStringMethodsType))
121118

122119

123120
@sdc_overload(pandas.core.strings.StringMethods)
@@ -126,11 +123,6 @@ def hpat_pandas_stringmethods(obj):
126123
Special Numba procedure to overload Python type pandas.core.strings.StringMethods::ctor()
127124
with Numba registered model
128125
"""
129-
if isinstance(obj.data, StringArraySplitViewType):
130-
def hpat_pandas_split_view_stringmethods_impl(obj):
131-
return _hpat_pandas_split_view_stringmethods_init(obj)
132-
133-
return hpat_pandas_split_view_stringmethods_impl
134126

135127
def hpat_pandas_stringmethods_impl(obj):
136128
return _hpat_pandas_stringmethods_init(obj)

sdc/hiframes/split_impl.py

Lines changed: 0 additions & 81 deletions
This file was deleted.

0 commit comments

Comments
 (0)