A couple of differences which come to mind other than the main one that IronPython runs on .NET where as Python is C based: * IronPython I believe still is based on the 2.7.x version of the python language. If they have got a Python 3.x version of IronPython, it typically will be a little behind the C Python version. * Different ways of implementing threading. CPython uses a GIL where as IronPython does not. * If you want to access native code then IronPython only has ctypes, CPython has both ctypes and extensions (whether you write them directly in C or using something like cython/pyrex or swig).

It is worth noting you might be able to write code which works on either IronPython or CPython.

There probably are other differences.

Michael Whapples
On 20/09/2013 02:56, Thomas Kluyver wrote:
Hi Joe,

On 19 September 2013 18:31, BS <mcoo...@mail.com <mailto:mcoo...@mail.com>> wrote:

    what it's  different between IronPyhton and standard Python 3.3.2?
And what it's use for?

IronPython is a Python interpreter running on the .NET framework, whereas standard Python (aka CPython) is compiled from C.

cx_Freeze only works with standard Python, as far as I know.

Thomas


------------------------------------------------------------------------------
LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99!
1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint
2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack includes
Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13.
http://pubads.g.doubleclick.net/gampad/clk?id=58041151&iu=/4140/ostg.clktrk


_______________________________________________
cx-freeze-users mailing list
cx-freeze-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

------------------------------------------------------------------------------
LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99!
1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint
2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack includes
Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13. 
http://pubads.g.doubleclick.net/gampad/clk?id=58041151&iu=/4140/ostg.clktrk
_______________________________________________
cx-freeze-users mailing list
cx-freeze-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to