Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions sdc/extensions/indexes/range_index_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@
import operator
import pandas as pd

from numba import types, cgutils
from numba import types
from numba.core import cgutils
from numba.extending import (typeof_impl, NativeValue, intrinsic, box, unbox, lower_builtin)
from numba.typing.templates import signature
from numba.targets.imputils import impl_ret_new_ref, impl_ret_untracked, iterator_impl
from numba.core.typing.templates import signature
from numba.core.imputils import impl_ret_new_ref, impl_ret_untracked, iterator_impl

from sdc.datatypes.range_index_type import RangeIndexType, RangeIndexDataType
from sdc.datatypes.common_functions import SDCLimitation
Expand Down