Open math1um opened 3 years ago
the function definition has the following import which no longer exists in Python3:
from cStringIO import StringIO
a discussion of a replacement is here:
https://stackoverflow.com/questions/57472080/modulenotfounderror-no-module-named-cstringio
it looks like we can use:
from io import StringIO
of course, this needs to be tested!
the function definition has the following import which no longer exists in Python3:
a discussion of a replacement is here:
https://stackoverflow.com/questions/57472080/modulenotfounderror-no-module-named-cstringio
it looks like we can use:
of course, this needs to be tested!