Marcel Telka
2023-05-11 220b65cfe906561fed5cb0054c88e23b0146ddce
python/Cython: update to 0.29.34

6 files modified
1946 ■■■■ changed files
components/python/Cython/Makefile 18 ●●●●● patch | view | raw | blame | history
components/python/Cython/manifests/sample-manifest.p5m 2 ●●● patch | view | raw | blame | history
components/python/Cython/pkg5 2 ●●●●● patch | view | raw | blame | history
components/python/Cython/python-integrate-project.conf 12 ●●●● patch | view | raw | blame | history
components/python/Cython/test/results-3.7.master 1207 ●●●● patch | view | raw | blame | history
components/python/Cython/test/results-3.9.master 705 ●●●● patch | view | raw | blame | history
components/python/Cython/Makefile
@@ -20,25 +20,31 @@
include ../../../make-rules/shared-macros.mk
COMPONENT_NAME =        Cython
HUMAN_VERSION =            0.29.33
HUMAN_VERSION =            0.29.34
COMPONENT_SUMMARY =        Cython - The Cython compiler for writing C extensions for the Python language.
COMPONENT_PROJECT_URL =        http://cython.org/
COMPONENT_ARCHIVE_URL =        \
    https://files.pythonhosted.org/packages/dc/f6/e8e302f9942cbebede88b1a0c33d0be3a738c3ac37abae87254d58ffc51c/Cython-0.29.33.tar.gz
    https://files.pythonhosted.org/packages/0a/70/1500f05bddb16d795b29fac42954b3c8764c82367b8326c10f038471ae7f/Cython-0.29.34.tar.gz
COMPONENT_ARCHIVE_HASH =    \
    sha256:5040764c4a4d2ce964a395da24f0d1ae58144995dab92c6b96f44c3f4d72286a
    sha256:1909688f5d7b521a60c396d20bba9e47a1b2d2784bfb085401e1e1e7d29a29a8
