How to get IronPython compiler version at runtime (interactive session)?
+5
A:
You can find out the current version via the sys module:
>>> import sys
>>> sys.version
'2.4.0 (IronPython 1.1.2 (1.1.2) on .NET 2.0.50727.3603)'
Dana
2009-10-29 14:19:43
Thank you very much!
Vladimir Aks
2009-10-30 05:23:48
You could thank me by accepting my answer :P
Dana
2009-10-30 14:00:23