Follow PEP8 with the following exceptions/additions:
Every text file should contain exactly one empty line at the end.
Allowed end-of-line character sequence is Unix-style (\n
, LF) only.
In CamelCase names, keep abbreviations capitalized. For example: CANTransport
, not CanTransport
; IEEE802154Transport
, not Ieee802154Transport
.
Name all entities with a leading underscore, including modules and packages, excepting those that are part of the package API. Re-export entities that should be public from their sub-package's __init__.py
. See https://github.com/sphinx-doc/sphinx/issues/6574#issuecomment-511122156
When re-exporting entities from a package-level __init__.py
, always use the form import ... as ...
even if the name is not changed, to signal static analysis tools that the name is intended to be re-exported (unless the aliased name starts with an underscore). This is enforceable with MyPy.
Do not raise exceptions from properties. Generally, a property should always return its value. If the availability of the value is conditional, consider using a getter method instead.
Annotate types of all functions, methods, and properties, whether private or public. Enforce type correctness with MyPy using the following (or stricter) settings (example shown is an excerpt from setup.cfg
):
MyPy static type checking options
[mypy]
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
check_untyped_defs = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
Also, use the following command-line options with MyPy: --strict --strict-equality --no-implicit-reexport
.
All public entities should be documented in ReST, unless they are simple enough for their purpose to be evident without explicit documentation. Do not write in prose what can be expressed in code; for example, avoid specifying type information in the docstrings – there are type annotations for that. Never spell out obvious things in the docs.
An example that shows the adopted documentation convention is provided below.
def write(self, data: typing.Union[bytes, str], timeout: typing.Optional[float] = None) -> int:
"""
This method can be invoked concurrently from multiple threads, even if there are other threads blocked on
any of the reading methods.
:param data: Data to transmit.
:param timeout: Timeout in seconds, None for infinity.
:return: Number of bytes written -- always either len(data) or 0 on timeout.
"""
if isinstance(data, str):
data = data.encode()
if not isinstance(data, bytes):
raise ValueError('Invalid data type: %r' % type(data))
try:
if len(data) > 0:
self._txq.put(data, timeout=timeout)
except queue.Full:
return 0
else:
return len(data)
Aim to cover 100% of the code in the branch coverage mode.
Keep simple test cases as close to the tested code as possible: either in doctest or in test functions; in the latter case, use the function name pattern _unittest_*
. Move all complex test code outside of the main codebase into a dedicated package (usually named tests
).