IronPython is an implementation of the Python programming language targeting the .NET Framework and Mono, created by Jim Hugunin. Version 1.0 was released on September 5, 2006. Version 2.0 was released on December 10, 2008.
IronPython is written entirely in C#, although some of its code is automatically generated by a code generator written in Python.
Release 2.0, released on December 10, 2008, targets CPython 2.5. IronPython 2.0 is built on top...
more
Read article at Wikipedia
IronPython
Programming Language
Parent Language:
Similar topics in Freebase
-
PyPy
PyPy is a self-hosting interpreter for the Python programming language. PyPy was conceived as an implementation of Python written in Python, which enables Python developers to hack the implementation. This makes it easy to identify areas where it can be improved. PyPy is also more flexible and... -
ABC
ABC is an imperative general-purpose programming language and programming environment developed at CWI, Netherlands by Leo Geurts, Lambert Meertens, and Steven Pemberton. It is interactive, structured, high-level, and intended to be used instead of BASIC, Pascal, or AWK. It is not meant to be a... -
Jython
Jython, successor of JPython, is an implementation of the Python programming language written in Java. Jython programs can seamlessly import and use any Java class. Except for some standard modules, Jython programs use Java classes instead of Python modules. Jython includes almost all of the... -
Stackless Python
Stackless Python, or Stackless, is a Python programming language interpreter, so named because it avoids depending on the C call stack for its own stack. The most prominent feature of Stackless is microthreads, which avoid much of the overhead associated with usual operating system threads. In... -
RPython
RPython (restricted python) is a subset of the Python programming language that is able to be statically compiled. It was created by the PyPy project.