Home
last modified time | relevance | path

Searched +full:pypy3 +full:- +full:c (Results 1 – 21 of 21) sorted by relevance

/external/python/pybind11/include/pybind11/
Deval.h5 Copyright (c) 2016 Klemens Morgenstern <klemens.morgenstern@ed-chemnitz.de> and
9 BSD-style license that can be found in the LICENSE file.
38 /// Evaluate a string containing a single statement. Returns \c none
41 /// Evaluate a string containing a sequence of statement. Returns \c none
54 std::string buffer = "# -*- coding: utf-8 -*-\n" + (std::string) expr;
90 pybind11_fail("eval_file not supported in PyPy3. Use eval"); in eval_file()
94 pybind11_fail("eval_file not supported in PyPy3. Use eval"); in eval_file()
98 pybind11_fail("eval_file not supported in PyPy3. Use eval"); in eval_file()
/external/selinux/
D.travis.yml2 language: c
8 - clang
9 - gcc
14 - PYVER=python3.7 RUBYLIBVER=2.6
15 - PYVER=python3.7 RUBYLIBVER=2.6 TEST_FLAGS_OVERRIDE=1
16 - PYVER=python3.7 RUBYLIBVER=2.6 TEST_DEBUG=1
17 - PYVER=python3.7 RUBYLIBVER=2.6 LINKER=gold
18 - PYVER=python3.7 RUBYLIBVER=2.6 LINKER=bfd
21 - PYVER=python3.5 RUBYLIBVER=2.6
22 - PYVER=python3.6 RUBYLIBVER=2.6
[all …]
/external/python/pyasn1/
D.travis.yml5 - os: linux
8 - os: linux
11 - os: linux
14 - os: linux
17 - os: linux
20 - os: linux
23 - os: linux
26 - os: linux
30 - os: linux
33 - os: linux
[all …]
/external/python/pyopenssl/
Dtox.ini2pypy3,py27,py35,py36,py37,py38,py39}{,-cryptographyMaster,-cryptographyMinimum}{,-randomorder},py3…
14 randomorder: pytest-randomly
22 coverage run --parallel -m OpenSSL.debug
23 coverage run --parallel -m pytest -v {posargs}
25 [testenv:py37-twistedMaster]
31 python -c "import OpenSSL.SSL; print(OpenSSL.SSL.SSLeay_version(OpenSSL.SSL.SSLEAY_VERSION))"
32 python -c "import cryptography; print(cryptography.__version__)"
33 python -m twisted.trial --reporter=text twisted
42 black --check .
45 [testenv:pypi-readme]
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/docs/
DCHANGES19 *) Lifted max restrictions for pypy versions. Added pypy3 support.
43 mark (-b)
45 *) Added command line option for disabling the C implemention (-p)
56 *) Fix inconsistency between Python and C (Python implementation was buggy).
80 *) Collapsion protection was reduced to "+ +" and "- -" sequences (which
86 *) "+ ++" and "- --" sequences are no longer collapsed. They were before,
106 *) Add C extension reimplementing the regex from rjsmin.py
/external/python/mock/.circleci/
Dconfig.yml4 python: cjw296/python-ci@2
7 check-package:
15 - image: << parameters.image >>
17 - python/check-package:
20 - run:
22 command: << parameters.python >> -c "import mock"
27 - python/pip-run-tests:
30 - python/pip-run-tests:
33 - python/pip-run-tests:
36 - python/pip-run-tests:
[all …]
/external/python/dateutil/
Dtox.ini9 pypy3,
19 commands = python -m pytest {posargs: "{toxinidir}/dateutil/test" --cov-config="{toxinidir}/tox.ini…
20 deps = -rrequirements-dev.txt
30 coverage report --rcfile={toxinidir}/tox.ini
37 commands = codecov --file {toxworkdir}/coverage.xml
42 commands = python -m pip list --format=columns
43 python -c 'import sys; print(sys.executable)'
57 deps = -r {toxinidir}/requirements-dev.txt
64 description = invoke sphinx-build to build the HTML docs, check that URIs are valid
66 deps = -r docs/requirements-docs.txt
[all …]
DNEWS1 Version 2.8.0 (2019-02-04)
5 ------------
7 - Updated tzdata version to to 2018i.
11 --------
13 - Added support for ``EXDATE`` parameters when parsing ``rrule`` strings.
15 - Added support for sub-minute time zone offsets in Python 3.6+.
17 - Switched the ``tzoffset``, ``tzstr`` and ``gettz`` caches over to using weak
19 original ``tzinfo`` objects exist. This cache-expiry behavior is not
24 @cs-cordero (gh pr #672, #801), strong cache added by
29 --------
[all …]
/external/python/pybind11/docs/
Dlimitations.rst10 - pybind11 casts away ``const``-ness in function arguments and return values.
13 would be caught by the type checker in a traditional C++ program.
15 - The NumPy interface ``pybind11::array`` greatly simplifies accessing
16 numerical data from C++ (and vice versa), but it's not a full-blown array
34 - Intel 20.2 is currently having an issue with the test suite.
37 - Debug mode Python does not support 1-5 tests in the test suite currently.
40 - PyPy3 7.3.1 and 7.3.2 have issues with several tests on 32-bit Windows.
48 - Type casters are not kept alive recursively.
53 - The ``cpptest`` does not run on Windows with Python 3.8 or newer, due to DLL
71 callbacks, but only 49 are garbage collected before the end-of-process. Wheels
Dchangelog.rst11 ---------------------
33 * When casting to a C++ integer, ``__index__`` is always called and not
41 by user-set ``extra_compile_args`` and ``extra_link_args``.
47 * CMake: Support running with ``--warn-uninitialized`` active.
73 * Leave docstring unset when all docstring-related options are disabled, rather
95 'set_flag' ``[-Wshadow-field-in-constructor-modified]``.
98 * Suppressed some deprecation warnings about old-style
104 * Fix invalid access when calling a pybind11 ``__init__`` on a non-pybind11
114 * Added a Valgrind build, checking for leaks and memory-related UB, to CI.
119 * Intel compiler was not activating C++14 support due to a broken define.
[all …]
/external/python/pybind11/.github/workflows/
Dci.yml8 - master
9 - stable
10 - v*
17 fail-fast: false
19 runs-on: [ubuntu-latest, windows-latest, macos-latest]
21 - 2.7
22 - 3.5
23 - 3.6
24 - 3.9
25 # - 3.10-dev # Re-enable once 3.10.0a5 is released
[all …]
/external/python/pyfakefs/docs/
Dintro.rst10 (MacOS), and with PyPy3.
15 ------------
30 --------
31 - Code executed under pyfakefs works transparently on a memory-based file
36 - pyfakefs provides direct support for `unittest` (via a `TestCase` base
40 - Each pyfakefs test starts with an empty file system, but it is possible to
44 - No files in the real file system are changed during the tests, even in the
47 - pyfakefs keeps track of the filesystem size if configured. The file system
50 - pyfakefs defaults to the OS it is running on, but can also be configured
53 - pyfakefs can be configured to behave as if running as a root or as a
[all …]
/external/python/pyfakefs/
DREADME.md26 supporting Python 2.6, and for the old-style API (which is still
47 (MacOS), and with PyPy3.
51 pyfakefs will not work with Python libraries that use C libraries to access the
52 file system. This is because pyfakefs cannot patch the underlying C libraries'
53 file access functions--the C libraries will always access the real file system.
63 * [![Build Status](https://travis-ci.org/jmcgeheeiv/pyfakefs.svg)](https://travis-ci.org/jmcgeheeiv…
64 on Linux, with Python 3.5 to 3.8, using [Travis](https://travis-ci.org/jmcgeheeiv/pyfakefs)
65 * [![Build Status](https://travis-ci.org/jmcgeheeiv/pyfakefs.svg)](https://travis-ci.org/jmcgeheeiv…
66 on MacOS, with Python 3.6 to 3.8, using [Travis](https://travis-ci.org/jmcgeheeiv/pyfakefs)
79 $ python -m pyfakefs.tests.all_tests
[all …]
/external/python/pybind11/tools/
Dpybind11NewTools.cmake1 # tools/pybind11NewTools.cmake -- Build system for the pybind11 modules
3 # Copyright (c) 2020 Wenzel Jakob <wenzel@inf.ethz.ch> and Henry Schreiner
6 # BSD-style license that can be found in the LICENSE file.
86 …# Debug check - see https://stackoverflow.com/questions/646518/python-how-to-detect-debug-Interpre…
88 COMMAND "${${_Python}_EXECUTABLE}" "-c"
96 # Get the suffix - SO is deprecated, should use EXT_SUFFIX, but this is
97 # required for PyPy3 (as of 7.3.1)
101 "${${_Python}_EXECUTABLE}" "-c"
120 # https://docs.python.org/3.6/c-api/intro.html#debugging-builds
121 …s://stackoverflow.com/questions/39161202/how-to-work-around-missing-pymodule-create2-in-amd64-win-
[all …]
/external/python/pybind11/
DREADME.rst1 .. figure:: https://github.com/pybind/pybind11/raw/master/docs/pybind11-logo.png
4 **pybind11 — Seamless operability between C++11 and Python**
8 |Repology| |PyPI package| |Conda-forge| |Python Versions|
11 • `Scikit-build example <https://github.com/pybind/scikit_build_example>`_
30 **pybind11** is a lightweight header-only library that exposes C++ types
32 C++ code. Its goals and syntax are similar to the excellent
35 extension modules by inferring type information using compile-time
40 of utility libraries that works with almost every C++ compiler in
43 specimens. Now that C++11-compatible compilers are widely available,
47 Think of this library as a tiny self-contained version of Boost.Python
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/
Drun_tests.py8 # http://www.apache.org/licenses/LICENSE-2.0
168 """Returns True if running running as a --use_docker child."""
208 # Bit-ness is handled by the test machine's environment
211 return '/c/Python{major}{minor}/python.exe'.format(major=major,
215 return '/c/Python{major}{minor}_{bits}bits/python.exe'.format(
225 return 'pypy3'
256 '-G', cmake_generator_option, '-A', cmake_arch_option
272 self._cmake_configure_extra_args.append('-DOPENSSL_NO_ASM=ON')
275 cflags = '-DGRPC_UV -DGRPC_CUSTOM_IOMGR_THREAD_CHECK -DGRPC_CUSTOM_SOCKET '
278 ['pkg-config', '--cflags', 'libuv']).strip() + ' '
[all …]
/external/grpc-grpc/tools/run_tests/
Drun_tests.py8 # http://www.apache.org/licenses/LICENSE-2.0
64 'linux': ['epollex', 'epollsig', 'epoll1', 'poll', 'poll-cv'],
85 [grpc-testing:jenkins_test_results.aggregate_results]
87 timestamp >= DATE_ADD(CURRENT_DATE(), -1, "WEEK")
94 query_job = big_query_utils.sync_query_job(bq, 'grpc-testing', query)
202 """Returns True if running running as a --use_docker child."""
243 # Bit-ness is handled by the test machine's environment
246 return '/c/Python{major}{minor}/python.exe'.format(
249 return '/c/Python{major}{minor}_{bits}bits/python.exe'.format(
259 return 'pypy3'
[all …]
/external/python/pybind11/tests/
Dtest_pytypes.py1 # -*- coding: utf-8 -*-
13 assert doc(m.get_int) == "get_int() -> int"
17 assert doc(m.get_iterator) == "get_iterator() -> Iterator"
21 assert doc(m.get_iterable) == "get_iterable() -> Iterable"
27 assert lst == ["inserted-0", "overwritten", "inserted-2"]
35 list item 0: inserted-0
37 list item 2: inserted-2
42 assert doc(m.get_list) == "get_list() -> list"
43 assert doc(m.print_list) == "print_list(arg0: list) -> None"
47 assert doc(m.get_none) == "get_none() -> None"
[all …]
/external/python/cffi/cffi/
Dapi.py25 The main top-level class that you instantiate once, or once per module.
34 C = ffi.dlopen(None) # standard library
35 -or-
36 C = ffi.verify() # use a C compiler: verify the decl above is right
38 C.printf("hello, %s!\n", ffi.new("char[]", "world"))
43 select a non-default backend, mostly for tests.
54 …his is the 'cffi' package version %s, located in %r. When we import the top-level '_cffi_backend'…
59 …ffi' package version %s, located in %r. This interpreter comes with a built-in '_cffi_backend' mo…
102 """Parse the given C source. This registers all declared functions,
139 The standard C library can be loaded by passing None.
[all …]
/external/python/cryptography/
DCHANGELOG.rst4 .. _v2-5:
6 2.5 - 2019-01-22
9 * **BACKWARDS INCOMPATIBLE:** :term:`U-label` strings were deprecated in
14 * Numerous classes and functions have been updated to allow :term:`bytes-like`
57 .. _v2-4-2:
59 2.4.2 - 2018-11-21
65 .. _v2-4-1:
67 2.4.1 - 2018-11-11
72 .. _v2-4:
74 2.4 - 2018-11-11
[all …]
/external/python/cpython3/Doc/library/
Ddecimal.rst1 :mod:`decimal` --- Decimal fixed point and floating point arithmetic
31 --------------
33 The :mod:`decimal` module provides support for fast correctly-rounded
37 * Decimal "is based on a floating-point model which was designed with people
38 in mind, and necessarily has a paramount guiding principle -- computers must
40 people learn at school." -- excerpt from the decimal arithmetic specification.
48 + 0.1 + 0.1 - 0.3`` is exactly equal to zero. In binary floating point, the result
49 is :const:`5.5511151231257827e-017`. While near to zero, the differences
74 standards. While the built-in float type exposes only a modest portion of its
81 unrounded decimal arithmetic (sometimes called fixed-point arithmetic)
[all …]