IronPython compiler version at runtime
How to get IronPython compiler version 开发者_运维知识库at runtime (interactive session)?
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)'
精彩评论