Reputation:
How to get IronPython compiler version at runtime (interactive session)?
Upvotes: 0
Views: 1453
Reputation: 32997
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)'
Upvotes: 7