We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b9cd4b commit 17c965fCopy full SHA for 17c965f
pandas/io/sas/_sas.pyi
@@ -3,3 +3,9 @@ from pandas.io.sas.sas7bdat import SAS7BDATReader
3
class Parser:
4
def __init__(self, parser: SAS7BDATReader) -> None: ...
5
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