CrocoDuck added the comment:
Hi, I somehow missed the other issue while searching for something
similar to this, sorry about that.
The main issue is that files pickled with python 3.9.0 cannot be read
back by using python 3.9.0 if they contain a `uname_result` object.
As for expecting
New submission from CrocoDuck :
See the code example below.
```python
import platform
import pickle
pack = {
'uname_result': platform.uname()
}
with open('test.pickle', 'wb') as f:
pickle.dump(pack, f, protocol=pickle.HIGHEST_PROTOCOL)
with open('