Skip to content

Latest commit

 

History

History
1584 lines (1135 loc) · 48.4 KB

pep8-zh.md

File metadata and controls

1584 lines (1135 loc) · 48.4 KB

简介

这份文档为主 Python 发行版中标准库组成的 Python 代码提供编码约定。请参阅配套的信息 PEP,描述了 Python C 实现中 C 代码的样式指南。

这份文档和 PEP 257(文档字符串约定)改编自 Guido 的原始 Python 风格指南文章,其中还加入了一些来自 Barry 的风格指南的内容。

随着语言本身的变化,这个风格指南会随着时间的推移而不断发展,会识别出额外的约定并因过去的约定被废弃而变得过时。

许多项目都有自己的编码风格指南。在任何冲突情况下,这些特定于项目的指南优先于该项目。

愚蠢的一致性是小心思的魔鬼

Guido 的一个关键洞察是,代码被阅读的次数远远多于编写的次数。这里提供的指南旨在提高代码的可读性,并使其在 Python 代码的广泛范围内保持一致性。正如 PEP 20 所说,“可读性至关重要”。

风格指南关乎一致性。与这个风格指南保持一致性很重要。在项目内部保持一致性更为重要。在一个模块或函数内保持一致性是最重要的。

然而,要知道何时不一致——有时候风格指南的建议并不适用。当你犹豫不决时,请尽量做出最好的判断。查看其他示例并决定哪种看起来最好。并且不要犹豫问!

特别是:不要为了遵守这个 PEP 而破坏向后兼容性!

忽略特定指南的一些其他很好的理由:

  1. 当应用指南会使代码变得不易阅读,即使是习惯于阅读遵循此 PEP 的代码的人也是如此。

  2. 为了与周围代码保持一致性,即使周围代码也打破了它(也许是由于历史原因)——尽管这也是清理别人犯的错误的机会(以真正的 XP 风格)。

  3. 因为问题代码早于指南的引入而无需修改该代码的其他原因。

  4. 当代码需要保持与不支持风格指南推荐功能的旧版本 Python 的兼容性时。

代码布局

缩进

每级缩进使用 4 个空格。

续行应该使用垂直对齐换行的方式,即在括号、方括号和大括号内使用 Python 的隐式换行,或者使用“悬挂缩进”。当使用“悬挂缩进”时,应考虑以下情况:第一行不应有参数,进一步的缩进应用于清晰地将其区分为续行。

# 正确示例:

# 与开放定界符对齐。
foo = long_function_name(var_one, var_two,
                         var_three, var_four)

# 添加 4 个空格(额外的缩进级别)以区分参数和其他部分。
def long_function_name(
        var_one, var_two, var_three,
        var_four):
    print(var_one)

# 悬挂缩进应该添加一个级别。
foo = long_function_name(
    var_one, var_two,
    var_three, var_four)

# 错误示例:

# 当不使用垂直对齐时,第一行禁止有参数。
foo = long_function_name(var_one, var_two,
    var_three, var_four)

# 进一步的缩进要求,因为缩进不可区分。
def long_function_name(
    var_one, var_two, var_three,
    var_four):
    print(var_one)

对于使用悬挂缩进的连续行,4 空格规则是可选的。

# 悬挂的缩进"可以"缩进到4个空格以外的其他空格。
foo = long_function_namevar_onevar_twovar_threevar_four

如果if-语句的条件部分足够长,可以要求将其写成多行,值得注意的是,当if中含有两个或以上条件,后续行可能会自然的产生4个空格缩进。 这可能与嵌套在if语句内的缩进代码集产生视觉冲突,因为该缩进代码自然也将缩进4个空格。 对于如何(或是否)在视觉上进一步将这些条件行与if语句内的嵌套条件区分开来,PEP没有做任何明确的表述。 在这种情况下,可接受的修改选项包括但不限于:

# 无额外缩进。
if (this_is_one_thing and
    that_is_another_thing):
    do_something()

# 添加注释,这将在支持语法高亮的编辑器中提供一些区分。
if (this_is_one_thing and
    that_is_another_thing):
    # 由于两个条件都为真,我们可以进行 frobnicate 操作。
    do_something()

# 在条件续行上添加一些额外缩进。
if (this_is_one_thing
        and that_is_another_thing):
    do_something()

(还请参阅下面关于二进制运算符是在之前还是之后换行的讨论。)

多行结构的闭合括号/方括号/括号可以与列表的最后一行的第一个非空白字符对齐,如下所示:

   my_list = [
       1, 2, 3,
       4, 5, 6,
       ]
   result = some_function_that_takes_arguments(
       'a', 'b', 'c',
       'd', 'e', 'f',
       )

或者可以与开始多行结构的行的第一个字符对齐,如下所示:

   my_list = [
       1, 2, 3,
       4, 5, 6,
   ]
   result = some_function_that_takes_arguments(
       'a', 'b', 'c',
       'd', 'e', 'f',
   )

Tabs or Spaces?