COMPONENT_LICENSE =        Apache-2.0
COMPONENT_LICENSE_FILE =    LICENSE.txt
include $(WS_MAKE_RULES)/common.mk
# setup.py needs PATH
PYTHON_ENV += PATH=$(PATH)
# Our Python 3.7 and Python 3.9 are compiled with removed full path for
# compiler from Python configuration so testing is unable to find proper
# compiler without explicit PATH
COMPONENT_TEST_ENV += PATH="$(GCC_BINDIR):$(PATH)"
# Use well known path for Cython cache directory
COMPONENT_TEST_ENV += CYTHON_CACHE_DIR=$(@D)/.cython-cache-dir
# Normalize tmp dir name
COMPONENT_TEST_TRANSFORMS += "-e 's|\(TEST_TMP/cycache-test\).\{8\}\(/src\).\{8\}/|\1\2/|g'"
# Normalize pointer
COMPONENT_TEST_TRANSFORMS += "-e 's/\(Broken object at\) 0x[a-f0-9]*>/\1 PTR>/g'"
COMPONENT_TEST_TRANSFORMS += "-e 's/\(Broken object at \)0x[a-f0-9]\{1,\}>/\1\$$(POINTER)>/g'"
# Remove line with private path
COMPONENT_TEST_TRANSFORMS += "-e '/^libgcov profiling error:/d'"
# Auto-generated dependencies
PYTHON_REQUIRED_PACKAGES += library/python/importlib-metadata
components/python/Cython/manifests/sample-manifest.p5m
@@ -10,7 +10,7 @@
#
#
# Copyright 2022 <contributor>
# Copyright 2023 <contributor>
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)-$(PYV)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
components/python/Cython/pkg5
@@ -1,13 +1,11 @@
{
    "dependencies": [
        "SUNWcs",
        "library/python/importlib-metadata-37",
        "library/python/importlib-metadata-39",
        "library/python/setuptools-37",
        "library/python/setuptools-39",
        "runtime/python-37",
        "runtime/python-39",
        "shell/ksh93",
        "system/library"
    ],
    "fmris": [
components/python/Cython/python-integrate-project.conf
@@ -19,13 +19,19 @@
%patch% 04-test-no-time.patch
%include-3%
# setup.py needs PATH
PYTHON_ENV += PATH=$(PATH)
# Our Python 3.7 and Python 3.9 are compiled with removed full path for
# compiler from Python configuration so testing is unable to find proper
# compiler without explicit PATH
COMPONENT_TEST_ENV += PATH="$(GCC_BINDIR):$(PATH)"
# Use well known path for Cython cache directory
COMPONENT_TEST_ENV += CYTHON_CACHE_DIR=$(@D)/.cython-cache-dir
# Normalize tmp dir name
COMPONENT_TEST_TRANSFORMS += "-e 's|\(TEST_TMP/cycache-test\).\{8\}\(/src\).\{8\}/|\1\2/|g'"
# Normalize pointer
COMPONENT_TEST_TRANSFORMS += "-e 's/\(Broken object at\) 0x[a-f0-9]*>/\1 PTR>/g'"
COMPONENT_TEST_TRANSFORMS += "-e 's/\(Broken object at \)0x[a-f0-9]\{1,\}>/\1\$$(POINTER)>/g'"
# Remove line with private path
COMPONENT_TEST_TRANSFORMS += "-e '/^libgcov profiling error:/d'"
%hook-manifest%
# usr/bin/cygdb-3.7 does not use importlib.metadata.  It uses importlib_metadata instead.
printf '<transform file path=usr/bin/cygdb-3\\.7$ -> add pkg.depend.bypass-generate .*/importlib/(64/)?metadata.* >\n' >> "$DISTRIBUTION-PYVER.p5m"
components/python/Cython/test/results-3.7.master
@@ -1,85 +1,17 @@
py$(PYV) create: $(@D)/.tox/py$(PYV)
py$(PYV) run-test: commands[0] | $(@D)/.tox/py$(PYV)/bin/python runtests.py -vv
Python 3.7.16 (default, Dec 21 2022, 19:50:31)
ROOT: tox-gh-actions won't override envlist because tox is not running in GitHub Actions
py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
py$(PYV): commands[0]> $(PYTHON) runtests.py -vv
Python 3.7.16 (default, Feb 19 2023, 23:28:22)
[GCC 10.4.0]
Running tests against Cython 0.29.33
Running tests against Cython 0.29.34
Using Cython language level 2.
Backends: c,cpp
test_basic (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_pos_after_key (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_keyword (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_pos (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_calculate_pickle_checksums (Cython.Compiler.Tests.TestParseTreeTransforms.TestAnalyseDeclarationsTransform) ... ok
test_parallel_directives_cimports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parallel_directives_imports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parserbehaviour_is_what_we_coded_for (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_pass_eliminated (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_statinexpr (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_multistat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_offagain (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_singlestat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_cpp_reference_cpp_class (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_cpp_class_and_int (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_single_arg (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_two_args (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_widest_numeric_type (Cython.Compiler.Tests.TestTypes.TestMethodDispatcherTransform) ... ok
test_basic (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_copy_is_taken (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_exprstat (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_pos_is_transferred (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitution (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitutions_are_copied (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_temps (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_invalid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_valid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_node_path (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_and (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_dotted (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists_not (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_string_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_child (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate_step (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_recursive_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_star (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_errors (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_long_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_module_name (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_options_with_values (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_short_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_string_contains_lone_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_string_contains_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_deepcopy (Cython.Compiler.Tests.TestFlowControl.TestGraph) ... ok
test_basic (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_cdef_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_def_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_1dim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_general_slice (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_non_slice_memview (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_tempita (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_binop_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_builtin_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_all (Cython.Debugger.Tests.TestLibCython.TestAll) ... gdb command file: Activating virtualenv: $(@D)/.tox/py$(PYV); path_to_activate_this_py: $(@D)/.tox/py$(PYV)/bin/activate_this.py
Traceback (most recent call last):
  File "<string>", line 8, in <module>
FileNotFoundError: [Errno 2] No such file or directory: '$(@D)/.tox/py$(PYV)/bin/activate_this.py'
ok
test_class_ref (Cython.Build.Tests.TestInline.TestInline) ... ok
test_compiler_directives (Cython.Build.Tests.TestInline.TestInline) ... ok
test_def_node (Cython.Build.Tests.TestInline.TestInline) ... Excluding build.setuptools_reimport because it's listed in tests/bugs.txt
test_cython (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython2 (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython3 (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
Excluding build.setuptools_reimport because it's listed in tests/bugs.txt
Excluding errors.missing_baseclass_in_predecl_T262 because it's listed in tests/bugs.txt
Excluding run.cfunc_call_tuple_args_T408 because it's listed in tests/bugs.txt
Excluding run.cimport_alias_subclass because it's listed in tests/bugs.txt
@@ -92,19 +24,19 @@
Excluding run.mod__spec__ because it's listed in tests/bugs.txt
Excluding run.temp_sideeffects_T654 because it's listed in tests/bugs.txt
Excluding run.unsignedbehaviour_T184 because it's listed in tests/bugs.txt
test_cython3_pgo (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_inline (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_0eb0c41c30a393036ae3ba8c7bb906ead685c1c1.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_0eb0c41c30a393036ae3ba8c7bb906ead685c1c1.pyx
warning: .cython-cache-dir/inline/_cython_inline_0eb0c41c30a393036ae3ba8c7bb906ead685c1c1.pyx:6:4: Unreachable code
ok
test_globals (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_65301ac100a227f4ed57486a62009b137fe620bd.pyx:6:4: Unreachable code
test_cython_language_level (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_name (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_pyximport (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... $(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/_test_cython_pyximport.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
ok
test_lang_version (Cython.Build.Tests.TestInline.TestInline) ... ok
test_locals (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_4a013186c5bc568491d48319fab3fc405374177a.pyx:6:4: Unreachable code
ok
test_no_return (Cython.Build.Tests.TestInline.TestInline) ... ok
test_pure (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_5fd08fe4dc552cc508c4c5f8011b10ee47467c7e.pyx:11:4: Unreachable code
ok
test_simple (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_b6430d0a0daf60d616d8bbc81032a7672fb1cd38.pyx:6:4: Unreachable code
ok
test_types (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_c80b0df987015895b3bb0ebcb729d62fdbcb9e61.pyx:8:4: Unreachable code
ok
test_cython_verbose (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_verbose_thresholds (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_extlibs (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_backslash (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_comment (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_comment_and_quote (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
@@ -118,36 +50,59 @@
test_single_quote (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_triple_quote (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_unicode (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_class_ref (Cython.Build.Tests.TestInline.TestInline) ... Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_f6bee687728f231f3d03c9b67b55f9ae5ff60035.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_f6bee687728f231f3d03c9b67b55f9ae5ff60035.pyx
ok
test_compiler_directives (Cython.Build.Tests.TestInline.TestInline) ... Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_560826acf949b8525d0051b8a345c3a1fa166c8f.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_560826acf949b8525d0051b8a345c3a1fa166c8f.pyx
warning: .cython-cache-dir/inline/_cython_inline_560826acf949b8525d0051b8a345c3a1fa166c8f.pyx:6:4: Unreachable code
ok
test_def_node (Cython.Build.Tests.TestInline.TestInline) ... ok
test_globals (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_bdb399ceedf8ae07f41aa6387950ac6206e5feb3.pyx:6:4: Unreachable code
ok
test_lang_version (Cython.Build.Tests.TestInline.TestInline) ... Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_8220e45e786d426a5148778d0f842289db984353.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_8220e45e786d426a5148778d0f842289db984353.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_0688e8d0f66e94506afcd5a76083b6d9ec755dad.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_0688e8d0f66e94506afcd5a76083b6d9ec755dad.pyx
ok
test_locals (Cython.Build.Tests.TestInline.TestInline) ... ok
test_no_return (Cython.Build.Tests.TestInline.TestInline) ... ok
test_pure (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_4a3c4b61bc2314e911e9389954daf1bb9d635342.pyx:11:4: Unreachable code
ok
test_simple (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_474b0bb928fd073f6db9481b96dd52898d847db1.pyx:6:4: Unreachable code
ok
test_types (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_a3496f2c2c142964a8503afc34452d4fa5fcb66a.pyx:8:4: Unreachable code
ok
Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/a.pyx
test_cycache_switch (Cython.Build.Tests.TestCyCache.TestCyCache) ... Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/a.pyx
Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/a.pyx
Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Found compiled TEST_TMP/cycache-test/src/a.pyx in cache
$(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/a.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
$(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/a.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
ok
test_cycache_uses_cache (Cython.Build.Tests.TestCyCache.TestCyCache) ... Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/a.pyx
Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Found compiled TEST_TMP/cycache-test/src/a.pyx in cache
$(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/a.pyx
test_cycache_uses_cache (Cython.Build.Tests.TestCyCache.TestCyCache) ... $(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/a.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
ok
test_multi_file_output (Cython.Build.Tests.TestCyCache.TestCyCache) ... Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/a.pyx
Compiling TEST_TMP/cycache-test/src/a.pyx because it changed.
[1/1] Found compiled TEST_TMP/cycache-test/src/a.pyx in cache
$(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/a.pyx
test_multi_file_output (Cython.Build.Tests.TestCyCache.TestCyCache) ... $(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/a.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
ok
Compiling TEST_TMP/cycache-test/src/options.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/options.pyx
test_options_invalidation (Cython.Build.Tests.TestCyCache.TestCyCache) ... Compiling TEST_TMP/cycache-test/src/options.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/options.pyx
Compiling TEST_TMP/cycache-test/src/options.pyx because it changed.
[1/1] Cythonizing TEST_TMP/cycache-test/src/options.pyx
Compiling TEST_TMP/cycache-test/src/options.pyx because it changed.
[1/1] Found compiled TEST_TMP/cycache-test/src/options.pyx in cache
Compiling TEST_TMP/cycache-test/src/options.pyx because it changed.
[1/1] Found compiled TEST_TMP/cycache-test/src/options.pyx in cache
@@ -156,6 +111,7 @@
$(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/options.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
ok
test_build_hex_version (Cython.Tests.TestCythonUtils.TestCythonUtils) ... ok
test_attribute (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_cdef_var (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_def (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
@@ -169,9 +125,85 @@
test_typed_args (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_insertion (Cython.Tests.TestStringIOTree.TestStringIOTree) ... ok
test_markers (Cython.Tests.TestStringIOTree.TestStringIOTree) ... ok
test_build_hex_version (Cython.Tests.TestCythonUtils.TestCythonUtils) ... ok
test_basic (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_copy_is_taken (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_exprstat (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_pos_is_transferred (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitution (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitutions_are_copied (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_temps (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_basic (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_cdef_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_def_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_1dim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_general_slice (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_non_slice_memview (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_binop_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_builtin_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_cpp_reference_cpp_class (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_cpp_class_and_int (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_single_arg (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_two_args (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_string_contains_lone_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_string_contains_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_invalid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_valid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_tempita (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_errors (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_long_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_module_name (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_options_with_values (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_short_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_basic (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_pos_after_key (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_keyword (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_pos (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_deepcopy (Cython.Compiler.Tests.TestFlowControl.TestGraph) ... ok
test_widest_numeric_type (Cython.Compiler.Tests.TestTypes.TestMethodDispatcherTransform) ... ok
test_node_path (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_and (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_dotted (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists_not (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_string_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_child (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate_step (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_recursive_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_star (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_calculate_pickle_checksums (Cython.Compiler.Tests.TestParseTreeTransforms.TestAnalyseDeclarationsTransform) ... ok
test_parallel_directives_cimports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parallel_directives_imports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parserbehaviour_is_what_we_coded_for (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_pass_eliminated (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_statinexpr (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_multistat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_offagain (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_singlestat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_all (Cython.Debugger.Tests.TestLibCython.TestAll) ... [GDB will not be able to debug user-mode threads: ld.so.1: gdb: fatal: relocation error: file /lib/64/libthread_db.so.1: symbol ps_lgetxregsize: referenced symbol not found]
[GDB will not be able to debug user-mode threads: ld.so.1: gdb: fatal: relocation error: file /lib/64/libthread_db.so.1: symbol ps_lgetxregsize: referenced symbol not found]
[GDB will not be able to debug user-mode threads: ld.so.1: gdb: fatal: relocation error: file /lib/64/libthread_db.so.1: symbol ps_lgetxregsize: referenced symbol not found]
Python was not compiled with debug symbols (or it was stripped). Some functionality may not work (properly).
warning: .cygdbinit: No such file or directory
$(PROTO_DIR)$(PYTHON_DIR)/vendor-packages/Cython/Debugger/Tests/test_libcython_in_gdb.py:458: UserWarning: Unable to run tests, Python was not compiled with debugging information. Either compile python with -g or get a debug build (configure with --with-pydebug).
  warnings.warn(msg)
ok
StringIOTree (Cython)
Doctest: Cython.StringIOTree ... ok
parse_list (Cython.Build.Dependencies)
Doctest: Cython.Build.Dependencies.parse_list ... ok
TreeVisitor (Cython.Compiler.Visitor)
Doctest: Cython.Compiler.Visitor.TreeVisitor ... ok
normalise_encoding_name (Cython.Compiler.Options)
Doctest: Cython.Compiler.Options.normalise_encoding_name ... ok
parse_compile_time_env (Cython.Compiler.Options)
@@ -182,10 +214,6 @@
Doctest: Cython.Compiler.Options.parse_directive_value ... ok
parse_variable_value (Cython.Compiler.Options)
Doctest: Cython.Compiler.Options.parse_variable_value ... ok
TreeVisitor (Cython.Compiler.Visitor)
Doctest: Cython.Compiler.Visitor.TreeVisitor ... ok
parse_list (Cython.Build.Dependencies)
Doctest: Cython.Build.Dependencies.parse_list ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running bufaccess ... acquire_failure1 (bufaccess.__test__)
Doctest: bufaccess.__test__.acquire_failure1 ... ok
@@ -1026,8 +1054,8 @@
Encodings:
sys maxunicode = 1114111
LANG (env) = 
PYTHONIOENCODING (env) =
sys stdout encoding = UTF-8
PYTHONIOENCODING (env) = utf-8
sys stdout encoding = utf-8
sys default encoding = utf-8
sys FS encoding = utf-8
@@ -1087,8 +1115,8 @@
Encodings:
sys maxunicode = 1114111
LANG (env) = 
PYTHONIOENCODING (env) =
sys stdout encoding = UTF-8
PYTHONIOENCODING (env) = utf-8
sys stdout encoding = utf-8
sys default encoding = utf-8
sys FS encoding = utf-8
@@ -2512,8 +2540,8 @@
[-1] compiling (c) and running memslice ... 
=== C/C++ compiler error output: ===
memslice.c: In function '__pyx_convert__to_py_struct____pyx_t_8memslice_PackedArrayStruct':
memslice.c:86940:38: warning: taking address of packed member of 'struct __pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86940 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
memslice.c:86966:38: warning: taking address of packed member of 'struct __pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86966 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
      |                                     ~^~~~~
====================================
acquire_failure1 (memslice)
@@ -2726,8 +2754,8 @@
[-1] compiling (cpp) and running memslice ... 
=== C/C++ compiler error output: ===
memslice.cpp: In function 'PyObject* __pyx_convert__to_py_struct____pyx_t_8memslice_PackedArrayStruct(__pyx_t_8memslice_PackedArrayStruct)':
memslice.cpp:86954:39: warning: taking address of packed member of '__pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86954 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
memslice.cpp:86980:39: warning: taking address of packed member of '__pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86980 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
      |                                     ~~^~~~
====================================
acquire_failure1 (memslice)
@@ -11650,11 +11678,15 @@
Doctest: for_in_break_continue_T533.for_from ... ok
for_in (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in ... ok
for_in_break2 (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in_break2 ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (cpp) and running for_in_break_continue_T533 ... for_from (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_from ... ok
for_in (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in ... ok
for_in_break2 (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in_break2 ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running for_in_iter ... Iterable (for_in_iter)
Doctest: for_in_iter.Iterable ... ok
@@ -16834,6 +16866,12 @@
test_view_typed (pyarray)
Doctest: pyarray.test_view_typed ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running pycapsule ... test_capsule (pycapsule)
Doctest: pycapsule.test_capsule ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (cpp) and running pycapsule ... test_capsule (pycapsule)
Doctest: pycapsule.test_capsule ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running pyclass_dynamic_bases ... cond_if_bases (pyclass_dynamic_bases)
Doctest: pyclass_dynamic_bases.cond_if_bases ... ok
make_subclass (pyclass_dynamic_bases)
@@ -19144,116 +19182,116 @@
test_varargs2_kw (test_call.CFunctionCalls) ... ok
runTest (__main__.CythonUnitTestCase)
[-1] compiling (c) tests in test_coroutines_pep492 ... test_badsyntax_1 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_84dad6067adeafb9e967bd60ce2fc354db1cfba5.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_84dad6067adeafb9e967bd60ce2fc354db1cfba5.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_e1c08124aa7276da03405ce183fec5a974761e45.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_e1c08124aa7276da03405ce183fec5a974761e45.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_8148711eac9f4e78c205f7b4e53ed24e0cc5530e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_8148711eac9f4e78c205f7b4e53ed24e0cc5530e.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_0bd9a409e4bbb83ced63469023fde3eb822d8014.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_0bd9a409e4bbb83ced63469023fde3eb822d8014.pyx
Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_2403168860ad5bf2fce363812e7834641fbe66e3.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_2403168860ad5bf2fce363812e7834641fbe66e3.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_16c3386ae91913f59aa923ad5f4cc70db61fbe18.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_16c3386ae91913f59aa923ad5f4cc70db61fbe18.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_2aeb9f3126f94e0c3b5608581fa5977f95ec324f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_2aeb9f3126f94e0c3b5608581fa5977f95ec324f.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_08ae00a6e57434a4ae7c402e7968bbe0cf5cbb7f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_08ae00a6e57434a4ae7c402e7968bbe0cf5cbb7f.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_e46b7ead4bd5747942e744201c5cf13150790dea.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_e46b7ead4bd5747942e744201c5cf13150790dea.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_3661ef03e1cf6afe158bf67ce58c562eafdb7708.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_3661ef03e1cf6afe158bf67ce58c562eafdb7708.pyx
Couldn't find 'abc'
Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_84dad6067adeafb9e967bd60ce2fc354db1cfba5.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_84dad6067adeafb9e967bd60ce2fc354db1cfba5.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_e1c08124aa7276da03405ce183fec5a974761e45.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_e1c08124aa7276da03405ce183fec5a974761e45.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_8148711eac9f4e78c205f7b4e53ed24e0cc5530e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_8148711eac9f4e78c205f7b4e53ed24e0cc5530e.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_0bd9a409e4bbb83ced63469023fde3eb822d8014.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_0bd9a409e4bbb83ced63469023fde3eb822d8014.pyx
Couldn't find 'abc'
Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_2403168860ad5bf2fce363812e7834641fbe66e3.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_2403168860ad5bf2fce363812e7834641fbe66e3.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_16c3386ae91913f59aa923ad5f4cc70db61fbe18.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_16c3386ae91913f59aa923ad5f4cc70db61fbe18.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_2aeb9f3126f94e0c3b5608581fa5977f95ec324f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_2aeb9f3126f94e0c3b5608581fa5977f95ec324f.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_cdf1abab70837b1755fdf3ee77eaa7dcc1246084.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_cdf1abab70837b1755fdf3ee77eaa7dcc1246084.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_08ae00a6e57434a4ae7c402e7968bbe0cf5cbb7f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_08ae00a6e57434a4ae7c402e7968bbe0cf5cbb7f.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_e46b7ead4bd5747942e744201c5cf13150790dea.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_e46b7ead4bd5747942e744201c5cf13150790dea.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_3661ef03e1cf6afe158bf67ce58c562eafdb7708.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_3661ef03e1cf6afe158bf67ce58c562eafdb7708.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_921fee6542845cebb746173b6782c0157fc9f93c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_921fee6542845cebb746173b6782c0157fc9f93c.pyx
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5bf1fa79eb0e27be223ae1d08bf8f69db0ca4782.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5bf1fa79eb0e27be223ae1d08bf8f69db0ca4782.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a46120ec9738f809d29cec79ace324b447b66620.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a46120ec9738f809d29cec79ace324b447b66620.pyx
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6d19acd9d78e0a054bb5c06fd368b75eae53bcdc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6d19acd9d78e0a054bb5c06fd368b75eae53bcdc.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_565301d85b836ec1a348642e4bea24189561e844.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_565301d85b836ec1a348642e4bea24189561e844.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9069a2d6e937c3fc9b426197067f65ab744f5fab.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9069a2d6e937c3fc9b426197067f65ab744f5fab.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f56663974ce55a56c4995ad43920ca1a7dce0a4f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f56663974ce55a56c4995ad43920ca1a7dce0a4f.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_aebcde1ae5eb5ab21f21a0f48a0d74321f0fb74a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_aebcde1ae5eb5ab21f21a0f48a0d74321f0fb74a.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7df4473986fedd6b15572f3514c9380849f58f9c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7df4473986fedd6b15572f3514c9380849f58f9c.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9f4d1d6ac2931a77ac3a4204a7dd35e03049df8f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9f4d1d6ac2931a77ac3a4204a7dd35e03049df8f.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_65de4cbad7016b72041dd9c1cf9bf1b9417ee220.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_65de4cbad7016b72041dd9c1cf9bf1b9417ee220.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8b7dc90bb50110209d81e93c579d255b5f5c7753.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8b7dc90bb50110209d81e93c579d255b5f5c7753.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_891b5a980ee516fde86ec0f7bfee589e83228b12.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_891b5a980ee516fde86ec0f7bfee589e83228b12.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_bba3fb94647e145a19364e524aeee47ab726b831.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_bba3fb94647e145a19364e524aeee47ab726b831.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_86c9729be696048cf00e5f93a9dff2c652ae946c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_86c9729be696048cf00e5f93a9dff2c652ae946c.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7edb6a4863bc541a3c743ecffdc8d1df7d9d2f34.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7edb6a4863bc541a3c743ecffdc8d1df7d9d2f34.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_3f5b1b5cee37666feaddbc02f486a269c524367f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_3f5b1b5cee37666feaddbc02f486a269c524367f.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_53ffcb4fdcacc163aec2a296b6ffb2f7455b5550.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_53ffcb4fdcacc163aec2a296b6ffb2f7455b5550.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9b7f3b996c1f96febf2cd64aaba60a78aaac4761.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9b7f3b996c1f96febf2cd64aaba60a78aaac4761.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_aa42b72aff38c5f93b5b631d91aab354f982fcfc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_aa42b72aff38c5f93b5b631d91aab354f982fcfc.pyxok
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_68f429636eebcd271263f589f5ce3573c675e27d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_68f429636eebcd271263f589f5ce3573c675e27d.pyxok
test_badsyntax_10 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_badsyntax_2 (test_coroutines_pep492.AsyncBadSyntaxTest) ... 
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_cd407b5a220d320c0fbcf8c81bc2811d3d1373a5.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_cd407b5a220d320c0fbcf8c81bc2811d3d1373a5.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ee0d91c6806c44e94649216b46eddbf00adfad7a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ee0d91c6806c44e94649216b46eddbf00adfad7a.pyx
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b25f3f80e5dab771835d94ebbdbab1fe3c01b6c8.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b25f3f80e5dab771835d94ebbdbab1fe3c01b6c8.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f20d4563f4ecc656940e25225e6e39d03cef3fd6.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f20d4563f4ecc656940e25225e6e39d03cef3fd6.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7d1f2e76832cec9c06fe83d6fd0e573db9742e26.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7d1f2e76832cec9c06fe83d6fd0e573db9742e26.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8411cc883731cafab2518f67bedb919e319cd140.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8411cc883731cafab2518f67bedb919e319cd140.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fb6c3baf09a594a7dc15814fd095e5010f38319b.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fb6c3baf09a594a7dc15814fd095e5010f38319b.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9bb44633b981d4d347e1ce2400769e87a266272f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9bb44633b981d4d347e1ce2400769e87a266272f.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_04890aec10dbc8a3fb420680f9eacebeb7f79a95.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_04890aec10dbc8a3fb420680f9eacebeb7f79a95.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_07cbed7b52e34f4a079172adc079e2728fd12b85.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_07cbed7b52e34f4a079172adc079e2728fd12b85.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_1d8dc510935632f4a4d55551779583a129ea40f7.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_1d8dc510935632f4a4d55551779583a129ea40f7.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a052366f998fcbcdc087872ae21e1e0e037b4448.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a052366f998fcbcdc087872ae21e1e0e037b4448.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_77b36b180a8d2b49b9126411ae8afeade74bb36b.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_77b36b180a8d2b49b9126411ae8afeade74bb36b.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_67ee1a945aabe84c6e9e6684c58407d2e7169500.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_67ee1a945aabe84c6e9e6684c58407d2e7169500.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f636aac7102a67993ac7227ca935780c8602196e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f636aac7102a67993ac7227ca935780c8602196e.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6d3119bcf605ef9fa66891b50b02989c430d7a86.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6d3119bcf605ef9fa66891b50b02989c430d7a86.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_aed6173412740f20a00f94ae8f5bbcfa975227b3.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_aed6173412740f20a00f94ae8f5bbcfa975227b3.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a6d9c2c82da0619a40a0f095d48545f5a610ce84.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a6d9c2c82da0619a40a0f095d48545f5a610ce84.pyx
ok
test_badsyntax_3 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8c997c528b88e67085b532fbe3f80e81746c72fb.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8c997c528b88e67085b532fbe3f80e81746c72fb.pyx
test_badsyntax_3 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_c10caeb9af54f971f0b922087c08bc6880267de4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_c10caeb9af54f971f0b922087c08bc6880267de4.pyx
ok
test_goodsyntax_1 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_asyncio_1 (test_coroutines_pep492.CoroAsyncIOCompatTest) ... ok
@@ -19338,88 +19376,88 @@
test_with_7 (test_coroutines_pep492.CoroutineTest) ... ok
test_with_8 (test_coroutines_pep492.CoroutineTest) ... ok
test_with_9 (test_coroutines_pep492.CoroutineTest) ... ok
test_oneline_defs (test_coroutines_pep492.TokenizerRegrTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_2a9624a3b154fa7a3a9a7599f63f4d0ddcbb480f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_2a9624a3b154fa7a3a9a7599f63f4d0ddcbb480f.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_3f52c2138cefc93efb9489bf924c235e1e1229eb.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_3f52c2138cefc93efb9489bf924c235e1e1229eb.pyx
test_oneline_defs (test_coroutines_pep492.TokenizerRegrTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_de602f0e8251f2d439bfa634554f5a61544de116.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_de602f0e8251f2d439bfa634554f5a61544de116.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_baef6fd2e6ffcc853c65ae62d6569f3e053e216c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_baef6fd2e6ffcc853c65ae62d6569f3e053e216c.pyx
$(PYTHON_DIR)/unittest/case.py:628: RuntimeWarning: coroutine '__invoke.<locals>.foo' was never awaited
  testMethod()
ok
runTest (__main__.CythonUnitTestCase)
[-1] compiling (cpp) tests in test_coroutines_pep492 ... test_badsyntax_1 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_badsyntax_10 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_cdf1abab70837b1755fdf3ee77eaa7dcc1246084.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_cdf1abab70837b1755fdf3ee77eaa7dcc1246084.pyx
test_badsyntax_10 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_921fee6542845cebb746173b6782c0157fc9f93c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_921fee6542845cebb746173b6782c0157fc9f93c.pyx
Couldn't find 'something'
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5bf1fa79eb0e27be223ae1d08bf8f69db0ca4782.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5bf1fa79eb0e27be223ae1d08bf8f69db0ca4782.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a46120ec9738f809d29cec79ace324b447b66620.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a46120ec9738f809d29cec79ace324b447b66620.pyx
Couldn't find 'something'
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6d19acd9d78e0a054bb5c06fd368b75eae53bcdc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6d19acd9d78e0a054bb5c06fd368b75eae53bcdc.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_565301d85b836ec1a348642e4bea24189561e844.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_565301d85b836ec1a348642e4bea24189561e844.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9069a2d6e937c3fc9b426197067f65ab744f5fab.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9069a2d6e937c3fc9b426197067f65ab744f5fab.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f56663974ce55a56c4995ad43920ca1a7dce0a4f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f56663974ce55a56c4995ad43920ca1a7dce0a4f.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_aebcde1ae5eb5ab21f21a0f48a0d74321f0fb74a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_aebcde1ae5eb5ab21f21a0f48a0d74321f0fb74a.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7df4473986fedd6b15572f3514c9380849f58f9c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7df4473986fedd6b15572f3514c9380849f58f9c.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9f4d1d6ac2931a77ac3a4204a7dd35e03049df8f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9f4d1d6ac2931a77ac3a4204a7dd35e03049df8f.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_65de4cbad7016b72041dd9c1cf9bf1b9417ee220.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_65de4cbad7016b72041dd9c1cf9bf1b9417ee220.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_8b7dc90bb50110209d81e93c579d255b5f5c7753.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_8b7dc90bb50110209d81e93c579d255b5f5c7753.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_891b5a980ee516fde86ec0f7bfee589e83228b12.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_891b5a980ee516fde86ec0f7bfee589e83228b12.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_bba3fb94647e145a19364e524aeee47ab726b831.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_bba3fb94647e145a19364e524aeee47ab726b831.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_86c9729be696048cf00e5f93a9dff2c652ae946c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_86c9729be696048cf00e5f93a9dff2c652ae946c.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7edb6a4863bc541a3c743ecffdc8d1df7d9d2f34.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7edb6a4863bc541a3c743ecffdc8d1df7d9d2f34.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_3f5b1b5cee37666feaddbc02f486a269c524367f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_3f5b1b5cee37666feaddbc02f486a269c524367f.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_53ffcb4fdcacc163aec2a296b6ffb2f7455b5550.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_53ffcb4fdcacc163aec2a296b6ffb2f7455b5550.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9b7f3b996c1f96febf2cd64aaba60a78aaac4761.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9b7f3b996c1f96febf2cd64aaba60a78aaac4761.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_aa42b72aff38c5f93b5b631d91aab354f982fcfc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_aa42b72aff38c5f93b5b631d91aab354f982fcfc.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_68f429636eebcd271263f589f5ce3573c675e27d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_68f429636eebcd271263f589f5ce3573c675e27d.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_cd407b5a220d320c0fbcf8c81bc2811d3d1373a5.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_cd407b5a220d320c0fbcf8c81bc2811d3d1373a5.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ee0d91c6806c44e94649216b46eddbf00adfad7a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ee0d91c6806c44e94649216b46eddbf00adfad7a.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_2bd2e6f1f799b8180f125847e77fc72a04c80a58.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ceacbaec874e9cedf37a91007036e7357cfb1656.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_fbddcd24a19d708e77e198d01822958a6663af46.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_0ae505cb942b7227fcce6c1612acf4c0ea501bcc.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx because it changed.ok
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx because it changed.ok
test_badsyntax_2 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_badsyntax_3 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_goodsyntax_1 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
@@ -19657,7 +19695,7 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_bca6968116a88952732107091b26889786bc43ed.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_474e851c3ad960be7566932c4caebe7eb2549705.pyx:5:8: Cannot assign to or delete this
Error compiling Cython file:
------------------------------------------------------------
@@ -19670,11 +19708,17 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_8166c7cf3d21b59337fd98d14c78615b827098be.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_b7a24f58ba02b397f469e4a62dd3f5f2b85e8d7c.pyx:5:8: Cannot assign to or delete this
ok
test_dict (test_fstring.TestCase) ... ok
test_docstring (test_fstring.TestCase) ... ok
test_double_braces (test_fstring.TestCase) ... ok
test_double_braces (test_fstring.TestCase) ...
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_201caaca98414a15d1cc50206f79602c0daa4a15.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a21e41174859450bcf2302178cba7fb2366865a7.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5c0f1d9b4d76b6cb1cf39ecaeb1a9429e02ec25a.pyx
ok
test_empty_format_specifier (test_fstring.TestCase) ... ok
test_errors (test_fstring.TestCase) ... ok
test_expressions_with_triple_quoted_strings (test_fstring.TestCase) ... ok
@@ -19688,51 +19732,45 @@
test_literal (test_fstring.TestCase) ... ok
test_locals (test_fstring.TestCase) ... ok
test_loop (test_fstring.TestCase) ... ok
test_many_expressions (test_fstring.TestCase) ...
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_73000197b13bfef035efbbf2e394778e2a28d3d4.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_e877c3f9a4a1cd5805d0afb6bc03541c72541964.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ff6f764c93c08887b82e87b1f5d1e8552427450d.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_944b3c380eeb14b9e6f023d11318f78a625e566e.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_944b3c380eeb14b9e6f023d11318f78a625e566e.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_f9fe3eac5c7dd601e8e64643d584db4a12ef883f.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_f9fe3eac5c7dd601e8e64643d584db4a12ef883f.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_cdf6674c4282442698836c2cb8659b4dc1c5dbe5.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_cdf6674c4282442698836c2cb8659b4dc1c5dbe5.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_d983f9d0aa3a3e5686aa1ca077c516ba0abe9632.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_d983f9d0aa3a3e5686aa1ca077c516ba0abe9632.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_1c652cfb3b2d39d82b50ffc477890bf1c47e2675.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_1c652cfb3b2d39d82b50ffc477890bf1c47e2675.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_f3892d06aa48b435b0e4df03ddacea29a78180cb.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_f3892d06aa48b435b0e4df03ddacea29a78180cb.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_fb8edab7336afd89ff785bcf0c0085ff82be2e2e.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_fb8edab7336afd89ff785bcf0c0085ff82be2e2e.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_438586f5d94b5a005174fb90fbd2014353e50a72.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_438586f5d94b5a005174fb90fbd2014353e50a72.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_825d88212fb471d043e115657d442fc109c11cf3.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_825d88212fb471d043e115657d442fc109c11cf3.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_99d89848a52d8b4b9aaaf4b00bbdb1bd7f94798a.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_99d89848a52d8b4b9aaaf4b00bbdb1bd7f94798a.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_13ceed735688f486eee70de429cabedb87edc01b.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_13ceed735688f486eee70de429cabedb87edc01b.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_8367821db3a8ba3f02038cf39f22b9424a79a59a.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_8367821db3a8ba3f02038cf39f22b9424a79a59a.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_29e660632e0a05d534a2b92b59d7541ef158a0c1.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_29e660632e0a05d534a2b92b59d7541ef158a0c1.pyx
warning: /home/marcel/.cython/inline/_cython_inline_944b3c380eeb14b9e6f023d11318f78a625e566e.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_f9fe3eac5c7dd601e8e64643d584db4a12ef883f.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_cdf6674c4282442698836c2cb8659b4dc1c5dbe5.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_d983f9d0aa3a3e5686aa1ca077c516ba0abe9632.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_1c652cfb3b2d39d82b50ffc477890bf1c47e2675.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_f3892d06aa48b435b0e4df03ddacea29a78180cb.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_fb8edab7336afd89ff785bcf0c0085ff82be2e2e.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_438586f5d94b5a005174fb90fbd2014353e50a72.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_825d88212fb471d043e115657d442fc109c11cf3.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_99d89848a52d8b4b9aaaf4b00bbdb1bd7f94798a.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_13ceed735688f486eee70de429cabedb87edc01b.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_8367821db3a8ba3f02038cf39f22b9424a79a59a.pyx:6:4: Unreachable code
warning: /home/marcel/.cython/inline/_cython_inline_29e660632e0a05d534a2b92b59d7541ef158a0c1.pyx:6:4: Unreachable code
test_many_expressions (test_fstring.TestCase) ... Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_b47e9c6036a99d150ea84f91ce1981edcf8bc82d.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_b47e9c6036a99d150ea84f91ce1981edcf8bc82d.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_7315f3eeb8146cbca113d7957a0f8c24c6419d11.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_7315f3eeb8146cbca113d7957a0f8c24c6419d11.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_b0e36dbd56ba7739a6a70d0acb7daf641bf13417.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_b0e36dbd56ba7739a6a70d0acb7daf641bf13417.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_a41f9eeaa396ebd857de9cb4837a535df49173f1.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_a41f9eeaa396ebd857de9cb4837a535df49173f1.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_2ccb90ab9b4a1c4a1de24df088ed440d186833d8.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_2ccb90ab9b4a1c4a1de24df088ed440d186833d8.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_d23ea3f81103345ec0caa6b9313b40213ab0c1f3.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_d23ea3f81103345ec0caa6b9313b40213ab0c1f3.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_22b7b49f14780fbd7b8426ee217cc269caa5c7a9.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_22b7b49f14780fbd7b8426ee217cc269caa5c7a9.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_258f491758cdfff4960f090d208122ae6272d572.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_258f491758cdfff4960f090d208122ae6272d572.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_51ceb61bb69cca8e71a208bc61e902d72c42e96d.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_51ceb61bb69cca8e71a208bc61e902d72c42e96d.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_10d2dbf178e739971f2d9053e99cff7b88eefeff.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_10d2dbf178e739971f2d9053e99cff7b88eefeff.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_e96f799be6eb060fc30f2c92b8327aaa996ca55b.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_e96f799be6eb060fc30f2c92b8327aaa996ca55b.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_45507cff8a370a246360a6d6d453ef46b622ef5f.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_45507cff8a370a246360a6d6d453ef46b622ef5f.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_a4e90bcfcecedbaa67dd4695eeb356a7727374c4.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_a4e90bcfcecedbaa67dd4695eeb356a7727374c4.pyx
warning: .cython-cache-dir/inline/_cython_inline_b47e9c6036a99d150ea84f91ce1981edcf8bc82d.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_7315f3eeb8146cbca113d7957a0f8c24c6419d11.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_b0e36dbd56ba7739a6a70d0acb7daf641bf13417.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_a41f9eeaa396ebd857de9cb4837a535df49173f1.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_2ccb90ab9b4a1c4a1de24df088ed440d186833d8.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_d23ea3f81103345ec0caa6b9313b40213ab0c1f3.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_22b7b49f14780fbd7b8426ee217cc269caa5c7a9.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_258f491758cdfff4960f090d208122ae6272d572.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_51ceb61bb69cca8e71a208bc61e902d72c42e96d.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_10d2dbf178e739971f2d9053e99cff7b88eefeff.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_e96f799be6eb060fc30f2c92b8327aaa996ca55b.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_45507cff8a370a246360a6d6d453ef46b622ef5f.pyx:6:4: Unreachable code
warning: .cython-cache-dir/inline/_cython_inline_a4e90bcfcecedbaa67dd4695eeb356a7727374c4.pyx:6:4: Unreachable code
ok
test_misformed_unicode_character_name (test_fstring.TestCase) ... ok
test_mismatched_braces (test_fstring.TestCase) ... ok
@@ -19776,7 +19814,7 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_bca6968116a88952732107091b26889786bc43ed.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_474e851c3ad960be7566932c4caebe7eb2549705.pyx:5:8: Cannot assign to or delete this
Error compiling Cython file:
------------------------------------------------------------
@@ -19789,7 +19827,7 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_8166c7cf3d21b59337fd98d14c78615b827098be.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_b7a24f58ba02b397f469e4a62dd3f5f2b85e8d7c.pyx:5:8: Cannot assign to or delete this
ok
test_dict (test_fstring.TestCase) ... ok
test_docstring (test_fstring.TestCase) ... ok
@@ -22145,12 +22183,12 @@
test_attempting_to_send_to_non_generator (yield_from_pep380)
Doctest: yield_from_pep380.test_attempting_to_send_to_non_generator ... ok
test_broken_getattr_handling (yield_from_pep380)
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.c:16301)
    1/0
ZeroDivisionError: integer division or modulo by zero
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.c:16301)
    1/0
@@ -22228,12 +22266,12 @@
test_attempting_to_send_to_non_generator (yield_from_pep380)
Doctest: yield_from_pep380.test_attempting_to_send_to_non_generator ... ok
test_broken_getattr_handling (yield_from_pep380)
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.cpp:16315)
    1/0
ZeroDivisionError: integer division or modulo by zero
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.cpp:16315)
    1/0
@@ -22356,7 +22394,7 @@
test_embed (__main__.EmbedTest) ... make: Fatal error in reader: Makefile, line 3: Unexpected end of line seen
Current working directory $(@D)/Demos/embed
gmake[1]: Entering directory '$(@D)/Demos/embed'
PYTHON='$(@D)/.tox/py$(PYV)/bin/python'
PYTHON='$(PYTHON)'
PYVERSION=3.7
PYPREFIX=/usr
INCDIR=/usr/include/python3.7m
@@ -22373,304 +22411,12 @@
gcc -c embedded.c -I/usr/include/python3.7m -I/usr/include/python3.7m
gcc -o embedded embedded.o -L'/usr/lib/amd64' -L$(PYTHON_DIR)/config-3.7m -lpython3.7m -lsocket -lnsl -lintl -ldl -lsendfile -lm 
LD_LIBRARY_PATH='/usr/lib/amd64':$LD_LIBRARY_PATH ./embedded > test.output
'$(@D)/.tox/py$(PYV)/bin/python' assert_equal.py embedded.output test.output
'$(PYTHON)' assert_equal.py embedded.output test.output
Files identical
gmake[1]: Leaving directory '$(@D)/Demos/embed'
make: Fatal error in reader: Makefile, line 3: Unexpected end of line seen
Current working directory $(@D)/Demos/embed
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) matrix ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) matrix_with_buffer ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) view_count ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) rectangle ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rectangle ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) rectangle_cdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rectangle_cdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) rectangle_cpdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rectangle_cpdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) dict_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) dict_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) extendable_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) extendable_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) my_module ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) my_module ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) python_access ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) python_access ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) shrubbery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) shrubbery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) shrubbery_2 ...
=== C/C++ compiler error output: ===
shrubbery_2.c:1258:47: warning: '__pyx_f_11shrubbery_2_another_shrubbery' defined but not used [-Wunused-function]
 1258 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
      |                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) shrubbery_2 ...
=== C/C++ compiler error output: ===
shrubbery_2.cpp:1272:47: warning: '__pyx_obj_9my_module_Shrubbery* __pyx_f_11shrubbery_2_another_shrubbery(__pyx_obj_9my_module_Shrubbery*)' defined but not used [-Wunused-function]
 1272 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
      |                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) widen_shrubbery ...
=== C/C++ compiler error output: ===
widen_shrubbery.c:1210:18: warning: '__pyx_f_15widen_shrubbery_widen_shrubbery' defined but not used [-Wunused-function]
 1210 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) widen_shrubbery ...
=== C/C++ compiler error output: ===
widen_shrubbery.cpp:1224:18: warning: 'PyObject* __pyx_f_15widen_shrubbery_widen_shrubbery(__pyx_obj_9my_module_Shrubbery*, PyObject*)' defined but not used [-Wunused-function]
 1224 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) c_code_docstring ...
=== C/C++ compiler error output: ===
c_code_docstring.c:747:17: warning: 'square' defined but not used [-Wunused-function]
  747 |     static long square(long x) {return x * x;}
      |                 ^~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) c_code_docstring ...
=== C/C++ compiler error output: ===
c_code_docstring.cpp:761:17: warning: 'long int square(long int)' defined but not used [-Wunused-function]
  761 |     static long square(long x) {return x * x;}
      |                 ^~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) delorean ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) delorean ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) char_or_float ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) char_or_float ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) casting_python ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) casting_python ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) cdef_block ...
=== C/C++ compiler error output: ===
cdef_block.c:1215:13: warning: '__pyx_f_10cdef_block_f' defined but not used [-Wunused-function]
 1215 | static void __pyx_f_10cdef_block_f(struct __pyx_t_10cdef_block_Spam *__pyx_v_s) {
      |             ^~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) cdef_block ...
=== C/C++ compiler error output: ===
cdef_block.cpp:1229:13: warning: 'void __pyx_f_10cdef_block_f(__pyx_t_10cdef_block_Spam*)' defined but not used [-Wunused-function]
 1229 | static void __pyx_f_10cdef_block_f(struct __pyx_t_10cdef_block_Spam *__pyx_v_s) {
      |             ^~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compile_time ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compile_time ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) kwargs_1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) kwargs_1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) kwargs_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) kwargs_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) open_file ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) open_file ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) optional_subclassing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) optional_subclassing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) override ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) override ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) struct_union_enum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) struct_union_enum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) add_one ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) add_one ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) copy ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) copy ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) memory_layout ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) memory_layout ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) memory_layout_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) memory_layout_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) memview_to_c ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) memview_to_c ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) not_none ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) not_none ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) np_flag_const ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) np_flag_const ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) quickstart ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) quickstart ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) slicing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) slicing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) transpose ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) transpose ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) view_string ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) view_string ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_fused_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_fused_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_infer_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_infer_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_memview ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_memview ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_prange ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_prange ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_py ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_py ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_typed ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_typed ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) breaking_loop ...
=== C/C++ compiler error output: ===
breaking_loop.c:1251:12: warning: '__pyx_f_13breaking_loop_func' defined but not used [-Wunused-function]
 1251 | static int __pyx_f_13breaking_loop_func(CYTHON_UNUSED Py_ssize_t __pyx_v_n) {
      |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) breaking_loop ...
=== C/C++ compiler error output: ===
breaking_loop.cpp:1265:12: warning: 'int __pyx_f_13breaking_loop_func(Py_ssize_t)' defined but not used [-Wunused-function]
 1265 | static int __pyx_f_13breaking_loop_func(CYTHON_UNUSED Py_ssize_t __pyx_v_n) {
      |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) cimport_openmp ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) cimport_openmp ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) simple_sum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) simple_sum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) landscaping ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) landscaping ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) lunch ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) lunch ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) restaurant ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) restaurant ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) shrubbing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) shrubbing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) spammery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) spammery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) volume ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) volume ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) cython_usage ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) function_templates ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) iterate ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) nested_class ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) python_to_cpp ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rect ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rect_ptr ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rect_with_attributes ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) templates ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) vector_demo ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) wrapper_vector ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) clone ... ok
runTest (__main__.CythonCompileTestCase)
@@ -23022,6 +22768,298 @@
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) p1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) matrix ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) matrix_with_buffer ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) view_count ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) rectangle ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rectangle ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) rectangle_cdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rectangle_cdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) rectangle_cpdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rectangle_cpdef ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) dict_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) dict_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) extendable_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) extendable_animal ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) my_module ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) my_module ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) python_access ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) python_access ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) shrubbery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) shrubbery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) shrubbery_2 ...
=== C/C++ compiler error output: ===
shrubbery_2.c:1266:47: warning: '__pyx_f_11shrubbery_2_another_shrubbery' defined but not used [-Wunused-function]
 1266 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
      |                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) shrubbery_2 ...
=== C/C++ compiler error output: ===
shrubbery_2.cpp:1280:47: warning: '__pyx_obj_9my_module_Shrubbery* __pyx_f_11shrubbery_2_another_shrubbery(__pyx_obj_9my_module_Shrubbery*)' defined but not used [-Wunused-function]
 1280 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
      |                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) widen_shrubbery ...
=== C/C++ compiler error output: ===
widen_shrubbery.c:1218:18: warning: '__pyx_f_15widen_shrubbery_widen_shrubbery' defined but not used [-Wunused-function]
 1218 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) widen_shrubbery ...
=== C/C++ compiler error output: ===
widen_shrubbery.cpp:1232:18: warning: 'PyObject* __pyx_f_15widen_shrubbery_widen_shrubbery(__pyx_obj_9my_module_Shrubbery*, PyObject*)' defined but not used [-Wunused-function]
 1232 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) c_code_docstring ...
