-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Struct class lives in _struct (#12980)
This one is an improvement on 3.9+. On 3.8, the Struct class calls itself `builtins.Struct` instead, which we can't and won't match. `struct.error` is defined in `_struct.c`, but always called itself `struct.error`. Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
- Loading branch information
1 parent
a0165ae
commit 27286c6
Showing
3 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from _typeshed import ReadableBuffer, WriteableBuffer | ||
from collections.abc import Iterator | ||
from typing import Any | ||
|
||
def pack(fmt: str | bytes, /, *v: Any) -> bytes: ... | ||
def pack_into(fmt: str | bytes, buffer: WriteableBuffer, offset: int, /, *v: Any) -> None: ... | ||
def unpack(format: str | bytes, buffer: ReadableBuffer, /) -> tuple[Any, ...]: ... | ||
def unpack_from(format: str | bytes, /, buffer: ReadableBuffer, offset: int = 0) -> tuple[Any, ...]: ... | ||
def iter_unpack(format: str | bytes, buffer: ReadableBuffer, /) -> Iterator[tuple[Any, ...]]: ... | ||
def calcsize(format: str | bytes, /) -> int: ... | ||
|
||
class Struct: | ||
@property | ||
def format(self) -> str: ... | ||
@property | ||
def size(self) -> int: ... | ||
def __init__(self, format: str | bytes) -> None: ... | ||
def pack(self, *v: Any) -> bytes: ... | ||
def pack_into(self, buffer: WriteableBuffer, offset: int, *v: Any) -> None: ... | ||
def unpack(self, buffer: ReadableBuffer, /) -> tuple[Any, ...]: ... | ||
def unpack_from(self, buffer: ReadableBuffer, offset: int = 0) -> tuple[Any, ...]: ... | ||
def iter_unpack(self, buffer: ReadableBuffer, /) -> Iterator[tuple[Any, ...]]: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,5 @@ | ||
from _typeshed import ReadableBuffer, WriteableBuffer | ||
from collections.abc import Iterator | ||
from typing import Any | ||
from _struct import * | ||
|
||
__all__ = ["calcsize", "pack", "pack_into", "unpack", "unpack_from", "iter_unpack", "Struct", "error"] | ||
|
||
class error(Exception): ... | ||
|
||
def pack(fmt: str | bytes, /, *v: Any) -> bytes: ... | ||
def pack_into(fmt: str | bytes, buffer: WriteableBuffer, offset: int, /, *v: Any) -> None: ... | ||
def unpack(format: str | bytes, buffer: ReadableBuffer, /) -> tuple[Any, ...]: ... | ||
def unpack_from(format: str | bytes, /, buffer: ReadableBuffer, offset: int = 0) -> tuple[Any, ...]: ... | ||
def iter_unpack(format: str | bytes, buffer: ReadableBuffer, /) -> Iterator[tuple[Any, ...]]: ... | ||
def calcsize(format: str | bytes, /) -> int: ... | ||
|
||
class Struct: | ||
@property | ||
def format(self) -> str: ... | ||
@property | ||
def size(self) -> int: ... | ||
def __init__(self, format: str | bytes) -> None: ... | ||
def pack(self, *v: Any) -> bytes: ... | ||
def pack_into(self, buffer: WriteableBuffer, offset: int, *v: Any) -> None: ... | ||
def unpack(self, buffer: ReadableBuffer, /) -> tuple[Any, ...]: ... | ||
def unpack_from(self, buffer: ReadableBuffer, offset: int = 0) -> tuple[Any, ...]: ... | ||
def iter_unpack(self, buffer: ReadableBuffer, /) -> Iterator[tuple[Any, ...]]: ... |