Spaces are the preferred indentation method.

Tabs should be used solely to remain consistent with code that is already indented with tabs.

Python disallows mixing tabs and spaces for indentation.

Maximum Line Length

Limit all lines to a maximum of 79 characters.

For flowing long blocks of text with fewer structural restrictions (docstrings or comments), the line length should be limited to 72 characters.

Limiting the required editor window width makes it possible to have several files open side by side, and works well when using code review tools that present the two versions in adjacent columns.

The default wrapping in most tools disrupts the visual structure of the code, making it more difficult to understand. The limits are chosen to avoid wrapping in editors with the window width set to 80, even if the tool places a marker glyph in the final column when wrapping lines. Some web based tools may not offer dynamic line wrapping at all.

Some teams strongly prefer a longer line length. For code maintained exclusively or primarily by a team that can reach agreement on this issue, it is okay to increase the line length limit up to 99 characters, provided that comments and docstrings are still wrapped at 72 characters.

The Python standard library is conservative and requires limiting lines to 79 characters (and docstrings/comments to 72).

The preferred way of wrapping long lines is by using Python's implied line continuation inside parentheses, brackets and braces. Long lines can be broken over multiple lines by wrapping expressions in parentheses. These should be used in preference to using a backslash for line continuation.

Backslashes may still be appropriate at times. For example, long, multiple with-statements could not use implicit continuation before Python 3.10, so backslashes were acceptable for that case:

.. code-block:: :class: maybe

with open('/path/to/some/file/you/want/to/read') as file_1,
open('/path/to/some/file/being/written', 'w') as file_2: file_2.write(file_1.read())

(See the previous discussion on multiline if-statements_ for further thoughts on the indentation of such multiline with-statements.)

Another such case is with assert statements.

Make sure to indent the continued line appropriately.

Should a Line Break Before or After a Binary Operator?

For decades the recommended style was to break after binary operators. But this can hurt readability in two ways: the operators tend to get scattered across different columns on the screen, and each operator is moved away from its operand and onto the previous line. Here, the eye has to do extra work to tell which items are added and which are subtracted:

.. code-block:: :class: bad

Wrong:

operators sit far away from their operands

income = (gross_wages + taxable_interest + (dividends - qualified_dividends) - ira_deduction - student_loan_interest)

To solve this readability problem, mathematicians and their publishers follow the opposite convention. Donald Knuth explains the traditional rule in his Computers and Typesetting series: "Although formulas within a paragraph always break after binary operations and relations, displayed formulas always break before binary operations" [3]_.

Following the tradition from mathematics usually results in more readable code:

.. code-block:: :class: good

Correct:

easy to match operators with operands

income = (gross_wages + taxable_interest + (dividends - qualified_dividends) - ira_deduction - student_loan_interest)

In Python code, it is permissible to break before or after a binary operator, as long as the convention is consistent locally. For new code Knuth's style is suggested.

Blank Lines

Surround top-level function and class definitions with two blank lines.

Method definitions inside a class are surrounded by a single blank line.

Extra blank lines may be used (sparingly) to separate groups of related functions. Blank lines may be omitted between a bunch of related one-liners (e.g. a set of dummy implementations).

Use blank lines in functions, sparingly, to indicate logical sections.

Python accepts the control-L (i.e. ^L) form feed character as whitespace; many tools treat these characters as page separators, so you may use them to separate pages of related sections of your file. Note, some editors and web-based code viewers may not recognize control-L as a form feed and will show another glyph in its place.

Source File Encoding

Code in the core Python distribution should always use UTF-8, and should not have an encoding declaration.

In the standard library, non-UTF-8 encodings should be used only for test purposes. Use non-ASCII characters sparingly, preferably only to denote places and human names. If using non-ASCII characters as data, avoid noisy Unicode characters like z̯̯͡a̧͎̺l̡͓̫g̹̲o̡̼̘ and byte order marks.