=== C/C++ compiler error output: ===
c_code_docstring.c:747:17: warning: 'square' defined but not used [-Wunused-function]
  747 |     static long square(long x) {return x * x;}
      |                 ^~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) c_code_docstring ...
=== C/C++ compiler error output: ===
c_code_docstring.cpp:761:17: warning: 'long int square(long int)' defined but not used [-Wunused-function]
  761 |     static long square(long x) {return x * x;}
      |                 ^~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) delorean ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) delorean ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) char_or_float ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) char_or_float ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) casting_python ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) casting_python ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) cdef_block ...
=== C/C++ compiler error output: ===
cdef_block.c:1215:13: warning: '__pyx_f_10cdef_block_f' defined but not used [-Wunused-function]
 1215 | static void __pyx_f_10cdef_block_f(struct __pyx_t_10cdef_block_Spam *__pyx_v_s) {
      |             ^~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) cdef_block ...
=== C/C++ compiler error output: ===
cdef_block.cpp:1229:13: warning: 'void __pyx_f_10cdef_block_f(__pyx_t_10cdef_block_Spam*)' defined but not used [-Wunused-function]
 1229 | static void __pyx_f_10cdef_block_f(struct __pyx_t_10cdef_block_Spam *__pyx_v_s) {
      |             ^~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compile_time ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compile_time ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) kwargs_1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) kwargs_1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) kwargs_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) kwargs_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) open_file ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) open_file ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) optional_subclassing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) optional_subclassing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) override ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) override ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) struct_union_enum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) struct_union_enum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) add_one ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) add_one ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) copy ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) copy ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) memory_layout ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) memory_layout ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) memory_layout_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) memory_layout_2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) memview_to_c ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) memview_to_c ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) not_none ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) not_none ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) np_flag_const ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) np_flag_const ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) quickstart ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) quickstart ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) slicing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) slicing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) transpose ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) transpose ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) view_string ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) view_string ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_fused_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_fused_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_infer_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_infer_types ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_memview ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_memview ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_prange ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_prange ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_py ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_py ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) compute_typed ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) compute_typed ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) breaking_loop ...
