Go to the source code of this file.
Namespaces | |
| robotide.lib.robot.utils.platform | |
Variables | |
| string | robotide.lib.robot.utils.platform.IRONPYTHON = 'cli' |
| robotide.lib.robot.utils.platform.java_match = re.match(r'java(\d+)\.(\d+)\.(\d+)', sys.platform) | |
| robotide.lib.robot.utils.platform.JAVA_VERSION = tuple(int(i) for i in java_match.groups()) | |
| bool | robotide.lib.robot.utils.platform.JYTHON = True |
| int | robotide.lib.robot.utils.platform.PY2 = 2 |
| int | robotide.lib.robot.utils.platform.PY3 = not PY2 |
| robotide.lib.robot.utils.platform.PY_VERSION = sys.version_info[:3] | |
| string | robotide.lib.robot.utils.platform.PYPY = 'PyPy' in sys.version |
| tuple | robotide.lib.robot.utils.platform.RERAISED_EXCEPTIONS = (KeyboardInterrupt, SystemExit, MemoryError) |
| string | robotide.lib.robot.utils.platform.UNIXY = '/' |
| string | robotide.lib.robot.utils.platform.WINDOWS = not UNIXY |