IronPython 3 compatibility

放肆的年华 提交于 2019-12-04 23:59:14

There is as far as I know no planned release date for 3.0 support in IronPython. The migration process for IronPython 2 -> IronPython 3 is the same as for CPython 2 -> CPython 3, afaik.

IronPython has one big step towards Py3k support - its strings are already unicode. Many of the native modules are already in place because they were backported to Python 2.7. The re-arranged standard library is free because it's just copied from CPython.

The time-consuming part are the parser changes such as function annotations, removed print statement, etc. It's not terribly hard, but there just aren't many people with the knowledge to do it right now and those that do are pretty short on free time to do so. We are, however, extrememly willing to get others up to speed.

The more bodies that can be thrown at it, the sooner it will get done.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!