Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What can be done in Cpython that can not be done in IronPython?

What can be done in Cpython that can not be done in IronPython?

like image 945
WeNeedAnswers Avatar asked Oct 15 '22 08:10

WeNeedAnswers


1 Answers

If you are writing "100% pure Python", you can do everything that CPython can do in IronPython. The problem comes in when you want to use a third-party package. Many of them will have written their performance-intensive portions in C, and rely on the Python/C API (e.g. NumPy).

As a glue language for hooking together .NET components, IronPython is great.

like image 198
Gordon Broom Avatar answered Oct 18 '22 14:10

Gordon Broom