这是错误:
文件" C:\ Python33 \ Lib \ pygame__init __。py",第352行,在 copy_reg.pickle(Color,__ color_reduce,__ color_constructor)
这是来自pygame ___ init ___。py
的代码# make Colors pickleable
def __color_constructor(r,g,b,a):
return Color(r,g,b,a)
def __color_reduce(c):
assert type(c) == Color
return __color_constructor, (c.r, c.g, c.b, c.a)
copy_reg.pickle(Color, __color_reduce, __color_constructor) ## <---- this is the broken line
有人请指导我正确安装,或者帮我修复此代码?我是新手 -
提前感谢!
〜欢呼声