Variables | |
| string | IRONPYTHON = 'cli' |
| java_match = re.match(r'java(\d+)\.(\d+)\.(\d+)', sys.platform) | |
| JAVA_VERSION = tuple(int(i) for i in java_match.groups()) | |
| bool | JYTHON = True |
| int | PY2 = 2 |
| int | PY3 = not PY2 |
| PY_VERSION = sys.version_info[:3] | |
| string | PYPY = 'PyPy' in sys.version |
| tuple | RERAISED_EXCEPTIONS = (KeyboardInterrupt, SystemExit, MemoryError) |
| string | UNIXY = '/' |
| string | WINDOWS = not UNIXY |
| string robotide.lib.robot.utils.platform.IRONPYTHON = 'cli' |
Definition at line 31 of file platform.py.
| robotide.lib.robot.utils.platform.java_match = re.match(r'java(\d+)\.(\d+)\.(\d+)', sys.platform) |
Definition at line 21 of file platform.py.
| tuple robotide.lib.robot.utils.platform.JAVA_VERSION = tuple(int(i) for i in java_match.groups()) |
Definition at line 24 of file platform.py.
| bool robotide.lib.robot.utils.platform.JYTHON = True |
Definition at line 23 of file platform.py.
| int robotide.lib.robot.utils.platform.PY2 = 2 |
Definition at line 29 of file platform.py.
| int robotide.lib.robot.utils.platform.PY3 = not PY2 |
Definition at line 30 of file platform.py.
| robotide.lib.robot.utils.platform.PY_VERSION = sys.version_info[:3] |
Definition at line 28 of file platform.py.
| string robotide.lib.robot.utils.platform.PYPY = 'PyPy' in sys.version |
Definition at line 32 of file platform.py.
| tuple robotide.lib.robot.utils.platform.RERAISED_EXCEPTIONS = (KeyboardInterrupt, SystemExit, MemoryError) |
Definition at line 36 of file platform.py.
| string robotide.lib.robot.utils.platform.UNIXY = '/' |
Definition at line 33 of file platform.py.
| string robotide.lib.robot.utils.platform.WINDOWS = not UNIXY |
Definition at line 34 of file platform.py.