msgpack-types 0.5.0__tar.gz → 0.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/PKG-INFO +5 -3
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/msgpack-stubs/__init__.pyi +2 -2
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/msgpack-stubs/fallback.pyi +1 -1
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/pyproject.toml +1 -1
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/LICENSE +0 -0
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/README.md +0 -0
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/msgpack-stubs/_cmsgpack.pyi +0 -0
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/msgpack-stubs/exceptions.pyi +0 -0
- {msgpack_types-0.5.0 → msgpack_types-0.7.0}/msgpack-stubs/ext.pyi +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: msgpack-types
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0
|
|
4
4
|
Summary: Type stubs for msgpack
|
|
5
|
-
Home-page: https://github.com/sbdchd/msgpack-types
|
|
6
5
|
License: Apache-2.0
|
|
6
|
+
License-File: LICENSE
|
|
7
7
|
Keywords: msgpack,types,mypy,stubs
|
|
8
8
|
Author: Steve Dignam
|
|
9
9
|
Author-email: steve@dignam.xyz
|
|
@@ -15,6 +15,8 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
18
20
|
Requires-Dist: msgpack (>=1.1.0,<1.2.0)
|
|
19
21
|
Requires-Dist: typing-extensions (>=4.6.0)
|
|
20
22
|
Project-URL: Repository, https://github.com/sbdchd/msgpack-types
|
|
@@ -24,13 +24,13 @@ version: tuple[int, int, int] = ...
|
|
|
24
24
|
__version__: str = ...
|
|
25
25
|
|
|
26
26
|
class _WriteStream(Protocol):
|
|
27
|
-
def write(self, b: bytes) -> int: ...
|
|
27
|
+
def write(self, b: bytes, /) -> int: ...
|
|
28
28
|
|
|
29
29
|
class _Stream(Protocol):
|
|
30
30
|
def read(self) -> bytes: ...
|
|
31
31
|
|
|
32
32
|
class _FileLike(Protocol):
|
|
33
|
-
def read(self, n: int) -> bytes: ...
|
|
33
|
+
def read(self, n: int, /) -> bytes: ...
|
|
34
34
|
|
|
35
35
|
def pack(
|
|
36
36
|
o: Any,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|