WeNeedAnswers
WeNeedAnswers

Reputation: 4654

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?

Upvotes: 5

Views: 241

Answers (1)

Gordon Broom
Gordon Broom

Reputation: 300

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.

Upvotes: 4

Related Questions