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

New Coding Style guide #95

Merged
merged 18 commits into from
May 24, 2022
Merged

New Coding Style guide #95

merged 18 commits into from
May 24, 2022

Conversation

jorgepiloto
Copy link
Member

Partially solves for #64.

To be merged after #85.

@jorgepiloto
Copy link
Member Author

Now that I am reviewing our "Code Style" section, I'm seeing lots of inconsistencies across our "avoid" and "use" cases. Fixing those in this PR.

By the way, Sphinx tabs turned out to be very useful.

@jorgepiloto
Copy link
Member Author

The [blacken-docs] tool is very useful for this. I will add a reference to it in #85.

@jorgepiloto jorgepiloto force-pushed the feat/code-style branch 4 times, most recently from 884d96a to 100dfb4 Compare May 16, 2022 16:21
~~~~~~~~~~~~~~~
Imports should always be placed at the top of the file, just after any
module comments and docstrings and before module globals and
constants. This reduces the likelihood of an `ImportError`_ that
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
constants. This reduces the likelihood of an `ImportError`_ that
constants. This reduces the likelihood of an `ImportError`_ that

Comment on lines +51 to +52
Imports Order
~~~~~~~~~~~~~
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Imports Order
~~~~~~~~~~~~~
Import Order
~~~~~~~~~~~~

Import Namespaces
~~~~~~~~~~~~~~~~~
You should avoid using wildcards in imports because doing so can make it
difficult to detect undefined names. For more information, see `Python
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
difficult to detect undefined names. For more information, see `Python
difficult to detect undefined names. For more information, see `Python

Comment on lines +228 to +230
Protected methods can be called from inherited classes,
unlike private methods, which names are 'mangled' to avoid
these methods from being called from inherited classes.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Protected methods can be called from inherited classes,
unlike private methods, which names are 'mangled' to avoid
these methods from being called from inherited classes.
Protected methods can be called from inherited classes.
For private methods, names are 'mangled' to prevent
these methods from being called from inherited classes.


- Body of a control statement, such as a loop or a select statement
- Body of a conditional statement
- New scope block
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- New scope block
- New scope blocks



def top_level_function():
"""Top level function docstring."""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"""Top level function docstring."""
"""Top-level function docstring."""

Comment on lines +427 to +429
However, an important portion of the behavior that is not self-apparent
should include a note from the developer writing it. Otherwise,
future developers may remove what they see as unnecessary.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
However, an important portion of the behavior that is not self-apparent
should include a note from the developer writing it. Otherwise,
future developers may remove what they see as unnecessary.
However, if code behavior is not self-apparent, it should be documented.
Otherwise, future developers might remove code that they see as unnecessary.

Comment on lines +504 to +507
The following sections provide some `PEP8
<https://www.python.org/dev/peps/pep-0008/>`_ suggestions for removing
ambiguity and preserving consistency. They also address some common pitfalls
when writing Python code.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The following sections provide some `PEP8
<https://www.python.org/dev/peps/pep-0008/>`_ suggestions for removing
ambiguity and preserving consistency. They also address some common pitfalls
when writing Python code.
The following sections provide some `PEP8
<https://www.python.org/dev/peps/pep-0008/>`_ recommendations for removing
ambiguity and preserving consistency. Additionally, they address some common pitfalls
that occur when writing Python code.

def test_fahr_to_kelvin():
np.testing.assert_allclose(12.7778, fahr_to_kelvin(55))

Now, you have only one line of code to verify and can also use
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Now, you have only one line of code to verify and can also use
Now, you have only one line of code to verify. You can also use


If the loop is too complicated for creating a list comprehension,
consider creating small functions and calling these instead. For
example to extract all consonants in a sentence:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
example to extract all consonants in a sentence:
example, to extract all consonants in a sentence:

Security, an ongoing process involving people and practices, ensures application confidentiality, integrity, and availability [#]_.
Any library should be secure and implement good practices that avoid or mitigate possible security risks.
This is especially relevant in libraries that request user input (such as web services).
Because security is a broad topic, we recommend you review this useful Python-specific resource:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Because security is a broad topic, we recommend you review this useful Python-specific resource:
Because security is a broad topic, you should review this useful Python-specific resource:

Co-authored-by: Kathy Pippert <84872299+PipKat@users.noreply.github.com>
@jorgepiloto jorgepiloto merged commit 2731ee9 into main May 24, 2022
@jorgepiloto jorgepiloto deleted the feat/code-style branch May 24, 2022 07:55
@jorgepiloto
Copy link
Member Author

Fixing some code suggestions in a separate PR. Those didn't appear in batch mode.

@jorgepiloto jorgepiloto mentioned this pull request May 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants