summaryrefslogtreecommitdiffstats
path: root/Doc/faq
Commit message (Collapse)AuthorAgeFilesLines
* Programming FAQ: Mention object.__setattr__ as a technique for delegation ↵Jelle Zijlstra2024-09-261-3/+10
| | | | | | (#124617) This is used for example by threading.local in the stdlib.
* gh-101100: Add a table of class attributes to the "Custom classes" section ↵Alex Waygood2024-09-251-1/+1
| | | | of the data model docs (#124480)
* Docs: Update two FAQs for Python 3 (#124247)Hugo van Kemenade2024-09-192-8/+6
| | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* Use pep role instead of url (#121611)Rafael Fontenelle2024-09-171-2/+2
|
* GH-103484: Fix permanently redirects reported by linkcheck (GH-124144)Rafael Fontenelle2024-09-171-2/+2
| | | Fix redirects reported by linkcheck, update docs conf.py checks.
* gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518)Wei-Hsiang (Matt) Wang2024-09-011-1/+1
|
* gh-121905: Consistently use "floating-point" instead of "floating point" ↵Serhiy Storchaka2024-07-193-5/+5
| | | | (GH-121907)
* gh-120452: improve documentation about private name mangling (#120451)Bénédikt Tran2024-07-131-4/+24
| | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
* gh-110383: Remove references to removed popen[234] (GH-112783)Bradley Reynolds2024-05-301-78/+0
| | | Signed-off-by: Bradley Reynolds <bradley.reynolds@darbia.dev>
* FAQ: Add reference to Python version numbering scheme (#119225)Hugo van Kemenade2024-05-251-2/+2
|
* Docs: add link roles with Sphinx extlinks (#117850)Hugo van Kemenade2024-04-151-3/+2
| | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-111307: Update design FAQ 'switch' entry (#115899)Terry Jan Reedy2024-03-131-3/+8
|
* Docs: fix broken links (#116651)Mariusz Felisiak2024-03-131-1/+1
|
* gh-116010: Remove link to deprecated PEP 6 in FAQ guide (#116246)Iman Tabrizian2024-03-031-3/+5
| | | | Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* gh-114756: Update FAQ section on removing the GIL (#114957)da-woods2024-02-061-23/+29
| | | | | Update FAQ section on removing the GIL to reflect recent progress on PEP 703 and PEP 684. Co-authored-by: AN Long <aisk@users.noreply.github.com>
* gh-113664: Improve style of Big O notation (GH-113695)Serhiy Storchaka2024-01-101-1/+1
| | | | Use cursive to make it looking like mathematic formulas.
* Resolve reference warnings in faq/gui.rst (#108147)Adam Turner2023-08-211-4/+5
| | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* Resolve reference warnings in faq/library.rst (#108149)Adam Turner2023-08-201-5/+8
| | | | | Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* Resolve reference warnings in faq/design.rst (#108148)Adam Turner2023-08-201-2/+2
|
* Resolve reference warnings in faq/programming.rst (#108150)Adam Turner2023-08-201-3/+3
|
* gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386)Serhiy Storchaka2023-07-291-2/+2
|
* gh-106909: Use role :const: for referencing module constants (GH-106910)Serhiy Storchaka2023-07-211-1/+1
|
* faq/library: remove outdated section (#105996)Mathieu Dupuy2023-07-151-35/+0
|
* gh-105844: Use devguide terminology to denote versions (#105882)Erlend E. Aasland2023-06-181-3/+3
|
* gh-105844: Consistently use 'minor version' for X.Y versions (#105851)Erlend E. Aasland2023-06-161-2/+2
|
* gh-80480: array: Add 'w' typecode. (#105242)Inada Naoki2023-06-041-3/+3
|
* gh-75552: Remove deprecated tkinter.tix module (GH-104902)Zachary Ware2023-05-271-9/+2
|
* GH-103484: Fix redirected permanently URLs (#104001)Rafael Fontenelle2023-05-023-6/+6
| | | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
* GH-103484: Fix broken links reported by linkcheck (#103608)Rafael Fontenelle2023-04-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Doc: Fix broken links reported by linkcheck * Apply suggestions from code review - Remove extra diff line in faq/library.rst (merwok) - Use HTTPS to link Unicode 15.0.0 to solve a redirect (hugovk) - Use wayback machine link for openssl 1.1.0 instead of linking 1.1.1, "as this text mentions a feature from 1.1.0" (hugovk) Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> * Doc: Make mark-up code as literal * Doc: Alphabetize items in linkcheck_ignore Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> * Doc: Improve comment in sphinx conf Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --------- Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* GH-101898: Fix missing term references for hashable definition (#101899)Furkan Onder2023-02-141-1/+1
| | | Fix missing term references for hashable definition
* gh-99276 - Updated Doc/faq/general.rst (#101396)Raj2023-01-311-2/+2
| | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* gh-55688: Add note about ending backslashes for raw strings (#94768)Stanley2022-12-281-0/+40
| | | Co-authored-by: hauntsaninja <hauntsaninja@gmail.com>
* gh-48496: Added example and link to faq for UnboundLocalError in reference ↵Stanley2022-12-221-0/+2
| | | | (#93068)
* gh-84522: Add for-loop to apply-method-to-sequence FAQ (#94660)Samuel Sloniker2022-11-111-3/+15
|
* doc: Formatting and typo fixes (#98974)jmcb2022-11-071-5/+5
|
* gh-96265: Formatting changes for faq/programming (#98242)Stanley2022-11-021-39/+48
| | | | | | | | | | | | | | | | | * Formatting changes for faq/programming * Add missing method formatting, use non-literal formatting * Fix sphinx warnings * Some extra formatting missed earlier * More formatting suggestions from review Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> * Add missing colon, avoid referening external module Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
* gh-96265: Formatting changes for faq/general (#98129)Stanley2022-10-121-12/+18
| | | | | | | | | | | | | | | | | | | | * Some formatting changes for general faq * Use list for Python versioning Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> * New line for list, list for a/b/rc * Line wrap for 80 chars * More line wrap * Remove PythonWin mention. Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
* gh-96073: fix backticks in NEWS entry (GH-98056)Jelle Zijlstra2022-10-071-1/+1
| | | Automerge-Triggered-By: GH:JelleZijlstra
* gh-96265: Fix some formatting in faq/design.rst (#96924)Stanley2022-10-071-27/+31
| | | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
* gh-96959: Update HTTP links which are redirected to HTTPS (#98039)1809092022-10-071-1/+1
|
* Docs: Fix backtick errors found by sphinx-lint (#97998)Hugo van Kemenade2022-10-071-1/+1
| | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* gh-97709: Included newline separator in Mandelbrot set (#97737)matheusja2022-10-041-2/+2
| | | | | Included newline separator in Mandelbrot set Now the Mandelbrot set one-liner example on separates the lines with a '\n' character.
* gh-96959: Update more HTTP links (GH-97536)Serhiy Storchaka2022-09-275-6/+6
| | | | Use HTTPS for documents which are available by both HTTP and HTTPS links, but there is no redirection from HTTP to HTTPS or vice versa.
* gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)Serhiy Storchaka2022-09-243-4/+4
|
* gh-75608: Add Windows FAQ entry for missing UCRT (GH-92765)Stanley2022-09-231-0/+8
|
* gh-71141: Add note on rejecting "leading-dot" syntax for with statements ↵Stanley2022-09-211-0/+4
| | | | | (#96928) Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
* GH-96851: Add link to FAQ entry for caching method calls. (GH-96902)Raymond Hettinger2022-09-181-0/+2
|
* gh-95413: Remove references to deprecated CGI library (#95414)partev2022-08-301-2/+2
|
* gh-91838: Resolve HTTP links which redirect to HTTPS (GH-95642)Serhiy Storchaka2022-08-042-2/+2
| | | | It updates links which redirect to HTTPS with different authority or path.
* gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS ↵Serhiy Storchaka2022-08-043-9/+9
| | | | | | | | | | (GH-95527) If an HTTP link is redirected to a same looking HTTPS link, the latter can be used directly without changes in readability and behavior. It protects from a men-in-the-middle attack. This change does not affect Python examples.