-
Notifications
You must be signed in to change notification settings - Fork 9
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
Conversation
d1c5f54
to
5b77345
Compare
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. |
The [blacken-docs] tool is very useful for this. I will add a reference to it in #85. |
884d96a
to
100dfb4
Compare
1406138
to
012a375
Compare
012a375
to
cf6481b
Compare
~~~~~~~~~~~~~~~ | ||
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
constants. This reduces the likelihood of an `ImportError`_ that | |
constants. This reduces the likelihood of an `ImportError`_ that |
Imports Order | ||
~~~~~~~~~~~~~ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
difficult to detect undefined names. For more information, see `Python | |
difficult to detect undefined names. For more information, see `Python |
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- New scope block | |
- New scope blocks |
|
||
|
||
def top_level_function(): | ||
"""Top level function docstring.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"""Top level function docstring.""" | |
"""Top-level function docstring.""" |
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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. |
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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>
Fixing some code suggestions in a separate PR. Those didn't appear in batch mode. |
Partially solves for #64.
To be merged after #85.