=== C/C++ compiler error output: ===
breaking_loop.c:1251:12: warning: '__pyx_f_13breaking_loop_func' defined but not used [-Wunused-function]
 1251 | static int __pyx_f_13breaking_loop_func(CYTHON_UNUSED Py_ssize_t __pyx_v_n) {
      |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) breaking_loop ...
=== C/C++ compiler error output: ===
breaking_loop.cpp:1265:12: warning: 'int __pyx_f_13breaking_loop_func(Py_ssize_t)' defined but not used [-Wunused-function]
 1265 | static int __pyx_f_13breaking_loop_func(CYTHON_UNUSED Py_ssize_t __pyx_v_n) {
      |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) cimport_openmp ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) cimport_openmp ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) simple_sum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) simple_sum ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) landscaping ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) landscaping ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) lunch ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) lunch ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) restaurant ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) restaurant ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) shrubbing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) shrubbing ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) spammery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) spammery ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) volume ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) volume ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) cython_usage ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) function_templates ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) iterate ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) nested_class ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) python_to_cpp ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rect ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rect_ptr ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) rect_with_attributes ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) templates ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) vector_demo ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) wrapper_vector ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) hello ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) hello ... ok
@@ -23056,7 +23094,7 @@
runTest (__main__.TestCodeFormat) ... ok
----------------------------------------------------------------------
Ran 12114 tests
Ran 12131 tests
OK (skipped=72)
Following tests excluded because of missing dependencies on your system:
@@ -23082,6 +23120,5 @@
   numpy.convolve2
