From 13ed869c6be652f0b7729cebb26583d03c7ab12a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 14 Mar 2017 13:40:14 -0400 Subject: Minimal IronPython support. IronPython is weird: 2.7.7 has "str is unicode", and unicode.encode produces unicode! f_lasti is missing, and frame globals are missing. --- coverage/env.py | 1 + 1 file changed, 1 insertion(+) (limited to 'coverage/env.py') diff --git a/coverage/env.py b/coverage/env.py index 528c774a..4699a1e5 100644 --- a/coverage/env.py +++ b/coverage/env.py @@ -17,6 +17,7 @@ if PYPY: PYPYVERSION = sys.pypy_version_info JYTHON = (platform.python_implementation() == 'Jython') +IRONPYTHON = (platform.python_implementation() == 'IronPython') # Python versions. PYVERSION = sys.version_info -- cgit v1.2.1