ionelmc / python-tblib

Serialization library for Exceptions and Tracebacks.
BSD 2-Clause "Simplified" License
165 stars 33 forks source link

Incompatible with Python 3.8 #42

Closed jamadden closed 5 years ago

jamadden commented 5 years ago

The constructor for the CodeType changed in 3.8; to remedy that going forward, 3.8 introduced a replace() method that can be used instead.

This was reported as a bug (with corresponding PR!) against gevent's local copy of tblib in https://github.com/gevent/gevent/pull/1429 by @vstinner

ionelmc commented 5 years ago

Alright lets see if I can cherrypick that commit.

jamadden commented 5 years ago

Thanks!