Searched refs:python_implementation (Results 1 – 25 of 40) sorted by relevance
12
/external/python/pybind11/tests/ |
D | env.py | 9 CPYTHON = platform.python_implementation() == "CPython" 10 PYPY = platform.python_implementation() == "PyPy"
|
/external/python/cpython3/Lib/wsgiref/ |
D | simple_server.py | 17 from platform import python_implementation 24 sys_version = python_implementation() + "/" + sys.version.split()[0]
|
/external/python/cryptography/ |
D | pyproject.toml | 6 "cffi>=1.8,!=1.11.3; python_implementation != 'PyPy'",
|
D | setup.py | 49 if platform.python_implementation() == "PyPy":
|
/external/python/markupsafe/tests/ |
D | test_leak.py | 23 if platform.python_implementation() == "PyPy":
|
/external/python/markupsafe/ |
D | setup.py | 57 elif platform.python_implementation() not in {"PyPy", "Jython"}:
|
/external/python/pyasn1/pyasn1/compat/ |
D | integer.py | 12 implementation = platform.python_implementation()
|
/external/python/asn1crypto/dev/ |
D | coverage.py | 208 impl = _plat.python_implementation() 235 impl = _plat.python_implementation() 249 payload += 'PYTHON_VERSION=%s %s\n' % (_plat.python_version(), _plat.python_implementation())
|
/external/tensorflow/tools/ |
D | tf_env_collect.sh | 52 platform.python_implementation(),
|
/external/python/setuptools/setuptools/command/ |
D | install.py | 83 if platform.python_implementation() == 'IronPython':
|
/external/python/setuptools/setuptools/ |
D | monkey.py | 33 if platform.python_implementation() == "Jython":
|
/external/brotli/python/ |
D | bro.py | 30 runtime = platform.python_implementation()
|
/external/python/setuptools/setuptools/tests/ |
D | test_develop.py | 164 platform.python_implementation() == 'PyPy' and six.PY3,
|
/external/python/jinja/src/jinja2/ |
D | debug.py | 211 elif platform.python_implementation() == "PyPy":
|
/external/python/cpython3/Lib/test/ |
D | test_wsgiref.py | 16 from platform import python_implementation 123 pyver = (python_implementation() + "/" + 220 py = python_implementation().encode('ascii')
|
D | test_platform.py | 139 self.assertEqual(platform.python_implementation(), info[0])
|
/external/python/cpython2/Lib/test/ |
D | test_platform.py | 141 self.assertEqual(platform.python_implementation(), info[0])
|
D | pythoninfo.py | 143 platform.python_implementation())
|
/external/python/setuptools/pkg_resources/_vendor/packaging/ |
D | markers.py | 266 "platform_python_implementation": platform.python_implementation(),
|
/external/python/setuptools/setuptools/_vendor/packaging/ |
D | markers.py | 266 "platform_python_implementation": platform.python_implementation(),
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/ |
D | _split_definitions_test.py | 174 @unittest.skipIf(platform.python_implementation() == 'PyPy',
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | test_utils.py | 117 return platform.python_implementation() == 'PyPy'
|
/external/tensorflow/tensorflow/lite/python/ |
D | interpreter.py | 77 if platform.python_implementation() != 'CPython':
|
/external/python/pyfakefs/pyfakefs/ |
D | helpers.py | 24 IS_PYPY = platform.python_implementation() == 'PyPy'
|
/external/python/jinja/tests/ |
D | test_loader.py | 347 platform.python_implementation() == "PyPy",
|
12