vote up 0 vote down star

How to get IronPython compiler version at runtime (interactive session)?

flag

0% accept rate

1 Answer

vote up 4 vote down

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)'
link|flag
Thank you very much! – Vladimir Aks Oct 30 at 5:23
You could thank me by accepting my answer :P – Dana Oct 30 at 14:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.