summaryrefslogtreecommitdiff
path: root/Doc/reference/simple_stmts.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-38434: Fixes some audit event documentation (GH-16932)Steve Dower2019-10-261-0/+1
|
* More updates to the annotated assignments docs (GH-13794)Ivan Levkivskyi2019-06-041-4/+3
|
* Update the annotated assignment docs (GH-13757)Ivan Levkivskyi2019-06-031-1/+7
|
* Don't use the LHS/RHS acronym in Simple statements (GH-12996)Andre Delfino2019-05-031-4/+4
| | | | | Prefer the full wording instead, as it is more meaningful for someone not familiar with the terms. Also, LFS/RHS is not used anywhere else in the documentation, while left/right-hand side mentions are common.
* bpo-30840: Document relative imports (#12831)Joannah Nanjekye2019-04-251-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | * document relative imports * 📜🤖 Added by blurb_it. * fix indentation error * remove indentation * Document relative imports * Document relative imports * remove from ...package * Document relative imports * remove trailing space * Document relative imports * Document relative imports
* bpo-35566: Add links to annotation glossary term (GH-11291)Cheryl Sabella2018-12-231-2/+2
|
* bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)Serhiy Storchaka2018-12-191-43/+43
|
* bpo-33878: Doc: Fix missing case by simplifying. (GH-7762)Julien Palard2018-11-121-6/+3
| | | | | The documentation was not covering multiple targets enclosed by parenthesis nor multiple targets enclosed by brackets, adding them all would be heavy, an else cover them all and is lighter to read.
* Add future_stmt to simple_stmt production list. (GH-8239)Andrés Delfino2018-11-071-0/+1
|
* Mark -c and -O as command line options in reStructuredText. (GH-10103)Andrés Delfino2018-11-071-1/+1
|
* bpo-35054: Add yet more index entries for symbols. (GH-10121)Serhiy Storchaka2018-10-281-13/+11
|
* bpo-35054: Add more index entries for symbols. (GH-10064)Serhiy Storchaka2018-10-261-3/+19
|
* bpo-33726, doc: Add short descriptions to PEP references in seealso (GH-7294)Andrés Delfino2018-10-201-1/+8
|
* bpo-33702: Add some missing links in production lists and do a little polish ↵Andrés Delfino2018-07-071-12/+10
| | | | (GH-7259)
* bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822)Serhiy Storchaka2018-03-181-3/+2
|
* String annotations [PEP 563] (#4390)Guido van Rossum2018-01-261-6/+9
| | | | | | | | * Document `from __future__ import annotations` * Provide plumbing and tests for `from __future__ import annotations` * Implement unparsing the AST back to string form This is required for PEP 563 and as such only implements a part of the unparsing process that covers expressions.
* Fix typo in Simple Statements documentation (GH-3809)kms708472017-09-281-1/+1
| | | Replace "restriction" with "restrictions".
* bpo-17188: add missing periods at the end of sentences (GH-1875)Mariatta2017-05-301-2/+2
|
* bpo-17188: DOC: Document 'from None' in raise statement (#1671)csabella2017-05-201-2/+20
| | | | | Original patch by Dennis MÃ¥rtensson.
* Fix a trivial typo in global section (#1497)Jim Fasarakis-Hilliard2017-05-081-1/+1
|
* Issue #28091: Document PEP 525 & PEP 530.Yury Selivanov2016-12-151-0/+4
| | | | Patch by Eric Appelt.
* Issue #28076: Variable annotations should be mangled for private names.Guido van Rossum2016-09-111-3/+4
| | | | By Ivan Levkivskyi.
* Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal.Guido van Rossum2016-09-091-2/+3
| | | | Patch by Ivan Levkivskyi.
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-0/+44
| | | | Patch by Ivan Levkivskyi.
* Issue #24136: Merge unpacking doc from 3.5Martin Panter2016-06-121-3/+3
|\
| * Issue #24136: Document generalized unpacking, PEP 448Martin Panter2016-06-121-3/+3
| | | | | | | | Based on patches by Konstantin Molchanov and Neil Girdhar.
| * Issue #23275: Backport target list assignment documentation fixesMartin Panter2016-06-081-15/+14
| |
* | Issue #23275: Allow () = iterable assignment syntaxBerker Peksag2016-05-181-16/+15
|/ | | | Documentation updates by Martin Panter.
* Issue #27049: fix doc typoNed Deily2016-05-171-1/+1
|
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-2/+2
| | | | Original patch by James Edwards.
* Fix typos in comments, documentation and test method namesMartin Panter2016-05-081-1/+1
|
* merge with 3.4Georg Brandl2014-10-311-6/+5
|\
| * #22613: remaining corrections in extending/reference docs (thanks Jacques ↵Georg Brandl2014-10-311-6/+5
| | | | | | | | Ducasse)
* | mergeRaymond Hettinger2014-05-261-27/+35
|\ \ | |/
| * Issue 21439: Minor issues in the reference manual.Raymond Hettinger2014-05-261-27/+35
| | | | | | | | (Contributed by Feliks Kluzniak.)
* | Merge with 3.4Terry Jan Reedy2014-04-291-0/+13
|\ \ | |/
| * Issue #21055: Index (augmented) assignment symbols.Terry Jan Reedy2014-04-291-0/+13
| |
* | Merge with 3.4Terry Jan Reedy2014-04-291-0/+2
|\ \ | |/
| * Closes 21048: Index 'as' in import and with statements.Terry Jan Reedy2014-04-291-0/+2
| |
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-1/+1
|/
* eliminate redundancy between yield stmt and yield expr docs (closes #12704)Benjamin Peterson2014-01-261-42/+15
| | | | Patch by Nikolaus Rath.
* #17938: remove duplicate paragraphs.Ezio Melotti2013-05-091-16/+0
|
* Clarify the import statement semantics, especially for implicit imports in ↵Nick Coghlan2012-08-021-29/+74
| | | | the 'from X import Y' variant
* Finally, a coherent set of terminology for all the lil' beasties involved.Barry Warsaw2012-07-311-6/+9
|
* Integration of importdocs from the features/pep-420 repo.Barry Warsaw2012-07-291-143/+31
|
* Merge with 3.2.Georg Brandl2012-06-241-1/+0
|\
| * Fix a bunch of "versionchanged" related markup errors.Georg Brandl2012-06-241-1/+0
| |
* | Issue #14628: Document the fact that import always returns the moduleBrett Cannon2012-04-201-1/+2
| | | | | | | | | | as found in sys.modules and not as what the loader returns (even though it is required to by PEP 302).
* | Add versionchanged notes for PEP 380Nick Coghlan2012-01-141-1/+4
| |
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-6/+18
|/