Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. highlightlang:: rest |
| 2 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 3 | Style guide |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 4 | =========== |
| 5 | |
| 6 | The Python documentation should follow the `Apple Publications Style Guide`_ |
| 7 | wherever possible. This particular style guide was selected mostly because it |
| 8 | seems reasonable and is easy to get online. |
| 9 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 10 | Topics which are either not covered in Apple's style guide or treated |
| 11 | differently in Python documentation will be discussed in this |
| 12 | document. |
| 13 | |
| 14 | Use of whitespace |
| 15 | ----------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
Georg Brandl | 2592f62 | 2011-03-20 18:14:07 +0000 | [diff] [blame] | 17 | All reST files use an indentation of 3 spaces; no tabs are allowed. The |
| 18 | maximum line length is 80 characters for normal text, but tables, deeply |
| 19 | indented code samples and long links may extend beyond that. Code example |
| 20 | bodies should use normal Python 4-space indentation. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 21 | |
| 22 | Make generous use of blank lines where applicable; they help grouping things |
| 23 | together. |
| 24 | |
| 25 | A sentence-ending period may be followed by one or two spaces; while reST |
| 26 | ignores the second space, it is customarily put in by some users, for example |
| 27 | to aid Emacs' auto-fill mode. |
| 28 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 29 | Footnotes |
| 30 | --------- |
| 31 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 32 | Footnotes are generally discouraged, though they may be used when they are the |
| 33 | best way to present specific information. When a footnote reference is added at |
| 34 | the end of the sentence, it should follow the sentence-ending punctuation. The |
| 35 | reST markup should appear something like this:: |
| 36 | |
| 37 | This sentence has a footnote reference. [#]_ This is the next sentence. |
| 38 | |
| 39 | Footnotes should be gathered at the end of a file, or if the file is very long, |
| 40 | at the end of a section. The docutils will automatically create backlinks to |
| 41 | the footnote reference. |
| 42 | |
| 43 | Footnotes may appear in the middle of sentences where appropriate. |
| 44 | |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 45 | Capitalization |
| 46 | -------------- |
| 47 | |
| 48 | .. sidebar:: Sentence case |
| 49 | |
| 50 | Sentence case is a set of capitalization rules used in English |
| 51 | sentences: the first word is always capitalized and other words are |
| 52 | only capitalized if there is a specific rule requiring it. |
| 53 | |
| 54 | Apple style guide recommends the use of title case in section titles. |
| 55 | However, rules for which words should be capitalized in title case |
| 56 | vary greaty between publications. |
| 57 | |
| 58 | In Python documentation, use of sentence case in section titles is |
| 59 | preferable, but consistency within a unit is more important than |
| 60 | following this rule. If you add a section to the chapter where most |
| 61 | sections are in title case you can either convert all titles to |
| 62 | sentence case or use the dominant style in the new section title. |
| 63 | |
| 64 | Sentences that start with a word for which specific rules require |
| 65 | starting it with a lower case letter should be avoided in titles and |
| 66 | elsewhere. |
| 67 | |
| 68 | .. note:: |
| 69 | |
| 70 | Sections that describe a library module often have titles in the |
| 71 | form of "modulename --- Short description of the module." In this |
| 72 | case, the description should be capitalized as a stand-alone |
| 73 | sentence. |
| 74 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 75 | Many special names are used in the Python documentation, including the names of |
| 76 | operating systems, programming languages, standards bodies, and the like. Most |
| 77 | of these entities are not assigned any special markup, but the preferred |
| 78 | spellings are given here to aid authors in maintaining the consistency of |
| 79 | presentation in the Python documentation. |
| 80 | |
| 81 | Other terms and words deserve special mention as well; these conventions should |
| 82 | be used to ensure consistency throughout the documentation: |
| 83 | |
| 84 | CPU |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 85 | For "central processing unit." Many style guides say this should be |
| 86 | spelled out on the first use (and if you must use it, do so!). For |
| 87 | the Python documentation, this abbreviation should be avoided since |
| 88 | there's no reasonable way to predict which occurrence will be the |
| 89 | first seen by the reader. It is better to use the word "processor" |
| 90 | instead. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 91 | |
| 92 | POSIX |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 93 | The name assigned to a particular group of standards. This is always |
| 94 | uppercase. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 95 | |
| 96 | Python |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 97 | The name of our favorite programming language is always capitalized. |
| 98 | |
| 99 | reST |
| 100 | For "reStructuredText," an easy to read, plaintext markup syntax |
| 101 | used to produce Python documentation. When spelled out, it is |
| 102 | always one word and both forms start with a lower case 'r'. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 103 | |
| 104 | Unicode |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 105 | The name of a character coding system. This is always written |
| 106 | capitalized. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 107 | |
| 108 | Unix |
Alexander Belopolsky | ea3e91e | 2010-11-11 22:43:45 +0000 | [diff] [blame] | 109 | The name of the operating system developed at AT&T Bell Labs in the early |
| 110 | 1970s. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 111 | |
Raymond Hettinger | bb1cf8d | 2011-05-10 00:35:03 -0700 | [diff] [blame] | 112 | Affirmative Tone |
| 113 | ---------------- |
| 114 | |
| 115 | The documentation focuses on affirmatively stating what the language does and |
| 116 | how to use it effectively. |
| 117 | |
| 118 | Except for certain security risks or segfault risks, the docs should avoid |
| 119 | wording along the lines of "feature x is dangerous" or "experts only". These |
| 120 | kinds of value judgments belong in external blogs and wikis, not in the core |
| 121 | documentation. |
| 122 | |
| 123 | Bad example (creating worry in the mind of a reader): |
| 124 | |
| 125 | Warning: failing to explicitly close a file could result in lost data or |
| 126 | excessive resource consumption. Never rely on reference counting to |
| 127 | automatically close a file. |
| 128 | |
| 129 | Good example (establishing confident knowledge in the effective use of the language): |
| 130 | |
| 131 | A best practice for using files is use a try/finally pair to explicitly |
| 132 | close a file after it is used. Alternatively, using a with-statement can |
| 133 | achieve the same effect. This assures that files are flushed and file |
| 134 | descriptor resources are released in a timely manner. |
| 135 | |
| 136 | Economy of Expression |
| 137 | --------------------- |
| 138 | |
| 139 | More documentation is not necessarily better documentation. Error on the side |
| 140 | of being succinct. |
| 141 | |
| 142 | It is an unfortunate fact that making documentation longer can be an impediment |
| 143 | to understanding and can result in even more ways to misread or misinterpret the |
| 144 | text. Long descriptions full of corner cases and caveats can create the |
| 145 | impression that a function is more complex or harder to use than it actually is. |
| 146 | |
| 147 | The documentation for :func:`super` is an example of where a good deal of |
| 148 | information was condensed into a few short paragraphs. Discussion of |
| 149 | :func:`super` could have filled a chapter in a book, but it is often easier to |
| 150 | grasp a terse description than a lengthy narrative. |
| 151 | |
| 152 | |
| 153 | Code Examples |
| 154 | ------------- |
| 155 | |
| 156 | Short code examples can be a useful adjunct to understanding. Readers can often |
| 157 | grasp a simple example more quickly than they can digest a formal description in |
| 158 | prose. |
| 159 | |
| 160 | People learn faster with concrete, motivating examples that match the context of |
| 161 | a typical use case. For instance, the :func:`str.rpartition` method is better |
| 162 | demonstrated with an example splitting the domain from a URL than it would be |
| 163 | with an example of removing the last word from a line of Monty Python dialog. |
| 164 | |
| 165 | The ellipsis for the :attr:`sys.ps2` secondary interpreter prompt should only be |
| 166 | used sparingly, where it is necessary to clearly differentiate between input |
| 167 | lines and output lines. Besides contributing visual clutter, it makes it |
| 168 | difficult for readers to cut-and-paste examples so they can experiment with |
| 169 | variations. |
| 170 | |
| 171 | Code Equivalents |
| 172 | ---------------- |
| 173 | |
| 174 | Giving pure Python code equivalents (or approximate equivalents) can be a useful |
| 175 | adjunct to a prose description. A documenter should carefully weigh whether the |
| 176 | code equivalent adds value. |
| 177 | |
| 178 | A good example is the code equivalent for :func:`all`. The short 4-line code |
| 179 | equivalent is easily digested; it re-emphasizes the early-out behavior; and it |
| 180 | clarifies the handling of the corner-case where the iterable is empty. In |
| 181 | addition, it serves as a model for people wanting to implement a commonly |
| 182 | requested alternative where :func:`all` would return the specific object |
| 183 | evaluating to False whenever the function terminates early. |
| 184 | |
| 185 | A more questionable example is the code for :func:`itertools.groupby`. Its code |
| 186 | equivalent borders on being too complex to be a quick aid to understanding. |
| 187 | Despite its complexity, the code equivalent was kept because it serves as a |
| 188 | model to alternative implementations and because the operation of the "grouper" |
| 189 | is more easily shown in code than in English prose. |
| 190 | |
| 191 | An example of when not to use a code equivalent is for the :func:`oct` function. |
| 192 | The exact steps in converting a number to octal doesn't add value for a user |
| 193 | trying to learn what the function does. |
| 194 | |
| 195 | Audience |
| 196 | -------- |
| 197 | |
| 198 | The tone of the tutorial (and all the docs) needs to be respectful of the |
| 199 | reader's intelligence. Don't presume that the readers are stupid. Lay out the |
| 200 | relevant information, show motivating use cases, provide glossary links, and do |
| 201 | our best to connect-the-dots, but don't talk down to them or waste their time. |
| 202 | |
| 203 | The tutorial is meant for newcomers, many of whom will be using the tutorial to |
| 204 | evaluate the language as a whole. The experience needs to be positive and not |
| 205 | leave the reader with worries that something bad will happen if they make a |
| 206 | misstep. The tutorial serves as guide for intelligent and curious readers, |
| 207 | saving details for the how-to guides and other sources. |
| 208 | |
| 209 | Be careful accepting requests for documentation changes from the rare but vocal |
| 210 | category of reader who is looking for vindication for one of their programming |
| 211 | errors ("I made a mistake, therefore the docs must be wrong ..."). Typically, |
| 212 | the documentation wasn't consulted until after the error was made. It is |
| 213 | unfortunate, but typically no documentation edit would have saved the user from |
| 214 | making false assumptions about the language ("I was surprised by ..."). |
| 215 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 216 | |
Georg Brandl | 386bc6d | 2010-04-25 10:19:53 +0000 | [diff] [blame] | 217 | .. _Apple Publications Style Guide: http://developer.apple.com/mac/library/documentation/UserExperience/Conceptual/APStyleGuide/APSG_2009.pdf |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 218 | |