All identifiers in the Python standard library MUST use ASCII-only identifiers, and SHOULD use English words wherever feasible (in many cases, abbreviations and technical terms are used which aren't English).

Open source projects with a global audience are encouraged to adopt a similar policy.

Imports

  • Imports should usually be on separate lines:

    .. code-block:: :class: good

    Correct:

    import os import sys

    .. code-block:: :class: bad

    Wrong:

    import sys, os

    It's okay to say this though:

    .. code-block:: :class: good

    Correct:

    from subprocess import Popen, PIPE

  • Imports are always put at the top of the file, just after any module comments and docstrings, and before module globals and constants.

    Imports should be grouped in the following order:

    1. Standard library imports.
    2. Related third party imports.
    3. Local application/library specific imports.

    You should put a blank line between each group of imports.

  • Absolute imports are recommended, as they are usually more readable and tend to be better behaved (or at least give better error messages) if the import system is incorrectly configured (such as when a directory inside a package ends up on sys.path):

    .. code-block:: :class: good

    import mypkg.sibling from mypkg import sibling from mypkg.sibling import example

    However, explicit relative imports are an acceptable alternative to absolute imports, especially when dealing with complex package layouts where using absolute imports would be unnecessarily verbose:

    .. code-block:: :class: good

    from . import sibling from .sibling import example

    Standard library code should avoid complex package layouts and always use absolute imports.

  • When importing a class from a class-containing module, it's usually okay to spell this:

    .. code-block:: :class: good

    from myclass import MyClass from foo.bar.yourclass import YourClass

    If this spelling causes local name clashes, then spell them explicitly:

    .. code-block:: :class: good

    import myclass import foo.bar.yourclass

    and use myclass.MyClass and foo.bar.yourclass.YourClass.

  • Wildcard imports (from <module> import *) should be avoided, as they make it unclear which names are present in the namespace, confusing both readers and many automated tools. There is one defensible use case for a wildcard import, which is to republish an internal interface as part of a public API (for example, overwriting a pure Python implementation of an interface with the definitions from an optional accelerator module and exactly which definitions will be overwritten isn't known in advance).

    When republishing names this way, the guidelines below regarding public and internal interfaces still apply.

Module Level Dunder Names

Module level "dunders" (i.e. names with two leading and two trailing underscores) such as __all__, __author__, __version__, etc. should be placed after the module docstring but before any import statements except from __future__ imports. Python mandates that future-imports must appear in the module before any other code except docstrings:

.. code-block:: :class: good

"""This is the example module.

This module does stuff. """

from future import barry_as_FLUFL

all = ['a', 'b', 'c'] version = '0.1' author = 'Cardinal Biggles'

import os import sys

String Quotes

In Python, single-quoted strings and double-quoted strings are the same. This PEP does not make a recommendation for this. Pick a rule and stick to it. When a string contains single or double quote characters, however, use the other one to avoid backslashes in the string. It improves readability.

For triple-quoted strings, always use double quote characters to be consistent with the docstring convention in :pep:257.

Whitespace in Expressions and Statements

Pet Peeves

Avoid extraneous whitespace in the following situations:

  • Immediately inside parentheses, brackets or braces:

    .. code-block:: :class: good

    Correct:

    spam(ham[1], {eggs: 2})

    .. code-block:: :class: bad

    Wrong:

    spam( ham[ 1 ], { eggs: 2 } )

  • Between a trailing comma and a following close parenthesis:

    .. code-block:: :class: good

    Correct:

    foo = (0,)

    .. code-block:: :class: bad

    Wrong:

    bar = (0, )

  • Immediately before a comma, semicolon, or colon:

    .. code-block:: :class: good

    Correct:

    if x == 4: print(x, y); x, y = y, x

    .. code-block:: :class: bad

    Wrong:

    if x == 4 : print(x , y) ; x , y = y , x

  • However, in a slice the colon acts like a binary operator, and should have equal amounts on either side (treating it as the operator with the lowest priority). In an extended slice, both colons must have the same amount of spacing applied. Exception: when a slice parameter is omitted, the space is omitted:

    .. code-block:: :class: good

    Correct:

    ham[1:9], ham[1:9:3], ham[:9:3], ham[1::3], ham[1:9:] ham[lower:upper], ham[lower:upper:], ham[lower::step] ham[lower+offset : upper+offset] ham[: upper_fn(x) : step_fn(x)], ham[:: step_fn(x)] ham[lower + offset : upper + offset]

    .. code-block:: :class: bad

    Wrong:

    ham[lower + offset:upper + offset] ham[1: 9], ham[1 :9], ham[1:9 :3] ham[lower : : step] ham[ : upper]

  • Immediately before the open parenthesis that starts the argument list of a function call:

    .. code-block:: :class: good

    Correct:

    spam(1)

    .. code-block:: :class: bad

    Wrong:

    spam (1)

  • Immediately before the open parenthesis that starts an indexing or slicing:

    .. code-block:: :class: good

    Correct:

    dct['key'] = lst[index]

    .. code-block:: :class: bad

    Wrong:

    dct ['key'] = lst [index]

  • More than one space around an assignment (or other) operator to align it with another:

    .. code-block:: :class: good

    Correct:

    x = 1 y = 2 long_variable = 3

    .. code-block:: :class: bad

    Wrong:

    x = 1 y = 2 long_variable = 3

Other Recommendations

  • Avoid trailing whitespace anywhere. Because it's usually invisible, it can be confusing: e.g. a backslash followed by a space and a newline does not count as a line continuation marker. Some editors don't preserve it and many projects (like CPython itself) have pre-commit hooks that reject it.

  • Always surround these binary operators with a single space on either side: assignment (=), augmented assignment (+=, -= etc.), comparisons (==, <, >, !=, <>, <=, >=, in, not in, is, is not), Booleans (and, or, not).

  • If operators with different priorities are used, consider adding whitespace around the operators with the lowest priority(ies). Use your own judgment; however, never use more than one space, and always have the same amount of whitespace on both sides of a binary operator:

    .. code-block:: :class: good

    Correct:

    i = i + 1 submitted += 1 x = x2 - 1 hypot2 = xx + y*y c = (a+b) * (a-b)

    .. code-block:: :class: bad

    Wrong:

    i=i+1 submitted +=1 x = x * 2 - 1 hypot2 = x * x + y * y c = (a + b) * (a - b)

  • Function annotations should use the normal rules for colons and always have spaces around the -> arrow if present. (See Function Annotations_ below for more about function annotations.):

    .. code-block:: :class: good

    Correct:

    def munge(input: AnyStr): ... def munge() -> PosInt: ...

    .. code-block:: :class: bad

    Wrong:

    def munge(input:AnyStr): ... def munge()->PosInt: ...

  • Don't use spaces around the = sign when used to indicate a keyword argument, or when used to indicate a default value for an unannotated function parameter:

    .. code-block:: :class: good

    Correct:

    def complex(real, imag=0.0): return magic(r=real, i=imag)

    .. code-block:: :class: bad

    Wrong:

    def complex(real, imag = 0.0): return magic(r = real, i = imag)

    When combining an argument annotation with a default value, however, do use spaces around the = sign:

    .. code-block:: :class: good

    Correct:

    def munge(sep: AnyStr = None): ... def munge(input: AnyStr, sep: AnyStr = None, limit=1000): ...

    .. code-block:: :class: bad

    Wrong:

    def munge(input: AnyStr=None): ... def munge(input: AnyStr, limit = 1000): ...

  • Compound statements (multiple statements on the same line) are generally discouraged:

    .. code-block:: :class: good

    Correct:

    if foo == 'blah': do_blah_thing() do_one() do_two() do_three()

    Rather not:

    .. code-block:: :class: bad

    Wrong:

    if foo == 'blah': do_blah_thing() do_one(); do_two(); do_three()

  • While sometimes it's okay to put an if/for/while with a small body on the same line, never do this for multi-clause statements. Also avoid folding such long lines!

    Rather not:

    .. code-block:: :class: bad

    Wrong:

    if foo == 'blah': do_blah_thing() for x in lst: total += x while t < 10: t = delay()

    Definitely not:

    .. code-block:: :class: bad

    Wrong:

    if foo == 'blah': do_blah_thing() else: do_non_blah_thing()

    try: something() finally: cleanup()

    do_one(); do_two(); do_three(long, argument, list, like, this)

    if foo == 'blah': one(); two(); three()

When to Use Trailing Commas

Trailing commas are usually optional, except they are mandatory when making a tuple of one element. For clarity, it is recommended to surround the latter in (technically redundant) parentheses:

.. code-block:: :class: good

Correct:

FILES = ('setup.cfg',)

.. code-block:: :class: bad

Wrong:

FILES = 'setup.cfg',

When trailing commas are redundant, they are often helpful when a version control system is used, when a list of values, arguments or imported items is expected to be extended over time. The pattern is to put each value (etc.) on a line by itself, always adding a trailing comma, and add the close parenthesis/bracket/brace on the next line. However it does not make sense to have a trailing comma on the same line as the closing delimiter (except in the above case of singleton tuples):

.. code-block:: :class: good

Correct:

FILES = [ 'setup.cfg', 'tox.ini', ] initialize(FILES, error=True, )

.. code-block:: :class: bad

Wrong:

FILES = ['setup.cfg', 'tox.ini',] initialize(FILES, error=True,)

Comments

Comments that contradict the code are worse than no comments. Always make a priority of keeping the comments up-to-date when the code changes!

Comments should be complete sentences. The first word should be capitalized, unless it is an identifier that begins with a lower case letter (never alter the case of identifiers!).

Block comments generally consist of one or more paragraphs built out of complete sentences, with each sentence ending in a period.

You should use one or two spaces after a sentence-ending period in multi-sentence comments, except after the final sentence.

Ensure that your comments are clear and easily understandable to other speakers of the language you are writing in.

Python coders from non-English speaking countries: please write your comments in English, unless you are 120% sure that the code will never be read by people who don't speak your language.

Block Comments

Block comments generally apply to some (or all) code that follows them, and are indented to the same level as that code. Each line of a block comment starts with a # and a single space (unless it is indented text inside the comment).

Paragraphs inside a block comment are separated by a line containing a single #.

Inline Comments

Use inline comments sparingly.

An inline comment is a comment on the same line as a statement. Inline comments should be separated by at least two spaces from the statement. They should start with a # and a single space.

Inline comments are unnecessary and in fact distracting if they state the obvious. Don't do this:

.. code-block:: :class: bad

x = x + 1 # Increment x

But sometimes, this is useful:

.. code-block:: :class: good

x = x + 1 # Compensate for border

Documentation Strings

Conventions for writing good documentation strings (a.k.a. "docstrings") are immortalized in :pep:257.

  • Write docstrings for all public modules, functions, classes, and methods. Docstrings are not necessary for non-public methods, but you should have a comment that describes what the method does. This comment should appear after the def line.

  • :pep:257 describes good docstring conventions. Note that most importantly, the """ that ends a multiline docstring should be on a line by itself:

    .. code-block:: :class: good

    """Return a foobang

    Optional plotz says to frobnicate the bizbaz first. """

  • For one liner docstrings, please keep the closing """ on the same line:

    .. code-block:: :class: good

    """Return an ex-parrot."""

Naming Conventions

The naming conventions of Python's library are a bit of a mess, so we'll never get this completely consistent -- nevertheless, here are the currently recommended naming standards. New modules and packages (including third party frameworks) should be written to these standards, but where an existing library has a different style, internal consistency is preferred.

Overriding Principle

Names that are visible to the user as public parts of the API should follow conventions that reflect usage rather than implementation.

Descriptive: Naming Styles

There are a lot of different naming styles. It helps to be able to recognize what naming style is being used, independently from what they are used for.

The following naming styles are commonly distinguished:

  • b (single lowercase letter)

  • B (single uppercase letter)

  • lowercase

  • lower_case_with_underscores

  • UPPERCASE

  • UPPER_CASE_WITH_UNDERSCORES

  • CapitalizedWords (or CapWords, or CamelCase -- so named because of the bumpy look of its letters [4]_). This is also sometimes known as StudlyCaps.

    Note: When using acronyms in CapWords, capitalize all the letters of the acronym. Thus HTTPServerError is better than HttpServerError.

  • mixedCase (differs from CapitalizedWords by initial lowercase character!)

  • Capitalized_Words_With_Underscores (ugly!)

There's also the style of using a short unique prefix to group related names together. This is not used much in Python, but it is mentioned for completeness. For example, the os.stat() function returns a tuple whose items traditionally have names like st_mode, st_size, st_mtime and so on. (This is done to emphasize the correspondence with the fields of the POSIX system call struct, which helps programmers familiar with that.)

The X11 library uses a leading X for all its public functions. In Python, this style is generally deemed unnecessary because attribute and method names are prefixed with an object, and function names are prefixed with a module name.

In addition, the following special forms using leading or trailing underscores are recognized (these can generally be combined with any case convention):

  • _single_leading_underscore: weak "internal use" indicator. E.g. from M import * does not import objects whose names start with an underscore.

  • single_trailing_underscore_: used by convention to avoid conflicts with Python keyword, e.g. :

    .. code-block:: :class: good

    tkinter.Toplevel(master, class_='ClassName')

  • __double_leading_underscore: when naming a class attribute, invokes name mangling (inside class FooBar, __boo becomes _FooBar__boo; see below).

  • __double_leading_and_trailing_underscore__: "magic" objects or attributes that live in user-controlled namespaces. E.g. __init__, __import__ or __file__. Never invent such names; only use them as documented.

Prescriptive: Naming Conventions

Names to Avoid


Never use the characters 'l' (lowercase letter el), 'O' (uppercase
letter oh), or 'I' (uppercase letter eye) as single character variable
names.

In some fonts, these characters are indistinguishable from the
numerals one and zero.  When tempted to use 'l', use 'L' instead.

ASCII Compatibility

Identifiers used in the standard library must be ASCII compatible as described in the :pep:policy section <3131#policy-specification> of :pep:3131.

Package and Module Names


Modules should have short, all-lowercase names.  Underscores can be
used in the module name if it improves readability.  Python packages
should also have short, all-lowercase names, although the use of
underscores is discouraged.

When an extension module written in C or C++ has an accompanying
Python module that provides a higher level (e.g. more object oriented)
interface, the C/C++ module has a leading underscore
(e.g. ``_socket``).

Class Names
~~~~~~~~~~~

Class names should normally use the CapWords convention.

The naming convention for functions may be used instead in cases where
the interface is documented and used primarily as a callable.

Note that there is a separate convention for builtin names: most builtin
names are single words (or two words run together), with the CapWords
convention used only for exception names and builtin constants.

Type Variable Names
~~~~~~~~~~~~~~~~~~~

Names of type variables introduced in :pep:`484` should normally use CapWords
preferring short names: ``T``, ``AnyStr``, ``Num``. It is recommended to add
suffixes ``_co`` or ``_contra`` to the variables used to declare covariant
or contravariant behavior correspondingly:

.. code-block::
   :class: good

   from typing import TypeVar

   VT_co = TypeVar('VT_co', covariant=True)
   KT_contra = TypeVar('KT_contra', contravariant=True)

Exception Names
~~~~~~~~~~~~~~~

Because exceptions should be classes, the class naming convention
applies here.  However, you should use the suffix "Error" on your
exception names (if the exception actually is an error).

Global Variable Names
~~~~~~~~~~~~~~~~~~~~~

(Let's hope that these variables are meant for use inside one module
only.)  The conventions are about the same as those for functions.

Modules that are designed for use via ``from M import *`` should use
the ``__all__`` mechanism to prevent exporting globals, or use the
older convention of prefixing such globals with an underscore (which
you might want to do to indicate these globals are "module
non-public").

Function and Variable Names

Function names should be lowercase, with words separated by underscores as necessary to improve readability.

Variable names follow the same convention as function names.

mixedCase is allowed only in contexts where that's already the prevailing style (e.g. threading.py), to retain backwards compatibility.

Function and Method Arguments


Always use ``self`` for the first argument to instance methods.

Always use ``cls`` for the first argument to class methods.

If a function argument's name clashes with a reserved keyword, it is
generally better to append a single trailing underscore rather than
use an abbreviation or spelling corruption.  Thus ``class_`` is better
than ``clss``.  (Perhaps better is to avoid such clashes by using a
synonym.)

Method Names and Instance Variables

Use the function naming rules: lowercase with words separated by underscores as necessary to improve readability.

Use one leading underscore only for non-public methods and instance variables.

To avoid name clashes with subclasses, use two leading underscores to invoke Python's name mangling rules.

Python mangles these names with the class name: if class Foo has an attribute named __a, it cannot be accessed by Foo.__a. (An insistent user could still gain access by calling Foo._Foo__a.) Generally, double leading underscores should be used only to avoid name conflicts with attributes in classes designed to be subclassed.

Note: there is some controversy about the use of __names (see below).

Constants


Constants are usually defined on a module level and written in all
capital letters with underscores separating words.  Examples include
``MAX_OVERFLOW`` and ``TOTAL``.

Designing for Inheritance

Always decide whether a class's methods and instance variables (collectively: "attributes") should be public or non-public. If in doubt, choose non-public; it's easier to make it public later than to make a public attribute non-public.

Public attributes are those that you expect unrelated clients of your class to use, with your commitment to avoid backwards incompatible changes. Non-public attributes are those that are not intended to be used by third parties; you make no guarantees that non-public attributes won't change or even be removed.

We don't use the term "private" here, since no attribute is really private in Python (without a generally unnecessary amount of work).

Another category of attributes are those that are part of the "subclass API" (often called "protected" in other languages). Some classes are designed to be inherited from, either to extend or modify aspects of the class's behavior. When designing such a class, take care to make explicit decisions about which attributes are public, which are part of the subclass API, and which are truly only to be used by your base class.

With this in mind, here are the Pythonic guidelines:

  • Public attributes should have no leading underscores.

  • If your public attribute name collides with a reserved keyword, append a single trailing underscore to your attribute name. This is preferable to an abbreviation or corrupted spelling. (However, notwithstanding this rule, 'cls' is the preferred spelling for any variable or argument which is known to be a class, especially the first argument to a class method.)

    Note 1: See the argument name recommendation above for class methods.

  • For simple public data attributes, it is best to expose just the attribute name, without complicated accessor/mutator methods. Keep in mind that Python provides an easy path to future enhancement, should you find that a simple data attribute needs to grow functional behavior. In that case, use properties to hide functional implementation behind simple data attribute access syntax.

    Note 1: Try to keep the functional behavior side-effect free, although side-effects such as caching are generally fine.

    Note 2: Avoid using properties for computationally expensive operations; the attribute notation makes the caller believe that access is (relatively) cheap.

  • If your class is intended to be subclassed, and you have attributes that you do not want subclasses to use, consider naming them with double leading underscores and no trailing underscores. This invokes Python's name mangling algorithm, where the name of the class is mangled into the attribute name. This helps avoid attribute name collisions should subclasses inadvertently contain attributes with the same name.

    Note 1: Note that only the simple class name is used in the mangled name, so if a subclass chooses both the same class name and attribute name, you can still get name collisions.

    Note 2: Name mangling can make certain uses, such as debugging and __getattr__(), less convenient. However the name mangling algorithm is well documented and easy to perform manually.

    Note 3: Not everyone likes name mangling. Try to balance the need to avoid accidental name clashes with potential use by advanced callers.

Public and Internal Interfaces

Any backwards compatibility guarantees apply only to public interfaces. Accordingly, it is important that users be able to clearly distinguish between public and internal interfaces.

Documented interfaces are considered public, unless the documentation explicitly declares them to be provisional or internal interfaces exempt from the usual backwards compatibility guarantees. All undocumented interfaces should be assumed to be internal.

To better support introspection, modules should explicitly declare the names in their public API using the __all__ attribute. Setting __all__ to an empty list indicates that the module has no public API.

Even with __all__ set appropriately, internal interfaces (packages, modules, classes, functions, attributes or other names) should still be prefixed with a single leading underscore.

An interface is also considered internal if any containing namespace (package, module or class) is considered internal.

Imported names should always be considered an implementation detail. Other modules must not rely on indirect access to such imported names unless they are an explicitly documented part of the containing module's API, such as os.path or a package's __init__ module that exposes functionality from submodules.

Programming Recommendations

  • Code should be written in a way that does not disadvantage other implementations of Python (PyPy, Jython, IronPython, Cython, Psyco, and such).

    For example, do not rely on CPython's efficient implementation of in-place string concatenation for statements in the form a += b or a = a + b. This optimization is fragile even in CPython (it only works for some types) and isn't present at all in implementations that don't use refcounting. In performance sensitive parts of the library, the ''.join() form should be used instead. This will ensure that concatenation occurs in linear time across various implementations.

  • Comparisons to singletons like None should always be done with is or is not, never the equality operators.

    Also, beware of writing if x when you really mean if x is not None -- e.g. when testing whether a variable or argument that defaults to None was set to some other value. The other value might have a type (such as a container) that could be false in a boolean context!

  • Use is not operator rather than not ... is. While both expressions are functionally identical, the former is more readable and preferred:

    .. code-block:: :class: good

    Correct:

    if foo is not None:

    .. code-block:: :class: bad

    Wrong:

    if not foo is None:

  • When implementing ordering operations with rich comparisons, it is best to implement all six operations (__eq__, __ne__, __lt__, __le__, __gt__, __ge__) rather than relying on other code to only exercise a particular comparison.

    To minimize the effort involved, the functools.total_ordering() decorator provides a tool to generate missing comparison methods.

    :pep:207 indicates that reflexivity rules are assumed by Python. Thus, the interpreter may swap y > x with x < y, y >= x with x <= y, and may swap the arguments of x == y and x != y. The sort() and min() operations are guaranteed to use the < operator and the max() function uses the > operator. However, it is best to implement all six operations so that confusion doesn't arise in other contexts.

  • Always use a def statement instead of an assignment statement that binds a lambda expression directly to an identifier:

    .. code-block:: :class: good

    Correct:

    def f(x): return 2*x

    .. code-block:: :class: bad

    Wrong:

    f = lambda x: 2*x

    The first form means that the name of the resulting function object is specifically 'f' instead of the generic ''. This is more useful for tracebacks and string representations in general. The use of the assignment statement eliminates the sole benefit a lambda expression can offer over an explicit def statement (i.e. that it can be embedded inside a larger expression)

  • Derive exceptions from Exception rather than BaseException. Direct inheritance from BaseException is reserved for exceptions where catching them is almost always the wrong thing to do.

    Design exception hierarchies based on the distinctions that code catching the exceptions is likely to need, rather than the locations where the exceptions are raised. Aim to answer the question "What went wrong?" programmatically, rather than only stating that "A problem occurred" (see :pep:3151 for an example of this lesson being learned for the builtin exception hierarchy)

    Class naming conventions apply here, although you should add the suffix "Error" to your exception classes if the exception is an error. Non-error exceptions that are used for non-local flow control or other forms of signaling need no special suffix.

  • Use exception chaining appropriately. raise X from Y should be used to indicate explicit replacement without losing the original traceback.

    When deliberately replacing an inner exception (using raise X from None), ensure that relevant details are transferred to the new exception (such as preserving the attribute name when converting KeyError to AttributeError, or embedding the text of the original exception in the new exception message).

  • When catching exceptions, mention specific exceptions whenever possible instead of using a bare except: clause:

    .. code-block:: :class: good

    try: import platform_specific_module except ImportError: platform_specific_module = None

    A bare except: clause will catch SystemExit and KeyboardInterrupt exceptions, making it harder to interrupt a program with Control-C, and can disguise other problems. If you want to catch all exceptions that signal program errors, use except Exception: (bare except is equivalent to except BaseException:).

    A good rule of thumb is to limit use of bare 'except' clauses to two cases:

    1. If the exception handler will be printing out or logging the traceback; at least the user will be aware that an error has occurred.

    2. If the code needs to do some cleanup work, but then lets the exception propagate upwards with raise. try...finally can be a better way to handle this case.

  • When catching operating system errors, prefer the explicit exception hierarchy introduced in Python 3.3 over introspection of errno values.

  • Additionally, for all try/except clauses, limit the try clause to the absolute minimum amount of code necessary. Again, this avoids masking bugs:

    .. code-block:: :class: good

    Correct:

    try: value = collection[key] except KeyError: return key_not_found(key) else: return handle_value(value)

    .. code-block:: :class: bad

    Wrong:

    try: # Too broad! return handle_value(collection[key]) except KeyError: # Will also catch KeyError raised by handle_value() return key_not_found(key)

  • When a resource is local to a particular section of code, use a with statement to ensure it is cleaned up promptly and reliably after use. A try/finally statement is also acceptable.

  • Context managers should be invoked through separate functions or methods whenever they do something other than acquire and release resources:

    .. code-block:: :class: good

    Correct:

    with conn.begin_transaction(): do_stuff_in_transaction(conn)

    .. code-block:: :class: bad

    Wrong:

    with conn: do_stuff_in_transaction(conn)

    The latter example doesn't provide any information to indicate that the __enter__ and __exit__ methods are doing something other than closing the connection after a transaction. Being explicit is important in this case.

  • Be consistent in return statements. Either all return statements in a function should return an expression, or none of them should. If any return statement returns an expression, any return statements where no value is returned should explicitly state this as return None, and an explicit return statement should be present at the end of the function (if reachable):

    .. code-block:: :class: good

    Correct:

    def foo(x): if x >= 0: return math.sqrt(x) else: return None

    def bar(x): if x < 0: return None return math.sqrt(x)

    .. code-block:: :class: bad

    Wrong:

    def foo(x): if x >= 0: return math.sqrt(x)

    def bar(x): if x < 0: return return math.sqrt(x)

  • Use ''.startswith() and ''.endswith() instead of string slicing to check for prefixes or suffixes.

    startswith() and endswith() are cleaner and less error prone:

    .. code-block:: :class: good

    Correct:

    if foo.startswith('bar'):

    .. code-block:: :class: bad

    Wrong:

    if foo[:3] == 'bar':

  • Object type comparisons should always use isinstance() instead of comparing types directly:

    .. code-block:: :class: good

    Correct:

    if isinstance(obj, int):

    .. code-block:: :class: bad

    Wrong:

    if type(obj) is type(1):

  • For sequences, (strings, lists, tuples), use the fact that empty sequences are false:

    .. code-block:: :class: good

    Correct:

    if not seq: if seq:

    .. code-block:: :class: bad

    Wrong:

    if len(seq): if not len(seq):

  • Don't write string literals that rely on significant trailing whitespace. Such trailing whitespace is visually indistinguishable and some editors (or more recently, reindent.py) will trim them.

  • Don't compare boolean values to True or False using ==:

    .. code-block:: :class: good

    Correct:

    if greeting:

    .. code-block:: :class: bad

    Wrong:

    if greeting == True:

    Worse:

    .. code-block:: :class: bad

    Wrong:

    if greeting is True:

  • Use of the flow control statements return/break/continue within the finally suite of a try...finally, where the flow control statement would jump outside the finally suite, is discouraged. This is because such statements will implicitly cancel any active exception that is propagating through the finally suite:

    .. code-block:: :class: bad

    Wrong:

    def foo(): try: 1 / 0 finally: return 42

Function Annotations

With the acceptance of :pep:484, the style rules for function annotations have changed.

  • Function annotations should use :pep:484 syntax (there are some formatting recommendations for annotations in the previous section).

  • The experimentation with annotation styles that was recommended previously in this PEP is no longer encouraged.

  • However, outside the stdlib, experiments within the rules of :pep:484 are now encouraged. For example, marking up a large third party library or application with :pep:484 style type annotations, reviewing how easy it was to add those annotations, and observing whether their presence increases code understandability.

  • The Python standard library should be conservative in adopting such annotations, but their use is allowed for new code and for big refactorings.

  • For code that wants to make a different use of function annotations it is recommended to put a comment of the form:

    .. code-block:: :class: good

    type: ignore

    near the top of the file; this tells type checkers to ignore all annotations. (More fine-grained ways of disabling complaints from type checkers can be found in :pep:484.)

  • Like linters, type checkers are optional, separate tools. Python interpreters by default should not issue any messages due to type checking and should not alter their behavior based on annotations.

  • Users who don't want to use type checkers are free to ignore them. However, it is expected that users of third party library packages may want to run type checkers over those packages. For this purpose :pep:484 recommends the use of stub files: .pyi files that are read by the type checker in preference of the corresponding .py files. Stub files can be distributed with a library, or separately (with the library author's permission) through the typeshed repo [5]_.

Variable Annotations

:pep:526 introduced variable annotations. The style recommendations for them are similar to those on function annotations described above:

  • Annotations for module level variables, class and instance variables, and local variables should have a single space after the colon.

  • There should be no space before the colon.

  • If an assignment has a right hand side, then the equality sign should have exactly one space on both sides:

    .. code-block:: :class: good

    Correct:

    code: int

    class Point: coords: Tuple[int, int] label: str = ''

    .. code-block:: :class: bad

    Wrong:

    code:int # No space after colon code : int # Space before colon

    class Test: result: int=0 # No spaces around equality sign

  • Although the :pep:526 is accepted for Python 3.6, the variable annotation syntax is the preferred syntax for stub files on all versions of Python (see :pep:484 for details).

.. rubric:: Footnotes

.. [#fn-hi] Hanging indentation is a type-setting style where all the lines in a paragraph are indented except the first line. In the context of Python, the term is used to describe a style where the opening parenthesis of a parenthesized statement is the last non-whitespace character of the line, with subsequent lines being indented until the closing parenthesis.

References

.. [2] Barry's GNU Mailman style guide http://barry.warsaw.us/software/STYLEGUIDE.txt

.. [3] Donald Knuth's The TeXBook, pages 195 and 196.

.. [4] http://www.wikipedia.com/wiki/CamelCase

.. [5] Typeshed repo https://github.com/python/typeshed

Copyright

This document has been placed in the public domain.