copyreg
— Register pickle
support functions¶
Вихідний код: Lib/copyreg.py
Модуль copyreg
пропонує спосіб визначення функцій, які використовуються під час маринування конкретних об’єктів. Модулі pickle
і copy
використовують ці функції під час маринування/копіювання цих об’єктів. Модуль надає конфігураційну інформацію про конструктори об’єктів, які не є класами. Такими конструкторами можуть бути фабричні функції або екземпляри класу.
-
copyreg.
constructor
(object)¶ Оголошує object як дійсний конструктор. Якщо object не можна викликати (і, отже, недійсний як конструктор), викликає
TypeError
.
-
copyreg.
pickle
(type, function, constructor=None)¶ Declares that function should be used as a «reduction» function for objects of type type. function should return either a string or a tuple containing two or three elements.
The optional constructor parameter, if provided, is a callable object which can be used to reconstruct the object when called with the tuple of arguments returned by function at pickling time. A
TypeError
is raised if the constructor is not callable.See the
pickle
module for more details on the interface expected of function and constructor. Note that thedispatch_table
attribute of a pickler object or subclass ofpickle.Pickler
can also be used for declaring reduction functions.
приклад¶
Наведений нижче приклад показує, як зареєструвати функцію pickle і як вона буде використовуватися:
>>> import copyreg, copy, pickle
>>> class C:
... def __init__(self, a):
... self.a = a
...
>>> def pickle_c(c):
... print("pickling a C instance...")
... return C, (c.a,)
...
>>> copyreg.pickle(C, pickle_c)
>>> c = C(1)
>>> d = copy.copy(c)
pickling a C instance...
>>> p = pickle.dumps(c)
pickling a C instance...