File: lib.pyi

package info (click to toggle)
textual-fastdatatable 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,176 kB
  • sloc: python: 3,466; makefile: 29
file content (32 lines) | stat: -rw-r--r-- 979 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from . import Date32Type, Date64Type, Scalar, TimestampType

class ArrowException(Exception): ...
class ArrowInvalid(ValueError, ArrowException): ...
class ArrowMemoryError(MemoryError, ArrowException): ...
class ArrowKeyError(KeyError, Exception): ...
class ArrowTypeError(TypeError, Exception): ...
class ArrowNotImplementedError(NotImplementedError, ArrowException): ...
class ArrowCapacityError(ArrowException): ...
class ArrowIndexError(IndexError, ArrowException): ...
class ArrowSerializationError(ArrowException): ...
class ArrowCancelled(ArrowException): ...

ArrowIOError = IOError

class Date32Scalar(Scalar):
    @property
    def type(self) -> Date32Type: ...
    @property
    def value(self) -> int: ...

class Date64Scalar(Scalar):
    @property
    def type(self) -> Date64Type: ...
    @property
    def value(self) -> int: ...

class TimestampScalar(Scalar):
    @property
    def type(self) -> TimestampType: ...
    @property
    def value(self) -> int: ...