mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 02:41:16 +08:00
Add _Pickler and _Unpickler to stdlib/pickle (#5506)
These are the pure-Python pickle implementation, and are sometimes used by code that wants to extend or override parts of the pickling/unpickling process.
This commit is contained in:
@@ -169,3 +169,6 @@ FRAME: bytes
|
||||
|
||||
def encode_long(x: int) -> bytes: ... # undocumented
|
||||
def decode_long(data: bytes) -> int: ... # undocumented
|
||||
|
||||
_Pickler = Pickler # undocumented
|
||||
_Unpickler = Unpickler # undocumented
|
||||
|
||||
Reference in New Issue
Block a user