Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-113664: Improve style of Big O notation (GH-113695) | Serhiy Storchaka | 2024-01-10 | 1 | -1/+1 |
| | | | | Use cursive to make it looking like mathematic formulas. | ||||
* | gh-101100: Fix Sphinx warnings for removed dead batteries (#113669) | Hugo van Kemenade | 2024-01-03 | 1 | -1/+1 |
| | | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> | ||||
* | gh-101100: Fix Sphinx warnings from removed `~!` references (#113629) | Hugo van Kemenade | 2024-01-02 | 1 | -1/+1 |
| | | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> | ||||
* | gh-110631: fix wrong indentation in the `Doc/whatsnew` dir (#110632) | Ezio Melotti | 2023-10-11 | 1 | -64/+64 |
| | | | Fix wrong indentation in the Doc/whatsnew dir. | ||||
* | gh-109634: Use :samp: role (GH-109635) | Serhiy Storchaka | 2023-09-23 | 1 | -1/+1 |
| | |||||
* | gh-107298: Fix numerous ref errors and typos in the C API docs (GH-108258) | Serhiy Storchaka | 2023-08-22 | 1 | -2/+2 |
| | |||||
* | gh-107298: Fix references to deprecated and removed PyUnicode C API (GH-108077) | Serhiy Storchaka | 2023-08-21 | 1 | -33/+33 |
| | |||||
* | gh-107091: Fix some uses of :const: role (GH-107379) | Serhiy Storchaka | 2023-07-28 | 1 | -10/+10 |
| | | | It is for references, not for literals. | ||||
* | gh-107091: Fix some uses of :c:type: role (GH-107138) | Serhiy Storchaka | 2023-07-26 | 1 | -1/+1 |
| | |||||
* | gh-106948: Add standard external names to nitpick_ignore (GH-106949) | Serhiy Storchaka | 2023-07-22 | 1 | -1/+1 |
| | | | | | It includes standard C types, macros and variables like "size_t", "LONG_MAX" and "errno", and standard environment variables like "PATH". | ||||
* | gh-106909: Use role :const: for referencing module constants (GH-106910) | Serhiy Storchaka | 2023-07-21 | 1 | -8/+8 |
| | |||||
* | gh-106892: Use roles :data: and :const: for referencing module variables ↵ | Serhiy Storchaka | 2023-07-21 | 1 | -15/+15 |
| | | | | (GH-106894) | ||||
* | gh-104773: PEP 594: Remove the crypt module (#104908) | Victor Stinner | 2023-05-25 | 1 | -2/+2 |
| | | | | Remove the crypt module and its private _crypt extension, deprecated in Python 3.11. | ||||
* | gh-104773: PEP 594: Remove the nntplib module (#104894) | Victor Stinner | 2023-05-24 | 1 | -1/+1 |
| | | | | | | | | * socket_helper.transient_internet() no longer imports nntplib to catch nntplib.NNTPTemporaryError. * ssltests.py no longer runs test_nntplib. * "make quicktest" no longer runs test_nntplib. * WASM: remove nntplib from OMIT_NETWORKING_FILES. * Remove mentions to nntplib in the email documentation. | ||||
* | gh-104773: PEP 594: Remove the pipes module (#104848) | Victor Stinner | 2023-05-24 | 1 | -1/+1 |
| | |||||
* | GH-98040: Suppress cross-references to the removed ``imp`` module (#104131) | Adam Turner | 2023-05-03 | 1 | -3/+3 |
| | | | Suppress cross-references to imp | ||||
* | gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059) | Barry Warsaw | 2023-05-03 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove deprecated classes from pkgutil * Remove some other PEP 302 obsolescence * Use find_spec instead of load_module * Remove more tests of PEP 302 obsolete APIs * Remove another bunch of tests using obsolete load_modules() * Remove deleted names from __all__ * Remove obsolete footnote * imp is removed * Remove `imp` from generated stdlib names * What's new and blurb * Update zipimport documentation for the removed methods * Fix some Windows tests * Remove any test (or part of a test) that references `find_module()`. * Use assertIsNone() / assertIsNotNone() consistently. * Update Doc/reference/import.rst * We don't need pkgutil._get_spec() any more either * test.test_importlib.fixtures.NullFinder * ...BadLoaderFinder.find_module * ...test_api.InvalidatingNullFinder.find_module * ...test.test_zipimport test of z.find_module * Suppress cross-references to find_loader and find_module * Suppress cross-references to Finder * Suppress cross-references to pkgutil.ImpImporter and pkgutil.ImpLoader --------- Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net> Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> | ||||
* | GH-103484: Fix redirected permanently URLs (#104001) | Rafael Fontenelle | 2023-05-02 | 1 | -1/+1 |
| | | | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Oleg Iarygin <dralife@yandex.ru> | ||||
* | gh-99087: Add missing newline for prompts in docs (GH-98993) | Stanley | 2022-12-09 | 1 | -0/+1 |
| | | | Add newline for prompts so copying to REPL does not cause errors. | ||||
* | Docs: Fix backtick errors found by sphinx-lint (#97998) | Hugo van Kemenade | 2022-10-07 | 1 | -2/+2 |
| | | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> | ||||
* | gh-93738: Documentation C syntax (:c:type:<C type> -> :c:expr:<C type>) (#97768) | Adam Turner | 2022-10-05 | 1 | -1/+1 |
| | | | | | :c:type:`<C type>` -> :c:expr:`<C type>` Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | gh-93738: Documentation C syntax (:c:type:`Py_UNICODE*` -> ↵ | Adam Turner | 2022-10-04 | 1 | -1/+1 |
| | | | | | :c:expr:`Py_UNICODE*`) (#97784) :c:type:`Py_UNICODE*` -> :c:expr:`Py_UNICODE*` | ||||
* | Fix capitalization of Unix in documentation (#96913) | Will Hawkins | 2022-10-01 | 1 | -1/+1 |
| | |||||
* | gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS ↵ | Serhiy Storchaka | 2022-08-04 | 1 | -1/+1 |
| | | | | | | | | | | (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. | ||||
* | Docs: remove redundant "adverb-adjective" hyphens from compound modifiers ↵ | Ned Batchelder | 2022-07-05 | 1 | -6/+6 |
| | | | | | (GH-94551) Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021 | ||||
* | bpo-40204, doc: Fix syntax of C variables (GH-21846) | Victor Stinner | 2020-08-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | For example, fix the following Sphinx 3 errors: Doc/c-api/buffer.rst:102: WARNING: Error in declarator or parameters Invalid C declaration: Expected identifier in nested name. [error at 5] void \*obj -----^ Doc/c-api/arg.rst:130: WARNING: Unparseable C cross-reference: 'PyObject*' Invalid C declaration: Expected end of definition. [error at 8] PyObject* --------^ The modified documentation is compatible with Sphinx 2 and Sphinx 3. | ||||
* | bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) | Raymond Hettinger | 2019-09-11 | 1 | -2/+2 |
| | | | | | | | | * bpo-38096: Clean up the "struct sequence" / "named tuple" docs * Fix remaining occurrences of "struct sequence" * Repair a user visible docstring | ||||
* | bpo-35042: Use the :pep: role where a PEP is specified (#10036) | Stéphane Wirtel | 2018-10-26 | 1 | -4/+4 |
| | |||||
* | bpo-34906: Doc: Fix typos (2) (GH-9735) | Stéphane Wirtel | 2018-10-06 | 1 | -2/+2 |
| | | | Fix typos | ||||
* | bpo-33859: Fix spelling mistakes in docs. (GH-7691) | Xtreak | 2018-06-16 | 1 | -1/+1 |
| | |||||
* | Make formatting of some return codes conforming to the general style. (#5587) | Serhiy Storchaka | 2018-02-09 | 1 | -2/+2 |
| | |||||
* | Fix miscellaneous typos (#4275) | luzpaz | 2017-11-05 | 1 | -3/+3 |
| | |||||
* | Issue #19795: Improved more markups of True/False. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
|\ | |||||
| * | Issue #19795: Improved more markups of True/False. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
| | | |||||
* | | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
| | | |||||
| * | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Martin Panter | 2016-09-07 | 1 | -1/+1 |
| | | |||||
* | | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 | 1 | -1/+1 |
| | | |||||
* | | Issue #26462: Merge code block fixes from 3.5 | Martin Panter | 2016-07-29 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting. | Martin Panter | 2016-07-26 | 1 | -2/+3 |
| | | | | | | | | Patch by Julien Palard. | ||||
* | | Issue #27285: Cleanup "suspicious" warnings. | Ned Deily | 2016-07-11 | 1 | -1/+1 |
|/ | |||||
* | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 1 | -3/+3 |
| | | | | Original patch by James Edwards. | ||||
* | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 1 | -3/+3 |
| | | | | to SilentGhost for the patch. | ||||
* | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar | Martin Panter | 2016-02-10 | 1 | -3/+3 |
| | | | | | The original form is incorrect grammar and feels awkward, even though the meaning is clear. | ||||
* | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -1/+1 |
| | |||||
* | 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 or edited some other way to fix the grammar. | ||||
* | Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple ↵ | Senthil Kumaran | 2015-06-15 | 1 | -3/+3 |
| | | | | | | | | | documentation typos. Related Issues: #issue21528 #issue24453 | ||||
* | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 1 | -6/+6 |
| | |||||
* | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
| | |||||
* | Issue #22388: Unified the style of "Contributed by" sentences in What's New. | Serhiy Storchaka | 2014-11-02 | 1 | -51/+51 |
| |