ALL DONE
___________________________________ summary ____________________________________
  py$(PYV): commands succeeded
  py$(PYV): OK
  congratulations :)
components/python/Cython/test/results-3.9.master
@@ -1,17 +1,100 @@
py$(PYV) create: $(@D)/.tox/py$(PYV)
py$(PYV) run-test: commands[0] | $(@D)/.tox/py$(PYV)/bin/python runtests.py -vv
Python 3.9.16 (main, Dec 22 2022, 11:59:25)
ROOT: tox-gh-actions won't override envlist because tox is not running in GitHub Actions
py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
py$(PYV): commands[0]> $(PYTHON) runtests.py -vv
Python 3.9.16 (main, Feb 19 2023, 15:42:40)
[GCC 10.4.0]
Running tests against Cython 0.29.33
Running tests against Cython 0.29.34
Using Cython language level 2.
Backends: c,cpp
test_all (Cython.Debugger.Tests.TestLibCython.TestAll) ... gdb command file: Activating virtualenv: $(@D)/.tox/py$(PYV); path_to_activate_this_py: $(@D)/.tox/py$(PYV)/bin/activate_this.py
Traceback (most recent call last):
  File "<string>", line 8, in <module>
FileNotFoundError: [Errno 2] No such file or directory: '$(@D)/.tox/py$(PYV)/bin/activate_this.py'
test_all (Cython.Debugger.Tests.TestLibCython.TestAll) ... [GDB will not be able to debug user-mode threads: ld.so.1: gdb: fatal: relocation error: file /lib/64/libthread_db.so.1: symbol ps_lgetxregsize: referenced symbol not found]
[GDB will not be able to debug user-mode threads: ld.so.1: gdb: fatal: relocation error: file /lib/64/libthread_db.so.1: symbol ps_lgetxregsize: referenced symbol not found]
[GDB will not be able to debug user-mode threads: ld.so.1: gdb: fatal: relocation error: file /lib/64/libthread_db.so.1: symbol ps_lgetxregsize: referenced symbol not found]
Python was not compiled with debug symbols (or it was stripped). Some functionality may not work (properly).
warning: .cygdbinit: No such file or directory
$(PROTO_DIR)$(PYTHON_DIR)/vendor-packages/Cython/Debugger/Tests/test_libcython_in_gdb.py:458: UserWarning: Unable to run tests, Python was not compiled with debugging information. Either compile python with -g or get a debug build (configure with --with-pydebug).
  warnings.warn(msg)
