I am beating my head against the jupyter-in-IronPython brick wall. I've reached the point where jupyter_client is trying to json-encode a connection file and it's erroring out because bytes_to_str is a no-op.
IronPython 2.7.5 is almost exactly python 2.7 but one of the "almost" things is that str is unicode, to match the .NET type system. So for purposes of the unicode stuff in py3compat it is more like python 3 than 2.
I'm not at all sure how best to hack around this, if anybody more familiar with this code than I would like to make a suggestion I'm all ears. Failing that I'll submit something when I figure it out.
I am beating my head against the jupyter-in-IronPython brick wall. I've reached the point where jupyter_client is trying to json-encode a connection file and it's erroring out because bytes_to_str is a no-op.
IronPython 2.7.5 is almost exactly python 2.7 but one of the "almost" things is that str is unicode, to match the .NET type system. So for purposes of the unicode stuff in py3compat it is more like python 3 than 2.
I'm not at all sure how best to hack around this, if anybody more familiar with this code than I would like to make a suggestion I'm all ears. Failing that I'll submit something when I figure it out.