Skip to content

Commit 17c965f

Browse files
committed
Add types
1 parent 5b9cd4b commit 17c965f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/io/sas/_sas.pyi

+6
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@ from pandas.io.sas.sas7bdat import SAS7BDATReader
33
class Parser:
44
def __init__(self, parser: SAS7BDATReader) -> None: ...
55
def read(self, nrows: int) -> None: ...
6+
7+
def read_float_with_byteswap(data: bytes, byteswap: bool) -> float: ...
8+
def read_double_with_byteswap(data: bytes, byteswap: bool) -> float: ...
9+
def read_uint16_with_byteswap(data: bytes, byteswap: bool) -> int: ...
10+
def read_uint32_with_byteswap(data: bytes, byteswap: bool) -> int: ...
11+
def read_uint64_with_byteswap(data: bytes, byteswap: bool) -> int: ...

0 commit comments

Comments
 (0)