ok
test_binop_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_builtin_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_tempita (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_basic (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_pos_after_key (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_keyword (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_pos (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_basic (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_cdef_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_def_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_1dim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_general_slice (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_non_slice_memview (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_widest_numeric_type (Cython.Compiler.Tests.TestTypes.TestMethodDispatcherTransform) ... ok
test_node_path (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_and (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_dotted (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists_not (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_string_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_child (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate_step (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_recursive_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_star (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_deepcopy (Cython.Compiler.Tests.TestFlowControl.TestGraph) ... ok
test_calculate_pickle_checksums (Cython.Compiler.Tests.TestParseTreeTransforms.TestAnalyseDeclarationsTransform) ... ok
test_parallel_directives_cimports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parallel_directives_imports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parserbehaviour_is_what_we_coded_for (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_pass_eliminated (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_statinexpr (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_multistat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_offagain (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_singlestat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_errors (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_long_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_module_name (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_options_with_values (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_short_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_invalid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_valid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_basic (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_copy_is_taken (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_exprstat (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_pos_is_transferred (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitution (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitutions_are_copied (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_temps (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_cpp_reference_cpp_class (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_cpp_class_and_int (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_single_arg (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_two_args (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_string_contains_lone_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_string_contains_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_attribute (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_cdef_var (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_def (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_for_loop (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_if (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_ifelifelse (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_inplace_assignment (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_longness_and_signedness (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_print (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_signed_short (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_typed_args (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_build_hex_version (Cython.Tests.TestCythonUtils.TestCythonUtils) ... ok
test_insertion (Cython.Tests.TestStringIOTree.TestStringIOTree) ... ok
test_markers (Cython.Tests.TestStringIOTree.TestStringIOTree) ... ok
test_cycache_switch (Cython.Build.Tests.TestCyCache.TestCyCache) ... $(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/TEST_TMP/cycache-test/src/a.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
Excluding build.setuptools_reimport because it's listed in tests/bugs.txt
@@ -76,104 +159,47 @@
test_single_quote (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_triple_quote (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_unicode (Cython.Build.Tests.TestStripLiterals.TestStripLiterals) ... ok
test_class_ref (Cython.Build.Tests.TestInline.TestInline) ... ok
test_compiler_directives (Cython.Build.Tests.TestInline.TestInline) ... ok
test_def_node (Cython.Build.Tests.TestInline.TestInline) ... ok
test_globals (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_d01b44b2bfc1ffb1e291f5b470d3fc75d8161f0b.pyx:6:4: Unreachable code
test_class_ref (Cython.Build.Tests.TestInline.TestInline) ... Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_3f8f66770e0997364777fa25e8d5ba5b8a627af4.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_3f8f66770e0997364777fa25e8d5ba5b8a627af4.pyx
ok
test_lang_version (Cython.Build.Tests.TestInline.TestInline) ... ok
test_locals (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_56fb96fa0ddfa8646787373633e1d5898d913bb7.pyx:6:4: Unreachable code
test_compiler_directives (Cython.Build.Tests.TestInline.TestInline) ... warning: .cython-cache-dir/inline/_cython_inline_9a6eabab391f7d3ae9aef9b1235cfad33d8ecd26.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_9a6eabab391f7d3ae9aef9b1235cfad33d8ecd26.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_9a6eabab391f7d3ae9aef9b1235cfad33d8ecd26.pyx
ok
test_def_node (Cython.Build.Tests.TestInline.TestInline) ... ok
test_globals (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_e5d8ca05b8116a8469aebf4dc52ece4c099bc28b.pyx:6:4: Unreachable code
ok
test_lang_version (Cython.Build.Tests.TestInline.TestInline) ... Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_241aa12acfbfcefa316ef8057d0360373ae2675f.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_241aa12acfbfcefa316ef8057d0360373ae2675f.pyx
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_f794ae28d809682a8c7772cfa3f8dd1f0e877b4a.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_f794ae28d809682a8c7772cfa3f8dd1f0e877b4a.pyx
ok
test_locals (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_bfe62c6de5c2ef4e71772e5ab8f5a873f9dbb8a3.pyx:6:4: Unreachable code
ok
test_no_return (Cython.Build.Tests.TestInline.TestInline) ... ok
test_pure (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_623d5ff810dda3488fdbb89bf419fcfc983d0607.pyx:11:4: Unreachable code
test_pure (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_a44bc7f19ef571ca2d03b20a7614c56424e53112.pyx:11:4: Unreachable code
ok
test_simple (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_d0af0c0d44088f7830fa9ffc995ac2638f3bd697.pyx:6:4: Unreachable code
test_simple (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_18247e43f1669ef8410d61ecafc7e6902e729598.pyx:6:4: Unreachable code
ok
test_types (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_e1c617c3f4046d129e42b270e01f29d76738678c.pyx:8:4: Unreachable code
test_types (Cython.Build.Tests.TestInline.TestInline) ... warning: TEST_TMP/inline/_cython_inline_7cb06f91aae1008a11e7ef69df7907db982ff657.pyx:8:4: Unreachable code
ok
test_insertion (Cython.Tests.TestStringIOTree.TestStringIOTree) ... ok
test_markers (Cython.Tests.TestStringIOTree.TestStringIOTree) ... ok
test_attribute (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_cdef_var (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_def (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_for_loop (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_if (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_ifelifelse (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_inplace_assignment (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_longness_and_signedness (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_print (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_signed_short (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_typed_args (Cython.Tests.TestCodeWriter.TestCodeWriter) ... ok
test_build_hex_version (Cython.Tests.TestCythonUtils.TestCythonUtils) ... ok
test_widest_numeric_type (Cython.Compiler.Tests.TestTypes.TestMethodDispatcherTransform) ... ok
test_cpp_reference_cpp_class (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_cpp_class_and_int (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_single_arg (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_cpp_reference_two_args (Cython.Compiler.Tests.TestSignatureMatching.SignatureMatcherTest) ... ok
test_deepcopy (Cython.Compiler.Tests.TestFlowControl.TestGraph) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load_tempita (Cython.Compiler.Tests.TestUtilityLoad.TestCythonUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestTempitaUtilityLoader) ... ok
test_load (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_load_as_string (Cython.Compiler.Tests.TestUtilityLoad.TestUtilityLoader) ... ok
test_binop_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_builtin_method (Cython.Compiler.Tests.TestVisitor.TestMethodDispatcherTransform) ... ok
test_calculate_pickle_checksums (Cython.Compiler.Tests.TestParseTreeTransforms.TestAnalyseDeclarationsTransform) ... ok
test_parallel_directives_cimports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parallel_directives_imports (Cython.Compiler.Tests.TestParseTreeTransforms.TestInterpretCompilerDirectives) ... ok
test_parserbehaviour_is_what_we_coded_for (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_pass_eliminated (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_statinexpr (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_multistat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_offagain (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_wrap_singlestat (Cython.Compiler.Tests.TestParseTreeTransforms.TestNormalizeTree) ... ok
test_basic (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_cdef_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_def_arg (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_1dim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_default_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_general_slice (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_non_slice_memview (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_zero_offset_ndim (Cython.Compiler.Tests.TestMemView.TestMemviewParsing) ... ok
test_string_contains_lone_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_string_contains_surrogates (Cython.Compiler.Tests.TestStringEncoding.StringEncodingTest) ... ok
test_invalid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_valid_number_literals (Cython.Compiler.Tests.TestGrammar.TestGrammar) ... ok
test_basic (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_pos_after_key (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_keyword (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_type_pos (Cython.Compiler.Tests.TestBuffer.TestBufferParsing) ... ok
test_errors (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_long_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_module_name (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_options_with_values (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_short_options (Cython.Compiler.Tests.TestCmdLine.CmdLineParserTest) ... ok
test_node_path (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_and (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_dotted (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_exists_not (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_attribute_string_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_child (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_node_predicate_step (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_recursive_predicate (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_node_path_star (Cython.Compiler.Tests.TestTreePath.TestTreePath) ... ok
test_basic (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_copy_is_taken (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_exprstat (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_pos_is_transferred (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitution (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_substitutions_are_copied (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_temps (Cython.Compiler.Tests.TestTreeFragment.TestTreeFragments) ... ok
test_cython (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython2 (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython3 (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython3_pgo (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_inline (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_language_level (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_name (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_pyximport (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... $(@D)/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: $(@D)/_test_cython_pyximport.pyx
  tree = Parsing.p_module(s, pxd, full_module_name)
ok
test_cython_verbose (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_cython_verbose_thresholds (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
test_extlibs (Cython.Build.Tests.TestIpythonMagic.TestIPythonMagic) ... ok
StringIOTree (Cython)
Doctest: Cython.StringIOTree ... ok
parse_list (Cython.Build.Dependencies)
Doctest: Cython.Build.Dependencies.parse_list ... ok
TreeVisitor (Cython.Compiler.Visitor)
Doctest: Cython.Compiler.Visitor.TreeVisitor ... ok
normalise_encoding_name (Cython.Compiler.Options)
Doctest: Cython.Compiler.Options.normalise_encoding_name ... ok
parse_compile_time_env (Cython.Compiler.Options)
@@ -184,8 +210,8 @@
Doctest: Cython.Compiler.Options.parse_directive_value ... ok
parse_variable_value (Cython.Compiler.Options)
Doctest: Cython.Compiler.Options.parse_variable_value ... ok
TreeVisitor (Cython.Compiler.Visitor)
Doctest: Cython.Compiler.Visitor.TreeVisitor ... ok
parse_list (Cython.Build.Dependencies)
Doctest: Cython.Build.Dependencies.parse_list ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running bufaccess ... acquire_failure1 (bufaccess.__test__)
Doctest: bufaccess.__test__.acquire_failure1 ... ok
@@ -1026,7 +1052,7 @@
Encodings:
sys maxunicode = 1114111
LANG (env) = 
PYTHONIOENCODING (env) =
PYTHONIOENCODING (env) = utf-8
sys stdout encoding = utf-8
sys default encoding = utf-8
sys FS encoding = utf-8
@@ -1087,7 +1113,7 @@
Encodings:
sys maxunicode = 1114111
LANG (env) = 
PYTHONIOENCODING (env) =
PYTHONIOENCODING (env) = utf-8
sys stdout encoding = utf-8
sys default encoding = utf-8
sys FS encoding = utf-8
@@ -2512,8 +2538,8 @@
[-1] compiling (c) and running memslice ... 
=== C/C++ compiler error output: ===
memslice.c: In function '__pyx_convert__to_py_struct____pyx_t_8memslice_PackedArrayStruct':
memslice.c:86940:38: warning: taking address of packed member of 'struct __pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86940 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
memslice.c:86966:38: warning: taking address of packed member of 'struct __pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86966 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
      |                                     ~^~~~~
====================================
acquire_failure1 (memslice)
@@ -2726,8 +2752,8 @@
[-1] compiling (cpp) and running memslice ... 
=== C/C++ compiler error output: ===
memslice.cpp: In function 'PyObject* __pyx_convert__to_py_struct____pyx_t_8memslice_PackedArrayStruct(__pyx_t_8memslice_PackedArrayStruct)':
memslice.cpp:86954:39: warning: taking address of packed member of '__pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86954 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
memslice.cpp:86980:39: warning: taking address of packed member of '__pyx_t_8memslice_PackedArrayStruct' may result in an unaligned pointer value [-Waddress-of-packed-member]
86980 |     member = __Pyx_carray_to_py_int(s.ints, 10); if (unlikely(!member)) goto bad;
      |                                     ~~^~~~
====================================
acquire_failure1 (memslice)
@@ -11670,11 +11696,15 @@
Doctest: for_in_break_continue_T533.for_from ... ok
for_in (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in ... ok
for_in_break2 (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in_break2 ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (cpp) and running for_in_break_continue_T533 ... for_from (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_from ... ok
for_in (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in ... ok
for_in_break2 (for_in_break_continue_T533)
Doctest: for_in_break_continue_T533.for_in_break2 ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running for_in_iter ... Iterable (for_in_iter)
Doctest: for_in_iter.Iterable ... ok
@@ -17281,6 +17311,12 @@
test_view_typed (pyarray)
Doctest: pyarray.test_view_typed ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running pycapsule ... test_capsule (pycapsule)
Doctest: pycapsule.test_capsule ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (cpp) and running pycapsule ... test_capsule (pycapsule)
Doctest: pycapsule.test_capsule ... ok
runTest (__main__.CythonRunTestCase)
[-1] compiling (c) and running pyclass_dynamic_bases ... cond_if_bases (pyclass_dynamic_bases)
Doctest: pyclass_dynamic_bases.cond_if_bases ... ok
make_subclass (pyclass_dynamic_bases)
@@ -19591,116 +19627,116 @@
test_varargs2_kw (test_call.CFunctionCalls) ... ok
runTest (__main__.CythonUnitTestCase)
[-1] compiling (c) tests in test_coroutines_pep492 ... test_badsyntax_1 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_d06c510e53465e113c823059479257b3e207e7f1.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_d06c510e53465e113c823059479257b3e207e7f1.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_f15e721f067f42c4eb46a699bb836404136c0e15.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_f15e721f067f42c4eb46a699bb836404136c0e15.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_5a86f90d0f3d9546b0bc74c2535495001efaafd9.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_5a86f90d0f3d9546b0bc74c2535495001efaafd9.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_150d50fadccc2b4cdab2884097d65033ded87a35.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_150d50fadccc2b4cdab2884097d65033ded87a35.pyx
Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_c452f2919e08c7f582933725f4397179a5454268.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_c452f2919e08c7f582933725f4397179a5454268.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_e6ce4a92c3a5779d6ca1d7d979c1bb26e73552f3.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_e6ce4a92c3a5779d6ca1d7d979c1bb26e73552f3.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_1895d7fc2f23324170a34647471cc54bca5664c7.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_1895d7fc2f23324170a34647471cc54bca5664c7.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_6d336670722a82e98ce484cee45f16beb9f1a6e5.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_6d336670722a82e98ce484cee45f16beb9f1a6e5.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_d8f943aeeb67e89b35e95e75186906b466df8198.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_d8f943aeeb67e89b35e95e75186906b466df8198.pyx
Compiling $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_0e919012777abcbf9d08afccbf7496984e9f4552.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_asyncgen/_cython_inline_0e919012777abcbf9d08afccbf7496984e9f4552.pyx
Couldn't find 'abc'
Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_d06c510e53465e113c823059479257b3e207e7f1.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_d06c510e53465e113c823059479257b3e207e7f1.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_f15e721f067f42c4eb46a699bb836404136c0e15.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_f15e721f067f42c4eb46a699bb836404136c0e15.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_5a86f90d0f3d9546b0bc74c2535495001efaafd9.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_5a86f90d0f3d9546b0bc74c2535495001efaafd9.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_150d50fadccc2b4cdab2884097d65033ded87a35.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_150d50fadccc2b4cdab2884097d65033ded87a35.pyx
Couldn't find 'abc'
Couldn't find 'abc'
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_c452f2919e08c7f582933725f4397179a5454268.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_c452f2919e08c7f582933725f4397179a5454268.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_e6ce4a92c3a5779d6ca1d7d979c1bb26e73552f3.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_e6ce4a92c3a5779d6ca1d7d979c1bb26e73552f3.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_1895d7fc2f23324170a34647471cc54bca5664c7.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_1895d7fc2f23324170a34647471cc54bca5664c7.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_24646fd6f3493c8e96d3ec3c121f80ffb420e826.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_24646fd6f3493c8e96d3ec3c121f80ffb420e826.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_6d336670722a82e98ce484cee45f16beb9f1a6e5.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_6d336670722a82e98ce484cee45f16beb9f1a6e5.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_d8f943aeeb67e89b35e95e75186906b466df8198.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_d8f943aeeb67e89b35e95e75186906b466df8198.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_0e919012777abcbf9d08afccbf7496984e9f4552.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_asyncgen/_cython_inline_0e919012777abcbf9d08afccbf7496984e9f4552.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_510928b5134d6b28b69a18a2e5fc95823862ec66.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_510928b5134d6b28b69a18a2e5fc95823862ec66.pyx
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_702c06bb1f6596860f9a181c3ebffd0f3e144466.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_702c06bb1f6596860f9a181c3ebffd0f3e144466.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_80dfd600a277fb251ebf282e2631ba81bbfaed22.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_80dfd600a277fb251ebf282e2631ba81bbfaed22.pyx
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0393941e4ca0694032bbc34c741f86b4f4b4243a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0393941e4ca0694032bbc34c741f86b4f4b4243a.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5b976dbc47a87f5d13a4176467d6db111939df06.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5b976dbc47a87f5d13a4176467d6db111939df06.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_dd29c43573a9f5f636583addae182003a0547a04.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_dd29c43573a9f5f636583addae182003a0547a04.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_329a93f03d5735a535e63c85890968c56c5dd56f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_329a93f03d5735a535e63c85890968c56c5dd56f.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d5481e1dc7bf45165418c06b10b772f3b96db184.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d5481e1dc7bf45165418c06b10b772f3b96db184.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b428529a5ad818f787bfe611fe06eec6994eb229.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b428529a5ad818f787bfe611fe06eec6994eb229.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a98bd01bb5d84054089346d49482eacc5373e3fb.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a98bd01bb5d84054089346d49482eacc5373e3fb.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5be32211399e43e337059db49e3265cbf6c2a360.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5be32211399e43e337059db49e3265cbf6c2a360.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_137e6f814c36f57865c8292b1b4270d647e4c915.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_137e6f814c36f57865c8292b1b4270d647e4c915.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_24f858068e3a143eda6ae9476e2cc260fc686e34.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_24f858068e3a143eda6ae9476e2cc260fc686e34.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_392f18786f63341d776ad0bee747d3fae8305660.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_392f18786f63341d776ad0bee747d3fae8305660.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8f646472b207544e3327e4f812d286abda658992.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8f646472b207544e3327e4f812d286abda658992.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fabebf633e16b671835d76eb039020f9a59364a4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_fabebf633e16b671835d76eb039020f9a59364a4.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5b8ab0169586c5626f638dd5941b5d46f90fd994.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_5b8ab0169586c5626f638dd5941b5d46f90fd994.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a46f1a1cb14b8f42c03e2a37debd2be70d67cfca.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_a46f1a1cb14b8f42c03e2a37debd2be70d67cfca.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_cd8786098f58ea770caa4c6d5baf35f26db0a68e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_cd8786098f58ea770caa4c6d5baf35f26db0a68e.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_25516ec74358124c71f1a6718832f9fe49963115.pyx because it changed.
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_41e686095d7b5e568f2bfe1927310655857e24fc.pyx because it changed.
ok
test_badsyntax_10 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_badsyntax_2 (test_coroutines_pep492.AsyncBadSyntaxTest) ... [1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_25516ec74358124c71f1a6718832f9fe49963115.pyx
test_badsyntax_2 (test_coroutines_pep492.AsyncBadSyntaxTest) ... [1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_41e686095d7b5e568f2bfe1927310655857e24fc.pyx
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d8dd1c40b7ca708613afafb0d4e139131a44b887.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d8dd1c40b7ca708613afafb0d4e139131a44b887.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_63122474d9488c5797dd426240bf368104ba997f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_63122474d9488c5797dd426240bf368104ba997f.pyx
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_917653229029eb9bdeae3fa194ac6f4b2acf69a9.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_917653229029eb9bdeae3fa194ac6f4b2acf69a9.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_1db804835c4cb9820a239f4d8d1f5f934be2f6af.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_1db804835c4cb9820a239f4d8d1f5f934be2f6af.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_dbd0069ba88a33b950e5e2c6ca9b1828df87870d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_dbd0069ba88a33b950e5e2c6ca9b1828df87870d.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6b1f3720539633058afd26e1b0ccccb15bc2b394.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6b1f3720539633058afd26e1b0ccccb15bc2b394.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_bb3b53481785f5937913658b0125b555f076e209.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_bb3b53481785f5937913658b0125b555f076e209.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9772dcb9e10d3e7f88f207703755fa6231d4b91c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_9772dcb9e10d3e7f88f207703755fa6231d4b91c.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b572360f5f510bdc8e02bccf5c6ffa049792b465.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b572360f5f510bdc8e02bccf5c6ffa049792b465.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_818ba081de576f146e3de0cc514e872f3a4390fb.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_818ba081de576f146e3de0cc514e872f3a4390fb.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0a2b5c1eed6fa2b43f6fb1dc108ba4ddf7d31042.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_0a2b5c1eed6fa2b43f6fb1dc108ba4ddf7d31042.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b3d89920c3631e10078134b8148f01c08be23681.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_b3d89920c3631e10078134b8148f01c08be23681.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6665df57b45788dc9820defbbb8f8199385e4454.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_6665df57b45788dc9820defbbb8f8199385e4454.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_3ef81dd525bc999250b3538aaa49310dacf8b9a2.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_3ef81dd525bc999250b3538aaa49310dacf8b9a2.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_070088426c8fa3e08d0e59fbc382320d9099ba96.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_070088426c8fa3e08d0e59fbc382320d9099ba96.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_20d5ef54526b8e97f9130259f7f7e5159c344460.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_20d5ef54526b8e97f9130259f7f7e5159c344460.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_451a7001f4e66111805473874777117561478f6d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_451a7001f4e66111805473874777117561478f6d.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_28a6ed6ed96aed44c9dcac4ef6f1e5545cd816ec.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_28a6ed6ed96aed44c9dcac4ef6f1e5545cd816ec.pyx
ok
test_badsyntax_3 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_76662785b4d7e69f0b363cb28609702c4b9438cf.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_76662785b4d7e69f0b363cb28609702c4b9438cf.pyx
test_badsyntax_3 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_446d3000d58f525f68b7877b939e9e7d830646a9.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_446d3000d58f525f68b7877b939e9e7d830646a9.pyx
ok
test_goodsyntax_1 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_asyncio_1 (test_coroutines_pep492.CoroAsyncIOCompatTest) ... ok
@@ -19785,85 +19821,85 @@
test_with_7 (test_coroutines_pep492.CoroutineTest) ... ok
test_with_8 (test_coroutines_pep492.CoroutineTest) ... ok
test_with_9 (test_coroutines_pep492.CoroutineTest) ... ok
test_oneline_defs (test_coroutines_pep492.TokenizerRegrTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8fbe5fabee1c9b5743b8e8abd6b78662a485413d.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_8fbe5fabee1c9b5743b8e8abd6b78662a485413d.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_224648e4daff48bdbaebc2a0a309285f9b4afa31.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_224648e4daff48bdbaebc2a0a309285f9b4afa31.pyx
test_oneline_defs (test_coroutines_pep492.TokenizerRegrTest) ... Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_29d7426cdb8008b3758c23dbaa49bb05f75b16f3.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_29d7426cdb8008b3758c23dbaa49bb05f75b16f3.pyx
Compiling $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_db908707eb68157f18aef9c36b7fd169cf656c4c.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/c/test_coroutines_pep492/_cython_inline_db908707eb68157f18aef9c36b7fd169cf656c4c.pyx
$(PYTHON_DIR)/unittest/case.py:550: RuntimeWarning: coroutine '__invoke.<locals>.foo' was never awaited
  method()
ok
runTest (__main__.CythonUnitTestCase)
[-1] compiling (cpp) tests in test_coroutines_pep492 ... test_badsyntax_1 (test_coroutines_pep492.AsyncBadSyntaxTest) ... ok
test_badsyntax_10 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_24646fd6f3493c8e96d3ec3c121f80ffb420e826.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_24646fd6f3493c8e96d3ec3c121f80ffb420e826.pyx
test_badsyntax_10 (test_coroutines_pep492.AsyncBadSyntaxTest) ... Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_510928b5134d6b28b69a18a2e5fc95823862ec66.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_510928b5134d6b28b69a18a2e5fc95823862ec66.pyx
Couldn't find 'something'
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_702c06bb1f6596860f9a181c3ebffd0f3e144466.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_702c06bb1f6596860f9a181c3ebffd0f3e144466.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_80dfd600a277fb251ebf282e2631ba81bbfaed22.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_80dfd600a277fb251ebf282e2631ba81bbfaed22.pyx
Couldn't find 'something'
Couldn't find 'something'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_0393941e4ca0694032bbc34c741f86b4f4b4243a.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_0393941e4ca0694032bbc34c741f86b4f4b4243a.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5b976dbc47a87f5d13a4176467d6db111939df06.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5b976dbc47a87f5d13a4176467d6db111939df06.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_dd29c43573a9f5f636583addae182003a0547a04.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_dd29c43573a9f5f636583addae182003a0547a04.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_329a93f03d5735a535e63c85890968c56c5dd56f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_329a93f03d5735a535e63c85890968c56c5dd56f.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d5481e1dc7bf45165418c06b10b772f3b96db184.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d5481e1dc7bf45165418c06b10b772f3b96db184.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_b428529a5ad818f787bfe611fe06eec6994eb229.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_b428529a5ad818f787bfe611fe06eec6994eb229.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a98bd01bb5d84054089346d49482eacc5373e3fb.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a98bd01bb5d84054089346d49482eacc5373e3fb.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5be32211399e43e337059db49e3265cbf6c2a360.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5be32211399e43e337059db49e3265cbf6c2a360.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_137e6f814c36f57865c8292b1b4270d647e4c915.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_137e6f814c36f57865c8292b1b4270d647e4c915.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_24f858068e3a143eda6ae9476e2cc260fc686e34.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_24f858068e3a143eda6ae9476e2cc260fc686e34.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_392f18786f63341d776ad0bee747d3fae8305660.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_392f18786f63341d776ad0bee747d3fae8305660.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_8f646472b207544e3327e4f812d286abda658992.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_8f646472b207544e3327e4f812d286abda658992.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_fabebf633e16b671835d76eb039020f9a59364a4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_fabebf633e16b671835d76eb039020f9a59364a4.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5b8ab0169586c5626f638dd5941b5d46f90fd994.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_5b8ab0169586c5626f638dd5941b5d46f90fd994.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a46f1a1cb14b8f42c03e2a37debd2be70d67cfca.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_a46f1a1cb14b8f42c03e2a37debd2be70d67cfca.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_cd8786098f58ea770caa4c6d5baf35f26db0a68e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_cd8786098f58ea770caa4c6d5baf35f26db0a68e.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_25516ec74358124c71f1a6718832f9fe49963115.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_25516ec74358124c71f1a6718832f9fe49963115.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_41e686095d7b5e568f2bfe1927310655857e24fc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_41e686095d7b5e568f2bfe1927310655857e24fc.pyx
Couldn't find 'els'
Couldn't find 'els'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d8dd1c40b7ca708613afafb0d4e139131a44b887.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d8dd1c40b7ca708613afafb0d4e139131a44b887.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_63122474d9488c5797dd426240bf368104ba997f.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_63122474d9488c5797dd426240bf368104ba997f.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ddc2326c924cdfb34e1836ebbf2af0b69852c6e.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_6ea6bed98428e94b6ab9b4566a319b45523514c4.pyx
Couldn't find 'b'
Couldn't find 'b'
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_9654271431a46a020f13bb6114e9e98d9336b2dc.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_22d8c26640e441b6287b7a4b84efc77e2117eb98.pyx
Couldn't find 'b'
Couldn't find 'b'
ok
@@ -20104,7 +20140,7 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_75e717ff146fd734e5bd6ad3850dfc65ae88314f.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_ba5e0b07b45914c71cff9fa4f45d9dd8f738f578.pyx:5:8: Cannot assign to or delete this
Error compiling Cython file:
------------------------------------------------------------
@@ -20117,11 +20153,17 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_92e14e81147f8d8f6b90f56fa262ed630bbff636.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_8cf841af40f6a3d602377618b22fd9670d37f5f2.pyx:5:8: Cannot assign to or delete this
ok
test_dict (test_fstring.TestCase) ... ok
test_docstring (test_fstring.TestCase) ... ok
test_double_braces (test_fstring.TestCase) ... ok
test_double_braces (test_fstring.TestCase) ... Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_d4d443ec714187468766929ed5a6b45235a4ea26.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_ab4ab9078a7fa987837ed476d902ae03506a9a82.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5725ef616860f74088f8ed5b08d210dd8d1809e.pyx
ok
test_empty_format_specifier (test_fstring.TestCase) ... ok
test_errors (test_fstring.TestCase) ... ok
test_expressions_with_triple_quoted_strings (test_fstring.TestCase) ... ok
@@ -20135,51 +20177,45 @@
test_literal (test_fstring.TestCase) ... ok
test_locals (test_fstring.TestCase) ... ok
test_loop (test_fstring.TestCase) ... ok
test_many_expressions (test_fstring.TestCase) ... warning: /home/marcel/.cython/inline/_cython_inline_bc923a597f5dfe991e954230c2adef97e08e4aec.pyx:6:4: Unreachable code
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_00dcd686a3750f4ca18ed206030621cd023195fa.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_f5fdf3001154287ce06d1725792e86fa2eb30760.pyx
Compiling $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx because it changed.
[1/1] Cythonizing $(@D)/TEST_TMP/run/cpp/test_coroutines_pep492/_cython_inline_7069342f19d154ca9ca32712c72b62720aa3a5ce.pyx
Compiling /home/marcel/.cython/inline/_cython_inline_bc923a597f5dfe991e954230c2adef97e08e4aec.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_bc923a597f5dfe991e954230c2adef97e08e4aec.pyx
warning: /home/marcel/.cython/inline/_cython_inline_2760fd43ea9bb1e49d31353ee28aaed3f7888002.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_2760fd43ea9bb1e49d31353ee28aaed3f7888002.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_2760fd43ea9bb1e49d31353ee28aaed3f7888002.pyx
warning: /home/marcel/.cython/inline/_cython_inline_9d1ecd6c8a28f178bd7806c693d941c531b93061.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_9d1ecd6c8a28f178bd7806c693d941c531b93061.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_9d1ecd6c8a28f178bd7806c693d941c531b93061.pyx
warning: /home/marcel/.cython/inline/_cython_inline_df08587a4deb8a33671e664e43dfd3209a8eac96.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_df08587a4deb8a33671e664e43dfd3209a8eac96.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_df08587a4deb8a33671e664e43dfd3209a8eac96.pyx
warning: /home/marcel/.cython/inline/_cython_inline_e3ad640175f4edb54b89e685b6bd245009e40a44.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_e3ad640175f4edb54b89e685b6bd245009e40a44.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_e3ad640175f4edb54b89e685b6bd245009e40a44.pyx
warning: /home/marcel/.cython/inline/_cython_inline_137ab87cfe570f58e96d6632fb9241b4e5a851a3.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_137ab87cfe570f58e96d6632fb9241b4e5a851a3.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_137ab87cfe570f58e96d6632fb9241b4e5a851a3.pyx
warning: /home/marcel/.cython/inline/_cython_inline_8bb2a66e7139bdbc28a0a7954badb25a667d40af.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_8bb2a66e7139bdbc28a0a7954badb25a667d40af.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_8bb2a66e7139bdbc28a0a7954badb25a667d40af.pyx
warning: /home/marcel/.cython/inline/_cython_inline_a2793575c8f77087f104accfe7b8327da2d0ee0c.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_a2793575c8f77087f104accfe7b8327da2d0ee0c.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_a2793575c8f77087f104accfe7b8327da2d0ee0c.pyx
warning: /home/marcel/.cython/inline/_cython_inline_26a0a087ccd1b04dd1467c9635183b0dea6485f1.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_26a0a087ccd1b04dd1467c9635183b0dea6485f1.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_26a0a087ccd1b04dd1467c9635183b0dea6485f1.pyx
warning: /home/marcel/.cython/inline/_cython_inline_f80cb10d5ee5c5f555f92f0f3089b30314114376.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_f80cb10d5ee5c5f555f92f0f3089b30314114376.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_f80cb10d5ee5c5f555f92f0f3089b30314114376.pyx
warning: /home/marcel/.cython/inline/_cython_inline_df04b3dd6ca36a309e3051d98df98274ba8efb82.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_df04b3dd6ca36a309e3051d98df98274ba8efb82.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_df04b3dd6ca36a309e3051d98df98274ba8efb82.pyx
warning: /home/marcel/.cython/inline/_cython_inline_567ad79eee2393c0a5a482e9ff63a4c924750345.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_567ad79eee2393c0a5a482e9ff63a4c924750345.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_567ad79eee2393c0a5a482e9ff63a4c924750345.pyx
warning: /home/marcel/.cython/inline/_cython_inline_03ecda80e48faaf466187042794fc04736dfc0cd.pyx:6:4: Unreachable code
Compiling /home/marcel/.cython/inline/_cython_inline_03ecda80e48faaf466187042794fc04736dfc0cd.pyx because it changed.
[1/1] Cythonizing /home/marcel/.cython/inline/_cython_inline_03ecda80e48faaf466187042794fc04736dfc0cd.pyx
test_many_expressions (test_fstring.TestCase) ... warning: .cython-cache-dir/inline/_cython_inline_0ce8619a6a711021ec8ef314ded382140a64c259.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_0ce8619a6a711021ec8ef314ded382140a64c259.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_0ce8619a6a711021ec8ef314ded382140a64c259.pyx
warning: .cython-cache-dir/inline/_cython_inline_313accec5ea0f2daf839dd7b02adb00db6e91431.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_313accec5ea0f2daf839dd7b02adb00db6e91431.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_313accec5ea0f2daf839dd7b02adb00db6e91431.pyx
warning: .cython-cache-dir/inline/_cython_inline_b1da2e2c1644fffdc4c388aa10afaddfce026066.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_b1da2e2c1644fffdc4c388aa10afaddfce026066.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_b1da2e2c1644fffdc4c388aa10afaddfce026066.pyx
warning: .cython-cache-dir/inline/_cython_inline_2e58db11483c5f86c074d41dde86214b7152928d.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_2e58db11483c5f86c074d41dde86214b7152928d.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_2e58db11483c5f86c074d41dde86214b7152928d.pyx
warning: .cython-cache-dir/inline/_cython_inline_16cea611824bec0baadca81a7e8ffd95338dacad.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_16cea611824bec0baadca81a7e8ffd95338dacad.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_16cea611824bec0baadca81a7e8ffd95338dacad.pyx
warning: .cython-cache-dir/inline/_cython_inline_fee83709b2aa1eb785a699706a80e2f54a8b10c0.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_fee83709b2aa1eb785a699706a80e2f54a8b10c0.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_fee83709b2aa1eb785a699706a80e2f54a8b10c0.pyx
warning: .cython-cache-dir/inline/_cython_inline_25406a944f5b1c0e37edd1158eac5b6a6753de78.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_25406a944f5b1c0e37edd1158eac5b6a6753de78.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_25406a944f5b1c0e37edd1158eac5b6a6753de78.pyx
warning: .cython-cache-dir/inline/_cython_inline_a2b6bd28cf9705a7df225e971901cc4fee9c4be8.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_a2b6bd28cf9705a7df225e971901cc4fee9c4be8.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_a2b6bd28cf9705a7df225e971901cc4fee9c4be8.pyx
warning: .cython-cache-dir/inline/_cython_inline_c3645874d62fd50c4e8bb4dbd20308425e4c863e.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_c3645874d62fd50c4e8bb4dbd20308425e4c863e.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_c3645874d62fd50c4e8bb4dbd20308425e4c863e.pyx
warning: .cython-cache-dir/inline/_cython_inline_83cd63270dc942daa51c485bb9dc4e308e84f10c.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_83cd63270dc942daa51c485bb9dc4e308e84f10c.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_83cd63270dc942daa51c485bb9dc4e308e84f10c.pyx
warning: .cython-cache-dir/inline/_cython_inline_db1e6e5f0ac1636b94f2c30d01de377731151516.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_db1e6e5f0ac1636b94f2c30d01de377731151516.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_db1e6e5f0ac1636b94f2c30d01de377731151516.pyx
warning: .cython-cache-dir/inline/_cython_inline_91598913e2729827b67ad9c51c5ee7037906dbe6.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_91598913e2729827b67ad9c51c5ee7037906dbe6.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_91598913e2729827b67ad9c51c5ee7037906dbe6.pyx
warning: .cython-cache-dir/inline/_cython_inline_0413e6e0de2c63f26a2e373f2dc3969edd12e4dd.pyx:6:4: Unreachable code
Compiling $(@D)/.cython-cache-dir/inline/_cython_inline_0413e6e0de2c63f26a2e373f2dc3969edd12e4dd.pyx because it changed.
[1/1] Cythonizing $(@D)/.cython-cache-dir/inline/_cython_inline_0413e6e0de2c63f26a2e373f2dc3969edd12e4dd.pyx
ok
test_misformed_unicode_character_name (test_fstring.TestCase) ... ok
test_mismatched_braces (test_fstring.TestCase) ... ok
@@ -20223,7 +20259,7 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_75e717ff146fd734e5bd6ad3850dfc65ae88314f.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_ba5e0b07b45914c71cff9fa4f45d9dd8f738f578.pyx:5:8: Cannot assign to or delete this
Error compiling Cython file:
------------------------------------------------------------
@@ -20236,7 +20272,7 @@
       ^
------------------------------------------------------------
/home/marcel/.cython/inline/_cython_inline_92e14e81147f8d8f6b90f56fa262ed630bbff636.pyx:5:8: Cannot assign to or delete this
.cython-cache-dir/inline/_cython_inline_8cf841af40f6a3d602377618b22fd9670d37f5f2.pyx:5:8: Cannot assign to or delete this
ok
test_dict (test_fstring.TestCase) ... ok
test_docstring (test_fstring.TestCase) ... ok
@@ -22592,12 +22628,12 @@
test_attempting_to_send_to_non_generator (yield_from_pep380)
Doctest: yield_from_pep380.test_attempting_to_send_to_non_generator ... ok
test_broken_getattr_handling (yield_from_pep380)
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.c:16301)
    1/0
ZeroDivisionError: integer division or modulo by zero
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.c:16301)
    1/0
@@ -22675,12 +22711,12 @@
test_attempting_to_send_to_non_generator (yield_from_pep380)
Doctest: yield_from_pep380.test_attempting_to_send_to_non_generator ... ok
test_broken_getattr_handling (yield_from_pep380)
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Doctest: yield_from_pep380.test_broken_getattr_handling ... Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.cpp:16315)
    1/0
ZeroDivisionError: integer division or modulo by zero
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at PTR>
Exception ignored in: <yield_from_pep380.test_broken_getattr_handling.<locals>.Broken object at $(POINTER)>
Traceback (most recent call last):
  File "tests/run/yield_from_pep380.pyx", line 574, in yield_from_pep380.test_broken_getattr_handling.Broken.__getattr__ (yield_from_pep380.cpp:16315)
    1/0
@@ -22803,7 +22839,7 @@
test_embed (__main__.EmbedTest) ... make: Fatal error in reader: Makefile, line 3: Unexpected end of line seen
Current working directory $(@D)/Demos/embed
gmake[1]: Entering directory '$(@D)/Demos/embed'
PYTHON='$(@D)/.tox/py$(PYV)/bin/python'
PYTHON='$(PYTHON)'
PYVERSION=3.9
PYPREFIX=/usr
INCDIR=/usr/include/python3.9
@@ -22820,24 +22856,44 @@
gcc -c embedded.c -I/usr/include/python3.9 -I/usr/include/python3.9
gcc -o embedded embedded.o -L'/usr/lib/amd64' -L$(PYTHON_DIR)/config-3.9 -lpython3.9 -lsocket -lnsl -lintl -ldl -lsendfile  -lm -lm 
LD_LIBRARY_PATH='/usr/lib/amd64':$LD_LIBRARY_PATH ./embedded > test.output
'$(@D)/.tox/py$(PYV)/bin/python' assert_equal.py embedded.output test.output
'$(PYTHON)' assert_equal.py embedded.output test.output
Files identical
gmake[1]: Leaving directory '$(@D)/Demos/embed'
make: Fatal error in reader: Makefile, line 3: Unexpected end of line seen
Current working directory $(@D)/Demos/embed
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) c1 ... ok
[-1] compiling (c) hello ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) c1 ... ok
[-1] compiling (cpp) hello ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) c2 ... ok
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) c2 ... ok
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) p1 ... ok
[-1] compiling (c) cdef_keyword ...
=== C/C++ compiler error output: ===
cdef_keyword.c:1178:15: warning: '__pyx_f_12cdef_keyword_f' defined but not used [-Wunused-function]
 1178 | static double __pyx_f_12cdef_keyword_f(double __pyx_v_x) {
      |               ^~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) p1 ... ok
[-1] compiling (cpp) cdef_keyword ...
=== C/C++ compiler error output: ===
cdef_keyword.cpp:1192:15: warning: 'double __pyx_f_12cdef_keyword_f(double)' defined but not used [-Wunused-function]
 1192 | static double __pyx_f_12cdef_keyword_f(double __pyx_v_x) {
      |               ^~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) integrate ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) integrate ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) integrate_cy ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) integrate_cy ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) matrix ... ok
runTest (__main__.CythonCompileTestCase)
@@ -22879,32 +22935,32 @@
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) shrubbery_2 ... 
=== C/C++ compiler error output: ===
shrubbery_2.c:1258:47: warning: '__pyx_f_11shrubbery_2_another_shrubbery' defined but not used [-Wunused-function]
 1258 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
shrubbery_2.c:1266:47: warning: '__pyx_f_11shrubbery_2_another_shrubbery' defined but not used [-Wunused-function]
 1266 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
      |                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) shrubbery_2 ... 
=== C/C++ compiler error output: ===
shrubbery_2.cpp:1272:47: warning: '__pyx_obj_9my_module_Shrubbery* __pyx_f_11shrubbery_2_another_shrubbery(__pyx_obj_9my_module_Shrubbery*)' defined but not used [-Wunused-function]
 1272 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
shrubbery_2.cpp:1280:47: warning: '__pyx_obj_9my_module_Shrubbery* __pyx_f_11shrubbery_2_another_shrubbery(__pyx_obj_9my_module_Shrubbery*)' defined but not used [-Wunused-function]
 1280 | static struct __pyx_obj_9my_module_Shrubbery *__pyx_f_11shrubbery_2_another_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh1) {
      |                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) widen_shrubbery ... 
=== C/C++ compiler error output: ===
widen_shrubbery.c:1210:18: warning: '__pyx_f_15widen_shrubbery_widen_shrubbery' defined but not used [-Wunused-function]
 1210 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
widen_shrubbery.c:1218:18: warning: '__pyx_f_15widen_shrubbery_widen_shrubbery' defined but not used [-Wunused-function]
 1218 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) widen_shrubbery ... 
=== C/C++ compiler error output: ===
widen_shrubbery.cpp:1224:18: warning: 'PyObject* __pyx_f_15widen_shrubbery_widen_shrubbery(__pyx_obj_9my_module_Shrubbery*, PyObject*)' defined but not used [-Wunused-function]
 1224 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
widen_shrubbery.cpp:1232:18: warning: 'PyObject* __pyx_f_15widen_shrubbery_widen_shrubbery(__pyx_obj_9my_module_Shrubbery*, PyObject*)' defined but not used [-Wunused-function]
 1232 | static PyObject *__pyx_f_15widen_shrubbery_widen_shrubbery(struct __pyx_obj_9my_module_Shrubbery *__pyx_v_sh, PyObject *__pyx_v_extra_width) {
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
@@ -23130,6 +23186,18 @@
[-1] compiling (cpp) vector_demo ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) wrapper_vector ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) c1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) c1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) c2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) c2 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) p1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) p1 ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) clone ... ok
runTest (__main__.CythonCompileTestCase)
@@ -23468,42 +23536,10 @@
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) hello ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) hello ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) setup ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) cdef_keyword ...
=== C/C++ compiler error output: ===
cdef_keyword.c:1178:15: warning: '__pyx_f_12cdef_keyword_f' defined but not used [-Wunused-function]
 1178 | static double __pyx_f_12cdef_keyword_f(double __pyx_v_x) {
      |               ^~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) cdef_keyword ...
=== C/C++ compiler error output: ===
cdef_keyword.cpp:1192:15: warning: 'double __pyx_f_12cdef_keyword_f(double)' defined but not used [-Wunused-function]
 1192 | static double __pyx_f_12cdef_keyword_f(double __pyx_v_x) {
      |               ^~~~~~~~~~~~~~~~~~~~~~~~
====================================
ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) integrate ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) integrate ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (c) integrate_cy ... ok
runTest (__main__.CythonCompileTestCase)
[-1] compiling (cpp) integrate_cy ... ok
runTest (__main__.TestCodeFormat) ... ok
----------------------------------------------------------------------
Ran 12114 tests
Ran 12131 tests
OK (skipped=72)
Following tests excluded because of missing dependencies on your system:
@@ -23529,6 +23565,5 @@
   numpy.convolve2
ALL DONE
___________________________________ summary ____________________________________
  py$(PYV): commands succeeded
  py$(PYV): OK
  congratulations :)