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

Commit bd0a380

Browse files
author
Ivan Butygin
authored
Add sdc_overload, sdc_overload_method, sdc_overload_attribute decorators (#375)
1 parent 76d588d commit bd0a380

6 files changed

+97
-81
lines changed

sdc/datatypes/hpat_pandas_dataframe_functions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@
3737
from numba.errors import TypingError
3838

3939
from sdc.datatypes.hpat_pandas_dataframe_types import DataFrameType
40+
from sdc.utils import sdc_overload_method
4041

4142

42-
@overload_method(DataFrameType, 'count')
43+
@sdc_overload_method(DataFrameType, 'count')
4344
def sdc_pandas_dataframe_count(self, axis=0, level=None, numeric_only=False):
4445
"""
4546
Pandas DataFrame method :meth:`pandas.DataFrame.count` implementation.

0 commit comments

Comments
 (0)