AUTHORS
CHANGES
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.cfg
setup.py
pyccel/__init__.py
pyccel/decorators.py
pyccel/epyccel.py
pyccel/version.py
pyccel.egg-info/PKG-INFO
pyccel.egg-info/SOURCES.txt
pyccel.egg-info/dependency_links.txt
pyccel.egg-info/entry_points.txt
pyccel.egg-info/not-zip-safe
pyccel.egg-info/requires.txt
pyccel.egg-info/top_level.txt
pyccel/ast/__init__.py
pyccel/ast/basic.py
pyccel/ast/bind_c.py
pyccel/ast/bitwise_operators.py
pyccel/ast/builtin_imports.py
pyccel/ast/builtins.py
pyccel/ast/class_defs.py
pyccel/ast/core.py
pyccel/ast/cwrapper.py
pyccel/ast/datatypes.py
pyccel/ast/functionalexpr.py
pyccel/ast/headers.py
pyccel/ast/internals.py
pyccel/ast/itertoolsext.py
pyccel/ast/literals.py
pyccel/ast/macros.py
pyccel/ast/mathext.py
pyccel/ast/numpy_wrapper.py
pyccel/ast/numpyext.py
pyccel/ast/omp.py
pyccel/ast/operators.py
pyccel/ast/scipyext.py
pyccel/ast/sympy_helper.py
pyccel/ast/utilities.py
pyccel/ast/variable.py
pyccel/codegen/__init__.py
pyccel/codegen/codegen.py
pyccel/codegen/pipeline.py
pyccel/codegen/python_wrapper.py
pyccel/codegen/utilities.py
pyccel/codegen/compiling/__init__.py
pyccel/codegen/compiling/basic.py
pyccel/codegen/compiling/compilers.py
pyccel/codegen/printing/__init__.py
pyccel/codegen/printing/ccode.py
pyccel/codegen/printing/codeprinter.py
pyccel/codegen/printing/cwrappercode.py
pyccel/codegen/printing/fcode.py
pyccel/codegen/printing/luacode.py
pyccel/codegen/printing/pycode.py
pyccel/commands/__init__.py
pyccel/commands/console.py
pyccel/commands/pyccel_clean.py
pyccel/commands/pyccel_init.py
pyccel/compilers/__init__.py
pyccel/compilers/default_compilers.py
pyccel/complexity/__init__.py
pyccel/complexity/arithmetic.py
pyccel/complexity/basic.py
pyccel/complexity/memory.py
pyccel/errors/__init__.py
pyccel/errors/errors.py
pyccel/errors/messages.py
pyccel/naming/__init__.py
pyccel/naming/cnameclashchecker.py
pyccel/naming/fortrannameclashchecker.py
pyccel/naming/pythonnameclashchecker.py
pyccel/parser/__init__.py
pyccel/parser/base.py
pyccel/parser/extend_tree.py
pyccel/parser/parser.py
pyccel/parser/scope.py
pyccel/parser/semantic.py
pyccel/parser/syntactic.py
pyccel/parser/utilities.py
pyccel/parser/grammar/headers.tx
pyccel/parser/grammar/himi.tx
pyccel/parser/grammar/openacc.tx
pyccel/parser/grammar/openmp.tx
pyccel/parser/grammar/pyccel.tx
pyccel/parser/syntax/__init__.py
pyccel/parser/syntax/basic.py
pyccel/parser/syntax/headers.py
pyccel/parser/syntax/himi.py
pyccel/parser/syntax/openacc.py
pyccel/parser/syntax/openmp.py
pyccel/stdlib/__init__.py
pyccel/stdlib/cwrapper/cwrapper.c
pyccel/stdlib/cwrapper/cwrapper.h
pyccel/stdlib/cwrapper_ndarrays/cwrapper_ndarrays.c
pyccel/stdlib/cwrapper_ndarrays/cwrapper_ndarrays.h
pyccel/stdlib/external/__init__.py
pyccel/stdlib/external/dfftpack.py
pyccel/stdlib/external/fitpack.py
pyccel/stdlib/external/lapack.py
pyccel/stdlib/external/mpi4py.py
pyccel/stdlib/internal/__init__.py
pyccel/stdlib/internal/blas.pyccel
pyccel/stdlib/internal/blas.pyh
pyccel/stdlib/internal/dfftpack.pyccel
pyccel/stdlib/internal/dfftpack.pyh
pyccel/stdlib/internal/fftw.pyh
pyccel/stdlib/internal/fitpack.pyccel
pyccel/stdlib/internal/fitpack.pyh
pyccel/stdlib/internal/hdf5.pyh
pyccel/stdlib/internal/lapack.pyccel
pyccel/stdlib/internal/lapack.pyh
pyccel/stdlib/internal/mpi.pyccel
pyccel/stdlib/internal/mpi.pyh
pyccel/stdlib/internal/mpiext.py
pyccel/stdlib/internal/openacc.pyccel
pyccel/stdlib/internal/openacc.pyh
pyccel/stdlib/internal/openmp.py
pyccel/stdlib/internal/openmp.pyccel
pyccel/stdlib/internal/openmp.pyh
pyccel/stdlib/math/pyc_math_c.c
pyccel/stdlib/math/pyc_math_c.h
pyccel/stdlib/math/pyc_math_f90.f90
pyccel/stdlib/ndarrays/ndarrays.c
pyccel/stdlib/ndarrays/ndarrays.h
pyccel/stdlib/parallel/__init__.py
pyccel/stdlib/parallel/mpi.py
pyccel/symbolic/__init__.py
pyccel/symbolic/lambdify.py
pyccel/utilities/__init__.py
pyccel/utilities/metaclasses.py
pyccel/utilities/stage.py
pyccel/utilities/strings.py
samples/README.rst
samples/mxm.py
samples/mxm_openmp.py
tests/conftest.py
tests/run_tests.bat
tests/run_tests_py3.sh
tests/ast/test_basic.py
tests/ast/scripts/cyclic_dependence.py
tests/ast/scripts/math.py
tests/codegen/ccode/test_ccode_codegen.py
tests/codegen/ccode/scripts/arrays.py
tests/codegen/ccode/scripts/arrays_create.py
tests/codegen/ccode/scripts/arrays_indexing.py
tests/codegen/ccode/scripts/arrays_pointers.py
tests/codegen/ccode/scripts/arrays_slicing.py
tests/codegen/ccode/scripts/functions.py
tests/codegen/ccode/scripts/ifs.py
tests/codegen/ccode/scripts/loops.py
tests/codegen/ccode/scripts/whiles.py
tests/codegen/fcode/test_fcode_codegen.py
tests/codegen/fcode/scripts/CommentBlock.py
tests/codegen/fcode/scripts/Functional_Stmts.py
tests/codegen/fcode/scripts/ListComprehension.py
tests/codegen/fcode/scripts/USELESS_EXPRESSION.py
tests/codegen/fcode/scripts/arrays.py
tests/codegen/fcode/scripts/calls.py
tests/codegen/fcode/scripts/classes.py
tests/codegen/fcode/scripts/classes_2.py
tests/codegen/fcode/scripts/classes_3.py
tests/codegen/fcode/scripts/classes_4.py
tests/codegen/fcode/scripts/complex_numbers.py
tests/codegen/fcode/scripts/concatenation.py
tests/codegen/fcode/scripts/context.py
tests/codegen/fcode/scripts/decorators.py
tests/codegen/fcode/scripts/decorators_elemental.py
tests/codegen/fcode/scripts/decorators_pure.py
tests/codegen/fcode/scripts/decorators_types.py
tests/codegen/fcode/scripts/expressions.py
tests/codegen/fcode/scripts/functions.py
tests/codegen/fcode/scripts/functions_inout.py
tests/codegen/fcode/scripts/generic_methods.py
tests/codegen/fcode/scripts/headers.py
tests/codegen/fcode/scripts/ifs.py
tests/codegen/fcode/scripts/imports.py
tests/codegen/fcode/scripts/issue_177.py
tests/codegen/fcode/scripts/lists.py
tests/codegen/fcode/scripts/loops.py
tests/codegen/fcode/scripts/macros.py
tests/codegen/fcode/scripts/matrix_assembly.py
tests/codegen/fcode/scripts/matrix_mul.py
tests/codegen/fcode/scripts/multiple_assign.py
tests/codegen/fcode/scripts/numpyext.py
tests/codegen/fcode/scripts/precision.py
tests/codegen/fcode/scripts/recursive_functions.py
tests/codegen/fcode/scripts/returns.py
tests/codegen/fcode/scripts/tuples.py
tests/codegen/fcode/scripts/whiles.py
tests/codegen/pycode/test_pycode_codegen.py
tests/codegen/pycode/scripts/loops.py
tests/complexity/test_complexity.py
tests/complexity/scripts/ex.py
tests/epyccel/Module_1.py
tests/epyccel/README.rst
tests/epyccel/test_array_as_func_args.py
tests/epyccel/test_arrays.py
tests/epyccel/test_arrays_multiple_assignments.py
tests/epyccel/test_base.py
tests/epyccel/test_bitwise.py
tests/epyccel/test_builtins.py
tests/epyccel/test_class_expressions.py
tests/epyccel/test_compare_expressions.py
tests/epyccel/test_docstrings.py
tests/epyccel/test_epyccel_IfTernaryOperator.py
tests/epyccel/test_epyccel_complex_func.py
tests/epyccel/test_epyccel_decorators.py
tests/epyccel/test_epyccel_default_args.py
tests/epyccel/test_epyccel_division.py
tests/epyccel/test_epyccel_functions.py
tests/epyccel/test_epyccel_generators.py
tests/epyccel/test_epyccel_mod.py
tests/epyccel/test_epyccel_modules.py
tests/epyccel/test_epyccel_multi_rank.py
tests/epyccel/test_epyccel_openmp.py
tests/epyccel/test_epyccel_optional_args.py
tests/epyccel/test_epyccel_pow.py
tests/epyccel/test_epyccel_python_annotations.py
tests/epyccel/test_epyccel_transpose.py
tests/epyccel/test_epyccel_types.py
tests/epyccel/test_external_functions.py
tests/epyccel/test_functionals.py
tests/epyccel/test_generic_functions.py
tests/epyccel/test_higherorder_functions.py
tests/epyccel/test_imports.py
tests/epyccel/test_kind.py
tests/epyccel/test_loops.py
tests/epyccel/test_mpi_collective.py
tests/epyccel/test_mpi_point_to_point.py
tests/epyccel/test_multiple_results.py
tests/epyccel/test_parallel_epyccel.py
tests/epyccel/test_pointers.py
tests/epyccel/test_return.py
tests/epyccel/test_strings.py
tests/epyccel/test_tuples.py
tests/epyccel/utilities.py
tests/epyccel/modules/Module_1.py
tests/epyccel/modules/Module_2.py
tests/epyccel/modules/Module_3.py
tests/epyccel/modules/Module_4.py
tests/epyccel/modules/Module_5.py
tests/epyccel/modules/Module_6.py
tests/epyccel/modules/Module_7.py
tests/epyccel/modules/Module_8.py
tests/epyccel/modules/__init__.py
tests/epyccel/modules/array_consts.py
tests/epyccel/modules/arrays.py
tests/epyccel/modules/awkward_names.py
tests/epyccel/modules/base.py
tests/epyccel/modules/bitwise.py
tests/epyccel/modules/call_user_defined_funcs.py
tests/epyccel/modules/complex_func.py
tests/epyccel/modules/consts.py
tests/epyccel/modules/external_functions.py
tests/epyccel/modules/functionals.py
tests/epyccel/modules/generic_functions.py
tests/epyccel/modules/generic_functions_2.py
tests/epyccel/modules/highorder_functions.py
tests/epyccel/modules/loops.py
tests/epyccel/modules/mpi_collective.py
tests/epyccel/modules/mpi_point_to_point.py
tests/epyccel/modules/multi_rank.py
tests/epyccel/modules/openmp.py
tests/epyccel/modules/pointers.py
tests/epyccel/modules/python_annotations.py
tests/epyccel/modules/strings.py
tests/epyccel/modules/tuples.py
tests/epyccel/modules/types.py
tests/epyccel/recognised_functions/test_epyccel_pyc_math.py
tests/epyccel/recognised_functions/test_math_funcs.py
tests/epyccel/recognised_functions/test_numpy_funcs.py
tests/epyccel/recognised_functions/test_numpy_types.py
tests/errors/test_errors.py
tests/errors/codegen/fortran/FORTRAN_ALLOCATABLE_IN_EXPRESSION.py
tests/errors/codegen/fortran/randint.py
tests/errors/known_bugs/cross.py
tests/errors/known_bugs/dicts.py
tests/errors/known_bugs/ex3.py
tests/errors/known_bugs/ex4.py
tests/errors/known_bugs/generic_methods.py
tests/errors/known_bugs/header_interface.py
tests/errors/known_bugs/inheritance.py
tests/errors/known_bugs/lambdas.py
tests/errors/semantic/blocking/ADD_ARRAYS_INCOMPATIBLE_SHAPES_0.py
tests/errors/semantic/blocking/ADD_ARRAYS_INCOMPATIBLE_SHAPES_1.py
tests/errors/semantic/blocking/COMPLEX_TYPE.py
tests/errors/semantic/blocking/CONST_ASSIGNED_ARGUMENT.py
tests/errors/semantic/blocking/CONST_ASSIGNED_ARGUMENT2.py
tests/errors/semantic/blocking/DECORATOR_WRONG_NUMBER_TYPES.py
tests/errors/semantic/blocking/HEADER_WRONG_NUMBER_TYPES.py
tests/errors/semantic/blocking/HEADER_WRONG_NUMBER_TYPES_INCLASS.py
tests/errors/semantic/blocking/IMPORTING_EXISTING_IDENTIFIED.py
tests/errors/semantic/blocking/IMPORTING_EXISTING_IDENTIFIED2.py
tests/errors/semantic/blocking/IMPORTING_EXISTING_IDENTIFIED3.py
tests/errors/semantic/blocking/INHOMOG_LIST.py
tests/errors/semantic/blocking/INIT_NDARRAY_WITH_INHOMOG_LIST.py
tests/errors/semantic/blocking/INTERFACE_WRONG_TYPES.py
tests/errors/semantic/blocking/LIST_OF_TUPLES.py
tests/errors/semantic/blocking/NUMPY_WHERE_SINGLE_ARGUMENT.py
tests/errors/semantic/blocking/OPENMP_loop_check.py
tests/errors/semantic/blocking/OPENMP_parallel_for_check.py
tests/errors/semantic/blocking/OPENMP_simd_check.py
tests/errors/semantic/blocking/RECURSIVE_RESULTS_REQUIRED_decorator.py
tests/errors/semantic/blocking/RECURSIVE_RESULTS_REQUIRED_header.py
tests/errors/semantic/blocking/TEMPLATE_WRONG_TYPE_CALL.py
tests/errors/semantic/blocking/TOO_MANY_ARGS.py
tests/errors/semantic/blocking/UNDEFINED_LAMBDA_FUNCTION.py
tests/errors/semantic/blocking/UNDEFINED_LAMBDA_VARIABLE.py
tests/errors/semantic/blocking/UNRECOGNISED_FUNCTION_CALL.py
tests/errors/semantic/blocking/ex1.py
tests/errors/semantic/blocking/ex2.py
tests/errors/semantic/blocking/ex3.py
tests/errors/semantic/blocking/ex4.py
tests/errors/semantic/blocking/ex5.py
tests/errors/semantic/blocking/str_join.py
tests/errors/semantic/blocking/str_join2.py
tests/errors/semantic/non_blocking/INCOMPATIBLE_ARGUMENT.py
tests/errors/semantic/non_blocking/INCOMPATIBLE_ARGUMENT2.py
tests/errors/semantic/non_blocking/INCOMPATIBLE_TYPES_IN_ASSIGNMENT_1.py
tests/errors/semantic/non_blocking/INCOMPATIBLE_TYPES_IN_ASSIGNMENT_2.py
tests/errors/semantic/non_blocking/INCOMPATIBLE_TYPES_IN_ASSIGNMENT_3.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_ISNOT_complex.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_ISNOT_float.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_ISNOT_integer.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_ISNOT_string.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_IS_complex.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_IS_float.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_IS_integer.py
tests/errors/semantic/non_blocking/PRIMITIVE_IMMUTABLE_RESTRICTION_IS_string.py
tests/errors/semantic/non_blocking/PYCCEL_RESTRICTION_LIST_COMPREHENSION_LIMITS.py
tests/errors/semantic/non_blocking/TOO_FEW_ARGS.py
tests/errors/semantic/non_blocking/UNKNOWN_IMPORT.py
tests/errors/semantic/non_blocking/UNKNOWN_IMPORT2.py
tests/errors/semantic/non_blocking/ex6.py
tests/errors/semantic/non_blocking/is.py
tests/errors/semantic/non_blocking/var_is_none.py
tests/errors/syntax_blockers/dict_str_keys.py
tests/errors/syntax_blockers/ex1.py
tests/errors/syntax_blockers/functions_in_template.py
tests/errors/syntax_blockers/functions_in_uniontype.py
tests/errors/syntax_blockers/import_star.py
tests/errors/syntax_blockers/imports.py
tests/errors/syntax_errors/TEMPLATE_WRONG_KEY.py
tests/errors/syntax_errors/TEMPLATE_WRONG_NUMBER_ARGS.py
tests/errors/syntax_errors/list_comprehension_no_assign.py
tests/errors/syntax_errors/raise.py
tests/errors/syntax_errors/try.py
tests/errors/syntax_errors/types_arg.py
tests/errors/syntax_errors/types_arg_type.py
tests/errors/syntax_errors/yield.py
tests/external/test_external.py
tests/external/scripts/lapack/ex1.py
tests/external/scripts/mpi4py/allreduce.py
tests/external/scripts/mpi4py/bcast.py
tests/external/scripts/mpi4py/gather.py
tests/external/scripts/mpi4py/np_Allreduce.py
tests/external/scripts/mpi4py/np_Bcast.py
tests/external/scripts/mpi4py/np_Gather.py
tests/external/scripts/mpi4py/np_Reduce.py
tests/external/scripts/mpi4py/np_Sendrecv.py
tests/external/scripts/mpi4py/np_point_to_point.py
tests/external/scripts/mpi4py/np_point_to_point_2.py
tests/external/scripts/mpi4py/np_point_to_point_3.py
tests/external/scripts/mpi4py/point_to_point.py
tests/external/scripts/mpi4py/point_to_point_2.py
tests/external/scripts/mpi4py/point_to_point_3.py
tests/external/scripts/mpi4py/reduce.py
tests/external/scripts/mpi4py/sendrecv.py
tests/external/scripts/mpi4py/who_am_i.py
tests/external/scripts/mpi4py/bugs/ex6.py
tests/external/scripts/mpi4py/bugs/ex8.py
tests/internal/test_internal.py
tests/internal/scripts/blas/ex1.py
tests/internal/scripts/blas/ex2.py
tests/internal/scripts/blas/ex3.py
tests/internal/scripts/blas/ex4.py
tests/internal/scripts/blas/ex5.py
tests/internal/scripts/lapack/ex1.py
tests/internal/scripts/mpi/allgather.py
tests/internal/scripts/mpi/allreduce.py
tests/internal/scripts/mpi/alltoall.py
tests/internal/scripts/mpi/bcast.py
tests/internal/scripts/mpi/column.py
tests/internal/scripts/mpi/gather.py
tests/internal/scripts/mpi/line.py
tests/internal/scripts/mpi/nonblocking.py
tests/internal/scripts/mpi/point_to_point_1.py
tests/internal/scripts/mpi/point_to_point_2.py
tests/internal/scripts/mpi/reduce.py
tests/internal/scripts/mpi/scatter.py
tests/internal/scripts/mpi/sendrecv.py
tests/internal/scripts/mpi/sendrecv_replace.py
tests/internal/scripts/mpi/split.py
tests/internal/scripts/mpi/who_am_i.py
tests/internal/scripts/openacc/ex1.py
tests/internal/scripts/openacc/sum.py
tests/internal/scripts/openacc/sum_kernels.py
tests/internal/scripts/openmp/ex1.py
tests/internal/scripts/openmp/ex2.py
tests/macro/test_macro.py
tests/macro/scripts/MPI/allreduce.py
tests/macro/scripts/MPI/bcast.py
tests/macro/scripts/MPI/gather.py
tests/macro/scripts/MPI/mpi4py.py
tests/macro/scripts/MPI/np_Allreduce.py
tests/macro/scripts/MPI/np_Bcast.py
tests/macro/scripts/MPI/np_Gather.py
tests/macro/scripts/MPI/np_Reduce.py
tests/macro/scripts/MPI/np_Sendrecv.py
tests/macro/scripts/MPI/np_point_to_point.py
tests/macro/scripts/MPI/np_point_to_point_2.py
tests/macro/scripts/MPI/np_point_to_point_3.py
tests/macro/scripts/MPI/point_to_point.py
tests/macro/scripts/MPI/point_to_point_2.py
tests/macro/scripts/MPI/point_to_point_3.py
tests/macro/scripts/MPI/reduce.py
tests/macro/scripts/MPI/sendrecv.py
tests/macro/scripts/MPI/who_am_i.py
tests/macro/scripts/MPI/bug/ex6.py
tests/macro/scripts/MPI/bug/ex8.py
tests/macro/scripts/blas/runtest_daxpy.py
tests/macro/scripts/blas/runtest_dcopy.py
tests/macro/scripts/blas/runtest_dgemm.py
tests/macro/scripts/blas/runtest_dgemv.py
tests/macro/scripts/blas/runtest_dger.py
tests/macro/scripts/blas/runtest_dscal.py
tests/macro/scripts/blas/runtest_dswap.py
tests/macro/scripts/blas/bugs/dnrm2.py
tests/macro/scripts/lapack/runtest_dgbtrf.py
tests/ndarrays/conftest.py
tests/ndarrays/leaks_check.py
tests/ndarrays/test_ndarrays.c
tests/parser/test_comments.py
tests/parser/test_headers.py
tests/parser/test_himi.py
tests/parser/test_openacc.py
tests/parser/test_openmp.py
tests/parser/scripts/comments.py
tests/preprocess/test_preprocess.py
tests/preprocess/scripts/omp.py
tests/pyccel/run_import_function.py
tests/pyccel/test_pyccel.py
tests/pyccel/project_abs_imports/runtest.py
tests/pyccel/project_abs_imports/project/__init__.py
tests/pyccel/project_abs_imports/project/folder1/__init__.py
tests/pyccel/project_abs_imports/project/folder1/mod1.py
tests/pyccel/project_abs_imports/project/folder2/__init__.py
tests/pyccel/project_abs_imports/project/folder2/mod2.py
tests/pyccel/project_abs_imports/project/folder2/mod3.py
tests/pyccel/project_rel_imports/runtest.py
tests/pyccel/project_rel_imports/project/__init__.py
tests/pyccel/project_rel_imports/project/folder1/__init__.py
tests/pyccel/project_rel_imports/project/folder1/mod1.py
tests/pyccel/project_rel_imports/project/folder2/__init__.py
tests/pyccel/project_rel_imports/project/folder2/mod2.py
tests/pyccel/project_rel_imports/project/folder2/mod3.py
tests/pyccel/scripts/__init__.py
tests/pyccel/scripts/arrays_view.py
tests/pyccel/scripts/basic_header.pyh
tests/pyccel/scripts/bool_comp.py
tests/pyccel/scripts/c_arrays.py
tests/pyccel/scripts/decorators_elemental.py
tests/pyccel/scripts/decorators_inline.py
tests/pyccel/scripts/default_args_mod.py
tests/pyccel/scripts/expressions.py
tests/pyccel/scripts/funcs.py
tests/pyccel/scripts/generic_functions.py
tests/pyccel/scripts/lapack_subroutine.py
tests/pyccel/scripts/module_init.py
tests/pyccel/scripts/module_init2.py
tests/pyccel/scripts/print_sp_and_end.py
tests/pyccel/scripts/print_strings.py
tests/pyccel/scripts/runtest_decorators_inline.py
tests/pyccel/scripts/runtest_default_args.py
tests/pyccel/scripts/runtest_degree_in.py
tests/pyccel/scripts/runtest_folder_imports.py
tests/pyccel/scripts/runtest_funcs.py
tests/pyccel/scripts/runtest_function_alias.py
tests/pyccel/scripts/runtest_generic_functions.py
tests/pyccel/scripts/runtest_imports.py
tests/pyccel/scripts/runtest_inoutfunc.py
tests/pyccel/scripts/runtest_module_init.py
tests/pyccel/scripts/runtest_module_init2.py
tests/pyccel/scripts/runtest_multiple_results.py
tests/pyccel/scripts/runtest_type_print.py
tests/pyccel/scripts/classes/classes.py
tests/pyccel/scripts/classes/classes_1.py
tests/pyccel/scripts/classes/classes_5.py
tests/pyccel/scripts/folder1/__init__.py
tests/pyccel/scripts/folder1/folder1_funcs.py
tests/pyccel/scripts/folder2/__init__.py
tests/pyccel/scripts/folder2/folder2_funcs.py
tests/pyccel/scripts/folder2/runtest_imports2.py
tests/pyccel/scripts/folder2/runtest_rel_imports.py
tests/pyccel/scripts/hope_benchmarks/hope_fib.py
tests/pyccel/scripts/hope_benchmarks/hope_ln_python.py
tests/pyccel/scripts/hope_benchmarks/hope_pairwise_python.py
tests/pyccel/scripts/hope_benchmarks/hope_pisum.py
tests/pyccel/scripts/hope_benchmarks/point_spread_func.py
tests/pyccel/scripts/hope_benchmarks/quicksort.py
tests/pyccel/scripts/hope_benchmarks/simplify.py
tests/pyccel/scripts/hope_benchmarks_decorators/fib.py
tests/pyccel/scripts/hope_benchmarks_decorators/hope_ln_python.py
tests/pyccel/scripts/hope_benchmarks_decorators/hope_pairwise_python.py
tests/pyccel/scripts/hope_benchmarks_decorators/point_spread_func.py
tests/pyccel/scripts/hope_benchmarks_decorators/quicksort.py
tests/pyccel/scripts/hope_benchmarks_decorators/simplify.py
tests/pyccel/scripts/import_syntax/collisions2.py
tests/pyccel/scripts/import_syntax/collisions3.py
tests/pyccel/scripts/import_syntax/collisions4.py
tests/pyccel/scripts/import_syntax/collisions5.py
tests/pyccel/scripts/import_syntax/from_mod_import.py
tests/pyccel/scripts/import_syntax/from_mod_import_as.py
tests/pyccel/scripts/import_syntax/from_mod_import_as_func.py
tests/pyccel/scripts/import_syntax/from_mod_import_as_user.py
tests/pyccel/scripts/import_syntax/from_mod_import_as_user_func.py
tests/pyccel/scripts/import_syntax/from_mod_import_func.py
tests/pyccel/scripts/import_syntax/from_mod_import_user.py
tests/pyccel/scripts/import_syntax/from_mod_import_user_func.py
tests/pyccel/scripts/import_syntax/import_mod.py
tests/pyccel/scripts/import_syntax/import_mod_as.py
tests/pyccel/scripts/import_syntax/import_mod_as_func.py
tests/pyccel/scripts/import_syntax/import_mod_as_user.py
tests/pyccel/scripts/import_syntax/import_mod_as_user_func.py
tests/pyccel/scripts/import_syntax/import_mod_func.py
tests/pyccel/scripts/import_syntax/import_mod_user.py
tests/pyccel/scripts/import_syntax/import_mod_user_func.py
tests/pyccel/scripts/import_syntax/user_mod.py
tests/pyccel/scripts/import_syntax/user_mod2.py
tests/pyccel/scripts/numpy/numpy_kernels.py
tests/semantic/test_semantic.py
tests/semantic/scripts/calls.py
tests/semantic/scripts/classes.py
tests/semantic/scripts/expressions.py
tests/semantic/scripts/functions.py
tests/semantic/scripts/ifs.py
tests/semantic/scripts/imports.py
tests/semantic/scripts/lists.py
tests/semantic/scripts/loops.py
tests/semantic/scripts/tuples.py
tests/semantic/scripts/whiles.py
tests/semantic/scripts/zeros.py
tests/symbolic/test_symbolic.py
tests/symbolic/scripts/decorator.py
tests/symbolic/scripts/lambdas.py
tests/symbolic/scripts/neural_net.py
tests/syntax/test_syntax.py
tests/syntax/scripts/Functional_Stmts.py
tests/syntax/scripts/annotated_comments.py
tests/syntax/scripts/asserts.py
tests/syntax/scripts/breaks.py
tests/syntax/scripts/calls.py
tests/syntax/scripts/class_member_index.py
tests/syntax/scripts/classes.py
tests/syntax/scripts/dels.py
tests/syntax/scripts/dots.py
tests/syntax/scripts/expressions.py
tests/syntax/scripts/functions.py
tests/syntax/scripts/ifs.py
tests/syntax/scripts/imports.py
tests/syntax/scripts/lists.py
tests/syntax/scripts/loops.py
tests/syntax/scripts/prints.py
tests/syntax/scripts/slice.py
tests/syntax/scripts/tuples.py
tests/syntax/scripts/whiles.py
tests/syntax/scripts/zeros.py
tests/warnings/test_warnings.py
tests/warnings/semantic/DECORATOR_WRONG_NUMBER_TYPES.py
tests/warnings/semantic/FOUND_DUPLICATED_IMPORT.py
tests/warnings/semantic/HEADER_WRONG_NUMBER_TYPES.py
tests/warnings/semantic/HEADER_WRONG_NUMBER_TYPES_INCLASS.py
tests/warnings/semantic/UNDEFINED_DECORATOR.py
tests/warnings/semantic/UNDEFINED_DECORATORS.py
tutorial/builtin-functions.md
tutorial/compiler.md
tutorial/const_keyword.md
tutorial/decorators.md
tutorial/function-pointers-as-arguments.md
tutorial/header-files.md
tutorial/ndarrays.md
tutorial/numpy-functions.md
tutorial/openmp.md
tutorial/quickstart.md
tutorial/templates.md