Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List support: append method #1709

Merged
merged 83 commits into from
Feb 14, 2024

Add missing __all__ to list_methods.py

2d23899
Select commit
Loading
Failed to load commit list.
Merged

List support: append method #1709

Add missing __all__ to list_methods.py
2d23899
Select commit
Loading
Failed to load commit list.
Pyccel Bot / Pyccel best practices (pyccel_lint, 3.8) succeeded Feb 14, 2024 in 1m 4s

Pyccel Linting

Check Slots:

Non-alphabetical __all__ :

  • pyccel.ast.basic

  • pyccel.ast.class_defs

  • pyccel.ast.datatypes

  • pyccel.ast.literals

  • pyccel.ast.mathext

  • pyccel.ast.cmathext

  • pyccel.ast.operators

  • pyccel.ast.numpyext

  • pyccel.ast.bitwise_operators

  • pyccel.ast.omp

  • pyccel.ast.sympy_helper

  • pyccel.ast.cwrapper

  • pyccel.ast.type_annotations

  • pyccel.ast.numpy_wrapper

Pylint Interaction:

  • Unexpected pylint disables found in tests/macro/scripts/blas/runtest_dgemm.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/macro/scripts/blas/runtest_dscal.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/macro/scripts/blas/runtest_dcopy.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/macro/scripts/blas/runtest_daxpy.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/macro/scripts/blas/runtest_dger.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/macro/scripts/blas/runtest_dgemv.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/macro/scripts/blas/runtest_dswap.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/macro/scripts/lapack/runtest_dgbtrf.py: undefined-variable, unused-import

  • Unexpected pylint disables found in tests/ndarrays/conftest.py: arguments-differ, inconsistent-return-statements, protected-access, abstract-method

Annotations

Check warning on line 32 in pyccel/ast/class_defs.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/class_defs.py#L23-L32

Sort the __all__ attribute of `class_defs`

Check warning on line 57 in pyccel/ast/datatypes.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/datatypes.py#L19-L57

Sort the __all__ attribute of `datatypes`

Check warning on line 26 in pyccel/ast/literals.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/literals.py#L13-L26

Sort the __all__ attribute of `literals`

Check warning on line 73 in pyccel/ast/mathext.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/mathext.py#L15-L73

Sort the __all__ attribute of `mathext`

Check warning on line 46 in pyccel/ast/cmathext.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/cmathext.py#L21-L46

Sort the __all__ attribute of `cmathext`

Check warning on line 61 in pyccel/ast/operators.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/operators.py#L31-L61

Sort the __all__ attribute of `operators`

Check warning on line 119 in pyccel/ast/numpyext.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/numpyext.py#L43-L119

Sort the __all__ attribute of `numpyext`

Check warning on line 26 in pyccel/ast/bitwise_operators.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/bitwise_operators.py#L17-L26

Sort the __all__ attribute of `bitwise_operators`

Check warning on line 31 in pyccel/ast/omp.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/omp.py#L15-L31

Sort the __all__ attribute of `omp`

Check warning on line 27 in pyccel/ast/sympy_helper.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/sympy_helper.py#L26-L27

Sort the __all__ attribute of `sympy_helper`

Check warning on line 77 in pyccel/ast/cwrapper.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/cwrapper.py#L39-L77

Sort the __all__ attribute of `cwrapper`

Check warning on line 23 in pyccel/ast/type_annotations.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/type_annotations.py#L18-L23

Sort the __all__ attribute of `type_annotations`

Check warning on line 49 in pyccel/ast/numpy_wrapper.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

pyccel/ast/numpy_wrapper.py#L33-L49

Sort the __all__ attribute of `numpy_wrapper`

Check warning on line 1 in tests/macro/scripts/blas/runtest_dgemm.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/blas/runtest_dgemm.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 1 in tests/macro/scripts/blas/runtest_dscal.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/blas/runtest_dscal.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 1 in tests/macro/scripts/blas/runtest_dcopy.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/blas/runtest_dcopy.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 1 in tests/macro/scripts/blas/runtest_daxpy.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/blas/runtest_daxpy.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 1 in tests/macro/scripts/blas/runtest_dger.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/blas/runtest_dger.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 1 in tests/macro/scripts/blas/runtest_dgemv.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/blas/runtest_dgemv.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 1 in tests/macro/scripts/blas/runtest_dswap.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/blas/runtest_dswap.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 1 in tests/macro/scripts/lapack/runtest_dgbtrf.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/macro/scripts/lapack/runtest_dgbtrf.py#L1

Unexpected pylint disables: undefined-variable, unused-import

Check warning on line 2 in tests/ndarrays/conftest.py

See this annotation in the file changed.

@pyccel-bot pyccel-bot / Pyccel best practices (pyccel_lint, 3.8)

tests/ndarrays/conftest.py#L2

Unexpected pylint disables: arguments-differ, inconsistent-return-statements, protected-access, abstract-method