gpt4 book ai didi

python - 使用 copy_reg 处理类方法 pickle 问题

转载 作者:太空狗 更新时间:2023-10-29 20:24:39 25 4
gpt4 key购买 nike

我在处理多处理时遇到了 pickling 错误:

 from multiprocessing import Pool

def test_func(x):
return x**2

class Test:
@classmethod
def func(cls, x):
return x**2

def mp_run(n, func, args):
return Pool(n).map(func, args)

if __name__ == '__main__':
args = range(1,6)

print mp_run(5, test_func, args)
# [1, 4, 9, 16, 25]

print mp_run(5, Test.func, args)
"""
Exception in thread Thread-3:
Traceback (most recent call last):
File "/usr/lib64/python2.6/threading.py", line 532, in __bootstrap_inner
self.run()
File "/usr/lib64/python2.6/threading.py", line 484, in run
self.__target(*self.__args, **self.__kwargs)
File "/usr/lib64/python2.6/multiprocessing/pool.py", line 225, in _handle_tasks
put(task)
PicklingError: Can't pickle <type 'instancemethod'>: attribute lookup __builtin__.instancemethod failed
"""

我发现了一个有用的线程 here ,该解决方案非常适合这些“ self ”风格的实例方法,但我在将配方应用于@classmethod 时遇到了问题:

 def _pickle_method(method):
func_name = method.im_func.__name__
obj = method.im_self
cls = method.im_class
return _unpickle_method, (func_name, obj, cls)

def _unpickle_method(func_name, obj, cls):
try:
for cls in cls.mro():
try:
func = cls.__dict__[func_name]
except KeyError:
pass
else:
break
except AttributeError:
func = cls.__dict__[func_name]
return func.__get__(obj, cls)

copy_reg.pickle(MethodType, _pickle_method, _unpickle_method)
new_func = pickle.loads(pickle.dumps(Test.func))
"""
Traceback (most recent call last):
File "test3.py", line 45, in <module>
new_func = pickle.loads(pickle.dumps(Test.func))
File "/usr/lib64/python2.6/pickle.py", line 1366, in dumps
Pickler(file, protocol).dump(obj)
File "/usr/lib64/python2.6/pickle.py", line 224, in dump
self.save(obj)
File "/usr/lib64/python2.6/pickle.py", line 331, in save
self.save_reduce(obj=obj, *rv)
File "/usr/lib64/python2.6/pickle.py", line 401, in save_reduce
save(args)
File "/usr/lib64/python2.6/pickle.py", line 286, in save
f(self, obj) # Call unbound method with explicit self
File "/usr/lib64/python2.6/pickle.py", line 562, in save_tuple
save(element)
File "/usr/lib64/python2.6/pickle.py", line 286, in save
f(self, obj) # Call unbound method with explicit self
File "/usr/lib64/python2.6/pickle.py", line 748, in save_global
(obj, module, name))
pickle.PicklingError: Can't pickle <type 'classobj'>: it's not found as __builtin__.classobj
"""

有什么方法可以更改几行以使其适用于类方法?

最佳答案

我修改了配方以使其适用于类方法。这是代码。

import copy_reg
import types

def _pickle_method(method):
func_name = method.im_func.__name__
obj = method.im_self
cls = method.im_class
if func_name.startswith('__') and not func_name.endswith('__'):
#deal with mangled names
cls_name = cls.__name__.lstrip('_')
func_name = '_%s%s' % (cls_name, func_name)
return _unpickle_method, (func_name, obj, cls)

def _unpickle_method(func_name, obj, cls):
if obj and func_name in obj.__dict__:
cls, obj = obj, None # if func_name is classmethod
for cls in cls.__mro__:
try:
func = cls.__dict__[func_name]
except KeyError:
pass
else:
break
return func.__get__(obj, cls)

copy_reg.pickle(types.MethodType, _pickle_method, _unpickle_method)

关于python - 使用 copy_reg 处理类方法 pickle 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5429584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com