a close reading of the pickle module (#12971)

This commit is contained in:
Stephen Morton
2024-12-03 20:03:54 -08:00
committed by GitHub
parent 7fbb5fe32b
commit fe26deaee6
5 changed files with 159 additions and 94 deletions

View File

@@ -1,12 +1,12 @@
import pickle
import sys
from _pickle import _ReducedType
from _typeshed import HasFileno, SupportsWrite, Unused
from abc import ABCMeta
from builtins import type as Type # alias to avoid name clash
from collections.abc import Callable
from copyreg import _DispatchTableType
from multiprocessing import connection
from pickle import _ReducedType
from socket import socket
from typing import Any, Final