| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bpo-32963: Fix the tutorial to state source has a default encoding of ASCII ↵ | Brett Cannon | 2018-03-02 | 1 | -8/+1 |
| | | | | | (GH-5961) | ||||
| * | [2.7] bpo-25059: Clarify the print separator usage in tutorial (GH-5879) | Cheryl Sabella | 2018-02-25 | 1 | -1/+1 |
| | | | | | | By default `print` adds spaces between its arguments. (cherry picked from commit 84c4b0cc67ceb4b70842b78c718b6e8214874d6a) | ||||
| * | bpo-31454: Include information about "import X as Y" in Modules tutorial ↵ | Miss Islington (bot) | 2018-02-25 | 1 | -0/+19 |
| | | | | | | | | (GH-4041) (cherry picked from commit fbee88244e8921afdb29fde51a9a010a8ae18277) Co-authored-by: Mario Corchero <mariocj89@gmail.com> | ||||
| * | bpo-32452: clarify term 'brackets' in generator tutorial (GH-5079) (#5082) | Miss Islington (bot) | 2018-01-02 | 1 | -3/+3 |
| | | | | | Updates documentation for generator expressions in classes tutorial: Clarify usage of ambiguous term "brackets" by replacing with "square brackets". Updated subsequent lines to respect line breaks. (GH-5079) (cherry picked from commit f190eb59e60e2ae7a7cbd396458389a7a076e0d3) | ||||
| * | Improve the String tutorial docs (GH-4541) (GH-4546) | Miss Islington (bot) | 2017-11-24 | 1 | -7/+7 |
| | | | | | | | The paragraph that contains example of string literal concatenation was placed after the section about concatenation using the '+' sign. Moved the paragraph to the appropriate section. (cherry picked from commit 78a5722ae950b80a4b3d13377957f3932195aef3) | ||||
| * | Clarification to the `break` statement (GH-2453) (GH-2459) | regexaurus | 2017-06-28 | 1 | -1/+1 |
| | | | | | Clarify that the break statement breaks out of the innermost enclosing for or while loop. (cherry picked from commit 36fc896740319d2c03aa2054a90a999c162517ef) | ||||
| * | bpo-30621: Update Input Output Tutorial Example(GH-2074) (GH-2120) | Mariatta | 2017-06-12 | 1 | -0/+1 |
| | | | | | import json before using json module (cherry picked from commit 1dbce04d0e3e93b715eb0d8024da396361759d16) | ||||
| * | [2.7] bpo-28315: Improve code examples in docs (GH-1372) (#1447) | Mariatta | 2017-05-04 | 4 | -4/+4 |
| | | | | | | | | Replace File "<stdin>", line 1, in ? with File "<stdin>", line 1, in <module>. (cherry picked from commit 8856940cf2e82cb17db2b684cd5732fe658605ca) | ||||
| * | Remove redundant footnote (#181) | Qingpeng "Q.P." Zhang | 2017-02-19 | 1 | -1/+1 |
| | | | | It was accidentally added in cc79837. | ||||
| * | Issue #29381: Clarify ordering of UNIX shebang line as source encoding line | Mariatta Wijaya | 2017-02-02 | 1 | -29/+19 |
| | | |||||
| * | Fixed mismatching title overline. | Serhiy Storchaka | 2016-12-04 | 1 | -1/+1 |
| | | |||||
| * | Fixed double hyphens that are rendered to literal en-dashes in the documenation. | Serhiy Storchaka | 2016-12-04 | 1 | -2/+2 |
| | | |||||
| * | Issue #28820: Fix spelling of “practice” as a noun | Martin Panter | 2016-11-30 | 1 | -1/+1 |
| | | |||||
| * | Issue #28815: Change '?' to '<module>' in some doc examples. | Terry Jan Reedy | 2016-09-30 | 1 | -9/+9 |
| | | | | | Patch by Mariatta Wijaya. | ||||
| * | Issue #26462: Doc: avoid literal_block warnings, fix syntax highlighting. | Martin Panter | 2016-07-26 | 3 | -3/+9 |
| | | | | | Patch by Julien Palard. | ||||
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed to fix the grammar. | ||||
| * | Issue #24314: Add links for general attributes like __name__, __dict__ | Martin Panter | 2016-06-18 | 1 | -2/+2 |
| | | |||||
| * | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 9 | -18/+26 |
| | | | | | Original patch by James Edwards. | ||||
| * | Issue #26736: Used HTTPS for external links in the documentation if possible. | Serhiy Storchaka | 2016-05-07 | 2 | -2/+2 |
| | | |||||
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 2 | -2/+2 |
| | | |||||
| * | Issue #25179: Preparatory cleanup of existing docs on string formatting | Martin Panter | 2016-02-08 | 1 | -3/+2 |
| | | | | | | | | | | * There was a link pointing to the section on the string.Formatter class (and multiple links in Python 3), when the section on the common format string syntax is probably more appropriate * Fix references to various format() functions and methods * Nested replacement fields may contain conversions and format specifiers, and this is tested in Python 3; see Issue #19729 for instance | ||||
| * | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 2 | -2/+2 |
| | | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
| * | Improve tutorial suggestion for looping techniques | Raymond Hettinger | 2015-09-01 | 1 | -11/+11 |
| | | |||||
| * | Fix minor docs markup errors. | Serhiy Storchaka | 2015-03-14 | 1 | -3/+3 |
| | | |||||
| * | remove parenthesis from print statement (closes #23396) | Benjamin Peterson | 2015-02-05 | 1 | -1/+1 |
| | | |||||
| * | Closes #23181: codepoint -> code point | Georg Brandl | 2015-01-14 | 1 | -1/+1 |
| | | |||||
| * | Issue #23070: Fix a comment in the tutorial. | Berker Peksag | 2014-12-17 | 1 | -1/+1 |
| | | | | | | | "Python" has 6 characters, not 7. Reported by Ross Burnett. | ||||
| * | Issue #12602: Add missing cross-references to runpy and using/cmdline docs. | Berker Peksag | 2014-12-10 | 1 | -0/+2 |
| | | | | | Patch by Éric Araujo. | ||||
| * | Fix description. | Georg Brandl | 2014-11-14 | 1 | -1/+1 |
| | | |||||
| * | Closes #22868: make example less ambiguous. | Georg Brandl | 2014-11-14 | 1 | -3/+3 |
| | | |||||
| * | minor grammar fixes (from docs@python.org) | Georg Brandl | 2014-10-31 | 1 | -2/+2 |
| | | |||||
| * | Fixing broken links in doc, part 3: the rest | Georg Brandl | 2014-10-29 | 1 | -2/+2 |
| | | |||||
| * | Use https:// URLs when referring to python.org hosts. | Georg Brandl | 2014-10-29 | 3 | -6/+6 |
| | | |||||
| * | Issue #16827: Make Interpreter introduction section of the tutorial more | Senthil Kumaran | 2014-09-18 | 3 | -111/+128 |
| | | | | | | | | focussed and move advanced section and customization information to a separate file called appendix. Patch credits: Jamayla Wiley, Ya-Ting Huang and James Brewer. | ||||
| * | Issue #20643: Fixed references to the next() method (distinguish from the | Serhiy Storchaka | 2014-09-05 | 1 | -5/+5 |
| | | | | | next() function). | ||||
| * | Fix grammar | Andrew Svetlov | 2014-07-24 | 1 | -1/+1 |
| | | |||||
| * | Issue #14097: Backport 796d1371605d and subsequent changes. | Zachary Ware | 2014-07-01 | 1 | -289/+267 |
| | | | | | | The 2.7 tutorial introduction now matches the 3.x introduction as rewritten by Ezio Melotti, with appropriate changes for 2.x. | ||||
| * | Issue #11974: Add tutorial section on class and instance variables | Raymond Hettinger | 2014-06-24 | 1 | -0/+71 |
| | | | | | (Based on a patch from Renee Chu.) | ||||
| * | Issue 21575: Show list.sort() arguments in the tutorial. | Raymond Hettinger | 2014-05-27 | 1 | -2/+3 |
| | | |||||
| * | Issue #21545: Add .pop example and tweak comment about pure mutation methods. | Terry Jan Reedy | 2014-05-23 | 1 | -0/+9 |
| | | | | | Patch prepared by David Harrigan. | ||||
| * | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵ | Antoine Pitrou | 2013-12-05 | 1 | -30/+47 |
| | | | | | pickle module. | ||||
| * | Fix indentation in doc example. | Ezio Melotti | 2013-11-17 | 1 | -5/+5 |
| | | |||||
| * | Issue #19193: Improved cross-references in the tutorial. | Serhiy Storchaka | 2013-10-09 | 2 | -33/+38 |
| | | |||||
| * | Fix typo in example file name. Found by John Bokma on docs@. | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | | |||||
| * | Small logical fix in filter() example description. | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | | |||||
| * | Clarify section about source code encoding. | Georg Brandl | 2013-10-06 | 1 | -2/+2 |
| | | |||||
| * | Fix merging mistake: wrong Python version. | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | | |||||
| * | Fix wrong Python highlighting in directory hierarchy code block. | Georg Brandl | 2013-10-06 | 1 | -1/+3 |
| | | |||||
| * | Use "lambda expression" as preferred to "lambda form". | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | | |||||
| * | Closes #18646: improve lambda docs in tutorial. Original patch by Terry Reedy. | Georg Brandl | 2013-10-06 | 1 | -11/+18 |
| | | |||||
