summaryrefslogtreecommitdiff
path: root/Doc/faq
Commit message (Collapse)AuthorAgeFilesLines
* Doc: Do not suggest `s[::-1]` for reversed order (GH-22457)Andre Delfino2020-10-211-6/+1
|
* Doc: Do not encourage using a base class name in a derived class (GH-22177)Andre Delfino2020-10-211-6/+6
|
* bpo-41292: Fixes dead link to cx_freeze from Windows FAQ (GH-21463)Michel Samia2020-10-191-1/+1
|
* Link to the msvcrt module from the Windows FAQ (#22268)abdo2020-10-191-1/+1
|
* bpo-40341: Remove some "discouraged solutions" in Doc/faq/programming.rst ↵Zackery Spytz2020-10-161-21/+1
| | | | (GH-22726)
* bpo-41774: Tweak new programming FAQ entry (GH-22562)Terry Jan Reedy2020-10-051-1/+1
| | | Remove mention of space in "remove multiple items from list".
* [doc] Update references to NumPy (GH-22458)Andre Delfino2020-10-011-1/+1
| | | Numeric(al) Python to NumPy. It seems the old name hasn't been used for some time.
* bpo-41774: Add programming FAQ entry (GH-22402)Terry Jan Reedy2020-09-291-0/+15
| | | | | In the "Sequences (Tuples/Lists)" section, add "How do you remove multiple items from a list".
* Revert "Fix all Python Cookbook links (#22205)" (GH-22424)Andre Delfino2020-09-271-1/+1
| | | This commit reverts commit ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b as the original links are working again and they provide extended features such as comments and alternative versions.
* [doc] Teach 0-args form of super in Programming FAQ (GH-22176)Andre Delfino2020-09-201-8/+7
|
* Fix all Python Cookbook links (#22205)Andre Delfino2020-09-151-1/+1
|
* Remove reference to Boa Constructor. (GH-22012)Andre Delfino2020-09-011-6/+0
|
* [doc] Remove references to PyChecker. (GH-22011)Andre Delfino2020-09-012-14/+5
|
* bpo-41573: Update release versions in General FAQ (GH-21915)wyz23x22020-08-211-4/+4
|
* Doc: Add output to example code in programming FAQ (GH-21346)Jiajie Zhong2020-08-081-34/+37
| | | | | Add output hint to document, part faq/programming, section [How do I write a function with output parameters (call by reference)?](https://docs.python.org/3/faq/programming.html#how-do-i-write-a-function-with-output-parameters-call-by-reference). This patch make the output hint just like prefix code block.
* Update FAQ release schedule and estimated users (GH-21180)E-Paine2020-06-301-4/+4
| | | | | Update FAQ to include: * The new yearly release schedule from PEP 602 * Estimated users from "tens of thousands" to "millions"
* bpo-24914: mention Python supports multiple paradigms in the FAQ (#20658)Brett Cannon2020-06-081-6/+7
|
* Fix plural typo in documentation (GH-19799)Alex Povel2020-04-291-1/+1
| | | Co-authored-by: Alex Povel <python@alexpovel.de>
* bpo-40348: Fix typos in the programming FAQ (GH-19729)Zackery Spytz2020-04-261-2/+2
|
* bpo-40340: Separate examples more clearly in the programming FAQ (GH-19688)Cajetan Rodrigues2020-04-241-4/+5
|
* bpo-38558: Link to further docs from walrus operator mention in tutorial ↵Adorilson Bezerra2020-02-031-0/+2
| | | | (GH-16973)
* bpo-39136: Fixed typos (GH-17720)Gurupad Hegde2019-12-281-1/+1
| | | | | funtion -> function; configuraton -> configuration; defintitions -> definitions; focusses -> focuses; necesarily -> necessarily; follwing -> following; Excape -> Escape,
* bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)Serhiy Storchaka2019-10-301-1/+1
| | | | Replace all *NULL* with ``NULL``.
* bpo-38237: Make pow's arguments have more descriptive names and be keyword ↵Ammar Askar2019-09-201-14/+11
| | | | | | | | | | | | passable (GH-16302) Edit: `math.pow` changes removed on Mark's request. https://bugs.python.org/issue38237 Automerge-Triggered-By: @rhettinger
* 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
* Minor changes in Doc/faq/library. (#15449)Antoine2019-09-091-14/+15
| | | | | | | | | | | | | | | | * Minor changes. * Update Doc/faq/library.rst Co-Authored-By: Kyle Stanley <aeros167@gmail.com> * Apply suggestions from aeros167. * Update Doc/faq/library.rst Co-Authored-By: Kyle Stanley <aeros167@gmail.com> * Apply suggestions from aeros167 + re-add a "a" that was accidentally deleted.
* bpo-36167: fix an incorrect capitalization (GH-14482)avinassh2019-08-291-1/+1
|
* bpo-37352: Minor word-smithing for design.rst (GH #14730)Ilya Kamenshchikov2019-07-161-5/+5
|
* bpo-37456: Slash ('/') is now part of syntax. (GH-14627)Terry Jan Reedy2019-07-061-4/+0
|
* Docs: Improved phrasing (GH-14069)Aeros2019-06-201-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
* Use more PEP 570 syntax in the documentation. (GH-13720)Serhiy Storchaka2019-06-011-2/+2
|
* Docs: FIX broken links. (GH-13491)Julien Palard2019-05-251-1/+1
|
* Doc: Replace the deprecated highlightlang directive by highlight. (#13377)Stéphane Wirtel2019-05-171-1/+1
| | | | highlightlang is deprecated since April 2018 in Sphinx. See https://github.com/sphinx-doc/sphinx/pull/4845
* Fix typos in documentation (#13344)Xtreak2019-05-161-1/+1
|
* bpo-33882: mention breakpoint() in debugger-related FAQ (GH-7759)Andre Delfino2019-05-031-0/+3
|
* Doc: define PY_SSIZE_T_CLEAN always (GH-12794)Inada Naoki2019-04-131-0/+2
|
* bpo-34203: FAQ: improve wording of paragraph about 2.x vs. 3.x (GH-9821)Tal Einat2019-03-261-8/+4
|
* Replace "DOS box" with link to Windows FAQ. (GH-12390)Ned Deily2019-03-241-0/+2
|
* bpo-21314: Add a FAQ entry about positional only parameters (GH-10641)Lysandros Nikolaou2019-03-101-0/+35
|
* Update FAQ to point to Infrastructure Team website. (GH-12077)Ned Deily2019-02-271-8/+2
|
* Remove empty Dictionaries section from programming FAQ (GH-12026)Andre Delfino2019-02-251-3/+0
|
* bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)Serhiy Storchaka2018-12-191-1/+1
|
* Correct a couple of unbalanced parenthesis. (GH-10779)Andre Delfino2018-12-051-1/+1
|
* Doc: Delete now useless Windows FAQ section (GH-10557)Mathieu Dupuy2018-11-261-11/+0
|
* Doc: Delete "how do I emulate os.kill" section in Windows FAQ (GH-10487)Mathieu Dupuy2018-11-231-20/+0
| | | | | That section is a tip on how to kill process on Windows for Python prior to 2.7 and 3.2. 3.1 end of support was April 2012 and 2.6 was October 2013, so that hasn't been need for supported versions of Python for more than 5 years. Beside not being needed anymore for a long time, when I read it with the eyes of a Python profane, it makes Python looks bad, like a language from the parts with warts you need to circumvent. Let's delete that :)
* bpo-32613: Update window FAQ (GH-5552)Julien Palard2018-11-141-44/+23
|
* bpo-35044, doc: Use the :exc: role for the exceptions (GH-10037)Stéphane Wirtel2018-10-262-2/+2
|
* bpo-35032: Remove inaccessible videos from faq/Windows (GH-10004)Stéphane Wirtel2018-10-201-24/+0
| | | https://bugs.python.org/issue35032
* bpo-34203: FAQ now recommends python 3.x over 2.x (GH-9796)Gus Goulart2018-10-121-6/+8
|
* closes bpo-33883: Mention type checkers in the FAQ. (GH-7760)Andrés Delfino2018-09-101-0/+5
|