Searched refs:python_version (Results 1 – 25 of 28) sorted by relevance
12
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
D | tags.py | 127 def _abi3_applies(python_version: PythonVersion) -> bool: 133 return len(python_version) > 1 and tuple(python_version) >= (3, 2) 173 python_version: Optional[PythonVersion] = None, 194 if not python_version: 195 python_version = sys.version_info[:2] 200 if len(python_version) > 1: 201 abis = _cpython_abis(python_version, warn) 216 if _abi3_applies(python_version): 220 if _abi3_applies(python_version): 221 for minor_version in range(python_version[1] - 1, 1, -1): [all …]
|
D | markers.py | 186 "python_full_version": platform.python_version(),
|
/third_party/skia/third_party/externals/freetype/builds/unix/ |
D | ax_prog_python_version.m4 | 49 …python_version=`$PYTHON -V 2>&1 | $GREP "^Python " | $SED -e 's/^.* \([0-9]*\.[0-9]*\.[0-9]*\)/\1/… 51 AC_MSG_RESULT($python_version) 53 AC_SUBST([PYTHON_VERSION],[$python_version]) 55 AX_COMPARE_VERSION([$ax_python_version],[le],[$python_version],[
|
/third_party/libabigail/autoconf-archive/ |
D | ax_prog_python_version.m4 | 50 …python_version=`$PYTHON -V 2>&1 | $GREP "^Python " | $SED -e 's/^.* \([0-9]*\.[0-9]*\.[0-9]*\)/\1/… 52 AC_MSG_RESULT($python_version) 54 AC_SUBST([PYTHON_VERSION],[$python_version]) 56 AX_COMPARE_VERSION([$ax_python_version],[le],[$python_version],[
|
/third_party/mbedtls/scripts/ |
D | driver.requirements.txt | 14 Jinja2 >= 2.10.1; python_version < '3.10' 15 Jinja2 >= 2.10.3; python_version >= '3.10'
|
/third_party/benchmark/ |
D | MODULE.bazel | 17 python.toolchain(python_version = "3.9") 22 python_version = "3.9",
|
/third_party/benchmark/tools/ |
D | BUILD.bazel | 15 python_version = "PY3",
|
/third_party/icu/tools/commit-checker/ |
D | Pipfile | 11 python_version = "3"
|
/third_party/benchmark/bindings/python/google_benchmark/ |
D | BUILD | 33 python_version = "PY3",
|
/third_party/python/Lib/idlelib/ |
D | help_about.py | 6 from platform import python_version, architecture 13 version = python_version()
|
D | help.py | 29 from platform import python_version 287 HelpWindow(parent, filename, 'IDLE Help (%s)' % python_version())
|
D | pyshell.py | 40 from platform import python_version 856 shell_title = "IDLE Shell " + python_version()
|
D | editor.py | 34 _py_version = ' (%s)' % platform.python_version()
|
/third_party/node/deps/v8/tools/ |
D | callstats.py.vpython | 25 python_version: "2.7"
|
/third_party/skia/third_party/externals/angle2/ |
D | .vpython3 | 25 python_version: "3.8"
|
D | .vpython | 28 python_version: "2.7"
|
/third_party/jinja2/ |
D | setup.cfg | 89 python_version = 3.7
|
/third_party/node/deps/v8/ |
D | .vpython3 | 25 python_version: "3.8"
|
D | .vpython | 25 python_version: "2.7"
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_help_about.py | 14 from platform import python_version
|
/third_party/python/Lib/test/ |
D | test_enum.py | 14 python_version = sys.version_info[:2] variable 352 python_version >= (3, 12), 372 python_version < (3, 12), 2142 python_version == (3, 9), 2448 python_version >= (3, 12), 2470 python_version < (3, 12), 2964 python_version >= (3, 12), 2988 python_version < (3, 12), 3371 @unittest.skipUnless(python_version == (3, 8), 3380 @unittest.skipUnless(python_version >= (3, 9),
|
D | test_platform.py | 201 self.assertEqual(platform.python_version(), info[1])
|
/third_party/python/Tools/ccbench/ |
D | ccbench.py | 578 platform.python_version(),
|
/third_party/python/Doc/library/ |
D | platform.rst | 124 .. function:: python_version()
|
/third_party/python/Lib/ |
D | platform.py | 1106 def python_version(): function
|
12