Message387035
You need to define __builtins__ in the globals dictionary.
def func(s):
return len(s)
text = "abc"
print(func(text))
FuncType = type(func)
func_globals = {"__builtins__":__builtins__.__dict__}
code = func.__code__
func2 = FuncType(code, func_globals)
print(func2(text))
works for both 3.9 and 3.10.
Cloudpickle needs to initialize the globals dict *before* creating the function. |
|
| Date |
User |
Action |
Args |
| 2021-02-15 18:02:19 | Mark.Shannon | set | recipients:
+ Mark.Shannon, vstinner, frenzy, pablogsal |
| 2021-02-15 18:02:19 | Mark.Shannon | set | messageid: <[email protected]> |
| 2021-02-15 18:02:19 | Mark.Shannon | link | issue43228 messages |
| 2021-02-15 18:02:19 | Mark.Shannon | create | |
|