summaryrefslogtreecommitdiffstats
path: root/Doc/faq/design.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-43698: do not use `...` as argument name in docs (GH-30502)Nikita Sobolev2022-01-261-11/+8
|
* [doc] Fix typos found using codespell (GH-28744)Christian Clauss2021-10-051-1/+1
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* bpo-13814: Explain why generators are not context managers (GH-26835)Terry Jan Reedy2021-06-211-0/+9
| | | | | Put entry in Design FAQ after a question about a context manager for assignment. Original patch by Aidan Lowe.
* Fix typo in the word "spaghetti" (GH-24866)Kazantcev Andrey2021-03-151-1/+1
| | | Automerge-Triggered-By: GH:Mariatta
* bpo-43199: Briefly explain why no goto (GH-24852)Terry Jan Reedy2021-03-141-1/+9
| | | | Answer "Why is there no goto?" in the Design and History FAQ.
* bpo-42128: Add documentation for pattern matching (PEP 634) (#24664)Daniel F Moisset2021-03-011-3/+2
| | | | | | | | | This is a first edition, ready to go out with the implementation. We'll iterate during the rest of the period leading up to 3.10.0. Co-authored-by: Carol Willing <carolcode@willingconsulting.com> Co-authored-by: Fidget-Spinner <28750310+Fidget-Spinner@users.noreply.github.com> Co-authored-by: Brandt Bucher <brandt@python.org> Co-authored-by: Raymond Hettinger <1623689+rhettinger@users.noreply.github.com> Co-authored-by: Guido van Rossum <guido@python.org>
* [doc] Remove references to PyChecker. (GH-22011)Andre Delfino2020-09-021-2/+1
|
* Fix plural typo in documentation (GH-19799)Alex Povel2020-04-291-1/+1
| | | Co-authored-by: Alex Povel <python@alexpovel.de>
* bpo-38558: Link to further docs from walrus operator mention in tutorial ↵Adorilson Bezerra2020-02-031-0/+2
| | | | (GH-16973)
* bpo-35224: Additional documentation for Assignment Expressions (GH-15935)Emily Morehouse2019-09-111-57/+6
| | | | | | | | | | | | | Add or update assignment expression documentation for: - FAQ - Design - Reference - Expressions - Reference - Lexical Analysis https://bugs.python.org/issue35224 Automerge-Triggered-By: @matrixise
* bpo-37352: Minor word-smithing for design.rst (GH #14730)Ilya Kamenshchikov2019-07-161-5/+5
|
* Docs: Improved phrasing (GH-14069)Aeros2019-06-211-4/+6
| | | | | | | | * Docs: Improved phrasing Removed usage of second person pronouns in the section and made the assumption of "uneasiness" in code style transition more neutral. * Removed trailing whitespace on line 34
* bpo-35044, doc: Use the :exc: role for the exceptions (GH-10037)Stéphane Wirtel2018-10-261-1/+1
|
* bpo-27671: Update FAQ about why len is function (GH-8432)INADA Naoki2018-07-311-18/+19
|
* bpo-33888: Use CPython instead of Python in the FAQ (GH-7767)Andrés Delfino2018-07-071-6/+6
| | | | Make the change where discussing the CPython implementation of lists and dicts.
* Update Stackless Python wiki URL (GH-8072)Julien Palard2018-07-051-1/+1
| | | It was moved from bitbucket to GitHub.
* bpo-33957: Doc: Use better wording (GH-7912)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-06-261-1/+1
|
* bpo-33887: Add TOC to Design and History FAQ(GH-7766)Andrés Delfino2018-06-231-0/+5
|
* bpo-33799: Remove non-ordered dicts comments from FAQAndrés Delfino2018-06-081-5/+1
|
* bpo-25910: Fixes redirection from http to https (#4674)Sanyam Khurana2017-12-061-1/+1
|
* Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-261-2/+2
|\ | | | | | | in the documentation.
| * Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-261-2/+2
| | | | | | | | in the documentation.
* | Issue #28705: greatly simplify the FAQ entry on transpiling.Brett Cannon2016-11-181-27/+5
|/ | | | This also eliminats a dead link to Weave in the process.
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-8/+10
| | | | Original patch by James Edwards.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
|
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-261-1/+1
| | | | to SilentGhost for the patch.
* Fixing broken links in doc, part 1: faq/Georg Brandl2014-10-291-3/+3
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-291-2/+2
|
* Closes #16155: fix a few errors in doctest output of the FAQ pages.Georg Brandl2014-10-061-1/+1
|
* #20135: move FAQ about mutable default arguments to the programming FAQs page.Ezio Melotti2014-07-061-56/+0
|
* Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-1/+2
|
* Use "lambda expression" as preferred to "lambda form".Georg Brandl2013-10-061-5/+5
|
* Closes #17726: small clarification in design FAQ.Georg Brandl2013-04-141-2/+2
|
* #16862: merge with 3.2.Ezio Melotti2013-01-051-6/+3
|\
| * #16862: remove outdated statements about Stackless.Ezio Melotti2013-01-051-3/+0
| |
| * Cleanup a few minor things.Ezio Melotti2013-01-051-3/+3
| |
* | Merge example fix with 3.2.Ezio Melotti2013-01-051-1/+1
|\ \ | |/
| * Fix example by making the exception inherit from Exception.Ezio Melotti2013-01-051-1/+1
| |
* | Issue #14245: Merge changes from 3.2.Mark Dickinson2012-05-131-37/+26
|\ \ | |/
| * Issue #14245: Improve floating-point entry in FAQ. Thanks Zbyszek ↵Mark Dickinson2012-05-131-37/+26
| | | | | | | | Jędrzejewski-Szmek for some of the wording.
* | merge with 3.2Georg Brandl2012-03-171-5/+5
|\ \ | |/
| * Closes #14306: clarify expensiveness of try-except and update code snippetGeorg Brandl2012-03-171-5/+5
| |
* | Closes #14298: update section about dict implementation.Georg Brandl2012-03-141-8/+10
| |
* | Merge from 3.2Antoine Pitrou2011-12-031-77/+55
|\ \ | |/
| * Streamline mention of sorted()Antoine Pitrou2011-12-031-4/+4
| |
| * Break down and refine memory management questionAntoine Pitrou2011-12-031-41/+34
| |
| * Reformulate answer, and remove off-topic discussion of bytecode in a ↵Antoine Pitrou2011-12-031-32/+17
| | | | | | | | question about compiling to C.
* | Merge doc changes from 3.2.Éric Araujo2011-09-011-1/+1
|\ \ | |/ | | | | | | rstlint complains about packaging docs but I’m working on those in another patch.
| * Fix some misuses of Sphinx roles and one typoÉric Araujo2011-09-011-1/+1
|/
* Mention Cython and remove obsolete alternativesAntoine Pitrou2011-02-051-5/+3
|