Пример #1
0
 def _update_inplace(self, result, **kwargs):
     raise AbstractMethodError(self)
Пример #2
0
 def aggregate(self, func, *args, **kwargs):
     raise AbstractMethodError(self)
Пример #3
0
 def _sub_datelike(self, other):
     raise AbstractMethodError(self)
Пример #4
0
 def __next__(self):
     raise AbstractMethodError(self)
Пример #5
0
 def _format_axes(self):
     raise AbstractMethodError(self)
Пример #6
0
 def _format_footer(self):
     raise AbstractMethodError(self)
Пример #7
0
 def _formatter_func(self):
     raise AbstractMethodError(self)
Пример #8
0
 def aggregate(self, func, *args, **kwargs):
     # type: (SelectionFunction, *Any, **Any) -> Any
     raise AbstractMethodError(self)
Пример #9
0
 def _make_accessor(cls, data):
     raise AbstractMethodError("_make_accessor should be implemented"
                               "by subclass and return an instance"
                               "of `cls`.")
Пример #10
0
 def float_precision_choices(self):
     raise AbstractMethodError(self)
Пример #11
0
 def read(self, path, columns=None, **kwargs):
     raise AbstractMethodError(self)
Пример #12
0
 def write(self, df, path, compression, **kwargs):
     raise AbstractMethodError(self)
Пример #13
0
 def __unicode__(self):
     # type: () -> Text
     raise AbstractMethodError(self)
Пример #14
0
 def __unicode__(self):
     raise AbstractMethodError(self)
Пример #15
0
 def _try_convert_dates(self):
     raise AbstractMethodError(self)
Пример #16
0
 def _box_func(self):
     """
     box function to get object from internal representation
     """
     raise AbstractMethodError(self)
Пример #17
0
 def _update_inplace(self, result, **kwargs):
     # type: (Any, **Any) -> Any
     raise AbstractMethodError(self)